/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  z-index: 9;
  background: #405005;
}

.navigation {
  display: none;
}

.open-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.close-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.svg {
  fill: #fff;
  stroke: #fff;
}

.navigation-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.navigation-item {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  color: #fff;
  transition: color 0.3s ease;
}

.navigation-item:hover {
}

.modal {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 8;
  padding: 80px;
  padding-right: 20px;
  padding-top: 117px;
  background: #9dc902;
  transform: translateY(-150%) translateX(-50%);
  transition: transform 1.5s ease;
  z-index: 8;
}

.modal-navigation-list {
  flex-direction: column;
  align-items: flex-start;
}

.modal-click {
  transform: translateY(0) translateX(-50%);
}

@media screen and (min-width: 1437px) {
  .header {
    padding: 24px 0;
  }

  .navigation {
    display: block;
  }

  .navigation-item {
    font-size: 14px;
  }

  .open-modal {
    display: none;
  }
}

/* home */

#home {
  padding-top: 112px;
  background-image: url(../images/home.jpg);
  background-position: center;
  background-size: cover;
}

.home-logo {
  margin: 0 auto;
  margin-bottom: 134px;
}

.home-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  text-align: center;
  color: #fff;

  border-radius: 5px;
  padding: 24px 16px;
  backdrop-filter: blur(20px);
  background: rgba(255, 0, 0, 0.76);
}

.home-link {
  display: block;
  width: 241px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 32px;
  transition: transform 0.3s ease;
}

.home-link:hover {
}

.hero-image {
  position: absolute;
  bottom: -81px;
  left: 50%;
  width: 465px;
  max-width: max-content;
  transform: translateX(-45%);
}

@media screen and (min-width: 1437px) {
  #home {
    padding-top: 374px;
    padding-bottom: 0;
    background-image: url(../images/main.jpg);
    position: relative;
    background-position: center;
  }

  .home-logo {
    display: none;
  }

  .home-wrapper {
    max-width: 402px;
    margin: 0 auto;
  }

  .home-text {
    font-size: 20px;
    text-align: start;
    padding: 36px;
    padding-bottom: 63px;
    border-radius: 15px;
  }

  .home-link {
    width: auto;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -25px;
  }
}

/* about */

.about-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  text-align: justify;
  color: #405005;
}

@media screen and (min-width: 1437px) {
  .about-text {
    text-align: center;
  }
}

/* how */

.how-container {
  padding-left: 0;
  padding-right: 0;
}

.how-item {
  padding: 18px 29px;
  width: 264px;
  max-width: 100%;
  min-height: 294px;
  background: #9dc902;

  img {
    margin: 0 auto;
    margin-bottom: 19px;
  }
  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin-bottom: 19px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 120%;
    text-align: center;
    color: #fff;
  }
}

.how-text {
  margin-top: 59px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #fff;
}

/* features */

.features-list {
  display: flex;
  flex-direction: column;
  gap: 36px;

  li {
    border-radius: 15px;
    padding: 24px 36px;
    background: #000;
  }

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    text-transform: uppercase;
    color: #06e775;
    margin-bottom: 16px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #9dc902;
  }
}

@media screen and (min-width: 1437px) {
  .features-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;

    li {
      width: calc((100% - 36px) / 2);
    }
  }
}

/* tiles */

.tiles-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  text-align: justify;
  color: #edffd6;
}

.tiles-list {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 112px;

  li {
    padding: 0 24px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 18px;
    line-height: 140%;
    text-transform: uppercase;
    text-align: center;
    color: #06e775;
    margin-bottom: 36px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: #fff;
  }
}

.power-list {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 112px;

  p {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 80px;
    line-height: 84%;
    color: rgba(255, 0, 0, 0.76);
    margin-bottom: 20px;
    text-align: center;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
  }
}

.tiles-link {
  margin-top: 112px;
}

@media screen and (min-width: 1437px) {
  .tiles-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 112px;

    li {
      width: calc((100% - 112px) / 2);
      padding: 0 96px;
    }
  }

  .power-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: center;
  }

  .tiles-link {
    position: static;
    transform: translateX(0);
    margin: 0 auto;
    margin-top: 112px;
    width: 242px;
  }
}

/* bonuses */

.bonuses-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  text-transform: uppercase;
  text-align: center;
  color: #405005;
  margin-bottom: 24px;
}

.bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 24px;

  li {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 16px;
    line-height: 140%;
    text-transform: uppercase;
    color: rgba(255, 0, 0, 0.76);
    margin-bottom: 4px;
  }

  span {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #405005;
  }
}

@media screen and (min-width: 1437px) {
  .bonuses-list {
    width: 630px;
    margin: 0 auto;
  }
}

/* explore */

.explore-img {
  width: 365px;
  margin: 0 auto;
  margin-bottom: 41px;
}

.explore-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 24px;
}

.explore-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 110%;
  color: #000;
  margin-bottom: 24px;
}

.explore-list {
  display: flex;
  flex-direction: column;
  gap: 26px;

  li {
    border-radius: 20px;
    background: #405005;
    padding: 26px 40px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 20px;
    line-height: 110%;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 11px;
  }

  span {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 110%;
    color: #fff500;
  }
}

@media screen and (min-width: 1437px) {
  .explore-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 41px;
  }

  .explore-img {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }

  .explore-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 26px 38px;

    li {
      width: calc((100% - 38px) / 2);
    }
  }
}

/* reviews */

.reviews-item {
  border-radius: 15px;
  padding: 24px 36px;
  background: #000;
  width: 337px;
  max-width: 100%;
  min-height: 360px;

  p {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    text-transform: uppercase;
    color: #06e775;
    margin-bottom: 16px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 18px;
    line-height: 140%;
    color: #9dc902;
  }
}

.reviews-list {
  display: none;
}

@media screen and (min-width: 1437px) {
  .reviews-swiper {
    display: none;
  }

  .reviews-list {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    align-items: center;
    justify-content: center;
  }

  .reviews-item {
    width: calc((100% - 72px) / 3);
    padding: 0;
    position: relative;
    overflow: hidden;
    background: none;
    cursor: pointer;

    img {
      width: 100%;
    }

    div {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 24px 36px;
      background-color: #000;
      transform: translateY(100%);
      transition-property: transform;
      transition-duration: 750ms;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }
  }

  .reviews-item:hover div {
    transform: translateY(0);
  }
}

/* gallery */

.gallery-container {
  padding-left: 0;
  padding-right: 0;
}

.gallery-item {
  width: 300px;
}

@media screen and (min-width: 1437px) {
  .gallery-item {
    width: 360px;
  }
}

/* contact */

.contact-container {
  padding: 39px 14px;
}

.contact-text {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 8px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
}

@media screen and (min-width: 1437px) {
  .contact-container {
    padding: 39px;
  }

  .contact-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .contact-link {
    position: static;
    margin: 0;
  }
}

/* faq */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  width: 100%;
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transform: rotate(180deg);
  transition: transform 0.3s ease;

  svg {
    fill: none;
    stroke: #000;
  }
}

.faq-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid #000;
}

.faq-title {
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 24px;
  color: #405005;
}

.faq-text {
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 16px;
  color: #121a10;
  padding-top: 8px;
}

@media screen and (min-width: 1437px) {
  .faq-list {
    width: 100%;
  }
  .faq-item {
    padding: 16px 40px;
  }
}

.hidden {
  display: none;
}

.click {
  transform: rotate(0);
}

/* requirements */

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 20px;
  list-style: disc;
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 20px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 20px;
}

.requirements-img {
  margin: 0 auto;
}

@media screen and (min-width: 1437px) {
  .requirements-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .requirements-img {
    margin: 0;
  }
}

/* footer */

.footer {
  background: #000;
}

.footer-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-link {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 140%;
  text-align: center;
  color: #fff500;
}

.footer-mail {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #edffd6;
  margin-bottom: 16px;

  span {
    color: #9dc902;
  }
}

.footer-description {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  line-height: 140%;
  text-align: center;
  color: #edffd6;
}

.footer-google-link {
  display: none;
}

@media screen and (min-width: 1437px) {
  .footer-list {
    gap: 36px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .footer-container {
    position: relative;
  }

  .footer-link {
    font-size: 40px;
  }

  .footer-google-link {
    display: block;
    position: absolute;
    bottom: 0;
    margin: 0;
    left: auto;
    transform: translateX(0);
    right: 180px;
  }
}

/* cookie popup */

.popup {
  position: fixed;
  z-index: 10;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 40px;
  background: #405005;

  transition: transform 0.5s ease;
}

.popup-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #fff;
  margin-bottom: 18px;
}

.popup-btn {
  border-radius: 30px;
  padding: 9px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #06e775;
  text-transform: uppercase;
  text-decoration: underline;
  transition: color 0.3s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: rgba(255, 0, 0, 0.76);
  text-decoration: none;
  color: #fff;
}

.popup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.popup-click {
  transform: translateY(120%) translateX(-50%);
}

@media screen and (min-width: 1437px) {
  .popup-text {
    margin-bottom: 24px;
  }
  .popup-wrap {
    flex-direction: row;
    gap: 80px;
  }

  .popup-btn {
    padding: 10px 30px;
    font-size: 16px;
  }
}
