/*------------------------------Miscellaneous------------------------------*/

@media screen and (max-width: 1700px) {
  html {
    font-size: 8px;
  }
}



@media (max-width: 768px) {
  .topbar__right {
    display: none;
  }
  .topbar {
    justify-content: center;
  }
  .header-section {
    --header-height: 10rem;
  }
  .header-section .enquiry-btn {
    display: none;
  }
  .header .hamburger {
    display: block;
  }
  .navbar-section {
    padding: 0;
    height: 0;
    overflow: hidden;
  }
  .navbar-section.open {
    height: auto;
  }
  .nav-menu {
    flex-direction: column;
    margin: 0;
    gap: 0;
    width: 100%;
  }
  .nav-menu__item {
    width: 100%;
    padding: 1.5rem 1rem;
    position: relative;
  }
  .nav-menu__item:not(:last-child) {
    border-bottom: 1px solid rgb(70, 70, 70);
  }
  .nav-menu__item:has(.nav-submenu)::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    font-size: 1.4rem;
    content: "\2b";
    position: absolute;
    right: 1rem;
    top: 0.8rem;
  }
  .nav-submenu {
    padding: 0.5rem 0;
    gap: 0;
    top: 0.3rem;
  }
  .nav-submenu__item {
    padding: 1rem 2rem;
  }
  .nav-submenu__item:not(:last-child) {
    border-bottom: 1px solid var(--bs-border-color-translucent);
  }
  .nav-menu__item:hover .nav-submenu,
  .nav-menu__item .nav-submenu:hover {
    position: relative;
  }
  /* .hero-section {
    border-top: 2px solid var(--secondary-color);
  } */
  .hero-section .swiper-button-next,
  .hero-section .swiper-button-prev {
    height: 3.2rem;
    width: 3.2rem;
  }
  .hero-section .swiper-button-next:after,
  .hero-section .swiper-button-prev:after {
    font-size: 1.5rem;
  }
  .about__img {
    width: 70%;
    margin: auto;
    padding-top: 0;
  }
}


.navbar-section {
  border-top: 3px double var(--secondary-color);
  border-bottom: 3px double var(--secondary-color);
}


.navbar__logo img {
  height: 6rem;
  width: 6rem;
  border: 3px double white;
  border-radius: 50%;
}
.navbar__logo {
  display: none !important;
}
.navbar-section.fixed .navbar__logo {
  display: block !important;
}
@media (max-width: 768px) {  
  .navbar-section.fixed .navbar__logo {
    display: none !important;
  }
}

.header-section.fixed {
  position: fixed;
  width: 100%;
  z-index: 99;
  display: none;
  top: 0;
  border-top: 3px double var(--secondary-color);
}
.navbar-section.fixed {
  position: fixed;
  width: 100%;
  z-index: 99;
}
@media (max-width: 768px) {  
  .header-section.fixed {
    display: block;
  }
}