/**************************************
                General
**************************************/
:root {
  --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  --animation-duration: 1s;
}
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
  height: -webkit-fill-available;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: auto;
}

html::-webkit-scrollbar{
  width: 6px;
  background-color: #E6344B;
}
html::-webkit-scrollbar-thumb{
  background: #FFF;
  border-radius: 50rem;
}

a, button {
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
  background: none;
  box-shadow: none;
  
}
ol,ul{
  padding: 0;
  margin: 0;
  list-style-type: none;
}

body{
  background-color: #000;
  color: #DBDBDB;
  font-family: "Geist-Regular";
  font-size: 19px;
  font-style: normal;
  font-weight: normal;
  line-height: 168.421%;
}

a,a:hover,a:focus{
  color: currentColor;
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s;
  text-decoration: none;
}
h1,h2,h3,h4 {
  transition: all .4s;
  -webkit-transition: all .4s;
  -moz-transition: all .4s;
  -ms-transition: all .4s;
  -o-transition: all .4s; 
}
p{
  margin-bottom: 1rem;
}
main{
  overflow: clip;
}
img {
  max-width: 100%;
  height: auto;
  transition: all .5s;
}
.text-center{
  text-align: center;
}
.container-fluid{
  padding: 0 70px;
}

/* Popup */
.popup {
  width: 100%;
  height: 100%;
  background: #ca9f4d26;
  backdrop-filter: blur(5px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 999999;
  opacity: 0;
  transform: translateY(10px);
  z-index: -1;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}

.popup.show {
  opacity: 1;
  transform: translateY(0px);
  z-index: 999999;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
  -moz-transition: opacity 0.5s ease, transform 0.5s ease;
  -ms-transition: opacity 0.5s ease, transform 0.5s ease;
  -o-transition: opacity 0.5s ease, transform 0.5s ease;
}

.popup .popup__content {
  width: 70%;
  padding: 0px;
  border-radius: 23px;
  color: black;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  overflow: clip;
  z-index: 99999;
    background: url(../img/amenities-bg.webp) no-repeat center;
  background-size: cover;
}
.popup .popup__content .close {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 45px;
  height: 45px;
  opacity: 1;
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border-radius: 50% 10px 50% 50%;
  flex-direction: column;
  gap: 5px;
  background: #7F9053;
  transition: all .5s;
  z-index: 9;
  cursor: pointer;
}

.popup .popup__content .close:hover {
  box-shadow: 0 18px 40px #7f905390;
  background: #fff;
}

.popup .popup__content .close:hover span {
  background-color: #7F9053;
}

.popup .popup__content .close span {
  cursor: pointer;
  position: fixed;
  width: 20px;
  height: 3px;
  background: #FFF;
  transition: all .5s;
}

.popup .popup__content .close span:nth-child(1) {
  transform: rotate(45deg);
}

.popup .popup__content .close span:nth-child(2) {
  transform: rotate(135deg);
}
form .secondary-btn:hover{
  background: rgb(218, 193, 251);
}
.left {
  text-align: left;
  padding: 30px;
  .section-title, p{
    color: #FFF;
  }
  p{
    a{
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 22px;
      span{
        width: 49px;
        height: 49px;
        border-radius: 50%;
        background: #D4AF37;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      &:hover{
        text-shadow: 0 10px 20px #D4AF37;
      }
    }
  }
}
.fixed-box-wrap{
  display: flex;
  align-items: center;
  gap: 10px;
  .fixed-box{
    width: 64px;
    height: 64px;
    border-radius: 50%;
  }
}
.right {
  padding: 30px;
  text-align: left;
}
form{
  option{
    color: #000;
  }
}
/**************************************
                Helper Class
**************************************/
.sec-gap {
  padding: 80px 0;
}
.pb-80 {
  padding-bottom: 60px;
}
.mb-10 {
  margin-bottom: 10px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50{
  margin-bottom: 50px;
}
.mb-60{
  margin-bottom: 60px;
}
.mb-70{
  margin-bottom: 70px;
}
.mb-80{
  margin-bottom: 80px;
}
p{
  color: #DBDBDB;
  font-family: "Geist-Regular";
  font-size: 19px;
  font-style: normal;
  font-weight: normal;
  line-height: 168.421%;
  transition: all .5s;
}
.dec{
  color: #FFF;
  font-family: "Geist-Medium";
  font-size: 23px;
  font-style: normal;
  font-weight: normal;
  line-height: 121.739%;
  transition: all .5s;
}
.section-title {
  color: #FFF;
  font-family: "Geist-Light";
  font-size: 48px;
  font-style: normal;
  font-weight: normal;
  line-height: 118.75%;
  text-transform: uppercase;
  transition: all .5s;
  span{
    color: #D7233A;
    font-family: "Geist-Bold";
    text-transform: uppercase;
  }
}
.primary-btn {
  border: 1px solid #E6344B;
  background: #E6344B;
  padding: 13px 31px;
  display: inline-block;
  color: #FFF;
  font-family: "Geist-Medium";
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  line-height: normal;
  text-transform: uppercase;
  transition: all .6s;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  -ms-transition: all .6s;
  -o-transition: all .6s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  overflow: hidden;
}
.primary-btn:after {
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:0;
  height:0;
  background:#fff;
  border-radius:50%;
  transform:translate(-50%,-50%);
  transition:width .7s ease,height .7s ease;
  z-index:-1;
}
.primary-btn:hover,
.primary-btn:focus {
  color: #E6344B;
  transform:translateY(-5px);
  box-shadow:0 18px 40px #e6344b78;
  border-color:#fff;
}
.primary-btn:focus{
  color: #fff;
}
.primary-btn:hover::after{
  width:500px;
  height:500px;
}
.primary-btn:hover::before{
  transform:translateX(150%);
}
.secondary-btn {
  background: transparent;
  color: #FFF;
  border-color: #FFF;
}
.form-control{
  border-radius: 10px;
  border: 1px solid #606060;
  background: transparent;
  color: #C2C2C2;
  font-family: "Geist-Light";
  font-size: 18px;
  font-style: normal;
  font-weight: normal;
  line-height: 94.444%;
  padding: 16px 16px;
  width: 100%;
  outline: none;
  &:focus{
    border-color: #E6344B;
    box-shadow: none;
  }
}
.form-control::placeholder{
  color: #C2C2C2;
}
.form-group{
  position: relative;
  textarea{
    font-family: "Geist-Light";
  }
}
form .primary-btn{
  background: transparent;
  cursor: pointer;
  padding: 15px 65px;
	    color: #FFF;
    border: 1px solid #E6344B;
	    font-family: "Geist-Medium";
  &:hover{
    background-color: #FFF;
	 color: #E6344B;
  }
}
@media(prefers-reduced-motion: no-preference){
  @view-transition{
    navigation: auto;
  }
}
::view-transition-group(*){
  animation-duration: 2s;
}
.btn-group{
  display: flex;
  align-items: center;
  gap: 20px;
}
.fixed-btn {
  position: fixed;
  right: 0;
  bottom: 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 99;
  transition: all .5s;
  &:hover{
    .fixed-box{
      scale: 1.1;
    }
  }
}
@keyframes ring {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  50% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  100% {
    transform: rotate(0) scale(1) skew(0deg);
  }
}
.wp{
  width: 53px;
  height: 53px;
  &:hover{
    scale: 1.1;
  }
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes bounce {
  0%, 100% {
      transform: translateY(0);
  }
  50% {
      transform: translateY(-30px);
  }
}
@keyframes slideInUp {
  0% {
      opacity: 0;
      transform: translateY(25%);
  }

  100% {
      opacity: 1;
      transform: none;
  }
}
@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(-25%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomReverseIn {
  0% {
    opacity: 0;
    transform: scale(1.25);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes flipInY {
  0% {
    opacity: 0;
    transform: perspective(90vw) rotateY(67.50deg);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}


[data-animation] {
  opacity: 0;
  animation-timing-function: var(--animation-timing-function);
  animation-fill-mode: both;
  animation-duration: var(--animation-duration);
  will-change: transform, opacity;
}

.animations-disabled,
.animations-disabled [data-animation] {
  animation: none !important;
  opacity: 1 !important;
}

.slideInUp {
  animation-name: slideInUp;
}
.slideInDown {
  animation-name: slideInDown;
}
.slideInLeft {
  animation-name: slideInLeft;
}
.slideInRight {
  animation-name: slideInRight;
}
.fadeIn {
  animation-name: fadeIn;
}
.zoomIn {
  animation-name: zoomIn;
}
.zoomReverseIn {
  animation-name: zoomReverseIn;
}
.flipInY {
  animation-name: flipInY;
}
.flipOutY {
  animation-name: flipInY;
  animation-direction: reverse;
}
.effectOver {
  transition: all 2s transform 3s;
  &:hover{
    img{
      transform: rotate(0) scale(1.2);
    animation-delay: .5s;
    }
  }
}
img{
  transition: all .5s;
}
.container {
  max-width: 1400px;
}
/*******************************
	Menu
*******************************/
header {
  position: fixed;
  width: 100%;
  top: unset;
  z-index: 999;
  background: transparent;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid #4C4C4C;
  transition: 0.4s;
}
header.sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  animation: slideDown 0.45s ease-out;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.298);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}
.menu-call-btn{
  display: flex;
  align-items: center;
  gap: 36px;
}
.call-btn{
  color: #FFF;
  font-family: "Geist-Medium";
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  line-height: 66.667%;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all .5s;
  &:hover{
    color: #E6344B;
    img{
      filter: brightness(0) saturate(100%) invert(42%) sepia(58%) saturate(6104%) hue-rotate(332deg) brightness(91%) contrast(97%);
    }
  }
}
.header-btn{
  padding: 10px 22px;
}
/* Buttons */
.menu-button, 
.close-button {
  width: 50px;
  height: 50px;
  /* background-color: #fff; */
  font-size: 20px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: all .5s;
  &:hover{
    img{
      filter: brightness(0) saturate(100%) invert(97%) sepia(11%) saturate(2719%) hue-rotate(17deg) brightness(95%) contrast(92%);
    }
  }
}
.menu-button img,
.close-button img{
  position: relative;
  z-index: -1;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(254deg) brightness(100%) contrast(104%);
}
.menu-button {
  right: 0px;
  z-index: 102;
}
.close-button {
  left: -50px;
  z-index: 100;
}
/* *************************************************
      NAVBAR
************************************************** */
.main-navbar {
  position: relative;
}
.navbar-inner {
  display: flex;
  align-items: center;
  gap: 100px;
  justify-content: space-between;
}

/* Logo */
.logo-wrap {
  transition: ease-in-out 0.4s;
  line-height: 0;
}

/* *************************************************
      DESKTOP MENU  (jQuery adds classes)
************************************************** */
#desktopMenu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
  gap: 15px;
  padding: 4px 0;
  border-inline: 1px solid #4C4C4C;
  padding-top: 45px;
  padding-bottom: 45px;
}
#desktopMenu > li {
  position: relative;
}

/* top-level link */
#desktopMenu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 10px;
  padding-left: 15px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: all .5s;
  color: #F8F8F8;
  font-family: "Geist-Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 100%;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: 0.5s;
  position: relative;
  &::before{
    content: "";
    position: absolute;
    width: 10px;
    height: 18px;
    background: url(../img/menu-plus.webp) no-repeat;
    background-size: 100%;
    top: 4px;
    left: 0;
  }
}
#desktopMenu > li:hover > a,
#desktopMenu > li.menu-open > a,
#desktopMenu > li > a.current-menu-item {
  color: #E6344B;
}
#desktopMenu a.active,
#mobileMenuClone a.active{
  color: #E6344B;
}
/* jQuery appends this arrow */
#desktopMenu > li > a .dyn-arrow {
  transition: transform 0.5s;
  width: 14px;
  height: 7px;
  margin-left: 2px;
  background: url(../img/dropdown-arrow.webp) no-repeat;
  background-size: 100%;
}
#desktopMenu > li:hover > a .dyn-arrow,
#desktopMenu > li.menu-open > a .dyn-arrow {
    transform: rotate(180deg);
    filter: brightness(0) saturate(100%) invert(0%);
}

/* =====================================================
       DESKTOP DROPDOWN â€” Infinite depth
       jQuery adds .dd-sub on every nested ul.
       .dd-l1 = first level (drops down)
       .dd-sub = all deeper levels (flies right)
    ===================================================== */

/* L1 â€” drops DOWN from navbar */
#desktopMenu > li > ul.dd-l1 {
  position: absolute;
  top: 120%;
  left: -240%;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 6px 6px;
  padding: 6px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 1000;
}
#desktopMenu > li.menu-open > ul.dd-l1 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* All deeper levels (.dd-sub) â€” expand inline on click */
#desktopMenu ul.dd-sub {
  position: relative;
  top: auto;
  left: auto;
  min-width: 100%;
  background: #f8f5ef;
  border-top: 1px solid rgba(198, 175, 137, 0.45);
  border-radius: 0;
  box-shadow: none;
  padding: 4px 0 0;
  list-style: none;
  margin: 4px 0 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
  z-index: auto;
  display: none;
}
#desktopMenu li.dd-open > ul.dd-sub {
  display: block;
}

/* Every li inside any dropdown needs position:relative */
#desktopMenu ul.dd-l1 li,
#desktopMenu ul.dd-sub li {
  position: relative;
}

/* Links inside any dropdown level */
#desktopMenu ul.dd-l1 > li > a,
#desktopMenu ul.dd-sub > li > a {
  display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s, color 0.15s, padding-left 0.15s, border-color 0.15s;
}
/* Right-chevron arrow on links that have a sub */
#desktopMenu ul.dd-l1 > li > a .dyn-sarrow,
#desktopMenu ul.dd-sub > li > a .dyn-sarrow {
  font-size: 10px;
    flex-shrink: 0;
    transition: color 0.5s;
    width: 9px;
    height: 9px;
    border-top: 1px solid;
    border-left: 1px solid;
    transform: rotate(225deg);
    margin-left: 8px;
}
#desktopMenu ul.dd-l1 > li:hover > a .dyn-sarrow,
#desktopMenu ul.dd-sub > li:hover > a .dyn-sarrow,
#desktopMenu ul.dd-l1 > li.dd-open > a .dyn-sarrow,
#desktopMenu ul.dd-sub > li.dd-open > a .dyn-sarrow {
  color: #81A688;
  transform: rotate(315deg);
}
#desktopMenu > li > ul.dd-l1.mega-menu{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-width: unset;
  gap: 0 60px;
  padding: 40px;
  border-radius: 20px;
  background: #000000e4;
  li{
    border-bottom: 1px solid #3E3E3E;
    width: 370px;
    color: #000;
    transition: 0.5s;
    a{
      padding-inline: 0;
      align-items: center;
      justify-content: start;
      gap: 10px;
      white-space: normal;
      color: #FFF;
      padding: 15px;
      font-family: "NeueHaasDisplayBlackLight";
      border-radius: 12px;
      transition: all .5s;
      img{
        transition: all .5s;
      }
      &.active,&:hover{
        background: #BBE93F;
        color: #000;
        img{
          filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7459%) hue-rotate(170deg) brightness(105%) contrast(99%);
        }
      }
    }
    &:hover,
    &:focus{
      border-color: #000000e4;
    }
  }
  
}
#desktopMenu > li > ul.dd-l1.mega-menu.about-ul{
  left: -65%;
}
#desktopMenu > li > ul.dd-l1.mega-menu.frm1{
  grid-template-columns: 1fr;
}
#desktopMenu > li > ul.dd-l1.mega-menu.frm2{
  grid-template-columns: 1fr 1fr;
}
.opa{
  opacity: 1 !important;
  visibility: visible !important;
}
/* =====================================================
       MOBILE MENU CLONE â€” Infinite depth
       jQuery sets data-depth="N" on each <ul>
       Indentation auto-calculated from depth.
    ===================================================== */
#mobileMenuClone {
  list-style: none;
  margin: 0;
  padding: 0;
}
#mobileMenuClone ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  box-shadow: none !important;
  border-top: none !important;
  border-radius: 0 !important;
  display: none;
}
#mobileMenuClone li {
  border-bottom: 1px solid #ffffff33;
  margin-inline: 6px;
}

/* Base link style â€” all levels */
#mobileMenuClone li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: color 0.2s, background 0.15s;
  white-space: normal;
  border-left: none !important;
}
.abt-dropdown{
  li a{
    justify-content: start !important;
    gap: 10px;
  }
}
#mobileMenuClone li a::after {
  display: none !important;
}
#mobileMenuClone li a:hover {
  color: #E6344B;
}
#mobileMenuClone li a.mob-open{
  color: #CA9F4D;
}
/* Depth 0 â€” top level */
#mobileMenuClone > li > a {
  padding: 10px 20px;
  color: #FFF;
  font-size: 16px;
}
.off-panel{
  .social {
    background: #fff;
    padding: 10px 20px;
}
}
#mobileMenuClone ul[data-depth="1"] > li.active a,
#mobileMenuClone ul[data-depth="1"] > li a:hover{
  background: #BBE93F;
  color: #000;
  img{
    filter: invert(1);
  }
}
/* Depth 1+ â€” indentation via data-depth on ul */
#mobileMenuClone ul[data-depth="1"] > li{
  border: 0;
}
#mobileMenuClone ul[data-depth="1"] > li > a {
  padding: 5px 12px 5px 10px;
  font-size: 14px;
  background: #6666661a;
  border-bottom: 1px solid #ffffff17;
  color: #ffffff;
  font-family: "NeueHaasDisplayBlackLight";
}
#mobileMenuClone ul[data-depth="2"] > li > a {
  padding: 10px 20px 10px 46px;
  font-size: 13px;
  color: #000000;
  background: #f0f0f0;
}
#mobileMenuClone ul[data-depth="3"] > li > a {
  padding: 9px 20px 9px 60px;
  font-size: 12.5px;
  color: #000000;
  background: #e9e9e9;
}
#mobileMenuClone ul[data-depth="4"] > li > a {
  padding: 9px 20px 9px 74px;
  font-size: 12px;
  color: #000000;
  background: #e2e2e2;
}
#mobileMenuClone ul[data-depth="5"] > li > a {
  padding: 9px 20px 9px 88px;
  font-size: 12px;
  color: #000000;
  background: #dadada;
}

/* Arrow */
#mobileMenuClone .mob-arr {
  font-size: 11px;
  color: #aaa;
  flex-shrink: 0;
  margin-left: 6px;
  transition: transform 0.25s, color 0.25s;
}
#mobileMenuClone a.mob-open .mob-arr {
  transform: rotate(180deg);
  color: #81A688;
}
#mobileMenuClone .dyn-arrow,
#mobileMenuClone .dyn-sarrow {
  display: none !important;
}

/* Custom Order */
.btn-order {
  background: var(--gold);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 22px;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 14px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.btn-order:hover {
  background: var(--gold-d);
  color: #fff;
  transform: translateY(-1px);
}

/* Toggler */
.nav-toggler {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
  margin-left: auto;
}
.nav-toggler span {
  display: block;
  width: 30px;
  height: 3px;
  background: #FFF;
  margin: 6px 0;
  border-radius: 2px;
  transition: 0.3s;
}

@keyframes ring {
  0% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  10% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  20% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  30% {
    transform: rotate(-25deg) scale(1) skew(0deg);
  }

  40% {
    transform: rotate(25deg) scale(1) skew(0deg);
  }

  50% {
    transform: rotate(0) scale(1) skew(0deg);
  }

  100% {
    transform: rotate(0) scale(1) skew(0deg);
  }
}
/* â•â• OFFCANVAS â•â• */
.off-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s;
}
.off-overlay.show {
  opacity: 1;
}
.off-panel {
  position: fixed;
  top: 6px;
  right: -480px;
  width: 400px;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  box-shadow: -5px 0 32px 0 #E6344B;
  z-index: 2001;
  overflow-y: auto;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  border-radius: 25px 0px 0 0;
}
.off-panel.open {
  right: 0;
}
.off-head {
  background: var(--gold);
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  border-bottom: 1px solid #ffffff17;
}
.off-head .off-logo {
 position: relative;
  width: 170px;
}
.off-close {
    border: none;
    color: #FFF;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    width: 22px;
    height: 40px;
    background: #00000000;
    border-radius: 4px;
}
.off-body {
  padding: 0;
  flex: 1;
}
.off-footer {
  padding: 16px 20px;
  flex-shrink: 0;
  border-top: 1px solid #eee;
  text-align: center;
  .primary-btn{
    margin: 0 auto;
  }
}
/*************************************
                Home Page
**************************************/
.hero{
  position: relative;
  overflow: hidden;
}
.hero-item{
  position: relative;
  z-index: 1;
  .container{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 1;
  }
  &::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.93) 35%, rgba(0, 0, 0, 0.00) 60%);
  }
}
.img-cover{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slick-dotted.slick-slider.hero-slider {
  margin-bottom: 0;

}
.slick-dots{
  text-align: left;
  left: 15%;
  bottom: 100px;
  li{
    width: auto;
    margin: 0 5px;
    transition: 0.5s;
    button{
      background: #fff;
      width: 30px;
      height: 0;
      padding: 1.5px;
      transition: all .5s;
      &::before{
        display: none;
      }
    }
    &.slick-active{
      button{
        background: #E6344B;
      }
    }
  }
}
.hero-content{
  width: 45%;
  padding-top: 50px;
  h1{
    color: #FFF;
    font-family: "Geist-Regular";
    font-size: 68px;
    font-style: normal;
    font-weight: normal;
    line-height: 116.176%;
    text-transform: uppercase;
    margin-bottom: 10px;
    span{
      color: #D7233A;
      font-family: "Geist-Bold";
      display: block;
    }
  }
  p{
    color: #D8D8D8;
    font-family: "Geist-Medium";
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 30px;
  }
}

.hero-slider{
  .slick-slide h1,
  .slick-slide p,
  .slick-slide .primary-btn {
    opacity: 0;
    transform: translateY(50px);
  }
  .slick-slide.slick-active h1 {
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.1s;
  }
  .slick-slide.slick-active p {
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.25s;
  }
  .slick-slide.slick-active .primary-btn {
    animation: slideInUp 0.8s ease forwards;
    animation-delay: 0.4s;
  }
}

.mouse {
  width: 30px;
  height: 50px;
  border: 1px solid #fff;
  border-radius: 30px;
  margin: auto;
  position: absolute;
  bottom: 30px;
  transform: translate(-50%, 0%);
  left: 50%;
  z-index: 9;
  transition: all 0.3s ease-in-out;
  &:hover {
    background: #D7233A;
    border-color: #D7233A;
  }
}

.mouse span {
  -webkit-animation: scrolls 1.3s ease-out infinite;
  display: block;
  position: absolute;
  left: 6px;
  top: 8px;
}

@-webkit-keyframes scrolls {
    0% {
      top: 8px;
      opacity: 0;
      -webkit-transform: scaleY(1) scaleX(1);
    }

    5% {
      top: 8px;
      opacity: 0.8;
      -webkit-transform: scaleY(1.2) scaleX(1.2);
    }

    10% {
      top: 8px;
      opacity: 1;
      -webkit-transform: scaleY(1.6) scaleX(1.6);
    }

    15% {
      top: 8px;
      opacity: 1;
      -webkit-transform: scaleY(1.2) scaleX(1.2);
    }

    20% {
      top: 8px;
      opacity: 1;
      -webkit-transform: scaleY(1.2) scaleX(1.2);
    }

    30% {
      top: 15px;
      opacity: 1;
      -webkit-transform: scaleY(1.2) scaleX(1.2);
    }

    100% {
      top: 30px;
      opacity: 0;
      -webkit-transform: scaleY(1.2) scaleX(0.8);
    }
}
/************************************
   About
************************************/
.about{
  position: relative;
}
.dots{
  position: absolute;
  right: -120px;
  bottom: 20px;
  width: 30%;
}
.about-img{
  position: relative;
}
.about-counter{
  position: absolute;
  left: 0;
  bottom: 20px;
  background: #000;
  padding: 10px;
  h4{
    color: #E6344B;
    font-family: "Geist-SemiBold";
    font-size: 88px;
    font-style: normal;
    font-weight: normal;
    line-height: 102.273%;
    margin-bottom: 5px;
    .number{
      color: transparent;
      -webkit-text-stroke-width: 2px;
      -webkit-text-stroke-color: #E6344B;
    }
  }
  p{
    color: #FFF;
    font-family: "Geist-Bold";
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: 121.429%;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
}
.about-content{
  .primary-btn{
    background: transparent;
  }
}
/************************************
     Counter
************************************/
.counter{
  padding-bottom: 80px;
  .row{
    .col{
      border-right: 1px solid #3C3C3C;
    }
    .col:last-child{
      border-right: none;
    }
  }
}
.counter-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  h4{
    color: #FFF;
    font-family: "Geist-Medium";
    font-size: 73px;
    font-style: normal;
    font-weight: normal;
    line-height: 123.288%;
    .plus{
      color: #E6344B;
      font-family: "Geist-Medium";
    }
  }
  p{
    color: #FFF;
    font-family: "Geist-Light";
    font-size: 24px;
    font-style: normal;
    font-weight: normal;
    line-height: 154.167%;
  }
}
/************************************
    Why Choose
************************************/
.why-choose{
  background: #0F0F0F;
  padding-bottom: 160px;
  position: relative;
  .row{
    .col:nth-child(2),
    .col:nth-child(4){
      transform: translateY(80px);
    }
  }
  .dots{
    position: absolute;
    right: 0;
    bottom: unset;
    top: 35px;
  }
}
.why-choose-item{
  border-radius: 5px;
  background: #161616;
  padding: 30px 20px 20px 20px;
  height: 100%;
  transition: 0.4s;
  img{
    margin-bottom: 40px;
  }
  p{
    margin-bottom: 0;
  }
  &:hover{
    scale: 1.03;
    box-shadow: 0 0 10px #e6344b78;
    img{
      transform: rotateY(180deg);
    }
  }
}
.card-title{
  color: #FFF;
  font-family: "Geist-Bold";
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  line-height: 125%;
}
/************************************
    Service
************************************/
.service{
  .dec{
    font-size: 18px;
  }
}
.service-card{
  position: relative;
  overflow: hidden;
  .img-cover{
    margin-bottom: -10px;
  }
  &:hover{
    .service-card-content{
      transform: translateY(0);
	  height: auto;
      .service-arrow{
        opacity: 0;
      }
      .card-title {
        margin-bottom: 10px;
      }
    }
  }
}
.service-card-content{
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px;
  padding-top: 100px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 45%, rgba(0, 0, 0, 0.00) 90%);
  transform: translateY(70%);
  transition: 0.4s;
  height: 518px;
  .card-title{
    margin-bottom: 40px;
  }
  p{
    font-family: "Geist-Light";
    line-height: 147.368%;
  }
}
.service-arrow{
  position: absolute;
  right: 20px;
  top: 92px;
  width: 42px;
  height: 42px;
  background: #E6344B;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: 0.4s;
}
/************************************
    Projects
************************************/
.projects{
  padding-bottom: 240px;
  padding-left: 14%;
  background: #101010;
  position: relative;
  .dots{
    position: absolute;
    right: 0;
    bottom: 38px;
  }
}
.projects-box {
  border-radius: 16px;
  background: #1B1B1B;
  overflow: hidden;
  padding: 25px;
  position: relative;
}
.projects-partner{
  position: absolute;
  right: 15px;
  top: 19px;
}
.projects-content {
  padding-left: 50px;
  h3 {
    color: #FFF;
    font-family: "Geist-Medium";
    font-size: 38px;
    font-style: normal;
    font-weight: normal;
    line-height: 113.158%;
  }
}
.compare-wrap {
  position: relative;
  aspect-ratio: 16 / 9.6;
  overflow: hidden;
  user-select: none;
}
.img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Replace these with your own "before" (construction) and "after" (finished stand) photos */
.background-img {
  z-index: 1;
}
.foreground-img {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 4;
  cursor: ew-resize;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
}
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    background: transparent;
    cursor: ew-resize;
  }
  .slider::-moz-range-thumb {
    width: 40px;
    height: 100%;
    background: transparent;
    border: none;
    cursor: ew-resize;
  }
  .slider::-moz-range-track { background: transparent; }
 
  .slider-button {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(255,255,255,0.85);
    transform: translateX(-50%);
    z-index: 3;
    pointer-events: none;
  }
 
  .slider-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  }
 
  .slider-button::after {
    content: '\276E \276F';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    letter-spacing: 3px;
    color: #333;
    font-weight: bold;
  }
 
.label-bar {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 9%;
    z-index: 3;
    pointer-events: none;
}

.label-bar span {
    position: absolute;
    top: 0;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    white-space: nowrap;

    color: #000;
    font-family: "Geist-Medium";
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: 64.286%;
    text-transform: uppercase;

    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.28) 0%,
        #FFF 46.28%,
        rgba(255, 255, 255, 0.12) 100%
    );
}

.before-label {
    left: 0;
    width: 50%;
}

.after-label {
    right: 0;
    width: 50%;
}

.foreground-img {
  z-index: 2;
}
.label-bar {
  z-index: 3;
}
.slider-button {
  z-index: 5;
}
.slider {
  z-index: 10;
}
.slick-arrow{
  width: 72px;
  height: 72px;
  border: 1px solid #717171;
  border-radius: 50%;
  right: 18%;
  top: unset;
  bottom: -185px;
  z-index: 1;
  transition: all .5s;
  &::before{
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/slider-arrow.webp) no-repeat;
    background-size: 40%;
    background-position: center;
  }
  &:hover{
    background: #2A2A2A;
  }
}
.slick-prev{
  left: unset;
  right: 24%;
  &::before{
    transform: rotate(180deg);
  }
}
/************************************
    Industries
************************************/
.industries{
  border-block: 1px solid #4C4C4C;
  position: relative;
  .row{
    .col-lg-3{
      border-right: 1px solid #2B2B2B;
    }
    .col-lg-3:last-child{
      border-right: none;
    }
  }
  .dots{
    position: absolute;
    right: unset;
    left: 0;
    bottom: 10px;
  }
}
.industries-content{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  p{
    font-family: "Geist-Medium";
    line-height: 144.444%;
  }
}
.industries-box-content{
  padding-block: 80px;
}
.industries-box-content-card{
  position: relative;
  padding-left: 60px;
  .card-title{
    margin-bottom: 10px;
  }
  p{
    font-size: 16px;
    font-family: "Geist-Light";
    color: #C9C9C9;
  }
  &:hover{
    .card-title{
      color: #E6344B;
    }
    .industries-icon {
      transform: rotateY(180deg);
    }
  }
}
.industries-icon{
  position: absolute;
  left: 0;
  top: 0;
}
/************************************
      Our Process
************************************/
.our-process{
  counter-reset: our-process-card;
  padding-bottom: 240px;
  .row{
    .col:nth-child(2),
    .col:nth-child(4){
      transform: translateY(130px);
    }
  }
}
.our-process-card{
  counter-increment: our-process-card;
  border-radius: 10px;
  border: 1px solid #242424;
  position: relative;
  padding: 25px;
  overflow: hidden;
  z-index: 1;
  span{
    display: block;
    width: 40px;
    height: 90px;
    position: relative;
    &::after{
      content: counter(our-process-card);
      position: absolute;
      inset: 0;
      -webkit-text-stroke-width: 2px;
      -webkit-text-stroke-color: #E6344B;
      color: transparent;
      font-family: "Geist-Regular";
      font-size: 73px;
      font-style: normal;
      font-weight: normal;
      line-height: 123.288%;
      transition: all .5s;
    }
  }
  &::after{
    content: "";
    position: absolute;
    width: 75px;
    height: 65px;
    background: #FFF;
    top: 10px;
    right: -5px;
    border-radius: 0 0 0 35.143px;
    scale: 0.8;
    transition: all .5s;
    z-index: -1;
  }
  &:hover{
    .process-icon{
      border-color: #E6344B;
      img{
        filter: brightness(0) saturate(100%) invert(26%) sepia(77%) saturate(1797%) hue-rotate(329deg) brightness(105%) contrast(91%);
        transform: rotateY(180deg);
      }
    }
    span{
      &::after{
        color: #E6344B;
      }
    }
    .card-title, p{
      color: #E6344B;
    }
    &::after{
      transform: scale(15);
    }
  }
}
.process-icon{
  width: 75px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 0 35.143px;
  border: 1px solid #2C2C2C;
  background: #FFF;
  position: absolute;
  top: 10px;
  right: 0;
  z-index: 1;
}
/************************************
  Gallery
************************************/
.gallery{
  padding-bottom: 80px;
}
.gallery-box{
  display: block;
  margin: auto;
  position: relative;
  .img-cover{
    height: 561px;
    transition: all .5s;
  }
  &:hover{
    .gallery-plus{
      scale: 1;
      opacity: 1;
    }
  }
}
.gallery-plus{
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  scale: 0.3;
  opacity: 0;
  transition: all .5s;
}
.slick-slide{
  margin: 0 15px;
}
.slick-list{
  margin: 0 -15px;
}
.gallery-slider{
  .slick-dots{
    text-align: center;
    left: 0;
    bottom: -50px;
    li {
      button {
        width: 11px;
        height: 11px;
        background: transparent;
        border: 1px solid #FFF;
        border-radius: 50%;
      }
      
    }
    .slick-active {
      button{
        background: #FFF;
      }
    }
  }
}
/************************************
    Partners
************************************/
.partners{
  padding-top: 0;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 6 - 60px * 6));
  }
}
.partners-slider .slide {
  height: 100px;
  border-radius: 10px;
  border: 1px solid #474747;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-slider .slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/************************************
    Testimonial
************************************/
.testimonial{
  background: #0D0D0D;
}
/************************************
    Certification
************************************/
.certification{
  position: relative;
  padding-bottom: 160px;
}
.certi-img{
  border-radius: 9px;
  background: #1B1B1B;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  margin-bottom: 10px;
  height: 267px;
  img{  
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
.certi-title{
  text-align: center;
  color: #FFF;
  font-family: "Geist-Regular";
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  line-height: 112.5%;
  border-radius: 9px;
  background: #1B1B1B;
  padding: 18px 20px;
}
.certi-slider{
  .slick-dots{
    text-align: center;
    left: 0;
    bottom: -70px;
    li {
      button {
        width: 11px;
        height: 11px;
        background: transparent;
        border: 1px solid #FFF;
        border-radius: 50%;
      }
      
    }
    .slick-active {
      button{
        background: #FFF;
      }
    }
  }
}
/*******************************
  Get in Touch
********************************/
.get-in-touch{
  background: #0D0D0D;
}
.get-in-touch-map{
  height: 728px;
  iframe{
    width: 100%;
    height: 100%;
    border: none;
  }
}
/*******************************
  Footer
********************************/
footer{
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  background: #111111;
  p{
    font-family: "Geist-Light";
    font-size: 16px;
  }
}
.social-media{
  a{
    display: inline-block;
    margin-right: 10px;
  }
  a:hover{
    transform: scale(1.1);
    filter: brightness(0) saturate(100%) invert(32%) sepia(31%) saturate(4115%) hue-rotate(329deg) brightness(91%) contrast(98%);
  }
}
footer ul{
  list-style: disc;
  padding-left: 40px;
}
footer ul li a{
  color: #EAEAEA;
  font-family: "Geist-Light";
  font-size: 15px;
  font-style: normal;
  font-weight: normal;
  line-height: 320%;
  text-decoration-line: underline;
  text-transform: uppercase;
}
.footer-title{
  color: #FFF;
  font-family: "Geist-SemiBold";
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: 135%;
  margin-bottom: 20px;
  position: relative;
  padding-left: 20px;
  &::before{
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: #E6344B;
    left: 0;
    top: 10px;
  }
}
.footer-sub-title{
  color: #E6344B;
  font-family: "Geist-Bold";
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  line-height: 175%;
}
footer ul li a{
  display: block;
}
footer a:hover{
  color: #E6344B;
  transform: translateX(5px);
}
.copyright{
  display: flex;
  justify-content: space-between;
  padding-block: 30px;
  border-block: 1px solid #282828;
}
.copyright p{
  margin-bottom: 0;
  a{
    color: #F80;
    text-decoration-line: underline;
  }
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
/*****************************************************
                  Inner Page
*******************************************************/

/*******************************
  Responsive
********************************/
@media (max-width: 1920px) { 
}
@media (max-width: 1600px), (max-width: 1536px){
  .container {
    width: 1320px;
  }
  #desktopMenu > li > a {
    font-size: 12px;
    &::before {
      height: 12px;
      top: 3px;
    }
  }
  .call-btn {
    font-size: 20px;
    img{
      width: 18px;
    }
  }
  #desktopMenu {
    gap: 10px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .slick-dots {
    left: 10%;
  }
  .navbar-inner {
    gap: 60px;
  }
  .container-fluid {
    padding: 0px 50px;
  }
  .dots {
    bottom: 25px;
    width: 25%;
  }
  .why-choose-item {
    img {
      margin-bottom: 30px;
    }
  }
  .card-title {
    font-size: 22px;
  }
  .projects-content {
    padding-left: 30px;
    h3 {
      font-size: 30px;
    }
  }
  .projects-partner {
    width: 126px;
  }
  .projects {
    padding-bottom: 180px;
    padding-left: 9%;
  }
  .slick-arrow {
    width: 62px;
    height: 62px;
    right: 8%;
    bottom: -145px;
  }
  .slick-prev {
    left: unset;
    right: 14%;
  }
  .gallery-box {
    .img-cover {
      height: 430px;
    }
  }
  .partners-slider .slide {
    height: 85px;
    padding: 10px 20px;
  }
  .our-process {
    padding-bottom: 200px;
  }
  .certification {
    padding-bottom: 120px;
  }
}
@media (max-width: 1536px){
}
@media (max-width: 1440px), (max-width: 1366px){
  .primary-btn{
    font-size: 15px;
    padding: 12px 25px;
  }
  .sec-gap{
    padding: 60px 0;
  }
  .container {
    width: 1200px;
  }
  #desktopMenu > li > a {
    font-size: 12px;
  }
  .container-fluid {
    padding: 0px 30px;
  }
  .navbar-inner {
    gap: 34px;
  }
  .call-btn {
    font-size: 18px;
    img {
      width: 16px;
    }
  }
  #desktopMenu {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .hero-content {
    h1 {
      font-size: 58px;
    }
    p{
      font-size: 17px;
    }
  }
  .slick-dots {
    left: 8%;
    bottom: 80px;
  }
  .section-title {
    font-size: 38px;
  }
  .dec {
    font-size: 19px;
  }
  p {
    font-size: 16px;
  }
  .counter-item {
    & h4 {
      font-size: 63px;
    }
    p {
      font-size: 20px;
    }
  }
  .counter {
    padding-bottom: 60px;
  }
  .why-choose-item {
    img {
      margin-bottom: 15px;
    }
  }
  .card-title {
    font-size: 19px;
  }
  .why-choose {
    padding-bottom: 120px;
    .row {
      .col:nth-child(2), .col:nth-child(4) {
        transform: translateY(60px);
      }
    }
  }
  .why-choose-item {
    padding: 20px 15px 20px 15px;
  }
  .service-arrow {
    width: 32px;
    height: 32px;
  }
  .projects {
    padding-bottom: 130px;
    padding-left: 5%;
  }
  .slick-arrow {
    width: 52px;
    height: 52px;
    right: 8%;
    bottom: -110px;
  }
  .slick-prev {
    left: unset;
    right: 13%;
  }
  .projects {
    .dots {
      bottom: 15px;
    }
  }
  .projects-content {
    & h3 {
      font-size: 28px;
    }
  }
  .industries-box-content {
    padding-block: 40px;
  }
  .our-process-card {
    span {
      width: 40px;
      height: 75px;
      &::after {
        font-size: 63px;
      }
    }
  }
  .mb-20 {
    margin-bottom: 10px;
  }
  .our-process {
    padding-bottom: 180px;
  }
  .gallery-box {
    .img-cover {
      height: 390px;
    }
  }
  .gallery-plus{
    img{
      width: 42px;
    }
  }
  .slick-slide {
    margin: 0px 10px;
  }
  .slick-list{
    margin: 0px -10px;
  }
  .partners {
    padding-top: 0;
  }
  .partners-slider .slide {
    height: 80px;
  }
  .certi-title {
    font-size: 20px;
  }
  .certification {
    padding-bottom: 120px;
  }
  .get-in-touch-map {
    height: 628px;
  }
  .footer-logo{
    width: 200px;
  }
  footer {
    p {
      font-size: 15px;
    }
  }
  .footer-title {
    font-size: 18px;
    padding-left: 15px;
  }
  footer ul {
    padding-left: 30px;
  }
  footer ul li a {
    font-size: 13px;
  }
  .footer-sub-title {
    font-size: 15px;
  }
  form .primary-btn {
    padding: 12px 55px;
  }
  .about-counter {
    h4 {
      font-size: 77px;
    }
  }
}
@media (max-width: 1280px){
  .container{
    width: 1140px;
  }
  .logo-wrap{
    width: 113px;
  }
  .container-fluid {
    padding: 0px 20px;
  }
  .call-btn {
    font-size: 16px;
    img {
      width: 14px;
    }
  }
  .navbar-inner {
    gap: 40px;
  }
  .slick-dots {
    bottom: 50px;
  }
}
@media (max-width: 1199.98px){
  .container{
    width: 992px;
  }
}
@media (max-width: 991.98px){
  .sec-gap {
    padding: 40px 0;
  }
  .container {
    width: 722px;
  }
  #desktopMenu, .btn-order {
    display: none !important;
  }
  .nav-toggler {
    display: block;
  }
  .hero .slick-slide img {
    height: 60dvh;
    object-position: center;
  }
  .hero-item {
    &::after {
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.93) 35%, rgb(0 0 0 / 36%) 60%);
    }
  }
  .hero-content {
    width: 80%;
    padding-top: 50px;
  }
  header {
    padding-block: 20px;
  }
  .why-choose {
    & .row {
      .col:nth-child(2), .col:nth-child(4) {
          transform: translateY(0);
      }
    }
  }
  .mb-40 {
    margin-bottom: 20px;
  }
  .service-card {
    height: 455px;
  }
  .projects {
    padding-bottom: 130px;
    padding-left: 5%;
  }
  .slick-prev {
    right: 17%;
  }
  .projects-content {
    padding-left: 0;
  }
  .slick-arrow{
    right: 43%;
  }
  .slick-prev {
    right: 53%;
  }
  .industries {
    padding-block: 40px;
    .row {
      .col-lg-3:last-child {
        border-right: 1px solid #2B2B2B;
        .industries-box-content {
          padding-block: 0;
        }
      }
      .col-lg-3:nth-child(1),
      .col-lg-3:nth-child(3){
        border-right: none;
      }
    }
  }
  .our-process {
    .row {
      .col:nth-child(2), .col:nth-child(4) {
        transform: translateY(0);
      }
    }
  }
  .gallery {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .partners-slider .slide {
    height: 75px;
  }
  .certi-slider {
    .slick-dots {
      bottom: -50px;
    }
  }
  .get-in-touch-map {
    height: 528px;
  }
  footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .footer-logo {
    width: 150px;
    margin-inline: auto;
  }
  .footer-first{
    text-align: center;
  }
  .mb-80 {
    margin-bottom: 60px;
  }
  .copyright {
    padding-block: 20px;
  }
}
@media (max-width: 575.98px){
  .sec-gap {
    padding: 25px 0;
  }
  .container-fluid {
    padding: 0 15px;
  }
  .container{
    width: 100%;
  }
  p{
    font-size: 14px;
    line-height: 145.421%;
  }
  .primary-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
  header {
    padding-block: 10px;
  }
  .nav-toggler {
    padding: 3px;
    margin-right: -3px;
  }
  .nav-toggler span {
    width: 30px;
    height: 2px;
    margin: 10px 0;
  }
  .header-btn {
    padding: 7px 16px;
  }
  .btn-group {
    gap: 10px;
  }
  .navbar-inner {
    gap: 0;
  }
  .logo-wrap {
    width: 114px;
  }
  .call-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #FFF;
    span{
      display: none;
    }
    img {
      width: 16px;
    }
  }
  .menu-call-btn {
    gap: 10px;
  }
  .off-head .off-logo {
    width: 100px;
  }
  .off-panel {
    width: 300px;
    right: -350px;
  }
  #mobileMenuClone > li > a {
    padding: 5px 15px;
    font-size: 14px;
  }
  .off-close {
    font-size: 18px;
    height: 30px;
  }
  .logo-wrap {
    width: 100px;
  }
  .hero .slick-slide img {
    height: 60dvh;
    object-position: center;
  }
  .hero-content {
    width: 100%;
    h1 {
      font-size: 38px;
    }
    p {
      font-size: 15px;
      margin-bottom: 15px;
    }
  }
  .slick-dots {
    left: 10px;
    bottom: 8px;
  }
  .mouse {
    width: 25px;
    height: 40px;
    bottom: 10px;
    left: unset;
    right: 20px;
  }
  .mouse span {
    left: 6px;
    width: 13px;
  }
  .about-counter {
    h4 {
      font-size: 55px;
    }
    p{
      font-size: 12px;
    }
  }
  .section-title {
    font-size: 26px;
  }
  .dec {
    font-size: 16px;
  }
  .counter-item {
    p {
      font-size: 16px;
    }
    h4 {
      font-size: 43px;
    }
  }
  .counter {
    padding-bottom: 20px;
    .row {
      .col:nth-child(2) {
        border-right: none;
      }
    }
  }
  .service-card {
    height: 390px;
  }
  .service-card-content {
    padding: 10px;
    padding-top: 100px;
    .card-title{
      padding-right: 50px;
    }
  }
  .service-arrow {
    right: 10px;
  }
  .projects-content {
    h3 {
      font-size: 22px;
    }
  }
  .projects{
    padding-inline: 15px;
    padding-bottom: 90px;
  }
  .mb-50 {
    margin-bottom: 10px;
  }
  .projects-box {
    padding: 15px;
  }
  .slick-arrow{
    width: 42px;
    height: 42px;
    bottom: -85px;
    right: 35%;
  }
  .slick-prev {
    right: 52%;
  }
    .industries-box-content {
      padding-block: 0;
    }
  .industries-box-content-card{
    background-color: #101010;
    padding: 15px;
    padding-left: 60px;
    margin-bottom: 15px;
  }
  .industries-icon {
    left: 10px;
    top: 12px;
    
  }
  .industries {
    padding-block: 25px;
    .row {
      .col-lg-3 {
        border-right: none;
      }
      .col-lg-3:last-child {
        border-right: none;
        .industries-box-content-card {
          margin-bottom: 0px;
        }
      }
    }
  }
  .process-icon {
    width: 65px;
    height: 55px;
    padding: 15px;
  }
  .gallery {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-inline: 15px;
  }
  .gallery-slider {
    .slick-dots {
      bottom: -40px;
    }
  }
  .partners-slider .slide {
    flex: 0 0 140px;
    width: 140px;
    height: 65px;
  }
  .certi-img {
    height: 158px;
  }
  .certi-title {
    font-size: 16px;
  }
  .certi-slider {
    .slick-dots {
        bottom: -40px;
    }
  }
  .slick-slide {
    margin: 0px 5px;
  }
  .slick-list{
    margin: 0px -5px;
  }
  .form-control {
    font-size: 14px;
    padding: 13px 10px;
  }
  form .primary-btn {
    padding: 8px 33px;
  }
  .get-in-touch-map {
    height: 328px;
  }
  .mb-30 {
    margin-bottom: 20px;
  }
  .footer-logo {
    width: 120px;
  }
  footer{
    padding-top: 25px;
    padding-bottom: 25px;
    p {
      font-size: 14px;
    }
  }
  .footer-title {
    font-size: 16px;
    padding-left: 15px;
    margin-bottom: 0px;
    &::before {
      width: 6px;
      height: 6px;
      top: 8px;
    }
  }
  .mb-80 {
    margin-bottom: 20px;
  }
  .copyright {
    padding-block: 10px;
    display: block;
    text-align: center;
  }
  .fixed-box {
    width: 43px;
    height: 42px;
  }
}