@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/lightslider/1.1.6/css/lightslider.min.css");
@import url("https://cdn.jsdelivr.net/npm/@fancyapps/ui@4.0.5/dist/fancybox.css");

/* GLOBAL STYLES
-------------------------------------------------- */
*, ::after, ::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: transparent;
  /*border: 1px solid red;*/
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: #221f1d;
  letter-spacing: 0.2px;
  word-spacing: 0.125rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #221f1d;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 50px;
  line-height: 58px;
}

h2 {
  font-size: clamp(25px, 5vw, 35px);
  line-height: 1.5;
}

h3 {
  font-size: clamp(22px, 5vw, 25px);
  line-height: 1.5;
}

a {
  display: inline-block;
}

a, a:focus, a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

picture {
  display: block;
  background-color: #dddddd;
}

.aspect-ratio-auto,
picture.aspect-ratio-auto img {
  aspect-ratio: auto;
}

.aspect-ratio-1-1,
picture.aspect-ratio-1-1 img {
  aspect-ratio: 1 / 1;
}

.aspect-ratio-3-2,
picture.aspect-ratio-3-2 img {
  aspect-ratio: 3 / 2;
}

.aspect-ratio-16-9,
picture.aspect-ratio-16-9 img {
  aspect-ratio: 16 / 9;
}

.aspect-ratio-21-9,
picture.aspect-ratio-21-9 img {
  aspect-ratio: 21 / 9;
}

i {
  font-weight: normal;
}

button:focus {
  outline: transparent;
}

section, footer {
  padding: 85px 0;
  position: relative;
}

/* Font size */
.f12 {
  font-size: 12px;
  line-height: 24px;
}

.f14 {
  font-size: 14px;
  line-height: 26px;
}

.f16 {
  font-size: 16px;
  line-height: 28px;
}

.f18 {
  font-size: 18px;
  line-height: 30px;
}

.f20 {
  font-size: 20px;
  line-height: 32px;
}

.f22 {
  font-size: 22px;
  line-height: 34px;
}

/* Font weight */
.f500 {
  font-weight: 500;
}

.f600 {
  font-weight: 600;
}

.f700 {
  font-weight: 700;
}

.f800 {
  font-weight: 800;
}

/* BG Colors */
.red {
  background-color: #cf132d;
}

.white {
  background-color: #FFFFFF;
}

.gray {
  background-color: #F3F3F3;
}

.text-gold {
  color: #c8a45d;
}

@media (min-width: 1200px) {
  .pb-lg-45 {
    padding-bottom: 45px;
  }
}

@media (max-width: 1199.98px) {
  section, footer {
    padding: 45px 0;
  }

  h1 {
    font-size: 36px;
    line-height: 48px;
  }
}

@media (max-width: 767.98px) {
  section, footer {
    padding: 45px 10px;
  }
}

/* NAVIGATION
-------------------------------------------------- */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 0.2rem 0.2rem rgba(0,0,0,0.15), inset 0 -1px 0 rgba(255,255,255,0.15);
  height: 100px;
  padding: 11px 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.scroll-down {
  transform:translateY(-100%); transition: all 0.3s ease-in-out;
  box-shadow: none;
}

.scroll-up {
  transform:translateY(0); transition: all 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  width: 110px;
  height: 78px;
}

.navbar .navbar-nav a {
  transition: none;
}

.navbar .navbar-nav .nav-link {
  margin: 0;
  padding: 0 13px;
  font-size: 16px;
  line-height: 100px;
  color: #221f1d;
  font-weight: 500;
  position: relative;
}

.navbar .navbar-nav .nav-link.current,
.navbar .navbar-nav .nav-link:hover {
  color: #c8a45d;
  /*border-bottom: 2px solid #c8a45d;*/
}

.navbar .navbar-nav .dropdown-item:focus,
.navbar .navbar-nav .dropdown-item:hover {
  background-color: #c8a45d;
  color: #FFFFFF;
}

.navbar .dropdown-menu .dropdown-item {
    padding: 4px 8px;
    font-size: 14px;
    margin-bottom: 2px;
  }

  /*.navbar .dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
  }*/

  .navbar .navbar-nav .nav-item.contact-item {
    display: none;
  }

  .navbar .nav-item .dropdown-menu {
    border-radius: 0;
  }  

  .navbar .nav-item:hover .nav-link {
    color: #c8a45d;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity:1;
    visibility:visible;
    top:100%;
    transform: rotateX(0deg);
  }

  .navbar .nav-link.contact-btn {
    background-color: transparent;
    border: 1px solid #221f1d;
    border-radius: 0;
    color: #221f1d;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    padding: 16px 28px;
  }

  .navbar .nav-link.contact-btn:hover {
    background-color: #221f1d;
    border-color: #221f1d;
    color: #fff8ee;
  }

  .navbar .nav-item:hover .nav-link.contact-btn,
  .navbar .nav-item:hover .nav-link.contact-btn:hover {
    color: #ffffff;
  }

@media (min-width: 1200px) {
  /*.navbar .dropdown-menu {
    margin: 0;
  }*/

  .navbar .nav-item .dropdown-menu {
    display:block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: -16px;
    margin-left: -1px;
    padding: 5px 5px;
    border-radius: 0;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
  }
}

@media (max-width: 1199.98px) {
  .navbar>.container-fluid {
    padding-left: 0;
    padding-right: 0;
  }

  .navbar-brand {
    margin-left: 20px;
  }

  .navbar .navbar-nav {
    background-color: #fff8ee;
    height: calc(100vh - 100px);
    margin-top: 11px;
  }

  .navbar .navbar-nav .nav-item {
    padding: 10px 20px 10px 20px;
  }

  .navbar .navbar-nav li:first-child.nav-item {
    border-top: 1px solid #d8d8d8;
    padding-top: 28px;
  }

  .navbar .navbar-nav .nav-item.contact-item {
    display: block;
    background-color: #c8a45d;
    color: #ffffff;
    border: 1px solid #c8a45d;
    margin-top: 10px;
  }

  .navbar .navbar-nav .nav-link.current,
  .navbar .navbar-nav .nav-link {
    margin: 0;
    padding: 0;
    line-height: inherit;
    border-bottom: 0;
    color: #221f1d;
  }

  .navbar .navbar-nav .nav-link:hover {
    border-bottom: 0;
  }

  .navbar .navbar-nav .nav-item.contact-item .nav-link {
    color: #ffffff;
  }

  .navbar .dropdown-menu {
    background-color: transparent;
    border-color: transparent;
    padding: 0 0;
    display: block;
  }

  .navbar .dropdown-menu .dropdown-item::before {
    content: "—";
    position: relative;
    left: -8px;
  }

  .navbar-toggler {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .navbar .nav-link.contact-btn {
    display: none;
  }

  .hamburger {
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0 20px 0 0;
    padding: 0;
    overflow: visible;
  }

  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #152c5e;
  }

  .hamburger-box {
    width: 26px;
    height: 18px;
    display: inline-block;
    position: relative;
  }

  .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }

  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 26px;
    height: 2px;
    background-color: #152c5e;
    border-radius: 0;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }

  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
  }

  .hamburger-inner::before {
    top: -10px;
  }

  .hamburger-inner::after {
    bottom: -10px;
  }

  .hamburger--spring .hamburger-inner {
    top: 5px;
    transition: background-color 0s 0.13s linear;
  }

  .hamburger--spring .hamburger-inner::before {
    top: 8px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spring .hamburger-inner::after {
    top: 16px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spring.is-active .hamburger-inner {
    transition-delay: 0.22s;
    background-color: transparent !important;
  }

  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg);
  }

  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg);
  }

  .hamburger--spring-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-duration: 0.13s;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
  }

  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  .hamburger--spring-r.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
  }

  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}

/* HERO
-------------------------------------------------- */
.section-hero {
  margin-top: 100px;
}

.section-hero .banner {
  position: relative;
  overflow: hidden;
  height: 640px;
}

.section-hero .banner-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.section-hero .banner-image img {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.section-hero .banner-details {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  z-index: 2;
}

.section-hero .banner-details h1 {
  margin-bottom: 20px;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}

.section-hero .banner-details .subhead {
  font-size: 20px;
  line-height: 32px;
  padding: 0 40px;
  margin-bottom: 30px;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.2);
}

/* Hero Stats */
.section-hero .content-wrap {
  padding: 80px 0;
}

.section-hero .content-wrap.bg-lite {
  background-color: #faebd7;
  color: #60502b;
}

.section-hero .content-text p {
  font-size: 22px;
  line-height: 34px;
}

.section-hero .content-stats p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
}

.section-hero .content-stats .stat-num {
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  margin-bottom: 15px;
}

@media (min-width: 1200px) {
  .section-hero .content-stats {
    margin-left: 100px;
  }
}

@media (max-width: 767.98px) {
  .section-hero .content-text p {
    font-size: 20px;
    line-height: 28px;
  }
}

.section-hero.section-block .content-wrap {
  padding-bottom: 0;
}

.section-hero .brand-wrap {
  padding-top: 40px;
  margin-top: 60px;
  padding-bottom: 20px;
  border-top: 1px solid #dedede;
}

.section-hero .brand-wrap .brand-wrap-img img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.4;
}

@media (min-width: 1200px) {
  .section-hero .brand-wrap .brand-wrap-img img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1;
  }
}

@media (max-width: 1199.98px) {
  .homepage .section-hero .banner {
    height: 500px;
  }
}

@media (max-width: 767.98px) {
  .section-hero .banner {
    min-height: auto;
    /*padding: 50px 10px 125px;*/
  }

  .section-hero .banner-content p {
    padding: 0;
  }

  .section-hero .content-wrap {
    padding: 50px 10px;
  }

  .section-hero.section-block .content-wrap {
    margin-left: 10px;
    margin-right: 10px;
  }

  .section-hero .content-stats p {
    text-align: center;
    /*margin-bottom: 45px;*/
  }

  .section-hero .content-stats .stat-num {
    margin-bottom: 10px;
  }
}

/* ICONS
-------------------------------------------------- */
@font-face {
  font-display: block;
  font-family: "bootstrap-icons";
  src: url("../icons/bootstrap-icons.woff2") format("woff2"), url("../icons/bootstrap-icons.woff") format("woff");
}

.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.bi-question-circle::before { content: "\f505"; }
.bi-chevron-down::before { content: "\f282"; }
.bi-arrow-right::before { content: "\f138"; }
.bi-stars::before { content: "\f589"; }
.bi-linkedin::before { content: "\f472"; }
.bi-geo-alt-fill::before { content: "\f3e7"; }
.bi-envelope-fill::before { content: "\f32c"; }
.bi-telephone-fill::before { content: "\f5b4"; }
.bi-arrow-right-circle::before { content: "\F134"; }
.bi-arrow-right-circle-fill::before { content: "\f133"; }
.bi-arrow-up-right-circle-fill::before { content: "\f140"; }
.bi-people-fill::before { content: "\f4cf"; }
.bi-hexagon-fill::before { content: "\f41b"; }
.bi-gear::before { content: "\F3E5"; }
.bi-nut::before { content: "\F4A9"; }
.bi-bounding-box::before { content: "\F1B6"; }
.bi-circle-square::before { content: "\F289"; }
.bi-shield-check::before { content: "\F52F"; }
.bi-hand-thumbs-up::before { content: "\F407"; }
.bi-aspect-ratio::before { content: "\F150"; }
.bi-award::before { content: "\F154"; }
.bi-pencil-square::before { content: "\F4CA"; }
.bi-clock::before { content: "\F293"; }
.bi-buildings::before { content: "\F87D"; }
.bi-chat-square-text::before { content: "\F264"; }
.bi-c-circle::before { content: "\F7DB"; }
.bi-play-circle-fill::before { content: "\F4F2"; }
.bi-play-circle::before { content: "\F4F3"; }

.bi-gear-fill::before { content: "\f3e2"; }
.bi-x-circle-fill::before { content: "\f622"; }
.bi-chat-square-fill::before { content: "\f260"; }
.bi-clock-fill::before { content: "\f291"; }
.bi-person-fill-check::before { content: "\f89e"; }
.bi-lightbulb-fill::before { content: "\f468"; }
.bi-check-circle-fill::before { content: "\f26a"; }
.bi-clipboard-check-fill::before { content: "\f71b"; }
.bi-arrow-repeat::before { content: "\f130"; }
.bi-star-fill::before { content: "\f586"; }
.bi-whatsapp::before { content: "\F618"; }
.bi-dash::before { content: "\F2EA"; }
.bi-person-check::before { content: "\f4d6"; }
.bi-lightbulb::before { content: "\f46b"; }
.bi-check2-circle::before { content: "\f270"; }
.bi-file-earmark-text::before { content: "\f38b"; }
.bi-file-earmark-check::before { content: "\f360"; }
.bi-star::before { content: "\f588"; }
.bi-patch-plus-fill::before { content: "\f4bb"; }
.bi-person-gear::before { content: "\f8a7"; }
.bi-person-up::before { content: "\f8aa"; }
.bi-person-check::before { content: "\f4d6"; }
.bi-person-add::before { content: "\f89a"; }
.bi-caret-down-fill::before { content: "\F229"; }
.bi-chevron-compact-down::before { content: "\F279"; }
.bi-chevron-left::before { content: "\F284"; }
.bi-chevron-right::before { content: "\F285"; }
.bi-arrow-left-short::before { content: "\F12C"; }
.bi-arrow-right-short::before { content: "\F135"; }
.bi-geo-alt::before { content: "\F3E8"; }
.bi-sign-turn-right::before { content: "\F832"; }
.bi-telephone::before { content: "\F5C1"; }
.bi-envelope::before { content: "\F32F"; }
.bi-instagram::before { content: "\F437"; }

.btn-more::after,
.banner-breadcrumb a::after,
.list-default li::before,
.list-check li::before,
.list-process li::before {
  font-family: "bootstrap-icons";
  /*color: #60502b;*/
}

/* BUTTONS
-------------------------------------------------- */
/* Default */
.btn-sq {
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase!important;
  color: #cf132d;
  cursor: pointer;
  text-align: center;
  border: 2px solid #cf132d;
  border-radius: 0;
  position: relative;
  overflow: hidden!important;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  background: transparent!important;
  z-index: 10;
  padding: 10px 40px;
  min-width: 140px;
}

.btn-sq:hover {
  border: 2px solid #EB0A1E;
  color: #ffffff!important;
}

.btn-sq::before {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #EB0A1E;
  position: absolute;
  -ms-transform: skewX(50deg);
  -webkit-transform: skewX(50deg);
  transform: skewX(50deg);
  left: -30px;
  opacity: 1;
  top: 0;
  z-index: -12;
  -moz-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all .7s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow:2px 0px 14px rgba(0,0,0,.6);
}

.btn-sq::after {
  content: "";
  width: 0%;
  height: 100%;
  display: block;
  background: #cf132d;
  position: absolute;
  -ms-transform: skewX(50deg);
  -webkit-transform: skewX(50deg);
  transform: skewX(50deg);
  left: -30px;
  opacity: 0;
  top: 0;
  z-index: -15;
  -webkit-transition: all .94s cubic-bezier(.2,.95,.57,.99);
  -moz-transition: all .4s cubic-bezier(.2,.95,.57,.99);
  -o-transition: all .4s cubic-bezier(.2,.95,.57,.99);
  transition: all .4s cubic-bezier(.2,.95,.57,.99);
  box-shadow: 2px 0px 14px rgba(0,0,0,.6);
}

.btn-sq:hover::before, .btn-sq:hover::before,
.btn-sq:hover::after, .btn-sq:hover::after {
  opacity:1;
  width: 232px;
}

.btn-sq.btn-sq-fill {
  background: #cf132d!important;
  color: #FFFFFF;
}

.btn-sq.btn-sq-white-fill {
  background: #FFFFFF!important;
  border: 2px solid #FFFFFF;
  color: #212121;
}

.btn-sq.btn-sq-white {
  border: 2px solid #FFFFFF;
  color: #212121;
}

.btn {
  background-color: #c8a45d;
  border: 1px solid #c8a45d;
  border-radius: 0;
  color: #fff8ee;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 32px;
  margin: 0;
}

.btn.btn-fill {
  background-color: #c8a45d;
  border-color: #c8a45d;
  color: #fff8ee;
}

.btn:hover, .btn.btn-fill:hover {
  background-color: #221f1d;
  border-color: #221f1d;
  color: #fff8ee;
}

/* Inline */
.btn-more, a.btn-more, button.btn-more {
  background: transparent;
  border: 0;
  border-bottom: 1px solid transparent;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*font-size: 14px;*/
  /*letter-spacing: 0.08em;*/
  font-weight: 500;
  /*text-transform: uppercase;*/
  color: #1a191d;
  position: relative;
  -webkit-transition: all 250ms ease 0.2s;
  -khtml-transition: all 250ms ease 0.2s;
  -moz-transition: all 250ms ease 0.2s;
  -ms-transition: all 250ms ease 0.2s;
  -o-transition: all 250ms ease 0.2s;
  transition: all 250ms ease 0.2s;
  text-decoration: none;
}

.btn-more:hover, .card:hover .btn-more {
  color: #c8a45d;
}

.card:hover .btn-more {
  border-color: transparent;
}

.btn-more::after {
  content: "\F133";
  font-size: 20px;
  color: #c8a45d;
  position: absolute;
  right: -25px;
  -webkit-transition: all 250ms ease 0s;
  -khtml-transition: all 250ms ease 0s;
  -moz-transition: all 250ms ease 0s;
  -ms-transition: all 250ms ease 0s;
  -o-transition: all 250ms ease 0s;
  transition: all 250ms ease 0s;
}

.link-open {
  background-color: transparent;
  color: #221f1d;
  text-decoration: none;
}

.link-open:hover {
  background-color: transparent;
  color: #c8a45d;
}

/* HOMEPAGE
-------------------------------------------------- */
/* Heading */
.section-heading {
  margin-bottom: 40px;
}

.section-heading p.label-head {
  font-size: 14px;
  margin-bottom: 20px !important;
  width: fit-content;
}

.section-heading h2 {
  margin-top: 0;
  margin-bottom: 30px;
}

.section-heading p.sub-head {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 50px;
}

.section-heading.with-border {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #dedede;
}

.section-heading.with-border p.sub-head {
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .section-heading p.sub-head {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  /*.section-heading p, .section-heading p.sub-head {
    margin: 15px 0 20px;
  }*/
}

/* Section Block */
.section-block .bg-wrap {
  height: 750px;
  background-color: #cf132d;
  background-image: url('../assets/images/bg-services.jpg');
  background-size: cover;
  background-position: 0 0, 0 0;
  background-size: auto, auto;
}

.section-block .content-wrap {
  margin-top: -75px;
  margin-bottom: 50px;
  padding: 80px 60px;
  position: relative;
  z-index: 5;
}

.section-block .text-wrap {
  padding-left: 50px;
}

.section-block .custom-heading {
  margin-bottom: 25px;
}

@media (max-width: 1199.98px) {
  .section-block .content-wrap {
    padding: 60px 60px;
  }

  .section-block .text-wrap {
    padding-left: 0;
  }

  .section-block .img-wrap {
    margin-bottom: 45px;
  }
}

@media (max-width: 767.98px) {
  .section-block .content-wrap {
    padding: 30px;
  }

  .section-block .img-wrap {
    margin-bottom: 0;
    margin-top: 35px;
  }
}

/* SERVICES */
@media (min-width: 1200px) {
  .section-services-intro .content-wrap {
    position: relative;
    height: 100%;
    margin-right: 100px;
  }

  .section-services-intro .content-details {
    position: sticky;
    top: 150px;
    left: 0;
    z-index: 101;
  }
}

.section-services-intro .service-item {
  margin-bottom: 80px;
}

@media (max-width: 1199.98px) {
  .section-services-intro .service-item {
    margin-bottom: 45px;
  }
}

.vid-wrap {
  position: relative;
  width: 100%;
}

.vid-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  aspect-ratio: 16 / 9;
  padding: 0;
  margin: 0;
}

/* TEXT SLIDE */
.section-slide {
  background-color: #faebd7;
  color: #60502b;
  padding: 85px 0;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

.section-slide .text-loop {
  overflow: hidden;
  white-space: nowrap;
}

.text-track {
  display: flex;
  animation: loop 30s linear infinite;
}

.text-track span {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 700;
  padding-right: 1rem;
}

/* WHY */
@media (min-width: 1200px) {
}

.section-why ul {
  margin-bottom: 40px;
}

.section-why .content-wrap li {
  margin-bottom: 25px;
}

/* PROCESS */
/* Infinite loop animation */
@keyframes loop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* REVIEWS */
.section-reviews {
  background-color: #60502b;
  /*margin: 85px 0 0;*/
}

.section-reviews h2 {
  color: #fff8ee;
}

/* CLIENT LOGOS */
.section-clients {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #60502b;
}

/* BLOG */
.section-blog {
  /*background-color: #faebd7;*/
}

/* Card */
.card {
  border-color: #dedede;
  border-width: 2px;
  border-radius: 0;
  position: relative;
  transition: 0.5s all ease-in-out;
}

.section-blog .card {
  height: 100%;
}

.card.card-linked:hover {
  border-color: #c8a45d;
  box-shadow: 0 4px 7px 0 rgb(218 220 230 / 60%);
  cursor: pointer;
}

.card-title {
  color: #212121;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 25px;
  position: relative;
}

.card-img, .card-img-top {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  position: relative;
}

.card-body {
  background-color: #FFFFFF;
  border-top: 1px solid #dedede;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  color: #5a5a5a;
  transition: all 250ms linear 0ms;
  padding: 25px 25px;
}

.section-blog .card-body {
  min-height: 280px;
}

.list-default li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}

.list-default li::before {
  content: "\F2EA";
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 0;
}

.list-check li::before {
  content: "\F272";
}

.list-process li::before {
  content: "\F287";
  font-size: 18px;
  z-index: 2;
}

.list-process li::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 8px;
  width: 1px;
  height: calc(100% - 4px);
  z-index: 1;
  background-color: #60502b;
}

.list-process li:last-child::after {
  display: none;
}

@media (max-width: 1199.98px) {
  .card {
    margin-bottom: 30px;
  }

  .card-body {
    padding: 15px 15px;
  }

  .card-title {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .section-blog .card {
    height: auto;
  }

  .section-blog .card-body {
    min-height: auto;
  }
}

/* Section Services */
.section-services .img-wrap {
  background-image: linear-gradient(0deg, #ebedee 0%, #ffffff 100%);
}

.section-services .card {
  background-color: transparent;
}

.section-services .card-body {
  background-color: transparent;
  border-top: 0;
  padding: 0 25px 0 0;
}

.section-services .card-body i {
  font-size: 36px;
  margin-bottom: 20px;
}

.section-services .card-title {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .section-services .card {
    background-color: transparent;
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  .section-services .img-wrap {
    margin: 0 -10px;
  }
}

/* Section Capabilities */
.section-capabilities.section-block .content-wrap {
  background-color: #fdfbfb;
  border: 1px solid #ebedee;
  box-shadow: none;
}

.homepage .section-capabilities.section-block .text-wrap {
  padding-left: 0;
  padding-right: 50px;
}

@media (max-width: 1199.98px) and (min-width: 768px) {
  .section-capabilities.section-block .img-wrap {
    margin-top: 45px;
    margin-bottom: 0;
  }
}

/* OWL CAROUSEL */
.owl-theme .owl-nav,
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  margin: 0;
}

.section-clients .carousel-wrap {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0)
  );
}

/* Left shadow */
.section-clients .carousel-wrap::before,
/* Right shadow */
.section-clients .carousel-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.section-clients .carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(96,80,43,0.25), rgba(96,80,43,0));
}

.section-clients .carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(96,80,43,0.25), rgba(96,80,43,0));
}


/* CTA */
.section-cta {
  background: url(../images/cta-section-cover.webp) center center no-repeat;
  background-size: cover;
  padding: 120px 0;
}

.section-cta .content-wrap {
  background-color: #60502b;
}

.section-cta .custom-heading {
  margin-bottom: 45px;
}

@media (max-width: 1199.98px) {
  .section-cta .custom-heading {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .section-cta {
    padding: 60px 10px;
  }
}

/* FOOTER
-------------------------------------------------- */
.footer {
  background-color: #faebd7;
}

.footer, .footer a {
  color: #221f1d;
}

.footer a:hover {
  color: #c8a45d;
}

.footer .footer-content {
  padding: 100px 0 90px;
}

.footer .footer-content i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.footer .footer-brand img {
  display: block;
  width: 75%;
}

.footer .footer-menu {
  margin-bottom: 30px;
}

.footer .footer-menu .footer-menu-title {
  font-weight: 500;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer .footer-menu .footer-menu-list li {
  margin-bottom: 10px;
}

.footer .brand-line {
  height: 5px;
}

.footer .footer-address {
  border-top: 1px solid rgb(0 0 0 / 13%);
  padding-top: 30px;
}

.footer .footer-address p {
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
}

.footer .footer-address p i {
  position: absolute;
  left: 0;
  top: 0;
}

.footer .footer-social {
  padding-top: 30px;
}

.footer .footer-social li {
  float: left;
}

.footer .footer-social a {
  margin-right: 10px;
}

.footer .footer-social i {
  font-size: 28px;
}

.footer .copyright-content {
  font-size: 0.9rem;
  padding: 18px 0 8px;
}

.footer .copyright-content p, .footer .copyright-content a {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 24px;
}

.footer .copyright-content a:hover {
  color: #212121;
  text-decoration: underline;
}

.footer .copyright-content p img {
  border-radius: 100%;
  width: 18px;
  height: 18px;
  margin: 0 0 8px 2px;
  align-items: baseline;
}

@media (max-width: 1199.98px) {
  .footer .footer-content {
    padding: 100px 0 20px;
  }

  .footer .footer-brand {
    padding-bottom: 50px;
  }

  .footer .footer-brand img {
    width: 180px;
  }
}

@media (max-width: 991.98px) {
  .footer .footer-social i {
    font-size: 24px;
    line-height: 26px;
  }
}

@media (max-width: 767.98px) {
  .footer {
    padding: 0;
  }

  .footer .footer-content {
    padding: 45px 10px;
  }

  .footer .footer-menu {
    margin-bottom: 30px;
  }

  .footer .footer-menu .footer-menu-title {
    margin-bottom: 5px;
  }

  .footer .footer-menu .footer-menu-list li {
    margin-bottom: 0;
  }

  .footer .footer-address {
    margin-top: 15px;
  }

  .footer .footer-social {
    padding-top: 15px;
  }
}

/* INNER PAGE
-------------------------------------------------- */
.page-inner .section-hero.section-block .content-wrap {
  padding: 40px 60px;
}

.page-inner .banner {
  color: #FFFFFF;
}

.page-inner h1 {
  font-size: 36px;
  line-height: 48px;
  color: #FFFFFF;
}

.banner-breadcrumb {
  margin: 0 0;
  font-size: 16px;
  line-height: 18px;
}

.banner-breadcrumb a {
  color: #FFFFFF;
  position: relative;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  display: inline-block;
  margin-right: 30px;
}

.banner-breadcrumb a::after {
  content: "\f27b";
  position: absolute;
  top: 0;
  right: -25px;
  color: #FFFFFF;
}

.banner-breadcrumb a:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.page-alone .banner-breadcrumb a {
  margin-right: 0;
}

.page-alone .banner-breadcrumb a::after {
  display: none;
}

@media (max-width: 767.98px) {
  .page-inner .section-hero.section-block .content-wrap {
    padding: 30px;
  }
}

/* PRODUCT PAGE
-------------------------------------------------- */
.page-inner .section-hero .banner {
  background: url("../images/cover.jpg") no-repeat center center;
  background-size: cover;
  height: 350px;
}

/* Projects Gallery */
-------------------------------------------------- */
.project-slider {
  position: relative;
  min-height: 280px;
}

.carousel-wrap .heading {
  margin-bottom: 25px;
  padding-right: 100px;
}

.carousel-wrap .heading h2 {
  font-size: 20px;
  line-height: 32px;
}

.project-slider .card {
  border: 0;
}

.project-slider.owl-carousel .owl-nav button.owl-next,
.project-slider.owl-carousel .owl-nav button.owl-prev {
  text-align: center;
  font-size: 30px;
  border-radius: 50px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.25);
  display: block;
  height: 30px;
  width: 30px;
  position: absolute;
  top: -57px;
  right: 1px;
  transition: all .2s ease-in;
  background: #ffffff;
}

.project-slider.owl-carousel .owl-nav button.owl-prev {
  right: 45px;
}

.project-slider.owl-carousel .owl-nav button i {
  font-size: 28px;
  line-height: 28px;
  display: block;
  margin: 0 auto;
  color: rgba(0,0,0,.25);
}

.project-slider.owl-carousel .owl-nav button.owl-next:hover,
.project-slider.owl-carousel .owl-nav button.owl-prev:hover {
  background-color: #c8a45d;
  box-shadow: 0 0 0 1px #c8a45d;
}

.project-slider.owl-carousel .owl-nav button.owl-next:hover i,
.project-slider.owl-carousel .owl-nav button.owl-prev:hover i {
  color: #ffffff;
}

/* Owl Carousel Dots */
.project-slider.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 1.5rem;
}

.project-slider.owl-carousel .owl-dot {
  display: inline-block;
  margin: 0 6px;
}

.project-slider.owl-carousel .owl-dot span {
  width: 10px;
  height: 10px;
  display: block;
  background: #ddd;
  border-radius: 20px;
  transition: all 0.3s ease;
}

/* Active + Hover */
.project-slider.owl-carousel .owl-dot.active span,
.project-slider.owl-carousel .owl-dot:hover span {
  background: #c8a45d;
  transform: scale(1.3);
  width: 24px;
}

@media (min-width: 1200px) {
  .page-inner.page-projects .content-detail,
  .page-inner.page-services .content-detail {
    padding: 95px 0;
  }
}

@media (max-width: 1199.98px) and (min-width: 768px) {
  .page-inner.page-projects .content-detail,
  .page-inner.page-services .content-detail {
    padding: 65px 0;
  }
}

@media (max-width: 1199.98px) {
  .page-inner h1 {
    font-size: 30px;
    line-height: 42px;
  }
}

@media (max-width: 767.98px) {
  .page-inner .custom-heading h3 {
    font-size: 24px;
    line-height: 36px;
  }

  .page-inner .product-detail,
  .page-inner .service-detail {
    padding: 45px 10px;
  }

  .page-inner .content-detail ul.list-check {
    border-top: 1px solid transparent;
    padding-top: 15px;
  }
}

/* SERVICES PAGE
-------------------------------------------------- */
.img-wrap {
  position: relative;
}

.img-wrap i {
  position: absolute;
  top: calc(50% - 27px);
  left: calc(50% - 27px);
  font-size: 54px;
  color: #ffffff;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.img-wrap:hover i {
  color: #ffffff;
  transform: scale(2);
}

/* ABOUT PAGE
-------------------------------------------------- */
.page-about .content-detail .img-wrap {
  padding: 44px 0 60px;
}

.page-about .icon-wrap {
  padding: 85px 0;
}

.page-about .icon-wrap .card {
  margin-bottom: 35px;
}

.page-about .icon-wrap .card-body {
  padding: 0 30px 0 60px;
  position: relative;
}

.page-about .icon-wrap .card-body i {
  font-size: 36px;
  margin-bottom: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.page-about .section-leadership .card-body {
  padding: 14px 8px 15px;
}

.page-about .section-leadership .section-block .content-wrap,
.page-contact .section-form .section-block .content-wrap {
  background-color: #fdfbfb;
  border: 1px solid #ebedee;
  box-shadow: none;
}

.page-about .leadership-position {
  border-top: 1px solid #dedede;
  padding-top: 30px;
  margin-top: 30px;
}

.card.card-cert:hover {
  cursor: pointer;
}

.page-contact .section-cta {
  display: none;
}

.page-contact iframe {
  width: 100%;
  height: 500px;
  display: block;
  border: 0;
}

@media (min-width: 1200px) {
  .page-about .section-leadership .section-block .content-wrap {
    padding: 80px 80px;
  }
}

@media (max-width: 1199.98px) {
  .section-leadership .content-image {
    margin-bottom: 35px;
  }
}

@media (max-width: 767.98px) {
  .page-about .icon-wrap .card-body {
    padding: 0 0 0 60px;
  }
}

.modal-content {
  border-radius: 0;
}

.modal-header {
  background-color: #2a2c35;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-close {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFF'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  top: -30px;
  right: 0px;
  padding: 0;
}

.modal-header .btn-close:hover {
  opacity: 1;
}

/* FAQ */
.accordion, .accordion-item, .accordion-item:first-of-type, .accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item:last-of-type, .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-radius: 0!important;
  border-color: transparent!important;
}

.accordion-item, .accordion-item:first-of-type, .accordion-item:last-of-type {
  border-top-color: rgba(34, 31, 29, 0.1)!important;
  border-bottom-color: rgba(34, 31, 29, 0.1)!important;
}

.accordion-item {
  background-color: transparent;
  border-color: rgb(63 60 58 / 25%);
  color: #3f3c3a;
}

.accordion-button {
  background-color: transparent;
  color: #3f3c3a;
}

.accordion-item:first-of-type>.accordion-header .accordion-button, .accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: #3f3c3a;
  background-color: transparent;
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("../icons/chevron-compact-down.svg");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("../icons/dash-lg.svg");
  transform: matrix(1, 0, 0, 1, 0, 0);
}

.accordion-numbered {
  counter-reset: accordion;
}

.accordion-numbered .accordion-item {
  counter-increment: accordion;
}

.accordion-numbered .accordion-button::before {
  content: counter(accordion) ". ";
  font-weight: 600;
  margin-right: 0.5rem;
}

.accordion-body {
  background-color: rgba(200, 164, 93, 0.15);
  margin: 0 20px 30px 20px;
}

/* WA Chat
-------------------------------------------------- */
.wa-chat {
  position: fixed;
  bottom: 24px;
  top: auto;
  right: 12px;
  background-color: #25D366;
  border-radius: 5px;
  box-shadow: rgb(0 0 0 / 15%) 0px 4px 12px 0px;
  color: #fefefe;
  display: block;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  z-index: 1080;
  text-align: center;
}

.wa-chat i {
  font-size: 40px;
  position: absolute;
  top: 9px;
  left: 10px;
}

.wa-chat:hover, a.wa-chat:hover {
  background-color: #25D366;
  color: #fefefe;
}