/* header */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 20px 0;
  background: var(--black);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  width: 44px;
}

.navigation {
  display: none;
}

.modal-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svg {
  stroke: white;
}

.navigation-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}

.navigation-item {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: var(--white);
  transition: color 0.3s ease;
}

.navigation-item:hover {
  color: var(--l-blue);
}

.start-item {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--black);
  border-radius: 26px;
  border: none;
  padding: 2px 24px;
  background: var(--l-blue);
  display: block;
  margin-left: 60px;
  transition: background-color 0.3s ease;
}

.start-item:hover {
  background: var(--yellow);
  color: var(--black);
}

.modal {
  position: fixed;
  top: 106px;
  left: 50%;
  padding: 32px;
  border-radius: 16px;
  background: var(--black);
  transform: translateY(-140%) translateX(-50%);
  transition: transform 1s ease;
  z-index: 8;
}

.modal-navigation-list {
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.modal-click {
  transform: translateY(0) translateX(-50%);
}

@media screen and (min-width: 1437px) {
  .header {
    padding: 10px 0;
  }

  .navigation {
    display: block;
  }

  .navigation-item {
    font-weight: 400;
    font-size: 16px;
  }

  .open-modal {
    display: none;
  }

  .start-item {
    padding: 8px 14px;
    border: 1px solid var(--l-green);
  }
}

/* home */

#home {
  padding-top: 104px;
  padding-bottom: 107px;
  background-image: url(../images/home-banner.jpg);
  background-position: center;
  background-size: cover;
}

.home-title {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 54px;
  line-height: 120%;
  color: var(--white);
  margin-bottom: 40px;
}

.home-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);
  margin-bottom: 80px;
}

.home-link {
  display: block;
  border: 1px solid var(--l-blue);
  border-radius: 26px;
  padding: 12px;
  width: 256px;
  text-align: center;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--l-blue);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.home-link:hover {
  background: var(--l-blue);
  color: var(--black);
}

.home-link-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media screen and (min-width: 1437px) {
  #home {
    padding-top: 104px;
    padding-bottom: 80px;
  }

  .home-title {
    font-size: 88px;
    margin-bottom: 40px;
  }

  .home-text {
    font-size: 18px;
    max-width: 544px;
    margin-bottom: 40px;
  }

  .home-link-wrap {
    flex-direction: row;
    gap: 32px;
    justify-content: flex-start;
  }

  .home-link {
    width: 256px;
  }
}

/* luminthara */

.luminthara-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--l-blue);
}

.luminthara-image {
  margin: 0 auto;
  margin-top: 24px;
}

@media screen and (min-width: 1437px) {
  .luminthara-container {
    display: flex;
    align-items: center;
    gap: 128px;
  }

  .luminthara-image {
    margin: 0;
    flex-shrink: 0;
  }

  .luminthara-text {
    font-size: 18px;
  }
}

/* key-features */

.key-features-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;

  li {
    border-radius: 16px;
    padding: 16px;
    width: 256px;
    height: 256px;
    background: var(--d-navy);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    color: var(--l-blue);
  }

  span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--l-gray);
  }
}

@media screen and (min-width: 768px) {
  .key-features-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (min-width: 1437px) {
  .key-features-list {
    gap: 32px;

    p {
      font-size: 20px;
    }

    span {
      font-size: 18px;
    }

    li {
      width: calc((100% - 96px) / 4);
    }
  }
}

/* love-it */

.love-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--l-gray);
}

.love-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: var(--white);
  margin-bottom: 18px;
}

.love-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.image-banner {
  width: 100%;
}

@media screen and (min-width: 1437px) {
  .love-container {
    flex-direction: row;
    align-items: flex-start;

    div {
      width: calc((100% - 32px) / 2);
    }
  }

  .love-text {
    font-size: 18px;
  }

  .love-title {
    padding-top: 28px;
    font-size: 24px;
    margin-bottom: 78px;
  }
}

/* rpg-developers */

.developers-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: var(--white);
  margin-bottom: 16px;
}

.developers-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;

  li {
    border-radius: 16px;
    padding: 16px;
    background: var(--d-navy);

    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--white);
  }

  img {
    margin-bottom: 16px;
  }
}

.developers-description {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: var(--white);
}

@media screen and (min-width: 768px) {
  .developers-list {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;

    li {
      width: calc((100% - 10px) / 2);
      font-size: 18px;
    }
  }
}

@media screen and (min-width: 1437px) {
  .developers-list {
    li {
      width: calc((100% - 40px) / 5);
    }
  }

  .developers-text {
    margin-bottom: 24px;
  }

  .developers-description {
    font-size: 20px;
  }
}

/* pricing */

.pricing-item {
  border-radius: 24px;
  padding: 16px 24px;
  width: 327px;
  max-width: 100%;
  height: 351px;
  background: var(--d-navy);
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  h5 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    color: var(--l-green);
  }

  ul {
    list-style: disc;
    padding-left: 20px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--l-gray);
  }

  p {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    color: var(--white);
  }

  div {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--white);
  }

  span {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 36px;
    line-height: 120%;
    color: var(--l-green);
  }
}

@media screen and (min-width: 1437px) {
  .pricing-item {
    border-radius: 24px;
    padding: 16px 24px;
    width: 352px;
    height: 434px;

    h5 {
      font-size: 48px;
    }

    ul {
      font-size: 18px;
    }

    p {
      font-size: 20px;
    }

    span {
      font-size: 48px;
    }

    div {
      font-size: 18px;
    }
  }
}

/* testimonials */

.testimonials-item {
  border-radius: 24px;
  padding: 16px 24px;
  background: var(--d-navy);

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--l-gray);
    margin-bottom: 32px;
  }

  h5 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 18px;
    line-height: 150%;
    text-align: right;
    color: var(--white);
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: right;
    color: var(--l-gray);
  }
}

.testimonials-btn-wrap {
  display: none;
}

@media screen and (min-width: 1437px) {
  .testimonials-cover {
    display: flex;
    align-items: flex-end;
    gap: 32px;
  }

  .testimonials-btn-wrap {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
  }

  .swiper-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--l-blue);
    transition: border-color 0.3s ease;
  }

  .swiper-svg {
    fill: none;
    stroke: var(--l-blue);
    transition: stroke 0.3s ease;
  }

  .swiper-btn:hover {
    border-color: var(--l-gray);

    .swiper-svg {
      stroke: var(--l-gray);
    }
  }

  .testimonials-right {
    transform: rotate(90deg);
  }

  .testimonials-left {
    transform: rotate(-90deg);
  }

  .testimonials-item {
    min-height: 283px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    h5 {
      font-size: 20px;
    }

    p {
      font-size: 18px;
    }

    span {
      font-size: 18px;
    }
  }
}

/* faq */

.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  width: 100%;
  padding-bottom: 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--l-blue);
}

.faq-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--l-blue);
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.swiper-svg {
  fill: none;
  stroke: var(--l-blue);
}

.faq-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: var(--white);
}

.faq-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--l-gray);
  margin-top: 16px;
}

@media screen and (min-width: 1437px) {
  .faq-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .faq-list {
    width: 736px;
  }

  .faq-title {
    font-size: 20px;
  }
  .faq-text {
    font-size: 18px;
  }
}

.hidden {
  display: none;
}

.click {
  transform: rotate(360deg);
}

/* contact  */

.contact-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: var(--l-blue);
  margin-bottom: 24px;
}

.contact-list {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);

  a:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 1437px) {
  .contact-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .contact-wrap {
    width: 736px;
  }

  .contact-text {
    font-size: 24px;
  }

  .contact-list {
    font-size: 18px;
  }
}

/* footer */

.footer {
  padding-bottom: 16px;
}

.footer-image {
  position: absolute;
  max-width: max-content;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.footer-title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: var(--l-blue);
  margin-bottom: 40px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--white);

  a:hover {
    text-decoration: underline;
  }
}

.footer-description {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 11px;
  line-height: 150%;
  text-align: right;
  color: var(--white);
  margin-top: 40px;
}

@media screen and (min-width: 1437px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 16px;
  }

  .footer-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .footer-title {
    font-size: 24px;
    max-width: 350px;
    margin: 0;
  }

  .footer-description {
    font-size: 12px;
  }

  .footer-list {
    font-size: 18px;
  }
}

/* cookie popup */

.popup {
  position: fixed;
  z-index: 10;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 32px;
  padding: 32px;
  background: var(--d-navy);
  transition: transform 0.5s ease;
}

.popup-text {
  font-family: var(--font3);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-align: center;
  color: var(--white);
  margin-bottom: 40px;
}

.popup-btn {
  border: 1px solid var(--white);
  border-radius: 28px;
  padding: 16px 32px;
  text-transform: capitalize;

  font-family: var(--third-family);
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: var(--white);

  transition: color 0.3s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  background: var(--white);
  color: var(--black);
}

.popup-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.popup-click {
  transform: translateY(130%) translateX(-50%);
}

@media screen and (min-width: 1437px) {
  .popup {
    padding: 33px;
  }

  .popup-container {
    display: flex;
    align-items: center;
    gap: 105px;
  }

  .popup-text {
    font-size: 20px;
    margin: 0;
    text-align: start;
  }

  .popup-btn {
    padding: 16px 52px;
  }

  .popup-wrap {
    flex-direction: row;
    flex-shrink: 0;
    gap: 32px;
  }
}
