@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&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");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Poppins", sans-serif;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #00102B;
}

[class*=__container] {
  max-width: 1070px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.h2 {
  color: #FFF;
  font-size: 52px;
  font-weight: 500;
}

.main {
  flex: 1 1 auto;
}

section {
  scroll-margin-top: 200px;
}

.text-center {
  text-align: center;
}

.header {
  position: fixed;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid #1F2937;
  background: #00102B;
}
.header__content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  position: relative;
  z-index: 40;
  color: #FFF;
  font-size: 22px;
  font-weight: 800;
  line-height: 140%;
  text-transform: uppercase;
}
.header__menu {
  display: flex;
  align-items: center;
}
.header__menu a {
  color: #D1D5DB;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
.header__years {
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.header__text {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

@media (max-width: 991px) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #fff;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
.menu__body {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 991px) {
  .menu__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #0A4900;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1439px) {
  .menu__list {
    flex-direction: column;
    gap: 96px;
  }
}
.menu__link {
  color: #2C2C30;
  font-size: 18px;
  font-weight: 600;
}

.footer {
  padding: 60px 0;
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.footer__icons {
  width: -moz-fit-content;
  width: fit-content;
}
.footer__icons img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__partners {
  border-radius: 24px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  padding: 12px 24px;
}
.footer__partners a img {
  max-width: 200px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
  flex-wrap: wrap-reverse;
}
@media (max-width: 991px) {
  .footer__row {
    justify-content: center;
  }
}
.footer__text {
  color: #9F9C90;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 575px) {
  .footer__menu {
    flex-direction: column;
  }
}
.footer__menu a {
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
}

.hero {
  margin: 142px 0 0;
  padding: 80px 0;
  background: linear-gradient(135deg, #002549 0%, #0F0067 50%, #00102B 100%);
}
.hero__content {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 991px) {
  .hero__content {
    flex-direction: column;
  }
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero__title {
  font-family: Poppins;
  font-size: 50px;
  font-weight: 800;
  background: radial-gradient(140% 67% at 4.6% 40.8%, #00C8FF 0%, #E496FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__text {
  color: #FFF;
  font-size: 25px;
  font-weight: 400;
  line-height: 32px;
}
.hero__link {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-transform: uppercase;
  padding: 15px 24px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 16px;
  background: #1E5BE0;
  box-shadow: 0 -3px 3px 0 #2025A8 inset;
}

.choose {
  padding: 80px 0;
}
.choose__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .choose__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.choose__card {
  border-radius: 26px;
  border: 1px solid rgba(58, 123, 214, 0.17);
  background: radial-gradient(60.4% 38.37% at 13.52% 10.21%, #1E3557 0%, #0F182D 100%);
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.choose__card_last {
  grid-column: span 3;
}
@media (max-width: 767px) {
  .choose__card_last {
    grid-column: span 1;
  }
}
.choose__name {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 8px;
}
.choose__text {
  color: #93A9B8;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.play {
  padding: 100px 0;
  background: linear-gradient(135deg, #00102B 0%, #15255D 50%, #00102B 100%);
}
.play__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.play__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.play__text {
  text-align: center;
  color: #FFF;
  font-size: 25px;
  font-weight: 700;
  line-height: 32px;
}
.play__block {
  border-radius: 16px;
  border: 1px solid rgba(55, 65, 81, 0.5);
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  position: relative;
}
.play__img {
  width: -moz-fit-content;
  width: fit-content;
}
.play__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.play__link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about {
  background: linear-gradient(135deg, #00102B 0%, #15255D 50%, #00102B 100%);
  padding: 100px 0;
}
.about__content {
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #1333A7;
  background: #244386;
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 991px) {
  .about__content {
    flex-direction: column;
  }
}
.about__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__title {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.2px;
}
.about__text {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}
@media (max-width: 575px) {
  .about__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .about__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.reviews {
  padding: 80px 0;
}
.reviews__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.reviews__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 767px) {
  .reviews__row {
    grid-template-columns: repeat(1, 1fr);
  }
}
.reviews__card {
  border-radius: 26px;
  border: 1px solid rgba(58, 123, 214, 0.17);
  background: radial-gradient(60.4% 38.37% at 13.52% 10.21%, #1E3557 0%, #0F182D 100%);
  padding: 16px 24px;
}
.reviews__name {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 8px;
}
.reviews__text {
  color: #93A9B8;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact {
  padding: 80px 0;
}
.contact__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.contact__text {
  color: #FFF;
  text-align: center;
  font-size: 25px;
  font-weight: 400;
  line-height: 32px;
}
.contact__address {
  color: #FFF;
  text-align: center;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 624px;
  width: 100%;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid #FFF;
  border-radius: 26px;
  border: 1px solid rgba(58, 123, 214, 0.17);
  background: radial-gradient(60.4% 38.37% at 13.52% 10.21%, #1E3557 0%, #0F182D 100%);
  padding: 16px 24px;
}
.contact__inp {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #FFF;
  padding: 8px 16px;
  background: transparent;
  color: #FFF;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}
.contact__inp::-moz-placeholder {
  color: #FFF;
}
.contact__inp::placeholder {
  color: #FFF;
}
.contact__btn {
  width: 100%;
}
.contact__column {
  border-radius: 16px;
  border: 1px solid #374151;
  background: #272727;
  padding: 60px 40px;
}
.contact__title-sub {
  color: #FFF;
  font-size: 36px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 24px;
}
.contact__txt {
  color: #D1D5DB;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
}

.privacy {
  margin: 160px 0 0;
  background: #fff;
  padding: 60px 0;
}
.privacy__title {
  color: #1B1816;
  text-align: center;
  font-family: Inter;
  font-size: clamp(28px, 7vw, 50px);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.privacy__text {
  color: #1B1816;
  font-family: Inter;
  font-size: 20px;
  font-weight: 400;
}