.main-section {
  position: fixed;
  z-index: 9;
  width: 100%;
  padding: 20px;
  background: #086cfd;
}

.page-nav {
  display: none;
}

.page-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.page-nav-link {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.3s ease;
}

.page-nav-link:hover {
  color: #ff00ae;
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.menu-open-svg {
  stroke: #fff;
}

.menu-close-svg {
  stroke: #fff;
}

@media screen and (min-width: 1420px) {
  .main-section {
    padding: 30px;
  }

  .page-nav {
    display: block;
  }

  .menu-btn {
    display: none;
  }
}

/* modal  */

.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 8;
  width: 100%;
  padding: 45px 15px;
  padding-top: 90px;
  transform: translateX(100%);
  transition: transform 1s ease;
  background: #086cfd;
}

.menu-nav-list {
  flex-direction: column;
  align-items: center;
}

/* popup */

.page-popup {
  position: fixed;
  z-index: 10;
  width: 96%;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.4s ease;
  padding: 40px;
  background: #086cfd;
}

.popup-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #fff;
}

.popup-btn {
  border-radius: 30px;
  padding: 9px;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fbd606;
  text-transform: uppercase;
  text-decoration: underline;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.popup-btn:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #ff00ae;
  color: #fff;
  text-decoration: none;
}

.popup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}

@media screen and (min-width: 1420px) {
  .page-popup {
    padding: 40px;
  }

  .popup-wrap {
    gap: 80px;
    margin-top: 24px;
  }

  .popup-btn {
    font-size: 16px;
    padding: 10px 30px;
  }
}

/* hero  */

.dashboard {
  padding-top: 106px;
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 30px;
  line-height: 113%;
  text-align: center;
  color: #ff00ae;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff,
    1px 1px 0 #fff;
  margin-bottom: 16px;
}

.hero-img {
  width: 299px;
  margin: 0 auto;
  margin-bottom: 16px;
}

.page-hero-text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 42px;
}

.hero-link-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-link {
  display: block;
  padding: 21px;
  width: 280px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;

  font-family: var(--font-family);
  font-weight: 900;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  transition: color 0.3s ease;
  background: linear-gradient(to bottom, #ff1493 0%, #e6004c 50%, #d4003a 100%);
}

.hero-link:hover {
  color: yellow;
}

.hero-description {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  color: #2a155f;
  margin-top: 42px;
}

@media screen and (min-width: 1420px) {
  .dashboard {
    padding-top: 148px;
    padding-bottom: 80px;
    position: relative;
  }

  .hero-img {
    width: auto;
    margin: 0;
    position: absolute;
    top: 117px;
    left: 55%;
  }

  .hero-title {
    font-size: 38px;
  }

  .page-hero-text {
    font-size: 18px;
    margin-bottom: 42px;
  }

  .hero-wrapper {
    max-width: 50%;
  }

  .hero-link-wrap {
    flex-direction: row;
  }
}

/* about */

.about-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.06em;
  color: #fff;
}

.about-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 1420px) {
  .about-wrap {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 78px;
  }
}

/* features */

#features {
  padding-left: 0;
  padding-right: 0;
}

.features-container {
  padding: 0 10px;
}

.features-swiper {
  margin-top: 50px;
}

.features-item {
  width: 254px;

  img {
    width: 78px;
    flex-shrink: 0;
  }

  span {
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 24px;
    line-height: 83%;
    color: #fff;
  }

  div {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: #fff;
    margin-top: 36px;
  }
}

@media screen and (min-width: 1420px) {
  .features-container {
    padding: 0 80px;
  }

  .features-item {
    width: 385px;
    opacity: 0.3;
    transition: opacity 0.3s ease;

    img {
      width: auto;
    }

    span {
      font-size: 36px;
    }

    p {
      font-size: 24px;
      margin-top: 54px;
    }
  }

  .features-wrapper .swiper-slide-active {
    opacity: 1;
  }
}

/* meet */

.meet-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 25px 0;

  li {
    display: flex;
    align-items: center;
    gap: 32px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    color: #086cfd;
  }
}

.meet-img {
  width: 355px;
  margin: 0 auto;
}

@media screen and (min-width: 1420px) {
  #meet {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 319px;
  }

  .meet-img {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }
}

/* gameplay */

#gameplay {
  padding-left: 0;
  padding-right: 0;
}

.gameplay-container {
  padding: 0 10px;
}

.gallery-swiper {
  margin-top: 58px;
}

.gallery-item {
  width: 330px;
  max-width: 100%;
}

.gallery-list {
  display: none;
}

.gallery-modal {
  display: none;
}

@media screen and (min-width: 1420px) {
  #gameplay {
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 270px;
  }

  .gameplay-container {
    padding: 0;
  }

  .gallery-swiper {
    display: none;
  }

  .gallery-modal {
    display: block;
    width: 475px;
    flex-shrink: 0;
  }

  .gallery-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 6px;
    margin-top: 42px;
  }

  .gallery-item {
    width: calc((100% - 18px) / 4);
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
  }

  .gallery-item:hover {
    border-color: yellow;
  }
}

/* pearl */

.pearl-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 26px;

  li {
    padding: 14px 60px;
    font-family: var(--font-family);
    font-weight: 900;
    font-size: 16px;
    line-height: 125%;
    text-transform: uppercase;
    text-align: center;
    color: #ff00ae;
    border-radius: 30px;
    background: #fff;
    min-height: 68px;
  }
}

@media screen and (min-width: 1420px) {
  #pearl {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 84px;
  }

  .pearl-text {
    max-width: 400px;
  }
}

/* booster */

.booster-img {
  width: 365px;
  margin: 0 auto;
  margin-bottom: 46px;
}

.booster-list {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 175%;
  color: #fff;
  margin-bottom: 25px;
}
@media screen and (min-width: 1420px) {
  #booster {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 299px;
  }

  .booster-img {
    width: auto;
    flex-shrink: 0;
    margin: 0;
  }
}

/* craft */

.craft-swiper {
  margin-top: 62px;
}

.craft-item {
  width: 254px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;

  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 1420px) {
  #craft {
    display: flex;
    gap: 113px;
    align-items: center;
  }
}

/* events */

.events-text {
  margin-bottom: 25px;
}

.events-list {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: #fff;
  margin-bottom: 25px;
}

.events-img {
  width: 343px;
  margin: 0 auto;
  margin-top: 50px;
}

@media screen and (min-width: 1420px) {
  #events {
    display: flex;
    align-items: center;
    gap: 260px;
  }

  .events-img {
    width: auto;
    margin: 0;
    flex-shrink: 0;
  }
}

/* reviews */

#reviews {
  padding-left: 0;
  padding-right: 0;
}

.reviews-swiper {
  margin-top: 48px;
}

.reviews-item {
  width: 352px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;

  div {
    border-radius: 50px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    background: #fff;
    min-height: 364px;
    padding: 40px;
  }

  img {
    margin: 0 auto;
    margin-bottom: 27px;
  }

  p {
    font-family: var(--font-family);
    font-style: italic;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: #086cfd;
    margin-bottom: 22px;
  }

  span {
    display: block;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: #086cfd;
  }

  .div2 {
    transform: translateX(50%);
  }
}

.btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 45px;
}

.swiper-btn {
  transition: transforn 0.3s ease;
}

.swiper-btn:hover {
  transform: scale(1.1);
}

/* info */

.section-swiper {
  padding: 44px 0;
}

.section-item {
  width: 353px;
  max-width: 100%;
}

.info-list {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 16px;
  line-height: 125%;
  color: #fff;
  margin-bottom: 22px;
}

@media screen and (min-width: 1420px) {
  .section-swiper {
    padding: 50px 0;
  }

  .section-item {
    width: 568px;
  }
}

/* download */

.download-link {
  width: 350px;
  margin: 0 auto;
}

.download-text {
  font-family: var(--font-family);
  font-weight: 900;
  font-size: 16px;
  line-height: 150%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  margin-top: 31px;
}

/* contacts */

.social-list {
  display: flex;
  justify-content: center;
  justify-content: center;
  gap: 9px;
}

/* footer */

.footer {
  padding: 24px 10px;
  box-shadow: 0 -37px 100px rgba(85, 148, 244, 0.06);
  background: #fff;
}

.footer-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  color: #000;
}

.mail-link {
  display: flex;
  flex-direction: column;
  align-items: center;

  font-family: var(--font-family);
  font-weight: 700;
  font-size: 15px;
  line-height: 140%;
  text-align: center;
  color: #000;
  margin-bottom: 20px;

  a:hover {
    text-decoration: underline;
  }
}

.footer-link {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 140%;
  color: #000;
}

.footer-link:hover {
  text-decoration: underline;
}

.footer-link-wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 1420px) {
  .footer {
    padding: 42px 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-link-wrap {
    align-items: flex-end;
  }

  .mail-link {
    align-items: flex-start;
    margin: 0;
  }
}

/* ********************* */

.hidden {
  display: none;
}

.menu-transform {
  transform: translateY(0);
}

.click {
  transform: rotate(180deg);
}

.popup-click {
  transform: translateY(130%) translateX(-50%);
}

.overflow {
  overflow: hidden;
}
