/* overlay-styles.css */
.hamburger-overlay {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 80px;
  height: 80px;
  border: none;
  background: transparent;
  cursor: pointer;
  background: #DC4177;
}
@media screen and (max-width: 768px) {
  .hamburger-overlay {
    width: 60px;
    height: 60px;
  }
}

.hamburger-overlay__line {
  position: absolute;
  left: 26px;
  width: 26px;
  height: 2px;
  background-size: cover;
  transition: all 0.6s;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .hamburger-overlay__line {
    left: 18px;
  }
}

.hamburger-overlay__line:nth-of-type(1) {
  top: 29px;
}
@media screen and (max-width: 768px) {
  .hamburger-overlay__line:nth-of-type(1) {
    top: 19px;
  }
}

.hamburger-overlay__line:nth-of-type(2) {
  top: 38px;
}
@media screen and (max-width: 768px) {
  .hamburger-overlay__line:nth-of-type(2) {
    top: 28px;
  }
}

.hamburger-overlay__line:nth-of-type(3) {
  top: 47px;
}
@media screen and (max-width: 768px) {
  .hamburger-overlay__line:nth-of-type(3) {
    top: 37px;
  }
}

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/dw-bg.webp) no-repeat center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}
@media screen and (max-width: 768px) {
  .nav-overlay {
    background-position: left;
  }
}
.nav-overlay::before {
  content: "";
  background: url(../images/dw-bg.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 654px;
  height: 799px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .nav-overlay::before {
    width: 204px;
    height: 249px;
  }
}

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

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.active .nav-overlay__item:nth-child(8) a, .nav-overlay.active .nav-overlay__item:nth-child(9) a {
  color: #979596;
}

.nav-overlay.active .nav-overlay__item:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-overlay.active .nav-overlay__item:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-overlay.active .nav-overlay__item:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-overlay.active .nav-overlay__item:nth-child(4) {
  transition-delay: 0.4s;
}

.nav-overlay.active .nav-overlay__item:nth-child(5) {
  transition-delay: 0.5s;
}

.nav-overlay.active .nav-overlay__item:nth-child(6) {
  transition-delay: 0.6s;
}

.nav-overlay.active .nav-overlay__item:nth-child(7) {
  transition-delay: 0.7s;
}

.nav-overlay.active .nav-overlay__item:nth-child(8) {
  transition-delay: 0.8s;
}

.nav-overlay.active .nav-overlay__item:nth-child(9) {
  transition-delay: 0.9s;
}

.nav-overlay.active .nav-overlay__item:nth-child(10) {
  transition-delay: 1.1s;
}

.nav-overlay__link {
  font-family: "Quicksand";
  display: inline-block;
  padding: 20px;
  color: #656172;
  font-size: 2.2rem;
  text-decoration: none;
  transition: color 0.3s;
}
@media screen and (max-width: 480px) {
  .nav-overlay__link {
    font-size: 1.8rem;
    padding: 12px;
  }
}

.nav-overlay__link:hover {
  color: #CB2D63;
}

.tel-btn {
  max-width: 340px;
  width: 90%;
  background: #880C37;
  border-radius: 50px;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2.4rem;
  position: relative;
  margin: 24px auto 0 auto;
  transition: all ease 0.5s;
}
@media screen and (max-width: 480px) {
  .tel-btn {
    padding: 8px 0;
    font-size: 2rem;
    margin: 16px auto 0 auto;
  }
}
.tel-btn::before {
  content: "";
  background: url(../images/icon-web.svg) no-repeat;
  background-size: contain;
  display: block;
  width: 27px;
  height: 19px;
  margin: 1px 4px 0 0;
}
@media screen and (max-width: 480px) {
  .tel-btn::before {
    width: 23px;
    height: 16px;
  }
}
.tel-btn:hover {
  background: #CB2D63;
  color: #fff;
}/*# sourceMappingURL=drawer.css.map */