@import url(https://fonts.googleapis.com/css?family=Krona+One:regular);
* {
   padding: 0;
   margin: 0;
   border: 0;
}

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

:focus,
:active {
   outline: none;
}

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

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

html,
body {
   height: 100%;
   width: 100%;
   font-size: 100%;
   line-height: 1;
   font-size: 10px;
   -ms-text-size-adjust: 100%;
   -moz-text-size-adjust: 100%;
   -webkit-text-size-adjust: 100%;
}

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

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

button {
   cursor: pointer;
}

button::-moz-focus-inner {
   padding: 0;
   border: 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-size: inherit;
   font-weight: inherit;
}

/*--------------------*/
html {
   font-size: 62.5%;
   scroll-behavior: smooth;
}

body {
   font-family: "Krona One";
   background-color: #fff;
   color: #000;
   font-size: 10px;
}

.page {
   display: flex;
   flex-direction: column;
   justify-content: space-between;
   height: 100%;
}
.container {
   max-width: 1420px;
   margin: 0 auto;
   padding: 0 1rem;
}

.lock {
   overflow: hidden;
}

.btn {
   background-color: #10cfc9;
   color: #fff;
   border-radius: 20px;
   font-size: 1.4rem;
   line-height: 2rem;
   text-transform: uppercase;
   text-align: center;
   padding: 1rem 3rem;
   transition: all 0.3s ease-in-out;
}
.btn:hover {
   filter: brightness(70%);
}

@media screen and (max-width: 965px) {
   .btn {
      font-size: 1rem;
      padding: 1rem;
   }
}
/* blocks */
.header {
   background: #fff;
   position: fixed;
   top: 0;
   right: 0;
   left: 0;
   z-index: 999;
}
.header__wrap {
   padding: 1.8rem 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.header__list {
   display: flex;
   align-items: center;
   column-gap: 3rem;
}
.header__link {
   color: #000;
   font-size: 1.4rem;
   line-height: 2.5rem;
   transition: all 0.3s ease-in-out;
}
.header__link:hover {
   color: #e5801c;
}
.header__link.active {
   color: #e5801c;
}
.header__box {
   display: flex;
   align-items: center;
   justify-content: space-between;
   column-gap: 2rem;
}
.header__reg {
   background-color: #e5801c;
}
.header__burger {
   display: none;
   width: 40px;
   height: 20px;
   background: none;
   border: none;
   padding: 0;
   font-size: 0;
   color: transparent;
   position: relative;
}
.header__burger::before,
.header__burger::after,
.header__burger span {
   display: block;
   width: 30px;
   height: 2px;
   background-color: #000;
   position: absolute;
   right: 0;
   z-index: 999;
   border-radius: 10px;
}
.header__burger::before,
.header__burger::after {
   content: "";
   transition: linear 0.3s;
}
.header__burger::before {
   top: 0;
}
.header__burger::after {
   bottom: 0;
}
.header__burger span {
   width: 30px;
   top: 44%;
   transition: linear 0.3s;
   transform: scale(1);
}
.header__burger.active span {
   transform: scale(0);
}
.header__burger.active::before,
.header__burger.active::after {
   top: 50%;
}
.header .header__burger.active::before {
   transform: rotate(45deg) translate(0, -15%);
}
.header .header__burger.active::after {
   transform: rotate(-45deg) translate(0, 15%);
}

@media screen and (max-width: 965px) {
   .header__nav {
      position: fixed;
      top: 0;
      right: 0;
      z-index: -1;
      width: 300px;
      height: 100%;
      background: #fff;
      padding: 10rem 0 0 3rem;
      transform: translateX(100%);
      transition: transform 0.5s ease-in;
   }
   .header__nav.active {
      transform: translateX(0%);
   }
   .header__list {
      flex-direction: column;
      align-items: flex-start;
   }
   .header__item + .header__item {
      margin-top: 1rem;
   }
   .header__box {
      column-gap: 1rem;
   }
   .header__burger {
      display: block;
   }
}
@media screen and (max-width: 481px) {
   .header .container {
      padding: 0 1rem;
   }
   .header__logo {
      max-width: 120px;
   }
   .header__logo img {
      width: 100%;
   }
}
.home__wrap {
   padding: 12.2rem 0 8.8rem 0;
}
.home__title {
   font-size: 7.5rem;
   line-height: 7rem;
   font-weight: 700;
}
.home__subtitle {
   font-size: 1.8rem;
   line-height: 2rem;
   color: #fff500;
}
.home__box {
   background-color: #10cfc9;
   padding: 5.5rem;
   border-radius: 20px;
   display: flex;
   align-items: center;
   column-gap: 5rem;
   margin-top: 2rem;
}
.home__box svg {
   min-width: 89px;
   max-height: 89px;
}
.home__box p {
   font-size: 2rem;
   line-height: 2.5rem;
}
.home__images {
   width: 100%;
   min-height: 120px;
   cursor: pointer;
}

.swiper-slide {
   cursor: pointer;
}
.swiper-slide img {
   width: 100%;
}

.swiper-pagination-bullet {
   background: #fff;
   opacity: 0.5;
}

.swiper-pagination-bullet-active {
   background: #fff;
   opacity: 1;
}

@media screen and (max-width: 965px) {
   .home__wrap {
      padding: 10rem 0 5rem 0;
   }
   .home__box {
      padding: 2rem;
      flex-direction: column;
   }
   .home__box svg {
      min-width: 50px;
      max-height: 50px;
   }
   .home__box p {
      font-size: 1.2rem;
      line-height: 2rem;
   }
}
.blank__wrap {
   display: flex;
   justify-content: space-between;
   align-items: center;
   border-bottom: 1px solid #c4c4c4;
   padding-bottom: 3.7rem;
}
.blank__title {
   font-size: 2.4rem;
   color: #e5801c;
}
.blank__input {
   background: url(../img/search.svg) 95% 50% no-repeat;
   border: 1px solid #707271;
   border-radius: 20px;
   max-width: 320px;
   width: 100%;
   height: 40px;
   padding: 0 2rem;
}
.blank__btn {
   display: flex;
   align-items: center;
   column-gap: 1rem;
   background-color: #e5801c;
   padding: 1rem 1.5rem;
}

@media screen and (max-width: 965px) {
   .blank__title {
      font-size: 1.8rem;
   }
   .blank__input {
      max-width: 200px;
   }
}
.game__wrap {
   padding: 3rem 0;
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   column-gap: 4rem;
   row-gap: 3rem;
}
.game__wrap a {
   overflow: hidden;
   height: 220px;
   border-radius: 20px;
   text-transform: uppercase;
   font-size: 1.6rem;
   line-height: 2rem;
   color: #fff;
   transition: all 0.3s ease-in-out;
   position: relative;
}
.game__wrap a:hover {
   transform: scale(1.05);
}
.game__wrap a:hover .game__name {
   color: #10cfc9;
   background-color: #fff;
}
.game__wrap img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.game__new {
   position: absolute;
   top: 20px;
   left: 20px;
   padding: 1rem;
   border-radius: 5px;
   background-color: #e51c1c;
}
.game__name {
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   padding: 1rem;
   text-align: center;
   background-color: #10cfc9;
   border-radius: 0px 0px 20px 20px;
   transition: all 0.3s ease-in-out;
}

.contacts__wrap {
   padding: 4.5rem 0;
}
.contacts__title {
   color: #fff500;
   text-align: left;
   margin-bottom: 2rem;
}
.contacts__item {
   display: flex;
   align-items: center;
   font-size: 2.4rem;
   line-height: 3rem;
   column-gap: 1.5rem;
}
.contacts__item + .contacts__item {
   margin-top: 2rem;
}

.table__wrap {
   padding: 6rem 0 8rem 0;
   max-width: 920px;
   margin: 0 auto;
}
.table__top {
   display: flex;
   justify-content: flex-end;
   align-items: center;
}
.table__title {
   font-size: 2.4rem;
   line-height: 3rem;
   color: #10cfc9;
}
.table__block {
   background-color: #10cfc9;
   border-radius: 10px;
   width: 200px;
   height: 90px;
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
   text-transform: uppercase;
   font-size: 1.4rem;
   line-height: 1.7rem;
}
.table__block span {
   font-size: 3.2rem;
   line-height: 4rem;
}
.table__list {
   border: 1px solid #10cfc9;
   border-radius: 20px;
   overflow: hidden;
   margin-top: 3rem;
}
.table__item {
   display: grid;
   grid-template-columns: repeat(5, 20%);
   justify-items: center;
   align-items: center;
   height: 50px;
   font-size: 1.6rem;
   line-height: 2rem;
   color: #707271;
   text-transform: uppercase;
}
.table__item:first-child {
   background-color: #10cfc9;
   color: #fff;
}
.table__item span {
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
   width: 100%;
   height: 100%;
   border-bottom: 1px solid #10cfc926;
}
.table__item span:not(:last-child) {
   border-right: 1px solid #10cfc9;
}
.table__num {
   padding: 0.5rem;
}
.table__num strong {
   background-color: #c3922e;
   color: #fff;
   border-radius: 10px;
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
}
.table__num_ser strong {
   background-color: #d0d0ce;
}
.table__num_br strong {
   background-color: #b95f06;
}

@media screen and (max-width: 965px) {
   .table__title {
      font-size: 1.8rem;
   }
   .table__block {
      font-size: 1.2rem;
      width: 100px;
   }
   .table__block span {
      font-size: 1.8rem;
   }
   .table__item {
      grid-template-columns: 10% 30% 30% 30%;
      font-size: 1rem;
   }
   .table__item span:last-child {
      display: none;
   }
}
.privacy__wrap {
   padding: 15rem 0 5rem 0;
}
.privacy__title {
   font-size: 3rem;
   font-weight: 700;
   text-transform: uppercase;
   text-align: center;
}
.privacy__list {
   font-size: 1.4rem;
   line-height: 2rem;
   margin-top: 5rem;
}
.privacy__list a {
   color: #000;
   text-decoration: underline;
}
.privacy__item {
   margin: 2rem 0;
   font-weight: 700;
   font-size: 2rem;
   line-height: 2.2rem;
}

.promos__img {
   width: 100%;
   cursor: pointer;
   transition: all 0.3s ease-in-out;
}
.promos__img:hover {
   transform: scale(0.98);
}
.promos__img + .promos__img {
   margin-top: 3rem;
}

.modal {
   display: none;
   -ms-flex-direction: column;
   flex-direction: column;
   -ms-flex-pack: center;
   justify-content: center;
   -ms-flex-align: center;
   align-items: center;
   width: 100%;
   height: 100%;
   padding: 1rem;
   background-color: rgba(0, 0, 0, 0.8);
   position: fixed;
   top: 0;
   left: 0;
   z-index: 999;
}

.modal.show {
   display: -ms-flexbox;
   display: flex;
}

.no-scroll {
   overflow: hidden;
}

.modal__content {
   width: 100%;
   max-width: 680px;
   position: relative;
   background-color: #fff;
   color: #212121;
   opacity: 0;
   padding: 5rem 2rem;
   transform: translateY(-50px);
   transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
   border-radius: 30px;
   display: flex;
   flex-direction: column;
   align-items: center;
}

.modal__box {
   max-width: 440px;
   font-size: 1.4rem;
}

.modal__title {
   font-size: 3.5rem;
   line-height: 4.6rem;
   text-align: center;
   margin-bottom: 3rem;
}

.modal__text {
   font-size: 1.6rem;
   line-height: 2rem;
   color: #707271;
   margin-bottom: 4rem;
   text-align: center;
}

.modal__input {
   border: 1px solid #000000;
   width: 100%;
   height: 50px;
   border-radius: 10px;
}
.modal__input_text {
   background: url(../img/admin.svg) 24px 50% no-repeat;
}
.modal__input_email {
   background: url(../img/email.svg) 24px 50% no-repeat;
}
.modal__input_pass {
   background: url(../img/secur.svg) 24px 50% no-repeat;
}
.modal__input[type="text"],
.modal__input[type="email"],
.modal__input[type="password"] {
   padding-left: 5.8rem;
}
.modal__input + .modal__input {
   margin-top: 2rem;
}

.modal__info {
   font-size: 1.4rem;
   line-height: 1.7rem;
   display: flex;
   align-items: flex-start;
   column-gap: 1rem;
   margin-top: 3.5rem;
}
.modal__info input {
   min-width: 30px;
   height: 30px;
}
.modal__info_log {
   margin: 0;
   align-items: center;
}

.modal__group {
   display: flex;
   column-gap: 1rem;
   margin: 3rem 0 6rem 0;
}
.modal__group input[type="text"] {
   padding-left: 2.4rem;
}

.modal__click {
   background-color: #e5801c;
   border-radius: 10px;
}

.modal__btn {
   width: 100%;
   font-size: 2.4rem;
   border-radius: 10px;
}

.modal__block {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin: 1.7rem 0 6rem 0;
}

.modal__sign {
   text-align: center;
   margin-top: 2rem;
}

.modal__close {
   padding: 0;
   background: none;
   border: none;
   cursor: pointer;
   opacity: 0.5;
   position: absolute;
   top: 5rem;
   right: 5rem;
   transition: transform 0.2s linear, opacity 0.2s linear;
}

.modal__close:hover {
   transform: rotate(90deg);
   opacity: 1;
}

@media screen and (max-width: 965px) {
   .modal__content {
      padding: 2rem;
   }

   .modal__box {
      font-size: 1rem;
   }

   .modal__input {
      height: 40px;
   }

   .modal__block {
      margin: 3rem 0;
   }

   .modal__title {
      font-size: 2rem;
      line-height: 2rem;
      margin-bottom: 2rem;
   }

   .modal__text {
      font-size: 1.2rem;
      margin-bottom: 3rem;
   }

   .modal__info {
      font-size: 1.2rem;
   }
   .modal__info input {
      min-width: 15px;
      height: 15px;
   }

   .modal__group {
      margin: 3rem 0;
   }

   .modal__btn {
      font-size: 1.4rem;
   }

   .modal__close {
      top: 20px;
      right: 20px;
   }
}
.footer {
   background-color: #000;
   color: #fff;
}
.footer__wrap {
   padding: 3rem 0;
   text-align: center;
}
.footer__list {
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
   row-gap: 1rem;
   column-gap: 2rem;
}
.footer__list a {
   color: #fff;
   font-size: 2rem;
   line-height: 2.5rem;
}
.footer__img {
   max-width: 714px;
   width: 100%;
   margin: 3rem auto;
}
.footer__text {
   font-size: 1.6rem;
   line-height: 2rem;
}
.footer__text + .footer__text {
   margin-top: 2rem;
}

@media screen and (max-width: 768px) {
   .footer__wrap {
      font-size: 1rem;
   }
   .footer__box {
      flex-direction: column;
      row-gap: 2rem;
      margin-top: 4rem;
   }
   .footer__nav {
      column-gap: 1rem;
   }
}
