@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --main: "Nunito", sans-serif;
  --sec: "Poppins", sans-serif;
  --text: #111111;
  --accent: #ff00ff;
  --header-bg: #5BA7FE;
  --header-text: #fff;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--main);
  color: var(--text);
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.list {
  list-style: none;
}

button,
a {
  cursor: pointer;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  scale: 110%;
}

.button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.icon {
  width: 12px;
  height: 16px;
}

.header__icon--menu {
  stroke: #fff;
}

.header__icon--close {
  fill: #fff;
}

.title {
  font-family: var(--sec);
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 38px;
  text-align: center;
  color: var(--accent);
}
@media screen and (min-width: 1205px) {
  .title {
    font-weight: 900;
    font-size: 52px;
    line-height: 60px;
    margin-bottom: 60px;
  }
}

.txt {
  font-weight: 900;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 1205px) {
  .txt {
    font-weight: 900;
    font-size: 24px;
    line-height: 32px;
  }
}

.text {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
}
@media screen and (min-width: 1205px) {
  .text {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 5;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background: var(--header-bg);
  padding: 16px 20px;
}
.header__background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background: var(--header-bg);
  z-index: -1;
  -webkit-transition: left 0.3s ease;
  transition: left 0.3s ease;
}
.header.is-open .header__background {
  left: 0;
}
.header__button-wrapper {
  margin-left: auto;
}
.header__icon {
  display: none;
  width: 38px;
  height: 28px;
}
.header__icon-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  border: none;
  border-radius: 50%;
}

.header__icon--menu {
  display: block;
}

.header__icon-button.is-open .header__icon--menu {
  display: none;
}

.header__icon-button.is-open .header__icon--close {
  display: block;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 16px;
  position: relative;
  background-color: #1b73d7;
  border-radius: 30px;
  border: 1px solid #0056b8;
}
.navigation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  padding: 32px 40px;
  background: #1b73d7;
  border: 1px solid #0056b8;
  border-radius: 30px;
  margin-top: 40px;
  max-height: 80vh;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #5ba7fe transparent;
  position: absolute;
  top: 100%;
  right: calc(-100% - 20px);
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
.navigation__list.is-open {
  right: 0;
}
.navigation__link {
  font-family: var(--sec);
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__link:hover {
  font-weight: 700;
}

@media screen and (min-width: 1280px) {
  .header {
    padding-block: 28px;
  }
  .header__icon-button {
    display: none;
  }
  .header__button-wrapper {
    width: auto;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .navigation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-inline: 54px;
  }
  .navigation__list {
    background: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
    width: auto;
    margin-top: 0;
    padding: 0;
    border: none;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .navigation__link {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-right: 1px solid #fff;
    padding-right: 12px;
  }
  .navigation__link.no-border {
    border-right: none;
    padding-right: 0;
  }
  .navigation__item:nth-last-child(-n+3) {
    display: none;
  }
}
.home {
  background-image: url("../../images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right;
  padding: 116px 20px 250px 20px;
  position: relative;
}
@media screen and (min-width: 1205px) {
  .home {
    padding-top: 160px;
    padding-bottom: 192px;
  }
}
.home .container {
  max-width: 1120px;
}
.home img {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
@media screen and (min-width: 1205px) {
  .home img {
    left: unset;
    right: 0;
  }
}
.home h1 {
  font-family: var(--sec);
  font-weight: 900;
  font-size: 44px;
  line-height: 48px;
  color: var(--accent);
  text-align: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 1205px) {
  .home h1 {
    font-weight: 900;
    font-size: 60px;
    line-height: 90px;
  }
}
.home h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  margin-bottom: 36px;
}
@media screen and (min-width: 1205px) {
  .home h2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
  }
}
.home p {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
}
@media screen and (min-width: 1205px) {
  .home p {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    position: relative;
    z-index: 1;
  }
}

.popup {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  max-width: 380px;
  width: calc(100% - 20px);
  background-color: #fff;
  border-radius: 22px;
  border: 1px solid #d9dbe9;
  -webkit-box-shadow: 0px 14px 42px 0px rgba(8, 15, 52, 0.0588235294);
          box-shadow: 0px 14px 42px 0px rgba(8, 15, 52, 0.0588235294);
  overflow: hidden;
  margin-bottom: 20px;
}
@media screen and (min-width: 900px) {
  .popup {
    max-width: 1300px;
  }
}

.popup-close-btn {
  position: absolute;
  top: 36px;
  right: 36px;
  background-color: transparent;
  border: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.popup-close-btn:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.popup-close-btn svg {
  width: 28px;
  height: 28px;
  fill: #000;
}

.popup-top {
  padding: 78px 20px 23px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 11px;
}
@media screen and (min-width: 900px) {
  .popup-top {
    padding-block: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
  }
}

.popup-bottom {
  border-top: 1px solid #eff0f6;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .popup-bottom {
    padding: 20px 60px;
  }
}

.popup h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 37px;
  text-align: center;
  margin-bottom: 12px;
}
@media screen and (min-width: 900px) {
  .popup h2 {
    font-size: 38px;
    margin-bottom: 32px;
  }
}

.popup p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #574e44;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .popup p {
    font-weight: 400;
    font-size: 20px;
    line-height: 44px;
  }
}

.popup p a {
  color: #ff00ff;
  text-decoration: none;
  cursor: pointer;
}

.popup a {
  color: #ff00ff;
  cursor: pointer;
  font-size: 18px;
}
@media screen and (min-width: 900px) {
  .popup a {
    font-weight: 400;
    font-size: 27px;
    line-height: 45px;
  }
}

.popup .button-wrap button {
  font-family: var(--main);
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  background: #fff;
  color: #170f49;
  border: 1px solid #ff00ff;
  border-radius: 56px;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(74, 58, 255, 0.0784313725);
          box-shadow: 0px 4px 8px 0px rgba(74, 58, 255, 0.0784313725);
  padding: 18px 26px;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (min-width: 900px) {
  .popup .button-wrap button {
    font-size: 24px;
  }
}
.popup .button-wrap button:hover {
  font-weight: 700;
  background: #ff00ff;
  color: #fff;
}

.button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .button-wrap {
    gap: 60px;
  }
}

.gallery {
  background-image: url("../../images/gallery-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: -1px;
  padding-block: 64px;
}
@media screen and (min-width: 1205px) {
  .gallery {
    padding-block: 100px;
  }
  .gallery .button-container {
    display: none;
  }
}
.gallery ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.gallery li {
  margin: 0 14px;
}
.gallery li img {
  width: 339px;
  height: 672px;
}
@media screen and (min-width: 1205px) {
  .gallery li img {
    width: 274px;
    height: 549px;
  }
}

.features {
  background-image: url("../../images/features-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 64px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .features {
    padding-block: 100px;
  }
}
.features ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 1205px) {
  .features ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
}
.features li {
  width: 350px;
  height: 444px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding-inline: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1205px) {
  .features li {
    width: 380px;
  }
}
.features span {
  font-weight: 800;
  font-size: 20px;
  line-height: 28px;
  padding-top: 260px;
}
@media screen and (min-width: 1205px) {
  .features span {
    font-weight: 800;
    font-size: 24px;
    line-height: 32px;
  }
}
.features li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.features li.bg-1::before {
  background-image: url("../../images/features/1.png");
}
.features li.bg-2::before {
  background-image: url("../../images/features/2.png");
}
.features li.bg-3::before {
  background-image: url("../../images/features/3.png");
}
.features li.bg-4::before {
  background-image: url("../../images/features/4.png");
}
.features li.bg-5::before {
  background-image: url("../../images/features/5.png");
}
.features li.bg-6::before {
  background-image: url("../../images/features/6.png");
}

.faq {
  background-image: url("../../images/faq-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 64px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .faq {
    padding-block: 100px;
  }
}
.faq__list {
  background-color: rgba(66, 182, 230, 0.6);
  border-radius: 20px;
  padding: 28px 20px;
  max-width: 1096px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media screen and (min-width: 1205px) {
  .faq__list {
    border-radius: 40px;
    padding: 40px 64px;
  }
}
.faq__item {
  width: 100%;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.faq__item:last-child {
  border-bottom: none;
}
.faq__question-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.faq__question {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}
@media screen and (min-width: 1205px) {
  .faq__question {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
  }
}
.faq__answer {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.6s cubic-bezier(0.5, 0.25, 0, 1), padding 0.6s cubic-bezier(0.5, 0.25, 0, 1), opacity 0.6s ease;
  transition: max-height 0.6s cubic-bezier(0.5, 0.25, 0, 1), padding 0.6s cubic-bezier(0.5, 0.25, 0, 1), opacity 0.6s ease;
  margin-top: 8px;
  padding: 0;
}
@media screen and (min-width: 1205px) {
  .faq__answer {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
  }
}
.faq__button {
  border: none;
  background-color: transparent;
  padding: 0;
}
.faq__button .icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq__button .icon.rotated {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.about {
  background-image: url("../../images/about-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 64px;
  padding-bottom: 89px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .about {
    padding-block: 88px;
  }
  .about h2,
  .about h3 {
    text-align: start;
  }
}
.about .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media screen and (min-width: 1205px) {
  .about .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 44px;
  }
}
.about__image {
  max-width: 355px;
  width: 100%;
}
@media screen and (min-width: 1205px) {
  .about__image {
    max-width: none;
  }
}
.about li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-block: 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
}
.about span {
  font-weight: 800;
}

.howtoplay {
  background-image: url("../../images/howtoplay-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-block: 64px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .howtoplay {
    padding-block: 100px;
  }
}
.howtoplay h3 {
  margin-bottom: 32px;
}
@media screen and (min-width: 1205px) {
  .howtoplay h3 {
    margin-bottom: 60px;
  }
}
.howtoplay ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 1205px) {
  .howtoplay ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 140px;
       -moz-column-gap: 140px;
            column-gap: 140px;
  }
}
.howtoplay li {
  width: 320px;
  height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-inline: 40px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.howtoplay span {
  font-weight: 900;
}
.howtoplay li::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.howtoplay li.bg-1::before {
  background-image: url("../../images/howtoplay/1.png");
}
.howtoplay li.bg-2::before {
  background-image: url("../../images/howtoplay/2.png");
}
.howtoplay li.bg-3::before {
  background-image: url("../../images/howtoplay/3.png");
}
.howtoplay li.bg-4::before {
  background-image: url("../../images/howtoplay/4.png");
}
.howtoplay li.bg-5::before {
  background-image: url("../../images/howtoplay/5.png");
}

.powerups {
  background-image: url("../../images/powerups-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 64px;
  padding-bottom: 89px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .powerups {
    padding-block: 88px;
  }
  .powerups h2,
  .powerups h3 {
    text-align: start;
  }
}
.powerups .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media screen and (min-width: 1205px) {
  .powerups .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 44px;
  }
}
.powerups img {
  max-width: 355px;
  width: 100%;
}
@media screen and (min-width: 1205px) {
  .powerups img {
    max-width: 400px;
  }
}
.powerups ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 28px;
}
@media screen and (min-width: 1205px) {
  .powerups ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.powerups li {
  max-width: 404px;
  width: 100%;
  min-height: 112px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding-inline: 28px;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(-5.53%, rgba(255, 255, 255, 0.6)), color-stop(98.98%, rgba(236, 219, 0, 0.6))), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.05)), to(rgba(255, 255, 255, 0.05)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) -5.53%, rgba(236, 219, 0, 0.6) 98.98%), linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05));
  border: 2px solid rgba(255, 255, 255, 0.0509803922);
  border-radius: 24px;
}
.powerups span {
  display: contents;
  font-weight: 900;
}
.powerups .bottom-text {
  background: none;
  font-weight: 900;
  font-size: 20px;
  line-height: 28px;
  color: var(--accent);
}

.unique {
  background-image: url("../../images/unique-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 64px;
  padding-bottom: 0;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .unique {
    padding-block: 100px;
  }
  .unique h2,
  .unique h3 {
    text-align: start;
  }
}
.unique .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media screen and (min-width: 1205px) {
  .unique .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 44px;
  }
}
.unique__image {
  max-width: 355px;
  width: 100%;
}
@media screen and (min-width: 1205px) {
  .unique__image {
    max-width: 560px;
  }
}
.unique li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-block: 20px;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
}
.unique span {
  font-weight: 800;
}

.contacts {
  background: #c0eaf7;
  padding-block: 64px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .contacts {
    padding-block: 100px;
  }
  .contacts h2,
  .contacts h3 {
    text-align: start;
  }
}
.contacts .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
@media screen and (min-width: 1205px) {
  .contacts .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.contacts ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 1205px) {
  .contacts ul {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.contacts li {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
@media screen and (min-width: 1205px) {
  .contacts li {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
  }
}
.contacts span {
  font-weight: 900;
}
.contacts a {
  color: var(--text);
}

.reviews {
  background: #c0eaf7;
  margin-top: -1px;
  padding-block: 64px;
  padding-inline: 20px;
}
@media screen and (min-width: 1205px) {
  .reviews {
    padding-block: 100px;
  }
}
.reviews ul {
  margin-inline: -20px;
}
.reviews li {
  width: 288px;
  height: 288px;
  background-color: #fff;
  border: 1px solid #ced4da;
  margin: 0 18px;
  border-radius: 24px;
  padding: 24px;
}
.reviews li div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.reviews img {
  width: 48px;
}
.reviews span {
  font-family: var(--sec);
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #000;
}
.reviews p {
  font-family: var(--sec);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #071412;
}

.footer {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(2%, #4b72fd), color-stop(39.02%, #0050c3));
  background: linear-gradient(180deg, #4b72fd 2%, #0050c3 39.02%);
  padding: 25px 20px;
}
@media screen and (min-width: 1205px) {
  .footer {
    padding-block: 44px;
  }
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}
@media screen and (min-width: 1205px) {
  .footer__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4px;
}
.footer__text {
  font-family: var(--sec);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-decoration: none;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 1205px) {
  .footer__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
}
.footer__copyright,
.footer a {
  font-family: var(--sec);
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 1205px) {
  .footer__copyright,
  .footer a {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
  }
}

.policies {
  padding-top: 148px;
  padding-inline: 20px;
  padding-bottom: 60px;
  color: #040404;
  font-family: var(--sec);
}
@media screen and (min-width: 1205px) {
  .policies {
    padding-top: 192px;
    padding-bottom: 80px;
  }
}
.policies a {
  font-family: var(--sec);
  color: #040404;
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.policies a:hover {
  color: #ff00ff;
}
.policies h1 {
  font-weight: 800;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 40px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 1205px) {
  .policies h1 {
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
  }
}
.policies h2 {
  margin-block: 15px;
  font-size: 20px;
}
.policies h4 {
  margin-top: 15px;
}
.policies ul {
  margin-left: 40px;
  list-style: disc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  padding-block: 10px;
}
.policies p {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
}
.policies strong {
  font-weight: 700;
}/*# sourceMappingURL=main.css.map */