/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --hover-primary-color: #80c344;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Oswald", sans-serif;
  background: #021c3c;
}

img {
  display: block;
}

.container-fluid {
  max-width: 1450px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}

.container {
  max-width: 1400px;
  padding: 0 20px;
  margin: auto;
  width: 100%;
}

.header-links ul li a {
  font-size: medium;
  color: #fff;
  text-decoration: none;
  transition: 0.3s linear;
  text-transform: uppercase;
}

.header-logo img {
  max-width: 200px;
  transition: 0.3s linear;
}

.fixed-header .header-logo img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(93%) saturate(0%)
    hue-rotate(201deg) brightness(106%) contrast(106%);
}

section#main-header.fixed-header {
  background: #021c3c;
  padding: 20px 0;
}

.header-links ul li a:hover {
  background-color: var(--hover-primary-color);
}

.header-links ul li {
  list-style: none;
}

.header-links > ul > li > a {
  padding: 10px 15px;
  display: block;
}

.header-links > ul > li > ul > li > a {
  padding: 10px 20px;
  display: block;
  border-bottom: 1px solid #fff;
  width: 200px;
}

.header-links > ul > li > ul > li:last-child > a {
  border: none;
}

.align-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-links ul {
  display: flex;
  align-items: center;
}

.header-links > ul > li.nav-dropdown {
  position: relative;
}

.header-links > ul > li.nav-dropdown > ul {
  position: absolute;
  left: 0;
  top: 50px;
  opacity: 0;
  transition: 0.3s linear;
  visibility: hidden;

  background: #021c3c;
}

.header-links > ul > li.nav-dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
}

section#main-header {
  padding: 24px 0;
  background-color: transparent;
  background-image: linear-gradient(239deg, #021c3c 34%, #fafafa00 80%);
  position: fixed;
  top: 0;
  z-index: 9;
  width: 100%;
  transition: 0.3s linear;
}

section#main-header.sticky {
  padding: 20px 0;
  background: #021c3c;
}

.header-links ul li ul {
  flex-direction: column;
}

.main-box-hero-slide {
  position: relative;
}

.main-box-hero-slide h1 {
  position: absolute;
  bottom: 60px;
  left: 70px;
  font-size: 70px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
}

.main-box-hero-slide::before {
  content: "";
  background: #021c3c57;
  position: absolute;
  inset: 0;
}

.swiper-navigation-main {
  position: absolute;
  bottom: 50px;
  right: 60px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.swiper-navigation-main div {
  width: 50px;
  height: 50px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s linear;
  cursor: pointer;
}

.swiper-navigation-main div:hover {
  background: var(--hover-primary-color);
}

.title-youtube-video h2 {
  font-size: 60px;
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  display: block;
  margin-bottom: 30px;
  color: var(--hover-primary-color);
}

section#youtube-video {
  padding: 80px 0;
}

.main-youtube-video iframe {
  margin: auto;
  display: block;
}

.middle-banner-img img {
  width: 100%;
}

.sale-client-img img {
  width: 100%;
}

section#sales-partners {
  padding: 80px 0;
  background: #f4f4f4;
  text-align: center;
}

.title-sales-partner h2 {
  font-size: 60px;
  font-weight: 500;
  font-family: "Cinzel", sans-serif;
  color: #021c3c;
  padding-bottom: 20px;
}

section#footer-main {
  padding: 80px 0 0;
}

.footer-align p {
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
}

.footer-align {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

section#footer-main footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.title-footer-links h3 {
  font-family: "Cinzel", sans-serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--hover-primary-color);
  margin-bottom: 20px;
}

.footer-links ul li {
  list-style: none;
}

.footer-links ul li p {
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 1px;
  color: #80c344;
  font-weight: 600;
  padding-bottom: 10px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
  transition: 0.3s linear;
}

.footer-links ul li a:hover {
  color: var(--hover-primary-color);
}

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

.bottom-footer {
  background: var(--hover-primary-color);
  padding: 20px 0;
  margin-top: 60px;
}

.bottom-footer-align {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bottom-footer-align p,
.bottom-footer-align a {
  color: #021c3c;
  text-decoration: none;
}

.main-phase-banner-align img {
  width: 100%;
}

.main-phase-banner-align {
  position: relative;
}

.title-phase-main {
  position: absolute;
  bottom: 40px;
  width: 100%;
  z-index: 1;
}

.title-phase-main h2 {
  font-family: "Oswald", Sans-serif;
  font-size: 90px;
  font-weight: 300;
  text-transform: uppercase;
  mix-blend-mode: overlay;
  color: #ffffff;
}

.main-phase-banner-align::before {
  content: "";
  background: #021c3c57;
  position: absolute;
  inset: 0;
}

section#breadcrumb-main {
  background: #0d4d98 !important;
  padding: 10px 0;
}

section#breadcrumb-main ul {
  display: flex;
  align-items: center;
}

section#breadcrumb-main ul li {
  list-style: none;
  position: relative;
}

section#breadcrumb-main ul li a {
  font-size: 20px;
  color: #fff;
  text-decoration: initial;
}

section#breadcrumb-main ul li.current-breadcrumb::before {
  content: "»";
  color: #fff;
  font-weight: 400;
  padding: 0px 10px;
}

section#breadcrumb-main ul li.current-breadcrumb a {
  color: #7dc13d;
}

.phase-grid-content h3 {
  font-family: "Oswald", Sans-serif;
  font-size: 35px;
  font-weight: 200;
  text-transform: capitalize;
  line-height: 48px;
  letter-spacing: 1.5px;
  word-spacing: 0px;
  color: #ffffff;
}

section#phase-grid {
  padding: 46px 0;
}

.phase-grid-main {
  display: grid;
  grid-template-columns: 54% 44%;
  align-items: center;
  gap: 30px;
}

.logo-img-phase img {
  height: 102px;
  margin: auto;
}

.payment-plan-btn a {
  display: block;
  text-align: center;
  width: fit-content;
  margin: auto;
  background-color: #80c344;
  font-family: "Oswald", Sans-serif;
  font-size: 24px;
  letter-spacing: 1px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #80c344;
  border-radius: 0px 0px 0px 0px;
  text-decoration: initial;
  color: #fff;
  padding: 8px 24px;
  transition: 0.3s linear;
}

.phase-grid-img {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.payment-plan-btn a:hover {
  color: #80c344;
  background: transparent;
}

section#phase-slider {
  background: #fff;
  padding: 60px 0;
}

.grid-content-phase-slider h2 {
  font-family: "Oswald", Sans-serif;
  font-size: 60px;
  font-weight: 300;
  text-transform: uppercase;
  color: #021c3c;
}

.grid-content-phase-slider p {
  font-size: 22px;
  font-weight: 300;
  text-transform: capitalize;
  line-height: 1.6;
  letter-spacing: 1.5px;
  word-spacing: 0px;
  color: #ababab;
}

.phase-slider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.grid-content-phase-slider {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.phase-slider-img img {
  width: 100%;
}

.phase-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 18px;
}

.phase-navigation div {
  background: #80c344;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: 0.3s linear;
  border: 1px solid #80c344;
}

.phase-navigation div:hover {
  color: #80c344;
  background: transparent;
}

.white-bg {
  background: #f4f4f4;
}

.amenties-tilte h3 {
  line-height: 65px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 52px;
  color: rgb(2, 28, 60);
}

.amenties-tilte p {
  font-family: Cinzel;
  color: rgb(102, 102, 102);
  line-height: 30px;
  letter-spacing: 0px;
  font-weight: 400;
  font-size: 20px;
}

.amenties-tilte {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.count-amenties p {
  font-size: 20px;
  border-top: 2px solid;
  margin-top: 10px;
  padding-top: 10px;
  color: #666666;
}

.amenties-slider-img-title h3 {
  font-size: 40px;
  font-weight: 400;
  text-align: center;
}

.phase-slider-img img:hover {
  transform: scale(1.1);
}

.phase-slider-img {
  max-height: 400px;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.amenties-slider-img-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main-img-amenties img {
  width: 100%;
  transition: 0.3s ease;
}

.main-img-amenties {
  overflow: hidden;
}

.main-img-amenties:hover img {
  transform: scale(1.1);
}

section#amenties-slider {
  padding-bottom: 90px;
}

.book-form-tilte h3 {
  font-family: "Cinzel", Sans-serif;
  font-size: 63px;
  font-weight: 600;
  color: #021c3c;
  text-align: center;
}

.main-book-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
}

.book-form-field label {
  display: block;
  font-size: 18px;
  width: 100%;
  color: #666666;
}

.book-form-field input,
.book-form-field select,
.book-form-field textarea {
  width: 100%;
  border: 1px solid #666;
  border-radius: 3px;
  padding: 0.6rem 1rem;
  transition: all 0.3s;
  width: 100%;
  border-radius: 0;
  font-size: 14px;
}

.form-fields-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.book-form-field textarea {
  height: 150px;
}

.book-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.submit-btn button {
  border: none;
  background-color: #8bc34a;
  color: #fff;
  padding: 10px 45px;
  border: none;
  border-radius: 0px;
  font-family: "Oswald";
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 16px;
  margin: auto;
  display: block;
  transition: 0.3s linear;
}

.submit-btn {
  margin-top: 20px;
}

.submit-btn button:hover {
  background: #021c3c;
  cursor: pointer;
}

section#book-form {
  padding-top: 50px;
  padding-bottom: 90px;
}

/* Smooth scrolling for older browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

.title-gallery-slider h2 {
  font-family: Oswald;
  height: auto;
  width: auto;
  color: rgb(255, 255, 255);
  text-decoration: none;
  white-space: nowrap;
  min-height: 0px;
  min-width: 0px;
  max-height: none;
  max-width: none;
  text-align: left;
  line-height: 33px;
  letter-spacing: 0.792188px;
  font-weight: 300;
  font-size: 28px;
  backdrop-filter: none;
  filter: none;
  transform-origin: 50% 50%;
  opacity: 1;
  transform: translate(0px, 0px);
  visibility: visible;
  margin-left: auto;
  width: fit-content;
}

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

.main-gallery-slider {
  position: relative;
}

.align-gallery-slider {
  max-width: 1064px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-sticker {
  position: absolute;
  top: -40px;
  z-index: 1;
  left: 57px;
}

.top-sticker img {
  max-height: 120px;
}

.bottom-stamp {
  position: absolute;
  bottom: -50px;
  z-index: 1;
  left: -50px;
}

.bottom-stamp img {
  max-height: 150px;
}

section#gallery-slider {
  padding: 100px 0;
  background: var(--hover-primary-color);
}

.gallery-slider-nav {
  position: absolute;
  bottom: 0;
  display: flex;
  z-index: 1;
  right: 0;
}

.gallery-slider-nav div {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #80c344;
  color: #fff;
  cursor: pointer;
}

.location-grid-title h2 {
  font-family: "Cinzel", Sans-serif;
  font-size: 60px;
  line-height: 74px;
  color: #021c3c;
  font-weight: 500;
}

.main-location-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  margin-top: 40px;
}

.location-grid-img img {
  width: 100%;
  max-width: 320px;
  margin: auto;
}

.location-grid-content h3 {
  font-family: "Cinzel", Sans-serif;
  font-size: 36px;
  line-height: 40px;
  color: #021c3c;
  font-weight: 500;
}

.location-grid-content ul li {
  list-style: none;
}

.location-grid-content ul li p {
  font-family: "Oswald", Sans-serif;
  font-size: 16px;
}

.location-grid-content ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.location-grid-img {
  background: #021c3c;
  border: 2px solid var(--hover-primary-color);
}

section#location-grid {
  padding: 10px 0 100px;
}

.video-title-main h2 {
  font-family: "Cinzel", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #80c344;
}

.group-title-main h3,
.description-groups p {
  font-family: "Oswald", Sans-serif;
  font-size: 35px;
  font-weight: 200;
  line-height: 48px;
  letter-spacing: 1.5px;
  word-spacing: 0px;
  color: #ffffff;
}

.group-logos {
  display: grid;
  gap: 110px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding: 100px 0;
}

.group-logo img {
  max-height: 62px;
  width: 100%;
  object-fit: contain;
}

.description-groups p {
  margin-bottom: 50px;
}

.group-title-description h3 {
  font-family: "Oswald", Sans-serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 48px;
  letter-spacing: 1.5px;
  word-spacing: 0px;
  color: #80c344;
  margin-bottom: 20px;
}

section.gap-header-section {
  padding-top: 150px;
}

.title-payment.payment-plan-btn h2 {
  font-family: "Cinzel", Sans-serif;
  font-size: 70px;
  color: #80c344;
  text-align: center;
  max-width: 1090px;
  margin: auto;
  font-weight: 500;
}

.align-payment-box h2 {
  font-family: "Oswald", Sans-serif;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  -webkit-text-stroke-color: #000;
  stroke: #000;
  color: #ffffff;
}

.payment-titles h3,
.payment-banks h3 {
  font-family: "Oswald", Sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #021c3c;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
  background: #80c344;
  padding: 12px;
}

.payment-titles p,
.payment-banks p {
  font-family: "Oswald", Sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  border-style: solid;
  border-width: 0px 1px 1px 1px;
  border-color: #ffffff;
  padding: 10px 10px 10px 14px;
}

.payment-box-main {
  display: flex;
  max-width: 1120px;
  width: 1005;
}

.payment-titles {
  min-width: 244px;
}

.payment-banks {
  flex: 1;
}

.payment-note p {
  font-size: 20px;
  color: #fff;
  text-transform: uppercase;
}

.payment-note p span,
.payment-note p a {
  color: var(--hover-primary-color);
  text-decoration: none;
}

.payment-note {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.align-payment-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.payment-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-bottom: 1px solid #ffffff;
  padding: 80px 0 40px 0;
  max-width: 1120px;
}

.header-mob-hamburger {
  display: none;
}

.header-links > ul > li.nav-dropdown svg {
  display: none;
}


.title-payment-plan.payment-plan-btn h3 {
    font-family: "Cinzel", Sans-serif;
    font-size: 36px;
    color: #80C344;
    text-align: center;
    font-weight: 400;
}

.title-payment-plan.payment-plan-btn .payment-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.title-payment-plan.payment-plan-btn .payment-btns a {
    margin: 0;
}

.title-payment-plan.payment-plan-btn {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.payment-plan-img img {
    display: block;
    max-width: 100%;
}

.align-payment-plan {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1100px;
}

.align-payment-plan {
  margin: 50px auto;
}

@media screen and (max-width: 1250px) {
  .main-youtube-video iframe {
    width: 100%;
  }
}

@media screen and (max-width: 991px) {
  .header-links {
    position: absolute;
    top: 0;
    height: 100dvh;
    overflow: auto;
    background: #80c344;
    width: calc(100% - 100px);
    left: -100%;
    transition: 0.3s linear;
  }

  .header-links ul {
    flex-direction: column;
    padding: 30px 20px;
  }

  .header-links ul li {
    width: 100%;
  }

  .header-links > ul > li.nav-dropdown ul {
    position: initial;
    opacity: 1;
    visibility: visible;
    background: transparent;
    padding: 0 0 0 20px;
    display: none;
  }

  .header-links > ul > li.nav-dropdown ul li a {
    width: 100%;
  }

  .header-links > ul > li > ul > li:last-child > a {
    border-bottom: 1px solid;
  }

  .title-youtube-video h2 {
    font-size: 30px;
  }

  .title-sales-partner h2 {
    font-size: 30px;
  }

  section#sales-partners {
    padding: 40px 0;
  }

  section#footer-main footer {
    grid-template-columns: 1fr;
  }

  .title-footer-links h3 {
    font-size: 24px;
  }

  .bottom-footer {
    margin-top: 40px;
    padding: 10px 0;
  }

  section#footer-main {
    padding: 40px 0 0;
  }

  .footer-links ul {
    gap: 20px;
  }

  .main-box-hero-slide h1 {
    font-size: 40px;
    bottom: 40px;
    left: 40px;
  }

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

  section#main-header {
    padding: 10px 0;
    z-index: 99;
  }

  section#main-header.fixed-header {
    padding: 8px 0;
  }

  .header-mob-hamburger {
    color: #fff;
    width: 40px;
    height: 40px;
    background: #80c344;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 18px;
  }

  .header-logo img {
    max-width: 180px;
  }

  .bottom-footer-align {
    flex-direction: column;
    gap: 10px;
  }

  .main-youtube-video iframe {
    height: auto;
    max-height: 400px;
  }
  section#youtube-video {
    padding: 40px 0;
  }
  .active-nav {
    overflow: hidden;
  }

  .active-nav .header-links {
    left: 0;
  }

  .header-mob-hamburger {
    display: flex;
  }

  .header-links > ul > li.nav-dropdown > ul {
    display: none;
  }
  .header-links > ul > li.nav-dropdown {
    color: #fff;
  }

  .header-links > ul > li.nav-dropdown svg {
    display: block;
  }

  .mob-arrow-svg {
    position: absolute;
    top: 9px;
    right: 0;
    transition: 0.3s linear;
  }

  .active-dropdown .mob-arrow-svg {
    transform: rotate(90deg);
  }

  .main-phase-banner-align img {
    height: 52dvh;
    object-fit: cover;
  }

  .title-phase-main h2 {
    font-size: 30px;
  }

  .title-phase-main {
    bottom: 20px;
  }

  section#main-align-group {
    padding: 40px 0;
  }

  .group-title-main h3,
  .description-groups p {
    font-size: 24px;
    line-height: 1.5;
  }

  .group-logos {
    padding: 50px 0;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 30px;
  }

  .group-title-description h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .phase-grid-main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .phase-slider-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .phase-grid-content h3 {
    font-size: 25px;
    line-height: 1.5;
  }

  .logo-img-phase img {
    width: 220px;
    height: auto;
  }

  .phase-grid-img {
    gap: 30px;
  }

  .grid-content-phase-slider h2 {
    font-size: 30px;
  }

  .grid-content-phase-slider {
    gap: 20px;
  }

  .grid-content-phase-slider p {
    font-size: 20px;
  }

  .phase-navigation div {
    width: 40px;
    height: 40px;
  }

  .phase-navigation {
    gap: 10px;
  }

  .amenties-slider-img-title h3 {
    font-size: 20px;
  }

  .amenties-tilte h3 {
    font-size: 30px;
    line-height: 1;
  }

  .amenties-tilte p {
    font-size: 16px;
  }

  .amenties-slider-img-title {
    margin-top: 20px;
  }

  section#amenties-slider {
    padding-bottom: 40px;
  }

  .book-form-tilte h3 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .top-sticker img {
    max-height: 60px;
  }

  .bottom-stamp img {
    max-height: 105px;
  }

  .gallery-slide-img img {
    aspect-ratio: 1;
    object-fit: cover;
  }

  .title-gallery-slider h2 {
    font-size: 24px;
    white-space: normal;
    margin-bottom: 30px;
  }

  .title-gallery-slider h2 br {
    display: none;
  }

  .bottom-stamp {
    left: -10px;
  }

  section#gallery-slider {
    padding: 60px 0;
  }

  .video-title-main h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
  }

  .title-payment.payment-plan-btn h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .payment-box {
    padding: 40px 0 20px 0;
  }

  .align-payment-box h2 {
    font-size: 25px;
  }

  .payment-titles p,
  .payment-banks p {
    font-size: 11px;
    padding: 8px;
  }

  .payment-titles h3,
  .payment-banks h3 {
    font-size: 14px;
  }

  .payment-note p {
    font-size: 16px;
  }

  .location-grid-title h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .location-grid-content h3 {
    font-size: 26px;
    line-height: 1.5;
  }

  .main-location-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .location-grid-content ul {
    gap: 20px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .title-youtube-video h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .hero-slide-img img {
    height: 52vh;
    object-fit: cover;
  }

  .main-box-hero-slide h1 {
    display: none;
  }

  .swiper-navigation-main div {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }

  .swiper-navigation-main {
    right: 20px;
    bottom: 20px;
  }

  .menu-overlay {
    position: fixed;
    inset: 0;
    background: #021c3c7a;
    z-index: 9;
    transition: 0.3s linear;
    opacity: 0;
    visibility: hidden;
  }

  .active-nav .menu-overlay {
    opacity: 1;
    visibility: visible;
  }
}
