:root {
  /* Bootstrap 5 variable mapping */
  --bs-primary: #ed6534;
  --bs-primary-rgb: 237, 101, 52;
  --bs-secondary: #00818f;
  --bs-secondary-rgb: 0, 129, 143;
  --bs-tertiary: #67cbf6;
  --bs-tertiary-rgb: 103, 203, 246;
  --bs-info: #67cbf6;
  --bs-info-rgb: 103, 203, 246;
  --bs-success: #198754;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;

  --bs-body-color: #494949;
  --bs-body-color-rgb: 49, 49, 49;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;

  --bs-link-color: var(--bs-primary);
  --bs-link-hover-color: #d14d1b;

  --bs-font-sans-serif: 'Roboto', sans-serif;
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
  --bs-body-font-family: var(--bs-font-sans-serif);
}
body {
  -webkit-font-smoothing: auto;
  margin: 0;
}
:after,
:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
}
body,
html {
  background: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-family: var(--bs-body-font-family);
  font-size: 16px;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  color: var(--bs-heading-color, var(--bs-body-color));
  font-weight: 500;
}
h1 {
  font-size: 2rem;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.125rem;
}
h4 {
  font-size: 1rem;
}
h5 {
  font-size: 0.875rem;
}
p {
  margin-bottom: 1.5em;
}
a,
a:active,
a:focus,
a:hover {
  background-color: transparent;
  color: var(--bs-link-color);
  text-decoration: none;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
}
.ff-oswald {
  font-family: Oswald;
  letter-spacing: 0.3px;
}
.fs-12 {
  font-size: 0.75rem !important;
}
.fs-14 {
  font-size: 0.875rem !important;
}
.fs-16 {
  font-size: 1rem !important;
}
.fs-18 {
  font-size: 1.125rem !important;
}
.fs-20 {
  font-size: 1.25rem !important;
}
.fs-22 {
  font-size: 1.375rem !important;
}
.fs-24 {
  font-size: 1.5rem !important;
}
.fs-26 {
  font-size: 1.625rem !important;
}
.fs-28 {
  font-size: 1.75rem !important;
}
.fs-30 {
  font-size: 1.875rem !important;
}
.fs-32 {
  font-size: 2rem !important;
}
.fs-34 {
  font-size: 2.125rem !important;
}
.fs-36 {
  font-size: 2.25rem !important;
}
.fs-38 {
  font-size: 2.375rem !important;
}
.fs-40 {
  font-size: 2.5rem !important;
}
.fs-44 {
  font-size: 2.75rem !important;
}
.fs-48 {
  font-size: 3rem !important;
}
.fs-64 {
  font-size: 4rem !important;
}
.fw-300 {
  font-weight: 300 !important;
}
.fw-400 {
  font-weight: 400 !important;
}
.fw-500 {
  font-weight: 500 !important;
}
.fw-600 {
  font-weight: 600 !important;
}
.fw-700 {
  font-weight: 700 !important;
}
.main-heading {
  font-family: Oswald;
  font-size: 3rem;
  font-weight: 500;
  padding-bottom: 0.3rem;
  text-transform: uppercase;
}
.heading-separator {
  background-color: #494949;
  border-bottom: 1px solid;
  border-top: 1px solid;
  color: #494949;
  height: 3px;
  margin: 0.5rem auto 1.5rem;
  opacity: 1;
  width: 100px;
}
.heading-paragraph {
  margin-left: auto;
  margin-right: auto;
  max-width: 768px;
}
.sub-heading {
  font-family: Oswald;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding-bottom: 0.3rem;
  text-transform: uppercase;
}
.btn a,
a.btn {
  border-radius: 0;
  color: #fff;
  font-family: Oswald;
  letter-spacing: 0.3px;
  padding: 10px 20px;
  position: relative;
  text-decoration: none !important;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.btn a.focus,
.btn a:focus,
a.btn.focus,
a.btn:focus {
  box-shadow: none;
}
.btn-dark a,
a.btn-dark {
  background-color: var(--bs-dark) !important;
  color: var(--bs-light);
}
.btn-dark a:active,
.btn-dark a:focus,
.btn-dark a:hover,
a.btn-dark:active,
a.btn-dark:focus,
a.btn-dark:hover {
  background-color: #000 !important;
}
.btn-primary a,
a.btn-primary {
  background-color: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}
.btn-primary:hover,
.btn-primary a:focus,
.btn-primary a:hover,
a.btn-primary:focus,
a.btn-primary:hover {
  background: #fff;
  border-color: var(--bs-primary);
  color: var(--bs-primary);
}
.btn-primary-inverted a,
a.btn-primary-inverted {
  background-color: #fff;
  border: 1px solid var(--bs-primary);
  color: var(--bs-primary);
}
.btn-primary-inverted a:focus,
.btn-primary-inverted a:hover,
a.btn-primary-inverted:focus,
a.btn-primary-inverted:hover {
  background: var(--bs-primary);
  color: #fff;
}
.cta .btn-primary:focus,
.cta .btn-primary:hover {
  background: #000;
  border-color: transparent;
  color: #fff;
}
.btn-secondary a,
a.btn-secondary {
  background-color: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
}
.btn-secondary a:focus,
.btn-secondary a:hover,
a.btn-secondary:focus,
a.btn-secondary:hover {
  background: #fff;
  border-color: var(--bs-secondary);
  color: var(--bs-secondary);
}
.btn-thirdary a,
a.btn-thirdary {
  background-color: var(--bs-info);
  border: 1px solid var(--bs-info);
}
.btn-thirdary a:focus,
.btn-thirdary a:hover,
a.btn-thirdary:focus,
a.btn-thirdary:hover {
  background: #fff;
  border-color: var(--bs-info);
  color: var(--bs-info);
}
.btn-arrow a,
a.btn-arrow {
  padding-right: 60px;
}
.btn-arrow a:after,
a.btn-arrow:after {
  content: '\f061';
  line-height: 0;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.bg-f3f {
  background-color: #f3f3f3 !important;
}
.bg-333 {
  background: #333;
}
.bg-fff {
  background: #fff;
}
.bg-cyan {
  background-color: var(--bs-info);
}
.desaturate {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  filter: url(/elements/grayscale.svg#desaturate);
  filter: gray;
  -webkit-filter: grayscale(1);
}
.desaturate.active,
.desaturate:hover {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  filter: none;
  -webkit-filter: grayscale(0);
}
.fat-border,
.fat-border.active {
  border: 15px solid transparent;
}
.fat-border.active,
.fat-border:hover {
  border-color: var(--bs-primary);
}
.triangle-bottom {
  position: relative;
}
.fat-border.active:before,
.triangle-bottom:hover:before {
  border-color: var(--bs-primary) transparent transparent transparent;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  bottom: -24px;
  content: '';
  display: inline-block;
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 0;
}
.text-orange {
  color: var(--bs-primary) !important;
}
.text-white {
  color: #fff !important;
}
textarea {
  resize: none;
}
label {
  display: block;
  font-weight: 500;
}

/* Fluent Form */
.ff-default .ff-el-form-control {
  border-radius: 0 !important;
  padding: 5px 10px !important;
}
.ff-default .ff-btn-submit {
  font-family: Oswald, Sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 10px 30px !important;
  text-transform: uppercase;
}
.ff-default .ff-message-success {
  background-color: #fff;
  border-color: var(--bs-success) !important;
  color: var(--base-color-text);
  font-weight: 500 !important;
  margin: 10px 0;
}
.fluent_form_3 .ff-el-is-error .text-danger,
.fluent_form_5 .ff-el-is-error .text-danger,
.fluent_form_6 .ff-el-is-error .text-danger {
  color: #fff !important;
  display: inline-block;
  padding: 5px;
}
.fluent_form_3 .ff-el-is-error .text-danger,
.fluent_form_6 .ff-el-is-error .text-danger {
  background: var(--bs-danger);
}
.fluent_form_5 .ff-el-is-error .text-danger {
  background: var(--bs-primary);
}

#breadcrumb {
  background-color: var(--bs-primary);
  margin-top: 80px;
}
.breadcrumb-wrapper {
  background-position:
    top left,
    top right,
    top right;
  background-repeat: no-repeat;
  background-size:
    auto auto,
    auto auto,
    auto 100%;
  border-radius: 0;
  color: #fff;
  height: 169px;
  overflow: hidden;
}
.breadcrumb {
  background: 0 0;
  margin-bottom: 0;
  margin-top: 1rem;
  padding-bottom: 10px;
}
.breadcrumb a {
  color: #fff;
}
.breadcrumb-wrapper .title,
.breadcrumb-wrapper .title a {
  color: #fff;
}
.breadcrumb-wrapper .title ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
header#masthead {
  background: 0 0;
  box-shadow:
    0 0.5rem 1rem rgba(0, 0, 0, 0.05),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  padding: 0.74rem 1rem;
  transition: background-color 0.3s;
}
header#masthead .navbar {
  padding: 0;
}
.navbar-brand {
  height: auto;
}
.navbar-brand > a {
  color: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  outline: medium none;
  text-decoration: none !important;
}
.logo {
  background: url(inc/assets/img/logo_white.svg) top left no-repeat;
  background-size: cover;
  height: 23px;
  width: 100px;
}
.desktop-menu {
  display: none;
}
.navbar-toggler {
  border: 0;
  position: absolute;
  right: 0;
  z-index: 999;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url(inc/assets/img/hamburger-white.svg);
}
header#masthead .navbar-nav > li {
  color: #fff;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  position: relative;
  text-align: center;
}
header#masthead .navbar-nav li .nav-link {
  color: #fff;
  font-family: Oswald;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  text-decoration: none !important;
  text-transform: uppercase;
}
body.menu-white header#masthead .navbar-nav > li,
body.menu-white header#masthead .navbar-nav li:not(.contactus) .nav-link {
  color: var(--bs-body-color);
}
header#masthead .navbar-nav > li.contactus .nav-link {
  background-color: var(--bs-primary);
  color: #fff;
}
header#masthead .navbar-nav > li.contactus .nav-link:hover {
  background-color: #000;
}

body.menu-white header#masthead .navbar-nav > li:not(.contactus) > .nav-link:hover,
header#masthead .navbar-nav .dropdown-item:hover,
header#masthead .navbar-nav .nav-item .nav-link.show,
header#masthead .navbar-nav .nav-item .nav-link.show + .dropdown-menu.show .current-menu-item > .dropdown-item,
header#masthead .navbar-nav > li.active:not(.contactus) > .nav-link,
header#masthead .navbar-nav > li.current-menu-item:not(.contactus) > .nav-link,
header#masthead .navbar-nav > li.current-menu-parent:not(.contactus) > .nav-link,
header#masthead .navbar-nav > li:not(.contactus) > .nav-link:hover {
  background: #fff;
  color: var(--bs-primary) !important;
}
/* header#masthead .navbar-nav .current-menu-item:not(.menu-item-has-children) {
  pointer-events: none;
} */
.menu-white header#masthead {
  background: #fff !important;
}
/* Mobile menu */
.offcanvas {
  --bs-offcanvas-bg: var(--bs-body-color);
  --bs-offcanvas-color: #fff;
}
.offcanvas .logo-icon {
  height: auto;
  width: 150px;
}
.offcanvas .offcanvas-header .close,
.offcanvas .offcanvas-header .btn-close {
  color: var(--bs-primary);
  font-size: 1rem;
  opacity: 1;
  text-shadow: none;
}
.offcanvas .mobile-menu-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}
.offcanvas .menu-item a {
  color: black;
  display: inline-block;
  margin-bottom: 15px;
  position: relative;
  transition: padding 0.3s;
}
.offcanvas .menu-item a:hover {
  color: var(--bs-primary);
  padding-left: 20px;
  text-decoration: none;
}
.offcanvas .current-menu-ancestor > a,
.offcanvas .current-menu-item a {
  color: var(--bs-primary);
  pointer-events: none;
}
.offcanvas .current-menu-item a {
  padding-left: 20px;
}
.offcanvas .current-menu-item a::before {
  opacity: 1;
}
.menu-white .logo {
  background: url(inc/assets/img/logo_orange.svg) top left no-repeat;
  background-size: cover;
}
.menu-white .navbar-toggler-icon {
  background-image: url(inc/assets/img/hamburger-dark.svg);
}
/* Desktop menu */
.mega-nav-box {
  background: #fff;
  box-shadow:
    0 0.5rem 1rem rgba(0, 0, 0, 0.05),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  left: 0;
  max-height: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: max-height 0.2s ease-in-out;
  width: 100%;
  z-index: -1;
}
.mega-nav-box.mega-nav-open {
  max-height: 300px;
}
.mega-nav-unit {
  display: none;
}
.mega-nav-unit.active {
  display: block;
}
.mega-nav-box .mega-items a {
  color: var(--base-color-text);
  display: block;
  margin-bottom: 5px;
  position: relative;
  text-decoration: none;
  transition: padding 0.3s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.mega-nav-box .mega-items a:before,
.mobile-menu-list .menu-item a:before {
  content: '\f061';
  font-size: 0.875rem;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 12px;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: opacity 0.3s;
}
.mega-nav-box .mega-items a.current-menu-item,
.mega-nav-box .mega-items a:hover {
  color: var(--bs-primary);
  padding-left: 20px;
}
.mega-nav-box .mega-items a.current-menu-item {
  pointer-events: none;
}
.mega-nav-box .mega-items a.current-menu-item:before,
.mega-nav-box .mega-items a:hover:before,
.offcanvas .mobile-menu-list .menu-item a:hover:before,
.offcanvas .mobile-menu-list .current-menu-item a::before {
  opacity: 1;
}
.scrollup {
  background: #000;
  border-radius: 5px;
  bottom: 20px;
  cursor: pointer;
  display: none;
  font-size: 1.3em;
  overflow: hidden;
  padding: 5px 10px;
  position: fixed;
  right: 20px;
  text-align: center;
  vertical-align: middle;
  z-index: 1;
}
.scrollup > a {
  color: #fff;
  display: block;
  position: relative;
  text-decoration: none;
}
.scrollup > a:hover {
  color: var(--bs-primary);
}
.navigation .nav-links {
  margin-bottom: 2rem;
  overflow: hidden;
}
.navigation ul.page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
}
.navigation ul.page-numbers li {
  float: left;
  margin-left: -1px;
}
.navigation ul.page-numbers li:first-child {
  margin-left: 0;
}
.navigation .nav-links .nav-next a,
.navigation .nav-links .nav-previous a,
.navigation ul.page-numbers li a,
.navigation ul.page-numbers li span {
  background-color: #fff;
  border: 1px solid var(--bs-primary);
  border-radius: 0;
  color: var(--bs-primary);
  display: inline-block;
  font-family: Oswald;
  letter-spacing: 0.3px;
  padding: 10px 20px;
  position: relative;
  text-transform: uppercase;
}
.navigation .nav-links .nav-previous a {
  max-width: 100%;
  overflow: hidden;
  padding-left: 45px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.navigation .nav-links .nav-next a {
  max-width: 100%;
  overflow: hidden;
  padding-right: 45px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.navigation .nav-links .nav-next a:hover,
.navigation .nav-links .nav-previous a:hover,
.navigation ul.page-numbers li a:hover,
.navigation ul.page-numbers li span:hover {
  background: var(--bs-primary);
  color: #fff;
}
.navigation.post-navigation {
  padding-top: 1.875rem;
}
.post-navigation .nav-next a,
.post-navigation .nav-previous a {
  border: 1px solid #ddd;
  border-radius: 0.938rem;
  display: inline-block;
  padding: 0.313rem 0.875rem;
  text-decoration: none !important;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.post-navigation .nav-next a::after,
.post-navigation .nav-previous a::before {
  line-height: 0;
  position: absolute;
  top: 50%;
}
.post-navigation .nav-previous a::before {
  content: '\f060' !important;
  left: 20px;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.post-navigation .nav-next a::after {
  content: '\f061' !important;
  right: 20px;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.post-navigation .nav-next a:hover,
.post-navigation .nav-previous a:hover {
  background: #eee none repeat scroll 0 0;
}
.site-main .comment-navigation,
.site-main .post-navigation,
.site-main .posts-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-content.card-block {
  padding: 20px;
}
.footer-widget .contact-info {
  padding-top: 25px;
}
.footer-widget .contact-info a:hover,
.site-footer .site-info a:hover {
  text-decoration: underline;
}
.footer-widget .menu .nav-link {
  color: #fff;
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 0.5rem 0;
  position: relative;
  text-decoration: none !important;
  transition: padding 0.3s;
}
.footer-widget .menu .nav-link:before {
  content: '\f061';
  font-size: 0.875rem;
  left: -5px;
  opacity: 0;
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transition: opacity 0.3s;
}
.footer-widget .menu .nav-link:hover {
  padding-left: 15px;
}
.footer-widget .menu .nav-link:hover:before {
  opacity: 1;
}
.close,
.btn-close {
  background: 0 0;
  border: 0;
  color: #000;
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.5;
  text-shadow: 0 1px 0 #fff;
}
.modalForm .modal-header {
  background: var(--base-color-text);
}
.modalForm h4 {
  color: #fff;
  font-family: Oswald;
  margin-top: 0;
}
.modalForm form {
  max-width: 350px;
}
.modalForm label {
  font-size: 0.875rem;
}
.modalForm p {
  margin-bottom: 1rem;
}
.modalForm textarea {
  height: 150px;
}
.modalForm .modal-dialog {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.modalForm .wpcf7-submit {
  background-color: var(--bs-primary);
}
#clients-carousel.owl-carousel .owl-stage,
#solutions-carousel.owl-carousel .owl-stage {
  display: flex;
}
#solutions-carousel.owl-carousel .item {
  height: 100%;
}
#solutions-carousel.owl-carousel .item a {
  display: block;
  text-decoration: none;
}

#clients-carousel.owl-carousel .item {
  font-size: 0.875rem;
  height: 100%;
  padding: 0 15px 80px;
  position: relative;
}
#clients-carousel.owl-carousel .item .post-thumbnail {
  height: 124px;
}
#clients-carousel.owl-carousel .item .meta-wrapper {
  bottom: 0;
  position: absolute;
}
#clients-carousel.owl-carousel .owl-item:after {
  background: #009aac;
  content: '';
  display: inline-block;
  height: 75px;
  position: absolute;
  right: -10px;
  top: 50%;
  width: 1px;
}
#clients-carousel.owl-carousel .owl-dots {
  margin-top: 30px !important;
}
#clients-carousel.owl-carousel .owl-item img {
  margin: 0 auto !important;
  width: auto !important;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #009aac;
}
.our-solutions {
  background-color: #f3f3f3;
}
.our-solutions > .container {
  max-width: 991px;
}
/* .our-solutions h2 {
  margin: 0;
} */
.our-solutions a.trigger {
  border: 5px solid transparent;
  color: inherit;
  display: block;
  height: 100%;
  margin: 0 auto;
  max-width: 350px;
  padding: 1rem 0;
  text-align: center;
  text-decoration: none !important;
}
.our-solutions a.trigger:hover,
.our-solutions a.trigger.active {
  background: #fff !important;
  border-color: var(--bs-primary);
}
.our-solutions .solution {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin: 0 auto;
  max-width: 300px;
  overflow: hidden;
}
.our-solutions .solution div {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 250px;
}
.our-solutions .solution div:last-child {
  flex-grow: 1;
}
.our-solutions .list ul {
  margin: 0;
  padding-left: 1.125rem;
}
.our-solutions .list li {
  margin-bottom: 10px;
}
.our-solutions .collapse-me .close {
  color: var(--bs-primary);
  font-size: 2.5rem;
  opacity: 1;
}
#projects {
  position: relative;
}
#projects .projects-intro {
  left: 0;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 3rem;
  z-index: 999;
}
#projects .projects-intro .our-works-wrapper a {
  pointer-events: all;
}
#projects .excerpt-wrapper {
  padding-bottom: 3rem;
  padding-top: 3rem;
}
#projects .testimonials {
  background: var(--bs-secondary);
}
#projects .testimonials hr {
  border-top-color: rgba(255, 255, 255, 0.5);
}
#projects .testimonials .avatar {
  border-radius: 50%;
  height: auto;
  max-width: 100px;
  width: 100%;
}
#projects .carousel-wrapper {
  padding: 0 45px;
}
#projects .owl-carousel .owl-dots {
  margin-top: 0 !important;
  padding: 15px 0 !important;
}
.home #projects .owl-carousel .owl-dots {
  background: #333;
}
#projects .thumb-wrapper .owl-dots {
  background: 0 0 !important;
  bottom: 0;
  left: 15px;
  position: absolute;
}
.projects.type-projects {
  margin-bottom: 5rem;
}
.home .cta {
  background-color: var(--bs-primary);
}
.cta {
  background-color: #333;
  color: #fff;
  padding: 75px 0;
}
.cta h2 {
  color: #fff;
  font-size: 3.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.cta p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0;
}
.clear:after,
.clear:before,
.comment-content:after,
.comment-content:before,
.entry-content:after,
.entry-content:before,
.site-content:after,
.site-content:before,
.site-footer:after,
.site-footer:before,
.site-header:after,
.site-header:before {
  content: '';
  display: table;
  table-layout: fixed;
}
.clear:after,
.comment-content:after,
.entry-content:after,
.site-content:after,
.site-footer:after,
.site-header:after {
  clear: both;
}
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
a img.alignright {
  float: right;
  margin: 0.313rem 0 1.25rem 1.25rem;
}
a img.alignnone {
  margin: 0.313rem 1.25rem 1.25rem 0;
}
a img.alignleft {
  float: left;
  margin: 0.313rem 1.25rem 1.25rem 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption.alignnone {
  margin: 0.313rem 1.25rem 1.25rem 0;
}
.wp-caption.alignleft {
  margin: 0.313rem 1.25rem 1.25rem 0;
}
.wp-caption.alignright {
  margin: 0.313rem 0 1.25rem 1.25rem;
}
.widget {
  font-size: 1rem;
  margin: 0 0 1.5em;
}
.widget select {
  max-width: 100%;
}
.widget_search .search-form input[type='submit'] {
  display: none;
}
.half-rule {
  margin: 2.5rem 0;
  width: 6rem;
}
.widget_categories .nav-link {
  display: inline-block;
}
.wp-block-quote {
  background: #f3f3f3;
  border: 1px solid var(--bs-primary);
  padding: 25px;
}
.wp-block-quote p {
  font-weight: 600;
  margin-bottom: 0;
}
#content.site-content {
  padding-bottom: 0;
  padding-top: 0;
}
.sticky .entry-title::before {
  content: '\f08d';
  font-family: 'Font Awesome\ 5 Free';
  font-size: 1.563rem;
  font-weight: 900;
  left: -2.5rem;
  position: absolute;
  top: 0.375rem;
}
.sticky .entry-title {
  position: relative;
}
.group-blog .byline,
.single .byline {
  display: inline;
}
.entry-content,
.entry-summary,
.page-content {
  margin: 1.5em 0 0;
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}
.blank-page-with-container .entry-content,
.page-template-blank-page .entry-content {
  margin-top: 0;
}
.post.hentry {
  margin-bottom: 5rem;
}
.byline,
.comments-link,
.posted-on {
  color: #9a9a9a;
}
.entry-title > a {
  color: inherit;
}
.page .entry-content {
  margin: 0;
}
.cta-contact {
  text-align: center;
}
.cta-contact .wp-block-button__link {
  align-items: center;
  background: #f8c44f !important;
  border-radius: 0 !important;
  color: #000 !important;
  display: inline-flex;
  font-family: Oswald;
  font-size: 1.75rem;
  font-weight: 300;
  gap: 1rem;
  justify-content: center;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  text-align: center;
  transition: color 0.15s;
}
.cta-contact .wp-block-button__link:hover {
  background: #000 !important;
  color: #fff !important;
  text-decoration: none;
}
.archive .entry-footer {
  margin-top: 15px;
}
.single .entry-footer {
  margin-top: 50px;
}
.category .excerpt-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100px;
}
#comments,
.comments-link {
  display: none;
}
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
.comment-body .pull-left {
  padding-right: 0.625rem;
}
.comment-list .comment {
  display: block;
}
.comment-list {
  padding-left: 0;
}
.comments-title {
  font-size: 1.125rem;
}
.comment-list .pingback {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
  padding: 0.563rem 0;
}
.comment-list .pingback:first-child {
  border: medium none;
}
.comment-content .wp-smiley,
.entry-content .wp-smiley,
.page-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
embed,
iframe,
object {
  max-width: 100%;
}
.wp-caption {
  background: #f1f1f1 none repeat scroll 0 0;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  padding: 0.313rem 0.313rem 0;
  text-align: center;
}
.wp-caption img[class*='wp-image-'] {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}
.wp-caption .wp-caption-text {
  font-size: 0.688rem;
  line-height: 1.063rem;
  margin: 0;
  padding: 0.625rem;
}
.wp-caption-text {
  text-align: center;
}
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-item .gallery-columns-2 {
  max-width: 50%;
}
.gallery-item .gallery-columns-3 {
  max-width: 33.33333%;
}
.gallery-item .gallery-columns-4 {
  max-width: 25%;
}
.gallery-item .gallery-columns-5 {
  max-width: 20%;
}
.gallery-item .gallery-columns-6 {
  max-width: 16.66667%;
}
.gallery-item .gallery-columns-7 {
  max-width: 14.28571%;
}
.gallery-item .gallery-columns-8 {
  max-width: 12.5%;
}
.gallery-item .gallery-columns-9 {
  max-width: 11.11111%;
}
.gallery-caption {
  display: block;
}
.footer-logo,
.footer-widget,
.site-footer {
  background-color: var(--bs-secondary) !important;
  color: #fff !important;
}
.site-footer a {
  color: #fff !important;
}
.footer-widget h3,
.footer-widget h4 {
  color: #fff;
}
.footer-widget h3 {
  font-size: 1.5rem;
  font-weight: 700 !important;
}
.footer-widget h4 {
  margin-bottom: 0;
}
.footer-widget .newsletter .widget_text {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 25px;
}
.footer-widget .newsletter .wpcf7-list-item {
  margin: 0;
}
.footer-widget .newsletter .privacy-policy {
  display: inline-block;
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.footer-widget .newsletter .privacy-policy a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  display: none;
}
.infinity-end.neverending .site-footer {
  display: block;
}
.woocommerce-cart-form .shop_table .coupon .input-text {
  width: 8.313rem !important;
}
.variations_form .variations .value > select {
  margin-bottom: 0.625rem;
}
.woocommerce-MyAccount-content .col-1,
.woocommerce-MyAccount-content .col-2 {
  max-width: 100%;
}
.elementor-page article .entry-footer {
  display: none;
}
.elementor-page.page-template-fullwidth #content.site-content {
  padding-bottom: 0;
  padding-top: 0;
}
.elementor-page .entry-content {
  margin-top: 0;
}
.vc_desktop article .entry-footer {
  display: none;
}
.vc_desktop #content.site-content {
  padding-bottom: 0;
  padding-top: 0;
}
.vc_desktop .entry-content {
  margin-top: 0;
}
@media only screen and (min-width: 576px) {
  .breadcrumb-wrapper {
    background-position:
      top right,
      top left,
      top right;
  }
}
@media only screen and (max-width: 767px) {
  header#masthead .navbar-nav > li > a {
    padding: 1rem;
  }
  #projects .projects-intro {
    margin-bottom: 30px;
    position: relative;
  }
  #projects .projects-intro .wrapper {
    padding: 0;
  }
  #projects .carousel-wrapper {
    padding: 0 30px;
  }
  .post-navigation .nav-next a,
  .post-navigation .nav-previous a {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .page .heading {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .logo {
    height: 34.5px;
    width: 150px;
  }
  .desktop-menu {
    display: block;
  }
  .mobile-menu {
    display: none;
  }
  header#masthead .navbar-nav > li:after {
    content: '|';
    position: absolute;
    right: 0;
    top: 44%;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
  }
  header#masthead .navbar-nav > li:nth-last-child(-n + 2):after {
    content: '';
  }
  .mega-info {
    float: left;
    padding: 120px 0 50px;
    width: 30%;
  }
  .mega-nav-trigger:after {
    border-bottom: 0;
    border-left: 0.4em solid transparent;
    border-right: 0.4em solid transparent;
    border-top: 0.4em solid;
    content: '';
    display: inline-block;
    margin-left: 0.5em;
    transition: transform 0.2s ease-in-out;
    vertical-align: 0.255em;
  }
  .mega-nav-trigger.active:after {
    transform: rotate(180deg);
    vertical-align: 0.3em;
  }
  .mega-nav-row {
    -moz-column-count: 2;
    column-count: 2;
    padding: 120px 0 50px 40px;
  }
  .mega-nav-col {
    width: 300px;
  }
  .cta-contact .mail:before {
    background-color: currentColor;
    content: '';
    flex-shrink: 0;
    height: 36px;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M29.456,3.46L1.911,12.642L9,18.155v11.669l5.803-7.156l7.768,6.042L29.456,3.46z M6.089,13.358 l16.607-5.536l-12.443,8.775L6.089,13.358z M11,18.518l10.686-7.543L11,24.175V18.518z M16.055,21.109l9.827-12.144L21.43,25.29 L16.055,21.109z'/></svg>")
      no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'><path d='M29.456,3.46L1.911,12.642L9,18.155v11.669l5.803-7.156l7.768,6.042L29.456,3.46z M6.089,13.358 l16.607-5.536l-12.443,8.775L6.089,13.358z M11,18.518l10.686-7.543L11,24.175V18.518z M16.055,21.109l9.827-12.144L21.43,25.29 L16.055,21.109z'/></svg>")
      no-repeat center / contain;
    transition: color 0.15s;
    width: 36px;
  }
  .cta-contact .read-more:before {
    background-color: currentColor;
    content: '';
    flex-shrink: 0;
    height: 32px;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16 0C7.163 0 0 7.163 0 16s7.163 16 16 16 16-7.163 16-16S24.837 0 16 0zm1 9v6h6a1 1 0 1 1 0 2h-6v6a1 1 0 1 1-2 0v-6H9a1 1 0 1 1 0-2h6V9a1 1 0 1 1 2 0z"/></svg>')
      no-repeat center / contain;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M16 0C7.163 0 0 7.163 0 16s7.163 16 16 16 16-7.163 16-16S24.837 0 16 0zm1 9v6h6a1 1 0 1 1 0 2h-6v6a1 1 0 1 1-2 0v-6H9a1 1 0 1 1 0-2h6V9a1 1 0 1 1 2 0z"/></svg>')
      no-repeat center / contain;
    mask-size: contain;
    -webkit-mask-size: contain;
    transition: color 0.15s;
    width: 32px;
  }
  .our-solutions .solution h2 {
    font-size: 1.5rem !important;
  }
  .cta h2 {
    font-size: 3rem;
  }
  #projects .empty {
    height: auto;
  }
  #projects .projects-intro {
    top: 6rem;
  }
  #projects .excerpt-wrapper {
    padding-bottom: 6rem;
    padding-top: 6rem;
  }
  .post-type-archive-projects .excerpt-wrapper,
  .single-projects .excerpt-wrapper {
    padding-bottom: 5rem;
  }
  .comment-navigation .nav-previous,
  .post-navigation .nav-previous,
  .posts-navigation .nav-previous {
    float: left;
    width: 48%;
  }
  .comment-navigation .nav-next,
  .post-navigation .nav-next,
  .posts-navigation .nav-next {
    float: right;
    text-align: right;
    width: 48%;
  }
}
@media (min-width: 992px) {
  .logo {
    height: 46px;
    width: 200px;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-left: 1rem;
    padding-right: 1.125rem;
  }
  .cta h2 {
    font-size: 3.75rem;
  }
  .p-lg-6 {
    padding: 4.5rem !important;
  }
}
