/* header */

.nav-mwu {
  display: none;
}

.header-mwu {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
  background: var(--bg-light);
}

.header-container-mwu {
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 12px 24px;
  width: 100%;
  position: relative;
  height: 48px;
  width: 375px;
}

.menu-btn-mwu {
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 100px;
  border: 1px solid var(--accent-1);
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.menu-btn-mwu:hover {
  transform: scale(1.1);
}

.menu-svg-mwu {
  width: 14px;
  height: 11px;
  stroke: var(--font-base);
}

.nav-list-mwu {
  display: flex;
  align-items: center;
  gap: 93px;
  width: 100%;
}

.nav-item-mwu {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-mwu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 8px;

  font-weight: 200;
  font-size: 10px;
  transition: all 0.3s ease-in-out;
}

.nav-item-mwu::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--accent-1);
  transition: all 0.3s ease-in-out;
}

.item-active-mwu::after {
  width: 100%;
}

.link-active-mwu {
  font-weight: 500;
}

.nav-link-mwu:hover {
  font-weight: 500;
}

@media screen and (min-width: 1440px) {
  .header-mwu {
    width: 100%;
    height: 46px;
  }

  .header-container-mwu {
    margin: 0 auto;
    justify-content: center;
    padding: 8px 80px;
    width: 1440px;
  }

  .nav-mwu {
    display: block;
  }

  .menu-btn-mwu {
    display: none;
  }
}

/* modal  */

.modal-mwu {
  position: fixed;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  padding: 20px 42px 80px;
  border-radius: 0 0 40px 40px;
  background: var(--bg-light);
  width: 375px;
}

.nav-modal-mwu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
}

.menu-nav-list-mwu {
  flex-direction: column;
  gap: 20px;
  width: 240px;
}

.menu-nav-item-mwu {
  padding: 0;
  width: 100%;
}

.menu-nav-link-mwu {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
}

.menu-footer-list-mwu {
  display: flex;
  gap: 16px;

  li {
    a {
      font-weight: 300;
      font-size: 12px;
      text-decoration: underline;
      text-decoration-skip-ink: none;
      text-align: center;
    }
  }
}

/* popup */

.popup-mwu {
  position: fixed;
  z-index: 11;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 36px;
  background: var(--accent-2);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.popup-text-mwu {
  font-weight: 300;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
}

.popup-btn-wrap-mwu {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 20px;
}

.popup-btn-mwu {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 39px;

  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.popup-btn-decline-mwu {
  border-bottom: 1px solid var(--font-base);
  font-weight: 200;
}

.popup-btn-accept-mwu {
  border-radius: 12px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: var(--bg-light);
  font-weight: 500;
}

.popup-btn-mwu:hover {
  transform: scaleY(1.2);
}

@media screen and (min-width: 1440px) {
  .popup-mwu {
    left: 50%;
    transform: translate(-50%);
    padding: 40px;
    width: 1440px;
  }

  .popup-btn-wrap-mwu {
    gap: 80px;
  }
}

/* hero  */
.hero-container-mwu {
  padding: 168px 16px 120px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-title-mwu {
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 40px;
  text-align: center;
}

.hero-text-mwu {
  line-height: 150%;
  text-align: center;

  margin-top: 104px;
  margin-bottom: 203px;
}

.hero-link-mwu {
  box-shadow: 1px 2px 2px 0 rgba(174, 198, 197, 0.5);
  background: var(--bg-light);
  border: 1px solid var(--accent-2);
  border-radius: 8px;

  width: 280px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.3s ease;
}

.hero-link-mwu:hover {
  font-weight: 600;
}

.hero-link-mwu:active {
  font-weight: 400;
}

.hero-pic-mwu {
  background: url(/images/hero-pic.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  width: 100%;
  height: 764px;

  position: absolute;
  top: 48px;
  left: 0;
  z-index: -1;
}

@media screen and (min-width: 1440px) {
  .hero-container-mwu {
    padding: 166px 185px 379px;
  }

  .hero-title-mwu {
    font-size: 64px;
  }

  .hero-text-mwu {
    margin-top: 80px;
    margin-bottom: 80px;
  }

  .hero-pic-mwu {
    border-radius: 24px;
    width: 1280px;
    height: 753px;

    top: 86px;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* tapestry */

.tapestry-container-mwu {
  height: 526px;
}

.tapestry-basis-mwu {
  background: url(/images/tapestry/tapestry-basis.png);
  background-position: center;
  background-size: cover;

  width: 332px;
  height: 361px;

  margin: 0 auto;
}

.tapestry-el-list-mwu {
  width: 100%;
  height: 100%;
  position: relative;
}

.tapestry-el-item-mwu {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 100%;

  div {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.8s ease-in-out;
  }

  .el-default-mwu {
    opacity: 1;
  }

  .el-hover-mwu {
    opacity: 0;
  }
}

.tapestry-el-item-mwu:hover .el-default-mwu {
  opacity: 0;
}

.tapestry-el-item-mwu:hover .el-hover-mwu {
  opacity: 1;
}

.tapestry-el-item-mwu:nth-child(1) {
  top: 0;
  right: 120px;

  .el-default-mwu {
    background: url(/images/tapestry/1.png);
    background-position: center;
    background-size: cover;
  }

  .el-hover-mwu {
    background: url(/images/tapestry/1-hover.png);
    background-position: center;
    background-size: cover;
  }
}

.tapestry-el-item-mwu:nth-child(2) {
  top: 75px;
  right: 0;

  .el-default-mwu {
    background: url(/images/tapestry/2.png);
    background-position: center;
    background-size: cover;
  }

  .el-hover-mwu {
    background: url(/images/tapestry/2-hover.png);
    background-position: center;
    background-size: cover;
  }
}

.tapestry-el-item-mwu:nth-child(3) {
  bottom: 73px;
  right: 5px;

  .el-default-mwu {
    background: url(/images/tapestry/3.png);
    background-position: center;
    background-size: cover;
  }

  .el-hover-mwu {
    background: url(/images/tapestry/3-hover.png);
    background-position: center;
    background-size: cover;
  }
}

.tapestry-el-item-mwu:nth-child(4) {
  bottom: 0;
  right: 120px;

  .el-default-mwu {
    background: url(/images/tapestry/4.png);
    background-position: center;
    background-size: cover;
  }

  .el-hover-mwu {
    background: url(/images/tapestry/4-hover.png);
    background-position: center;
    background-size: cover;
  }
}

.tapestry-el-item-mwu:nth-child(5) {
  bottom: 73px;
  left: 0;

  .el-default-mwu {
    background: url(/images/tapestry/5.png);
    background-position: center;
    background-size: cover;
  }

  .el-hover-mwu {
    background: url(/images/tapestry/5-hover.png);
    background-position: center;
    background-size: cover;
  }
}

.tapestry-el-item-mwu:nth-child(6) {
  top: 75px;
  left: 0;

  .el-default-mwu {
    background: url(/images/tapestry/6.png);
    background-position: center;
    background-size: cover;
  }

  .el-hover-mwu {
    background: url(/images/tapestry/6-hover.png);
    background-position: center;
    background-size: cover;
  }
}

.tapestry-descr-mwu {
  width: 185px;
  height: 109px;

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%);

  z-index: -1;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;

  h4 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 32px;
    line-height: 150%;
    text-align: center;
    margin-bottom: 8px;
  }

  p {
    font-size: 12px;
    line-height: 150%;
    text-align: center;
  }
}

.tapestry-descr-mwu.visible {
  opacity: 1;
}

@media screen and (min-width: 1440px) {
  .tapestry-container-mwu {
    height: 967px;
  }

  .tapestry-basis-mwu {
    width: 654px;
    height: 722px;
  }

  .tapestry-el-item-mwu {
    width: 140px;
    height: 140px;
  }

  .tapestry-el-item-mwu:nth-child(1) {
    right: 259px;
  }

  .tapestry-el-item-mwu:nth-child(2) {
    top: 148px;
  }

  .tapestry-el-item-mwu:nth-child(3) {
    bottom: 140px;
    right: 15px;
  }

  .tapestry-el-item-mwu:nth-child(4) {
    right: 259px;
  }

  .tapestry-el-item-mwu:nth-child(5) {
    bottom: 140px;
  }

  .tapestry-el-item-mwu:nth-child(6) {
    top: 148px;
  }

  .tapestry-descr-mwu {
    width: 100%;
    height: 112px;

    h4 {
      font-size: 48px;
      margin-bottom: 16px;
    }

    p {
      font-weight: 400;
      font-size: 16px;
    }
  }

  .tapestry-descr-mwu.visible {
    opacity: 1;
  }
}

/* seasons */

.seasons-title-mwu {
  font-weight: 300;

  span {
    font-weight: 600;
  }
}

.seasons-list-mwu {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.seasons-item-mwu {
  display: flex;
  flex-direction: column;
  align-items: center;

  img {
    width: 280px;
    height: 280px;
    margin-bottom: 8px;
  }

  h4 {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
  }

  p {
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    text-align: center;
  }
}

.seasons-text-mwu {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  margin-top: 40px;
}

@media screen and (min-width: 1440px) {
  .seasons-title-mwu {
    margin-bottom: 48px;
  }

  .seasons-list-mwu {
    flex-direction: row;
    gap: 53px;
  }

  .seasons-item-mwu {
    img {
      margin-bottom: 16px;
    }

    h4 {
      margin-bottom: 8px;
    }
  }

  .seasons-text-mwu {
    margin-top: 64px;
  }
}

/* whispers */

.whispers-list-mwu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.whispers-item-mwu {
  background: url(/images/whispers-item-pic.png);
  background-position: center;
  background-size: cover;

  padding: 24px;
  width: 320px;
  height: 131px;

  display: flex;
  flex-direction: column;
  gap: 8px;

  p {
    font-weight: 200;
    font-size: 18px;
    line-height: 150%;
  }

  h4 {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-align: right;
  }
}

@media screen and (min-width: 1440px) {
  .whispers-list-mwu {
    flex-direction: row;
    justify-content: center;
    gap: 80px;
  }
}

/* garden */

.garden-container-mwu {
  padding-bottom: 369px;
}

.garden-text-mwu {
  font-weight: 200;
  font-size: 13px;
  line-height: 150%;
  text-align: center;
}

.garden-pic-mwu {
  background: url(/images/garden-pic.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  width: 375px;
  height: 369px;

  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (min-width: 1440px) {
  .garden-container-mwu {
    padding-bottom: 572px;
  }

  .garden-text-mwu {
    font-size: 14px;
    width: 391px;
    margin: 0 auto;
  }

  .garden-pic-mwu {
    width: 1440px;
    height: 787px;
    z-index: -1;
  }
}

/* ritual */

.ritual-circle-mwu {
  background: url(/images/ritual-pic.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  width: 353px;
  height: 358px;
  padding-top: 123px;
  margin: 0 auto 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;

  p {
    font-size: 12px;
    line-height: 150%;
    text-align: center;
  }

  h4 {
    font-weight: 200;
    font-size: 24px;
    line-height: 150%;
    text-align: center;
    width: 257px;
  }
}

.ritual-text-mwu {
  font-weight: 300;
  font-size: 12px;
  line-height: 150%;
  text-align: center;
}

.ritual-list-mwu {
  display: flex;
  flex-direction: column;
  gap: 24px;

  width: 184px;
  margin: 24px auto;

  li {
    p {
      position: relative;
      font-weight: 300;
      font-size: 12px;
      line-height: 150%;
      padding-left: 12px;
      width: fit-content;
    }
  }
}

.ritual-list-text-mwu::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--accent-2);

  position: absolute;
  top: 5px;
  left: 0;
}

.ritual-list-text-mwu::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--accent-2);

  position: absolute;
  bottom: 0;
  left: 0;
}

.ritual-flower-left-mwu {
  background: url(/images/ritual-flower-left.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: none;
}

.ritual-flower-right-mwu {
  background: url(/images/ritual-flower-right.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: none;
}

@media screen and (min-width: 1440px) {
  .ritual-circle-mwu {
    margin-bottom: 40px;
  }

  .ritual-text-mwu {
    br {
      display: none;
    }
  }

  .ritual-list-mwu {
    flex-direction: row;
    width: 561px;
  }

  .ritual-flower-left-mwu {
    display: block;
    width: 254px;
    height: 343px;
    position: absolute;
    left: 80px;
    bottom: 0;
  }

  .ritual-flower-right-mwu {
    display: block;
    width: 285px;
    height: 343px;
    position: absolute;
    right: 80px;
    bottom: 0;
  }
}

/* footer */

.footer-heading-wrap-mwu {
  margin-bottom: 40px;
}

.footer-title-mwu {
  line-height: 130%;
  margin-bottom: 32px;
}

.footer-contact-mwu {
  display: flex;
  gap: 16px;
  width: 174px;
  margin: 0 auto 16px;

  svg {
    width: 20px;
    height: 20px;
  }

  p {
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
  }
}

.footer-content-mwu {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-links-list-mwu {
  display: flex;
  gap: 16px;
}

.footer-link-mwu {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

.footer-text-mwu {
  font-weight: 300;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
}

@media screen and (min-width: 1440px) {
  .footer-heading-wrap-mwu {
    margin-bottom: 64px;
  }

  .footer-title-mwu {
    line-height: 150%;
    margin-bottom: 40px;
  }

  .footer-content-mwu {
    flex-direction: row-reverse;
    justify-content: start;
    gap: 250px;
  }

  .footer-links-list-mwu {
    position: absolute;
    bottom: 80px;
    right: 80px;
  }
}

/* ********************* */

.hidden-mwu {
  display: none;
}

.click-mwu {
  transform: rotate(45deg);
  color: var(--accent-1);
}
