@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Medium.woff2") format("woff2"), url("../fonts/Ubuntu-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu.woff2") format("woff2"), url("../fonts/Ubuntu.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/Ubuntu-Bold.woff2") format("woff2"), url("../fonts/Ubuntu-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Obrazec";
  src: url("../fonts/Obrazec-2.woff2") format("woff2"), url("../fonts/Obrazec-2.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

body {
  font-family: "Ubuntu";
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a img {
  border: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
}

@media screen and (max-width: 1390px) {
  .container {
    width: 1130px;
  }
}

@media screen and (max-width: 1210px) {
  .container {
    width: 970px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 16px;
  }
}

.wrapper {
  background: #1b0001;
  position: relative;
  overflow: hidden;
  color: #ededed;
  z-index: 2;
}

.neon-decor {
  display: flex;
  position: absolute;
  top: 649px;
  z-index: 0;
}

.neon-decor--second {
  top: auto;
  bottom: 0;
}

@media screen and (max-width: 1210px) {
  .neon-decor {
    display: none;
  }
}

.title {
  font-weight: 500;
  font-size: 18px;
  text-transform: uppercase;
  color: #ededed;
  padding: 16px 24px;
  background: #161616;
  border: 1.4px solid #ededed;
  border-radius: 24px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.header {
  z-index: 7;
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  width: 100%;
  margin: 0 auto;
}

.header__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.header__logo {
  max-width: 123px;
  display: flex;
  width: 123px;
}

@media screen and (max-width: 991px) {
  .header__logo {
    max-width: 100px;
  }
}

@media screen and (max-width: 767px) {
  .header__logo {
    max-width: 49px;
    width: 49px;
  }
}

.header__btn {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  position: relative;
  padding: 20px 80px;
}

@media screen and (max-width: 991px) {
  .header__btn {
    padding: 14px 47px;
  }
}

@media screen and (max-width: 767px) {
  .header__btn {
    font-size: 12px;
    padding: 13px 20px;
  }
}

.header__btn p {
  z-index: 2;
  position: relative;
}

.header__btn svg {
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 991px) {
  .header__btn svg {
    width: 200px;
    height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .header__btn svg {
    width: 120px;
    height: 40px;
  }
}

@media screen and (max-width: 767px) {
  .btn-desc {
    display: none;
  }
}

.btn-mob {
  display: none;
}

@media screen and (max-width: 767px) {
  .btn-mob {
    display: flex;
  }
}

.showcase {
  padding-top: 167px;
  padding-bottom: 40px;
  background: url(../images/bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 991px) {
  .showcase {
    padding-top: 120px;
  }
}

@media screen and (max-width: 767px) {
  .showcase {
    padding-top: 95px;
    padding-bottom: 24px;
  }
}

.showcase::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(27, 0, 1, 0) 0%, #1b0001 90.25%);
}

@media screen and (max-width: 767px) {
  .showcase::before {
    height: 100%;
    width: 100%;
    background: linear-gradient(270deg, rgba(36, 0, 1, 0) 0%, #240001 90.25%);
  }
}

.showcase--second {
  background: url(../images/bg3.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 767px) {
  .showcase--second {
    padding-top: 72px;
  }
}

.showcase--second .showcase__bottom {
  margin-top: 244px;
}

@media screen and (max-width: 991px) {
  .showcase--second .showcase__bottom {
    margin-top: 210px;
  }
}

@media screen and (max-width: 767px) {
  .showcase--second .showcase__bottom {
    margin-top: 354px;
  }
}

.showcase__title {
  font-weight: 800;
  font-size: 330px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f30e17;
  font-family: "Obrazec";
}

@media screen and (max-width: 1210px) {
  .showcase__title {
    font-size: 250px;
  }
}

@media screen and (max-width: 991px) {
  .showcase__title {
    font-size: 200px;
  }
}

@media screen and (max-width: 767px) {
  .showcase__title {
    font-size: 160px;
  }
}

.showcase__title--big {
  position: relative;
  z-index: 2;
}

.showcase__title--mini {
  font-weight: 800;
  font-size: 200px;
  text-transform: uppercase;
  color: #1b1b1a;
  display: block;
  position: relative;
  margin-top: -115px;
  z-index: 0;
}

@media screen and (max-width: 1210px) {
  .showcase__title--mini {
    font-size: 150px;
    margin-top: -90px;
  }
}

@media screen and (max-width: 991px) {
  .showcase__title--mini {
    font-size: 120px;
    margin-top: -75px;
  }
}

@media screen and (max-width: 767px) {
  .showcase__title--mini {
    font-size: 100px;
    margin-top: -15px;
    white-space: nowrap;
  }
}

.showcase__stroke {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #fdfdfd;
  position: absolute !important;
  top: 0;
  left: 0;
  white-space: nowrap;
}

.showcase__text {
  text-transform: uppercase;
  max-width: 288px;
  position: relative;
  z-index: 2;
}

.showcase__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 125px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .showcase__bottom {
    margin-top: 90px;
  }
}

@media screen and (max-width: 767px) {
  .showcase__bottom {
    margin-top: 251px;
    gap: 16px;
  }
}

.showcase__bottom p {
  font-weight: 800;
  font-size: 64px;
  text-transform: uppercase;
  font-family: "Obrazec";
}

@media screen and (max-width: 767px) {
  .showcase__bottom p {
    font-size: 40px;
  }
}

.showcase__scroll {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(243, 14, 23, 0.3) 0%, rgba(195, 0, 8, 0.3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.about {
  position: relative;
  z-index: 3;
  padding: 100px 0;
}

@media screen and (max-width: 1210px) {
  .about {
    padding: 80px 0;
  }
}

@media screen and (max-width: 991px) {
  .about {
    padding: 80px 0 40px;
  }
}

.about__info {
  display: flex;
  gap: 16px;
}

.about__name {
  text-transform: uppercase;
}

.about__marker {
  font-family: "Obrazec";
  font-weight: 800;
  text-transform: uppercase;
}

.about__list {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (max-width: 991px) {
  .about__list {
    max-width: 500px;
  }
}

@media screen and (max-width: 767px) {
  .about__list {
    max-width: 100%;
    margin-top: 24px;
  }
}

.about__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid #333;
}

.about__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .about__items {
    flex-direction: column;
  }
}

.about__slide {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .about__slide {
    flex-direction: column;
  }
}

@media screen and (max-width: 767px) {
  .about__slide--info {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
  }
}

.about__slide--second .about__slide--name {
  left: -230px;
}

@media screen and (max-width: 1210px) {
  .about__slide--second .about__slide--name {
    left: -150px;
  }
}

@media screen and (max-width: 991px) {
  .about__slide--second .about__slide--name {
    left: -120px;
  }
}

.about__slide--third .about__slide--name {
  left: -290px;
}

@media screen and (max-width: 1210px) {
  .about__slide--third .about__slide--name {
    left: -160px;
  }
}

@media screen and (max-width: 991px) {
  .about__slide--third .about__slide--name {
    left: -130px;
  }
}

.about__slide--third .about__slide--name span {
  margin-left: 60px;
}

@media screen and (max-width: 991px) {
  .about__slide--third .about__slide--name span {
    margin-left: 30px;
  }
}

.about__slide--img {
  display: flex;
  transition: 300ms;
}

@media screen and (max-width: 767px) {
  .about__slide--img {
    width: 100%;
  }
  .about__slide--img img {
    width: 100%;
  }
}

.about__slide--name {
  font-weight: 800;
  font-size: 230px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: "Obrazec";
  position: absolute;
  right: 203px;
  bottom: -40px;
  white-space: nowrap;
  transition: 300ms;
}

@media screen and (max-width: 1210px) {
  .about__slide--name {
    font-size: 190px;
    right: 268px;
    bottom: -30px;
  }
}

@media screen and (max-width: 991px) {
  .about__slide--name {
    font-size: 140px;
  }
}

@media screen and (max-width: 767px) {
  .about__slide--name {
    position: static;
    font-size: 60px;
  }
}

.about__slide--name span {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 4px #fdfdfd;
  top: 0;
  left: 0;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .about__slide--name span {
    -webkit-text-stroke: 2px #fdfdfd;
  }
}

@media screen and (max-width: 767px) {
  .about__slide--name span {
    -webkit-text-stroke: 1px #fdfdfd;
  }
}

.about__slide--mini {
  text-transform: uppercase;
  margin-right: 30px;
  color: #fff;
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .about__slide--mini {
    margin-bottom: 24px;
  }
}

.about__swiper {
  max-width: 820px;
  margin: 100px 0 0 auto;
  overflow: visible;
}

@media screen and (max-width: 991px) {
  .about__swiper {
    max-width: 600px;
  }
}

@media screen and (max-width: 767px) {
  .about__swiper {
    max-width: 100%;
  }
}

.about .swiper-slide-active .about__slide--mini {
  opacity: 1;
}

.about .swiper-slide-next .about__slide--name {
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .about .swiper-slide-next .about__slide--name {
    margin-left: -200px;
    opacity: 1;
    color: #2a2828;
  }
  .about .swiper-slide-next .about__slide--name span {
    -webkit-text-fill-color: #2a2828;
    -webkit-text-stroke: 0px;
  }
}

.about .swiper-slide-prev {
  opacity: 1 !important;
}

.about .swiper-slide-prev .about__slide--img {
  opacity: 0;
}

.about .swiper-slide-prev .about__slide--name {
  left: auto;
  right: 0;
  color: #2a2828;
}

.about .swiper-slide-prev .about__slide--name span {
  -webkit-text-fill-color: #2a2828;
  -webkit-text-stroke: 0px;
}

.about__slide--first.swiper-slide-prev .about__slide--name {
  right: 250px;
}

.about__slide--four.swiper-slide-prev .about__slide--name {
  right: 270px;
}

.swiper__nav {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  gap: 538px;
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  .swiper__nav {
    gap: 20px;
    justify-content: space-between;
  }
}

@media screen and (max-width: 767px) {
  .swiper__nav {
    display: none;
  }
}

.swiper-button-next {
  background-image: url(../images/next.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 133px;
  height: 54px;
  z-index: 2;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  padding-left: 24px;
  position: static;
  margin: 0;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #000;
  font-family: "Obrazec";
}

.swiper-button-next::after {
  display: none;
}

.swiper-button-prev {
  background-image: url(../images/prev.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 133px;
  height: 54px;
  z-index: 2;
  cursor: pointer;
  display: flex;
  position: static;
  margin: 0;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #000;
  font-family: "Obrazec";
  justify-content: flex-end;
  padding-right: 24px;
}

.swiper-button-prev::after {
  display: none;
}

.reviews {
  padding: 100px 0 200px;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 1210px) {
  .reviews {
    padding: 80px 0 160px;
  }
}

@media screen and (max-width: 991px) {
  .reviews {
    padding: 60px 0 120px;
  }
}

@media screen and (max-width: 767px) {
  .reviews {
    padding: 40px 0;
  }
}

.reviews__blocks {
  display: flex;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .reviews__blocks {
    flex-direction: column;
  }
}

.reviews__block {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-right: 57px;
  padding-right: 57px;
  border-right: 1px solid #333;
}

@media screen and (max-width: 1390px) {
  .reviews__block {
    margin-right: 30px;
    padding-right: 30px;
  }
}

@media screen and (max-width: 991px) {
  .reviews__block {
    margin-right: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .reviews__block {
    margin: 0 0 24px 0;
    padding: 0 0 24px 0;
    border-bottom: 1px solid #333;
  }
}

.reviews__block:last-child {
  margin: 0;
  padding: 0;
  border: 0;
}

.reviews__stars {
  display: flex;
  align-items: center;
  gap: 6px;
}

.reviews__name {
  font-weight: 800;
  font-size: 64px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: "Obrazec";
}

.reviews__img {
  display: flex;
  width: 100%;
  height: 100%;
}

.reviews__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.reviews__items {
  position: relative;
}

.decor-text {
  font-weight: 800;
  font-size: 341px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Obrazec";
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 4px rgba(255, 255, 255, 0.2);
  position: absolute;
  z-index: 0;
}

@media screen and (max-width: 1210px) {
  .decor-text {
    font-size: 250px;
  }
}

@media screen and (max-width: 991px) {
  .decor-text {
    font-size: 180px;
  }
}

@media screen and (max-width: 767px) {
  .decor-text {
    display: none;
  }
}

.decor-text__reviews {
  bottom: -196px;
  right: -70px;
}

@media screen and (max-width: 1210px) {
  .decor-text__reviews {
    bottom: -153px;
    right: -50px;
  }
}

.decor-text__price {
  left: -55px;
  top: 390px;
}

.decor-text__games {
  top: -183px;
  right: -62px;
}

@media screen and (max-width: 1210px) {
  .decor-text__games {
    top: -120px;
  }
}

@media screen and (max-width: 991px) {
  .decor-text__games {
    right: 0;
  }
}

.decor-text__tournament {
  bottom: -255px;
  left: -57px;
}

@media screen and (max-width: 1210px) {
  .decor-text__tournament {
    bottom: -194px;
  }
}

@media screen and (max-width: 991px) {
  .decor-text__tournament {
    left: -20px;
  }
}

.price {
  position: relative;
  z-index: 3;
  padding-bottom: 200px;
  padding-top: 100px;
}

@media screen and (max-width: 1210px) {
  .price {
    padding-bottom: 160px;
    padding-top: 80px;
  }
}

@media screen and (max-width: 991px) {
  .price {
    padding-bottom: 120px;
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .price {
    padding-bottom: 80px;
    padding-top: 40px;
  }
}

.price__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .price__head {
    flex-direction: column;
    gap: 40px;
  }
}

.price__mini {
  text-align: right;
  color: #9f9f9f;
  max-width: 431px;
}

.price__tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media screen and (max-width: 991px) {
  .price__tabs {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    overflow: auto;
    gap: 24px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 40px;
  }
}

.price__tab {
  font-family: "Obrazec";
  font-weight: 800;
  font-size: 60px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #2a2828;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .price__tab {
    white-space: nowrap;
  }
}

.price__tab.active {
  color: #ededed;
}

.price__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 40px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .price__items {
    flex-direction: column;
  }
}

.price__blocks {
  display: none;
  max-width: 700px;
  width: 100%;
}

@media screen and (max-width: 1210px) {
  .price__blocks {
    max-width: 600px;
  }
}

@media screen and (max-width: 991px) {
  .price__blocks {
    max-width: 100%;
  }
}

.price__blocks.active {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.price__block--head {
  background: #ededed;
  border-radius: 4px;
  font-family: "Obrazec";
  padding: 33px 35px;
  font-weight: 800;
  font-size: 64px;
  text-transform: uppercase;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .price__block--head {
    padding: 24px 16px;
  }
}

.price__block--head svg {
  transition: 300ms;
}

.price__block--head.active {
  border-radius: 4px 4px 0 0;
}

.price__block--head.active svg {
  transform: rotate(-90deg);
}

.price__block--body {
  padding: 0 35px 33px;
  background: #ededed;
  border-radius: 0 0 4px 4px;
}

@media screen and (max-width: 767px) {
  .price__block--body {
    padding: 0 16px 24px;
  }
}

.price__block--item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #333;
}

@media screen and (max-width: 767px) {
  .price__block--item {
    flex-direction: column;
    gap: 24px;
  }
}

.price__block--name {
  text-transform: uppercase;
  color: #4e4e4e;
}

.price__block--list {
  max-width: 357px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media screen and (max-width: 1210px) {
  .price__block--list {
    max-width: 300px;
  }
}

.price__block--list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price__block--list li p {
  text-transform: uppercase;
  color: #4a4a4a;
}

.price__block--list li span {
  font-weight: 700;
  font-size: 24px;
  color: #000;
}

.price__block--btn {
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #ededed;
  position: relative;
  padding: 20px 256px;
}

@media screen and (max-width: 1210px) {
  .price__block--btn {
    padding: 17px 212px;
  }
}

@media screen and (max-width: 991px) {
  .price__block--btn {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .price__block--btn {
    padding: 20px 102px;
  }
}

.price__block--btn p {
  z-index: 2;
  position: relative;
}

.price__block--btn svg {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 1210px) {
  .price__block--btn svg {
    width: 530px;
  }
}

@media screen and (max-width: 991px) {
  .price__block--btn svg {
    left: 50%;
    transform: translate(-50%, 0);
  }
}

@media screen and (max-width: 767px) {
  .price__block--btn svg {
    width: 311px;
  }
}

.games {
  margin: 83px 0 51px;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .games {
    margin: 0 0 0 0;
  }
}

.games__items {
  position: relative;
  margin-bottom: 40px;
}

.games__bg {
  position: absolute;
  top: 94px;
  left: 0;
  width: 100%;
  display: flex;
  min-height: 822px;
  max-height: 822px;
}

@media screen and (max-width: 991px) {
  .games__bg {
    display: none;
  }
}

.games__bg img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}

.games__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 769px;
  gap: 2px;
  position: relative;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  z-index: 5;
}

@media screen and (max-width: 991px) {
  .games__list {
    writing-mode: horizontal-tb;
    gap: 0;
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  .games__list {
    padding-left: 16px;
  }
}

.games__list li {
  padding: 60px 6px 6px 6px;
  background: #0b0b0b;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .games__list li {
    padding: 6px 6px 6px 60px;
  }
}

.games__list li.day {
  max-height: 769px;
}

.games__list li.pubg {
  max-height: 694px;
}

.games__list li.warframe {
  max-height: 769px;
}

.games__list li.gens {
  max-height: 703px;
}

.games__list li.league {
  max-height: 402px;
}

.games__list li.hogwa {
  max-height: 606px;
}

.games__list li.phasm {
  max-height: 518px;
}

.games__list li.port {
  max-height: 672px;
}

.games__list li.world {
  max-height: 722px;
}

.games__list li.hearth {
  max-height: 376px;
}

.games__list li.assas {
  max-height: 395px;
}

.games__list li.watch {
  max-height: 566px;
}

.games__list li.far {
  max-height: 497px;
}

.games__list li.left {
  max-height: 204px;
}

.games__list li.warf {
  max-height: 161px;
}

.games__list li.call {
  max-height: 339px;
}

.games__list li.valor {
  max-height: 162px;
}

.games__list li.dead {
  max-height: 218px;
}

.games__list li.grand {
  max-height: 245px;
}

.games__list li.battle {
  max-height: 208px;
}

.games__list li.apex {
  max-height: 208px;
}

.games__list li.over {
  max-height: 170px;
}

.games__list li.cs {
  max-height: 132px;
}

.games__list li.dota {
  max-height: 145px;
}

.games__list li.cyber {
  max-height: 204px;
}

.games__list li.fort {
  max-height: 218px;
}

@media screen and (max-width: 991px) {
  .games__list li.day {
    max-width: 769px;
  }
  .games__list li.pubg {
    max-width: 694px;
  }
  .games__list li.warframe {
    max-width: 769px;
  }
  .games__list li.gens {
    max-width: 703px;
  }
  .games__list li.league {
    max-width: 402px;
  }
  .games__list li.hogwa {
    max-width: 606px;
  }
  .games__list li.phasm {
    max-width: 518px;
  }
  .games__list li.port {
    max-width: 672px;
  }
  .games__list li.world {
    max-width: 722px;
  }
  .games__list li.hearth {
    max-width: 376px;
  }
  .games__list li.assas {
    max-width: 395px;
  }
  .games__list li.watch {
    max-width: 566px;
  }
  .games__list li.far {
    max-width: 497px;
  }
  .games__list li.left {
    max-width: 204px;
  }
  .games__list li.warf {
    max-width: 161px;
  }
  .games__list li.call {
    max-width: 339px;
  }
  .games__list li.valor {
    max-width: 162px;
  }
  .games__list li.dead {
    max-width: 218px;
  }
  .games__list li.grand {
    max-width: 245px;
  }
  .games__list li.battle {
    max-width: 208px;
  }
  .games__list li.apex {
    max-width: 208px;
  }
  .games__list li.over {
    max-width: 170px;
  }
  .games__list li.cs {
    max-width: 132px;
  }
  .games__list li.dota {
    max-width: 145px;
  }
  .games__list li.cyber {
    max-width: 204px;
  }
  .games__list li.fort {
    max-width: 218px;
  }
}

.games__decor {
  width: 100%;
  height: 581px;
  background: linear-gradient(360deg, rgba(9, 10, 20, 0) 26.37%, #090a14 55.21%);
  position: absolute;
  top: 93px;
  left: 0;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .games__decor {
    display: none;
  }
}

.tournament {
  position: relative;
  z-index: 3;
  padding: 200px 0 159px;
}

@media screen and (max-width: 1210px) {
  .tournament {
    padding: 160px 0 120px;
  }
}

@media screen and (max-width: 991px) {
  .tournament {
    padding: 120px 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .tournament {
    padding: 80px 0 40px;
  }
}

.tournament__blocks {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 1390px) {
  .tournament__blocks {
    gap: 30px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 1210px) {
  .tournament__blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 767px) {
  .tournament__blocks {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.tournament__block {
  padding: 33px 35px;
  background: #000;
  border-radius: 4px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .tournament__block {
    padding: 24px 16px;
  }
}

.tournament__block--head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.tournament__block--name {
  font-weight: 800;
  font-size: 48px;
  text-transform: uppercase;
  font-family: "Obrazec";
}

.tournament__block--date {
  font-weight: 800;
  font-size: 48px;
  text-transform: uppercase;
  color: #9f9f9f;
  font-family: "Obrazec";
}

.tournament__name {
  text-transform: uppercase;
  color: #ededed;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid #333;
}

.tournament__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.tournament__info p {
  color: #9f9f9f;
}

.tournament__info p span {
  color: #ededed;
}

.tournament__text {
  font-size: 20px;
  margin-bottom: 24px;
}

.tournament__items {
  position: relative;
}

.registr {
  padding: 200px 0 100px;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 1210px) {
  .registr {
    padding: 160px 0 120px;
  }
}

@media screen and (max-width: 991px) {
  .registr {
    padding: 120px 0 80px;
  }
}

@media screen and (max-width: 767px) {
  .registr {
    padding: 40px 0 40px;
  }
}

.registr__input {
  height: 42px;
  width: 100%;
}

.registr__input input {
  height: 100%;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #333;
  text-transform: uppercase;
  color: #ededed;
}

.registr__input input::-moz-placeholder {
  color: #9f9f9f;
}

.registr__input input::-ms-input-placeholder {
  color: #9f9f9f;
}

.registr__input input::placeholder {
  color: #9f9f9f;
}

.registr__form {
  max-width: 523px;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .registr__form {
    max-width: 100%;
  }
}

.registr__form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.registr__btn {
  border: none;
  background: transparent;
  position: relative;
  width: 100%;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #000;
  padding: 20px 186px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .registr__btn {
    padding: 20px 96px;
  }
}

.registr__btn p {
  position: absolute;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .registr__btn p {
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.registr__btn svg {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 991px) {
  .registr__btn svg {
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.registr__title {
  font-weight: 800;
  font-size: 300px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #f30e17;
  font-family: "Obrazec";
}

@media screen and (max-width: 1390px) {
  .registr__title {
    font-size: 230px;
  }
}

@media screen and (max-width: 1210px) {
  .registr__title {
    font-size: 170px;
  }
}

@media screen and (max-width: 767px) {
  .registr__title {
    font-size: 130px;
  }
}

.registr__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

@media screen and (max-width: 991px) {
  .registr__items {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .registr__items {
    gap: 24px;
  }
}

.checkbox-form {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 9px 0;
}

.checkbox-form__inner {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 2px;
  background: #fff;
}

.checkbox-form__inner > span {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
}

.checkbox-form__inner > span::before {
  display: block;
  content: "";
  position: absolute;
  right: 8px;
  bottom: 6px;
  border: solid black;
  border-width: 0px 3px 3px 0;
  transform: rotate(45deg);
  width: 6px;
  height: 12px;
  margin: 0 auto;
  visibility: hidden;
}

.checkbox-form input:checked + span::before {
  opacity: 1;
  visibility: visible;
}

.checkbox-form input {
  display: none;
}

.checkbox-form__text {
  font-size: 18px;
  line-height: 122%;
}

.footer {
  background: #f30e17;
  padding: 60px 0;
  position: relative;
  z-index: 3;
}

@media screen and (max-width: 991px) {
  .footer {
    padding: 40px 0;
  }
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 24px 0;
  }
}

.footer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer__logo {
  display: flex;
  flex-direction: column;
}

.footer__logo img {
  max-width: 123px;
}

.footer__logo span {
  text-transform: uppercase;
  margin-top: 24px;
}

.footer__up {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(146, 0, 6, 0.3) 0%, rgba(71, 0, 3, 0.3) 100%);
  cursor: pointer;
}

.footer__main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .footer__main {
    flex-direction: column;
    gap: 24px;
  }
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact--link a {
  text-transform: uppercase;
}

.footer__contact a {
  font-size: 20px;
}

.footer__end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

@media screen and (max-width: 767px) {
  .footer__end {
    border-top: 1px solid #fff;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

.footer__end a {
  font-size: 18px;
  line-height: 122%;
}

.club {
  padding-top: 100px;
}

@media screen and (max-width: 991px) {
  .club {
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .club {
    padding-top: 40px;
  }
}

.club__title {
  font-weight: 800;
  font-size: 40px;
  line-height: 125%;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  font-family: "Obrazec";
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .club__title {
    font-size: 26px;
    line-height: 108%;
    letter-spacing: 0.12em;
  }
}

.club__items {
  padding: 40px;
  border: 2px solid #f30e17;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 767px) {
  .club__items {
    padding: 24px 16px;
  }
}

.club__text {
  font-size: 18px;
  line-height: 133%;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .club__text {
    font-size: 13px;
    line-height: 131%;
  }
}

.club__name {
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .club__name {
    font-size: 18px;
    line-height: 111%;
  }
}

.club__blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.club__block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
