/* header */

.nav-rnp {
  display: none;
}

.header-rnp {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
  background: #fff0c6;
  width: 100%;
}

.header-container-rnp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  position: relative;
  height: 77px;
  width: 375px;
}

.header-logo-rnp {
  width: 142px;
  height: 61px;
}

.menu-btn-rnp {
  width: 42px;
  height: 42px;

  svg {
    width: 32px;
    height: 24px;
    fill: #ff5520;
  }
}

.menu-btn-rnp {
  transition: all 0.3s ease-in-out;
}

.menu-btn-rnp:hover {
  transform: scale(1.1);
}

.nav-list-rnp {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item-rnp {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.nav-link-rnp {
  position: relative;

  line-height: 150%;
  color: var(--color-orange-47);
  transition: all 0.3s ease-in-out;
}

.nav-item-rnp::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--color-orange-47);

  transition: all 0.3s ease-in-out;
}

.item-active-rnp::after {
  width: 100%;
}

.header-gesk-bottom-rnp {
  display: none;
}

@media screen and (min-width: 1440px) {
  .header-rnp {
    background: var(--color-grey-92-700);
  }

  .header-container-rnp {
    padding: 19.5px 80px;
    height: 100px;
    width: 1440px;
  }

  .nav-rnp {
    display: block;
  }

  .menu-btn-rnp {
    display: none;
  }

  .header-gesk-bottom-rnp {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(
      180deg,
      #ff5520 33%,
      #f9f3e6 33%,
      #f9f3e6 66%,
      #ff5520 66%
    );
  }
}

/* modal  */

.modal-rnp {
  position: fixed;
  top: 77px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  padding: 37px 120px;
  border-radius: 0 0 20px 20px;
  width: 375px;
  background: #ff5520;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.menu-close-rnp {
  svg {
    width: 26px;
    height: 26px;
  }
}

.menu-nav-list-rnp {
  flex-direction: column;
  gap: 16px;
}

.menu-nav-link-rnp {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 136px;
  height: 40px;

  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
}

.menu-nav-item-rnp::after {
  background: var(--white);
}

.menu-nav-link-rnp:hover {
  transform: scale(1.1);
}

/* popup */

.popup-rnp {
  position: fixed;
  z-index: 11;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 40px 16px 30px;
  width: 375px;
  height: 305px;
  background: #ff5520;
  display: none;
  flex-direction: column;
  gap: 35px;
}

.popup-text-rnp {
  text-align: center;
  color: var(--white);
}

.popup-btn-wrap-rnp {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popup-btn-rnp {
  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  width: 343px;
  height: 56px;
  font-weight: 500;
  text-transform: uppercase;

  transition: all 0.3s ease;
}

.popup-btn-accept-rnp {
  color: #ff5520;
  background: var(--white);
}

.popup-btn-decline-rnp {
  border: 3px solid var(--white);
  color: var(--white);
}

.popup-btn-rnp:hover {
  transform: scale(1.05);
}

@media screen and (min-width: 1440px) {
  .popup-rnp {
    padding: 40px 16px 21px;
    width: 1440px;
    height: 179px;
    gap: 32px;
    align-items: center;
  }

  .popup-text-rnp {
    font-size: 20px;
  }

  .popup-btn-wrap-rnp {
    flex-direction: row;
    gap: 24px;
  }

  .popup-btn-rnp {
    width: 302px;
  }
}

/* about  */

.about-bg-rnp {
  background: url(/images/hero-bg.png);
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: calc(100% - 77px);
  position: absolute;
  top: 77px;
  left: 0;
  z-index: -1;
}

.about-container-rnp {
  display: flex;
  flex-direction: column;
  padding: 121px 16px 412px;
}

.about-title-rnp {
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  color: #ff5520;
  margin-bottom: 16px;
}

.about-subtitle-rnp {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 12px;
}

.about-text-rnp {
  font-weight: 500;
  line-height: 120%;
}

@media screen and (min-width: 1440px) {
  .about-bg-rnp {
    height: calc(100% - 100px);
    top: 100px;
  }

  .about-container-rnp {
    padding: 150px 406px 630px;
  }

  .about-title-rnp {
    font-size: 42px;
    line-height: 119%;
    text-align: center;
    color: #7a4d00;
    margin-bottom: 32px;
  }

  .about-subtitle-rnp {
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    margin-bottom: 18px;
  }

  .about-text-rnp {
    font-weight: 400;
    font-size: 18px;
    text-align: center;
  }
}

/* how */

#how {
  background: #ff5520;
}

.how-container-rnp {
  padding-bottom: 131px;
}

.how-list-rnp {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 15px;
}

.how-item-rnp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 164px;
  height: 200px;

  img {
    width: 100px;
    height: 95px;
  }

  div {
    display: flex;
    gap: 4px;

    h3 {
      font-weight: 600;
      font-size: 18px;
      line-height: 120%;
      color: var(--white);
    }

    p {
      line-height: 120%;
      color: var(--white);

      span {
        font-weight: 600;
        font-size: 18px;
      }
    }
  }
}

.how-item-rnp:nth-child(3) {
  img {
    width: 95px;
  }
}

.how-dots-rnp {
  background: url(/images/dotted-line-mob.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 47px;
  width: 374px;
}

@media screen and (min-width: 1440px) {
  .how-container-rnp {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 77px;
  }

  .how-list-rnp {
    gap: 62px;
  }

  .how-item-rnp {
    width: 176px;
    height: 286px;

    img {
      width: 143px;
      height: 143px;
    }

    div {
      h3 {
        font-size: 20px;
        line-height: 86%;
        color: var(--white);
      }

      p {
        font-weight: 500;
        font-size: 18px;

        span {
          font-weight: 600;
          font-size: 20px;
        }
      }
    }
  }

  .how-item-rnp:nth-child(2),
  .how-item-rnp:nth-child(4) {
    img {
      width: 150px;
    }
  }

  .how-item-rnp:nth-child(3) {
    img {
      width: 144px;
    }
  }

  .how-dots-rnp {
    background: url(/images/dotted-line.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: 0;
    left: 90px;
    width: 67px;
    height: 541px;
  }
}

/* challenges */

#challenges {
  background: url(/images/challenges-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 2;
}

.challenges-title-rnp {
  line-height: 84%;
  color: var(--color-orange-47);
}

.challenges-container-rnp {
  padding-bottom: 351px;
}

.challenges-list-rnp {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.challenges-item-rnp {
  padding-left: 22px;
  position: relative;

  p {
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;

    span {
      font-weight: 600;
    }
  }
}

.challenges-item-rnp::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: var(--christine);
}

@media screen and (min-width: 1440px) {
  .challenges-title-rnp {
    line-height: 68%;
    margin-bottom: 50px;
  }

  .challenges-container-rnp {
    padding-bottom: 316px;
    padding-left: 515px;
    padding-right: 491px;
  }

  .challenges-list-rnp {
    gap: 24px;
  }

  .challenges-item-rnp {
    padding-left: 24px;

    p {
      font-size: 20px;
    }
  }

  .challenges-item-rnp::before {
    top: 6px;
    width: 12px;
    height: 12px;
  }
}

/* leaderboard */

#leaderboard {
  background: #ff5520;
}

.leaderboard-container-rnp {
  padding-bottom: 384px;
}

.leaderboard-title-rnp {
  font-weight: 700;
  margin-bottom: 38px;
}

.leaderboard-text-rnp {
  font-size: 20px;
  color: var(--white);
}

.leaderboard-pic-rnp {
  background: url(/images/leaderboard-bg.png);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 375px;
  height: 342px;
}

@media screen and (min-width: 1440px) {
  .leaderboard-container-rnp {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 292px;
  }

  .leaderboard-title-rnp {
    margin-bottom: 64px;
    position: relative;
    z-index: 2;
  }

  .leaderboard-text-rnp {
    width: 432px;
    position: relative;
    z-index: 2;
  }

  .leaderboard-pic-rnp {
    right: 51px;
    width: 975px;
    height: 549px;
  }
}

/* stories */

#stories {
  background: #ff5520;
}

.stories-title-rnp {
  font-weight: 400;
  margin-bottom: 56px;
}

.stories-item-rnp {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 343px;
  height: 206px;
  border: 3px solid #7e2307;
  border-radius: 12px;
  box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.3);
  background: var(--white);
  padding: 46px 16px;

  h3 {
    font-family: var(--second-family);
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    margin-bottom: 3px;
  }

  span {
    font-family: var(--second-family);
    font-size: 12px;
    text-align: center;
    opacity: 0.6;
    margin-bottom: 16px;
  }

  p {
    font-family: var(--second-family);
    font-size: 20px;
    text-align: center;
    opacity: 0.8;
  }
}

@media screen and (min-width: 1440px) {
  .stories-container-rnp {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 102px;
  }

  .stories-title-rnp {
    margin-bottom: 21px;
  }

  .stories-swiper-rnp {
    padding: 24px;
  }

  .stories-wrapper-rnp {
    display: flex;
    gap: 24px;
  }

  .stories-item-rnp {
    width: 334px;
    padding: 32.5px 16px;
  }
}

/* join */

.join-container-rnp {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 111px;
}

.join-title-rnp {
  font-weight: 700;
  color: #ff5520;
  margin-bottom: 33px;
}

.join-subtitle-rnp {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin-bottom: 24px;
}

.join-heading-rnp {
  display: none;
}

.join-email-rnp {
  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--white);
  border-radius: 12px;
  width: 343px;
  height: 60px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #ff5520;

  font-weight: 500;
  font-size: 24px;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-align: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.join-email-rnp:hover,
.contact-email-rnp:hover {
  transform: scale(1.1);
}

@media screen and (min-width: 1440px) {
  .join-container-rnp {
    padding-bottom: 109px;
  }

  .join-title-rnp {
    font-size: 54px;
    margin-bottom: 24px;
  }

  .join-subtitle-rnp {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .join-heading-rnp {
    display: block;
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 24px;
  }

  .join-email-rnp {
    width: 253px;
  }
}

/* contact */

.contact-container-rnp {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 46px 0 56px;
}

.contact-wrap-upper-rnp {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 56px;

  .contact-email-rnp {
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    color: #ff5520;
    margin-bottom: 21px;
    transition: all 0.3s ease;
  }

  .contact-title-rnp {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
  }

  .contact-pic-rnp {
    background: url(/images/contact-pic-mob.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
    width: 375px;
    height: 222px;
  }
}

.contact-wrap-lower-rnp {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 280px;

  img {
    width: 142px;
    height: 61px;
  }

  p {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
  }
}

@media screen and (min-width: 1440px) {
  .contact-container-rnp {
    padding: 0 0 65px;
  }

  .contact-wrap-upper-rnp {
    padding: 159px 80px 159px 752px;
    margin-bottom: 65px;

    .contact-email-rnp {
      font-size: 28px;
    }

    .contact-title-rnp {
      font-size: 26px;
      margin-bottom: 0;
    }

    .contact-pic-rnp {
      background: url(/images/contact-pic.png);
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      width: 708px;
      height: 419px;
      position: absolute;
      top: 0;
      left: 0;
    }
  }

  .contact-wrap-lower-rnp {
    flex-direction: row;
    width: calc(941px + 141px);
    padding-right: 141px;

    p {
      font-size: 26px;
    }
  }
}

/* footer */

#footer {
  background: #ff5520;
  color: var(--white);
}

.footer-container-rnp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  padding: 56px 16px 46px;
}

.footer-email-rnp {
  border: 1px solid var(--white);
  border-radius: 12px;
  padding: 10px;
  width: 343px;
  height: 47px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);

  font-weight: 700;
  font-size: 18px;
  text-align: center;
  transition: all 0.3s ease;
}

.footer-links-list-rnp {
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-links-item-rnp {
  a,
  p {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
  }
}

.footer-email-rnp:hover {
  transform: scale(1.1);
}

.footer-text-rnp {
  font-weight: 600;
  text-align: center;
}

@media screen and (min-width: 1440px) {
  .footer-container-rnp {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 33px 80px;
  }

  .footer-email-rnp {
    border: none;
    border-radius: 0;
    padding: 0;
    width: auto;
    height: auto;
    box-shadow: none;

    font-weight: 600;
  }

  .footer-text-rnp {
    width: 180px;
    font-size: 18px;
    text-align: left;
  }
}

/* ********************* */

.hidden-rnp {
  display: none;
}
