@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: 'Excited';
  src: url('../fonts/theexcited.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Brand Font Face */
@font-face {
  font-family: 'Brand';
  src: url('../fonts/brand.ttf') format('truetype'),
    url('../fonts/brand.woff') format('woff'),
    url('../fonts/brand.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Utility class for brand font */
.brand {
  font-family: 'Brand', sans-serif;
}


.excited {
  font-family: 'Excited', sans-serif;
}
html{
   overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

section {
  margin: 0;
}

.grecaptcha-badge {
  opacity: 0 !important;
}

.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

/* Hero Sextion */
#hero {
  background-image: url("../images/hero.webp");
  background-size: 100%;
  background-repeat: no-repeat;
  padding: 110px 0 60px;
}

.ubrand {
  width: 110px;
  position: absolute;
  right: 0;
  z-index: 10;
}

.heroBox {
  background-color: #fff;
  padding: 110px 60px 78px;
  position: relative;
  border-radius: 65px;
}

.wellness {
  width: 175px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.title {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: 60px;
  color: #1e1e1e;
  letter-spacing: -5px;

  span {
    color: #2e7d32;
    font-weight: 600;
  }
}

.subtitle {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #2e7d32;
  font-size: 30px;
  letter-spacing: -1px;
  line-height: 105%;

  span {
    font-weight: 700;

    img {
      width: 40px;
      margin-top: -5px;
    }
  }
}

.subpara {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  /* font-style: Medium; */
  font-size: 20px;
  line-height: 69px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: rgba(0, 0, 0, 1);
  text-transform: uppercase;
  text-align: center;

  span {
    font-weight: 600;
  }
}

.formBoxTop {
  background-color: rgba(46, 72, 32, 1);

  /* box-shadow: 0px 12px 27px 0px rgba(0, 0, 0, 0.1); */
  /* border-radius: 60px; */
  position: relative;

  .formNote {
    color: #2E4820;
    width: 66%;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: Medium;
    font-size: 30px;
    line-height: 108%;
    letter-spacing: -5%;
    padding: 30px 30px 20px;
    background-color: #fff;
    border-bottom-right-radius: 30px;
    position: relative;
    margin-bottom: 0;
  }

  .formNote::before {
    content: "";
    width: 60px;
    height: 60px;
    background-color: #fff;
    right: -60px;
    top: 0;
    position: absolute;
  }

  .formNote::after {
    content: "";
    width: 60px;
    height: 60px;
    background-color: rgba(46, 72, 32, 1);
    right: -60px;
    top: 0;
    position: absolute;
    border-top-left-radius: 30px;
  }
}

.formBoxBottom {
  background-color: rgba(46, 72, 32, 1);
  border-radius: 40px 0px 40px 40px;
  padding: 20px 30px 20px;
  position: relative;
  z-index: 2;
}

.formTitle {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0%;
  color: #fff;
  max-width: 69%;
}

.enquiryForm {
  position: relative;

  input,
  select {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(196, 196, 196, 0.24);
    background-color: rgba(46, 72, 32, 1);
    padding: 10px 0;
    color: #fff;
  }

  input {
    /* margin-bottom: 30px; */
  }

  input::placeholder {
    color: #7d8778;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0%;
  }
}

input:focus,
select:focus {
  outline: none;
  border: none;
  border-bottom: 1px solid rgba(196, 196, 196, 0.5);
}

.selectOptions {
  color: #7d8778;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0%;
}

.submitBtn {
  /* background: #9f8039;
  background: linear-gradient(90deg,
      rgba(159, 128, 57, 1) 0%,
      rgba(183, 145, 71, 1) 47%,
      rgba(248, 229, 144, 1) 89%); */
  background: RGBA(190, 151, 72, 1);
  background: linear-gradient(90deg, rgba(190, 151, 72, 1) 0%, rgba(214, 185, 106, 1) 94%);
  padding: 12px 30px;
  margin-top: 25px;
  border: none;
  border-radius: 75px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: SemiBold;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: -5%;
  text-transform: uppercase;
  color: #000;
}

.bird {
  position: absolute;
  width: 150px;
  top: -83px;
  right: -69px;
}

.buttonsGroup {
  display: flex;
  position: absolute;
  bottom: 30px;
  right: 30px;
  gap: 15px;
  z-index: 10;

  a img {
    width: 24px;
    height: 24px;
  }
}

.corner {
  position: absolute;
  width: 148px;
  right: -110px;
  bottom: -85px;
}

/* End Hero Sextion */

/* 2nd Section */
#timerSection {
  padding: 60px 0px;

  .para {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: Light;
    font-size: 30px;
    leading-trim: NONE;
    line-height: 103%;
    letter-spacing: 0%;
    text-align: center;
    color: #062a08;
    padding: 0 13%;

    span {
      font-weight: 600;
    }
  }
}

.man {
  width: 100%;
  position: relative;
}

.play {
  width: 140px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.counter {
  margin-top: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: center;
  justify-items: center;
  gap: 32px;

  .titleDigit {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
  }
}

@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

.number {
  /* font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 64px;
    width: 130px;
    height: 150px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #fff;
    border: 3px solid #EDEDED;
    overflow: hidden;
    z-index: 1; */
  position: relative;
  z-index: 0;
  width: 130px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 64px;

  &::before {
    content: "";
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: #2e7d32;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(#2e7d32, #2e7d32),
      linear-gradient(#ededed, #ededed), linear-gradient(#2e7d32, #2e7d32),
      linear-gradient(#2e7d32, #2e7d32);
    animation: rotate 4s linear infinite;
  }

  &::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: 3px;
    top: 3px;
    width: calc(100% - 6px);
    height: calc(100% - 6px);
    background: white;
    border-radius: 5px;
  }
}

/* Border tracing */
/* .number::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 3px; 
    background:
      linear-gradient(green, green) top left / 0% 3px no-repeat,
      linear-gradient(green, green) top right / 3px 0% no-repeat,
      linear-gradient(green, green) bottom right / 0% 3px no-repeat,
      linear-gradient(green, green) bottom left / 3px 0% no-repeat;
    animation: borderTrace 4s linear infinite;
    -webkit-mask: 
      linear-gradient(#fff 0 0) content-box, 
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
  }
  
  @keyframes borderTrace {
    0% {
      background-size: 0% 3px, 3px 0%, 0% 3px, 3px 0%;
    }
    25% {
      background-size: 100% 3px, 3px 0%, 0% 3px, 3px 0%;
    }
    50% {
      background-size: 100% 3px, 3px 100%, 0% 3px, 3px 0%;
    }
    75% {
      background-size: 100% 3px, 3px 100%, 100% 3px, 3px 0%;
    }
    100% {
      background-size: 100% 3px, 3px 100%, 100% 3px, 3px 100%;
    }
  } */

.info {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 103%;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 15px;
  color: #000000;
}

/*End 2nd Section */

/* End section */
#invitation {
  padding: 30px 0px 100px;

  .submitBtn {
    color: #000000;
    font-weight: 400;
  }

  .one {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 30px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    color: #dbf1c4;
  }

  .two {
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-style: Light;
    font-size: 50px;
    leading-trim: NONE;
    line-height: 103%;
    letter-spacing: 0%;
    color: #fff;
  }

  .three {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-style: Semi Bold;
    font-size: 65px;
    leading-trim: NONE;
    line-height: 103%;
    letter-spacing: 0%;
    background: #a3833b;
    background: linear-gradient(90deg,
        rgba(163, 131, 59, 1) 0%,
        rgba(218, 190, 111, 1) 47%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.lastSection {
  background-color: #062a08;
  border-radius: 50px;
  padding: 50px 60px;
  min-height: 480px;
}

.unicorn {
  position: absolute;
  top: -35px;
  min-height: 550px;
}

.jasmin {
  width: 230px;
  position: absolute;
  right: -50px;
  bottom: -30px;
}

hr {
  background-color: #ececec;
  color: #ececec;
  height: 1px;
  border: none;
}

/* End section */

/* modal */
.modal-content {
  min-height: 300px;
}

.closeBtn {
  font-size: 24px;
  position: absolute;
  top: 0;
  right: 0;
  border: 1px solid;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  top: -15px;
  right: -15px;
  background-color: #fff;
  cursor: pointer;
}

/* Form Enhancement Styles */
.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.form-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Validation Messages */
.validation-message {
  color: #dc3545;
  font-size: 11px;
  margin-top: 5px;
  min-height: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.validation-message.success {
  color: #28a745;
}

.validation-message:empty {
  display: none;
}

.submitBtn {
  position: relative;
  transition: all 0.3s ease;
}

.submitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.submitBtn .button-loading {
  display: none;
}

.submitBtn.loading .button-text {
  display: none;
}

.submitBtn.loading .button-loading {
  display: inline-block;
}

/* Form validation styles */
.enquiryForm input.error,
.enquiryForm select.error {
  border-color: #dc3545 !important;
}

.enquiryForm input.success,
.enquiryForm select.success {
  border-color: #28a745 !important;
  /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); */
}

/* Loading animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.fa-spin {
  animation: spin 1s linear infinite;
}

/* International Telephone Input Styles */
.iti {
  width: 100%;
  position: relative;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: auto;
  left: 0;
  padding: 0;
  margin-right: 0;
}

.iti__selected-flag {
  z-index: 4;
  height: 100%;
  padding: 0 0 0 8px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(196, 196, 196, 0.24);
  outline: none;
}

.iti__selected-flag:hover,
.iti__selected-flag:focus {
  background-color: rgba(6, 42, 8, 0.1);
}

.iti__flag {
  background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.12/img/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .iti__flag {
    background-image: url("https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.12/img/flags@2x.png");
  }
}

.iti__selected-dial-code {
  color: #7d8778;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
  margin-left: 6px;
}

.iti__arrow {
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #7d8778;
  margin-left: 6px;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #7d8778;
}

.iti__country-list {
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000 !important;
  position: absolute !important;
  width: 380px !important;
  left: 0 !important;
}

.iti__country {
  padding: 8px 12px;
  border-bottom: 1px solid #f0f0f0;
}

.iti__country:hover {
  background-color: #f8f9fa;
}

.iti__country.iti__highlight {
  background-color: #e3f2fd;
}

.iti__dial-code {
  color: #666;
}

.iti__country-name {
  color: #333;
}

/* Adjust phone input to work with intl-tel-input */
.enquiryForm .iti input[type="tel"] {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(196, 196, 196, 0.24);
  background-color: rgba(46, 72, 32, 1);
  padding: 10px 0 10px 80px;
  color: #fff;
  margin-bottom: 0;
  padding-left: 80px;
}

.enquiryForm .iti input[type="tel"]:focus {
  outline: none;
  border: none;
  border-bottom: 1px solid rgba(196, 196, 196, 0.5);
}

.enquiryForm .iti input[type="tel"]::placeholder {
  color: rgba(213, 217, 210, 1);
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
}

/* Override form group margin for phone field */
.form-group .iti {
  margin-bottom: 5px;
}

/* Ensure the flag container is visible */
.iti--separate-dial-code .iti__selected-flag {
  background-color: rgba(6, 42, 8, 1);
  border-bottom: 1px solid rgba(196, 196, 196, 0.24);
  width: auto;
  padding-right: 8px;
}

.iti--separate-dial-code .iti__selected-dial-code {
  color: #7d8778;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 12px;
}

/* Fix for flag positioning */
.iti__flag-container {
  width: auto !important;
}

.iti--separate-dial-code .iti__selected-flag {
  padding-left: 8px;
  padding-right: 8px;
  min-width: 70px;
}

/* Ensure proper spacing */
.enquiryForm .form-group .iti {
  position: relative;
}

.enquiryForm .iti--separate-dial-code input[type="tel"] {
  padding-left: 85px;
}

/* Force visibility of flag and dropdown */
.iti__selected-flag {
  display: flex !important;
  align-items: center !important;
  cursor: pointer !important;
}

.iti__flag {
  width: 20px !important;
  height: 15px !important;
  margin-right: 6px !important;
  box-shadow: none !important;
  background-color: transparent !important;
  border: none !important;
}

.iti__selected-dial-code {
  display: inline-block !important;
}

.iti__arrow {
  display: inline-block !important;
  margin-left: 6px !important;
}

/* Ensure dropdown is clickable */
.iti__flag-container {
  cursor: pointer !important;
}

/* Override any conflicting styles */
.enquiryForm .iti {
  position: relative !important;
}

.enquiryForm .iti .iti__selected-flag {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  z-index: 5 !important;
}

/* Preloader Styles */
#pageloader {
  background: rgba(34, 34, 34, 0.9);
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 9999999;
  top: 0;
  left: 0;
}

.loading-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-wrap img {
  width: 100px;
  transform: rotateY(0deg);
  -webkit-animation: rotateAnimation 2.5s ease-in infinite;
  animation: rotateAnimation 2.5s ease-in infinite;
  transition: all 0.5s ease-in-out;
}

@-webkit-keyframes rotateAnimation {
  0% {
    transform: rotateY(0deg);
  }

  25% {
    transform: rotateY(90deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  75% {
    transform: rotateY(270deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@keyframes rotateAnimation {
  0% {
    transform: rotateY(0deg);
  }

  25% {
    transform: rotateY(90deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  75% {
    transform: rotateY(270deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

/* End Preloader Styles */

/* New Style started */
/* Hero Section */
.topTitle {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 69.71px;
  letter-spacing: 6px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;

}

.mainTitle {
  font-family: "Brand", sans-serif;
  font-weight: 400;
  font-style: Brand;
  font-size: 90px;
  line-height: 74px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: capitalize;
  color: rgba(187, 148, 70, 1);
}

.exploreMore {
  font-family: Poppins;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 71px;
  letter-spacing: 7%;
  text-align: center;
  text-transform: capitalize;
  color: #000;
  cursor: pointer;

  img {
    width: 28px;
    height: 28px;
    margin-right: 10px;
  }
}

.module {
  width: 450px;
  position: absolute;
  bottom: -104px;
  left: 49%;
  transform: translateX(-50%);
  z-index: 1;
}

.residentialTower {
  width: 80%;
  display: block;
  margin: auto;
}

/* end hero */
#startingButton {
  padding: 100px 0 60px;

  img {
    width: 100%;
  }
}

/* 2nd section Video banner */
#videoBannerSection {
  background-color: rgba(1, 20, 9, 1);
  padding: 45px 0;
}

/* End 2nd section Video banner */

/*  3rd section project Brochures  */
#projectBrochures {
  padding: 110px 0;

  .estateUnicorn {
    width: 100%;
    max-width: 145px;
  }

  .justifiedPara {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: Light;
    font-size: 15px;
    line-height: 18px;
    letter-spacing: 0%;
    text-align: justify;
    color: rgba(100, 100, 100, 1);
  }

  .brochureDownloadBox {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(191, 152, 73, 1);
    margin-left: 80px;

    button {
      border: 1px solid rgba(99, 99, 99, 1);
      background-color: rgba(0, 0, 0, 0);
      border-radius: 30px;
      padding: 6px 10px 6px 20px;

      span {
        font-family: "Poppins", sans-serif;
        font-weight: 300;
        font-size: 15px;
        line-height: 42px;
        letter-spacing: 0%;
        text-transform: capitalize;
        margin-right: 10px;


      }

      img {
        width: 32px;
        height: 32px;
      }
    }

    p {
      font-family: "Poppins", sans-serif;
      font-weight: 300;
      font-size: 32px;
      line-height: 42px;
      letter-spacing: 0%;
      text-transform: uppercase;
      margin-bottom: 0;
    }
  }

  .brochureDownloadBox:last-child {
    border-bottom: 0px;
  }
}

/* end 3rd section project Brochures */

/* 4rth section */
#crownJewels {
  z-index: 1;

  .crownTextBox {
    position: absolute;
    z-index: 2;
    top: 28%;
    right: 15%;

    .topTitle {
      font-family: Poppins;
      font-weight: 500;
      font-size: 22px;
      line-height: 69.71px;
      letter-spacing: 6px;
      text-align: center;
      text-transform: uppercase;
      display: block;
      color: #000;

    }

    .bottomTitle {
      font-family: 'Brand', sans-serif;
      font-weight: 400;
      font-style: Brand;
      font-size: 76px;
      line-height: 65px;
      letter-spacing: 0%;
      text-align: center;
      text-transform: lowercase;
      display: block;
      color: rgba(46, 72, 32, 1);
    }

    .cPattern {
      width: 185px;
      display: block;
      margin: auto;
    }

    .projectedBy {
      font-family: "Poppins", sans-serif;
      font-weight: 500;
      font-size: 12px;
      line-height: 14px;
      letter-spacing: 6px;
      text-align: center;
      text-transform: uppercase;
      display: block;
      margin-bottom: 0;
      margin-top: 40px;

    }

    .vCrown {
      width: 210px;
      display: block;
      margin: auto;
    }

    .exploreMore {
      margin-top: 80px;
    }
  }
}

/* End 4rth sectiopn */

/* collection slider */
#collectionSlider {
  background-image: url('../images/updated/bg-leaf.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 60px 0 0;

  .collectionTitle {

    span:nth-child(1) {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-style: Regular;
      font-size: 24px;
      line-height: 40px;
      letter-spacing: 6px;
      text-align: center;
      text-transform: uppercase;
      display: block;
      color: #FFFFFF;
    }

    span:nth-child(2) {
      font-family: 'Brand', sans-serif;
      font-weight: 400;
      font-style: Brand;
      font-size: 60px;
      line-height: 57px;
      letter-spacing: 0%;
      text-align: center;
      text-transform: uppercase;
      display: block;
      color: #DFAF4B;

    }
  }

  .counterData {
    border-right: 1px solid #BF9849;

    p {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-style: Regular;
      font-size: 14px;
      line-height: 28px;
      letter-spacing: 4px;
      text-align: center;
      text-transform: uppercase;
      display: block;
      color: #fff;
    }

    .tw {
      max-width: 340px;
      display: block;
      margin: auto;
    }

    .sf {
      max-width: 160px;
      display: block;
      margin: auto;
    }

    .ei {
      max-width: 115px;
      display: block;
      margin: auto;
    }
  }

  .counterData:last-child {
    border-right: 0px;
  }

  .bottomTitle {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 28px;
    letter-spacing: 3px;
    text-align: center;
    text-transform: uppercase;
    color: #DFAF4B;
    margin-top: 50px;

  }
  .slider{
    margin-bottom: 35px;
  }
  .submitBtn {
    margin-top: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 50px;
    font-size: 24px;
  }
}

/* slick */
.slider {
  width: 100%;
  margin: 100px auto;
}

.slick-slide {
  margin: 0px 20px;
}

.slick-slide img {
  width: 100%;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}


.slick-slide {
  transition: all ease-in-out .3s;
  opacity: 0;
}

.slick-active {
  opacity: 1;
}

.slick-current {
  opacity: 1;
}

/* customnave */
.regularPrev {
  position: absolute;
  top: 55%;
  left: -5%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  background-color: transparent;

  img {
    width: 40px;
    height: 40px;
  }
}

.regularNext {
  position: absolute;
  top: 55%;
  right: -5%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  background-color: transparent;

  img {
    width: 40px;
    height: 40px;
  }
}

/* end */
.slideTitle {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 6px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #fff;
  padding: 16px;
  border-radius: 50px;
  background: linear-gradient(90deg, #BF9849 0%, #BF9849 47%, #D6B96A 89%);
  color: #fff;
  text-align: center;
  display: block;

}

/* slick */

/* end collection slider */

/* wellness every inch */
#wellnessEveryInch {
  padding: 100px 0;

  .topTitle {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 7px;
    text-align: center;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 10px;
  }

  .bottomTitle {
    font-family: "Brand", sans-serif;
    font-weight: 400;
    font-style: Brand;
    font-size: 60px;
    line-height: 57px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #2E4820;

    .bird {
      width: 125px;
      top: -100px;
    }
  }

  .subTitle {
    margin-top: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 26px;
    line-height: 22px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #BB9446;
  }

  .subTitlePara {

    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: Light;
    font-size: 16px;
    line-height: 115.99999999999999%;
    letter-spacing: 0%;
    text-align: center;
    color: #646464;
  }

  .slick-slide {
    transform: scale(0.9);
  }

  .slick-center {
    transform: scale(1) !important;
  }

  .slick-list {
    padding: 0 !important;
  }

  .overlayBox {
    background: #0c0c0c;
    background: linear-gradient(180deg, rgba(12, 12, 12, 0.08) 3%, rgba(0, 0, 0, 0.25) 15%, rgba(33, 33, 33, 0.86) 67%);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    width: 100%;
    gap: 20px;

    p {
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 18px;
      line-height: 28px;
      letter-spacing: 0%;
      color: #fff;
      margin-bottom: 0;
    }

    a img {
      width: 90px;
    }
  }

  .slick-dots li {
    width: 30px;
    height: 30px;
    bottom: -30px;
  }

  .slick-dots li button {
    width: 30px;
    height: 30px;
  }

  .slick-dots li button:before {
    width: 30px;
    height: 30px;
    font-size: 30px;
    line-height: 30px;
  }

  .slick-dots li.slick-active button:before {
    color: rgba(191, 152, 73, 1);
  }
}

/* end wellness every inch */

/* exploreTheMasterpiece section */
#exploreTheMasterpiece {
  padding: 110px 0;

  .topTitle {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 7px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #000;
  }

  .bottomTitle {
    position: relative;
    text-align: center;


    span:nth-child(1),
    span:nth-child(3) {
      position: relative;
      font-family: "Brand", sans-serif;
      font-weight: 400;
      font-style: Brand;
      font-size: 60px;
      line-height: 57px;
      letter-spacing: 0%;
      text-align: center;
      text-transform: capitalize;
      display: block;
      color: rgba(46, 72, 32, 1);


    }

    span:nth-child(2) {
      position: absolute;
      top: -24px;
      right: 110px;

      img {
        width: 48px;
      }
    }

  }

  .unitText {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 26px;
    line-height: 50px;
    letter-spacing: 0%;
    text-align: center;
    color: #b99345;

    span {
      display: inline-block;
      padding: 0 20px;
    }

    span:nth-child(1),
    span:nth-child(2),
    span:nth-child(3),
    span:nth-child(5) {
      border-right: 1px solid #b99345;
      height: 1em;
      vertical-align: middle;
      line-height: 1;
      display: inline-block;
    }
  }

  .exploreMore {
    img {
      width: 52px;
      height: 52px;
    }
  }

  .submitBtn {
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    font-size: 24px;
  }

  .leftContent {
    border-top: 1px solid rgba(191, 152, 73, 1);
    border-bottom: 1px solid rgba(191, 152, 73, 1);
    padding: 50px 0;

    .topTitle {
      font-family: Poppins;
      font-weight: 400;
      font-style: Regular;
      font-size: 24px;
      line-height: 70px;
      letter-spacing: 7px;
      text-align: center;
      text-transform: uppercase;
      color: #000;

    }

    .bottomTitle {
      font-family: "Brand", sans-serif;
      font-weight: 400;
      font-size: 60px;
      line-height: 57px;
      letter-spacing: 0%;
      text-align: center;
      text-transform: uppercase;
      color: rgba(184, 148, 74, 1);

      .geen {
        font-size: 96px;
        line-height: 85px;
        color: rgba(46, 72, 32, 1);
        position: relative;
        top: auto;
        right: auto;

      }

    }
  }

  .three {
    margin-left: 40px;
  }
}

/*end exploreTheMasterpiece */

/* certified wellness sectiona */
#certifiedWellness {
  padding: 110px 0;
  background-color: rgba(255, 252, 242, 1);

  .topTitle {
    font-family: "Brand", sans-serif;
    font-weight: 400;
    font-size: 60px;
    line-height: 57px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: lowercase;
    color: rgba(46, 72, 32, 1);

  }

  .exploreMore img {
    width: 52px;
    height: 52px;
    margin-right: 0;
  }

  .bottomTitle {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 69.71px;
    letter-spacing: 6px;
    text-align: center;
    text-transform: uppercase;

  }

  .slider {
    margin: 50px 0 0;
  }

  .certfiedSlider {
    /* margin-bottom: 30px; */
  }

  .slideBox {
    display: flex;
    gap: 2%;
    align-items: center;
    justify-content: space-between;
    padding-right: 2%;

    .leftImg {
      width: 48%;

      img {
        width: 100%;
        transform: translateX(-6%);
      }
    }

    .rightDetails {
      width: 48%;
    }

    .topImg {
      width: 110px;
      display: block;
      margin: auto;
      margin-bottom: 80px;
    }

    .slideSubTitle {
      font-family: Poppins;
      font-weight: 400;
      font-style: Regular;
      font-size: 20px;
      line-height: 29px;
      letter-spacing: 7px;
      text-align: center;
      text-transform: uppercase;
      color: #000;

    }

    .slideTitleText {
      font-family: "Brand", sans-serif;
      font-weight: 400;
      font-size: 55px;
      line-height: 45px;
      letter-spacing: 0%;
      text-align: center;
      text-transform: lowercase;
      color: rgba(46, 72, 32, 1);

    }

    .iconsBox {
      display: flex;
      gap: 50px;
      margin-top: 20px;

      .icons {
        flex-grow: 1;
        display: block;
        text-align: center;
      }

      .icons img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        margin-bottom: 10px !important;
        display: block;
        margin: auto;

      }

      .icons p {
        font-family: "Poppins", sans-serif;
        font-weight: 300;
        font-style: Light;
        font-size: 12px;
        line-height: 18px;
        letter-spacing: 0%;
        text-align: center;
        margin-top: 10px;
        margin-bottom: 0;
        display: block;
        /* max-width: 57%; */
        margin: auto;

      }
    }

    .navArrows {
      button {
        background-color: transparent;
        border: none;

        img {
          width: 40px;
          height: 40px;
        }
      }

      .certPrev {
        position: absolute;
        top: -2%;
        left: 0;
        z-index: 10;
      }

      .certNext {
        position: absolute;
        top: -2%;
        right: 0;
        z-index: 10;
      }
    }

  }

  .text1 {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    line-height: 69.71px;
    letter-spacing: 6px;
    text-align: center;
    text-transform: uppercase;

  }

  .text2 {
    font-family: "Brand", sans-serif;
    font-weight: 400;
    font-style: Brand;
    font-size: 60px;
    line-height: 57px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    position: relative;
    margin-bottom: 0;

     img {
      width: 48px;
      position: absolute;
      top: -17px;
      right: -22px;
    }
  }

  .text3 {

    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 26px;
    /* line-height: 50px; */
    letter-spacing: 0%;
    text-align: center;
    color: rgba(46, 72, 32, 1);
    margin-top: 40px;
    margin-bottom: 0;

    span {
      padding: 0 20px;
    }

    span:nth-child(1),
    span:nth-child(2),
    span:nth-child(3),
    span:nth-child(5) {
      border-right: 1px solid #b99345;
      height: 1em;
      vertical-align: middle;
      line-height: 1;
      display: inline-block;
    }
  }


}

.marqueeText {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: transparent;
  position: relative;
  padding: 20px 0;
  margin-top: 80px;
}

.marqueeTrack {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
}

.marqueeTrack span {
  display: inline-block;
  padding: 0 40px;
  color: rgba(0, 0, 0, 1);
  font-family: "Poppins", sans-serif;
  letter-spacing: 2px;

  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  border-right: 1px solid rgba(191, 152, 73, 1);
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* end certified wellness sectiona */

/* End New style */

/* =============== Start Wellness Slider Section =============== */
.wellness-slider-section {
  padding: 0 0;

  .wellness-slider .slick-slide {
    padding: 0;
    margin: 0;
    height: inherit;
  }

  .wellness-slider .slick-track {
    display: flex;
  }

  .wellness-slider .slick-slide>div {
    height: 100%;
    display: flex;
  }

  .wellness-slide {
    background: #FFFCF2;
    padding: 80px;
    border-radius: 20px;
    height: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
  }

  .wellness-slide-row {
    align-items: center;
    width: 100%;
  }

  .wellness-slide-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .wellness-slide-content .vicitore-wellness-logo {
    height: 100px;
    width: auto;
    margin-bottom: 40px;
  }

  .vicitore-wellness-left-logo {
    width: auto;
    height: 200px;
  }

  .wellness-slide-content .ws-small {
    font-size: 18px;
    color: #000000;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
  }

  .wellness-slide-content .ws-medium {
    font-size: 20px;
    color: #000000;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    font-weight: 400;
  }

  .wellness-slide-content .ws-gold {
    font-size: 50px;
    line-height: 44px;
    letter-spacing: 3px;
    color: #BB9446;
    font-family: "Brand", sans-serif;
    text-transform: uppercase;
  }

  .wellness-slide-content .ws-green {
    font-size: 50px;
    line-height: 44px;
    letter-spacing: 3px;
    color: #2E4820;
    font-family: "Brand", sans-serif;
    text-transform: uppercase;
  }


  .know-more-btn {
    display: inline-block;
    background-color: #C7A667;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 25px;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: 20px;
  }


  .slick-dots {
    bottom: 20px;
  }

  .slick-dots li button:before {
    font-size: 50px;
    color: #B4B4B4;
    opacity: 1;
  }

  .slick-dots li.slick-active button:before {
    opacity: 1;
  }

  .slick-dots li.slick-active button:before {
    color: #BF9849;
  }

  .ws-next.slick-arrow {
    right: 50px !important;
    z-index: 1;
  }

  .ws-prev.slick-arrow {
    left: 30px !important;
    z-index: 1;
  }
}

/* =============== End Wellness Slider Section =============== */


/* =============== Start Scroll Down Section =============== */
.scroll-down {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
}

.scroll-down-btn {
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.scroll-down-btn img {
  width: 40px;
  height: 40px;
}

/* =============== End Scroll Down Section =============== */

/* =============== Start Location Section =============== */
.location-section {
  padding: 0 0 0 80px;

  .nestled-in-text {
    font-size: 18px;
    color: #000;
    margin-bottom: 3px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
  }

  .greenest-community-text {
    font-size: 42px;
    font-weight: 400;
    color: #BB9446;
    margin-bottom: 20px;
    font-family: "Brand", sans-serif;
  }

  .map-container {
    position: relative;
  }

  .basemap {
    width: 100%;
  }

  .view-locations-btn {
    position: absolute;
    top: 40px;
    left: 30px;
    padding: 0;
    text-decoration: none;
  }

  .view-locations-btn span {
    background-color: #2E4820;
    color: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    padding: 8px 17px;
    border-radius: 20px;
    border: 1px solid #fff;
  }

  .view-locations-btn img {
    margin-left: 5px;
  }

  .location-cards {
    font-family: "Poppins", sans-serif;
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .location-card img {
    max-width: 100%;
    width: 100%;
    border-radius: 15px;
    margin-bottom: 20px;
  }

  .location-card p {
    color: #000;
    font-size: 14px;
    font-weight: 300;
  }

  .location-card p span {
    font-weight: 600;
    color: #000;
  }

  .location-card-top {
    position: relative;
  }

  .location-card-btn {
    position: absolute;
    bottom: -8px;
    z-index: 1;
    right: 20%;
  }

}

/* =============== End Location Section =============== */

/* =============== Start Awards Section =============== */
.awards-section {
  padding: 80px 0;
  text-align: center;


  .pioneers-text {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 3px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
  }

  .designer-wellness-text {
    font-size: 60px;
    font-weight: 400;
    color: #C7A667;
    margin-bottom: 0;
    font-family: "Brand", sans-serif;
    letter-spacing: 1px;
  }

  .real-estate-text {
    font-size: 50px;
    font-family: 'Excited', sans-serif;
    color: #062A08;
    margin-bottom: 30px;
    margin-top: -10px;
  }

  .vincitore-main-logo {
    margin: auto;
    margin-bottom: 30px;
    display: block;
    width: 170px;

  }

  .awards-description {
    max-width: 900px;
    margin: 0 auto 50px;
    color: #121212;
    line-height: 22px;
    font-size: 16px;
    font-weight: 300;
    font-family: "Inter", sans-serif;
  }


  .awards-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }
}

/* =============== End Awards Section =============== */

/* =============== Start Investment Section =============== */
.investment-section {
  padding: 60px 0;

  .investment-text {
    text-align: center;
  }

  .vincitore-logo {
    margin-bottom: 20px;
  }

  .awarded-badge {
    margin-bottom: 25px;
  }

  .investors-earned {
    color: #000000;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: 3px;
  }

  .king-icon {
    margin-bottom: 10px;
  }

  .roi-text {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    letter-spacing: 3px;
  }

  .roi-text span {
    font-size: 60px;
    font-weight: 700;
    color: #BF9849;
    letter-spacing: 0px;
  }

  .investment-image {
    max-width: 100%;
  }

  .investment-year {
    background: url('../images/year-plate.png') no-repeat center;
    background-size: contain;
  }

  .investment-year span {
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
  }

}

/* =============== End Investment Section =============== */
/* =============== Start Contact Us Section =============== */
.contact-us-section {
  background-color: #062A08;
  color: #fff;
  padding: 60px 80px;
  border-radius: 50px;
  margin: 100px 0;
  position: relative;

  .contact-us-text {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    height: 100%;
  }

  .contact-us-text h2 {
    font-size: 50px;
    font-weight: 300;
    max-width: 80%;
  }

  .contact-us-text h3 {
    font-size: 60px;
    font-weight: 700;
    color: #C7A667;
  }

  .scroll-down-btn {
    display: inline-block;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    color: #fff;
    margin-top: 30px;
  }

  .contact-us-form {
    background-color: #fff;
    color: #333;
    padding: 40px;
    border-radius: 25px;
    position: relative;
  }

  .contact-us-form .bird {
    position: absolute;
    top: -50px;
    right: -30px;
    width: 100px;
  }

  .contact-us-form h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .contact-us-form p {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
  }

  .contact-us-form .form-group {
    margin-bottom: 20px;
  }

  .contact-us-form .form-group input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    background-color: transparent;
  }

  .contact-us-form .submitBtn {
    background-color: #C7A667;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
  }

  .contactFormBoxTop {
    background-color: #fff;
    position: relative;

    .contactFormNote {
      color: #fff;
      width: 66%;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-size: 30px;
      line-height: 108%;
      padding: 30px 30px 20px;
      background-color: #062A08;
      border-bottom-right-radius: 30px;
      position: relative;
      margin-bottom: 0;
    }

    .contactFormNote::before {
      content: "";
      width: 60px;
      height: 60px;
      background-color: #062a08;
      right: -60px;
      top: 0;
      position: absolute;
    }

    .contactFormNote::after {
      content: "";
      width: 60px;
      height: 60px;
      background-color: #fff;
      right: -60px;
      top: 0;
      position: absolute;
      border-top-left-radius: 30px;
    }
  }

  .contactFormBoxBottom {
    background-color: #fff;
    border-radius: 40px 0px 40px 40px;
    padding: 40px 40px 30px;
    position: relative;
    z-index: 2;
  }

  .contactFormTitle {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: #A9A9A9;
  }

  .contactForm {
    position: relative;

    input,
    select {
      width: 100%;
      border: none;
      border-bottom: 1px solid rgba(196, 196, 196, 0.24);
      background-color: #fff;
      padding: 10px 0;
      color: #808080;
    }

    input {
      /* margin-bottom: 30px; */
    }

    input::placeholder {
      color: #7d8778;
      font-family: "Poppins", sans-serif;
      font-weight: 400;
      font-style: Regular;
      font-size: 12px;

      line-height: 20px;
      letter-spacing: 0%;
    }
  }

  input:focus,
  select:focus {
    outline: none;
    border: none;
    border-bottom: 1px solid rgba(196, 196, 196, 0.5);
  }

  .selectOptions {
    color: #7d8778;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;

    line-height: 20px;
  }

  .contactSubmitBtn {
    background: linear-gradient(90deg, rgba(159, 128, 57, 1) 0%, rgba(183, 145, 71, 1) 47%, rgba(248, 229, 144, 1) 89%);
    padding: 12px 30px;
    margin-top: 10px;
    border: none;
    border-radius: 75px;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    text-transform: uppercase;
    color: #000;
  }

  .bird {
    position: absolute;
    width: 150px;
    top: -83px;
    right: -69px;
  }

  .iti__selected-flag {
    background: #fff !important;
  }

  .contactButtonsGroup {
    display: flex;
    position: absolute;
    bottom: 30px;
    right: 30px;
    gap: 15px;
    z-index: 10;

    a img {
      width: 24px;
      height: 24px;
    }
  }

  .corner {
    position: absolute;
    width: 150px;
    right: -89px;
    bottom: -81px;
  }

}

/* =============== End Contact Us Section =============== */


/* =============== Start Footer Section =============== */
.footer-section {
background-color: rgba(255, 252, 242, 1);
margin-top: -200px;
padding-top: 200px;
  .footer-right {
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .quick-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 50px;
    border-top: 1px solid #2d2d2d78;
    padding-top: 20px;
  }

  .ql-right {
    display: flex;
    gap: 50px;
  }

  .ql-right a {
    font-size: 20px;
    text-decoration: none;
    color: #2D2D2D;
  }

  .ql-left a {
    font-size: 14px;
    font-style: italic;
    font-weight: 300;
    text-decoration: none;
    color: #2D2D2D;
  }

  .newsletter-box {
    background-color: #062A08;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
  }

  .newsletter-box h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .newsletter-box img {
    max-width: 100%;
  }

  .footer-widget h3 {
    font-size: 10px;
    color: #2D2D2D;
    margin-bottom: 30px;
    text-transform: uppercase;
  }

  .footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-widget ul li a {
    color: #333;
    text-decoration: none;
    font-size: 20px;
    line-height: 28px;
    transition: all 0.3s ease;
  }

  .footer-widget ul li a:hover {
    text-decoration: underline;
  }

  .footer-widget ul li .fa-arrow-up-right-from-square {
    font-size: 12px;
    opacity: 0.6;
  }

  .additional-links ul li a {
    font-size: 14px;
    line-height: 20px;
  }

  .call-me-back {
    display: inline-block;
    border: 1px solid #ccc;
    padding: 10px 32px;
    border-radius: 25px;
    color: #2D2D2D;
    text-decoration: none;
    margin-top: 60px;
    font-size: 12px;
    transition: all 0.3s ease;
  }

  .call-me-back:hover {
    background-color: #003300;
    color: #fff;
    border-color: #003300;
  }

  .footer-social {
    text-align: right;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .view-all {
    color: #2D2D2D;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
  }

  .social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #333;
    margin-left: 10px;
    text-decoration: none;
  }

  .social-icons a.scroll-top {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }

  .footer-contact {
    margin-top: 60px;
    color: #2D2D2D;
    font-size: 14px;
  }

  .footer-contact a {
    color: #2D2D2D;
    text-decoration: none;
    display: block;
  }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
  }

  .copyright {
    color: #2D2D2D;
    font-size: 10px;
    margin-bottom: 0;
  }

  .footer-lang a {
    color: #2D2D2D;
    text-decoration: none;
    margin-left: 15px;
    font-size: 10px;
  }

  .footer-last {
    display: flex;
    justify-content: space-between;
  }

  .footer-contact-numbers-email {
    display: flex;
    gap: 50px;
  }

  .footer-contact-numbers-email a {
    text-decoration: underline !important;
  }

  .footer-bottom-bg {
    height: 25px;
    background: #062A08;
    margin-top: 30px;
  }

}

/* =============== End Footer Section =============== */

/* =============== Start Scroll to Top Section =============== */
#scroll-to-top {
  /* position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999; */
  display: none;
}

#scroll-to-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
}

#scroll-to-top img {
  height: 100%;
}

/* =============== End Scroll to Top Section =============== */

/* ============== Start Modal Form Style =============== */
#brochureModal {

  .formBoxBottom {
    background-color: #fff;

  }

  .formTitle {
    color: #383838;
    max-width: 100%;
  }

  .iti__selected-flag {
    background: #fff !important;
  }

  input,
  select,
  .iti input[type="tel"] {
    background-color: #fff;
    color: #474444;
  }

  .closeBtn {
    z-index: 9;
  }

  .modal-btn-grp {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  button#modal_submitButton {
    margin-block: 10px;
  }
}

/* ==============  End Modal Form Style =============== */
.socialMedia {
    display: flex;
    gap: 14px;
    justify-content: flex-end;

    a {
      width: 58px;
      height: 58px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      border: 1px solid #ebebeb;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease-in;
      .fa-brands {
        font-size: 24px;
        color: #b7abac;
        transition: all 0.3s ease-in;
      }
    }
  }
  .socialMedia a:nth-child(1):hover,
  .socialMedia a:nth-child(1):hover .fa-brands {
    border-color: #fb414c;
    color: #fb414c;
    transition: all 0.3s ease-in;
  }
  .socialMedia a:nth-child(2):hover,
  .socialMedia a:nth-child(2):hover .fa-brands {
    border-color: #0077b5;
    color: #0077b5;
    transition: all 0.3s ease-in;
  }
  .socialMedia a:nth-child(3):hover,
  .socialMedia a:nth-child(3):hover .fa-brands {
    border-color: #1da1f2;
    color: #1da1f2;
    transition: all 0.3s ease-in;
  }
  .socialMedia a:nth-child(5):hover,
  .socialMedia a:nth-child(5):hover .fa-brands {
    border-color: #1877f2;
    color: #1877f2;
    transition: all 0.3s ease-in;
  }
  .socialMedia a:nth-child(4):hover,
  .socialMedia a:nth-child(4):hover .fa-brands {
    border-color: #ff7a00;
    color: #ff7a00;
    background: linear-gradient(
      135deg,
      #ffd600 0%,
      #ff7a00 25%,
      #ff0069 50%,
      #d300c5 75%,
      #7638fa 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in;
  }