@import url("https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  --main-font: "Inter", sans-serif;
  --secondary-font: "Exo 2", sans-serif;
  --text-color: #0C0C0C;
  --secondary-color: #0C0C0C;
  --header-text: #fff;
  --accent-color: #A823D5;
  --bg-color: #A823D5;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--main-font);
  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: 1244px;
  margin: 0 auto;
}

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

.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: 60px;
  margin-top: 50px;
}

.icon {
  width: 42px;
  height: 42px;
  fill: white;
}

.header__icon {
  fill: white;
}

.section--title {
  font-family: var(--secondary-font);
  font-weight: 900;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.padding--responsive {
  padding: 50px 25px;
}
@media (min-width: 1205px) {
  .padding--responsive {
    padding: 60px;
  }
}

.header {
  position: fixed;
  width: 100%;
  z-index: 6;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-color: #a823d5;
}
.header__button-wrapper {
  margin-left: auto;
  z-index: 12;
}
.header__icon {
  display: none;
  width: 33px;
  height: 26px;
  fill: #fff;
}
.header__icon-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: transparent;
  border: none;
  z-index: 12;
}

.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: 20px 20px;
  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;
  gap: 32px;
  padding: 66px;
  background: rgba(4, 6, 24, 0.8980392157);
  backdrop-filter: blur(22px);
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
  z-index: 3;
}
.navigation__list.is-open {
  top: 68px;
}
.navigation__link {
  color: #fff;
  font-family: var(--secondary-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.navigation__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 1px;
  width: 100%;
  background-color: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -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;
}
.navigation__link:hover {
  font-weight: 700;
}
.navigation__link:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

@media screen and (min-width: 1200px) {
  .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-block: 23px;
  }
  .navigation__list {
    background-color: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    position: static;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    padding-block: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    gap: 78px;
  }
  .navigation__list .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: left;
  height: 800px;
  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;
}
.home img {
  width: 284px;
}
@media (min-width: 1205px) {
  .home img {
    width: 400px;
  }
}

.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 #040618;
  -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: 1244px;
  }
}

.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: #040618;
}

.popup-top {
  padding: 78px 20px 23px 20px;
}

.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: 38px 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: #040618;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .popup p {
    font-weight: 400;
    font-size: 20px;
    line-height: 44px;
  }
}

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

.popup a {
  color: #040618;
  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);
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  background: #fff;
  color: #040618;
  border: 1px solid #eff0f6;
  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: #040618;
  color: #fff;
}

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

.games {
  background-color: #040618;
  padding-bottom: 166px;
}
.games ul {
  margin-inline: -25px;
}
@media (min-width: 1205px) {
  .games ul {
    margin: 0;
    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;
    gap: 23px;
  }
}
.games li {
  width: 335px;
  height: 272px;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#a823d5));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #a823d5 100%);
  backdrop-filter: blur(22px);
  border-radius: 22px;
  margin: 0 10px;
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
  cursor: pointer;
}
.games li:hover {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}
@media (min-width: 1205px) {
  .games li {
    margin: 0;
  }
}
.games a {
  text-decoration: none;
  text-align: center;
}
.games img {
  margin-bottom: 18px;
}
.games h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #0c0c0c;
  margin-bottom: 2px;
}
.games p {
  color: #0c0c0c;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
}

.team {
  background-image: url("../../images/team-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 1205px) {
  .team {
    padding-bottom: 140px;
  }
}
.team 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: 25px;
}
.team li {
  width: 335px;
  height: 477px;
  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: 18px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.55)), to(#a823d5));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, #a823d5 100%);
  backdrop-filter: blur(22px);
  border-radius: 22px;
  padding-inline: 22px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}
.team li:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
@media (min-width: 1205px) {
  .team li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 523px;
    height: 264px;
  }
}
@media (min-width: 1205px) {
  .team img {
    width: 220px;
  }
}
.team h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #0c0c0c;
  margin-bottom: 2px;
}
.team p {
  color: #0c0c0c;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 2px;
}

.partners {
  background-image: url("../../images/partners-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left;
}
@media (min-width: 1205px) {
  .partners {
    padding-bottom: 100px;
  }
}
.partners 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;
  gap: 32px;
  max-width: 1024px;
}
@media (min-width: 1205px) {
  .partners ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.partners li {
  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: 2px;
  width: 320px;
  height: 106px;
  border-radius: 22px;
  border: 1px solid #d391ea;
  cursor: pointer;
}
.partners a {
  text-decoration: none;
}
.partners h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}
.partners p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
}

.contact {
  background: -webkit-gradient(linear, left top, left bottom, from(#040618), to(#a823d5));
  background: linear-gradient(180deg, #040618 0%, #a823d5 100%);
  color: #fff;
}
@media (min-width: 1205px) {
  .contact {
    padding-bottom: 86px;
  }
}
.contact .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;
  max-width: 528px;
  width: 100%;
  border-radius: 22px;
  border: 1px solid #d391ea;
  padding: 22px;
  margin: 0 auto;
}
.contact p {
  text-align: center;
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 2px;
}
.contact span {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}
.contact a {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
}
.contact .icons {
  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: 22px;
  margin-bottom: 2px;
}

.footer {
  background: -webkit-gradient(linear, left top, right top, from(#a823d5), to(#040618));
  background: linear-gradient(90deg, #a823d5 0%, #040618 100%);
  padding: 30px 25px;
  font-family: var(--secondary-font);
}
@media screen and (min-width: 1200px) {
  .footer {
    padding-block: 60px;
  }
}
.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: 22px;
}
@media screen and (min-width: 1200px) {
  .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-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;
}
.footer .img-box {
  position: relative;
}
.footer .img-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 300px;
  height: 135px;
  background-image: url("../../images/blur.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 1200px) {
  .footer .img-box::before {
    width: 538px;
    height: 260px;
  }
}
.footer img {
  width: 65px;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .footer img {
    width: 132px;
  }
}
.footer__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  color: #fff;
}
.footer__copyright {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  color: #fff;
}

.policies {
  background-color: #040618;
  padding-top: 100px;
  padding-inline: 25px;
  padding-bottom: 60px;
  color: #fff;
}
@media screen and (min-width: 1200px) {
  .policies {
    padding-top: 140px;
  }
}
.policies a {
  color: #fff;
  text-decoration: underline;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.policies a:hover {
  color: var(--accent-color);
}
.policies h1 {
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 10px;
  text-align: center;
}
.policies h2 {
  margin-block: 15px;
  font-size: 18px;
}
.policies h4 {
  margin-top: 20px;
}
.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: 16px;
  line-height: 24px;
}
.policies strong {
  font-weight: 700;
}/*# sourceMappingURL=main.css.map */