/* header */

.nav-mno {
  display: none;
}

.header-mno {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  width: 100%;
  background: var(--background);
}

.header-container-mno {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  position: relative;
  height: 48px;
}

.header-logo-mno {
  padding-top: 20px;
  width: 99px;
  height: 40px;
}

.nav-list-mno {
  display: flex;
  align-items: center;
  gap: 37px;
}

.nav-item-mno {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-mno {
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 10px;
  padding: 10px 16px;

  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  color: var(--title);
  transition: all 0.3s ease-in-out;
}

.nav-link-mno:hover {
  border: 1px solid var(--title);
  text-decoration: none;
}

.nav-link-mno:active {
  background: #538d81;
  color: var(--white-text);
}

.menu-btn-mno {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-open-mno {
  width: 48px;
  height: 48px;
}

.menu-svg-open-mno {
  width: 48px;
  height: 48px;
  fill: var(--title);
}

@media screen and (min-width: 1440px) {
  .header-mno {
    width: 100%;
    height: 66px;
  }

  .header-container-mno {
    margin: 0 auto;
    justify-content: start;
    gap: 102px;
    width: 100%;
    padding: 17px 60px 10px;
  }

  .header-logo-mno {
    padding-top: 0;
    width: 121px;
    height: 24px;
  }

  .nav-mno {
    display: block;
  }

  .menu-btn-mno {
    display: none;
  }
}

/* modal  */

.modal-mno {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-32%);
  z-index: 10;
  border-radius: 0 0 15px 15px;
  width: 266px;
  box-shadow: 0 4px 9px 0 #7baeba;
  background: #90daec;
}

.menu-nav-list-mno {
  flex-direction: column;
  padding: 0;
  gap: 16px;
  width: 110px;
}

.menu-nav-item-mno {
  padding: 10px;
  width: 100%;
}

.menu-nav-link-mno {
  justify-content: start;
  font-size: 14px;
  line-height: 150%;
  color: var(--black-text);
  text-decoration: none;
  height: fit-content;
  width: fit-content;
}

.menu-close-mno {
  width: 24px;
  height: 24px;

  position: absolute;
  top: 20px;
  right: 20px;
}

.menu-svg-close-mno {
  width: 24px;
  height: 24px;
}

/* popup */

.popup-mno {
  position: fixed;
  z-index: 11;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px 20px 0 0;
  padding: 40px 20px;
  width: 375px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: #15758e;
}

.popup-wrap-text-mno {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.popup-title-mno {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 40px;
  color: var(--white-text);
}

.popup-text-mno {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: var(--white-text);
}

.popup-btn-wrap-mno {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 24px;
}

.popup-btn-mno {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  padding: 16px 32px;
  width: 262px;
  height: 52px;

  font-family: var(--third-family);
  text-align: center;
  color: #f8f8f8;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.popup-btn-accept-mno {
  background: #9bc9ff;
}

.popup-btn-accept-mno:hover {
  border: 1px solid #326aab;
  background: #83b4ed;
}

.popup-btn-accept-mno:active {
  background: #ffb29b;
  border: none;
}

.popup-btn-decline-mno {
  background: #638cbc;
}

.popup-btn-decline-mno:hover {
  background: #3a669a;
}

.popup-btn-decline-mno:active {
  background: #16365c;
}

@media screen and (min-width: 1440px) {
  .popup-mno {
    padding: 40px 60px;
    width: 1440px;
    flex-direction: row;
    justify-content: space-between;
  }

  .popup-wrap-text-mno {
    flex-shrink: 0;
  }

  .popup-title-mno {
    font-size: 64px;
  }

  .popup-text-mno {
    font-size: 24px;
  }

  .popup-btn-wrap-mno {
    gap: 32px;
    width: fit-content;
  }

  .popup-btn-mno {
    width: 303px;
    height: 60px;
    font-size: 24px;
    padding: 0;
  }
}

/* hero  */

.hero-container-mno {
  padding-top: 80px;
  padding-bottom: 62px;
}

.hero-wrap-mno {
  display: flex;
  flex-direction: column;
  align-items: center;

  h1 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 40px;
    text-align: center;
    color: var(--title);
    margin-bottom: 16px;
  }

  p {
    font-size: 14px;
    line-height: 150%;
    text-align: center;
  }
}

.hero-pic-mno {
  background: url(images/hero-pic.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;

  width: 334px;
  height: 298px;

  margin-top: 24px;
  margin-bottom: 32px;
}

.hero-links-wrap-mno {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-link-mno {
  padding: 10px 16px;
  width: 220px;
  height: 40px;

  font-family: var(--third-family);
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: var(--white-text);
}

@media screen and (min-width: 1440px) {
  .hero-container-mno {
    padding-top: 215px;
    padding-bottom: 109px;
  }

  .hero-wrap-mno {
    width: 660px;

    h1 {
      font-size: 64px;
      margin-bottom: 32px;
    }

    p {
      font-size: 32px;
    }
  }

  .hero-pic-mno {
    width: 679px;
    height: 603px;

    margin: 0;
    position: absolute;
    top: 107px;
    right: 31px;
  }

  .hero-links-wrap-mno {
    flex-direction: row;
    gap: 10px;
    margin-top: 48px;
  }

  .hero-link-mno {
    padding: 16px;
    width: 320px;
    height: 60px;

    font-family: var(--second-family);
    font-size: 24px;
    color: #fff;
  }
}

/* about */

.about-list-mno {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-wrap: wrap;
}

.about-item-mno {
  border: 1px solid #236f83;
  border-radius: 20px;
  padding: 16px 10px;
  width: 335px;
  height: 102px;
  background: #9ed9e8;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  h3 {
    font-weight: 700;
    font-size: 12px;
    line-height: 150%;
    text-align: center;
    color: var(--title);
  }

  p {
    font-size: 12px;
    line-height: 150%;
    text-align: center;
  }
}

.about-item-mno:nth-child(2) {
  background: url(images/about-pic.png);
  background-position: center;
  background-size: cover;
}

@media screen and (min-width: 1440px) {
  .about-list-mno {
    flex-direction: row;
    gap: 32px 19.5px;
  }

  .about-item-mno {
    width: 427px;
    height: 156px;

    h3 {
      font-size: 24px;
    }

    p {
      font-size: 24px;
    }
  }

  .about-item-mno:nth-child(2) {
    background: url(images/about-pic.png);
    background-position: center;
    background-size: cover;
  }
}

/* newsletter */

.newsletter-text-mno {
  font-size: 14px;
  line-height: 150%;
}

.newsletter-list-mno {
  display: flex;
  flex-direction: column;
  gap: 24px;

  margin-top: 24px;
  margin-bottom: 32px;
}

.newsletter-item-mno {
  display: flex;
  gap: 16px;
  align-items: center;

  svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  p {
    font-size: 14px;
    line-height: 150%;
  }
}

.newsletter-pic-mno {
  background: url(images/newsletter-mob-pic.png);
  background-position: center;
  background-size: cover;

  width: 336px;
  height: 338px;

  box-shadow: 2px 4px 13px 2px rgba(0, 0, 0, 0.25);
  border-radius: 20px;
  margin-top: 20px;
}

@media screen and (min-width: 1440px) {
  .newsletter-container-mno {
    padding-bottom: 6px;
  }

  .newsletter-wrap-mno {
    width: 650px;
  }

  .newsletter-text-mno {
    font-size: 24px;
  }

  .newsletter-item-mno {
    svg {
      width: 24px;
      height: 24px;
    }

    p {
      font-size: 24px;
    }
  }

  .newsletter-pic-mno {
    background: url(images/newsletter-desk-pic.png);
    background-position: center;
    background-size: cover;

    width: 650px;
    height: 524px;

    position: absolute;
    top: 212px;
    right: 60px;
    margin-top: 0;
  }
}

/* archives */

.archives-text-mno {
  font-size: 14px;
  line-height: 150%;
}

.archives-heading-mno {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  margin-top: 24px;
}

.archives-list-mno {
  display: flex;
  flex-direction: column;
  gap: 24px;

  margin-top: 16px;
  margin-bottom: 32px;
}

.archives-item-mno {
  display: flex;
  gap: 16px;

  svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  p {
    font-size: 14px;
    line-height: 150%;
  }
}

.archives-pic-mno {
  background: url(images/archives-mob-pic.png);
  background-position: center;
  background-size: cover;

  width: 336px;
  height: 296px;

  box-shadow: 2px 4px 13px 2px rgba(24, 104, 125, 0.25);
  border-radius: 20px;
  margin-top: 20px;
}

@media screen and (min-width: 1440px) {
  .archives-wrap-mno {
    width: 100%;
    padding-left: 668px;
  }

  .archives-text-mno {
    font-size: 24px;
  }

  .archives-heading-mno {
    font-size: 24px;
    margin-top: 32px;
  }

  .archives-list-mno {
    margin-top: 24px;
  }

  .archives-item-mno {
    gap: 24px;

    svg {
      width: 32px;
      height: 32px;
    }

    p {
      font-size: 24px;
    }
  }

  .archives-pic-mno {
    background: url(images/archives-desk-pic.png);
    background-position: center;
    background-size: cover;

    width: 650px;
    height: 568px;

    position: absolute;
    top: 212px;
    left: 60px;
    margin-top: 0;
  }
}

/* interviews */

.interviews-text-mno {
  font-size: 14px;
  line-height: 150%;
}

.interviews-heading-mno {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  margin-top: 24px;
}

.interviews-list-mno {
  display: flex;
  flex-direction: column;
  gap: 16px;

  margin-top: 16px;
  margin-bottom: 24px;
}

.interviews-item-mno {
  display: flex;
  align-items: center;
  gap: 16px;

  svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  p {
    font-size: 14px;
    line-height: 150%;
  }
}

.interviews-bold-text-mno {
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 24px;
}

.interviews-pic-mno {
  background: url(images/interviews-mob-pic.png);
  background-position: center;
  background-size: cover;

  width: 335px;
  height: 302px;

  box-shadow: 2px 4px 13px 2px rgba(24, 104, 125, 0.25);
  border-radius: 20px;
  margin-top: 20px;
}

@media screen and (min-width: 1440px) {
  .interviews-wrap-mno {
    width: 650px;
  }

  .interviews-text-mno {
    font-size: 24px;
  }

  .interviews-heading-mno {
    font-size: 24px;
    margin-top: 32px;
  }

  .interviews-list-mno {
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 32px;
  }

  .interviews-item-mno {
    gap: 24px;

    svg {
      width: 32px;
      height: 32px;
    }

    p {
      font-size: 24px;
    }
  }

  .interviews-bold-text-mno {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .interviews-pic-mno {
    background: url(images/interviews-desk-pic.png);
    background-position: center;
    background-size: cover;

    width: 650px;
    height: 672px;

    position: absolute;
    top: 212px;
    right: 60px;
    margin-top: 0;
  }
}

/* readers */

.readers-list-mno {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.readers-item-mno {
  background: linear-gradient(270deg, #8ce9ff 0%, #005d73 100%);
  border: 2px solid #1e7a90;
  border-radius: 20px;
  padding: 20px 10px;
  width: 335px;
  height: 370px;

  div {
    display: flex;
    justify-content: space-between;
    width: 100%;

    img {
      width: 100px;
      height: 100px;
    }

    svg {
      width: 100px;
      height: 100px;
      fill: #271f42;
      opacity: 0.5;
    }
  }

  h3 {
    font-weight: 700;
    font-size: 16px;

    margin-top: 32px;
    margin-bottom: 16px;
  }

  p {
    font-size: 14px;
    line-height: 150%;
  }
}

@media screen and (min-width: 1440px) {
  .readers-list-mno {
    flex-direction: row;
  }

  .readers-item-mno {
    width: 315px;
    height: 464px;

    h3 {
      font-size: 24px;
    }

    p {
      font-size: 16px;
    }
  }
}

/* contact */

.contact-text-wrap-mno {
  border-radius: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.3);
}

.contact-text-mno {
  font-size: 14px;
  line-height: 150%;
  margin-bottom: 24px;
}

.contact-list-mno {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item-mno {
  display: flex;
  gap: 8px;

  h3 {
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
  }

  p {
    font-size: 14px;
    line-height: 150%;
  }
}

.contact-item-mno:nth-child(3) {
  img {
    width: 20px;
    height: 20px;
  }

  a {
    font-size: 14px;
    line-height: 150%;
    text-decoration: underline;
    text-decoration-skip-ink: none;
  }
}

.contact-item-mno:nth-child(4) {
  flex-direction: column;
  gap: 16px;
}

.contact-pic-mno {
  background: url(images/contact-pic.png);
  background-position: center;
  background-size: cover;

  width: 334px;
  height: 251px;
}

@media screen and (min-width: 1440px) {
  .contact-container-mno {
    padding-bottom: 96px;
  }

  .contact-title-mno {
    margin-bottom: 133px;
  }

  .contact-text-wrap-mno {
    border-radius: 40px;
    width: 650px;
    height: 496px;
  }

  .contact-text-mno {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .contact-list-mno {
    gap: 24px;
  }

  .contact-item-mno {
    gap: 16px;

    h3 {
      font-size: 24px;
    }

    p {
      font-size: 24px;
    }
  }

  .contact-item-mno:nth-child(3) {
    img {
      width: 27px;
      height: 27px;
    }

    a {
      font-size: 24px;
    }
  }

  .contact-pic-mno {
    background: url(images/contact-pic.png);
    background-position: center;
    background-size: cover;

    width: 758px;
    height: 569px;

    position: absolute;
    top: 212px;
    right: 60px;
  }
}

/* footer */

#footer {
  background: #15758e;
  color: var(--white-text);
}

.footer-container-mno {
  width: 375px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-links-list-mno {
  display: flex;
}

.footer-links-item-mno {
  position: relative;
}

.footer-links-item-mno:nth-child(2)::before,
.footer-links-item-mno:nth-child(3)::before {
  content: "";
  background: var(--white-text);
  height: 16px;
  width: 1px;
  position: absolute;
  top: 4px;
  left: 0;
}

.footer-link-mno {
  padding: 10px;
  font-size: 12px;
}

.footer-text-mno {
  font-size: 12px;
  text-align: center;
}

@media screen and (min-width: 1440px) {
  .footer-container-mno {
    width: 1440px;
    padding: 40px;
  }

  .footer-links-item-mno:nth-child(2)::before,
  .footer-links-item-mno:nth-child(3)::before {
    top: 2px;
  }

  .footer-link-mno {
    font-size: 16px;
  }

  .footer-text-mno {
    font-size: 16px;
  }
}

/* ********************* */

.hidden-mno {
  display: none;
}
