.header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 22px 0;
  background: transparent;
  box-shadow: none;
  transition: background-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  isolation: isolate;
}

.header.scrolled{
  background-color: rgba(20,20,20,.6);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  backdrop-filter: saturate(120%) blur(6px);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  
  
}

.header-row{
  max-width: 1740px; margin: 0 auto;
  display:flex; align-items:center; justify-content:space-between;
}


.header-logo {
  align-items: center;
  display: flex;
}

.logo-inscript {
  display: flex;
  flex-direction: column;
  margin-left: 21px;
  gap: 7.6px;
}

.header-nav a {
  color: #fff;
  transition: color 0.2s ease;
}

.about-us {
  font-size: 16px;
}

.btn {
  color: #fff;
  white-space: nowrap;
  display: inline-block;
  height: 66px;
  line-height: 66px;
  padding-left: 36px;
  padding-right: 33px;
  font-size: 22px;
  background-color: #a58765;
  transition: background-color 0.2s ease;
  text-align: center;
}

.header .btn {
  margin-right: 23px;
  margin-left: 92px;
}

.btn:hover {
  background-color: #917351;
}

.menu-toggle {
  background-color: #2d2d2d;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 24px;
  border: none;
}

.menu-toggle:hover {
  background-color: #373737;
}

.menu-line {
  background-color: #f4e3ce;
  display: flex;
  width: 22px;
  flex-shrink: 0;
  height: 2px;
}

.menu-line:nth-child(2) {
  margin-top: 6px;
}

.menu-line:nth-child(3) {
  margin-top: 6px;
}

@media (width <= 991px) {
  .menu-toggle {
    margin-left: 24px;
    padding: 17px;
  }

  .header .btn {
    height: 45px;
    line-height: 45px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 18px;
    margin-right: 0;
    margin-left: 30px;
  }
}

@media (width <= 745px) {
  .header .btn,
  .about-us {
    display: none;
  }
}

/* Mobile menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #a58763;
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: auto;
  align-items: end;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 21px 80px 40px;
  font: 600 50px/76px Montserrat, -apple-system, Roboto, Helvetica, sans-serif;
}

.mobile-menu-overlay.show {
  display: flex;
}

@media (width <= 991px) {
  .mobile-menu-overlay {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 1.5px;
    padding: 0 20px 20px;
  }
}

.mobile-menu-content {
  display: flex;
  width: 100%;
  max-width: 1466px;
  flex-direction: column;
}

@media (width <= 991px) {
  .mobile-menu-content {
    max-width: 100%;
    font-size: 40px;
    line-height: 68px;
  }
}

.close-menu {
  align-self: end;
  position: relative;
  display: flex;
  width: 70px;
  height: 66px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  background-color: #ffffff1a;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
}

.close-menu:hover {
  background-color: #fff3;
}

.mobile-nav {
  align-self: start;
  margin-top: 61px;
}

@media (width <= 991px) {
  .mobile-nav {
    max-width: 100%;
    margin-top: 40px;
    font-size: 40px;
    line-height: 68px;
  }
}

@media (width <= 450px) {
  .mobile-nav {
    max-width: 100%;
    margin-top: 40px;
    font-size: 29px;
    line-height: 30px;
  }
}

.mobile-nav-link {
  display: block;
  margin-bottom: 40px;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #f4e3ce;
  transform: translateX(20px);
}

body.no-scroll {
  overflow: hidden;
}
