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

.lock {
  overflow: hidden;
}

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

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

.h1 {
  color: #FFB60D;
  text-align: center;
  font-size: clamp(24px, 9vw, 60px);
  font-weight: 800;
  letter-spacing: -1.2px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .h1 {
    letter-spacing: -0.48px;
  }
}

.h2 {
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.h3 {
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 92%;
  letter-spacing: -0.48px;
  text-transform: uppercase;
}

.main {
  flex: 1 1 auto;
}

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

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

.header {
  position: fixed;
  width: 100%;
  padding: 16px 0;
}
.header_bg {
  background: url(../img/bg-header.webp) no-repeat center/cover;
}
.header__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.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 {
  border-radius: 12px;
  border: 1px solid #FFB60D;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__menu a {
  color: #FBF8E8;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.header__years {
  border-radius: 12px;
  background: #000;
  box-shadow: 0 0 12px 0 rgba(255, 255, 255, 0.25);
  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: 400;
  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: 16px;
}
@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: #130E08;
    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-bottom: 32px;
}
.footer__content {
  border-radius: 28px;
  border: 1px solid #FFB60D;
  background: rgba(255, 255, 255, 0.05);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (max-width: 767px) {
  .footer__content {
    padding: 48px 20px;
  }
}
.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 {
  background: url(../img/bg.webp) no-repeat center/cover;
  padding: 200px 0 40px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero__text {
  color: #9F9C90;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}
.hero__link {
  color: #090D06;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 140%;
  padding: 20px 28px;
  border-radius: 12px;
  background: #FFB60D;
}

.choose {
  padding: 60px 0;
}
.choose__content {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.choose__row {
  display: flex;
  gap: 70px;
}
@media (max-width: 991px) {
  .choose__row {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 991px) {
  .choose__img {
    width: -moz-fit-content;
    width: fit-content;
  }
  .choose__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.choose__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.choose__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.choose__name {
  color: #FFB60D;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.48px;
  text-transform: uppercase;
}
.choose__text {
  color: #BFBFBF;
  font-size: 18px;
  font-weight: 400;
}

.info {
  padding: 60px 0;
}
.info__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 767px) {
  .info__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.info__card {
  border-radius: 28px;
  border: 1px solid #FFB60D;
  box-shadow: 0 0 8px 0 #FFCF0D;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.play {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.05);
}
.play__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.play__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
}
.play__text {
  color: #9F9C90;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}
.play__images {
  border-radius: 16px;
  border: 1px solid rgba(55, 65, 81, 0);
  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 {
  padding: 60px 0;
}
.about__content {
  display: flex;
  align-items: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 991px) {
  .about__content {
    flex-direction: column;
    gap: 64px;
  }
}
.about__column {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 56px;
}
@media (max-width: 991px) {
  .about__column {
    padding: 56px 56px 0;
  }
}
.about__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__title {
  text-align: left;
  color: #FFB60D;
}
.about__text {
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
}
.about__link {
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991px) {
  .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: 60px 0;
}
.reviews__content {
  display: flex;
  flex-direction: column;
  gap: 58px;
}
.reviews__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reviews__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 48px 32px;
  border-radius: 28px;
  border: 1px solid #FFB60D;
}
.reviews__name {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}
.reviews__text {
  color: #9F9C90;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.contact {
  padding: 60px 0;
}
.contact__content {
  display: flex;
  flex-direction: column;
  gap: 58px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 524px;
  width: 100%;
  padding: 48px 32px;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid #FFB60D;
}
.contact__inp {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(241, 251, 232, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(241, 251, 232, 0.4);
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  padding: 20px 24px;
}
.contact__btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 12px auto 0;
}
.contact__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 32px;
  border-radius: 28px;
  border: 1px solid #FFB60D;
  background: rgba(255, 255, 255, 0.05);
}
.contact__text {
  color: #9F9C90;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}

.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;
}