@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..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: "Unbounded", sans-serif;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

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

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

.header {
  position: fixed;
  top: 56px;
  width: 100%;
  z-index: 60;
}
.header_top {
  top: 24px;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  border-radius: 50px;
  background: #FFF;
}
@media (max-width: 767px) {
  .header__content {
    padding: 12px;
  }
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 20px;
  font-weight: 800;
  line-height: 120%;
}
.header__logo_active {
  color: #fff;
}

@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: #000;
  }
  .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%);
    background: #fff;
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
    background: #fff;
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
    background: #fff;
  }
}
@media (max-width: 991px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 150px 15px 0;
    background: #181B1E;
    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: 991px) {
  .menu__list {
    flex-direction: column;
  }
}
.menu__link {
  color: #EA983B;
  text-align: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 120%;
  padding: 16px 32px;
  display: block;
}
.menu__link_active {
  color: #FFF;
  border-radius: 30px;
  background: #EA983B;
}
.menu__link:hover {
  color: #FFF;
  border-radius: 30px;
  background: #EA983B;
}

.footer {
  margin-bottom: 24px;
}
.footer__content {
  border-radius: 40px;
  background: #FFF;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 767px) {
  .footer__content {
    padding: 24px;
  }
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer__txt {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer__row {
    gap: 20px;
  }
}
.footer__text {
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 767px) {
  .footer__menu {
    flex-direction: column;
    gap: 12px;
  }
}
.footer__menu a {
  color: #EA983B;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 120%;
  text-decoration: underline;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 32px;
  max-width: 587px;
  width: 100%;
  border-radius: 4px;
  background: #181B1E;
}
@media (max-width: 767px) {
  .cookies {
    padding: 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookies__title {
  color: #FFF;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .cookies__title {
    font-size: 32px;
  }
}
.cookies__text {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
}
.cookies__text a {
  color: #FFF;
  text-decoration: underline;
}
.cookies__btns {
  display: flex;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 767px) {
  .cookies__btns {
    flex-direction: column;
  }
}
.cookies__btn {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  border-radius: 30px;
  background: #EA983B;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.05);
  padding: 14px 48px;
}

.hero {
  margin-top: 24px;
}
.hero__content {
  background: url(../img/bg.png) no-repeat center/cover;
  padding: 205px 24px 147px;
  border-radius: 40px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero__content {
    padding: 152px 24px 56px;
  }
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.hero__text {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}
.hero__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (max-width: 575px) {
  .hero__row {
    flex-direction: column;
    max-width: 230px;
    margin: 0 auto;
  }
}
.hero__link {
  display: inline-block;
  border-radius: 30px;
  background: #EA983B;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.05);
  padding: 14px 48px;
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 575px) {
  .hero__link {
    width: 100%;
  }
}
.hero__link-sub {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  padding: 14px 48px;
  border-radius: 30px;
  background: #000;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 575px) {
  .hero__link-sub {
    width: 100%;
  }
}

.about {
  margin: 60px 0;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about__text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}
.about__text_color {
  color: #EA983B;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 180%;
}
.about__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 991px) {
  .about__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .about__row {
    grid-template-columns: repeat(1, 1fr);
  }
}

.play__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.play__title {
  color: #fff !important;
  text-align: center;
}
.play__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 767px) {
  .play__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.play__card {
  border-radius: 40px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
}
.play__img {
  width: -moz-fit-content;
  width: fit-content;
}
.play__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.play__name {
  color: #000;
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
}
.play__type {
  color: #EA983B;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}
.play__text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}
.play__link {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  border-radius: 30px;
  background: #EA983B;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.05);
  padding: 14px 0;
  width: 100%;
  display: inline-block;
}

.contact {
  margin: 155px 0 60px;
}
.contact__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.contact__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__title {
  color: #FFF;
  text-align: center;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 1.92px;
}
.contact__text {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}
.contact__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media (max-width: 991px) {
  .contact__row {
    grid-template-columns: repeat(1, 1fr);
  }
}

.form {
  border-radius: 40px;
  background: #FFF;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 767px) {
  .form {
    padding: 24px;
  }
}
.form__title {
  color: #000;
  font-size: 44px;
  font-weight: 900;
  line-height: 110%;
  letter-spacing: 1.32px;
}
@media (max-width: 767px) {
  .form__title {
    font-size: 32px;
  }
}
.form__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__label {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
}
.form__inp {
  border-radius: 30px;
  background: #000;
  box-shadow: 0 1px 2px 0 rgba(18, 26, 43, 0.05);
  padding: 10px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
}
.form__inp_mess {
  resize: none;
  height: 120px;
}
.form__btn {
  color: #000;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  border-radius: 30px;
  background: #EA983B;
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.05);
  padding: 14px 48px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.info__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.info__item {
  border-radius: 30px;
  background: #FFF;
  display: flex;
  gap: 24px;
  padding: 32px;
}
@media (max-width: 767px) {
  .info__item {
    padding: 24px;
  }
}
.info__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info__name {
  color: #000;
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}
.info__text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}
.info__card {
  padding: 32px;
  border-radius: 30px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 767px) {
  .info__card {
    padding: 24px;
  }
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup {
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.7);
  transition: transform 0.3s ease;
}

.popup-overlay.show .popup {
  transform: scale(1);
}

.popup__title {
  color: #181B1E;
  font-size: 24px;
  margin-bottom: 15px;
}

.popup__description {
  color: #181B1E;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.popup__close-btn {
  background-color: #EA983B;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.popup__close-btn:hover {
  background-color: #45a049;
}

.popup__icon {
  width: 60px;
  height: 60px;
  background-color: #EA983B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 30px;
}

.privacy {
  margin: 155px 0 60px;
}
.privacy__title {
  margin-bottom: 60px;
}
.privacy__text {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}