@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Lora:ital,wght@0,400..700;1,400..700&family=Orbitron:wght@400..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: "Baloo 2", sans-serif;
  background: #C9FFEE;
}

.lock {
  overflow: hidden;
}

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

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

.main {
  flex: 1 1 auto;
}

.title {
  color: #000;
  font-family: Orbitron;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
}
.title span {
  color: #03787C;
}

[class*=__text] {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}

.btn {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #03787C;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn__text {
  position: absolute;
  animation: spin 10s linear infinite;
  top: 4px;
  left: 4px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.text-center {
  text-align: center;
}

.white {
  color: #fff !important;
}

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  border: 1px solid #000;
  background: #C9FFEE;
}
.header__content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header__content {
    align-items: center;
    padding: 20px 0;
  }
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #03787C;
  text-align: center;
  font-family: Orbitron;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  .header__logo {
    font-size: 20px;
  }
}

@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%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
@media (max-width: 991px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #C9FFEE;
    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;
}
@media (max-width: 991px) {
  .menu__list {
    flex-direction: column;
    gap: 20px;
  }
}
.menu__item {
  padding: 31px 40px;
}
.menu__item:first-child {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
@media (max-width: 991px) {
  .menu__item:first-child {
    border: none;
  }
}
.menu__item:last-child {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
@media (max-width: 991px) {
  .menu__item:last-child {
    border: none;
  }
}
@media (max-width: 991px) {
  .menu__item {
    padding: 0;
  }
}
.menu__link {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}

.footer {
  border: 18px solid #28D8D8;
  background: #C9FFEE;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__title {
  color: #03787C;
  font-family: Orbitron;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 575px) {
  .footer__title {
    text-align: center;
  }
}
.footer__address {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}
.footer__address a {
  color: #000;
}
.footer__subtitle {
  color: #000;
  text-align: center;
  font-size: clamp(48px, 11vw, 160px);
  font-style: normal;
  font-weight: 400;
  line-height: 90%;
  text-transform: uppercase;
}
.footer__block {
  background: #28D8D8;
  padding: 10px 0;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
  }
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 80px;
}
.footer__menu a {
  color: #000;
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 991px) {
  .footer__menu {
    gap: 10px;
  }
}
@media (max-width: 575px) {
  .footer__menu {
    flex-direction: column;
  }
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__txt {
  text-align: center;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 20px;
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 40px;
  max-width: 600px;
  background: #03787C;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #FFF;
  font-family: Orbitron;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .cookies__title {
    font-size: 30px;
    text-align: center;
  }
}
.cookies__text {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
}
@media (max-width: 767px) {
  .cookies__text {
    text-align: center;
  }
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .cookies__btns {
    justify-content: center;
  }
}
.cookies__btn {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
  padding: 14px 40px;
  background: #C9FFEE;
}
.cookies__btn:first-child {
  opacity: 0.4;
}

.hero {
  margin: 80px 0 0;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .hero {
    padding: 40px 0;
  }
}
.hero__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.hero__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .hero__row {
    flex-direction: column;
    gap: 20px;
  }
}
.hero__column {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 991px) {
  .hero__column {
    max-width: 100%;
    align-items: center;
  }
}
.hero__img {
  position: absolute;
  left: 50%;
  bottom: -50px;
  z-index: -1;
  transform: translateX(-50%);
}
@media (max-width: 991px) {
  .hero__img {
    position: static;
    transform: none;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .hero__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero__text_right {
  text-align: right;
}

.about {
  padding: 0 0 80px;
}
@media (max-width: 991px) {
  .about {
    padding: 0 0 40px;
  }
}
.about__content {
  display: flex;
  gap: 40px;
}
@media (max-width: 991px) {
  .about__content {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .about__content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about__card {
  background: #28D8D8;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__img {
  height: 300px;
}
.about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .about__img {
    height: auto;
  }
}
.about .hero__link {
  margin-top: auto;
}

.words-marquee {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.words-marquee__line {
  overflow: hidden;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.words-marquee__line + .words-marquee__line {
  border-top: none;
}
.words-marquee__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: marquee-left 20s linear infinite;
}
.words-marquee__line--reverse .words-marquee__track {
  animation: marquee-right 20s linear infinite;
}
.words-marquee__track span {
  padding: 16px 32px;
  font-family: sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  border-right: 1px solid #000;
}
.words-marquee__track span.bold {
  font-weight: 700;
  color: #03787C;
}

@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.choose__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .choose__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .choose__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.choose__card {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  background: #28D8D8;
}
.choose__name {
  color: #000;
  text-align: right;
  font-size: 20px;
  font-weight: 400;
}
.choose__subimg {
  grid-column: span 2;
}
.choose__subimg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .choose__subimg {
    grid-column: span 1;
  }
}

.faq {
  padding: 80px 0;
}
@media (max-width: 991px) {
  .faq {
    padding: 40px 0;
  }
}
.faq__content {
  display: flex;
  gap: 50px;
}
@media (max-width: 767px) {
  .faq__content {
    flex-direction: column;
  }
}
.faq__title {
  border: 1px solid #000;
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
  font-weight: 400;
}
.faq__title span {
  font-weight: 700;
}
.faq__title span:nth-child(2) {
  color: #07F;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}
.faq__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 767px) {
  .faq__column {
    gap: 20px;
  }
}
.faq__accardion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}
.faq__subrow {
  display: flex;
  align-items: center;
  gap: 21px;
}
.faq__plus {
  width: 14px;
  height: 14px;
  position: relative;
  flex-shrink: 0;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: #03787C;
  transition: transform 0.3s ease;
}
.faq__plus::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq__plus::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.faq__accardion.active .faq__plus::after {
  transform: translateX(-50%) rotate(90deg);
}
.faq__name {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.2px;
  text-transform: capitalize;
}
.faq__text {
  border-left: 2px solid #03787C;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}
.faq__accardion.active .faq__text {
  max-height: 200px;
  opacity: 1;
  padding: 6px 0 6px 10px;
}

.games {
  margin: 80px 0 0;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .games {
    padding: 40px 0;
  }
}
.games__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.games__select {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.games__row {
  max-width: 850px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 260px;
}
.games__row a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.games__row:nth-child(2) {
  margin-left: auto;
}
@media (max-width: 991px) {
  .games__row:nth-child(2) {
    margin: 0;
  }
}
.games__row:nth-child(3) {
  margin-left: auto;
  margin-right: 270px;
}
@media (max-width: 991px) {
  .games__row:nth-child(3) {
    margin: 0;
  }
}
.games__row:nth-child(4) {
  margin-left: 287px;
  margin-right: auto;
}
@media (max-width: 991px) {
  .games__row:nth-child(4) {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .games__row_desk {
    display: none;
  }
}
@media (max-width: 991px) {
  .games__row {
    gap: 20px;
  }
  .games__row a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575px) {
  .games__row {
    flex-direction: column;
  }
}
.games__link-mob {
  display: none;
}
@media (max-width: 991px) {
  .games__link-mob {
    display: block;
  }
}

.game {
  margin: 80px 0 0;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .game {
    padding: 40px 0;
  }
}
.game__content {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media (max-width: 991px) {
  .game__content {
    gap: 80px;
  }
}
.game__column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 991px) {
  .game__column {
    gap: 20px;
  }
}
.game__row {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .game__row {
    flex-direction: column;
    gap: 20px;
  }
}
.game__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 991px) {
  .game__item {
    align-items: center;
  }
}
.game__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .game__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.game__card {
  background: #28D8D8;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.game__card-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.game__name {
  color: #000;
  font-size: 20px;
  font-weight: 400;
}

.privacy {
  margin: 80px 0 0;
  padding: 80px 0;
}
@media (max-width: 991px) {
  .privacy {
    padding: 40px 0;
  }
}
.privacy__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 991px) {
  .privacy__content {
    gap: 20px;
  }
}