@import url("https://fonts.googleapis.com/css2?family=Irish+Grover&family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&display=swap");
:root {
  --main-font: "Istok Web", sans-serif;
  --sec-font: "Irish Grover", system-ui;
  --text-color: #000;
  --sec-color: #4C0937;
  --accent: #094F74;
  --header-bg: #70DBFF;
  --header-text: #fff;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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: 1240px;
  margin: 0 auto;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48px;
  height: 48px;
  fill: var(--sec-color);
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.button:hover {
  scale: 110%;
  fill: #FF00AE;
}

.button svg {
  height: 100%;
}

.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: 32px;
  margin-top: 25px;
}

.btn-box {
  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: 32px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .btn-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.btn {
  background: #ff00ae;
  -webkit-box-shadow: 0px 4px 0px 0px #4c0937;
          box-shadow: 0px 4px 0px 0px #4c0937;
  border-radius: 50px;
  width: 276px;
  height: 70px;
  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;
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.btn:hover {
  scale: 110%;
}

.btn-dark {
  background: #094f74;
}

.header__icon--menu {
  fill: var(--header-text);
}

.header__icon--close {
  fill: var(--header-text);
}

.title {
  font-family: var(--sec-font);
  color: var(--accent);
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
}

.txt {
  font-family: var(--sec-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 35px;
  color: var(--sec-color);
  margin-bottom: 46px;
  text-align: center;
  text-transform: uppercase;
}

.text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin-bottom: 60px;
  max-width: 954px;
}

.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);
}
.header .container {
  max-width: 1407px;
}
.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: 48px;
  height: 48px;
}
.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-inline: 15px;
  position: relative;
}
.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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  padding-top: 48px;
  padding-bottom: 118px;
  margin-top: 12px;
  background: var(--header-bg);
  position: absolute;
  top: 100%;
  right: -100%;
  width: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}
.navigation__list.is-open {
  right: 0;
}
.navigation__link {
  width: 306px;
  height: 40px;
  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;
  color: var(--text-color);
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  border-radius: 50px;
  text-decoration: none;
  position: relative;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__link:hover {
  background: #ff00ae;
  color: #fff;
}

@media screen and (min-width: 1272px) {
  .header {
    background-color: transparent;
  }
  .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-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-top: 37px;
    padding-inline: 0;
  }
  .navigation__list {
    background: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    margin-top: 0;
    padding: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .navigation__link {
    width: 168px;
  }
  .navigation__item:nth-last-child(-n+3) {
    display: none;
  }
}
.home {
  padding: 67px 10px 152px 10px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  .home {
    padding-top: 100px;
    padding-bottom: 183px;
  }
}
.home .container {
  background-image: url("../../images/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 50px;
  padding-bottom: 208px;
  padding-inline: 15px;
}
@media screen and (min-width: 1200px) {
  .home .container {
    padding-bottom: 92px;
    margin-bottom: 37px;
  }
  .home .container .btn-box-1 {
    display: none;
  }
}
.home .title-img {
  width: 267px;
  margin: 0 auto;
  margin-bottom: 5px;
}
@media screen and (min-width: 1200px) {
  .home .title-img {
    width: auto;
  }
}
.home h1 {
  font-family: var(--sec-font);
  color: var(--accent);
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  margin-bottom: 40px;
}
.home p {
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
  color: var(--accent);
  text-align: center;
  max-width: 417px;
  margin: 0 auto;
  margin-bottom: 43px;
}
.home .btn-box-2 {
  display: none;
}
@media screen and (min-width: 1200px) {
  .home .btn-box-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.home .boy {
  position: absolute;
  width: 225px;
  bottom: 20px;
  left: 20px;
}
@media screen and (min-width: 1200px) {
  .home .boy {
    width: 617px;
    bottom: 56px;
    left: 50%;
    -webkit-transform: translate(-132%);
            transform: translate(-132%);
  }
}
.home .flower-1 {
  position: absolute;
  width: 143px;
  bottom: 20px;
  right: 20px;
}
@media screen and (min-width: 1200px) {
  .home .flower-1 {
    width: auto;
    bottom: unset;
    top: 211px;
    left: 50%;
    -webkit-transform: translate(245%);
            transform: translate(245%);
  }
}
.home .flower-2 {
  display: none;
}
@media screen and (min-width: 1200px) {
  .home .flower-2 {
    display: block;
    position: absolute;
    width: auto;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(75%);
            transform: translate(75%);
  }
}

@media screen and (min-width: 1200px) {
  .benefits .button-container {
    display: none;
  }
  .benefits .txt {
    margin-bottom: 77px;
  }
}
.benefits ul {
  margin-inline: -15px;
}
@media screen and (min-width: 1200px) {
  .benefits ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 329px;
       -moz-column-gap: 329px;
            column-gap: 329px;
    row-gap: 12px;
  }
}
.benefits li {
  background: #70dbff;
  border-radius: 50px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  text-align: center;
  padding-inline: 10px;
  margin: 0 12px;
  max-width: 384px;
  width: 100%;
  min-height: 73px;
  height: 100%;
}
@media screen and (min-width: 1200px) {
  .benefits li {
    padding-inline: 100px;
  }
}

.howtoplay {
  padding-top: 70px;
  padding-bottom: 18px;
  position: relative;
}
.howtoplay img {
  display: none;
}
@media screen and (min-width: 1200px) {
  .howtoplay img {
    display: block;
    position: absolute;
    top: 50px;
    left: 50%;
    -webkit-transform: translate(75%);
            transform: translate(75%);
  }
}
.howtoplay 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;
  gap: 44px;
}
.howtoplay li {
  width: 180px;
  height: 258px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -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: 22px;
  margin: 0 22px;
}
@media screen and (min-width: 1200px) {
  .howtoplay li {
    margin: 0;
  }
}
.howtoplay li div {
  width: 98px;
  height: 98px;
  border-radius: 49px;
  background: #ff00ae;
  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;
}
.howtoplay h4 {
  font-family: var(--sec-font);
  color: #fff;
  font-weight: 400;
  font-size: 48px;
  line-height: 48px;
}
.howtoplay p {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
}

.meet .wrapper {
  background: #70dbff;
}
.meet .container {
  padding-top: 36px;
  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: 10px;
}
@media screen and (min-width: 1200px) {
  .meet .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 97px;
    padding-top: 0;
  }
}
.meet .img-wrap {
  overflow: hidden;
  min-height: 300px;
  max-height: 300px;
}
@media screen and (min-width: 1200px) {
  .meet .img-wrap {
    min-height: 184px;
    max-height: 184px;
  }
}
.meet img {
  -webkit-transform: translateY(-100px) scaleX(-1);
          transform: translateY(-100px) scaleX(-1);
  max-width: 536px;
  min-width: 536px;
  margin: 0 auto;
}
@media screen and (min-width: 1200px) {
  .meet img {
    -webkit-transform: translateY(-190px) scaleX(-1);
            transform: translateY(-190px) scaleX(-1);
  }
}
.meet p {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: var(--accent);
  padding-inline: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.popup {
  position: fixed;
  z-index: 3;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  max-width: 400px;
  width: calc(100% - 20px);
  background: #fff;
  overflow: hidden;
  padding: 40px 36px;
}
@media screen and (min-width: 1200px) {
  .popup {
    max-width: 1280px;
    padding-bottom: 45px;
  }
}
.popup .wrapper {
  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: 36px;
}
@media screen and (min-width: 1200px) {
  .popup .wrapper {
    gap: 24px;
  }
}
.popup img {
  width: 43px;
}
.popup p {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #094F74;
  text-align: center;
}
.popup .button-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 1200px) {
  .popup .button-wrap {
    max-width: 466px;
    gap: 80px;
  }
}
.popup .button-wrap button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 700;
  font-size: 16px;
  line-height: 23px;
  background: transparent;
  color: #FF00AE;
  border: none;
  border-bottom: 2px solid #FF00AE;
  padding: 10px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.popup .button-wrap button:hover {
  background: var(--sec-color);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  border-bottom-color: transparent;
  border-radius: 12px;
  color: #fff;
}

.faq {
  padding-top: 52px;
}
.faq li {
  width: 350px;
  margin: 0 6px;
}
.faq ul div {
  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;
  color: #fff;
  text-align: center;
}
.faq .top {
  border-radius: 50px;
  background: #70dbff;
  height: 115px;
  padding-inline: 17px;
  margin-bottom: 12px;
}
.faq .bottom {
  border-radius: 20px;
  background: #094f74;
  height: 205px;
  padding-inline: 38px;
}
.faq h4 {
  font-family: var(--sec-font);
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
}
.faq p {
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
}

.about {
  background-image: url("../../images/about-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 22px 10px 56px 10px;
}
@media screen and (min-width: 1200px) {
  .about {
    padding-top: 100px;
    padding-bottom: 58px;
    position: relative;
  }
}
.about .container {
  background-color: #fff;
  border-radius: 50px;
  padding: 44px 15px 434px 15px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .about .container {
    padding-top: 52px;
    padding-bottom: 65px;
  }
}
.about .flower {
  display: none;
}
@media screen and (min-width: 1200px) {
  .about .flower {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-187%);
            transform: translate(-187%);
    z-index: 1;
  }
}
.about .boy {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 291px;
}
@media screen and (min-width: 1200px) {
  .about .boy {
    width: auto;
  }
}

.advantages {
  padding-top: 54px;
  padding-bottom: 35px;
  padding-inline: 15px;
}
@media screen and (min-width: 1200px) {
  .advantages {
    padding-bottom: 138px;
  }
}
.advantages .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 88px;
     -moz-column-gap: 88px;
          column-gap: 88px;
  row-gap: 37px;
}
.advantages 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: 12px;
}
.advantages li {
  background: #70dbff;
  border-radius: 50px;
  width: 333px;
  height: 45px;
  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;
  font-weight: 400;
  font-size: 24px;
  line-height: 35px;
}
.advantages ul li:first-child {
  background: #4c0937;
  color: #fff;
  text-transform: uppercase;
}

.footer {
  padding-inline: 15px;
  padding-bottom: 38px;
}
.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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 27px;
}
@media screen and (min-width: 1200px) {
  .footer__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.footer__wrapper {
  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: 8px;
}
@media screen and (min-width: 1200px) {
  .footer__wrapper {
    gap: 15px;
  }
}
.footer__text {
  font-family: var(--sec-font);
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  text-decoration: none;
  text-align: center;
  color: #ff00ae;
}
@media screen and (min-width: 1200px) {
  .footer__text {
    font-weight: 400;
    font-size: 32px;
    line-height: 39px;
  }
}
.footer__copyright {
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  text-align: center;
}
.footer img {
  max-width: 498px;
  width: 100%;
}

.policies {
  padding-top: 96px;
  padding-inline: 15px;
  padding-bottom: 44px;
  color: #000;
}
@media screen and (min-width: 1200px) {
  .policies {
    padding-top: 152px;
  }
}
.policies a {
  color: #000;
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.policies a:hover {
  color: #094f74;
}
.policies h1 {
  font-family: var(--sec-font);
  color: var(--sec-color);
  font-weight: 400;
  font-size: 48px;
  line-height: 58px;
  margin-bottom: 44px;
  text-align: center;
}
.policies h2 {
  margin-block: 10px;
  font-size: 18px;
}
.policies h4 {
  margin-top: 10px;
}
.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: 10px;
  padding-block: 6px;
}
.policies p {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.policies strong {
  font-weight: 700;
}/*# sourceMappingURL=main.css.map */