/* HEADER CSS START */
.header .logo img {
  width: 100%;
  max-width: 212px;
}
header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 0 35px;
}
.header .contact a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header ul.nav li a,
.header .contact a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header ul.nav li a:hover,
.header .contact a:hover {
  color: #f97316;
}
.header .hamburger {
  display: none;
  background: none;
  border: none;
}
.header .background-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.header .nav .close {
  display: none;
}
header.fixed {
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}
header,
div#header-placeholder {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
header,
header .header {
  transition: all 0.3s ease-in-out;
}
header.fixed .header {
  padding: 15px 0 15px;
}
header .header .nav-menu .mobile-nav {
  display: none;
}
header .header ul.nav.desktop {
  display: flex;
  align-items: center;
  gap: 43px;
}
header .header .footer-menu {
  display: none;
}

@media screen and (max-width: 1024px) {
  .header .contact a span {
    display: none;
  }
  header .header {
    padding: 35px 0 35px;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
    header .header ul.nav.desktop {
      gap: 15px;
  }
  .header .logo img {
      max-width: 170px;
  }
}
@media screen and (max-width: 767px) {
  header .header {
    padding: 12px 0 12px;
    gap: 20px;
  }
  header .header ul.nav.desktop {
    display: none;
  }
  header.fixed .header {
    padding: 8px 0 8px;
  }
  .header .logo img {
    max-width: 156px;
    transition: 0.5s ease-in-out;
  }
  header.fixed .header .logo img {
    max-width: 146px;
  }
  header .header .contact img {
    width: 100%;
    max-width: 30px;
  }
  header .header .nav {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    width: 93.2%;
    background: #1c1917;
    padding: 15px 15px 60px 15px;
    transition: left 0.3s ease-in-out;
    z-index: 100;
    overflow-y: scroll;
  }
  header .header ul.nav li:first-of-type {
    margin-top: 20px;
  }
  header .header .nav.active {
    left: 0;
  }
  header .header .nav img.close {
    position: absolute;
    right: 15px;
    top: 15px;
  }
  header .header ul.nav li:last-of-type a {
    padding: 30px 0 0;
    border-bottom: 0px solid transparent;
  }
  header .header ul.nav li a {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ffffff1a;
    max-width: 300px;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
  }
  header .header .menu-button {
    margin: 50px 0 78px 0;
  }
  header .header .menu-button a.primary-button {
    color: #fef3c7;
    max-width: 215px;
    width: 100%;
  }
  header .header .head-menu h5 {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
    font-weight: 300;
    font-family: "Sofia Pro";
    margin: 7px 0 0 0;
  }
  header .header .footer-menu h3 {
    margin-bottom: 20px;
    letter-spacing: 0;
    font-size: 26px;
    line-height: 29px;
    font-weight: 700;
    font-family: "Sofia Pro";
  }
  header .header .footer-menu .email {
    margin-bottom: 20px;
  }
  header .header .footer-menu .tell,
  header .header .footer-menu .email {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  header .header .footer-menu .tell a,
  header .header .footer-menu .email a {
    color: #f97316;
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0;
    font-weight: 600;
    font-family: "Sofia Pro";
  }
  header .header .background-overlay.active,
  header .header .hamburger,
  header .header .nav-menu .mobile-nav,
  header .header .nav .close {
    display: block;
  }
  body.menu-open {
    overflow: hidden;
  }
  header .header .nav-menu {
    display: flex;
    align-items: center;
    flex: 5.5;
    justify-content: end;
  }
  header .header .nav .head-menu img {
    width: 100%;
    max-width: 206px;
  }
  header .header .nav .head-menu img.bhavin-image {
    width: 100%;
    max-width: 80px;
    margin-bottom: 15px;
  }
  .hero-banner .review-content .icon img {
    width: 100%;
    max-width: 150px;
  }
}
@media screen and (max-width: 390px) {
  header .header .footer-menu .tell a,
  header .header .footer-menu .email a {
    font-size: 18px;
  }
}
/* HEADER CSS END */