@charset "UTF-8";
@font-face {
  font-family: "kairat";
  src: url("../fonts/kairat.ttf");
  font-style: normal;
  font-display: swap;
}
/**
 * Задает отступы текущим элементам, всем кроме краних, на крайних элементах крайние отступы не зыдаються
 */
.no-padding {
  padding: 0 !important;
}

.no-margin {
  margin: 0 !important;
}

img.img-max {
  width: 100%;
}

.m-t-30 {
  margin-top: 30px !important;
}

.effects {
  -webkit-transition: all ease-out 0.5s;
  -moz-transition: all ease-out 0.5s;
  -o-transition: all ease-out 0.5s;
  transition: all ease-out 0.5s;
}
.effects:active {
  transform: scale(0.95);
  -webkit-transition: all ease-out 0.5s;
  -moz-transition: all ease-out 0.5s;
  -o-transition: all ease-out 0.5s;
  transition: all ease-out 0.5s;
}
.effects:hover {
  transform: scale(1.05);
  -webkit-transition: all ease-out 0.5s;
  -moz-transition: all ease-out 0.5s;
  -o-transition: all ease-out 0.5s;
  transition: all ease-out 0.5s;
}

:root {
  --accent-color: #FECC01;
  --font-dark: #000000;
  --font-black: #3333;
  --font-light: #FFFFFF;
  --font-accent: #FECC01;
  --dark-color: #000000;
  --light-color: #FFFFFF;
  --default-font-size: 14px;
}

.product-info__add-btn:disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

ul {
  margin-bottom: 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%;
  line-height: 1;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgb(0, 0, 0);
}

::-webkit-scrollbar-thumb {
  background-color: #FECC01;
  outline: 1px solid #FECC01;
}

::selection {
  background: #000;
  color: #FECC01;
}

::-moz-selection {
  background: #000;
  color: #FECC01;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  text-decoration: none;
}

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;
}

sup {
  color: inherit;
}

a,
p,
span,
h1,
h2,
h3,
h4,
h5 {
  color: inherit;
}

button {
  background: none;
}

.section-title {
  font-size: 24px;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  gap: 30px;
  display: flex;
  align-items: center;
}

.section-404 {
  padding: 100px 0;
}

.section-404 .section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-404 h1 {
  font-size: 86px;
  text-align: center;
}

.section-404 h2 {
  font-size: 16px;
  line-height: normal;
  max-width: 600px;
  margin-bottom: 30px;
}

.section-404 .section-message {
  text-align: center;
}

.section-404 .section-actions {
  display: flex;
  gap: 15px;
}

.section-404 a {
  padding: 15px 30px;
}

.section-404 .back-link-page {
  border: 2px solid var(--accent-color);
  background-color: var(--light-color);
}

.recovery-block {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 50px;
}

.develop {
  padding: 150px 0;
  display: flex;
  align-items: center;
}

.develop .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.develop h1 {
  font-size: 86px;
  font-weight: bold;
  text-align: center;
}

.develop .section-title {
  margin-bottom: 30px;
}

.develop a {
  padding: 15px 40px;
  display: inline-flex;
}

.center-block {
  display: flex;
  justify-content: center;
}

.recovery-block a {
  padding: 15px 30px;
}

.template-content {
  padding-bottom: 50px;
  margin-top: 30px;
}

.content-body p {
  line-height: 180%;
}

.order-success__page {
  background-color: white;
}

.refund .preloader,
.payment .preloader {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.refund .preloader h2,
.payment .preloader h2 {
  font-size: 16px;
}
.refund .spinner,
.payment .spinner {
  position: relative;
  border: 16px solid #f3f3f3;
  border-top: 16px solid var(--accent-color);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.refund .preloader {
  left: 0;
  top: 0;
  justify-content: center;
  right: 0;
  position: fixed;
  bottom: 0;
  transform: none;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
}
.refund .preloader h2 {
  color: white;
}

/* PARTS */
.main-page, .news-page {
  position: relative;
}

.parts-line-2::before,
.parts-line-2::after,
.news-page::before,
.main-page::before {
  content: "";
  position: absolute;
  background: url("/uploads/images/parts/LINES.svg") no-repeat;
  z-index: 2;
}

.news-page::before,
.main-page::before {
  width: 185px;
  height: 570px;
  left: 0;
  top: -320px;
  pointer-events: none;
  transform: scale(-1, 1);
}

.parts-line-2::before {
  width: 185px;
  pointer-events: none;
  height: 570px;
  left: 0;
  top: -50px;
  transform: scale(-1, 1);
}

.parts-line-2::after,
.main-news-page::after {
  pointer-events: none;
  width: 185px;
  height: 570px;
  right: 0;
  top: -50px;
}

/* END PARTS */
.header {
  position: relative;
}

.header__container {
  max-width: 1155px;
  margin: 0 auto;
  padding: 0 20px 0 120px;
}

.header__logo {
  position: absolute;
  transform: translateX(-140px);
  height: 230px;
  width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.header__links__item-selection::before {
  background: url("/uploads/images/icons/h-star.svg");
}

.header__links__item-tickets::before {
  background: url("/uploads/images/icons/h-tickets.svg");
}

.header__links__item-year-tickets::before {
  background: url("/uploads/images/icons/year-tickets.svg");
}

.log-in-btn::before,
.profile-btn::before {
  background: url("/uploads/images/icons/h-cabinet.svg");
}

.header__links__item-shop::before {
  background: url("/uploads/images/icons/h-shop.svg");
}

.header__links__item::before {
  height: 1.7em;
  width: 24px;
  content: "";
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.setting-page .setting__forms {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

#modal-success {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.43);
  width: 100%;
  display: flex;
  z-index: 100;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#modal-success .modal-dialog {
  position: relative;
  max-width: 500px;
  background-color: white;
  border-radius: 10px;
  padding: 50px;
}

#modal-success .modal-title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}

#modal-success .modal-body p {
  font-size: 14px;
  line-height: 150%;
  text-align: center;
}

#modal-success .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.header__logo_new {
  position: absolute;
  transform: translateX(-170px);
  height: 150px;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 5;
}

.header__logo_new img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.header__logo::after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: white;
  position: absolute;
  z-index: 1;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.header__inner {
  padding-left: 45px;
}

.header__links {
  display: flex;
  align-items: center;
  padding: 14px 0;
}

.header__links .header__socials {
  display: none;
}

.header__links .search {
  display: none;
}

.header__links__item,
.header__links .translate {
  margin-left: 47px;
  display: flex;
  cursor: pointer;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.07px;
  align-items: center;
}

.header__links__item i {
  font-size: 22px;
}

.header__links__item-icon {
  height: 24px;
}

.header__links__item-icon img {
  height: 100%;
}

.header__links__item:hover span,
.header__links .translate:hover span {
  transition: 0.3s all;
  filter: invert(65%);
}

.translate:hover img,
.header__links__item:hover::before {
  filter: invert(75%);
}

.header__links__item:nth-child(1) {
  margin-left: 0;
}

.header__links .translate {
  margin-left: auto;
}

.header__mid .container-big {
  position: relative;
}

/*.header__mid .container-big::before {*/
/*    content: "";*/
/*    width: 186px;*/
/*    height: 600px;*/
/*    left: 0;*/
/*    top: -170px;*/
/*    transform: scale(-1, 1);*/
/*    position: absolute;*/
/*    background: url("/app/media/images/parts/LINES.svg") no-repeat;*/
/*    z-index: 2;*/
/*}*/
.header__mid .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 0 25px 0;
}

.header__title {
  font-size: 32px;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.header__bot {
  background-color: var(--accent-color);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__menu {
  display: flex;
  align-items: center;
}

.header__menu .sub-menu {
  display: flex;
  gap: 20px;
  position: absolute;
  height: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  overflow-y: hidden;
  width: 0;
  z-index: 4;
}

.header__menu li:nth-child(1) a {
  margin-left: 0;
}

.header__menu li .sub-menu {
  height: auto;
  width: 0;
}

.header__menu li .sub-menu__hidden {
  display: none;
}

.header__menu li .sub-menu__title {
  display: block;
}

.header__menu li .sub-menu__title h4 {
  color: var(--font-light);
  font-size: 16px;
  font-weight: 900;
  line-height: 40px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
}

.header__menu li .sub-menu__inner {
  display: flex;
  max-width: 1015px;
  width: 100%;
  padding-left: 45px;
  margin: 0 auto;
  gap: 70px;
  justify-content: start;
}

.header__menu li .sub-menu__col li a {
  position: relative;
  color: var(--font-accent);
  font-size: 16px;
  font-style: normal;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  line-height: 40px;
  z-index: 2;
  margin-left: 0;
  letter-spacing: 0.16px;
  transition: 0.3s all;
}

.header__menu li .sub-menu__col li a::before {
  content: "";
  position: absolute;
  height: 6px;
  width: 6px;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--accent-color);
}

.header__menu li .sub-menu__col li a:hover {
  color: var(--font-dark);
}

.header__menu li .sub-menu__col li a:hover::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  border-radius: unset;
  width: 100%;
  color: var(--font-light);
  transform: skew(-30deg);
  background: var(--font-light);
  z-index: -1;
}

.header__menu li:hover .sub-menu {
  padding: 10px 0;
  width: 100%;
}

.header__menu li:first-child {
  margin-left: -20px;
}

.header__menu a {
  display: block;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  padding: 10px 20px;
}

.header__menu a:hover {
  color: var(--font-light);
  position: relative;
  z-index: 2;
  font-weight: 900;
}

.header__menu a:hover::before {
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: 100%;
  left: 50%;
  color: var(--font-light);
  transform: translateX(-50%) skew(-30deg);
  background-color: var(--dark-color);
  z-index: -1;
}

.header__socials {
  margin-left: auto;
}

.translate {
  margin-left: auto;
  position: relative;
}

.translate__menu {
  overflow: hidden;
  position: absolute;
  top: 30px;
  text-align: right;
  max-height: 0;
  right: 0;
  z-index: 5;
  background-color: var(--font-light);
}

.translate__menu .translate_item_active {
  display: none;
}

.translate__menu li a {
  display: block;
  padding: 8px 5px 8px 30px;
}

.translate__menu li a:hover {
  color: var(--accent-color);
}

.socials {
  display: flex;
  gap: 20px;
}

.socials__item i {
  font-size: 20px;
}

.socials__item:hover i {
  transition: 0.3s all ease;
  color: var(--accent-color);
}

.mobile {
  background-color: rgba(0, 0, 0, 0.4274509804);
  position: fixed;
  left: 0;
  overflow: auto;
  top: -5000px;
  bottom: 0;
  transition: 0.2s all;
  height: 100vh;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 10px 10px;
}

.mobile__close {
  cursor: pointer;
  height: 20px;
  width: 20px;
}

.mobile__close img {
  height: 100%;
  width: 100%;
}

.mobile_active {
  top: 0;
}

.mobile__link {
  font-size: 20px;
  font-weight: 900;
  line-height: 29px;
  letter-spacing: 0.2px;
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
  margin-left: 40px;
}

.mobile__link::before {
  position: absolute;
  content: "";
  width: 150%;
  top: 50%;
  left: 50%;
  transform: skew(-25deg) translateX(-54%) translateY(-50%);
  height: 120%;
  border: 2px solid var(--dark-color);
}

.mobile__menu {
  border-radius: 5px;
  padding: 15px;
  width: 100%;
  overflow: auto;
  background: var(--accent-color);
}

.mobile__menu .socials {
  margin: 30px auto 0 auto;
  justify-content: center;
}

.mobile__menu nav {
  padding-bottom: 20px;
  border-bottom: 4px solid var(--dark-color);
}

.mobile__menu nav ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile__menu nav ul li {
  font-size: 20px;
  font-weight: 900;
  line-height: 29px;
  letter-spacing: 0.2px;
  padding: 0 40px;
  position: relative;
}

.mobile__menu nav ul li .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: 0.2s all;
}

.mobile__menu nav ul li .sub-menu__col {
  gap: 10px;
}

.mobile__menu nav ul li .sub-menu__inner {
  padding: 10px 0;
}

.mobile__menu nav ul li .sub-menu li {
  font-size: 14px;
  font-weight: 700;
  line-height: 29px;
  padding: 0;
  letter-spacing: 0.14px;
}

.mobile__menu nav ul li .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile__menu nav ul li:hover .sub-menu {
  display: block;
}

.mobile__menu nav ul li:hover span {
  position: relative;
  z-index: 1;
}

.mobile__menu nav ul li:hover span::before {
  position: absolute;
  content: "";
  width: 140%;
  top: 50%;
  left: 50%;
  transform: skew(-25deg) translateX(-54%) translateY(-46%);
  height: 120%;
  background-color: var(--light-color);
  z-index: -1;
}

.mobile__head {
  display: flex;
}

.mobile__close {
  margin-left: auto;
}

.tablet {
  position: fixed;
  left: 0;
  overflow: auto;
  top: 0;
  padding: 150px 0 50px 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
}

.tablet__close {
  cursor: pointer;
  height: 25px;
  width: 25px;
}

.tablet__close img {
  height: 100%;
  width: 100%;
}

.tablet_active {
  visibility: visible;
}

.tablet__title {
  color: #000;
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.tablet__menu {
  border-radius: 10px;
  background-color: var(--light-color);
  max-width: 750px;
  width: 100%;
}

.tablet__menu__item ul li {
  color: #231F20;
  font-size: 12px;
  font-weight: 600;
}

.tablet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px;
}

.tablet__body {
  padding: 25px 25px 35px 25px;
  display: flex;
  justify-content: space-between;
  background-color: var(--accent-color);
}

.tablet__menu__item {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tablet__menu__item span {
  color: #231F20;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12px;
}

.tablet__menu__item ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tablet__menu__item ul li {
  color: #231F20;
  font-size: 12px;
  font-weight: 600;
}

.tablet__col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 150px;
}

.tablet__col:not(:nth-child(1)) {
  margin-top: 10px;
}

.tablet__btn {
  color: #231F20;
  font-size: 12px;
  font-weight: 900;
  display: inline-block;
  letter-spacing: 0.12px;
  position: relative;
  padding: 10px 15px;
  width: 100px;
  text-align: center;
  margin-bottom: 45px;
}

.tablet__btn::before {
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  border: 1.5px solid var(--dark-color);
  left: 0;
  transform: skew(-25deg);
  top: 0;
}

.cabinet-tablet__menu .tablet__btn {
  margin-bottom: 25px;
}

.cabinet-tablet__menu .tablet__col ul {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.cabinet-tablet__menu .tablet__col ul li {
  color: #231F20;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12px;
}

.page-content h1 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 30px;
}

.page-content h2 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 25px;
}

.page-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-content h5 {
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 10px;
}

.page-content {
  margin-top: 30px;
}

.page-content b,
.page-content strong {
  line-height: 200%;
  font-weight: 900;
}

.page-content ol,
.page-content ul {
  margin-bottom: 15px;
}

.page-content div,
.page-content a,
.page-content span,
.page-content ol li,
.page-content ul li,
.page-content p {
  line-height: 170%;
}

.page-content img {
  margin-top: 30px;
  max-width: 100%;
}

.page-content div {
  margin-bottom: 20px;
}

.page-content table {
  padding: 20px 15px;
  margin: 30px auto 0;
  max-width: 100%;
}

.page-content table caption {
  padding-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.page-content table {
  border: 1px solid var(--accent-color);
  border-radius: 5px;
  min-width: 50%;
}

.page-content table thead th,
.page-content table thead td {
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
  padding: 12px 10px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.page-content table tbody td {
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  padding: 12px 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.page-content table.aboniment tbody td {
  font-size: 12px;
  font-weight: normal;
  text-transform: inherit;
}

.page-navigation {
  width: 100%;
  background-color: var(--dark-color);
}

.page-navigation_btn {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.page-navigation__inner {
  width: calc(100% - 40px);
  position: relative;
}

.page-navigation__items {
  overflow: hidden;
  padding: 10px 0 10px 85px;
  display: flex;
}

.page-navigation__item {
  color: var(--accent-color);
  font-size: 14px;
  -webkit-user-drag: none;
  white-space: nowrap;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  position: relative;
  padding: 0 20px;
}

.page-navigation__item:not(:last-child)::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  height: 15px;
  width: 1px;
  background-color: var(--font-light);
  transform: rotate(20deg) translateY(-50%);
}

.footer__top {
  border-top: solid 6px var(--dark-color);
  padding: 40px 60px;
  background-color: var(--accent-color);
}

.footer__top .container-big {
  display: flex;
  position: relative;
}

.footer__container {
  max-width: 1130px;
  width: 100%;
  margin: 0 auto;
}

.footer__bot {
  padding: 35px 0 80px 0;
}

.footer__bot-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__bot-inner .footer__row:nth-child(2) {
  display: none;
}

.footer__bot .footer__row {
  display: flex;
  justify-content: space-between;
}

.footer__bot .footer__link {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}

.footer .fans {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 30px;
}

.footer .fans span {
  display: flex;
  transform-origin: 0 0;
  width: 25px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14px;
  line-height: 10px;
  transform: rotate(-90deg) translateY(7px);
}

.footer .fans:hover span {
  transition: 0.2s all;
  color: var(--font-light);
  font-weight: 600;
  opacity: 0.65;
}

.footer .fans:hover img {
  transition: 0.3s all;
  filter: invert(100%);
}

.footer__socials {
  position: absolute;
  flex-direction: column;
}

.footer__socials .socials__item:hover svg path {
  transition: 0.3s all;
  fill: var(--font-light);
}

.footer__menu {
  width: 100%;
}

.footer__menu-inner {
  display: flex;
  gap: 105px;
  width: 100%;
}

.footer__menu ul {
  gap: 20px;
  display: flex;
  flex-direction: column;
}

.footer__menu .footer__col_gap {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}

.footer__menu .footer__col {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer__menu .container {
  display: flex;
  gap: 100px;
  max-width: 1060px;
  padding: 0;
  flex-wrap: wrap;
}

.footer__menu__item {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14px;
}

.footer__menu__item:last-child {
  margin-bottom: 0;
}

.footer__menu__item ul li a:hover {
  transition: 0.2s all;
  color: var(--font-light);
  font-weight: 600;
}

.footer__menu__item h4 {
  font-size: 14px;
  font-weight: 900;
  line-height: 29.5px;
  letter-spacing: 0.14px;
}

.footer__menu__item .footer__menu__title {
  margin-bottom: 30px;
}

.main-news-page .news__head {
  margin-top: 30px;
}

.news-block {
  background-size: cover;
  height: 500px;
  background-position: center;
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  justify-content: end;
}

.news-block__image {
  transition: 0.3s all;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.news-block__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.news-block-big {
  width: 100%;
  padding: 35px 50px;
}

.news-block__date {
  display: flex;
  gap: 5px;
}

.news-block__date p,
.news-block__date span {
  color: var(--font-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.07px;
}

.news-block__date span {
  color: var(--accent-color);
}

.news-block__date,
.news-block__short {
  position: relative;
  z-index: 3;
}

.news-block__short {
  margin-bottom: 10px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: 900;
  color: var(--font-light);
}

.news-block__mark {
  position: absolute;
  background-color: var(--accent-color);
  opacity: 0.7;
  font-size: 14px;
  font-weight: 600;
  left: 0;
  top: 0;
  padding: 6px 30px 6px 15px;
  letter-spacing: 0.77px;
  text-transform: uppercase;
  -webkit-clip-path: polygon(-100% 0, 100% 0, 100% 0%, 80% 100%, 0 100%, 0 100%);
  clip-path: polygon(-100% 0, 100% 0, 100% 0%, 80% 100%, 0 100%, 0 100%);
}

.news-block:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(180deg, rgba(35, 31, 32, 0) 0%, rgba(35, 31, 32, 0.63) 56.25%, #231F20 100%);
}

.news-block:hover .news-block__image {
  transform: scale(1.05);
}

.partners-mini {
  padding: 15px 30px;
  background-image: url("/uploads/images/parts/BACK-PARTNERS-MINI.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
  z-index: 4;
}

.partners-mini__title {
  display: none;
}

.partners-mini::-webkit-scrollbar {
  display: none;
}

.partners-mini__item {
  min-width: 110px;
  height: 70px;
  display: flex;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  align-items: center;
  justify-content: center;
}

.partners-mini__item img {
  width: 100%;
  -webkit-user-drag: none;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.partners-mini .partners__items {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.tabs {
  overflow: hidden;
  position: relative;
}

.tabs__wrapper {
  position: relative;
  overflow: hidden;
}

.tabs__wrapper::-webkit-scrollbar {
  display: none;
}

.tabs__header {
  padding-left: 5px;
}

.tabs__inner {
  display: flex;
  align-items: center;
}

.tabs__arrow {
  position: absolute;
  display: none;
  align-items: center;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  width: 24px;
  height: 24px;
  background-image: url("/uploads/images/icons/arrow-right-yellow.svg");
}

.tabs span {
  font-weight: 900;
  color: var(--accent-color);
}

.tabs .active {
  position: relative;
  z-index: 1;
  background-color: var(--accent-color);
  transform: skew(-20deg);
}

.tabs .active div {
  transform: skew(20deg);
}

.tabs .active::after {
  display: none;
}

.tabs__item {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 2;
  white-space: nowrap;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.07px;
  cursor: pointer;
  position: relative;
  padding: 5px 18px;
}

.tabs__item:not(:last-child)::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  height: 12px;
  width: 2px;
  background-color: var(--accent-color);
  transform: rotate(20deg) translateY(-50%);
}

.tabs__item:hover {
  background-color: var(--accent-color);
  transform: skew(-20deg);
}

.tabs__item:hover div {
  transform: skew(20deg);
}

.tabs__item:hover::after {
  display: none;
}

.tabs-dropdown {
  display: flex;
  transition: 0.2s all;
  scroll-behavior: smooth;
}

.tabs-dropdown__arrow {
  width: 11px;
  height: 11px;
  background-image: url("/uploads/images/icons/arrow-down.svg");
}

.tabs-dropdown__btn {
  display: none;
}

.tabs-flex .tabs__inner {
  flex-wrap: wrap;
}

.match-block {
  padding: 20px 23px 23px;
  background-color: var(--light-color);
}

.matches-card__empty-content {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.match-card .empty-title {
  padding: 50px 0;
}

.match-block__team {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.match-block__info {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding: 0 10px;
}

.match-block__logo {
  padding-top: 10px;
  margin-bottom: 15px;
  max-width: 80px;
  height: 135px;
  display: flex;
  align-items: center;
}

.match-block__head {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 10px;
}

.match-block__tour {
  display: flex;
  align-items: center;
  max-width: 270px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  gap: 15px;
}

.match-block__date {
  display: flex;
  align-items: center;
  position: relative;
}

.match-block__date strong {
  font-size: 16px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.match-block__date p {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  margin-right: 10px;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.match-block__date::after {
  content: "";
  width: 4px;
  background-color: var(--accent-color);
  height: 45px;
  margin-left: 20px;
  margin-right: 10px;
  transform: rotate(30deg);
}

.match-block__about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding: 0 30px;
}

.match-block__logo img {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.match-block__name {
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.match-block__city {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  min-height: 12px;
  min-width: 50px;
  line-height: 145.5%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.match-block__time {
  font-size: 24px;
  color: #535353;
  font-style: normal;
  text-align: center;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.match-block .disabled {
  opacity: 0.2;
  pointer-events: none;
}

.match-block__address {
  color: #535353;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.match-block__versus {
  font-size: 32px;
  color: var(--accent-color);
  font-weight: 900;
  line-height: normal;
  text-align: center;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.match-block__info-actions {
  display: flex;
  margin-top: 10px;
  gap: 10px;
  justify-content: center;
  height: 40px;
  padding: 0 10px;
}

.match-block__info-actions a {
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.match-block__score {
  margin-top: auto;
  text-align: center;
  font-size: 64px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.match-block__tickets,
.match-block__photo {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  width: 160px;
  margin: 0 auto;
  letter-spacing: 0.8px;
  gap: 10px;
  text-transform: uppercase;
  padding: 12px 0;
  z-index: 2;
}

.match-block__tickets div,
.match-block__photo div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.match-block__photo {
  padding: 8px 0;
}

.match-block__actions {
  margin-top: 5px;
  display: flex;
  justify-content: center;
  gap: 10px;
  height: 40px;
}

.match-block__actions a {
  position: relative;
  display: flex;
  height: 100%;
  width: 50px;
  align-items: center;
  justify-content: center;
}

.match-block__actions a svg {
  position: relative;
}

.match-block__actions a:hover:before {
  background-color: var(--light-color);
  border: 2px solid var(--accent-color);
}

.match-block__actions a:before {
  transition: 0.3s all;
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  width: 100%;
  color: white;
  background-color: var(--accent-color);
  transform: skew(-30deg);
  left: 0;
  z-index: 0;
}

.match-block__begin {
  font-size: 16px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0.8px;
  text-align: center;
  text-transform: uppercase;
}

.match-block-past {
  position: relative;
}

.match-block-past .match-block__date strong {
  font-size: 16px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.match-block-past .match-block__date::after {
  display: none;
}

.match-block-past .match-block__about {
  margin-bottom: 0;
  align-items: unset;
}

.match-block-past .match-block__photo {
  margin-top: 10px;
}

.match-block-past .match-block__address {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  margin-top: auto;
  margin-bottom: 0;
  max-width: 95%;
}

.match-block-past-btn .match-block__score {
  margin-top: 22%;
}

.table__title {
  padding: 15px 25px;
  display: flex;
  align-items: center;
  color: #231F20;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  gap: 25px;
}

.table {
  display: table;
  width: 100%;
}

.table .table-row {
  display: flex;
  padding: 0 10px 0 30px;
  z-index: 5;
  position: relative;
}

.table .table-row .table-cell:nth-child(1) {
  flex: 0;
  min-width: 20px;
  margin-right: 20px;
}

.tournament__table .table-row .table-cell {
  margin-right: 20px;
}

.table .table-row .table-cell:nth-child(2) {
  max-width: 200px;
}

.table .table-row .table-cell:nth-child(2) {
  flex: 3;
}

.table .table-cell {
  text-align: left;
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  padding: 12px 0;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.table-head .table-cell {
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.table .table-row_selected .table-cell {
  font-weight: 900;
}

.table .table-row_selected::after {
  transition: 0.3s all;
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
  border: 2px solid var(--accent-color);
  transform: skew(-30deg);
  left: -15px;
  right: -15px;
  background-color: var(--light-color);
  z-index: -1;
}

.coach-block__image {
  background-size: cover;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: end;
  margin-bottom: 5px;
}

.coach-block__image img {
  width: 100%;
  max-height: 100%;
}

.coach-block__name {
  font-size: 16px;
  font-weight: 900;
  line-height: 165%;
  letter-spacing: 0.08px;
}

.coach-block p {
  color: #535353;
  font-size: 14px;
  font-weight: 600;
  line-height: 165%;
  letter-spacing: 0.07px;
}

.classic-modal__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: flex-start;
  padding-top: 100px;
  overflow: scroll;
  z-index: 5;
  display: none;
}

.classic-modal__wrapper::-webkit-scrollbar {
  display: none;
}

.classic-modal__wrapper .classic-modal {
  background: white;
  border-radius: 5px;
  position: relative;
}

.classic-modal__wrapper .classic-modal__title {
  text-align: center;
}

.description-modal .classic-modal {
  background-color: var(--accent-color);
  padding: 30px;
  border-radius: 10px;
}

.description-modal .classic-modal__inner::-webkit-scrollbar {
  display: none;
}

.description-modal .classic-modal__inner {
  max-width: 800px;
  max-height: 600px;
  overflow: auto;
}

.description-modal .classic-modal__inner,
.description-modal .classic-modal__inner p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 175%;
  letter-spacing: 0.07px;
}

.description-modal .classic-modal__inner p {
  margin-bottom: 35px;
}

.description-modal .match-image {
  width: 100%;
}

.description-modal .match-image img {
  width: 100%;
  object-fit: contain;
}

.classic-modal__wrapper .classic-modal__close {
  position: absolute;
  height: 40px;
  width: 40px;
  right: -20px;
  top: -50px;
  cursor: pointer;
}

.site-form {
  padding: 20px 40px 35px;
  width: 425px;
  background-color: var(--font-light);
  border-radius: 10px;
}

.site-form .help-block {
  font-size: 14px;
  margin-top: 5px;
  color: darkred;
  text-align: center;
}

.site-form .site-form__notification {
  margin-top: -10px;
  font-size: 12px;
  padding: 0 10px;
  text-align: center;
}

.site-form__theme {
  border-top: 2px solid var(--accent-color);
  padding-top: 20px;
  padding-bottom: 20px;
}

.site-form__subtitle {
  color: #231F20;
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
}

.site-form__message {
  color: #535353;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
}

.site-form__head {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: space-between;
  margin-bottom: 15px;
}

.site-form__title {
  color: #231F20;
  font-size: 20px;
  font-weight: 800;
  max-width: 270px;
}

.form-group {
  width: 100%;
}

.form-group select {
  width: 100%;
}

.site-form__area {
  width: 100%;
  height: 100%;
  padding: 10px 0;
}

.site-form__field textarea,
.site-form__field select,
.site-form__field input {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid var(--accent-color);
  align-items: center;
  border-radius: 5px;
  height: 60px;
}

.site-form__area textarea {
  resize: vertical;
  padding: 20px;
  min-height: 200px;
}

.field-wrapper {
  position: relative;
}

.field-wrapper button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.site-form__field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.site-form__field-select::before {
  content: "▼";
  position: absolute;
  font-size: 14px;
  right: 20px; /* Расстояние от правого края обертки до стрелки */
  top: 50%; /* Центрирование по вертикали */
  transform: translateY(-50%);
  pointer-events: none; /* Сделать стрелку некликабельной */
  cursor: pointer;
}

.site-form__field {
  position: relative;
}

.site-form__field-file {
  display: none;
}

.site-form__field-file-label {
  cursor: pointer;
  display: block;
  border-radius: 3px;
  padding: 10px 25px;
  border: 1px solid var(--accent-color);
}

.site-form__error {
  font-size: 12px;
  color: darkred;
  display: none;
  text-align: center;
}

.site-form__field__icon {
  cursor: pointer;
}

.site-form__field label {
  position: absolute;
  left: 10px;
  top: -10px;
  z-index: 2;
  color: #535353;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  background-color: var(--font-light);
  padding: 0 3px;
}

.site-form__field-checkbox label {
  display: flex;
  color: #535353;
  font-size: 14px;
  gap: 10px;
  font-weight: 600;
  line-height: 150%;
}

.site-form__field-checkbox input {
  height: 18px;
  min-width: 18px;
  margin-top: 4px;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 1.5px;
  border: none;
  outline: 1.5px solid var(--dark-color) !important;
}

.site-form__field-checkbox input:checked {
  position: relative;
}

.site-form__field-checkbox input:checked::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/uploads/images/icons/checkbox.svg");
}

.site-form__field-checkbox_centered input {
  margin: 0;
}

.site-form__field-checkbox_centered label {
  align-items: center;
}

.site-form__body a {
  color: #231F20;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.site-form__body form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-form__body button[type=submit] {
  border-radius: 6px;
  background-color: var(--accent-color);
  text-align: center;
  cursor: pointer;
  font-size: 16px;
  padding: 15px 0;
  font-weight: 900;
  transition: 0.2s all;
}

.site-form__body button[type=submit]:hover {
  background-color: var(--dark-color);
  color: var(--accent-color);
}

.site-form__actions {
  display: flex;
  justify-content: space-between;
}

.site-form__agreement {
  margin: 0 auto;
  max-width: 340px;
  text-align: center;
  color: #535353;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
}

.site-form__agreement a {
  color: #231F20;
  font-size: 12px;
  font-weight: 600;
  line-height: 150%;
  text-decoration-line: underline;
}

.site-form .social-auth__title {
  text-align: center;
  margin-bottom: 20px;
}

.site-form .social-auth__items {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

.accordion .accordion__item {
  border-bottom: 4px solid var(--accent-color);
}

.accordion .accordion__item .accordion__item-trigger {
  display: flex;
  padding: 35px 20px;
  align-items: center;
  cursor: pointer;
}

.accordion .accordion__item .accordion__item-trigger .trigger__text {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.accordion .accordion__item .accordion__item-trigger .trigger__text::before {
  content: "•";
  color: var(--dark-color);
  display: inline-flex;
  width: 1em;
  height: 1em;
}

.accordion .accordion__item .accordion__item-trigger .trigger__img {
  position: relative;
  margin-left: auto;
  transition: 0.2s;
}

.accordion .accordion__item .accordion__item-inner {
  padding-bottom: 20px;
}

.accordion .accordion__item .accordion__item-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s all;
}

.accordion .accordion__item .accordion__item-content .content__text {
  margin-top: 25px;
  padding-left: 35px;
}

.accordion .accordion__item .accordion__item-content .content__text:first-child {
  margin-top: 0;
}

.accordion .accordion__item .accordion__item-content .content__text {
  font-size: 14px;
  font-style: normal;
  line-height: 160%;
  letter-spacing: 0.06px;
}

.preview {
  position: relative;
  background-color: var(--accent-color);
  overflow: hidden;
  z-index: 3;
}

.preview__wrapper::before {
  pointer-events: none;
  content: "";
  height: 100%;
  width: 23.3em;
  left: -120px;
  transform: scale(-1, -1);
  top: 0;
  background-repeat: no-repeat;
  position: absolute;
  background-image: url("/uploads/images/parts/parts-2.svg");
  z-index: 2;
}

.preview__inner {
  position: relative;
  overflow: hidden;
}

.preview__inner::after {
  pointer-events: none;
  content: "";
  height: 100%;
  width: 200px;
  right: -20px;
  bottom: 0;
  background-repeat: no-repeat;
  position: absolute;
  background-image: url("/uploads/images/parts/LINES.svg");
  z-index: 2;
}

.preview__inner::before {
  pointer-events: none;
  content: "";
  height: 100%;
  width: 23.3em;
  right: -120px;
  bottom: 0;
  background-repeat: no-repeat;
  position: absolute;
  background-image: url("/uploads/images/parts/parts-2.svg");
  z-index: 2;
}

.preview .swiper-pagination-bullet {
  background-color: var(--accent-color);
  opacity: 1;
  width: 25px;
  border-radius: 3px;
}

.preview .swiper-pagination {
  padding: 0 190px 33px;
  display: flex;
  gap: 25px;
}

.preview .swiper-pagination-bullet-active {
  background-color: var(--light-color);
  opacity: 1;
  width: 55px;
  border-radius: 3px;
}

.preview__item {
  position: relative;
  background-position: center;
  background-size: cover;
  z-index: 5;
}

.preview__item__image {
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-color: var(--accent-color);
}

.preview__item__image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}

.preview__item__wrapper {
  height: 26vw;
  padding: 60px 190px 70px 190px;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.preview__item::after {
  content: "";
  background: linear-gradient(180deg, rgba(35, 31, 32, 0) 0%, rgba(35, 31, 32, 0.63) 56.25%, #231f20 100%);
  height: 200px;
  width: 100%;
  bottom: 0;
  position: absolute;
  left: 0;
  z-index: -1;
}

.preview__item__short {
  position: relative;
  color: var(--font-light);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1px;
  max-width: 600px;
  text-transform: uppercase;
}

.preview__item__inner {
  position: relative;
}

.preview__item__mark {
  display: inline-block;
  position: relative;
  padding: 7px 25px;
  margin-bottom: 20px;
  background-color: rgba(254, 203, 1, 0.7490196078);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.77px;
  text-transform: uppercase;
}

.matches {
  padding-bottom: 40px;
  padding-top: 35px;
  overflow: hidden;
}

.matches .container-big {
  position: relative;
}

.matches .container-big::before {
  content: "";
  height: 500px;
  width: 500px;
  transform: scale(1, -1);
  left: 50px;
  top: -250px;
  background-repeat: no-repeat;
  position: absolute;
  background-image: url("/uploads/images/parts/LINES.svg");
  z-index: 0;
}

.matches .container {
  position: relative;
  display: flex;
  gap: 25px;
  z-index: 1;
}

.matches-card {
  position: relative;
  z-index: 1;
  width: calc(50% - 12px);
  padding-bottom: 25px;
  border: 1px solid var(--accent-color);
  border-radius: 5px;
}

.matches-card__title {
  width: 100%;
  padding: 15px 0;
  text-align: center;
  background-color: var(--accent-color);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  font-size: 20px;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.matches-slider .swiper-pagination-bullet {
  background-color: var(--accent-color);
  opacity: 1;
  width: 16px;
  border-radius: 3px;
}

.matches-slider .swiper-button-next::after {
  content: "";
  background-image: url("/uploads/images/parts/arrow-right.svg");
  background-position: center;
  height: 40px;
  width: 40px;
}

.matches-slider .swiper-button-prev::after {
  content: "";
  background-image: url("/uploads/images/parts/arrow-prev.svg");
  background-position: center;
  height: 40px;
  width: 40px;
}

.matches-slider .matches-pagination {
  padding-bottom: 25px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.matches-slider .swiper-pagination-bullet {
  height: 10px;
  width: 25px;
  border-radius: 5px;
}

.matches-slider .swiper-pagination-bullet-active {
  background-color: var(--font-dark);
  opacity: 1;
  width: 70px;
}

.matches-all {
  display: flex;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.07px;
  justify-content: center;
}

.tables__all {
  display: flex;
  justify-content: center;
  font-size: 14px;
  margin-top: 15px;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.championship-card {
  width: calc(50% - 12px);
  border-radius: 5px;
  border-left: 1px solid var(--accent-color);
  border-right: 1px solid var(--accent-color);
  border-bottom: 1px solid var(--accent-color);
  padding-bottom: 30px;
}

.championship-card__titles {
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  display: flex;
  justify-content: space-between;
  background-color: var(--accent-color);
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  overflow: hidden;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.championship-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
}

.championship-card__league {
  padding: 15px 50px 15px 65px;
  color: var(--accent-color);
  font-weight: 700;
  background-color: var(--dark-color);
  -webkit-clip-path: polygon(13% 0, 10% 0, 100% 0%, 130% 100%, 0 100%, 0 100%);
  clip-path: polygon(13% 0, 10% 0, 100% 0%, 130% 100%, 0 100%, 0 100%);
}

.championship-card__league p {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-color);
}

.news {
  padding-bottom: 45px;
}

.news__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.news__items .news__item:nth-child(2) {
  grid-area: 1/1/2/2;
}

.news__items .news__item:nth-child(3) {
  grid-area: 1/2/2/3;
}

.news__items .news__item:nth-child(4) {
  grid-area: 1/3/2/4;
}

.news__items .news__item:nth-child(5) {
  grid-area: 2/1/3/4;
}

.news__items-mobile {
  display: none;
}

.news__head {
  display: flex;
  align-items: center;
  position: relative;
  gap: 35px;
  margin-bottom: 35px;
}

.news .tabs__header-item {
  padding: 5px 11px;
}

.news .tabs__content-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.shop {
  padding: 30px 0;
  margin-bottom: 55px;
  position: relative;
  background-color: var(--accent-color);
  overflow: hidden;
}

.shop .tabs__arrow {
  background-image: url("/uploads/images/icons/arrow-right.svg");
}

.shop__navigation {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.shop__navigation .swiper-button-disabled {
  opacity: 0.8;
}

.shop__navigation .shop-button-next,
.shop__navigation .shop-button-prev {
  height: 40px;
  width: 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #231F20;
  border-radius: 50%;
}

.shop__navigation .shop-button-next::before,
.shop__navigation .shop-button-prev::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  inset-inline: auto;
}

.shop__navigation .shop-button-prev::before {
  background-image: url("/uploads/images/icons/arrow-left-white.svg");
}

.shop__navigation .shop-button-next::before {
  background-image: url("/uploads/images/icons/arrow-right-white.svg");
}

.shop::before {
  content: "";
  height: 100%;
  width: 200px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("/uploads/images/parts/lines-ROMB.png");
  left: 0;
  top: 0;
  position: absolute;
}

.shop::after {
  content: "";
  height: 100%;
  width: 200px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("/uploads/images/parts/lines-ROMB-right.png");
  right: 0;
  top: 0;
  position: absolute;
}

.shop__item {
  background-size: cover;
  height: 500px;
  background-position: center;
  position: relative;
  padding: 30px;
  transition: 0.3s all;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.shop__item-big {
  width: 100%;
}

.shop__item__date {
  display: flex;
  gap: 5px;
}

.shop__item__date p,
.shop__item__date span {
  color: var(--font-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.07px;
}

.shop__item__date span {
  color: var(--accent-color);
}

.shop__item__date,
.shop__item__short {
  position: relative;
  z-index: 3;
}

.shop__item__short {
  margin-bottom: 10px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: 900;
  color: var(--font-light);
}

.shop__item__mark {
  position: absolute;
  background-color: var(--accent-color);
  opacity: 0.7;
  font-size: 14px;
  font-weight: 600;
  left: 0;
  top: 0;
  padding: 6px 30px 6px 15px;
  letter-spacing: 0.77px;
  text-transform: uppercase;
  -webkit-clip-path: polygon(-100% 0, 100% 0, 100% 0%, 80% 100%, 0 100%, 0 100%);
  clip-path: polygon(-100% 0, 100% 0, 100% 0%, 80% 100%, 0 100%, 0 100%);
}

.shop__item:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(180deg, rgba(35, 31, 32, 0) 0%, rgba(35, 31, 32, 0.63) 56.25%, #231F20 100%);
}

.shop__item:hover {
  transform: scale(1.02);
}

.shop__head {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.shop .shop__tabs {
  display: flex;
  align-items: center;
}

.shop .shop__tabs .tabs__header span {
  color: var(--light-color);
  font-weight: 900;
}

.shop .shop__tabs .active {
  position: relative;
  z-index: 100;
  background-color: var(--light-color);
}

.shop .shop__tabs__item {
  padding: 5px 18px;
}

.shop .shop__tabs__item::after {
  background-color: var(--light-color);
}

.shop .shop__tabs__item:hover {
  background-color: var(--light-color);
}

.shop .shop__tabs__content__row {
  display: flex;
  gap: 30px;
}

.shop .shop__tabs__content-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.shop-slider {
  width: 130%;
  overflow-x: hidden !important;
}

.shop-slider .shop__item-card {
  height: 100%;
  transition: 0.2s all;
  padding: 30px;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--light-color);
  border: 2px solid transparent;
}

.shop-slider .shop__item-card:hover {
  border: 2px solid #231F20;
}

.shop-slider .shop__item-card__actions-inner {
  display: flex;
  flex-direction: column;
}

.shop-slider .shop__item-card__actions {
  margin-top: 35px;
  width: 100%;
  transition: 0.8s all;
  background-color: var(--light-color);
  max-height: 200px;
  overflow: hidden;
  z-index: 10;
}

.shop-slider .shop__item-card__image {
  width: 100%;
  height: 260px;
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-slider .shop__item-card__image img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.shop-slider .shop__item-card__price {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.shop-slider .shop__item-card__mobile-btn {
  display: none;
}

.shop-slider .shop__item-card__title {
  max-width: 270px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07px;
  margin-bottom: 25px;
}

.shop-slider .shop__item-card__more-btn {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07px;
  text-decoration-line: underline;
}

.shop-slider .shop__item-card__add-btn {
  margin-bottom: 20px;
  border-radius: 6px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  width: 100%;
  letter-spacing: 0.14px;
  padding: 14px 0;
  background-color: var(--accent-color);
}

.academy {
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.academy__inner {
  position: relative;
}

.academy .swiper-button-next::after,
.academy .swiper-button-prev::after {
  content: "";
  background-position: center;
  height: 40px;
  width: 40px;
}

.academy .swiper-button-prev {
  left: -5%;
}

.academy .swiper-button-prev::after {
  background-image: url("/uploads/images/parts/arrow-prev.svg");
}

.academy .swiper-button-next {
  right: -5%;
}

.academy .swiper-button-next::after {
  background-image: url("/uploads/images/parts/arrow-right.svg");
}

.partners {
  position: relative;
  padding: 120px 0;
  background-image: url("/uploads/images/parts/BACK-PARTNERS.png");
  background-size: cover;
}

.partners__title {
  position: absolute;
  text-align: center;
  font-size: 20px;
  padding: 19px 55px;
  left: 50%;
  top: -30px;
  transform: translateX(-50%) skew(-30deg);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: var(--accent-color);
}

.partners__title div {
  transform: skew(30deg);
}

.cart {
  margin-top: 30px;
  min-height: 70vh;
  padding-bottom: 150px;
}

.cart__empty-title {
  font-size: 18px;
  font-weight: 600;
  opacity: 0.8;
  display: none;
}

.cart__items {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
}

.cart__item-remove {
  margin-right: 25px;
  margin-bottom: auto;
  height: 18px;
  width: 18px;
}

.cart__item-remove img {
  width: 100%;
}

.shopcart__back {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.42);
  height: 100vh;
  z-index: 50;
}

.shopcart__modal-body {
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(169, 169, 169, 0.42);
  border-bottom: 1px solid rgba(169, 169, 169, 0.42);
}

.shopcart__modal {
  min-width: 600px;
  max-width: 1000px;
  border-radius: 10px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  background-color: var(--light-color);
  padding: 30px;
}

.shopcart__modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shopcart__modal-title {
  font-size: 22px;
  font-weight: 700;
}

.cart__item {
  display: flex;
  padding: 20px 10px;
  align-items: center;
  border-bottom: 1px solid rgba(160, 160, 160, 0.45);
}

.cart__item-base {
  display: flex;
}

.cart__item-base__image {
  width: 100px;
  height: 100px;
}

.cart__item-base__image img {
  max-width: 100%;
  margin: auto;
  max-height: 100%;
  object-fit: contain;
}

.cart__item-info {
  margin-right: 30px;
  margin-left: 30px;
  width: 200px;
}

.cart__item-info p {
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 5px;
}

.cart__item .cart__item-title {
  margin-bottom: 10px;
  font-weight: 700;
  display: block;
}

.cart__item-option__item {
  margin: 0 20px;
}

.cart__item-option__item p:first-child {
  margin-bottom: 10px;
  opacity: 0.6;
}

.cart__item-option__item .input-group {
  border-radius: 3px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(160, 160, 160, 0.45);
  padding: 10px 15px;
  min-width: 150px;
  height: 45px;
}

.cart__item .cart__item-price {
  margin-top: auto;
  display: block;
  font-size: 22px;
  font-weight: 700;
  margin-left: auto;
}

.cart__item-options {
  display: flex;
  gap: 30px;
}

.cart__item .input-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart__item .input-group button {
  font-size: 12px;
  margin-top: 2px;
  opacity: 0.6;
  height: 30px;
  width: 30px;
}

.cart__item .input-group input {
  height: 30px;
  width: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  font-size: 16px;
  opacity: 0.6;
}

.cart__info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cart__total-price {
  letter-spacing: 1px;
  font-size: 24px;
}

.cart__total-price span {
  font-weight: bold;
  font-size: 28px;
}

.cart__send-order-btn {
  border-radius: 5px;
  margin-top: 20px;
  padding: 15px 100px;
}

.added-product__body {
  display: flex;
  align-items: center;
}

.added-product__error {
  font-size: 18px;
  color: darkred;
}

.added-product .cart__item {
  border: none;
}

.added-product__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.added-product__base {
  display: flex;
  margin-right: 50px;
}

.added-product__block {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
}

.added-product__block:nth-child(3) {
  margin-left: auto;
  justify-content: space-between;
  gap: 30px;
}

.added-product__block .cart__item-option__item {
  margin: 0;
}

.added-product__image {
  width: 100px;
  height: 100px;
}

.added-product__image img {
  max-width: 100%;
  max-height: 100%;
}

.added-product__block .cart__item-option__item input {
  text-align: center;
}

.added-product__order-btn {
  text-align: center;
  margin-top: 15px;
  padding: 10px 45px;
  border-radius: 5px;
}

.added-product__block p {
  opacity: 0.7;
  font-size: 14px;
  margin-bottom: 5px;
}

.added-product__price {
  margin-top: auto;
  margin-left: auto;
  font-size: 22px;
  letter-spacing: 1px;
  font-weight: 900;
}

.partners__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  row-gap: 90px;
}

.app {
  padding: 50px 0;
}

.app__inner {
  padding: 55px;
  position: relative;
  height: 400px;
  border-radius: 20px;
  display: flex;
  align-items: end;
  justify-content: start;
  flex-direction: column;
}

.app__image {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.app__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.app__image_mobile {
  display: none;
}

.app__title {
  font-size: 20px;
  font-weight: 900;
  line-height: 149.5%;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-left: auto;
  color: var(--accent-color);
  max-width: 200px;
  margin-bottom: auto;
}

.app__descr {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  max-width: 300px;
  letter-spacing: 0.07px;
  margin-right: auto;
  margin-bottom: 20px;
}

.app__row {
  display: flex;
  gap: 30px;
}

.app__row:nth-child(3) {
  margin-right: auto;
}

.app__download {
  display: block;
  height: 40px;
  max-width: 300px;
}

.app__download img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.news-page__inner {
  margin: 0 auto;
  max-width: 1920px;
  overflow: hidden;
}

.news-page .shop {
  margin-bottom: 0;
}

.news-page .hero-news {
  position: relative;
  z-index: 3;
  background-color: var(--accent-color);
}

.hero {
  width: 100%;
}

.hero__image-mobile {
  display: none;
}

.hero__image,
.hero__image-mobile {
  width: 100%;
  height: 26vw;
}

.hero__image img,
.hero__image-mobile img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.hero__inner {
  position: relative;
}

.hero__inner::after {
  content: "";
  height: 100%;
  width: 320px;
  right: -160px;
  top: 50%;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  background-image: url("/uploads/images/parts/LINES.svg");
  z-index: 2;
}

.hero__inner::before {
  content: "";
  height: 100%;
  width: 320px;
  left: -160px;
  top: 250px;
  transform: scale(-1, 1);
  background-repeat: no-repeat;
  position: absolute;
  background-size: contain;
  background-image: url("/uploads/images/parts/LINES.svg");
  z-index: 2;
}

.single-news {
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}

.single-news .btn-share {
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-news .btn-share i {
  font-size: 16px;
}

.single-news .btn-whatsapp {
  border-radius: 50%;
  background: linear-gradient(to bottom, #25D366 0%, #00CF4D 100%);
}

.single-news .btn-whatsapp i,
.single-news .btn-facebook i,
.single-news .btn-vk i {
  color: var(--font-light);
}

.single-news .btn-facebook {
  border-radius: 50%;
  background: #1877f2;
  align-items: flex-end;
}

.single-news .btn-facebook i {
  font-size: 20px;
}

.single-news .btn-vk {
  background: #0077FF;
  border-radius: 7px;
}

.single-news .btn-vk i {
  font-size: 14px;
}

.single-news__arrow {
  position: absolute;
  top: calc(50% - 50px);
  transform: translateY(-50%);
  cursor: pointer;
}

.single-news__arrow-next {
  right: -10%;
}

.single-news__arrow-prev {
  left: -10%;
}

.single-news .slick-disabled {
  opacity: 0.4;
}

.single-news__image-wrapper {
  position: relative;
}

.single-news__slider {
  position: relative;
}

.single-news__head {
  padding-top: 25px;
  padding-bottom: 15px;
  display: flex;
  position: relative;
  align-items: flex-start;
  gap: 80px;
}

.single-news__head .single-news__inner {
  width: 100%;
  position: relative;
}

.single-news__head .single-news__wrapper {
  margin: 0 auto;
}

.single-news__col {
  width: 100%;
}

.single-news__col:nth-child(2) {
  max-width: 740px;
}

.single-news__mark {
  max-width: 150px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.77px;
  display: inline-block;
  text-transform: uppercase;
  position: absolute;
  text-align: center;
  padding: 8px 25px;
}

.single-news__mark::before {
  top: 0;
  left: 0;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  transform: skew(-20deg);
  z-index: -1;
}

.single-news__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 140.5%;
  max-width: 650px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.single-news .container-mini {
  max-width: 750px;
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.single-news__date {
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  margin-top: auto;
  position: absolute;
  right: 0;
  letter-spacing: 0.07px;
  margin-left: auto;
  bottom: 0;
}

.single-news__date span {
  color: var(--font-accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.07px;
}

.single-news__body {
  display: flex;
  gap: 80px;
  position: relative;
  padding-bottom: 70px;
  padding-top: 35px;
  border-bottom: 6px solid var(--accent-color);
  border-top: 6px solid var(--accent-color);
}

.single-news__body .single-news__wrapper {
  margin: 0 auto 45px;
}

.single-news__body strong {
  display: block;
  font-size: 16px;
  font-style: italic;
  font-weight: 800;
  line-height: 200%;
  letter-spacing: 0.08px;
  margin-bottom: 45px;
}

.single-news__body strong:last-child {
  margin-bottom: 0;
}

.single-news__body p {
  font-size: 16px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
  margin-bottom: 45px;
}

.single-news__body p:last-child {
  margin-bottom: 0;
}

.single-news__image-block {
  margin-bottom: 45px;
}

.single-news__image-block p {
  color: #535353;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.07px;
}

.single-news__socials {
  display: flex;
  position: absolute;
  right: 0;
  justify-content: center;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.single-news__socials img {
  width: 25px;
}

.single-news__socials p {
  transform: rotate(-90deg) translateX(-40px) translateY(35px);
}

.single-news__image {
  margin-bottom: 5px;
  width: 100%;
  position: relative;
  height: 400px;
}

.single-news__image img {
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-news__quote {
  position: relative;
  margin-bottom: 45px;
  background-color: var(--light-color);
}

.single-news__quote__border {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 900px;
  height: 100%;
  z-index: 2;
  background-size: 90%;
  background-position: center left;
  background-repeat: no-repeat;
  background-image: url("/uploads/images/parts/quote.svg");
}

.single-news__quote strong {
  position: relative;
  z-index: 3;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 189%;
  letter-spacing: 0.1px;
  padding: 40px 50px;
}

.last-news {
  padding-bottom: 60px;
  overflow: hidden;
}

.last-news__inner {
  position: relative;
}

.last-news .last-news-button-next,
.last-news .last-news-button-prev {
  background-position: center;
  height: 40px;
  width: 40px;
}

.last-news .last-news-button-next::after,
.last-news .last-news-button-prev::after {
  display: none;
}

.last-news .last-news-button-prev {
  left: -50px;
}

.last-news .last-news-button-next {
  right: -50px;
}

.last-news__head {
  margin-bottom: 30px;
}

.last-news__item {
  width: 30%;
}

.last-news__item-large {
  width: 70%;
}

.team {
  padding-bottom: 100px;
  position: relative;
  /*z-index: 5;*/
}

.team__head {
  border-bottom: 6px solid var(--accent-color);
  padding: 30px 40px 40px 40px;
}

.team__head-base {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.team__title {
  line-height: 123%;
}

.team .team-block {
  width: 100%;
  position: relative;
}

.team .team-block__title {
  padding-left: 40px;
  color: #535353;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 25px 0;
}

.team .team-block__items {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.team .team-block__items .centered-image {
  background-image: url("/uploads/images/parts/team-back-center.png");
}

.team .team-block__items .top-image {
  background-image: url("/uploads/images/parts/team-back-top.png");
}

.team .team-tabs {
  overflow: visible;
}

.team .team-tabs .tabs__inner {
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
}

.team .team-tabs .tabs__wrapper {
  width: 100%;
}

.team .team-tabs .tabs__header {
  width: 100%;
  padding-left: 0;
}

.team .team-tabs__content {
  display: flex;
}

.team .team-tabs__content__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.team .player {
  height: 370px;
  position: relative;
}

.team .player__marks {
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
  align-items: center;
}

.team .player__over {
  position: absolute;
  border-radius: 10px;
  left: -20px;
  right: -20px;
  top: -20px;
  padding: 20px;
  transition: 0.4s opacity;
  display: flex;
  background-color: var(--accent-color);
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--dark-color);
  z-index: 1;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
}

.team .player__over::before {
  content: "";
  width: 100%;
  height: 380px;
}

.team .player__inner {
  width: 100%;
  height: 100%;
  padding: 15px;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: 0.2s all;
}

.team .player__inner::before {
  content: "";
  position: absolute;
  transition: 0.2s all;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(35, 31, 32, 0) 0%, rgba(35, 31, 32, 0.63) 56.25%, #231F20 100%);
}

.team .player__additional-mark_hidden {
  display: none;
}

.team .player:hover {
  z-index: 7;
}

.team .player:hover .player__additional-mark {
  display: none;
}

.team .player:hover .player__additional-mark_hidden {
  display: block;
}

.team .player:hover .player__inner {
  border-radius: 10px;
}

.team .player:hover .player__inner::before {
  border-radius: 10px;
}

.team .player:hover .player__name,
.team .player:hover .player__lastname {
  color: var(--font-accent);
}

.team .player:hover .player__mark {
  background-color: var(--dark-color);
  color: var(--font-accent);
}

.team .player:hover .player__over {
  visibility: visible;
  opacity: 1;
  z-index: 2;
  display: flex;
}

.team .player__image {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  left: 0;
}

.team .player__image img {
  height: 340px;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: cover;
}

.team .player__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 50px;
  height: 80px;
  font-weight: 900;
  letter-spacing: 0.12px;
  margin-bottom: auto;
  z-index: 1;
  background-color: var(--accent-color);
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.team .player__info {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.07px;
  min-height: 60px;
  padding-bottom: 25px;
}

.team .player__info span {
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.07px;
}

.team .player__name {
  color: var(--font-light);
  position: relative;
  font-size: 16px;
  z-index: 1;
  font-weight: 900;
  letter-spacing: 0.08px;
}

.team .player__lastname {
  color: var(--font-light);
  position: relative;
  font-size: 24px;
  z-index: 1;
  font-weight: 900;
  letter-spacing: 0.12px;
}

.team .player__more-btn {
  color: var(--font-accent);
  background-color: var(--dark-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s color;
  padding: 12px 30px 12px 50px;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  letter-spacing: 0.07px;
}

.team .player__more-btn:hover {
  color: var(--font-light);
}

.modal__wrapper {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 10;
  display: none;
}

.modal__wrapper .modal {
  background: var(--accent-color);
  padding: 45px 80px;
  border-radius: 5px;
  overflow: scroll;
  max-height: 80vh;
  max-width: 1140px;
  position: relative;
}

.modal__wrapper .modal::-webkit-scrollbar {
  display: none;
}

/*.modal__wrapper .modal::before {*/
/*    content: "";*/
/*    position: sticky;*/
/*    bottom: 0;*/
/*    right: 0;*/
/*    width: 32%;*/
/*    height: 60%;*/
/*    background-repeat: no-repeat;*/
/*    z-index: 1;*/
/*    background-image: url("/uploads/images/parts/team-single-lines.png");*/
/*}*/
.modal__wrapper .modal__title {
  text-align: center;
}

.modal__wrapper .modal__close {
  cursor: pointer;
  display: flex;
  right: 20px;
  top: 20px;
  position: absolute;
  justify-content: flex-end;
}

.modal__wrapper .modal__inner {
  display: flex;
  gap: 50px;
}

.modal__wrapper .centered-image {
  background-image: url("/uploads/images/parts/team-back-center.png");
}

.modal__wrapper .player__block {
  border-top: 6px solid var(--dark-color);
}

.modal__wrapper .player__description {
  font-size: 14px;
  line-height: 175%;
  letter-spacing: 0.08px;
}

.modal__wrapper .player__career {
  padding-top: 35px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.modal__wrapper .player__career__title {
  font-size: 16px;
  font-weight: 900;
  line-height: 175%;
  letter-spacing: 0.08px;
  margin-bottom: 30px;
}

.modal__wrapper .player__career__info {
  justify-content: space-between;
  display: flex;
  gap: 50px;
}

.modal__wrapper .player__career__info p {
  position: relative;
  z-index: 2;
  font-size: 14px;
  font-weight: 600;
  line-height: 175%;
  letter-spacing: 0.07px;
  margin-bottom: 40px;
}

.modal__wrapper .player__career__col p:last-child {
  margin-bottom: 0;
}

.modal__wrapper .player__base {
  display: flex;
  width: 100%;
  align-items: flex-end;
  height: 85px;
  margin-bottom: 35px;
}

.modal__wrapper .player__name {
  margin-right: auto;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.16px;
  margin-left: 15px;
}

.modal__wrapper .player__role {
  font-size: 16px;
  font-weight: 900;
  margin-right: 15px;
  margin-left: 50px;
  text-align: right;
  max-width: 150px;
  letter-spacing: 0.08px;
}

.modal__wrapper .player__team {
  height: 100%;
}

.modal__wrapper .player__team img {
  height: 100%;
}

.modal__wrapper .player-card {
  position: relative;
  width: 260px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 5px solid var(--light-color);
}

.modal__wrapper .player-card__inner {
  width: 100%;
  height: 370px;
  padding: 15px;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: 0.2s all;
}

.modal__wrapper .player-card__marks {
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
  align-items: center;
}

.modal__wrapper .player-card__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 50px;
  height: 80px;
  font-weight: 900;
  letter-spacing: 0.12px;
  margin-bottom: auto;
  z-index: 1;
  background-color: var(--accent-color);
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.modal__wrapper .player-card__image {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  left: 0;
}

.modal__wrapper .player-card__image img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.modal__wrapper .player-modal__info p,
.modal__wrapper .player-modal__info span,
.modal__wrapper .player-modal__info i {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.07px;
}

.modal__wrapper .player-modal__info span {
  font-weight: 900;
}

.modal__wrapper .player-modal__info i {
  margin-left: 3px;
  font-weight: 600;
}

.modal__wrapper .player-modal__info-mobile {
  display: none;
}

.single-team {
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
}

.single-team__head {
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
  align-items: center;
  gap: 25px;
  margin-left: 40px;
}

.single-team__back {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-color);
  border-radius: 50%;
  transition: 0.2s all;
}

.single-team__back i {
  font-size: 20px;
  color: var(--accent-color);
}

.single-team__back:hover {
  background-color: var(--light-color);
  border: 1px solid var(--accent-color);
  color: var(--font-dark);
}

.single-team__title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.single-team__inner {
  border-radius: 10px;
  padding: 25px 50px 50px;
  display: flex;
  gap: 55px;
  position: relative;
  background-color: var(--accent-color);
}

.single-team__inner .centered-image {
  background-image: url("/uploads/images/parts/team-back-center.png");
}

.single-team__block {
  padding: 0 15px;
}

.single-team__block:nth-child(2) {
  border-top: 6px solid var(--dark-color);
}

.single-team__body {
  position: relative;
}

.single-team__body::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32%;
  height: 44%;
  background-repeat: no-repeat;
  z-index: 1;
  background-image: url("/uploads/images/parts/team-single-lines.png");
}

.single-team__row {
  display: flex;
}

.single-team .player-card {
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  border: 5px solid var(--light-color);
}

.single-team .player-card__inner {
  width: 260px;
  height: 370px;
  padding: 15px;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: 0.2s all;
}

.single-team .player-card__marks {
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
  align-items: center;
}

.single-team .player-card__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 50px;
  height: 80px;
  font-weight: 900;
  letter-spacing: 0.12px;
  margin-bottom: auto;
  z-index: 1;
  background-color: var(--accent-color);
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.single-team .player-card__image {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
}

.single-team .player-card__image {
  height: 95%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.single-team .player-card__image img {
  /*width: 100%;*/
  /*height: 100%;*/
  /*object-fit: cover;*/
  /*object-position: bottom;*/
  height: 340px;
  max-width: 100%;
  object-fit: cover;
}

.single-team .player__base {
  display: flex;
  width: 100%;
  align-items: center;
  height: 85px;
  margin-bottom: 15px;
}

.single-team .player__inst {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08px;
  margin-bottom: 30px;
}

.single-team .player__inst i {
  font-size: 30px;
}

.single-team .player__role-mobile {
  display: none;
}

.single-team .player__name {
  margin-right: auto;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.16px;
}

.single-team .player__role {
  font-size: 16px;
  font-weight: 900;
  margin-right: 15px;
  letter-spacing: 0.08px;
}

.single-team .player__team {
  height: 100%;
}

.single-team .player__team img {
  height: 100%;
}

.single-team .player__info {
  width: 100%;
  padding: 20px 40px;
  background-color: #231F20;
  display: flex;
  border-radius: 10px;
  gap: 70px;
}

.single-team .player__info-block p,
.single-team .player__info-block span,
.single-team .player__info-block i {
  color: var(--font-light);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.07px;
}

.single-team .player__info-block span {
  font-weight: 900;
}

.single-team .player__info-block i {
  margin-left: 3px;
  font-weight: 600;
}

.single-team .player__info-divider {
  height: 100%;
  transform: rotate(20deg) scale(1.1);
  background-color: var(--accent-color);
  width: 2px;
}

.single-team .player__counters {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.single-team .player__counter {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 60px 50px;
  overflow: visible;
}

.single-team .player__counter::before {
  content: "";
  width: 150%;
  height: 100%;
  overflow: visible;
  background-image: url("/uploads/images/parts/Blind.svg");
  top: 0;
  bottom: 0;
  background-size: 100%;
  background-position: center;
  position: absolute;
  z-index: 0;
}

.single-team .player__counter__value {
  position: relative;
  font-size: 64px;
  font-weight: 1000;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.single-team .player__counter__season {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06px;
  display: flex;
  text-align: center;
  flex-direction: column;
}

.single-team .player__counter__season span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.single-team .player__counter__repeat {
  position: absolute;
  width: 45px;
  height: 45px;
  background-color: var(--dark-color);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 900;
  letter-spacing: 0.1px;
  bottom: 50px;
  right: 5px;
  text-transform: uppercase;
}

.single-team .player__counter__title {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.single-team .player__counter__title strong {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}

.single-team .player__achievements {
  margin-bottom: 25px;
}

.single-team .player__achievements__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 175%;
  letter-spacing: 0.08px;
  margin-bottom: 30px;
}

.single-team .player__achievements ul li {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 175%;
  letter-spacing: 0.07px;
  list-style: inside;
}

.single-team .player__achievements ul li span {
  font-size: 14px;
  font-weight: 900;
  line-height: 175%;
  letter-spacing: 0.07px;
}

.single-team .player__career {
  padding-top: 35px;
  position: relative;
}

.single-team .player__career__title {
  font-size: 16px;
  font-weight: 900;
  line-height: 175%;
  letter-spacing: 0.08px;
  margin-bottom: 30px;
}

.single-team .player__career__info {
  flex-direction: column;
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
}

.single-team .player__career__info,
.single-team .player__career__info p,
.single-team .player__career__info sub {
  font-size: 14px;
  font-weight: 600;
  line-height: 170%;
  letter-spacing: 0.07px;
}

.single-team .player__career__col p:last-child {
  margin-bottom: 0;
}

.single-team .tshort-card {
  background-color: var(--light-color);
  border-radius: 10px;
}

.single-team .tshort-card__inner {
  padding: 20px 25px;
}

.single-team .tshort-card__image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 210px;
  margin-bottom: 1.5rem;
}

.single-team .tshort-card__image-number,
.single-team .tshort-card__image-name {
  position: absolute;
  font-size: 42px;
  font-weight: 900;
}

.single-team .tshort-card__image-name {
  transform: translateY(-55px);
  font-size: 18px;
}

.single-team .tshort-card__image-number {
  transform: translateY(-20px);
}

.single-team .tshort-card__image img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.single-team .tshort-card__price {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
  margin-bottom: 15px;
}

.single-team .tshort-card__basket {
  font-size: 14px;
  display: flex;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.14px;
  padding: 10px 0;
  width: 100%;
  background-color: var(--accent-color);
  margin-bottom: 15px;
  border: 1px solid transparent;
  transition: 0.2s all;
}

.single-team .tshort-card__basket:hover {
  background-color: var(--light-color);
  border: 1px solid var(--accent-color);
  color: var(--font-dark);
}

.single-team .tshort-card__more {
  font-size: 14px;
  display: flex;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.14px;
  width: 100%;
}

.single-team .tshort-card__more:hover {
  font-weight: 900;
}

.single-team .tshort-card__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.07px;
}

.single-team .tshort-card-mobile {
  display: none;
}

.team-about {
  padding-bottom: 50px;
}

.team-about__head {
  padding: 30px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.team-about__image {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 10px;
}

.team-about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.team-about__wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.team-about__inner {
  min-height: 250px;
  padding: 40px 100px;
  margin-top: -10px;
  position: relative;
  border-radius: 10px;
  z-index: 2;
  display: flex;
  background-color: var(--accent-color);
}

.team-about__inner::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 25%;
  transform: scale(-1, 1);
  z-index: 1;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("/uploads/images/parts/lines-ROMB.png");
}

.team-about__year {
  position: absolute;
  display: inline-flex;
  font-size: 48px;
  writing-mode: vertical-rl;
  font-weight: 900;
  letter-spacing: 2.4px;
  left: -15px;
  top: 0;
  text-transform: uppercase;
  transform: rotate(-180deg);
}

.team-about__head {
  padding: 30px 0;
}

.team-about__comp {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.team-about__comp__item {
  color: #231F20;
  font-size: 16px;
  font-weight: 900;
  line-height: 174%;
  letter-spacing: 0.08px;
  margin-bottom: 45px;
}

.team-about__comp__item:last-child {
  margin-bottom: 0;
}

.team-about__comp__item ul li {
  display: flex;
  gap: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 174%;
  letter-spacing: 0.08px;
}

.team-about__comp__item ul li p:nth-child(1) {
  width: 20px;
}

.team-about__comp__item ul li p:last-child {
  width: 100%;
}

.match {
  padding-bottom: 70px;
}

.match__head {
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
  border-bottom: 6px solid var(--accent-color);
}

.match__subtitle {
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.match__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pagination {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.pagination .active {
  color: var(--accent-color);
}

.pagination .page-item .page-link {
  font-size: 16px;
}

.match__items {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.match__item {
  border: 1px solid var(--accent-color);
  border-radius: 10px;
  width: calc(50% - 20px);
}

.tournament {
  padding-bottom: 100px;
}

.tournament__head {
  position: relative;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  border-bottom: 6px solid var(--accent-color);
}

.tournament__inner {
  max-width: 870px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.tournament__table {
  border-radius: 10px;
  border: 1px solid var(--accent-color);
}

.tournament__table .table-row:not(.table-head):hover::after {
  background-color: var(--accent-color);
}

.tournament__table .table__title {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: var(--accent-color);
}

.tournament__table .table-cell {
  font-size: 16px;
}

.tournament__table .table-head .table-cell {
  font-size: 12px;
}

.tournament__table .table__title_dark {
  color: var(--accent-color);
  background-color: #231F20;
}

.tournament .table-head_mobile {
  display: none;
}

.academy-page__inner {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

.academy-page .hero {
  height: unset;
}

.academy-page .hero__inner {
  position: relative;
  overflow: hidden;
}

.academy-page .hero__image {
  width: 100%;
}

.academy-page .hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.academy-about {
  padding-bottom: 50px;
}

.academy-about__head {
  padding: 30px;
}

.academy-about__head .container {
  width: 100%;
}

.academy-about__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.academy-about__goals {
  padding: 25px 0;
  position: relative;
  margin-bottom: 35px;
}

.academy-about__goals::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 180px;
  background-size: 100%;
  background-image: url("/uploads/images/parts/about-back-1.png");
  background-repeat: no-repeat;
}

.academy-about__goals__text {
  position: relative;
  color: var(--font-light);
  font-size: 20px;
  font-weight: 900;
  line-height: 160%;
  max-width: 430px;
  letter-spacing: 0.1px;
}

.academy-about__logo {
  position: relative;
  height: 100%;
}

.academy-about__logo img {
  height: 100%;
}

.academy-about__rules {
  padding: 0 50px;
  display: flex;
  margin-bottom: 70px;
  justify-content: space-around;
}

.academy-about__rules .academy-about__col:last-child {
  margin-right: 0;
}

.academy-about__rules ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}

.academy-about__rules ul li {
  max-width: 380px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
  list-style: outside;
}

.academy-about__advantages {
  display: flex;
  overflow: hidden;
  justify-content: center;
  gap: 50px;
}

.academy-about__advantage {
  width: calc(33.3333333333% - 125px);
}

.academy-about__advantage__image {
  height: 60px;
  width: 60px;
}

.academy-about__advantage__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.academy-about__advantage__value {
  color: var(--accent-color);
  font-size: 36px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 0.18px;
}

.academy-about__advantage__text {
  color: #231F20;
  font-size: 16px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
}

.academy-news {
  padding-bottom: 50px;
}

.academy-news__slider {
  display: none;
}

.academy-news__head {
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.academy-news__more {
  padding: 7px 10px;
  position: relative;
  border: 1px solid var(--accent-color);
}

.academy-news__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.academy-news__item:nth-child(1) {
  grid-area: 1/1/2/2;
}

.academy-news__item:nth-child(2) {
  grid-area: 1/2/2/3;
}

.academy-news__item:nth-child(3) {
  grid-area: 1/3/2/4;
}

.academy-news__item:nth-child(4) {
  grid-area: 2/1/3/4;
}

.academy-players {
  padding-bottom: 50px;
}

.academy-players__head {
  padding: 30px;
}

.academy-players__preview {
  position: relative;
  display: flex;
  padding: 20px 0;
  margin-bottom: 30px;
  align-items: center;
}

.academy-players__preview::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("/uploads/images/parts/academy-back-2.png");
  background-repeat: no-repeat;
}

.academy-players__preview__info {
  transform: skew(-32deg);
  padding-left: 100px;
  display: flex;
  flex-direction: column;
}

.academy-players__preview .container {
  display: flex;
  height: 100%;
}

.academy-players__preview__col {
  height: 100%;
}

.academy-players__preview__col:nth-child(2) {
  margin-left: 50px;
}

.academy-players__preview__image {
  max-width: 400px;
  overflow: hidden;
  height: 280px;
  transform: skew(-32deg);
  background-color: aliceblue;
}

.academy-players__preview__image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 150%;
  height: 100%;
  transform: skew(32deg) translateX(-100px);
}

.academy-players__preview__title {
  position: relative;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
  text-transform: uppercase;
  transform: skew(32deg);
  margin-bottom: 40px;
}

.academy-players__preview__address {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08px;
  margin-bottom: 40px;
  transform: skew(32deg);
  display: none;
}

.academy-players__preview__message {
  position: relative;
  font-size: 16px;
  letter-spacing: 0.2px;
  text-align: left;
  font-weight: 900;
  max-width: 350px;
}

.academy-players__preview__message p {
  transform: skew(32deg);
  margin-bottom: 25px;
}

.academy-players__preview__message p:last-child {
  margin-bottom: 0;
}

.academy-players__preview__btn {
  color: var(--font-light);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  display: block;
  margin-top: auto;
  letter-spacing: 0.14px;
  padding: 12px 70px;
  position: relative;
  z-index: 1;
}

.academy-players__preview__btn p {
  transform: skew(32deg);
  text-align: center;
}

.academy-players__preview__btn p:last-child {
  display: none;
}

.academy-players__preview__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--dark-color);
}

.academy-players__info {
  display: grid;
  gap: 70px;
  max-width: 920px;
  margin: 0 auto;
  justify-content: center;
  row-gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

.academy-players__info .academy-players__rule {
  max-width: 450px;
  margin-bottom: 20px;
}

.academy-players__info .academy-players__rule:last-child {
  display: flex;
  justify-content: center;
  max-width: unset;
}

.academy-players__info .academy-players__rule:last-child .academy-players__info__btn {
  padding: 12px 70px;
}

.academy-players__info .academy-players__rule span {
  font-size: 16px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
  margin-bottom: 20px;
  display: block;
}

.academy-players__info .academy-players__rule strong {
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 0.08px;
}

.academy-players__info .academy-players__info__btn {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding: 12px 35px;
  letter-spacing: 0.14px;
  display: table;
  justify-self: center;
}

.academy-contacts {
  padding-bottom: 50px;
}

.academy-contacts__head {
  padding: 30px;
}

.academy-contacts__items {
  display: flex;
}

.academy-contacts .company-block__image {
  width: 100%;
  position: relative;
  height: 325px;
}

.academy-contacts .company-block__selection {
  position: absolute;
  display: block;
  right: -20px;
  color: #231F20;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
  background-color: rgba(254, 204, 1, 0.8);
  padding: 15px 35px 15px 20px;
  bottom: 0;
}

.academy-contacts .company-block__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.academy-contacts .company-block__title {
  padding: 15px 18px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
}

.academy-contacts .company-block__inner {
  border-top: 4px solid var(--dark-color);
}

.academy-contacts .company-block__info {
  padding: 15px 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.academy-contacts .company-block__info__item {
  display: flex;
  gap: 10px;
  font-size: 16px;
  align-items: center;
  font-weight: 600;
  letter-spacing: 0.08px;
}

.academy-contacts .company-block__info__item svg {
  height: 20px !important;
  width: 20px !important;
}

.academy-team {
  padding-bottom: 50px;
}

.academy-team__head {
  padding: 30px;
}

.academy-team__title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1.2px;
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.academy-team__photo {
  width: 100%;
  height: 500px;
  background-size: cover;
  position: relative;
  padding: 50px;
  justify-content: center;
  align-items: end;
  display: flex;
}

.academy-team__photo::before {
  content: "";
  width: 100%;
  height: 130px;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: 0;
  background: linear-gradient(180deg, rgba(35, 31, 32, 0) 0%, rgba(35, 31, 32, 0.63) 56.25%, #231F20 100%);
}

.academy-team__photo a {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.14px;
  padding: 12px 45px;
}

.academy-team .tabs {
  margin-left: 60px;
  display: flex;
  flex-wrap: wrap;
  max-width: 630px;
}

.academy-team .tabs__item {
  padding: 5px 20px;
}

.academy-coaches {
  padding-bottom: 50px;
}

.academy-coaches__head {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.academy-coaches__more {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
  padding: 7px 15px;
  position: relative;
  z-index: 1;
}

.academy-coaches__more:hover::before {
  background: var(--accent-color);
}

.academy-coaches__more::before {
  transition: 0.2s all;
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent-color);
  z-index: -1;
  transform: skew(-30deg);
}

.academy-coaches__more_mobile {
  display: none;
}

.academy-coaches__items {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.academy-coaches__items .coach-block {
  flex: 1;
}

.academy-branch {
  padding-bottom: 50px;
}

.academy-branch__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}

.academy-branch .overflow-hidden {
  overflow: hidden;
}

.academy-dropdown-btn {
  cursor: pointer;
}

.academy-dropdown-btn img {
  height: 30px;
  width: 30px;
}

.academy-branch-company {
  border-top: 4px solid var(--dark-color);
  position: relative;
  z-index: 1;
}

.academy-branch-company:last-child {
  border-bottom: 4px solid var(--dark-color);
}

.academy-branch-company:hover .company__phone {
  position: relative;
  z-index: 1;
}

.academy-branch-company:hover .company__phone::before {
  content: "";
  width: 130%;
  height: 120%;
  top: 50%;
  left: 50%;
  position: absolute;
  background-color: white;
  transform: skew(-30deg) translateY(-50%) translateX(-55%);
  z-index: -1;
}

.academy-branch-company:hover .company__logo {
  position: relative;
}

.academy-branch-company:hover .company__logo::after {
  content: "";
  width: 130px;
  height: 160%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  background-image: url("/uploads/images/parts/company-lines.png");
  z-index: -1;
  background-position: center;
  background-size: 105%;
  background-repeat: no-repeat;
}

.academy-branch-company:hover::before {
  content: "";
  width: 104.2%;
  height: 100%;
  top: 0;
  right: 0;
  position: absolute;
  background-color: var(--accent-color);
  -webkit-clip-path: polygon(4% 0%, 100% 0%, 100% 100%, 4% 100%, 0% 50%);
  clip-path: polygon(4% 0%, 100% 0%, 100% 100%, 4% 100%, 0% 50%);
  z-index: -1;
}

.academy-branch-company .company__info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 35px;
}

.academy-branch-company .company__inner {
  display: flex;
  height: 135px;
  align-items: center;
  padding: 25px 80px 25px 30px;
}

.academy-branch-company .company__logo {
  height: 100%;
}

.academy-branch-company .company__logo img {
  height: 100%;
}

.academy-branch-company .company__name {
  font-size: 16px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.08px;
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 5px;
}

.academy-branch-company .company__near {
  display: flex;
  gap: 10px;
  margin-bottom: auto;
  align-items: center;
}

.academy-branch-company .company__address {
  display: flex;
  gap: 20px;
}

.academy-branch-company .company__address__item {
  font-size: 16px;
  font-weight: 600;
  line-height: 200%;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.08px;
}

.academy-branch-company .company__manager {
  color: #535353;
  text-align: right;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.08px;
}

.academy-branch-company .btn-whatsapp {
  height: 18px;
  width: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(to bottom, #25D366 0%, #09ae47 100%);
}

.academy-branch-company .btn-whatsapp i {
  font-size: 12px;
  color: var(--light-color);
}

.academy-branch-company .company__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.academy-branch-company .company__phone {
  display: inline-flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  color: #535353;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  line-height: 200%;
}

.academy-championship {
  padding-bottom: 50px;
}

.academy-championship__head {
  padding: 30px;
}

.academy-championship__body .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.academy-championship__inner {
  margin-bottom: 70px;
}

.academy-championship__preview {
  width: 100%;
  height: 700px;
}

.academy-championship__preview img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.academy-championship__row {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}

.academy-championship__row_mobile {
  display: none;
}

.academy-championship__col {
  width: calc(50% - 40px);
}

.academy-championship__col p {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
  margin-bottom: 40px;
  letter-spacing: 0.08px;
}

.academy-championship__col strong {
  font-size: 16px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 0.08px;
}

.academy-championship__image {
  width: 100%;
  max-height: 500px;
}

.academy-championship__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.academy-championship__image iframe {
  border-radius: 10px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.academy-championship__btn {
  margin-top: 50px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.14px;
  white-space: nowrap;
  padding: 10px 30px;
  margin-left: 30px;
}

.coach {
  padding-bottom: 50px;
}

.coach__head {
  position: relative;
  padding: 30px;
}

.coach__items {
  display: grid;
  flex-wrap: wrap;
  gap: 25px;
  grid-template-columns: repeat(4, 1fr);
}

.academy-players-page .players {
  padding-bottom: 50px;
}

.academy-players-page .players__head {
  padding: 30px;
  position: relative;
}

.academy-players-page .players__image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 25px;
}

.academy-players-page .players__image img {
  width: 100%;
  border-radius: 10px;
  -o-object-fit: contain;
  object-fit: contain;
}

.academy-players-page .players .players-block-short {
  margin-top: 20px;
}

.academy-players-page .players .players-block {
  width: 100%;
  position: relative;
}

.academy-players-page .players .players-block__title {
  padding-left: 40px;
  color: #535353;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 25px 0;
}

.academy-players-page .players .players-block__items {
  position: relative;
  width: 100%;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(5, 1fr);
}

.academy-players-page .players .player {
  height: 260px;
  position: relative;
}

.academy-players-page .players .player__over {
  position: absolute;
  min-height: 300px;
  border-radius: 10px;
  padding: 15px 20px;
  right: -20px;
  left: -20px;
  top: -20px;
  transition: 0.2s all;
  display: flex;
  background-color: var(--accent-color);
  flex-direction: column;
  justify-content: flex-end;
  border: 2px solid var(--dark-color);
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.academy-players-page .players .player__over::before {
  content: "";
  width: 100%;
  height: 250px;
}

.academy-players-page .players .player__inner {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: 0.2s all;
  justify-content: end;
}

.academy-players-page .page-navigation__items {
  overflow: hidden;
}

.academy-players-page .page-navigation__item {
  -webkit-user-drag: none;
  white-space: nowrap;
}

.academy-players-page .players .player__inner p span {
  font-weight: 900;
  letter-spacing: 0.06px;
}

.academy-players-page .players .player:hover {
  z-index: 5;
}

.academy-players-page .players .player:hover .player__inner {
  border-radius: 10px;
}

.academy-players-page .players .player:hover .player__inner::before {
  border-radius: 10px;
}

.academy-players-page .players .player:hover .player__image::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(254, 204, 1, 0.77) 65.1%, #FECC01 100%);
}

.academy-players-page .players .player:hover .player__image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: radial-gradient(49.79% 49.79% at 50.25% 50.21%, #FFF 0%, #FFEDA8 58.85%, #FECC01 100%);
}

.academy-players-page .players .player:hover .player__over {
  opacity: 1;
  z-index: 2;
  display: flex;
  visibility: visible;
}

.academy-players-page .players .player:hover .player__club {
  color: #231F20;
  font-weight: 700;
  letter-spacing: 0.07px;
}

.academy-players-page .players .player:hover .player__club span {
  color: #231F20;
  font-weight: 900;
}

.academy-players-page .players .player__image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 200px;
  left: 0;
}

.academy-players-page .players .player__image img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.academy-players-page .players .player__image::before {
  content: "";
  position: absolute;
  transition: 0.2s all;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.83) 65.1%, rgba(255, 255, 255, 0.99) 100%);
}

.academy-players-page .players .player__info {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.07px;
  padding-top: 15px;
  padding-bottom: 35px;
}

.academy-players-page .players .player__info span {
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.07px;
}

.academy-players-page .players .player__name {
  z-index: 2;
  position: relative;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08px;
}

.academy-players-page .players .player__club {
  position: relative;
  color: #535353;
  z-index: 2;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.academy-players-page .players .player__club span {
  color: #535353;
  font-weight: 900;
}

.academy-players-page .players .player__lastname {
  position: relative;
  z-index: 2;
  font-size: 20px;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.12px;
}

.academy-players-page .players .player__more-btn {
  color: var(--font-accent);
  background-color: var(--dark-color);
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s color;
  padding: 12px 30px 12px 50px;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  letter-spacing: 0.07px;
}

.academy-players-page .players .player__more-btn:hover {
  color: var(--font-light);
}

.academy-players-page .players__tabs {
  margin-bottom: 25px;
  padding: 0 40px;
}

.academy-players-page .players__tabs__content {
  border-top: 6px solid var(--accent-color);
}

.academy-players-page .players__tabs__content__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.academy-player {
  padding-bottom: 50px;
}

.academy-player__head {
  display: flex;
  padding-top: 30px;
  padding-bottom: 30px;
  align-items: center;
  gap: 25px;
  margin-left: 40px;
}

.academy-player__back {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--dark-color);
  border-radius: 50%;
  transition: 0.2s all;
}

.academy-player__back i {
  font-size: 18px;
  color: var(--accent-color);
}

.academy-player__back:hover {
  background-color: var(--light-color);
  border: 1px solid var(--accent-color);
  color: var(--font-dark);
}

.academy-player__back:hover i {
  color: var(--font-dark);
}

.academy-player__inner {
  border-radius: 10px;
  padding: 25px 50px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  background-color: var(--accent-color);
}

.academy-player__inner .centered-image {
  background-image: url("/uploads/images/parts/team-back-center.png");
}

.academy-player__body {
  position: relative;
}

.academy-player__body::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background-repeat: no-repeat;
  z-index: 1;
  background-image: url("/uploads/images/parts/team-single-lines.png");
}

.academy-player .player-card {
  position: relative;
  border-radius: 10px;
  border: 5px solid var(--light-color);
}

.academy-player .player-card__inner {
  width: 300px;
  height: 420px;
  padding: 15px;
  overflow: hidden;
  background-size: cover;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  transition: 0.2s all;
  background: linear-gradient(142deg, #FFF 2.6%, #FFCF0B 72.93%) center;
}

.academy-player .player-card__inner::before {
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  height: 600px;
  width: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/uploads/images/parts/lines_yellow.png");
}

.academy-player .player-card__marks {
  display: flex;
  justify-content: space-between;
  margin-bottom: auto;
  align-items: center;
}

.academy-player .player-card__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 50px;
  height: 80px;
  font-weight: 900;
  letter-spacing: 0.12px;
  margin-bottom: auto;
  z-index: 1;
  background-color: var(--accent-color);
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.academy-player .player-card__image {
  position: absolute;
  top: 50px;
  bottom: 0;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.academy-player .player-card__image img {
  -o-object-fit: contain;
  object-fit: cover;
}

.academy-player .player {
  width: 100%;
}

.academy-player .player__name {
  margin-right: auto;
  font-size: 32px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.16px;
  margin-bottom: 20px;
}

.academy-player .player__role {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
  margin-bottom: 25px;
}

.academy-player .player__base_mobile {
  display: none;
}

.academy-player .player__info {
  border-top: 6px solid var(--dark-color);
  padding: 25px 0;
  min-width: 320px;
}

.academy-player .player__info p,
.academy-player .player__info span,
.academy-player .player__info i {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.07px;
}

.academy-player .player__info span {
  font-weight: 900;
}

.academy-player .player__info i {
  margin-left: 3px;
  font-weight: 600;
}

.academy-player .tshort-card {
  background-color: var(--light-color);
  border-radius: 10px;
  position: relative;
  /* TODO удалить когда будет готова карточка */
  visibility: hidden;
  z-index: 2;
  height: 100%;
}

.academy-player .tshort-card__inner {
  padding: 20px 25px;
}

.academy-player .tshort-card__image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 240px;
}

.academy-player .tshort-card__image img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.academy-player .tshort-card__price {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
  margin-bottom: 15px;
}

.academy-player .tshort-card__basket {
  font-size: 14px;
  display: flex;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.14px;
  padding: 10px 0;
  width: 100%;
  background-color: var(--accent-color);
  margin-bottom: 15px;
  border: 1px solid transparent;
  transition: 0.2s all;
}

.academy-player .tshort-card__basket:hover {
  background-color: var(--light-color);
  border: 1px solid var(--accent-color);
  color: var(--font-dark);
}

.academy-player .tshort-card__more {
  font-size: 14px;
  display: flex;
  justify-content: center;
  border-radius: 6px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.14px;
  width: 100%;
}

.academy-player .tshort-card__more:hover {
  font-weight: 900;
}

.academy-player .tshort-card__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.07px;
}

.search-container {
  display: flex;
  height: 40px;
  align-items: center;
  position: relative;
}

.search-container .search-line {
  transition: 0.2s all ease;
  height: 100%;
  width: 0;
  overflow: hidden;
}

.search-container .search-line input {
  height: 100%;
  padding: 0 10px;
  width: 100%;
  border: 2px solid var(--dark-color);
}

.search-container_active .search {
  padding: 0 10px;
  height: 100%;
  background-color: var(--dark-color);
  display: flex;
  align-items: center;
}

.search-container_active .search img {
  filter: invert(100%);
}

.search-container_active .search-line {
  width: 290px;
}

.search-page .search {
  padding-bottom: 100px;
}

.search-page .search__head {
  padding: 30px 105px;
}

.search-page .search__title {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}

.search-page .search__title h3 {
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.search-page .search__form form {
  display: flex;
  width: 100%;
  gap: 30px;
}

.search-page .search__form label {
  width: 100%;
}

.search-page .search__form input[type=submit] {
  font-size: 16px;
  font-weight: 900;
  border-radius: 6px;
  background: var(--accent-color);
  padding: 14px 55px;
  cursor: pointer;
}

.search-page .search__line {
  width: 100%;
  padding: 18px;
  font-size: 16px;
  font-weight: 600;
  border-top-right-radius: 5px;
  border-top-left-radius: 5px;
  border: 2px solid var(--accent-color);
}

.search-page .search__inner {
  padding: 0 105px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.search-page .search__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}

.search-page .search-tabs__content__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.search-page .search-block__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.08px;
}

.search-page .search-block__text {
  color: #535353;
  font-size: 14px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.07px;
  margin-bottom: 10px;
}

.search-page .search-block__text strong {
  color: #231F20;
  font-size: 14px;
  font-weight: 900;
  line-height: 160%;
  letter-spacing: 0.07px;
}

.search-page .search-block__sections {
  display: flex;
  align-items: center;
  gap: 7px;
}

.search-page .search-block__sections p {
  color: #535353;
  font-size: 12px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.06px;
}

.search-page .search-block__sections span {
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.06px;
}

.search-page .search-block__section {
  color: #231F20;
  font-size: 12px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.06px;
  text-decoration-line: underline;
}

.catalog-preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 245, 245, 0.7);
  z-index: 1000;
  display: none;
}

.shop-page .shop-pagination {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 40px;
  gap: 20px;
  justify-content: center;
}

.shop-page .shop-pagination .swiper-pagination-bullet {
  height: 10px;
  width: 25px;
  background-color: var(--font-dark);
  opacity: 1;
  border-radius: 5px;
}

.shop-page .shop-pagination .swiper-pagination-bullet-active {
  background-color: var(--font-light);
  opacity: 1;
  width: 70px;
}

.shop-page .shop-preview {
  margin-top: 30px;
}

.shop-page .shop-preview .shop-button-prev,
.shop-page .shop-preview .shop-button-next {
  height: 40px;
  width: 40px;
}

.shop-page .shop-preview .shop-button-prev::before,
.shop-page .shop-preview .shop-button-prev::after,
.shop-page .shop-preview .shop-button-next::before,
.shop-page .shop-preview .shop-button-next::after {
  display: none;
}

.shop-page .shop-preview__inner {
  border-radius: 10px;
  padding: 10px 50px;
  background-color: var(--accent-color);
  position: relative;
  z-index: 1;
}

.shop-page .shop-preview__inner::before {
  content: "";
  background-image: url("/uploads/images/parts/lines_yellow.png");
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  left: -180px;
  top: 0;
  position: absolute;
  z-index: -1;
}

.shop-page .shop-preview__product-item {
  display: flex;
  align-items: center;
}

.shop-page .product-item__personal {
  color: var(--font-light);
  font-size: 20px;
  font-style: italic;
  font-weight: 1000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.shop-page .product-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shop-page .product-item__col {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 50px;
}

.shop-page .product-item__image {
  height: 100%;
  max-width: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-page .product-item__image img {
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.shop-page .product-item__info {
  display: flex;
  color: #231F20;
  font-size: 36px;
  font-style: italic;
  gap: 30px;
  font-weight: 1000;
  letter-spacing: 1.8px;
  align-items: center;
  line-height: 50px;
  text-transform: uppercase;
}

.shop-page .product-item__info span {
  font-size: 64px;
}

.shop-page .product-item__more {
  margin-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shop-page .product-item__mark {
  position: relative;
}

.shop-page .product-item__mark::before {
  position: absolute;
  content: "";
  background-image: url("/uploads/images/logo-teams/Logo-Kairat-site.png");
  height: 70%;
  width: 20%;
  top: 50%;
  left: 50%;
  background-size: 100%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  z-index: 1;
}

.shop-page .product-item__mark span {
  font-style: normal;
  color: #231F20;
  text-align: center;
  line-height: 80%;
  font-size: 128px;
  font-weight: 900;
  letter-spacing: 0.64px;
  text-transform: uppercase;
}

.shop-page .product-item__btn {
  margin-left: auto;
  padding: 15px 30px;
  color: var(--font-light);
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-style: italic;
  font-weight: 1000;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.shopcart-float {
  position: fixed;
  bottom: 50px;
  z-index: 1000;
  right: 50px;
  padding: 20px;
  border-radius: 50%;
  color: white;
  transition: 0.2s all ease;
  cursor: pointer;
  border: 2px solid black;
  background-color: white;
  animation: shopcartJump linear infinite;
  animation-delay: 2s;
  animation-duration: 1s;
}
.shopcart-float i {
  color: black;
  font-size: 18px;
  transition: 0.2s all ease;
}
.shopcart-float span {
  transition: 0.2s all ease;
  display: flex;
  width: 22px;
  font-weight: bold;
  height: 22px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: black;
  position: absolute;
  right: -5px;
  top: 0;
}
.shopcart-float:hover {
  padding: 25px;
  background-color: black;
}
.shopcart-float:hover i {
  color: white;
}

@keyframes shopcartJump {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(0);
  }
}
.shop-page .product-item__btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--dark-color);
  transform: skew(-30deg);
  top: 0;
  left: 0;
  z-index: -1;
}

.shop-main {
  margin-top: 20px;
  padding-bottom: 50px;
}

.shop-main__catalog-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.shop-main .catalog-burger {
  display: none;
}

.shop-main__catalog {
  width: calc(100% - 280px);
}

.shop-main .catalog__items {
  flex-wrap: wrap;
  display: flex;
  gap: 25px;
}

.shop-main .catalog-item {
  width: calc(33.3333333333% - 17px);
  transition: 0.3s all;
  position: relative;
  height: 360px;
}

.shop-main .catalog-item__info {
  padding: 0 25px;
}

.shop-main .catalog-item__info .catalog-filter__item .product-info__filter-open {
  max-height: 120px;
}

.shop-main .catalog-item:hover .catalog-item__inner {
  z-index: 5;
}

.shop-main .catalog-item:hover .catalog-item__hover {
  height: 95px;
  overflow: visible;
}

.shop-main .catalog-item:hover .catalog-item__filter {
  overflow: visible;
}

.stadium-page .hero__image img,
.mission-page .hero__image img {
  object-fit: cover;
}

.shop-main .catalog-item__inner {
  background-color: var(--light-color);
  border-radius: 10px;
  width: 100%;
  min-height: 100%;
  position: absolute;
  border: 2px solid var(--accent-color);
  overflow: hidden;
}

.shop-main .catalog-item__base {
  padding: 20px 0;
}

.shop-main .catalog-item__image {
  width: 100%;
  position: relative;
  height: 240px;
}

.shop-main .catalog-item__image .slick-list,
.shop-main .catalog-item__image .slick-track {
  height: 100%;
}

.shop-main .catalog-item__image .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  height: 35px;
  width: 35px;
  font-size: 0;
  background-size: 100%;
  background: none no-repeat;
  visibility: hidden;
}

.shop-main .catalog-item__image .slick-prev {
  left: -5px;
  background-image: url("/uploads/images/parts/arrow-prev.svg");
}

.shop-main .catalog-item__image .slick-next {
  right: -5px;
  background-image: url("/uploads/images/parts/arrow-right.svg");
}

.shop-main .catalog-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.shop-main .catalog-item__title {
  color: #231F20;
  font-size: 14px;
  font-weight: 700;
  display: block;
  letter-spacing: 0.07px;
  margin-bottom: 25px;
}

.shop-main .catalog-item__price {
  color: #231F20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.shop-main .catalog-item__add {
  width: 100%;
  border-radius: 6px;
  background-color: var(--accent-color);
  color: #231F20;
  padding: 10px 0;
  justify-content: center;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 20px;
  transition: 0.2s all;
  letter-spacing: 0.14px;
  border: 1px solid transparent;
}

.shop-main .catalog-item__add:hover {
  background-color: var(--light-color);
  border: 1px solid var(--accent-color);
}

.shop-main .catalog-item__description {
  color: #000;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
  text-decoration-line: underline;
}

.shop-main .catalog-item__description:hover {
  font-weight: 900;
}

.shop-main .catalog-item__actions {
  padding-bottom: 20px;
}

.shop-main .catalog-item__hover {
  height: 0;
  transition: height 0.1s;
  overflow: hidden;
}

.shop-main__content {
  padding-top: 30px;
  display: flex;
  gap: 30px;
  border-top: 2px solid var(--accent-color);
}

#filter-form {
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.field-hidden {
  display: none;
}

.shop-main input[type=radio],
.shop-main input[type=checkbox] {
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  height: 18px;
  border-radius: 1.5px;
  border: none;
  outline: 1.5px solid var(--dark-color) !important;
  width: 18px;
}

.shop-main input[type=radio]:checked,
.shop-main input[type=checkbox]:checked {
  background-color: var(--accent-color);
  position: relative;
}

.shop-main input[type=radio]:checked::before,
.shop-main input[type=checkbox]:checked::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/uploads/images/icons/checkbox.svg");
}

.shop-main .sidebar-filter__item__filters {
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shop-main .sidebar-filter__item__value {
  color: #535353;
  font-size: 12px;
  font-weight: 600;
  line-height: 30px;
}

.shop-main .sidebar-filter__main {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.shop-main .sidebar-filter__main label {
  cursor: pointer;
  display: flex;
  flex-direction: row-reverse;
  gap: 10px;
  font-size: 16px;
  font-weight: 900;
}

.shop-main .sidebar-filter__cell {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-main .sidebar-filter__cell label {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row-reverse;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
}

.shop-main .catalog-filter__search {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-main .catalog-filter__items {
  display: flex;
  gap: 70px;
}

.shop-main .catalog-filter__item {
  position: relative;
  cursor: pointer;
  display: flex;
  gap: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  align-items: center;
}

.shop-main .catalog-filter__btn {
  transition: 0.2s all;
  cursor: pointer;
}

.shop-main .catalog-filter__menu {
  background-color: var(--font-light);
  transition: 0.3s all;
  position: absolute;
  width: 100%;
  top: 30px;
  max-height: 0;
  right: 0;
  overflow: hidden;
  z-index: 6;
}

.shop-main .catalog-filter__menu li {
  padding: 10px;
  border-top: 1px solid var(--accent-color);
  transition: 0.2s all ease;
  width: 100%;
}

.shop-main .catalog-filter__menu li:hover {
  background-color: #f7f7f7;
}

.shop__filter-mobile {
  position: absolute;
  left: 0;
  background-color: var(--light-color);
  top: 0;
  width: 100%;
  max-height: 0;
  transition: 0.3s all;
  overflow: hidden;
  z-index: 10;
}

.filter-mobile__head {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  align-items: center;
  box-shadow: 0 8px 8px -1px rgba(34, 60, 80, 0.2);
}

.filter-mobile__close {
  height: 30px;
  width: 30px;
}

.filter-mobile__close img {
  height: 100%;
  width: 100%;
}

.filter-mobile__head a {
  margin-left: auto;
  color: #777;
  margin-right: 30px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06px;
  padding-bottom: 3px;
  border-bottom: 1px dashed #777;
}

.filter-mobile__head h3 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
}

.filter-mobile__body {
  padding: 30px 20px;
}

.filter-mobile__btn {
  margin-top: 20px;
  height: 40px;
  color: #231F20;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  width: 100%;
  border-radius: 6px;
  letter-spacing: 0.14px;
}

.filter-mobile__item {
  margin-bottom: 20px;
}

.filter-mobile__item_active {
  background-color: var(--accent-color);
}

.filter-mobile__item-head {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 900;
  letter-spacing: 0.08px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.filter-mobile__item-head img {
  height: 20px;
  width: 20px;
}

.filter-mobile__price {
  display: flex;
  gap: 25px;
}

.filter-mobile__price label {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06px;
  border-radius: 5px;
  background: #F3F3F3;
  padding: 10px;
}

.filter-mobile__price input {
  width: 100%;
  padding-left: 10px;
  background: #F3F3F3;
}

.filter-mobile__item-items {
  overflow: scroll;
  display: flex;
  gap: 15px;
}

.filter-mobile__item-items::-webkit-scrollbar {
  display: none;
}

.filter-mobile__item-item label {
  white-space: nowrap;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  border: 1px solid #231F20;
}

.filter-mobile__item-item input[type=radio] {
  display: none;
}

.filter-mobile__item-item input[type=radio]:checked + label {
  background: var(--accent-color);
}

.filter-mobile__sidebar {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
}

.filter-mobile__sidebar .sidebar-filter__item {
  margin-left: 10px;
}

.filter-mobile__sidebar-title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
}

.filter-mobile__dropdown {
  margin-bottom: 20px;
  display: inline-flex !important;
}

.filter-mobile__dropdown ul li {
  font-size: 10px;
}

.product {
  padding-top: 60px;
  padding-bottom: 100px;
}
.product .product__images {
  max-width: 430px;
  width: 100%;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product .product__base {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product .product-info {
  padding-bottom: 20px;
  border-bottom: 2px solid var(--accent-color);
}
.product .product-info__base,
.product .product-info__actions,
.product .product-info__main,
.product .product-info__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product .product-info__delivery-title,
.product .product-info__description-title,
.product .product-info__pay-title,
.product .product-info__additional-title {
  color: #535353;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.07px;
}
.product .product-info__description-title,
.product .product-info__pay-title,
.product .product-info__delivery-title {
  margin-bottom: 25px;
}
.product .product-info__delivery p,
.product .product-info__pay p,
.product .product-info span,
.product .product-info p {
  line-height: 18px;
  color: #535353;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}
.product .product-info__article {
  color: #535353;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
  margin-bottom: 10px;
}
.product .product-info__base {
  margin-bottom: 15px;
}
.product .product-info__actions {
  margin-bottom: 45px;
}
.product .product-info__delivery {
  max-width: 260px;
}
.product .product-info__main {
  align-items: start;
}
.product .product-info__bottom {
  align-items: start;
}
.product .product-info__title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.12px;
}
.product .product-info__price {
  color: #231F20;
  text-wrap: nowrap;
  text-align: right;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.12px;
}
.product .product-info__filter {
  padding: 5px 10px;
  border: 2px solid var(--accent-color);
}
.product .product-info__filter span {
  color: #231F20;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}
.product .product-info__add-btn {
  height: 100%;
  padding: 8px 37px;
  border-radius: 6px;
  background-color: var(--accent-color);
  color: #231F20;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.14px;
}
.product .product-info__additional a,
.product .product-info__description a,
.product .product-info__description button,
.product .product-info__additional button {
  display: block;
  margin-top: 25px;
  color: #231F20;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
  text-decoration-line: underline;
}
.product__inner {
  display: flex;
  row-gap: 20px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}
.product-info__description {
  max-width: 260px;
}
.product-info__additional {
  max-width: 280px;
}
.product-info__additional p {
  margin-bottom: 25px;
}
.product-info__additional p:last-child {
  margin-bottom: 0;
}
.product-info__additional-title {
  margin-bottom: 40px;
}
.product-info__pay {
  max-width: 260px;
}

.catalog-filter__item {
  position: relative;
  cursor: pointer;
  display: flex;
  gap: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  align-items: center;
}

.catalog-filter__btn {
  transition: 0.2s all;
  cursor: pointer;
}

.catalog-filter__menu {
  background-color: var(--font-light);
  transition: 0.3s all;
  position: absolute;
  top: 40px;
  max-height: 0;
  right: 0;
  overflow: hidden;
  z-index: 1;
}

.catalog-filter__menu li {
  text-align: right;
  padding: 10px;
}

.product-gallery__image {
  /*height: 100%;*/
  /*width: 100%;*/
}

.product-gallery {
  display: flex;
  flex-direction: column;
}

.product-gallery__big-mobile {
  display: none;
}

.product-gallery__big {
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--accent-color);
}

.product-gallery__big-flex {
  display: flex;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-gallery__big img {
  max-height: 426px;
  max-width: 100%;
  width: auto;
}

.product-gallery__small {
  width: calc(100% - 50px);
  position: relative;
  margin-left: 0;
}

.product-gallery__small .swiper-mini-button-next {
  right: -50px;
  height: 40px;
  width: 40px;
}

.product-gallery__small .swiper-mini-button-next::after {
  display: none;
}

.product-gallery__small .product-gallery__image {
  border: 2px solid var(--accent-color);
  height: 120px;
  width: 120px;
}

.product-gallery__small .product-gallery__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-info__description .product-info__description-btn-short,
.product-info__additional .product-info__additional-btn-short,
.product-info__additional__items-full,
.product-info__description-full {
  display: none;
}

.tickets {
  padding-bottom: 50px;
}

.tickets__head {
  margin-bottom: 25px;
}

.tickets__scheme {
  width: 100%;
}

.tickets__scheme_mobile {
  display: none;
}

.tickets__scheme svg {
  width: 100%;
}

.tickets__scheme img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.tickets__scheme img:nth-child(2) {
  display: none;
}

.tickets__push-btn {
  padding: 10px 40px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.16px;
}

.tickets__head-empty {
  padding: 30px 105px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tickets__scheme path {
  transition: 0.2s;
}

.tickets__scheme path:hover {
  opacity: 0.6;
}

.tickets__message {
  padding: 30px 105px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.tickets__message_mobile {
  display: none;
}

.tickets__message span {
  color: #E31E25;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.07px;
}

.tickets__select {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.tickets__select p {
  color: #231F20;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08px;
}

.tickets__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tickets .tickets-match {
  height: 130px;
  padding: 20px;
  border-radius: 10px;
  border: 1.5px solid var(--accent-color);
  display: flex;
  align-items: center;
}

.tickets .tickets-match__mobile {
  display: none;
}

.tickets .tickets-match__info {
  display: flex;
  margin: 0 auto;
  transform: translateX(-30px);
  align-items: center;
}

.tickets .tickets-match__tour {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 200px;
}

.tickets .tickets-match__tour p {
  font-size: 14px;
}

.tickets .tickets-match__date {
  color: #231F20;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08px;
}

.tickets .tickets-match .match-block__about {
  padding: 0;
  margin: 0 30px;
  align-items: center;
}

.tickets .tickets-match .match-block__versus {
  margin: 0 30px;
}

.tickets .tickets-match .match-block__team {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tickets .tickets-match .match-block__team:nth-child(1) {
  flex-direction: row-reverse;
}

.tickets .tickets-match .match-block__logo {
  height: 90px;
  padding-top: 0;
  margin-bottom: 0;
  width: unset;
}

.tickets .tickets-match .match-block__logo img {
  height: 100%;
}

.tickets .tickets-match .match-block__name {
  color: #231F20;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cabinet-header {
  margin-bottom: 30px;
}

.cabinet-header__title {
  display: none;
}

.cabinet-header__top {
  background-color: #231F20;
}

.cabinet-header__top_desktop,
.cabinet-header__top_mobile {
  display: flex;
  width: 100%;
}

.cabinet-header__top_mobile {
  display: none;
}

.cabinet-header__top-inner {
  width: 100%;
  display: flex;
  height: 55px;
  align-items: center;
  position: relative;
  padding-left: 7em;
}

.cabinet-header__logo {
  position: absolute;
  width: 47px;
  height: 85px;
  left: 0;
  top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cabinet-header__logo_new {
  width: 150px;
  height: 120px;
  left: -80px;
  top: -15px;
}

.cabinet-header__logo_new::after {
  display: none;
}

.cabinet-header__logo img {
  position: relative;
  height: 100%;
  z-index: 4;
}

.cabinet-header__logo::after {
  content: "";
  width: 105px;
  height: 160px;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  position: absolute;
  z-index: 3;
  -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.cabinet-header__live-btn {
  color: #231F20;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  position: relative;
  padding: 0 30px 0 40px;
  margin-right: 25px;
}

.cabinet-header__live-btn::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: #F00;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
}

.cabinet-header__live-btn_disabled {
  opacity: 0.7;
  pointer-events: none;
}

.cabinet-header__live-btn_disabled::after {
  background-color: #dcdcdc;
}

.cabinet-header__link {
  color: var(--font-light);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  letter-spacing: 0.08px;
  gap: 15px;
}

.cabinet-header .profile-link {
  margin-left: 10px;
}

.cabinet-header__bottom {
  position: relative;
  z-index: 2;
  background-color: var(--accent-color);
}

.cabinet-header__bottom .container {
  padding-left: 6em;
}

.cabinet-header__menu ul {
  display: flex;
  align-items: flex-end;
}

.cabinet-header__menu ul li {
  flex: 1;
  transform: skew(-30deg);
  border-right: 2px solid var(--light-color);
}

.cabinet-header__menu ul li a {
  height: 80px;
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  transform: skew(30deg);
  align-items: center;
  justify-content: flex-end;
  position: relative;
  gap: 10px;
  transition: 0.3s all;
}

.cabinet-header__menu ul li a:hover {
  color: var(--font-light);
}

.cabinet-header__menu ul li a:hover img {
  filter: invert(200%) grayscale(100%);
}

.cabinet-header .log-out {
  margin-left: auto;
}

.next-matches {
  margin-bottom: 30px;
}

.next-matches__head {
  padding: 30px;
}

.next-matches__body {
  display: flex;
  gap: 25px;
}

.next-matches__purchases,
.next-matches__poll {
  display: flex;
  flex-direction: column;
}

.next-matches .next-matches-item {
  min-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  border: 1.5px solid var(--accent-color);
}

.next-matches .profile-block__setting img {
  height: 22px;
}

.next-matches .purchases__title,
.next-matches .poll__title {
  font-size: 16px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.next-matches .purchases__icon,
.next-matches .poll__icon {
  margin-bottom: 20px;
}

.next-matches .next-matches__purchases,
.next-matches .next-matches__poll {
  border-radius: 10px;
  border: 1.5px solid var(--accent-color);
  padding: 20px;
  width: calc(50% - 25px);
}

.next-matches .next-matches__purchases p,
.next-matches .next-matches__poll p {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.next-matches .purchases__info {
  margin-bottom: 20px;
}

.next-matches .purchases__date {
  color: #535353;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
  margin-bottom: 20px;
}

.next-matches .purchases__all {
  margin-top: auto;
  text-align: center;
  color: #535353;
  font-size: 14px;
  font-weight: 600;
  line-height: 160%;
  letter-spacing: 0.07px;
}

.next-matches .purchases__all:hover {
  font-weight: 900;
}

.next-matches .pool__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.next-matches .pool__btn {
  padding: 10px 0;
  font-size: 16px;
  width: 180px;
  margin: auto auto 0;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
}

.next-matches .profile-block {
  min-width: 50%;
  padding: 20px 30px;
  border: 1.5px solid var(--accent-color);
  border-radius: 10px;
}

.next-matches .profile-block__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.next-matches .profile-block__title {
  color: #231F20;
  font-size: 16px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.next-matches .profile-block__body {
  display: flex;
  gap: 30px;
  margin-bottom: 45px;
}

.next-matches .profile-block__photo {
  height: 100px;
  width: 100px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  position: relative;
  background-color: #b9b8b8;
}

.next-matches .profile-block__photo-btn {
  position: absolute;
  display: flex;
  height: 30px;
  width: 30px;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border: 1px solid var(--dark-color);
  border-radius: 50%;
  bottom: 5px;
  right: 0;
}

.next-matches .profile-block__name {
  color: #231F20;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
  margin-bottom: 15px;
}

.next-matches .profile-block__nickname {
  color: #231F20;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
  margin-bottom: 10px;
}

.next-matches .profile-block__phone {
  color: #231F20;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.next-matches .profile-block__bottom {
  display: flex;
  justify-content: center;
  align-items: end;
  padding-top: 30px;
  border-top: 1.5px solid var(--accent-color);
}

.next-matches .profile-block__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.next-matches .profile-block__item img {
  height: 20px;
}

.next-matches .profile-block__item p {
  margin-top: 8px;
  margin-bottom: 8px;
}

.next-matches .profile-block__item span {
  color: #231F20;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.action {
  margin-bottom: 40px;
}

.action__image {
  border-radius: 10px;
  display: block;
  padding: 20px 45px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.action__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.action__title {
  margin-bottom: 5px;
}

.action__title,
.action h3 {
  font-size: 20px;
  max-width: 350px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.action h3 {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
}

.action p {
  max-width: 315px;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 25px;
}

.action__message {
  color: var(--accent-color);
  text-align: right;
  font-size: 16px;
  margin-bottom: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 150px;
  font-weight: 900;
}

.cabinet-news {
  margin-bottom: 30px;
  overflow: hidden;
}

.cabinet-news .container {
  position: relative;
}

.cabinet-news__items {
  display: flex;
}

.cabinet-news .last-news-button-next {
  right: -10px;
}

.cabinet-news .last-news-button-next::after {
  content: "";
  background-image: url("/uploads/images/parts/arrow-right.svg");
  background-position: center;
  height: 40px;
  width: 40px;
}

.cabinet-footer {
  padding-top: 50px;
  padding-bottom: 100px;
}

.cabinet-footer .footer__row {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.cabinet-footer .footer__row:first-child {
  display: none;
}

.cabinet-footer .footer__row:last-child {
  margin-bottom: 0;
}

.cabinet-footer p {
  font-size: 14px;
  font-weight: 600;
}

.cabinet-footer__socials {
  display: flex;
  gap: 15px;
}

.subscription {
  margin-top: 35px;
  margin-bottom: 45px;
}
.subscription__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subscription .active:is(button) {
  font-weight: bold;
}
.subscription__sort {
  display: flex;
  gap: 20px;
}

.subscription__items {
  margin-top: 30px;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.subscription__item {
  border-radius: 10px;
  padding: 20px 35px 40px;
  border: 1.5px solid var(--accent-color);
  width: calc(50% - 20px);
}

.subscription__item__title {
  color: #231F20;
  font-size: 16px;
  font-weight: 900;
  line-height: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.subscription__item__top {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}

.subscription__item__body {
  display: flex;
  justify-content: space-between;
}

.subscription__item__qr {
  height: 230px;
  min-width: 230px;
}

.subscription__item__qr img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.subscription__item__season {
  margin-top: 5px;
  color: #231F20;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
  margin-bottom: 10px;
}

.subscription__item__date {
  color: #231F20;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
  margin-bottom: 20px;
}

.subscription__item__place {
  max-width: 140px;
}

.subscription__item__place p {
  color: #535353;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.subscription__item__place p strong {
  color: #231F20;
  font-size: 14px;
  line-height: 110%;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.subscription__item__description {
  margin-bottom: 25px;
}

.subscription__item__description p {
  color: #535353;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.subscription__item__info {
  width: 200px;
}

.subscription__item-blocked .subscription__item__qr {
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
}

.subscription__item-blocked .subscription__item__qr span {
  max-width: 150px;
  color: #535353;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
}

.select2-container--krajee-bs4 .select2-selection {
  border: 1px solid var(--accent-color);
  padding: 0.8rem 1.5rem 0.8rem 1rem;
  display: flex;
  align-items: center;
  height: 60px;
}

.select2-container--krajee-bs4 .select2-selection--single .select2-selection__arrow {
  border-left: 1px solid var(--accent-color);
}

.subscription__item-blocked .subscription__item__message p {
  color: #EF0000;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.subscription__item-empty {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.subscription__item-empty .subscription__item__content {
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.subscription__item-empty .subscription__item__btn {
  display: inline-block;
  padding: 10px 40px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.subscription__item-empty .subscription__item__body {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.subscription__item-empty p {
  color: #231F20;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.subscription__ticket .subscription__item__team {
  margin-top: 5px;
  color: #231F20;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
  margin-bottom: 20px;
}

.subscription__ticket .subscription__item__date span,
.subscription__ticket .subscription__item__time span {
  color: #231F20;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.subscription__ticket .subscription__item__time {
  margin-bottom: 20px;
}

.hero-stadium {
  margin-bottom: 40px;
  position: relative;
  height: 570px;
}

.hero-stadium .hero__image {
  height: 100%;
}

.hero-stadium .container-hero {
  height: 100%;
}

.hero-stadium .hero__inner {
  height: 100%;
}

.hero-stadium .hero__inner::after {
  height: 100%;
  width: 372px;
  pointer-events: none;
  background-size: contain;
  right: -186px;
}

.hero-stadium .hero__inner::before {
  width: 372px;
  left: -186px;
  top: 285px;
}

.stadium-page__inner {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}

.stadium-description {
  margin-bottom: 100px;
}

.stadium-description__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.stadium-description__block .block__head {
  margin-bottom: 40px;
}

.stadium-description__block .block__title {
  display: flex;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.stadium-description__block .block__body {
  display: flex;
  gap: 50px;
}

.stadium-description__block .block__col {
  width: calc(50% - 25px);
  font-size: 16px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
}

.stadium-description__block .block__col li {
  list-style: inside;
}

.stadium-description__block .block__col p,
.stadium-description__block .block__col li {
  font-size: 16px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
  margin-bottom: 50px;
}

.stadium-description__block .block__col p:last-child,
.stadium-description__block .block__col li:last-child {
  margin-bottom: 0;
}

.stadium-description__block .block__video {
  border-radius: 5px;
  width: 100%;
  max-height: 320px;
}

.stadium-description__block .block .slick-slider {
  height: 100%;
}

.stadium-description__block .block__image {
  display: block;
  width: 100%;
  max-height: 320px;
  margin-bottom: 50px;
}

.stadium-description__block .block__image .slick-track {
  height: 100% !important;
}

.stadium-description__block .block__image .slick-list {
  height: 100%;
}

.stadium-description__block .block__image .slick-prev {
  display: none !important;
}

.stadium-description__block .block__image .slick-next {
  font-size: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 100%;
  opacity: 0.6;
  background-color: var(--accent-color);
}

.stadium-description__block .block__image .slick-next::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 50%;
  height: 30px;
  width: 30px;
  transform: translate(-50%, 50%);
  background-image: url("/uploads/images/parts/arrow-right.svg");
  background-size: cover;
}

.stadium-description__block .block__image img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.club-structure {
  margin-bottom: 100px;
  overflow-x: hidden;
}

.club-structure__head {
  margin-bottom: 50px;
}

.club-structure__items {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.club-structure__club-item {
  padding: 15px 0;
  position: relative;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  z-index: 1;
}

.club-structure__club-item .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.club-structure__club-item:hover {
  border-top: 4px solid var(--accent-color);
  border-bottom: 4px solid var(--accent-color);
}

.club-structure__club-item:hover .club-item__image img {
  border-radius: 10px;
}

.club-structure__club-item:hover .club-item__name {
  border-bottom: 4px solid var(--dark-color);
}

.club-structure__club-item:hover::before {
  content: "";
  position: absolute;
  right: -120px;
  top: 0;
  width: 230px;
  height: 100%;
  z-index: -1;
  background-image: url("/uploads/images/parts/LINES.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.club-structure__club-item .club-item__info,
.club-structure__club-item .club-item__image {
  width: 45%;
}

.club-structure__club-item .club-item__image .club-item__link {
  display: none;
}

.club-structure__club-item .club-item__image img {
  transition: 0.2s all;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.club-structure__club-item .club-item__info p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08px;
  margin-bottom: 20px;
}

.club-structure__club-item .club-item__info p:last-child {
  margin-bottom: 0;
}

.club-structure__club-item .club-item__name {
  font-size: 20px;
  font-weight: 900;
  padding-bottom: 25px;
  letter-spacing: 0.1px;
  margin-bottom: 25px;
  border-bottom: 4px solid transparent;
}

.club-structure__club-item .club-item__link {
  margin-top: 20px;
  display: inline-block;
  padding: 15px 45px;
  color: #231F20;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.16px;
  border-radius: 6px;
}

.leader {
  margin-bottom: 100px;
}

.leader__head {
  margin-bottom: 50px;
}

.leader__leader-block {
  cursor: pointer;
}

.leader__leader-block:hover .leader-block__image::before {
  bottom: 50px;
}

.leader__leader-block:hover .leader-block__name {
  background-color: var(--accent-color);
}

.leader__leader-block:hover .leader-block__role {
  font-weight: 900;
}

.leader__leader-block .leader-block__image {
  width: 100%;
  overflow: hidden;
  height: 370px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-color: #D9D9D9;
  position: relative;
  z-index: 1;
}

.leader__leader-block .leader-block__image::before {
  transition: 0.1s all;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  background-image: url("/uploads/images/parts/leader-lines.svg");
  background-size: 100%;
  background-repeat: no-repeat;
}

.leader__leader-block .leader-block__image img {
  max-width: 100%;
  max-height: 290px;
  -o-object-fit: contain;
  object-fit: contain;
}

.leader__leader-block .leader-block__inner {
  border-bottom: 4px solid var(--accent-color);
}

.leader__leader-block .leader-block__name {
  padding: 20px 25px;
  font-size: 20px;
  font-weight: 900;
  transition: 0.2s all;
  letter-spacing: 0.1px;
}

.leader__leader-block .leader-block__role {
  padding: 20px 25px;
  font-size: 16px;
  transition: 0.2s all;
  font-weight: 600;
  max-width: 80%;
  letter-spacing: 0.08px;
}

.stadium-page .club-partners {
  margin-bottom: 100px;
}

.stadium-page .club-partners__head {
  margin-bottom: 50px;
}

.stadium-page .club-partners__title {
  display: flex;
  gap: 10px;
  font-size: 24px;
  align-items: center;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.stadium-page .club-partners__accordion {
  margin: 0 auto;
  max-width: 980px;
}

.stadium-page .partners {
  background-position: center;
}

.stadium-page .partners__row {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.stadium-page .partners__item {
  flex: 1;
  display: flex;
  justify-content: center;
}

.stadium-page .partners__item img {
  max-width: 100%;
}

.stadium-page .partners__title {
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%) skew(-30deg);
}

.stadium-page .club-partners .partners__items {
  justify-content: space-between;
  row-gap: 200px;
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: repeat(5, 1fr);
}

.stadium-page .partners__items .partners__item {
  grid-column: span 1;
}

.stadium-page .partners__items .partners__item:nth-child(n+5) {
  grid-column: span 1;
}

.media {
  margin-bottom: 100px;
}

.media__head {
  margin-bottom: 50px;
}

.media__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.media__row {
  display: flex;
  gap: 60px;
}

.media__col {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.media__text-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
}

.media__text-block .text-block__title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
}

.media__contacts-card {
  padding: 40px;
  background-color: var(--accent-color);
  border-radius: 10px;
  margin-bottom: 70px;
  position: relative;
}

.media__contacts-card .contacts-card__top {
  width: 105px;
  height: 15px;
  background-color: var(--light-color);
  border-radius: 10px;
  margin: 0 auto 25px;
}

.media__contacts-card .contacts-card__body {
  display: flex;
  gap: 45px;
  align-items: start;
}

.media__contacts-card .contacts-card__logo {
  width: 108px;
  height: 100%;
  position: relative;
}

.media__contacts-card .contacts-card__logo::before {
  content: "";
  width: 290px;
  height: 300%;
  left: -130px;
  top: 50%;
  transform: translateY(-52%);
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("/uploads/images/parts/LINES.svg");
  position: absolute;
}

.media__contacts-card .contacts-card__logo img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.media__contacts-card .contacts-card__info {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08px;
}

.media__contacts-card .contacts-card__name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
}

.media__contacts-card .contacts-card__btn {
  display: inline-block;
  padding: 15px 0;
  width: 260px;
  text-align: center;
  background-color: var(--font-light);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.16px;
}

.media__quotas-block .quotas-block__title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
  margin-bottom: 30px;
}

.media__quotas-block .quotas-block__inner {
  padding: 25px;
  border: 4px solid var(--accent-color);
  border-radius: 10px;
}

.media__quotas-block .quotas-block__inner ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.media__quotas-block .quotas-block__inner ul li strong {
  color: #231F20;
  font-weight: 900;
}

.media__quotas-block .quotas-block__inner ul li {
  font-size: 14px;
  font-style: normal;
  line-height: 200%;
  letter-spacing: 0.06px;
}

.media__quotas-block .quotas-block__inner ul li::before {
  content: "•";
  color: var(--dark-color);
  display: inline-block;
  width: 1em;
}

.media__list-block {
  margin-top: 40px;
}

.media__list-block li {
  font-size: 16px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
  list-style: inside;
}

.media__list-block ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.liability {
  margin-bottom: 100px;
}

.liability__head {
  margin-bottom: 50px;
}

.liability__message {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
  gap: 25px;
  margin-bottom: 10px;
}

.liability__row {
  display: flex;
  gap: 50px;
  margin-bottom: 50px;
}

.liability__col {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 40px;
}

.liability__col p {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
}

.city {
  margin-bottom: 100px;
}

.city__head {
  margin-bottom: 50px;
}

.city__body {
  display: flex;
  gap: 50px;
}

.city__col {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
}

.city__col p {
  font-size: 16px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
  margin-bottom: 40px;
}

.city__col p:last-child {
  margin-bottom: 0;
}

.city__video {
  margin-bottom: 40px;
  width: 100%;
}

.hero-chronology {
  margin-bottom: 30px;
}

.hero-chronology .hero__inner {
  position: relative;
}

.hero-chronology .hero__inner::after,
.hero-chronology .hero__inner::before {
  display: none;
}

.hero-chronology .hero__image {
  height: 570px;
}

.mission {
  margin-bottom: 75px;
}

.mission__head {
  padding: 30px;
}

.mission__message {
  padding: 25px 0;
  position: relative;
  margin-bottom: 35px;
}

.mission__message::before {
  content: "";
  width: 87%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--accent-color);
  -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0%, 85% 100%, 0 100%);
}

.mission__message__text {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 189%;
  letter-spacing: 0.1px;
  max-width: 700px;
}

.mission__message .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.mission__logo {
  position: relative;
  height: 100%;
}

.mission__logo img {
  height: 100%;
}

.mission .mission-task__title {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.mission .mission-task__items {
  display: grid;
  gap: 100px;
  row-gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.mission .mission-task__logo {
  height: 70px;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-end;
}

.mission .mission-task__name {
  color: var(--accent-color);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: 0.16px;
  text-transform: uppercase;
}

.mission .mission-task span,
.mission .mission-task p {
  color: #231F20;
  font-size: 16px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
}

.history__head {
  margin-bottom: 50px;
}

.history__title {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.history__block-info {
  display: flex;
  gap: 100px;
  margin-bottom: 50px;
}

.history__block-info .block-info__text {
  max-width: 450px;
  font-size: 16px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
  display: flex;
  gap: 35px;
  flex-direction: column;
}

.history__block-info .block-info__image {
  width: 100%;
}

.history__block-info .block-info__image .block-info__text {
  margin-top: 40px;
  width: 100%;
  max-width: unset;
  margin-left: auto;
  padding-left: 50px;
}

.history__block-info .block-info__image img {
  width: 100%;
}

.history__block-info .block-info__image p {
  color: #535353;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.07px;
}

.history__block-info .block-info__title {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1px;
}

.history__block-info_text-only .block-info__text {
  width: calc(50% - 50px);
  max-width: unset;
}

.history__image-large {
  display: flex;
  margin-bottom: 40px;
  gap: 45px;
}

.history__image-large .image-large__text {
  max-width: 313px;
}

.history__image-large .image-large__text p {
  font-size: 16px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
  margin-bottom: 40px;
}

.history__image-large .image-large__text p:last-child {
  margin-bottom: 0;
}

.history__image-large .image-large__title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 40px;
  letter-spacing: 0.1px;
}

.history__image-large .image-large__image img {
  width: 100%;
}

.history__image-large .image-large__image p {
  color: #535353;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.07px;
}

.history__block-fact {
  background: #F3F3F3;
  padding: 35px 40px;
  margin-bottom: 100px;
}

.history__block-fact .block-fact__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.history__block-fact .block-fact__head {
  align-items: center;
  display: flex;
  margin-bottom: 30px;
  justify-content: space-between;
}

.history__block-fact .block-fact__body {
  transition: 0.3s all;
  overflow: hidden;
}

.history__block-fact .block-fact__body ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 70px;
  grid-row-gap: 30px;
  padding-left: 15px;
}

.history__block-fact .block-fact__body ul li {
  list-style: outside;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.07px;
}

.history__block-fact .block-fact__body ul li:nth-child(3) {
  grid-area: 2/1/4/2;
}

.history__block-fact .block-fact__title {
  font-size: 20px;
  font-weight: 900;
  line-height: 200%;
  letter-spacing: 0.1px;
}

.history__block-fact .block-fact__btn {
  transition: 0.3s all;
  cursor: pointer;
}

.history__block-fact .block-fact__items {
  margin-top: 40px;
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}

.history__block-fact .block-fact__item {
  list-style: inside;
  padding-left: 20px;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  line-height: 150%;
  letter-spacing: 0.07px;
}

.history__block-fact .block-fact__item::before {
  content: "•";
  /* Маркер, который вы хотите использовать */
  position: absolute;
  left: 0;
  top: 0;
}

.history__block-quote {
  margin-bottom: 110px;
}

.history__block-quote .block-quote__items {
  display: flex;
  gap: 110px;
}

.history__block-quote .block-quote__item {
  flex: 1;
}

.history__block-quote .block-quote__author {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.1px;
}

.history__block-quote .block-quote__author img {
  height: 70px;
  width: 70px;
  -o-object-fit: cover;
  object-fit: cover;
}

.history__block-quote .block-quote__text {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.chronology {
  margin-bottom: 120px;
}

.chronology__head {
  padding: 30px;
  margin-bottom: 70px;
}

.chronology__items {
  position: relative;
  z-index: 2;
}

.chronology__row {
  position: relative;
  z-index: 3;
  padding-right: 127px;
  padding-left: 127px;
}

.chronology__row__inner {
  border-top: 4px solid #535353;
  height: 248px;
  padding-top: 25px;
  display: flex;
}

.chronology__row__particle {
  position: absolute;
  top: 0;
  right: 0;
}

.chronology__row::before {
  content: "";
  background-repeat: no-repeat;
  background-size: 100%;
  top: 0;
  z-index: 5;
  width: 126.5px;
  height: 253px;
  background-image: url("/uploads/images/parts/el-right.svg");
  position: absolute;
}

.chronology__row:nth-child(1) {
  padding-left: 30px;
}

.chronology__row:nth-child(1) .chronology__row__inner {
  padding-left: 30px;
}

.chronology__row:nth-child(odd)::before {
  right: 2px;
}

.chronology__row:nth-child(even)::before {
  transform: scale(-1, 1);
  left: 2px;
}

.chronology__row:nth-child(even):is(:last-child) .chronology__item:first-child {
  position: relative;
}

.chronology__row:nth-child(even):is(:last-child) .chronology__item:last-child::before {
  display: none;
}

.chronology__row:last-child .chronology__item:last-child {
  position: relative;
}

.chronology__row:nth-child(even):is(:last-child) .chronology__item:first-child::before {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: -4px;
  z-index: 1;
  background-image: url("/uploads/images/parts/dashed.svg");
}

.chronology__row:last-child .chronology__item:last-child::before {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: -4px;
  z-index: 1;
  background-image: url("/uploads/images/parts/dashed.svg");
}

.chronology__item {
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0.07px;
  position: relative;
}

.chronology__item .chronology__item__text {
  max-width: 88%;
}

.chronology__item_one {
  width: 33.3%;
}

.chronology__item_two {
  width: 66.6%;
}

.chronology__item_three {
  width: 100%;
}

.chronology__item__icon {
  position: absolute;
  top: -45px;
  z-index: 6;
  display: inline-flex;
  padding: 7px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.chronology__item span {
  font-weight: 900;
}

.chronology__item__text span {
  font-weight: 600;
}

.chronology-additional .chronology__row .chronology__row__inner {
  border-color: var(--accent-color);
}

.chronology-additional .chronology__row::before {
  background-image: url("/uploads/images/parts/el-yellow.svg");
}

.chronology-additional .chronology__row:nth-child(even):is(:last-child) .chronology__item:first-child::before,
.chronology-additional .chronology__row:last-child .chronology__item:last-child::before {
  background-image: url("/uploads/images/parts/dashed-yellow.svg");
}

.achievement__head {
  margin-bottom: 50px;
}

.achievement__body {
  padding-top: 25px;
  padding-bottom: 65px;
  background-color: var(--accent-color);
}

.achievement__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.achievement__item {
  position: relative;
  z-index: 5;
  display: flex;
  padding: 20px 0;
  gap: 20px;
  border-bottom: 4px solid var(--dark-color);
}

.achievement__item__many .achievement__years p {
  font-size: 12px;
}

.achievement__name {
  font-size: 18px;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 0.09px;
  position: relative;
  z-index: 3;
  margin-bottom: 10px;
}

.achievement__years {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.achievement__years p {
  font-size: 16px;
  font-weight: 600;
  line-height: 200%;
  letter-spacing: 0.08px;
}

.achievement__record {
  position: relative;
}

.achievement__record svg {
  position: relative;
  z-index: 1;
}

.achievement__record::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -75px;
  z-index: -1;
  left: -80px;
  background-image: url("/uploads/images/parts/Vector.svg");
  background-size: 120%;
  background-position: center;
  background-repeat: no-repeat;
}

* {
  font-family: "Mulish", sans-serif;
  color: var(--font-dark);
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 45px;
}

.container-big {
  margin: 0 auto;
  max-width: 1512px;
}

.container-hero {
  margin: 0 auto;
  max-width: 1920px;
}

.sort .custom-select {
  max-height: 0;
  overflow: hidden;
}

.date-filter {
  position: relative;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 25px;
  border: 2px solid var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.07px;
}

.date-filter__btn {
  font-size: 18px;
}

.date-filter__menu {
  background-color: var(--light-color);
  position: absolute;
  top: 40px;
  max-height: 0;
  overflow: hidden;
  width: 100%;
  left: 0;
  z-index: 4;
}

.date-filter__menu li {
  padding: 10px 15px;
}

.date-filter__menu li a {
  display: flex;
}

.date-filter__menu li:hover {
  font-weight: 900;
}

.pagination {
  display: flex;
  align-items: center;
}

.pagination__body {
  display: flex;
}

.pagination__arrow-prev {
  margin-right: 20px;
}

.pagination__item {
  padding: 5px 17px;
  position: relative;
  z-index: 1;
}

.pagination__item:hover {
  background-color: var(--accent-color);
}

.pagination__item:not(:last-child)::after {
  position: absolute;
  right: 0;
  top: 50%;
  content: "";
  height: 12px;
  width: 2px;
  background-color: var(--accent-color);
  transform: rotate(20deg) translateY(-50%) skew(20deg);
}

.pagination__item,
.pagination span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08px;
}

.pagination span {
  color: var(--accent-color);
  font-weight: 900;
}

.pagination__arrow-next {
  margin-left: 20px;
}

.simple-filled-btn {
  transition: 0.2s all;
  background-color: var(--accent-color);
  border: 1px solid transparent;
}

.simple-filled-btn:hover {
  background-color: var(--light-color);
  border: 1px solid var(--accent-color);
}

.filled-btn {
  position: relative;
  z-index: 1;
}

.filled-btn:hover::before {
  background-color: var(--light-color);
  border: 1px solid var(--accent-color);
}

.filled-btn::before {
  transition: 0.3s all;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  z-index: -1;
  transform: skew(-30deg);
}

.forms {
  display: flex;
  flex-wrap: wrap;
}

.body-fixed {
  position: fixed;
}

.body-fixed::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.521);
}

.skew {
  transition: 0.3s all;
  transform: skew(-30deg);
}

.skew span,
.skew div {
  display: block;
  transform: skew(30deg);
}

.order-page {
  margin-top: 30px;
}

.order-section {
  padding-bottom: 100px;
}

.order-page .order-section__body {
  display: flex;
}

.order-page .order-section__info {
  width: 60%;
  margin-right: 50px;
}

.order-page .order-section__body {
  margin-top: 25px;
}

.order-page .order-form__title {
  font-size: 22px;
  font-weight: 700;
}

.order-page .order-form__base {
  margin-top: 30px;
  display: flex;
  max-width: 500px;
  flex-direction: column;
  gap: 20px;
}

.order-page .order-section__shopcart {
  flex: 1;
}

.order-page .order-section__shopcart {
  top: 10px;
}

.order-page .shopcart__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.order-page .shopcart__head a {
  font-size: 14px;
  opacity: 0.7;
}

.order-page .shopcart__items {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--accent-color);
}

.order-page .shopcart__result {
  padding: 20px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid var(--accent-color);
}

.order-page .shopcart__result span {
  font-weight: 400;
}

.order-page .shopcart__total {
  width: 100%;
  display: flex;
  padding: 20px 20px 30px;
  justify-content: space-between;
}

.order-page .shopcart__total p {
  font-weight: 900;
  font-size: 22px;
}

.order-page .shopcart__result p {
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
}

.order-page .shopcart__title {
  font-size: 22px;
  font-weight: 700;
}

.order-page .shopcart__item {
  display: flex;
}

.order-page .shopcart__item__image {
  height: 100px;
  width: 100px;
}

.order-page .shopcart__item__image img {
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
  display: block;
}

.order-page .shopcart__item__base {
  display: flex;
  gap: 10px;
}

.order-page .shopcart__item__base p {
  opacity: 0.8;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
}

.order-page .shopcart__item__base p:nth-child(1) {
  opacity: 0.9;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}

.order-page .shopcart__item__info {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  max-width: 200px;
}

.order-page .shopcart__item__base p:nth-child(2) {
  margin-top: auto;
}

.order-page .shopcart__item__price {
  margin-left: auto;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: auto;
}

.order-form__wrapper {
  max-width: 500px;
  display: flex;
  flex-direction: column;
}

.order-page .order-form__comment {
  margin-top: 50px;
  width: 100%;
}

.order-page .order-form__comment textarea {
  resize: vertical;
  min-height: 200px;
}

.order-page .order-form__send-btn {
  padding: 20px 45px;
  border-radius: 5px;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
}

.order-page .order-form__send-btn[disabled] {
  opacity: 0.4;
  cursor: none;
  pointer-events: none;
}

.order-page .help-block {
  color: darkred;
  margin-top: 5px;
  font-size: 13px;
  padding-left: 10px;
}

.order-page .order-form__field-checkbox {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  color: #535353;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}

.order-page .order-form__field-checkbox a {
  text-decoration: underline;
  font-weight: bold;
}

.order-page .order-tabs {
  margin-top: 20px;
}

.order-page .order-tabs__head {
  display: flex;
  margin-top: 15px;
  gap: 30px;
  max-width: 500px;
}

.order-page .order-tabs__body {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
  max-width: 500px;
}

.order-page .order-tabs__head .active-button {
  border-bottom: 3px solid var(--accent-color);
}

.order-page .order-tabs__head button {
  font-size: 18px;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  flex: 1;
  padding: 5px 0;
}

.order-page .order-tabs__head .forbidden {
  opacity: 0.2;
  pointer-events: none;
}

.order-page .order-tabs__body .order-tabs__item {
  display: none;
  flex-direction: column;
  gap: 20px;
}

.order-page .order-tabs__body .order-tabs__item p {
  line-height: 130%;
}

.order-page .order-tabs__body .item-active {
  display: flex;
}

.order-page .total-without-delivery {
  display: none;
}

.order-success__inner {
  max-width: 950px;
  margin: 0 auto;
  border-left: 2px solid var(--accent-color);
  border-right: 2px solid var(--accent-color);
  padding: 0 50px;
}

.order-success-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.order-success__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-success__products {
  margin-top: 30px;
  margin-bottom: 30px;
}

.order-success__message,
.order-success__bottom {
  margin-top: 20px;
  padding: 20px;
  line-height: 130%;
  text-align: center;
  background-color: rgba(235, 235, 235, 0.32);
}

.order-success__product__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-success__product {
  display: flex;
  gap: 20px;
}

.order-success__product .product__info span {
  font-weight: bold;
}

.order-success__product .product__info__row {
  margin-top: 20px;
  display: flex;
  font-size: 14px;
  gap: 10px;
}

.order-success__subtitle {
  opacity: 0.8;
  display: block;
  font-size: 16px;
  margin-bottom: 20px;
}

.order-success__section {
  padding: 50px 0 100px 0;
}

.order-success__head {
  display: flex;
  flex-direction: column;
}

.order-success__head p {
  margin-top: 15px;
  line-height: 130%;
  max-width: 500px;
  font-size: 18px;
}

.order-success__head p span {
  font-weight: bold;
}

.order-success__head p strong {
  font-size: 22px;
}

/* ИСТОРИЯ ПОКУПОК */
.user-order__items {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.user-order__head {
  padding: 0 15px;
}

.user-order__item-head {
  padding: 20px 15px;
  background-color: var(--accent-color);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.005em;
}

.user-order__item-goods {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 15px;
  padding: 35px 15px;
}

.user-order__price {
  right: 15px;
  top: 50%;
  position: absolute;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.005em;
  transform: translateY(-50%);
}

.user-order__price span {
  font-size: 24px;
  font-weight: 900;
  line-height: 24px;
  letter-spacing: 0.005em;
  margin-left: 5px;
}

.user-order__good {
  display: flex;
}

.user-order__good-info p {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.005em;
}

.user-order__good-info .user-order__good-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.005em;
}

.user-order__good-info {
  position: relative;
  margin-left: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.user-order__good-base {
  margin-bottom: auto;
  margin-top: auto;
}

.user-order__good-info span {
  margin-bottom: auto;
  position: absolute;
  left: 0;
  top: 0;
}

.user-order__good-image {
  padding: 30px;
  border-radius: 5px;
  display: inline-block;
  border: 1px solid var(--accent-color);
}

.grid-size-table table {
  padding-top: 20px;
  border-top: 2px solid var(--accent-color);
  margin-top: 30px;
  width: 100%;
}

.grid-size-table table tbody tr:nth-child(1) td {
  padding: 10px 5px;
  font-weight: 700;
}

.grid-size-table table tbody td {
  padding: 10px 5px;
  font-weight: 400;
}

.grid-size-table table tbody tr {
  border-bottom: 1px solid rgba(246, 202, 79, 0.42);
}

.shopcart-select-item {
  padding: 10px 15px;
  height: 45px;
  border-radius: 3px;
  min-width: 150px;
  border: 1px solid rgba(160, 160, 160, 0.45);
}
.shopcart-select-item option {
  appearance: none;
  height: 45px;
  padding: 10px 15px;
}

.cart-page .select2-container--krajee-bs4 .select2-selection {
  padding: 10px 15px;
  height: 45px;
  border-radius: 3px;
  min-width: 150px;
  border: 1px solid rgba(160, 160, 160, 0.45);
}
.cart-page .cart__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-page .cart__head a {
  opacity: 0.7;
  transition: 0.2s all ease;
}
.cart-page .cart__head a:hover {
  opacity: 1;
}
.cart-page .select2-container--krajee-bs4 .select2-selection--single .select2-selection__arrow {
  border-color: rgba(160, 160, 160, 0.45);
}

@media screen and (max-width: 1520px) {
  .main-page::before {
    width: 100px;
  }
  .single-team-page::before,
  .matches-page::before,
  .team-page::before {
    width: 150px;
    height: 550px;
    left: 0;
  }
  .single-team-page::after,
  .matches-page::after,
  .team-page::after {
    width: 150px;
    height: 550px;
    right: 0;
  }
}
@media screen and (max-width: 1370px) {
  .news-page::before,
  .main-page::before {
    display: none;
  }
  .parts-line-2::before,
  .parts-line-2::after {
    width: 125px;
    height: 450px;
    top: 0;
    background-size: cover;
  }
  .footer__top {
    padding: 40px 20px;
  }
  .footer__container {
    max-width: 1080px;
  }
  .footer__menu .container {
    gap: 40px;
    justify-content: space-between;
    flex-wrap: nowrap;
    max-width: unset;
  }
}
@media screen and (max-width: 1280px) {
  .cabinet-header__logo_new {
    width: 130px;
    height: 100px;
    left: -50px;
    top: 0;
  }
  .parts-line-2::before,
  .parts-line-2::after {
    display: none;
  }
  .academy-players__preview__address {
    margin-bottom: 30px;
  }
  .academy-players__preview__message p {
    margin-bottom: 15px;
  }
  .academy-players__preview__message {
    margin-bottom: 20px;
  }
  .academy-players__preview__title {
    margin-bottom: 30px;
  }
  .academy-players__preview__image {
    max-width: 300px;
    height: 260px;
  }
  .academy-players__preview__image img {
    width: 190%;
  }
  .academy-players__preview::before {
    right: 45px;
    left: unset;
    background-size: 100%;
  }
  .header__container {
    padding-left: 150px;
  }
  .header__logo_new {
    width: 140px;
    transform: translateX(-150px);
  }
}
@media screen and (max-width: 1230px) {
  .last-news .last-news-button-next,
  .last-news .last-news-button-prev {
    display: none;
  }
}
@media screen and (max-width: 1220px) {
  .academy-players__preview__title {
    font-size: 18px;
  }
  .academy-players__preview::before {
    background-position: right;
    background-size: cover;
  }
  .academy-players__preview__address {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .academy-players__preview__message {
    font-size: 16px;
  }
  .academy-players__preview__btn {
    padding: 12px 50px;
  }
  .academy-players__preview__image {
    height: auto;
    max-width: 300px;
  }
}
@media screen and (max-width: 1180px) {
  .develop h1 {
    font-size: 64px;
  }
  .develop .section-title {
    text-align: center;
    font-weight: 600;
  }
  .header__menu li:first-child {
    margin-left: 0;
  }
  .header__menu a {
    padding: 10px 15px;
  }
  .footer__socials {
    display: none;
  }
  .footer .fans {
    margin-bottom: 0;
  }
  .footer__top {
    padding: 40px 20px;
  }
  .footer__menu {
    width: 100%;
    justify-content: space-between;
    margin: 0;
  }
  .footer__menu-inner {
    justify-content: space-between;
    padding: 0 50px;
    gap: 0;
  }
  .footer__menu__item {
    margin-bottom: 0;
  }
  .footer__menu__item .footer__menu__title {
    margin-bottom: 20px;
  }
  .footer__menu__item ul li a {
    line-height: 15px;
  }
  .footer__menu .footer__col {
    max-width: 160px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer__bot {
    padding: 35px 20px 80px 20px;
  }
  .footer__bot-inner {
    padding: 0 50px;
  }
  .footer__bot-inner .footer__socials {
    display: flex;
    position: static;
    flex-direction: row;
  }
  .footer__bot-inner .footer__row:nth-child(2) {
    display: flex;
  }
  .footer__bot-inner .footer__row:nth-child(1) p:nth-child(1) {
    display: none;
  }
  .match-block:not(.match-block-main) .match-block__about {
    padding: 0;
    margin-bottom: 10px;
  }
  .preview__item__wrapper {
    padding: 30px 80px 70px 80px;
  }
  .preview .swiper-pagination {
    padding-left: 80px;
  }
  .academy .swiper-button-next,
  .academy .swiper-button-prev {
    display: none;
  }
  .partners__items {
    justify-content: center;
  }
  .academy-about__inner {
    gap: 30px;
  }
  .academy-about__logo {
    height: 100px;
  }
  .academy-about__goals__text {
    font-size: 16px;
    max-width: 350px;
  }
  .academy-about__goals::before {
    right: 110px;
    width: 110%;
  }
  .academy-players-page .players .players-block__items {
    grid-template-columns: repeat(4, 1fr);
  }
  .academy-player .tshort-card__image {
    height: 205px;
  }
  .academy-player .player-card__inner {
    height: 380px;
    width: 250px;
  }
  .shop-page .shop-preview__inner {
    padding: 10px 25px;
  }
  .shop-page .shop-preview .product-item__image {
    max-width: 100%;
    height: 100%;
    width: 21em;
  }
  .shop-page .shop-preview .product-item__col {
    gap: 30px;
  }
  .shop-page .shop-preview .product-item__info {
    font-size: 2.25em;
  }
  .shop-page .shop-preview .product-item__info span {
    font-size: 1.75em;
  }
  .shop-page .shop-preview .product-item__btn,
  .shop-page .shop-preview .product-item__personal {
    font-size: 1.12em;
  }
  .shop-page .shop-preview .product-item__mark span {
    font-size: 3.3em;
  }
  .tickets__head-empty {
    padding: 30px 60px;
  }
  .tickets .tickets-match .match-block__team {
    gap: 10px;
  }
  .tickets .tickets-match .match-block__about {
    margin: 0 20px;
  }
  .tickets .tickets-match .match-block__versus {
    margin: 0 20px;
  }
  .next-matches .next-matches-item {
    min-width: 40%;
  }
  .subscription__item__body {
    gap: 20px;
  }
  .subscription__item__qr {
    height: 200px;
    min-width: 200px;
  }
  .leader__leader-block .leader-block__image {
    height: 340px;
  }
  .media__row {
    gap: 35px;
  }
  .media__col {
    justify-content: unset;
  }
  .mission__message::before {
    width: 90%;
  }
  .history__block-info {
    gap: 70px;
  }
  .history__block-quote .block-quote__items {
    gap: 70px;
  }
  .chronology__head {
    margin-bottom: 30px;
  }
  .chronology__row__inner {
    gap: 20px;
  }
}
@media screen and (max-width: 1120px) {
  .cabinet-header__link,
  .cabinet-header__live-btn {
    font-size: 0.85em;
  }
  .cabinet-header .profile-link {
    margin-right: 30px;
  }
  .cabinet-header__menu ul li a {
    font-size: 0.85em;
  }
  .match-block-past .match-block__date strong,
  .match-block__date p strong {
    font-size: 14px;
  }
  .match-block__date,
  .match-block__tour {
    max-width: 50%;
  }
}
@media screen and (max-width: 1080px) {
  .academy-players-page .players .player {
    height: 250px;
  }
  .academy-players__preview__info {
    padding-left: 60px;
  }
  .academy-players-page .players .player__image {
    height: 190px;
  }
  .academy-player .player__info {
    padding-bottom: 0;
  }
  .academy-player .tshort-card__image {
    height: 155px;
  }
  .academy-player .player-card__inner {
    height: 340px;
    width: 210px;
  }
  .product__inner {
    grid-template-columns: 330px 1fr;
    grid-template-rows: 380px 1fr;
  }
  .product .product-info__description {
    max-width: 45%;
  }
  .product .product-gallery__small .product-gallery__image {
    height: 100px;
  }
  .tickets__head-empty {
    padding: 30px;
  }
  .tickets__push-btn {
    padding: 15px 30px;
  }
  .tickets .tickets-match .match-block__name {
    font-size: 16px;
  }
  .tickets .tickets-match .match-block__team {
    gap: 10px;
  }
  .tickets .tickets-match .match-block__about {
    margin: 0 15px;
  }
  .tickets .tickets-match .match-block__logo {
    height: 80px;
  }
  .tickets .tickets-match .match-block__versus {
    margin: 0 15px;
  }
  .mission__message::before {
    width: 100%;
    right: 45px;
    left: unset;
  }
  .mission .mission-task__items {
    -moz-column-gap: 70px;
    column-gap: 70px;
  }
  .chronology__item {
    font-size: 12px;
  }
  .order-page .order-form {
    flex-shrink: 3;
  }
  .order-page .order-section__info {
    width: 50%;
  }
  .order-page .order-section__shopcart {
    min-width: 380px;
  }
}
@media screen and (max-width: 1060px) {
  .header__menu a {
    padding: 10px;
  }
  .tabs-slider .tabs__wrapper {
    width: 95%;
  }
  .tabs-slider .tabs__arrow {
    display: flex;
  }
  .hero-news .hero__image {
    height: 400px;
  }
  .hero-news .hero__inner::after {
    width: 280px;
  }
  .hero-news .hero__inner::before {
    width: 280px;
    top: 195px;
  }
  .single-news__wrapper {
    max-width: 680px;
  }
  .single-news__quote__border {
    width: 820px;
  }
  .team .team-block__items {
    gap: 20px;
  }
  .team .player {
    height: 340px;
  }
  .team .player__image {
    height: 90%;
  }
  .team .player__image img {
    height: 100%;
  }
  .team .player__over:before {
    height: 350px;
  }
  .single-team .player__info {
    gap: 10px;
    justify-content: space-between;
  }
  .match .match-tabs .tabs__arrow {
    display: none;
  }
  .academy-about__advantages {
    gap: 30px;
  }
  .academy-about__advantage {
    width: calc(33.3333333333% - 50px);
  }
  .shop-page .shop-preview__inner::before {
    left: -300px;
  }
  .shop-page .shop-preview .shop-pagination {
    bottom: 20px;
  }
  .shop-page .shop-preview .product-item__image {
    width: 19em;
  }
  .shop-page .shop-preview .product-item__col {
    gap: 5px;
  }
  .shop-page .shop-preview .product-item__info {
    font-size: 2em;
    gap: 25px;
  }
  .shop-page .shop-preview .product-item__info span {
    font-size: 1.75em;
  }
  .shop-page .shop-preview .product-item__btn,
  .shop-page .shop-preview .product-item__personal {
    font-size: 1.05em;
  }
  .shop-page .shop-preview .product-item__mark span {
    font-size: 3.3em;
  }
  .shop-main .catalog-item {
    height: 340px;
    width: calc(50% - 17px);
  }
  .shop-main .catalog-item__info {
    padding: 0 10px;
  }
  .shop-main .catalog-item__image {
    height: 210px;
  }
  .next-matches .next-matches-item {
    min-width: 45%;
  }
  .next-matches .next-matches__purchases p,
  .next-matches .next-matches__poll p {
    font-size: 0.75em;
  }
  .next-matches .purchases__date,
  .next-matches .purchases__all {
    font-size: 0.75em;
  }
  .next-matches .pool__btn {
    width: unset;
    font-size: 0.85em;
    padding: 7px 20px;
  }
  .next-matches .purchases__title,
  .next-matches .poll__title {
    margin-bottom: 15px;
    font-size: 0.85em;
  }
  .next-matches .purchases__icon,
  .next-matches .poll__icon {
    margin-bottom: 15px;
  }
  .next-matches .profile-block {
    min-width: 45%;
  }
  .subscription__item {
    padding: 20px 25px 35px;
  }
  .subscription__item__body {
    gap: 20px;
  }
  .subscription__item__qr {
    height: 180px;
    min-width: 180px;
  }
  .stadium-description__block .block__body {
    gap: 30px;
  }
  .stadium-description__block .block__col {
    width: calc(50% - 15px);
  }
  .club-structure__club-item .container {
    gap: 50px;
  }
  .media__row {
    flex-direction: column;
  }
  .history__block-info {
    gap: 40px;
  }
  .history__block-info .block-info__text,
  .history__block-info .block-info__image {
    flex: 1;
  }
  .history__block-fact .block-fact__items {
    gap: 50px;
  }
  .history__block-quote .block-quote__items {
    gap: 40px;
  }
  .achievement__items {
    gap: 20px;
  }
  .achievement__item {
    gap: 15px;
  }
  .achievement__rang {
    width: 50px;
    height: 50px;
  }
  .achievement__rang img {
    width: 100%;
  }
  .achievement__name {
    font-size: 16px;
  }
  .achievement__years p {
    font-size: 14px;
  }
}
@media screen and (max-width: 1020px) {
  .setting-page .setting__forms {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .setting-page .section-title {
    justify-content: center;
  }
}
@media screen and (max-width: 980px) {
  .leader__leader-block .leader-block__image img {
    max-height: 235px;
  }
  .parts-line-2::before,
  .parts-line-2::after {
    width: 75px;
    height: 250px;
    top: 0;
    background-size: cover;
    display: block;
  }
  .header__container {
    padding: 0 50px 0 150px;
  }
  .header__bot {
    display: none;
  }
  .header__mid .container-big {
    position: relative;
  }
  .header__mid .container-big::before {
    display: none;
  }
  .header__title {
    font-size: 20px;
  }
  .header__burger {
    width: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }
  .header__burger span {
    display: block;
    background-color: var(--dark-color);
    height: 3px;
    width: 100%;
  }
  .header__burger span:nth-child(1),
  .header__burger span:nth-child(3) {
    transition: 0.2s all;
  }
  .header__burger_active span:nth-child(1) {
    transform: rotate(-45deg) translateY(10px);
  }
  .header__burger_active span:nth-child(2) {
    opacity: 0;
  }
  .header__burger_active span:nth-child(3) {
    transform: rotate(45deg) translateY(-10px);
  }
  .header__links {
    padding: 10px 0;
    gap: 40px;
  }
  .header__links .header__socials {
    margin-left: auto;
    display: flex;
  }
  .header__links .search {
    display: block;
  }
  .header__links .header__links__item {
    margin: 0;
  }
  .header__links .header__links__item i {
    font-size: 22px;
  }
  .header__links .header__links__item span {
    display: none;
  }
  .header__mid {
    background-color: var(--accent-color);
  }
  .header__mid .header__inner {
    padding: 10px 0;
  }
  .header__mid .socials {
    display: none;
  }
  .header__logo {
    transform: translateX(-100px);
    width: 80px;
    height: 130px;
  }
  .header__logo svg {
    transform: translateY(-5px);
    width: 55px;
    height: 120px;
  }
  .footer__socials {
    display: none;
  }
  .footer__top {
    padding: 40px 10px;
  }
  .footer__menu {
    width: 100%;
    justify-content: space-between;
    margin: 0;
  }
  .footer__menu-inner {
    justify-content: space-between;
    padding: 0 70px;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer__menu__item {
    margin-bottom: 0;
  }
  .footer__menu__item .footer__menu__title {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .footer__menu__item ul li a {
    font-size: 12px;
    line-height: 15px;
  }
  .footer__menu .footer__col {
    width: 160px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer__bot {
    padding: 35px 10px 80px 10px;
  }
  .footer__bot .footer__socials svg {
    width: 90%;
    height: 90%;
  }
  .footer__bot .footer__link {
    font-size: 12px;
  }
  .footer__bot-inner {
    padding: 0 70px;
  }
  .footer__bot-inner .footer__socials {
    display: flex;
    position: static;
    flex-direction: row;
  }
  .footer__bot-inner .footer__row:nth-child(2) {
    display: flex;
  }
  .footer__bot-inner .footer__row:nth-child(1) a:nth-child(1) {
    display: none;
  }
  .footer .fans {
    margin-bottom: 0;
  }
  .footer .fans span {
    font-size: 12px;
  }
  .footer .fans span svg {
    width: 90%;
    height: 90%;
  }
  .match-block {
    width: calc(50% - 10px);
    padding: 15px;
  }
  .match-block__address {
    font-size: 10px;
    line-height: normal;
    margin-bottom: 0;
  }
  .match-block__tickets,
  .match-block__photo {
    display: inline-flex;
    margin-bottom: 10px;
    width: 100px;
    font-size: 10px;
    padding: 5px;
  }
  .match-block__tickets img,
  .match-block__photo img {
    height: 15px;
    width: 15px;
  }
  .match-block:not(.match-block-main) .match-block__about {
    padding: 0 20px;
  }
  .match-block:not(.match-block-main) .match-block__info-actions {
    height: 25px;
  }
  .match-block:not(.match-block-main) .match-block__info-actions a img {
    height: 15px;
    width: 15px;
  }
  .match-block:not(.match-block-main) .match-block__logo {
    max-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  .match-block:not(.match-block-main) .match-block__score {
    margin-top: 0;
    font-size: 40px;
  }
  .match-block:not(.match-block-main) .match-block__begin {
    font-size: 12px;
  }
  .match-block:not(.match-block-main) .match-block__name {
    font-size: 12px;
  }
  .match-block:not(.match-block-main) .match-block__city {
    font-size: 10px;
  }
  .match-block:not(.match-block-main) .match-block__head {
    margin-bottom: 8px;
  }
  .match-block:not(.match-block-main) .match-block__versus {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .match-block:not(.match-block-main) .match-block__tickets,
  .match-block:not(.match-block-main) .match-block__photo {
    display: inline-flex;
    margin-bottom: 10px;
    width: 100px;
    font-size: 10px;
    padding: 5px;
  }
  .match-block:not(.match-block-main) .match-block__tickets svg,
  .match-block:not(.match-block-main) .match-block__photo svg {
    height: 15px;
    width: 15px;
  }
  .match-block:not(.match-block-main) .match-block__time {
    font-size: 20px;
    margin-bottom: 0;
  }
  .match-block:not(.match-block-main) .match-block__date {
    white-space: nowrap;
  }
  .match-block:not(.match-block-main) .match-block__date p,
  .match-block:not(.match-block-main) .match-block__date strong {
    font-size: 10px;
    line-height: 15px;
  }
  .match-block:not(.match-block-main) .match-block__date::after {
    height: 40px;
    width: 2px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .match-block:not(.match-block-main) .match-block__tour__image {
    height: 25px;
    width: 25px;
  }
  .match-block:not(.match-block-main) .match-block__tour__image img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .match-block:not(.match-block-main) .match-block__tour p {
    display: block;
    line-height: 130%;
    font-size: 11px;
    max-width: 80%;
  }
  .match-block-past .match-block__actions {
    height: 26px;
  }
  .match-block-past .match-block__actions a {
    width: 40px;
  }
  .match-block-past .match-block__actions a svg {
    height: 70%;
    width: 70%;
  }
  .match-block-past .match-block__photo {
    margin-bottom: 0;
    margin-top: 10px;
  }
  .match-block-past .match-block__date strong {
    font-size: 10px;
    line-height: 10px;
  }
  .match-block-past .match-block__info {
    justify-content: flex-end;
  }
  .match-block-past .match-block__address {
    margin: 10px auto 0 auto;
    line-height: 12px;
  }
  .match-block-past .match-block__score {
    margin-top: 0;
  }
  .match-block-empty .match-block__info {
    gap: 30px;
  }
  .news-block {
    height: 350px;
    padding: 20px;
  }
  .preview__inner::after {
    height: 100%;
    width: 150px;
    background-position-y: center;
    right: -20px;
    bottom: 0;
  }
  .preview__item__wrapper {
    height: 40vw;
  }
  .preview .swiper-pagination {
    padding-left: 80px;
  }
  .matches .container {
    flex-direction: column;
  }
  .matches .matches-card,
  .matches .championship-card {
    width: 100%;
  }
  .news__items {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .hero-news .hero__image {
    height: 360px;
  }
  .hero-news .hero__inner::after {
    width: 260px;
  }
  .hero-news .hero__inner::before {
    width: 260px;
    top: 175px;
  }
  .single-news__date {
    font-size: 12px;
  }
  .single-news__mark {
    font-size: 12px;
    padding: 5px 10px;
  }
  .single-news__title {
    font-size: 20px;
    max-width: 80%;
  }
  .single-news__wrapper {
    max-width: 680px;
  }
  .single-news__quote {
    max-width: 680px;
    margin: 0 auto 45px;
  }
  .single-news__quote strong {
    max-width: 90%;
    font-size: 16px;
    padding: 35px 0;
  }
  .single-news__quote__border {
    left: -100px;
    width: 850px;
    height: 220px;
    background-size: contain;
    background-image: url("/uploads/images/parts/quote-tablet.svg");
  }
  .team .team-block__items {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  .team .tabs__header .tabs__item {
    padding: 5px 10px;
  }
  .team .player__more-btn {
    font-size: 12px;
    padding: 10px 25px 10px 40px;
  }
  .team .player__over {
    padding: 15px;
    left: -15px;
    top: -15px;
    right: -15px;
  }
  .team .player__over::before {
    height: 345px;
  }
  .team .player__additional-mark {
    width: 35px;
    height: 35px;
  }
  .team .player__name {
    font-size: 12px;
  }
  .team .player__lastname {
    font-size: 16px;
  }
  .team .player__mark {
    width: 35px;
    height: 50px;
    font-size: 16px;
  }
  .team .player__image {
    display: flex;
    justify-content: center;
  }
  .matches .container-big::before {
    left: 50%;
    top: -190px;
    transform: translateX(-50%) scale(1, -1);
    background-size: cover;
    height: 350px;
    width: 350px;
  }
  .modal__wrapper {
    padding: 45px;
  }
  .modal__wrapper .modal {
    padding: 0;
  }
  .modal__wrapper .modal__inner {
    gap: 30px;
    padding: 25px 30px;
    justify-content: space-between;
  }
  .modal__wrapper .modal .player-card__inner {
    height: 320px;
  }
  .modal__wrapper .player-card__image img {
    width: 85%;
  }
  .single-team__inner {
    gap: 30px;
    padding: 25px 30px;
    justify-content: space-between;
  }
  .single-team .player-card__inner {
    width: 240px;
    height: 320px;
  }
  .single-team .player__counter {
    padding: 45px 35px;
  }
  .single-team .player__counter__value {
    font-size: 48px;
  }
  .single-team .tshort-card__image {
    height: 190px;
  }
  .academy-about__logo {
    height: 80px;
  }
  .academy-about__goals__text {
    font-size: 14px;
    max-width: 300px;
  }
  .academy-about__goals::before {
    right: 30px;
    width: 120%;
  }
  .academy-about__rules {
    margin-bottom: 35px;
  }
  .academy-about__advantages {
    gap: 20px;
  }
  .academy-about__advantage {
    width: calc(33.3333333333% - 50px);
  }
  .academy-about__advantage__value {
    font-size: 32px;
  }
  .academy-about__advantage__text {
    font-size: 14px;
  }
  .academy-players__info .academy-players__col span,
  .academy-players__info .academy-players__col a,
  .academy-players__info .academy-players__col strong {
    font-size: 12px;
  }
  .academy-players__info .academy-players__row span,
  .academy-players__info .academy-players__row a,
  .academy-players__info .academy-players__row strong {
    font-size: 12px;
  }
  .academy-players__preview__title {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .academy-players__preview__address {
    font-size: 10px;
  }
  .academy-players__preview .container {
    width: 100%;
  }
  .academy-players__preview__message {
    font-size: 12px;
  }
  .academy-players__preview__btn {
    font-size: 12px;
    padding: 7px 20px;
  }
  .academy-players__preview__info {
    padding-left: 50px;
  }
  .academy-players__preview__image {
    max-width: 300px;
    display: flex;
    justify-content: center;
    height: auto;
    margin-left: 50px;
  }
  .academy-players__preview__image img {
    width: unset;
    max-width: 150%;
    transform: skew(32deg);
  }
  .academy-players__preview::before {
    right: 45px;
    left: unset;
    -o-object-fit: cover;
    object-fit: cover;
    width: 110%;
  }
  .academy-contacts .company-block__image {
    height: 235px;
    width: 100%;
  }
  .academy-contacts .company-block__title {
    font-size: 16px;
    padding: 15px;
  }
  .academy-contacts .company-block__info {
    padding: 15px;
  }
  .academy-contacts .company-block__info p,
  .academy-contacts .company-block__info a {
    font-size: 12px;
  }
  .academy-contacts .company-block__info__item svg {
    height: 15px !important;
    width: 15px !important;
  }
  .academy-contacts .company-block__image {
    height: 235px;
    width: 100%;
  }
  .academy-contacts .company-block__title {
    font-size: 16px;
    padding: 15px;
  }
  .academy-contacts .company-block__info {
    padding: 15px;
  }
  .academy-contacts .company-block__info p,
  .academy-contacts .company-block__info a {
    font-size: 12px;
  }
  .academy-contacts .company-block__info__item svg {
    height: 15px !important;
    width: 15px !important;
  }
  .coach-block__image {
    height: 260px;
  }
  .academy-branch .company__name {
    font-size: 14px;
  }
  .academy-branch .company__manager {
    font-size: 14px;
  }
  .academy-branch .company__manager i {
    background-color: #00CC00;
  }
  .academy-branch .company__near svg {
    height: 15px;
    width: 15px;
  }
  .academy-branch .company__info {
    margin-left: 15px;
  }
  .academy-branch .company__logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .academy-branch .company__logo img {
    width: 25px;
    height: 50px;
  }
  .academy-branch .company__phone {
    font-size: 14px;
  }
  .academy-branch .company__phone svg {
    height: 15px;
    width: 15px;
  }
  .academy-branch .company__address {
    font-size: 12px;
    display: flex;
    align-items: center;
  }
  .academy-branch .company__address svg {
    height: 15px;
    width: 15px;
  }
  .academy-branch .company__address__item {
    font-size: 12px;
  }
  .academy-branch .company__address__item svg {
    height: 15px;
    width: 15px;
  }
  .academy-player__inner {
    padding: 25px;
  }
  .academy-player .player__name {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .academy-player .player__role {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .academy-player .player__info {
    min-width: unset;
    padding-top: 15px;
    padding-bottom: 0;
  }
  .academy-player .player__info p,
  .academy-player .player__info span {
    font-size: 12px;
  }
  .academy-player .tshort-card__image {
    height: 135px;
  }
  .academy-player .tshort-card__inner {
    padding: 12px 18px;
  }
  .academy-player .tshort-card__title {
    font-size: 10px;
    margin-bottom: 10px;
  }
  .academy-player .tshort-card__price {
    font-size: 10px;
  }
  .academy-player .tshort-card__basket {
    padding: 7px 0;
    font-size: 10px;
    margin-bottom: 10px;
  }
  .academy-player .tshort-card__more {
    font-size: 10px;
  }
  .academy-player .player-card__inner {
    height: 270px;
    width: 190px;
  }
  .single-team .player-card__image img {
    height: 300px;
  }
  .search-page .search__head {
    padding: 30px 0;
  }
  .search-page .search__inner {
    padding: 0;
  }
  .shop-page .shop-preview__inner {
    padding: 10px 20px;
  }
  .shop-page .shop-preview__inner::before {
    left: -350px;
  }
  .shop-page .shop-preview .shop-pagination {
    bottom: 20px;
  }
  .shop-page .shop-preview .product-item__image {
    width: 17em;
  }
  .shop-page .shop-preview .product-item__divider svg {
    height: 130px;
    width: 40px;
  }
  .shop-page .shop-preview .product-item__info {
    font-size: 1.8em;
    gap: 25px;
    line-height: normal;
  }
  .shop-page .shop-preview .product-item__info span {
    font-size: 1.75em;
  }
  .shop-page .shop-preview .product-item__btn,
  .shop-page .shop-preview .product-item__personal {
    font-size: 1em;
  }
  .shop-page .shop-preview .product-item__btn {
    padding: 10px 20px;
  }
  .shop-page .shop-preview .product-item__mark span {
    font-size: 3.3em;
  }
  .shop-main__catalog {
    width: calc(100% - 230px);
  }
  .shop-main__catalog-filter {
    margin-bottom: 15px;
  }
  .shop-main .catalog-filter__items {
    gap: 30px;
  }
  .shop-main .catalog-filter__search svg {
    height: 15px;
    width: 15px;
  }
  .shop-main .catalog-filter__search input {
    font-size: 12px;
  }
  .shop-main .catalog-filter__item svg {
    height: 16px;
    width: 16px;
  }
  .shop-main .catalog-filter__item span {
    font-size: 12px;
  }
  .shop-main__sidebar-filter {
    min-width: 200px;
  }
  .shop-main__sidebar-filter .sidebar-filter__item__filters {
    padding-left: 20px;
  }
  .shop-main__sidebar-filter .sidebar-filter__cell {
    gap: 5px;
  }
  .shop-main__sidebar-filter .sidebar-filter__cell label {
    gap: 5px;
    font-size: 12px;
  }
  .shop-main .catalog-item {
    height: 320px;
  }
  .shop-main .catalog-item__image {
    height: 220px;
  }
  .shop-main .catalog-item__title {
    margin-bottom: 15px;
  }
  .shop-main .catalog-item__title,
  .shop-main .catalog-item__price,
  .shop-main .catalog-item__add,
  .shop-main .catalog-item__description {
    font-size: 12px;
  }
  .product__inner {
    grid-template-columns: 300px 1fr;
    grid-template-rows: 340px 1fr;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .product .product-info__description,
  .product .product-info__additional {
    max-width: 50%;
  }
  .product .product-info__description a,
  .product .product-info__additional a {
    font-size: 12px;
  }
  .product .product-info__actions {
    margin-bottom: 20px;
  }
  .product .product-info__delivery-title,
  .product .product-info__description-title,
  .product .product-info__pay-title,
  .product .product-info__additional-title {
    font-size: 12px;
  }
  .product .product-info__description-title,
  .product .product-info__pay-title,
  .product .product-info__delivery-title,
  .product .product-info__additional-title {
    margin-bottom: 15px;
  }
  .product .product-info__price {
    font-size: 22px;
  }
  .product .product-info__add-btn {
    padding: 8px 30px;
    font-size: 12px;
  }
  .product .product-info__article {
    font-size: 12px;
  }
  .product .product-info__delivery p,
  .product .product-info__pay p {
    font-size: 12px;
  }
  .product .product-info__filter {
    padding: 5px 10px;
  }
  .product .product-info__filter span {
    font-size: 12px;
  }
  .product .product-info__filter ul li {
    font-size: 12px;
  }
  .product .product-info__title {
    font-size: 22px;
  }
  .product .product-info span,
  .product .product-info p {
    font-size: 12px;
    line-height: normal;
  }
  .product .product-gallery__small .product-gallery__image {
    height: 80px;
  }
  .tickets__head-empty {
    padding: 30px 0;
  }
  .tickets__push-btn {
    padding: 10px 20px;
  }
  .tickets__select p {
    font-size: 14px;
  }
  .tickets__message {
    font-size: 12px;
  }
  .tickets__message span {
    font-size: 12px;
  }
  .tickets__scheme svg {
    height: 750px;
  }
  .tickets .tickets-match {
    padding: 12px 20px;
    height: 100%;
  }
  .tickets .tickets-match__date p {
    font-size: 12px;
  }
  .tickets .tickets-match__divider {
    height: 30px;
    width: 20px;
    background-size: cover;
    background-image: url("/uploads/images/parts/tickets-divider.svg");
  }
  .tickets .tickets-match__divider svg {
    display: none;
  }
  .tickets .tickets-match__tour__image {
    height: 25px;
    width: 25px;
  }
  .tickets .tickets-match__tour__image img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .tickets .tickets-match__tour p {
    font-size: 12px;
    max-width: 135px;
  }
  .tickets .tickets-match .match-block__logo {
    height: 60px;
  }
  .tickets .tickets-match .match-block__versus {
    font-size: 20px;
    margin: 0 20px;
  }
  .tickets .tickets-match__mobile {
    position: relative;
    z-index: 5;
    margin-top: 20px;
  }
  .cabinet-header__bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cabinet-header__menu {
    width: 100%;
  }
  .cabinet-header__menu ul {
    width: 100%;
  }
  .cabinet-header__menu ul li:last-child {
    border-right: 0;
  }
  .cabinet-header__menu ul li a {
    padding: 18px 0;
  }
  .cabinet-header__logo {
    left: 0;
    height: 70px;
    width: 40px;
    top: 30px;
  }
  .cabinet-header__logo::after {
    width: 88px;
    height: 138px;
  }
  .cabinet-header__top {
    background-color: var(--light-color);
  }
  .cabinet-header__top_desktop {
    display: none;
  }
  .cabinet-header__top_mobile {
    display: flex;
    width: 100%;
  }
  .cabinet-header__top .header__links {
    width: 100%;
  }
  .cabinet-header__logo_new {
    width: 100px;
    height: 80px;
    left: -20px;
    top: 10px;
  }
  .action__title {
    margin-bottom: 5px;
  }
  .action__title,
  .action h3 {
    font-size: 20px;
    max-width: 300px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .action h3 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
  }
  .action p {
    max-width: 250px;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 25px;
  }
  .action__message {
    font-size: 12px;
  }
  .next-matches .profile-block__title {
    font-size: 0.9em;
  }
  .next-matches .profile-block__name {
    font-size: 1.1em;
  }
  .next-matches .profile-block__bottom {
    padding-top: 20px;
  }
  .next-matches .profile-block__item p {
    font-size: 0.8em;
  }
  .next-matches .profile-block__item span {
    font-size: 0.7em;
  }
  .next-matches .profile-block__nickname,
  .next-matches .profile-block__phone {
    font-size: 0.8em;
  }
  .next-matches .profile-block__photo {
    height: 80px;
    width: 80px;
  }
  .next-matches .profile-block__setting img {
    height: 20px;
  }
  .cabinet-footer .footer__row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .cabinet-footer .footer__row:first-child {
    justify-content: center;
    display: flex;
  }
  .subscription__item {
    padding: 20px 25px 35px;
  }
  .subscription__item__info {
    width: 100%;
  }
  .subscription__item__title {
    font-size: 14px;
  }
  .subscription__item__body {
    gap: 20px;
  }
  .subscription__item__season {
    font-size: 18px;
  }
  .subscription__item__date {
    font-size: 12px;
  }
  .subscription__item__description p {
    font-size: 12px;
  }
  .subscription__item__place p {
    font-size: 12px;
  }
  .subscription__item__place p strong {
    font-size: 12px;
  }
  .subscription__item__time {
    font-size: 12px;
  }
  .subscription__item__qr {
    height: 150px;
    min-width: 150px;
  }
  .subscription__item-blocked .subscription__item__qr span {
    font-size: 18px;
  }
  .subscription__item-blocked .subscription__item__message p {
    font-size: 12px;
    line-height: 110%;
  }
  .subscription__ticket .subscription__item__team {
    font-size: 18px;
  }
  .subscription__ticket .subscription__item__date span,
  .subscription__ticket .subscription__item__time span {
    font-size: 12px;
  }
  .subscription__item-empty .subscription__item__btn {
    padding: 10px 30px;
    font-size: 14px;
  }
  .hero-stadium {
    height: 280px;
  }
  .hero-stadium .hero__inner::after {
    height: 405px;
    width: 264px;
    top: 330px;
    pointer-events: none;
    background-size: contain;
    right: -132px;
  }
  .hero-stadium .hero__inner::before {
    height: 405px;
    width: 264px;
    left: -132px;
    top: 50px;
  }
  .stadium-description__inner {
    gap: 25px;
  }
  .stadium-description__block .block__title {
    font-size: 18px;
  }
  .stadium-description__block .block__title svg {
    height: 18px;
  }
  .stadium-description__block .block__image,
  .stadium-description__block .block__video {
    height: 200px;
  }
  .stadium-description__block .block__image {
    margin-bottom: 25px;
  }
  .stadium-description__block .block__image .slick-next {
    width: 40px;
  }
  .stadium-description__block .block__image .slick-next::after {
    height: 20px;
    width: 20px;
  }
  .stadium-description__block .block__col p,
  .stadium-description__block .block__col li {
    font-size: 12px;
    line-height: 159%;
    letter-spacing: 0.06px;
    margin-bottom: 25px;
  }
  .stadium-description__block .block__col p:last-child,
  .stadium-description__block .block__col li:last-child {
    margin-bottom: 0;
  }
  .club-structure__head {
    margin-bottom: 25px;
  }
  .club-structure__title {
    font-size: 18px;
    gap: 15px;
  }
  .club-structure__title svg {
    height: 18px;
  }
  .club-structure__club-item .club-item__info p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .club-structure__club-item .club-item__info p:last-child {
    margin-bottom: 0;
  }
  .club-structure__club-item .club-item__name {
    font-size: 16px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .club-structure__club-item .club-item__link {
    margin-top: 10px;
    padding: 10px 45px;
    color: #231F20;
    font-size: 12px;
  }
  .club-structure__club-item:hover::before {
    content: "";
    position: absolute;
    right: -85px;
    top: 0;
    width: 170px;
    height: 100%;
  }
  .leader__head {
    margin-bottom: 25px;
  }
  .leader__title {
    gap: 15px;
    font-size: 18px;
  }
  .leader__title svg {
    height: 1.2em;
  }
  .single-team .tshort-card__image-number {
    font-size: 28px;
  }
  .single-team .tshort-card__image-name {
    font-size: 16px;
  }
  .leader__leader-block .leader-block__image {
    height: 280px;
  }
  .leader__leader-block .leader-block__name,
  .leader__leader-block .leader-block__role {
    padding: 15px;
    font-size: 14px;
  }
  .leader__leader-block .leader-block__role {
    font-size: 12px;
  }
  .stadium-page .club-partners__head {
    margin-bottom: 25px;
  }
  .stadium-page .club-partners .partners__title {
    font-size: 16px;
    padding: 10px 25px;
  }
  .stadium-page .club-partners .partners__items {
    row-gap: 150px;
  }
  .media__head {
    margin-bottom: 25px;
  }
  .media__title {
    font-size: 18px;
    gap: 15px;
  }
  .media__row {
    gap: 30px;
  }
  .media__col {
    justify-content: space-between;
  }
  .media__text-block {
    font-size: 12px;
    gap: 30px;
  }
  .media__text-block .text-block__title {
    font-size: 16px;
  }
  .media__contacts-card {
    padding: 40px 40px 25px 25px;
  }
  .media__contacts-card .contacts-card__name {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .media__contacts-card .contacts-card__body {
    gap: 20px;
  }
  .media__contacts-card .contacts-card__logo {
    width: 80px;
  }
  .media__contacts-card .contacts-card__logo::before {
    width: 220px;
    height: 250%;
    left: -70px;
    top: 50%;
  }
  .media__contacts-card .contacts-card__info {
    font-size: 12px;
    gap: 10px;
  }
  .media__contacts-card .contacts-card__body {
    align-items: center;
  }
  .media__contacts-card .contacts-card__top {
    display: none;
  }
  .media__contacts-card .contacts-card__btn {
    width: unset;
    font-size: 12px;
    margin-top: 10px;
  }
  .media__quotas-block .quotas-block__title {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .media__quotas-block .quotas-block__inner {
    padding: 25px;
  }
  .media__quotas-block .quotas-block__inner ul {
    gap: 10px;
  }
  .media__quotas-block .quotas-block__inner ul li {
    gap: 10px;
    font-size: 12px;
  }
  .media__list-block {
    margin-top: 30px;
  }
  .media__list-block li {
    font-size: 12px;
  }
  .liability__head {
    margin-bottom: 25px;
  }
  .liability__message {
    font-size: 14px;
    line-height: normal;
  }
  .liability__col p {
    font-size: 12px;
  }
  .liability__row {
    margin-bottom: 25px;
  }
  .liability__image {
    width: 72px;
    height: 82px;
  }
  .liability__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .city__body {
    gap: 30px;
  }
  .city__video {
    height: 240px;
  }
  .city__head {
    margin-bottom: 25px;
  }
  .city__title {
    font-size: 18px;
  }
  .city__col p {
    font-size: 12px;
    margin-bottom: 35px;
  }
  .hero-chronology {
    margin-bottom: 0;
  }
  .hero-chronology .hero__image {
    height: 320px;
  }
  .mission__title {
    font-size: 22px;
  }
  .mission__message__text {
    font-size: 18px;
    max-width: 500px;
  }
  .mission .mission-task__title {
    font-size: 22px;
  }
  .mission .mission-task__items {
    -moz-column-gap: 50px;
    column-gap: 50px;
  }
  .mission .mission-task__logo {
    height: 60px;
  }
  .mission .mission-task__name {
    font-size: 28px;
  }
  .mission .mission-task p {
    font-size: 14px;
  }
  .history__block-info {
    gap: 25px;
  }
  .history__block-info .block-info__text {
    font-size: 14px;
  }
  .history__block-fact {
    padding: 35px;
  }
  .history__block-fact .block-fact__title {
    font-size: 18px;
  }
  .history__block-fact .block-fact__btn {
    height: 30px;
    width: 30px;
  }
  .history__block-fact .block-fact__btn svg {
    width: 100%;
    height: 100%;
  }
  .history__block-fact .block-fact__item {
    font-size: 12px;
  }
  .history__block-fact .block-fact__items {
    margin-top: 25px;
    gap: 35px;
  }
  .history__image-large .image-large__title {
    font-size: 18px;
  }
  .history__image-large .image-large__text p {
    font-size: 14px;
  }
  .history__block-quote .block-quote__author {
    font-size: 18px;
    line-height: 130%;
    margin-bottom: 25px;
  }
  .history__block-quote .block-quote__author img {
    height: 55px;
    width: 55px;
  }
  .history__block-quote .block-quote__items {
    gap: 25px;
  }
  .history__block-quote .block-quote__text {
    gap: 25px;
    font-size: 14px;
  }
  .chronology {
    margin-bottom: 30px;
  }
  .chronology__row__inner {
    padding-top: 15px;
  }
  .chronology__item {
    font-size: 11px;
  }
  .chronology__item__icon {
    top: -30px;
    padding: 5px;
  }
  .chronology__item__icon img {
    height: 15px;
    width: 15px;
  }
  .chronology__row {
    padding-right: 85px;
    padding-left: 85px;
  }
  .chronology__row__inner {
    height: 163px;
  }
  .chronology__row::before {
    width: 84px;
    background-size: cover;
    height: 167px;
    background-image: url("/uploads/images/parts/el-right-tablet.svg");
  }
  .chronology__item {
    font-size: 9.5px;
    line-height: 130%;
  }
  .chronology__item p {
    margin-block-end: 0;
    margin-block-start: 0;
  }
  .chronology-additional .chronology__row::before {
    background-image: url("/uploads/images/parts/el-yellow-tablet.svg");
  }
  .achievement__name {
    font-size: 14px;
  }
  .achievement__years p {
    font-size: 12px;
  }
  .achievement__item__many .achievement__years p {
    font-size: 10px;
  }
  .achievement__record {
    position: relative;
  }
  .achievement__record svg {
    position: relative;
    z-index: 1;
  }
  .achievement__record::before {
    width: 150px;
    height: 150px;
    top: -65px;
    left: -65px;
  }
  .achievement__rang {
    width: 40px;
    height: 40px;
  }
  .cart__item-options {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 880px) {
  .develop h1 {
    font-size: 48px;
  }
  .main-page::before {
    display: block;
    height: 320px;
    background-size: 100%;
    width: 160px;
    left: -80px;
    top: -90px;
    z-index: 10;
  }
  .section-title {
    font-size: 20px;
    gap: 25px;
  }
  .page-navigation__items {
    justify-content: center;
    padding-left: 0;
  }
  .page-navigation__item {
    font-size: 12px;
    padding: 0 15px;
  }
  .header__container {
    padding: 0 50px 0 150px;
  }
  .match-block:not(.match-block-main) .match-block__about {
    padding: 0;
  }
  .match-block__logo {
    max-width: 65px;
  }
  .match-block:not(.match-block-main) .match-block__name {
    font-size: 11px;
  }
  .match-block:not(.match-block-main) .match-block__city {
    font-size: 9px;
  }
  .header__title {
    font-size: 18px;
  }
  .header__links {
    gap: 30px;
  }
  .header__links .header__socials {
    display: none;
  }
  .header .translate {
    gap: 6px;
    font-size: 12px;
  }
  .header .translate .translate__icon {
    height: 15px;
  }
  .header .header__links__item-icon {
    height: 20px;
  }
  .news-block__mark {
    font-size: 12px;
  }
  .news-block__short {
    font-size: 14px;
    max-width: 260px;
  }
  .news-block__date p {
    font-size: 12px;
  }
  .tabs__item {
    font-size: 12px;
  }
  .site-form {
    width: 360px;
  }
  .site-form__head {
    gap: 10px;
  }
  .site-form__logo {
    height: 86px;
    width: 49px;
  }
  .site-form__logo img {
    height: 100%;
  }
  .site-form__title {
    font-size: 16px;
  }
  .site-form__subtitle {
    font-size: 14px;
  }
  .site-form__agreement {
    font-size: 10px;
  }
  .site-form__agreement a {
    font-size: 10px;
  }
  .site-form__message {
    font-size: 10px;
  }
  .site-form__social-auth .social-auth__title {
    font-size: 12px;
  }
  .site-form__social-auth .social-auth__item {
    height: 35px;
    width: 35px;
  }
  .site-form__social-auth .social-auth__item svg {
    height: 100%;
    width: 100%;
  }
  .site-form__body form a {
    font-size: 12px;
  }
  .site-form__body input[type=submit] {
    font-size: 14px;
  }
  .site-form__body input[type=submit]:hover {
    background-color: var(--dark-color);
    color: var(--accent-color);
  }
  .site-form__actions a {
    font-size: 12px;
  }
  .site-form__field label {
    font-size: 12px;
    height: 1em;
  }
  .site-form__field label svg {
    max-height: 20px;
  }
  .site-form__field-checkbox label {
    font-size: 12px;
  }
  .accordion .accordion__item .accordion__item-trigger {
    padding: 20px 25px;
  }
  .accordion .accordion__item .accordion__item-trigger .trigger__img img {
    height: 100%;
  }
  .accordion .accordion__item .accordion__item-trigger .trigger__text {
    font-size: 16px;
  }
  .accordion .accordion__item .accordion__item-trigger .trigger__img {
    height: 1.5em;
  }
  .accordion .accordion__item .accordion__item-trigger .trigger__img svg {
    height: 100%;
  }
  .accordion .accordion__item .accordion__item-content .content__text {
    font-size: 12px;
    line-height: 160%;
    letter-spacing: 0.06px;
  }
  .preview .swiper-pagination {
    padding-bottom: 15px;
    padding-left: 45px;
  }
  .preview__wrapper::before {
    display: none;
  }
  .preview__inner::before {
    right: -85px;
  }
  .preview__item__wrapper {
    padding: 60px 45px;
  }
  .preview__item__mark {
    font-size: 12px;
  }
  .preview__item__short {
    font-size: 16px;
    max-width: 500px;
  }
  .partners {
    padding: 45px 0;
  }
  .partners__title {
    white-space: nowrap;
  }
  .partners__items {
    justify-content: space-between;
  }
  .partners__item {
    max-width: 220px;
    display: flex;
    justify-content: center;
  }
  .partners__item img {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .hero-news .hero__image {
    height: 280px;
  }
  .hero-news .hero__inner::after {
    height: 320px;
  }
  .hero-news .hero__inner::before {
    height: 320px;
    top: 115px;
  }
  .single-news__arrow {
    display: none !important;
  }
  .single-news__wrapper {
    max-width: 550px;
  }
  .single-news__body p,
  .single-news__body strong {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .single-news__quote {
    max-width: 550px;
  }
  .single-news__quote__border {
    width: 750px;
    height: 190px;
  }
  .single-news .btn-share {
    height: 18px;
    width: 18px;
  }
  .single-news .btn-share i {
    font-size: 13px;
  }
  .single-news .btn-facebook i {
    font-size: 14px;
  }
  .single-news .btn-vk {
    border-radius: 5px;
  }
  .single-news .btn-vk i {
    font-size: 12px;
  }
  .team {
    padding-bottom: 50px;
  }
  .team__title {
    font-size: 20px;
  }
  .team__head {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .team__head-base {
    margin-bottom: 10px;
  }
  .team .team-tabs__content__item {
    gap: 40px;
  }
  .team .team-block__items {
    gap: 20px;
  }
  .team .player__info p,
  .team .player__info span {
    font-size: 10px;
  }
  .team .player__over::before,
  .team .player {
    height: 250px;
  }
  .team .player__over {
    top: -10px;
    left: -10px;
    padding: 10px;
    right: -10px;
  }
  .team .player__additional-mark {
    width: 35px;
    height: 35px;
  }
  .team .player__mark {
    width: 35px;
    height: 50px;
    font-size: 16px;
  }
  .team .player__image {
    display: flex;
    justify-content: center;
  }
  .modal__wrapper {
    align-items: unset;
  }
  .modal__wrapper .modal {
    overflow: scroll;
  }
  .modal__wrapper .modal__close {
    height: 30px;
    width: 30px;
    top: 10px;
  }
  .modal__wrapper .modal__title {
    font-size: 20px;
  }
  .modal__wrapper .modal__back {
    height: 30px;
    width: 30px;
  }
  .modal__wrapper .modal__back svg {
    width: 70%;
    height: 70%;
  }
  .modal__wrapper .modal__inner {
    gap: 30px;
    padding: 25px 30px;
    justify-content: space-between;
  }
  .modal__wrapper .modal .player-card__image {
    display: flex;
    justify-content: center;
  }
  .modal__wrapper .modal .player-card__image img {
    width: 70%;
  }
  .modal__wrapper .modal .player-card__mark {
    width: 35px;
    height: 55px;
    font-size: 16px;
  }
  .modal__wrapper .modal .player-card__inner {
    height: 255px;
    padding: 7px;
  }
  .modal__wrapper .modal .player-modal__info p,
  .modal__wrapper .modal .player-modal__info span {
    font-size: 12px;
  }
  .modal__wrapper .modal .player__name {
    font-size: 26px;
  }
  .modal__wrapper .modal .player__role {
    font-size: 14px;
  }
  .modal__wrapper .modal .player__team {
    height: 60px;
    width: 30px;
  }
  .modal__wrapper .modal .player__career {
    padding-top: 30px;
  }
  .modal__wrapper .modal .player__career__title {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .modal__wrapper .modal .player__career__col p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .single-team__title {
    font-size: 20px;
  }
  .single-team__back {
    height: 30px;
    width: 30px;
  }
  .single-team__back svg {
    width: 70%;
    height: 70%;
  }
  .single-team__inner {
    gap: 30px;
    padding: 25px 30px;
    justify-content: space-between;
  }
  .single-team .player-card__image {
    display: flex;
    justify-content: center;
  }
  .single-team .player-card__image img {
    height: 240px;
  }
  .single-team .player-card__mark {
    width: 35px;
    height: 55px;
    font-size: 16px;
  }
  .single-team .player-card__inner {
    width: 185px;
    height: 255px;
    padding: 7px;
  }
  .single-team .player__inst {
    font-size: 14px;
    gap: 5px;
  }
  .single-team .player__inst svg {
    height: 10%;
    width: 10%;
  }
  .single-team .player__counter {
    padding: 45px 35px;
  }
  .single-team .player__counter__title {
    font-size: 10px;
    margin-bottom: 5px;
  }
  .single-team .player__counter__title strong {
    font-size: 14px;
  }
  .single-team .player__counter__repeat {
    font-size: 16px;
    height: 35px;
    width: 35px;
    bottom: 40px;
  }
  .single-team .player__counter__season {
    font-size: 10px;
  }
  .single-team .player__counter__season span {
    font-size: 12px;
  }
  .single-team .player__counter__value {
    font-size: 40px;
  }
  .single-team .player__name {
    font-size: 26px;
  }
  .single-team .player__role {
    font-size: 14px;
  }
  .single-team .player__team {
    height: 60px;
    width: 30px;
  }
  .single-team .player__info-block p,
  .single-team .player__info-block span {
    font-size: 12px;
  }
  .single-team .player__achivements__title {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .single-team .player__achivements ul li {
    font-size: 12px;
  }
  .single-team .player__career {
    padding-top: 30px;
  }
  .single-team .player__career__title {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .single-team .player__career__col p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .single-team .tshort-card__inner {
    padding: 10px 15px;
  }
  .single-team .tshort-card__image {
    height: 140px;
    margin-bottom: 5px;
  }
  .single-team .tshort-card__title {
    font-size: 10px;
    padding: 0 5px;
    margin-bottom: 5px;
  }
  .single-team .tshort-card__basket {
    font-size: 10px;
    margin-bottom: 5px;
    padding: 7px 0;
  }
  .single-team .tshort-card__more {
    font-size: 10px;
  }
  .single-team .tshort-card__price {
    padding: 0 5px;
    font-size: 10px;
  }
  .team-about {
    padding: 0 25px 50px;
  }
  .team-about__inner {
    padding: 40px 25px;
  }
  .team-about__image {
    height: 260px;
  }
  .team-about__comp {
    gap: 30px;
  }
  .team-about__comp__item {
    font-size: 14px;
  }
  .team-about__comp__item ul li {
    font-size: 14px;
  }
  .tournament .table__title {
    gap: 15px;
    font-size: 16px;
  }
  .academy-page {
    scroll-behavior: smooth;
  }
  .academy-page .hero__inner::after {
    right: -235px;
  }
  .academy-page .hero__image {
    height: 280px;
  }
  .academy-about__rules .academy-about__col {
    margin-right: 20px;
  }
  .academy-about__rules ul {
    gap: 30px;
  }
  .academy-about__rules ul li {
    font-size: 12px;
  }
  .academy-about__goals__text {
    font-size: 14px;
    max-width: 300px;
  }
  .academy-about__goals::before {
    height: 140px;
    right: 40px;
    width: 120%;
  }
  .academy-about__advantages {
    gap: 35px;
  }
  .academy-about__advantage {
    width: calc(33.3333333333% - 50px);
  }
  .academy-about__advantage__image {
    height: 50px;
    width: 50px;
  }
  .academy-about__advantage__value {
    font-size: 24px;
  }
  .academy-about__advantage__text {
    font-size: 12px;
  }
  .academy-players__preview__image {
    margin-left: 0;
    max-width: 280px;
  }
  .academy-players__info {
    row-gap: 20px;
  }
  .academy-players__info .academy-players__rule {
    margin-bottom: 0;
  }
  .academy-players__preview__image img {
    max-width: 160%;
  }
  .academy-championship__image iframe {
    max-height: 250px;
  }
  .academy-players__info .academy-players__rule span,
  .academy-players__info .academy-players__rule a,
  .academy-players__info .academy-players__rule span strong {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .academy-team__photo {
    height: 280px;
    padding: 35px;
  }
  .academy-team__photo a {
    font-size: 12px;
  }
  .coach-block__more {
    font-size: 12px;
  }
  .coach-block__image {
    height: 190px;
  }
  .coach-block__name {
    font-size: 14px;
  }
  .coach-block p {
    font-size: 12px;
  }
  .academy-championship .container {
    gap: 25px;
  }
  .academy-championship__btn {
    margin-top: 30px;
    font-size: 12px;
  }
  .academy-championship__col strong {
    font-size: 12px;
  }
  .academy-championship__col p {
    font-size: 12px;
    margin-bottom: 35px;
  }
  .academy-championship__col p:last-child {
    margin-bottom: 0;
  }
  .academy-championship__inner {
    margin-bottom: 30px;
  }
  .academy-championship__preview {
    height: 280px;
  }
  .academy-championship__preview img {
    height: 100%;
  }
  .academy-players-page .players .players-block__items {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
  }
  .academy-players-page .players .players-block__title {
    font-size: 20px;
  }
  .academy-players-page .players .player {
    height: 180px;
  }
  .academy-players-page .players .player__more-btn {
    font-size: 12px;
  }
  .academy-players-page .players .player__over::before {
    height: 190px;
  }
  .academy-players-page .players .player__info p,
  .academy-players-page .players .player__inner p,
  .academy-players-page .players .player__info span {
    font-size: 12px;
  }
  .academy-players-page .players .player__club {
    font-size: 12px;
  }
  .academy-players-page .players .player__over {
    left: -10px;
    right: -10px;
    top: -10px;
    min-height: 200px;
    padding: 20px 10px;
  }
  .academy-players-page .players .player__over::before {
    height: 160px;
  }
  .academy-players-page .players .player__image {
    height: 130px;
  }
  .academy-players-page .players .player__name {
    font-size: 14px;
  }
  .academy-players-page .players .player__lastname {
    font-size: 16px;
  }
  .search-page .search__items {
    margin-bottom: 30px;
  }
  .search-page .search form {
    display: flex;
    align-items: center;
  }
  .search-page .search input[type=submit] {
    padding: 10px 35px;
  }
  .search-page .search .pagination__item {
    font-size: 14px;
  }
  .search-page .search-block__title {
    font-size: 14px;
  }
  .search-page .search-block__text strong,
  .search-page .search-block__text {
    font-size: 12px;
  }
  .shop-page .shop-preview .swiper-pagination-bullet {
    width: 21.5px;
    height: 9px;
  }
  .shop-page .shop-preview .swiper-pagination-bullet-active {
    width: 42px;
  }
  .shop-page .shop-preview__inner {
    padding: 10px;
  }
  .shop-page .shop-preview__inner::before {
    background-size: 90%;
    left: -200px;
  }
  .shop-page .shop-preview .product-item__image {
    width: 16em;
  }
  .shop-page .shop-preview .product-item__divider svg {
    height: 120px;
    width: 40px;
  }
  .shop-page .shop-preview .product-item__info {
    font-size: 1.8em;
    gap: 15px;
    line-height: normal;
  }
  .shop-page .shop-preview .product-item__info span {
    font-size: 1.65em;
  }
  .shop-page .shop-preview .product-item__btn,
  .shop-page .shop-preview .product-item__personal {
    font-size: 0.9em;
  }
  .shop-page .shop-preview .product-item__btn {
    padding: 10px 20px;
  }
  .shop-page .shop-preview .product-item__mark span {
    font-size: 2.8em;
  }
  .product__inner {
    grid-template-columns: 260px 1fr;
    grid-template-rows: 315px 1fr;
  }
  .product .product-info__additional,
  .product .product-info__description {
    max-width: 47%;
  }
  .product .product-info__description a {
    font-size: 12px;
  }
  .product .product-info__actions {
    margin-bottom: 20px;
  }
  .product .product-info__description-title,
  .product .product-info__pay-title,
  .product .product-info__delivery-title,
  .product .product-info__additional-title {
    margin-bottom: 15px;
  }
  .product .product-info__price {
    font-size: 20px;
  }
  .product .product-info__add-btn {
    padding: 8px 30px;
    font-size: 10px;
  }
  .product .product-info__article {
    font-size: 10px;
  }
  .product .product-info__delivery,
  .product .product-info__pay {
    max-width: 47%;
  }
  .product .product-info__delivery p,
  .product .product-info__pay p {
    font-size: 10px;
  }
  .product .product-info__filter {
    padding: 5px 10px;
  }
  .product .product-info__filter span {
    font-size: 12px;
  }
  .product .product-info__filter ul li {
    font-size: 12px;
  }
  .product .product-info__title {
    font-size: 20px;
  }
  .product .product-info span,
  .product .product-info p {
    font-size: 10px;
    line-height: normal;
  }
  .product .product-gallery__small {
    width: calc(100% - 25px);
  }
  .product .product-gallery__small .swiper-mini-button-next {
    right: -40px;
  }
  .product .product-gallery__small .swiper-mini-button-next svg {
    height: 25px;
    width: 25px;
  }
  .product .product-gallery__small .product-gallery__image {
    height: 70px;
  }
  .tickets__push-btn {
    font-size: 12px;
    padding: 5px 15px;
    white-space: nowrap;
  }
  .tickets__scheme svg {
    height: 650px;
  }
  .cabinet-header__menu ul li a {
    font-size: 0.8em;
  }
  .leader__leader-block .leader-block__image {
    height: 240px;
  }
  .mission__logo {
    height: 105px;
  }
  .mission .mission-task__items {
    -moz-column-gap: 25px;
    column-gap: 25px;
    max-width: 600px;
    margin: 0 auto;
  }
  .mission .mission-task__title {
    display: none;
  }
  .mission .mission-task__logo {
    max-height: 40px;
  }
  .mission .mission-task__logo img {
    height: 100%;
  }
  .mission .mission-task__name {
    font-size: 24px;
  }
  .mission .mission-task p {
    font-size: 12px;
  }
  .mission__message .container {
    gap: 30px;
  }
  .mission__message__text {
    font-size: 14px;
    max-width: 500px;
  }
  .history__block-info .block-info__text {
    gap: 25px;
    font-size: 12px;
  }
  .history__block-info .block-info__image p {
    font-size: 12px;
  }
  .history__block-fact {
    padding: 35px;
  }
  .history__block-fact .block-fact__title {
    font-size: 16px;
  }
  .history__block-fact .block-fact__item {
    font-size: 10px;
  }
  .history__image-large {
    gap: 25px;
  }
  .history__image-large .image-large__title {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .history__image-large .image-large__text p {
    margin-bottom: 25px;
    font-size: 12px;
  }
  .history__image-large .image-large__image p {
    font-size: 12px;
  }
  .history__block-quote .block-quote__author {
    font-size: 14px;
  }
  .history__block-quote .block-quote__author img {
    height: 45px;
    width: 45px;
  }
  .history__block-quote .block-quote__text {
    font-size: 12px;
  }
  .achievement__head {
    margin-bottom: 25px;
  }
  .achievement__name {
    font-size: 12px;
    margin-bottom: 0;
  }
  .achievement__record svg {
    display: none;
  }
  .achievement__record::before {
    display: none;
  }
  .achievement__item__many .achievement__rang {
    position: relative;
  }
  .achievement__item__many .achievement__rang::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    z-index: -1;
    background-image: url("/uploads/images/parts/Vector.svg");
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;
  }
  .achievement__rang {
    width: 35px;
    flex-shrink: 0;
    height: 35px;
  }
  .date-filter {
    padding: 5px 10px;
    font-size: 12px;
  }
  .date-filter__menu {
    top: 30px;
  }
  .date-filter__menu li {
    padding: 10px;
  }
  .tournament__table .table-cell {
    font-size: 14px;
  }
  .order-page .order-section__body {
    flex-direction: column-reverse;
  }
  .order-page .order-section__info {
    margin-top: 30px;
    width: 100%;
  }
  .order-page .order-tabs__body,
  .order-page .order-tabs__head,
  .order-page .order-form__base {
    max-width: 100%;
  }
  .order-page .order-form__wrapper {
    margin: 0 auto;
  }
  .order-page .shopcart__result,
  .order-page .shopcart__total {
    padding: 20px 0;
  }
  .single-team .tshort-card__image-number {
    font-size: 22px;
    transform: translateY(-10px);
  }
  .single-team .tshort-card__image-name {
    transform: translateY(-35px);
    font-size: 12px;
  }
}
@media screen and (max-width: 860px) {
  .chronology {
    margin-bottom: 0;
  }
  .chronology__head {
    padding: 25px 0;
    margin-bottom: 0;
  }
  .chronology__body {
    padding-top: 30px;
    padding-bottom: 30px;
    overflow-x: scroll;
  }
  .chronology__body::-webkit-scrollbar {
    display: none;
  }
  .chronology__items {
    min-width: 760px;
  }
}
@media screen and (max-width: 840px) {
  .academy-branch .company__near {
    display: none;
  }
  .academy-branch .company__address {
    gap: 5px;
  }
}
@media screen and (max-width: 830px) {
  .tickets__message {
    position: relative;
    z-index: 5;
    padding: 20px 0;
  }
  .tickets__message {
    text-align: center;
  }
  .tickets .tickets-match {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
  }
  .tickets .tickets-match__info {
    width: 100%;
    transform: none;
    justify-content: space-around;
    grid-area: 1/1/2/3;
  }
  .tickets .tickets-match__date {
    text-align: right;
  }
}
@media screen and (max-width: 820px) {
  .shop-main__catalog {
    width: 100%;
  }
  .shop-main .catalog-filter__items {
    display: none;
  }
  .shop-main .catalog-burger {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 20px;
  }
  .shop-main .catalog-burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000;
  }
  .shop-main__sidebar-filter {
    display: none;
  }
  .shop-main .catalog-item {
    width: calc(33.3333333333% - 17px);
    height: 330px;
  }
  .shop-main .catalog-item__image {
    height: 230px;
  }
  .cabinet-header__top-inner {
    padding-left: 6em;
  }
  .cabinet-header__bottom .container {
    padding-left: 9em;
  }
  .cabinet-header__title {
    display: block;
    padding: 15px 0;
  }
  .cabinet-header__logo {
    width: unset;
    height: 130px;
    top: 5px;
  }
  .cabinet-header__logo_new {
    width: 100px;
    height: 80px;
    left: -20px;
    top: 40px;
  }
  .cabinet-header__logo::after {
    width: 95px;
    height: 140px;
    transform: translateY(-43%);
  }
  .cabinet-header__menu {
    display: none;
  }
  .next-matches__body {
    flex-wrap: wrap;
    justify-content: center;
  }
  .next-matches .next-matches__purchases {
    width: calc(40% - 25px);
  }
  .next-matches .next-matches-item,
  .next-matches .profile-block {
    min-width: 60%;
  }
  .academy-players-page .players .players-block__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 780px) {
  .cart-page .cart__head a {
    font-size: 12px;
  }
  .section-404 {
    padding: 50px 0;
  }
  .section-404 h1 {
    font-size: 68px;
  }
  .section-404 .section-message {
    font-size: 14px;
  }
  .section-404 a {
    font-size: 12px;
    padding: 10px 25px;
  }
  .team__head, .tournament__head, .academy-player__head, .main-news-page .news__head {
    position: relative;
    z-index: 5;
  }
  .leader__leader-block .leader-block__image img {
    max-height: 200px;
  }
  .academy-player__head {
    margin-left: 0;
  }
  .academy-players__info {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 10px;
  }
  .academy-branch-company .company__inner {
    padding-right: 30px;
  }
  .academy-branch .company__address {
    flex-direction: column;
    align-items: flex-start;
  }
  .academy-branch .company__address__item {
    max-width: 300px;
    display: flex;
    align-items: flex-start;
  }
  .academy-players__info .academy-players__rule {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .academy-players__info .academy-players__rule span {
    margin-bottom: 20px;
  }
  .academy-players__info .academy-players__rule span span {
    margin-bottom: 0;
  }
  .academy-players__info .academy-players__rule:last-child {
    grid-column: unset;
  }
  .parts-line-2::before {
    display: none;
  }
  .parts-line-2::before,
  .parts-line-2::after {
    z-index: -1;
  }
  .page-navigation__item {
    font-size: 12px;
  }
  .footer__bot-inner {
    padding: 0 30px;
  }
  .footer__bot-inner .footer__row:nth-child(1) {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  .footer__bot-inner .footer__row:nth-child(2) {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .footer__top {
    padding: 30px 0;
  }
  .footer__menu__item .footer__menu__title {
    margin-bottom: 10px;
  }
  .footer__menu ul {
    gap: 15px;
  }
  .footer__menu-inner {
    padding: 0 30px;
  }
  .news__items {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .news__items .news__item {
    grid-area: unset;
  }
  .news__items .news__item:nth-child(2) {
    grid-area: unset;
  }
  .news__items .news__item:nth-child(3) {
    grid-area: unset;
  }
  .news__items .news__item:nth-child(4) {
    grid-area: unset;
  }
  .news__items .news__item:nth-child(5) {
    grid-area: unset;
  }
  .shop__head {
    margin-bottom: 15px;
  }
  .partners {
    padding: 45px 0;
  }
  .partners__items {
    gap: 30px;
    row-gap: 50px;
    justify-content: center;
  }
  .app__inner {
    padding: 35px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .app__title {
    font-size: 16px;
  }
  .app__descr {
    font-size: 12px;
    max-width: 40%;
  }
  .single-news__image-block p {
    font-size: 12px;
  }
  .single-news__socials a {
    height: 20px;
  }
  .single-news__socials a img {
    height: 100%;
  }
  .single-news__socials p {
    transform: rotate(-90deg) translateX(-30px) translateY(20px);
    font-size: 10px;
  }
  .single-news__date {
    font-size: 12px;
    top: 0;
    bottom: unset;
  }
  .single-news__content {
    padding-right: 10px;
  }
  .single-news__socials {
    right: -15px;
  }
  .single-news__mark {
    font-size: 12px;
    padding: 5px 10px;
  }
  .single-news__title {
    padding-top: 50px;
    font-size: 20px;
    max-width: 90%;
  }
  .single-news .container-mini {
    max-width: 100%;
  }
  .single-news__quote__border {
    width: 125%;
  }
  .modal__wrapper .modal__inner {
    padding: 25px;
    gap: 20px;
  }
  .modal__wrapper .modal__block {
    padding: 0;
  }
  .modal__wrapper .modal .player-card__inner {
    height: 240px;
  }
  .modal__wrapper .modal .player__info {
    gap: 20px;
    padding: 15px 20px;
  }
  .modal__wrapper .modal .player__career__info {
    gap: 20px;
    flex-direction: column;
  }
  .single-team__inner {
    padding: 25px;
    gap: 20px;
  }
  .single-team__block {
    padding: 0;
  }
  .single-team .player-card__inner {
    width: 160px;
    height: 240px;
  }
  .single-team .player__counter {
    padding: 30px;
  }
  .single-team .player__counter__repeat {
    bottom: 25px;
    right: -5px;
  }
  .single-team .player__info {
    gap: 20px;
    padding: 15px 20px;
  }
  .single-team .player__career__info {
    flex-direction: column;
  }
  .match__items {
    justify-content: center;
  }
  .match__item {
    min-width: 450px;
  }
  .academy-about__goals__text {
    font-size: 14px;
    max-width: 300px;
  }
  .academy-about__goals::before {
    background-image: url("/uploads/images/parts/about-back-2.png");
    height: 140px;
    right: 15px;
    width: 120%;
  }
  .academy-news .container {
    padding: 0 20px;
  }
  .academy-news__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .academy-news__item:nth-child(1) {
    grid-area: unset;
  }
  .academy-news__item:nth-child(2) {
    grid-area: unset;
  }
  .academy-news__item:nth-child(3) {
    grid-area: unset;
  }
  .academy-news__item:nth-child(4) {
    grid-area: unset;
  }
  .academy-players .container {
    padding: 0 20px;
  }
  .academy-players__info .academy-players__row {
    flex-direction: column;
    gap: 0;
  }
  .academy-players__info .academy-players__col {
    margin-bottom: 30px;
    max-width: unset;
  }
  .academy-players__info .academy-players__col span {
    margin-bottom: 0;
  }
  .academy-players__info .academy-players__col a {
    width: 90%;
    text-align: center;
    margin-top: 20px;
  }
  .academy-players__info .academy-players__row a {
    width: 90%;
    text-align: center;
  }
  .academy-players .container-big {
    overflow: hidden;
  }
  .academy-players__preview .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .academy-players__preview__title {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .academy-players__preview__address {
    margin-bottom: 20px;
    font-size: 10px;
  }
  .academy-players__preview__message {
    margin-bottom: 20px;
    font-size: 12px;
  }
  .academy-players__preview__btn {
    font-size: 12px;
    padding: 7px 20px;
  }
  .academy-players__preview__image {
    max-width: 230px;
    margin-left: -70px;
  }
  .academy-players__preview__image img {
    height: 195px;
  }
  .academy-players__preview::before {
    width: 160%;
    left: unset;
    right: 0;
    height: 100%;
    background-size: cover;
    background-image: url("/uploads/images/parts/about-back-3.svg");
  }
  .academy-team .tabs {
    margin-left: 0;
  }
  .academy-championship .non-mobile {
    display: none;
  }
  .academy-championship__col {
    display: flex;
    flex-direction: column;
  }
  .academy-championship__btn {
    margin: 30px auto 0;
  }
  .academy-championship__row {
    flex-direction: column;
    gap: 30px;
  }
  .academy-championship__row_mobile {
    display: flex;
  }
  .academy-championship__row:nth-child(1) {
    order: 0;
  }
  .academy-championship__row:nth-child(3) {
    order: 1;
  }
  .academy-championship__row:nth-child(2) {
    order: 1;
  }
  .academy-championship__col {
    width: 100%;
  }
  .academy-players-page .players .players-block__items {
    gap: 15px;
    grid-template-columns: repeat(3, 1fr);
  }
  .academy-players-page .players .player__image {
    height: 130px;
  }
  .academy-player__inner {
    padding: 25px;
    flex-direction: column;
  }
  /* TODO удалить после того как карточка товара будет готова*/
  .academy-player .tshort-card {
    display: none;
  }
  .academy-player__body::before {
    display: none;
  }
  .academy-player .player__name {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .academy-player .player__role {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .academy-player .player__info {
    min-width: unset;
    padding-top: 15px;
    padding-bottom: 0;
  }
  .academy-player .player__info p,
  .academy-player .player__info span {
    font-size: 12px;
  }
  .academy-player .tshort-card__image {
    height: 300px;
  }
  .academy-player .player-card {
    border: none;
    display: flex;
    justify-content: center;
  }
  .academy-player .player-card__inner {
    border-radius: 10px;
    border: 5px solid var(--light-color);
    height: 380px;
    width: 100%;
  }
  .academy-player .player-card__inner::before {
    height: 1200px;
    width: 100%;
  }
  .academy-player .player-card__image img {
    width: 50%;
  }
  .shop-page .shop-preview__inner::before {
    background-size: 85%;
    left: -150px;
  }
  .shop-page .shop-preview .shop-button-next,
  .shop-page .shop-preview .shop-button-prev {
    height: 30px;
    width: 30px;
  }
  .shop-page .shop-preview .shop-button-prev {
    left: -5px;
  }
  .shop-page .shop-preview .shop-button-next {
    right: -5px;
  }
  .shop-page .shop-preview .swiper-pagination-bullet {
    width: 17.5px;
    height: 8px;
  }
  .shop-page .shop-preview .swiper-pagination-bullet-active {
    width: 35px;
  }
  .shop-page .shop-preview .shop-pagination {
    gap: 15px;
    bottom: 10px;
  }
  .shop-page .shop-preview .product-item__image {
    width: 14em;
  }
  .shop-page .shop-preview .product-item__info {
    font-size: 1.6em;
    gap: 10px;
  }
  .shop-page .shop-preview .product-item__info span {
    font-size: 1.6em;
  }
  .shop-page .shop-preview .product-item__mark span {
    font-size: 2.8em;
  }
  .shop-page .shop-preview .product-item__btn,
  .shop-page .shop-preview .product-item__personal {
    font-size: 0.8em;
  }
  .shop-page .shop-preview .product-item__more {
    margin-left: 0;
  }
  .shop-page .shop-preview .product-item__personal {
    max-width: 50%;
  }
  .tickets__scheme svg {
    height: 550px;
  }
  .city__body {
    gap: 25px;
    flex-direction: column;
    position: relative;
    padding-top: 320px;
  }
  .city__video {
    height: 300px;
    margin-bottom: 0;
    order: -1;
    position: absolute;
    top: 0;
  }
  .city__head {
    margin-bottom: 25px;
  }
  .city__col p {
    margin-bottom: 25px;
  }
  .mission__head {
    padding: 25px 0;
  }
  .mission__logo {
    display: none;
  }
  .mission .mission-task__items {
    max-width: 100%;
  }
  .history__block-fact .block-fact__body ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .tournament {
    overflow: hidden;
  }
  .tournament__table .table-row .table-cell {
    font-size: 13px;
  }
  .tournament__table .table-row {
    padding: 0 10px 0 20px;
  }
  .tournament__table .table-row .table-cell:nth-child(2) {
    max-width: 125px;
  }
  .cart__item .cart__item-title {
    font-size: 14px;
  }
  .cart__item-remove {
    margin-right: 10px;
  }
  .cart__item-info {
    margin: 10px;
    width: 150px;
  }
  .cart__item-option__item p:first-child {
    font-size: 14px;
  }
  .cart__item-option__item .input-group {
    min-width: 100px;
  }
  .cart__item .input-group input {
    font-size: 14px;
  }
  .cart__item .cart__item-price {
    font-size: 18px;
  }
  .cart__total-price {
    font-size: 20px;
  }
  .cart__total-price span {
    font-size: 22px;
  }
  .cart__send-order-btn {
    font-size: 14px;
  }
  .cart__item-info p {
    font-size: 12px;
  }
}
@media screen and (max-width: 780px) {
  .product__inner {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 20px;
    column-gap: 20px;
    align-items: unset;
    justify-content: center;
  }
  .product .product-info {
    width: 100%;
  }
  .product .product-info__main {
    width: 100%;
    gap: 20px;
  }
  .product .product-info__actions {
    gap: 15px;
    justify-content: unset;
    margin-bottom: 35px;
  }
  .product .product-info__description,
  .product .product-info__additional {
    flex: 1;
  }
  .product .product-info__bottom {
    gap: 20px;
  }
  .product .product-info__pay {
    max-width: 100%;
  }
  .product .product-info__delivery {
    max-width: 260px;
  }
  .product .product-gallery__back {
    position: absolute;
    top: 10px;
    z-index: 1;
    left: 10px;
  }
  .product .product-gallery__big {
    display: none;
    width: 315px;
    height: 355px;
  }
  .product .product-gallery__big img {
    object-fit: contain;
  }
  .product .product-gallery__slider {
    padding-bottom: 30px;
    height: calc(100% + 50px);
  }
  .product .product-gallery__pagination {
    display: flex;
    justify-content: center;
  }
  .product .product-gallery__pagination .swiper-pagination-bullet {
    width: 15px;
    border-radius: 5px;
    opacity: 1;
    background-color: var(--dark-color);
  }
  .product .product-gallery__pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background-color: var(--accent-color);
  }
  .product .product-gallery__big-mobile {
    display: block;
  }
  .product .product-gallery__image {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product .product-gallery__small {
    display: none;
  }
  .user-order__price {
    position: static;
    margin-left: auto;
  }
}
@media screen and (max-width: 750px) {
  .subscription__items {
    gap: 20px;
  }
  .subscription__item {
    width: 100%;
  }
}
@media screen and (max-width: 720px) {
  .history__head {
    margin-bottom: 25px;
  }
  .history__block-info {
    flex-direction: column;
  }
  .history__block-info .block-info__text {
    max-width: 100%;
  }
  .history__block-info .block-info__image .block-info__text {
    margin-top: 20px;
    padding-left: 0;
  }
  .history__block-info_text-only .block-info__text {
    width: 100%;
  }
  .history__block-fact {
    margin-bottom: 50px;
    padding: 25px 20px;
  }
  .history__block-fact .block-fact__items {
    gap: 20px;
    flex-direction: column;
  }
  .history__block-fact .block-fact__col {
    gap: 20px;
  }
  .history__image-large {
    gap: 25px;
    flex-direction: column;
  }
  .history__image-large .image-large__title {
    margin-bottom: 20px;
  }
  .history__image-large .image-large__text {
    max-width: 100%;
  }
  .history__image-large .image-large__text p {
    margin-bottom: 20px;
  }
  .history__block-quote {
    margin-bottom: 50px;
  }
  .history__block-quote .block-quote__items {
    flex-direction: column;
  }
  .achievement__items {
    grid-template-columns: 1fr;
  }
  .added-product__body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .added-product__order-btn {
    margin-top: auto;
  }
  .added-product__block-info {
    width: 100%;
    align-items: center;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
  }
}
@media screen and (max-width: 680px) {
  .academy-about__advantages {
    max-width: 580px;
    justify-content: unset;
  }
  .academy-about__advantage {
    min-width: 150px;
  }
  .shop-page .shop-preview__inner {
    padding: 30px 10px;
  }
  .shop-page .shop-preview__inner::before {
    background-size: 80%;
    left: -80px;
  }
  .shop-page .shop-preview .shop-pagination {
    gap: 15px;
    bottom: 20px;
  }
  .shop-page .shop-preview .product-item__image {
    width: 12em;
  }
  .shop-page .shop-preview .product-item__divider {
    height: 80px;
    width: 60px;
    background-size: cover;
    background-image: url("/uploads/images/parts/divider.svg");
  }
  .shop-page .shop-preview .product-item__divider svg {
    display: none;
  }
  .shop-page .shop-preview .product-item__info {
    font-size: 1.4em;
    gap: 10px;
  }
  .shop-page .shop-preview .product-item__info span {
    font-size: 1.6em;
  }
  .shop-page .shop-preview .product-item__mark span {
    font-size: 2.8em;
  }
  .shop-main .catalog-item {
    width: calc(50% - 13px);
  }
  .leader__leader-block .leader-block__image {
    height: 260px;
  }
}
@media screen and (max-width: 640px) {
  .grid-size-table td {
    padding: 7px 3px;
    font-size: 10px;
  }
  .shopcart-float {
    bottom: 30px;
    right: 30px;
    padding: 15px;
  }
  .shopcart-float i {
    color: var(--accent-color);
    font-size: 14px;
    transition: 0.2s all ease;
  }
  .shopcart-float span {
    width: 18px;
    height: 18px;
    font-size: 12px;
  }
  .team-about__comp {
    grid-template-columns: repeat(1, 1fr);
  }
  .develop {
    padding: 100px 0;
  }
  .develop h1 {
    font-size: 36px;
  }
  .develop a {
    font-size: 14px;
    padding: 10px 25px;
  }
  .main-page::before {
    display: none;
  }
  .section-title {
    gap: 10px;
    font-size: 16px;
  }
  .section-title img {
    height: 1.5em;
  }
  .header .header__links__item-icon {
    height: 18px;
    width: 18px;
  }
  .stadium-page .club-partners .partners__items {
    display: flex;
    justify-content: center;
    column-gap: 50px;
  }
  .preview__item__wrapper {
    height: 72vw;
  }
  .header__logo_new {
    transform: translateX(-130px) translateY(-15px);
    width: 120px;
  }
  /* TODO: Вернуть когда будет новый лого*/
  /*.header__container {*/
  /*    padding: 0 15px 0 130px;*/
  /*}*/
  .header .header__links__item-icon svg {
    max-width: 100%;
  }
  .footer .fans {
    display: none;
  }
  .footer__menu-inner {
    gap: 40px;
  }
  .footer__menu .footer__col_gap {
    justify-content: unset;
    gap: 40px;
  }
  .footer__menu .footer__col {
    max-width: unset;
    width: calc(50% - 20px);
  }
  .tabs-slider .tabs {
    overflow: unset;
    width: 100%;
  }
  .tabs-slider .tabs__wrapper {
    overflow: visible;
  }
  .tabs-slider .tabs__arrow {
    display: none;
  }
  .tabs-slider .tabs .active::before {
    display: none;
  }
  .tabs-slider .tabs__item {
    text-align: left;
    display: inline-block;
    width: 100%;
  }
  .tabs-slider .tabs__inner {
    background-color: var(--light-color);
    display: flex;
    flex-direction: column;
  }
  .tabs-slider .tabs__header {
    position: absolute;
    padding: 0;
    z-index: 2;
    max-width: 150px;
    right: 0;
    top: 30px;
    transition: 0.3s all;
    max-height: 0;
    overflow: hidden !important;
  }
  .tabs-slider .tabs__header span {
    display: none;
  }
  .tabs-slider .tabs-dropdown {
    display: flex;
    justify-content: flex-end;
  }
  .tabs-slider .tabs-dropdown__btn {
    display: flex;
    gap: 5px;
    align-items: center;
  }
  .coach-block__image {
    height: 300px;
  }
  .accordion .accordion__item .accordion__item-trigger {
    padding: 15px;
  }
  .accordion .accordion__item .accordion__item-trigger .trigger__text {
    font-size: 12px;
  }
  .accordion .accordion__item .accordion__item-content .content__text {
    font-size: 10px;
  }
  .preview .swiper-pagination {
    padding-bottom: 15px;
    padding-left: 45px;
  }
  .matches .championship-card__title img {
    height: 17px;
    width: 17px;
  }
  .matches .championship-card__title {
    width: 50%;
    font-size: 16px;
    padding: 15px;
  }
  .matches .championship-card__league {
    justify-content: center;
  }
  .matches .championship-card__league p {
    font-size: 16px;
  }
  .matches .matches-pagination {
    gap: 15px;
  }
  .matches .swiper-pagination-bullet {
    height: 6px;
  }
  .matches .swiper-button-next,
  .matches .swiper-button-prev {
    display: none;
  }
  .matches .container {
    flex-direction: column;
  }
  .matches .matches-card,
  .matches .championship-card {
    width: 100%;
  }
  .matches .championship-card {
    padding-bottom: 30px;
  }
  .match-block-main {
    padding: 15px;
  }
  .match-block-main .match-block__head {
    margin-bottom: 30px;
  }
  .match-block-main .match-block__name,
  .match-block-main .match-block__city {
    font-size: 12px;
  }
  .match-block-main .match-block__about {
    padding: 0 20px;
  }
  .match-block-main .match-block__begin {
    font-size: 12px;
  }
  .match-block-main .match-block__team {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .match-block-main .match-block__logo {
    height: 100px;
    width: 60px;
  }
  .match-block-main .match-block__time {
    font-size: 20px;
    order: 0;
    margin-bottom: 10px;
  }
  .match-block-main .match-block__versus {
    order: 0;
    font-size: 20px;
    margin-bottom: 10px;
  }
  .match-block-main .match-block__address {
    order: 1;
    max-width: 150px;
    text-align: center;
    margin-bottom: 15px;
  }
  .match-block-main .match-block__tikects {
    width: 130px;
    order: 2;
    font-size: 12px;
  }
  .match-block-main .match-block__date strong,
  .match-block-main .match-block__date p {
    font-size: 12px;
  }
  .match-block-main .match-block__date svg {
    width: 17px;
    height: 29px;
  }
  .match-block-main .match-block__tour {
    gap: 10px;
  }
  .match-block-main .match-block__tour__image {
    width: 25px;
    height: 25px;
  }
  .match-block-main .match-block__tour__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .match-block-main .match-block__tour p {
    font-size: 12px;
    max-width: 150px;
  }
  .news .tabs {
    overflow: visible;
  }
  .news__head {
    justify-content: space-between;
  }
  .shop::before {
    display: none;
  }
  .shop .shop__tabs {
    display: none;
  }
  .shop-slider {
    height: 320px;
  }
  .shop-slider .swiper-wrapper {
    height: 320px;
  }
  .shop-slider .shop__item-card {
    padding: 15px 20px;
  }
  .shop-slider .shop__item-card:hover {
    height: unset;
    border: none;
  }
  .shop-slider .shop__item-card__mobile-btn {
    position: absolute;
    bottom: 10px;
    border-radius: 6px;
    right: 10px;
    display: inline-block;
    padding: 10px 24px;
    color: #231F20;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.14px;
  }
  .shop-slider .shop__item-card__image {
    height: 180px;
  }
  .shop-slider .shop__item-card__actions {
    display: none;
  }
  .shop-slider .shop__item-card__title {
    margin-bottom: 25px;
  }
  .hero-news .hero__image {
    height: 360px;
  }
  .hero-news .hero__inner::before {
    top: 200px;
  }
  .single-news__title {
    width: 100%;
    max-width: unset;
    font-size: 16px;
  }
  .single-news__socials {
    right: -10px;
  }
  .single-news__quote strong {
    display: flex;
    align-items: center;
    height: 250px;
    padding: 0;
    max-width: 65%;
  }
  .single-news__quote__border {
    height: 100%;
    width: 113%;
    left: -200px;
    background: none;
    border: 6px solid var(--accent-color);
    transform: skew(-30deg) translateY(-50%);
  }
  .last-news__item {
    width: auto;
  }
  .last-news__item-large {
    width: auto;
  }
  .team {
    padding: 0 0 50px;
  }
  .team__head {
    padding-left: 0;
    padding-right: 0;
  }
  .team .team-block__title {
    padding-left: 0;
    font-size: 14px;
  }
  .team .team-tabs__content__item {
    gap: 30px;
  }
  .team .team-tabs .tabs-dropdown__btn {
    display: none;
  }
  .team .team-tabs .tabs__header {
    position: static;
    max-width: unset;
    display: flex;
    max-height: unset !important;
    width: 100%;
  }
  .team .team-tabs .active {
    position: relative;
    z-index: 1;
  }
  .team .team-tabs .active::before {
    display: block;
    position: absolute;
    content: "";
    top: 0;
    height: 100%;
    width: 100%;
    background-color: var(--accent-color);
    transform: skew(-20deg);
    left: 0;
    z-index: -1;
  }
  .team .team-tabs .tabs__item {
    width: unset;
  }
  .team .team-tabs .tabs__inner {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    row-gap: 10px;
    flex-direction: row;
  }
  .team .team-tabs .tabs__inner span {
    display: block;
  }
  .team .team-tabs .tabs__wrapper {
    width: 100%;
  }
  .team .team-tabs .tabs__header {
    padding-left: 0;
  }
  .modal__wrapper {
    align-items: unset;
    padding: 30px 25px 0;
  }
  .modal {
    min-width: 100%;
  }
  .modal__wrapper .modal {
    margin-top: 50px;
    position: static;
  }
  .modal__wrapper .modal__close {
    top: 30px;
    right: 25px;
    z-index: 3;
    background-image: url("/uploads/images/parts/close-white.svg");
    background-size: contain;
  }
  .modal__wrapper .modal__close svg {
    display: none;
  }
  .modal__wrapper .modal::before {
    display: none;
  }
  .modal__wrapper .modal .container {
    padding: 0 10px;
  }
  .modal__wrapper .modal__head {
    margin-left: 0;
  }
  .modal__wrapper .modal__title {
    color: #231F20;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.7px;
    max-width: 50%;
    text-transform: uppercase;
  }
  .modal__wrapper .modal__inner {
    overflow: scroll;
    padding: 25px 25px 50px;
    flex-direction: column;
  }
  .modal__wrapper .modal .player-modal__info {
    display: none;
  }
  .modal__wrapper .modal .player-modal__info-mobile {
    display: block;
  }
  .modal__wrapper .modal .player-modal__info-mobile p {
    margin-bottom: 10px;
  }
  .modal__wrapper .modal .player {
    padding: 0;
  }
  .modal__wrapper .modal .player__info-block p,
  .modal__wrapper .modal .player__info-block span {
    font-size: 10px;
  }
  .modal__wrapper .modal .player__achivements,
  .modal__wrapper .modal .player__career {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .modal__wrapper .modal .player__name {
    margin-bottom: 15px;
    margin-left: 0;
  }
  .modal__wrapper .player__description {
    font-size: 12px;
  }
  .modal__wrapper .modal .player__base {
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
  .modal__wrapper .modal .player__team {
    display: none;
  }
  .modal__wrapper .modal .player__role {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
    display: block;
  }
  .modal__wrapper .modal .player__role-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .modal__wrapper .modal .player__inst-mobile {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    flex-direction: row-reverse;
  }
  .modal__wrapper .modal .player__inst-mobile svg {
    width: 20%;
    height: 20%;
  }
  .modal__wrapper .modal .player-card {
    margin-bottom: 0;
    width: 100%;
  }
  .modal__wrapper .modal .player-card__mark {
    font-size: 32px;
    height: 105px;
    width: 70px;
  }
  .modal__wrapper .modal .player-card__image {
    height: 100%;
  }
  .modal__wrapper .modal .player-card__image img {
    object-position: bottom;
  }
  .modal__wrapper .modal .player-card__inner {
    padding: 15px;
    width: 100%;
    height: 450px;
  }
  .modal__wrapper .modal .tshort-card {
    display: none;
  }
  .modal__wrapper .modal .tshort-card-mobile {
    width: 190px;
    margin: 30px auto 0;
    display: block;
  }
  .single-team .container {
    padding: 0 10px;
  }
  .single-team__head {
    margin-left: 0;
  }
  .single-team__title {
    color: #231F20;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.7px;
    max-width: 50%;
    text-transform: uppercase;
  }
  .single-team__body::before {
    display: none;
  }
  .single-team__inner {
    padding: 12px 12px 50px;
    flex-direction: column;
  }
  .single-team .player__info-block p,
  .single-team .player__info-block span {
    font-size: 10px;
  }
  .single-team .player__counters {
    justify-content: center;
    overflow: hidden;
  }
  .single-team .player__role-mobile {
    display: flex;
    align-items: center;
  }
  .single-team .player__role-mobile .player__inst {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    flex-direction: row-reverse;
  }
  .single-team .player__role-mobile .player__inst i {
    font-size: 22px;
  }
  .single-team .player__achievements {
    padding: 30px 30px 0 30px;
  }
  .single-team .player__counter {
    padding: 20px;
  }
  .single-team .player__counter::before {
    opacity: 0.6;
  }
  .single-team .player__counter__title {
    font-size: 10px;
    margin-bottom: 5px;
  }
  .single-team .player__counter__title strong {
    font-size: 14px;
  }
  .single-team .player__counter__repeat {
    font-size: 14px;
    height: 30px;
    width: 30px;
    bottom: 25px;
  }
  .single-team .player__counter__season {
    font-size: 10px;
  }
  .single-team .player__counter__season span {
    font-size: 12px;
  }
  .single-team .player__counter__value {
    font-size: 32px;
  }
  .single-team .player__achivements,
  .single-team .player__career {
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .single-team .player-card__image img {
    height: 400px;
  }
  .single-team .player__inst {
    display: none;
  }
  .single-team .player__name {
    margin-bottom: 15px;
  }
  .single-team .player__base {
    height: 100%;
    flex-direction: column;
  }
  .single-team .player__team {
    display: none;
  }
  .single-team .player__role {
    margin-bottom: 20px;
    width: 100%;
    margin-right: 0;
    border-top: 4px solid var(--dark-color);
    padding-top: 30px;
    display: none;
  }
  .single-team .player__role-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .single-team .player__inst-mobile {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    flex-direction: row-reverse;
  }
  .single-team .player__inst-mobile svg {
    width: 20%;
    height: 20%;
  }
  .single-team .player-card {
    margin-bottom: 0;
  }
  .single-team .player-card__mark {
    font-size: 32px;
    height: 105px;
    width: 70px;
  }
  .single-team .player-card__image {
    height: 100%;
  }
  .single-team .player-card__inner {
    padding: 15px;
    width: 100%;
    height: 450px;
  }
  .single-team .tshort-card {
    display: none;
  }
  .single-team .tshort-card-mobile {
    width: 190px;
    margin: 30px auto 0;
    display: block;
  }
  .team-about {
    padding: 0 0 50px;
  }
  .team-about__inner::before {
    display: none;
  }
  .team-about__image {
    height: 280px;
  }
  .team-about__year {
    font-size: 32px;
  }
  .team-about__comp {
    gap: 30px;
  }
  .team-about__comp__item {
    font-size: 14px;
  }
  .team-about__comp__item ul li {
    font-size: 14px;
  }
  .match__body {
    gap: 20px;
  }
  .match__head {
    z-index: 5;
    padding: 20px 0;
    margin-bottom: 20px;
  }
  .match__subtitle {
    padding: 0;
  }
  .match__subtitle {
    margin-bottom: 20px;
  }
  .match .match-tabs {
    overflow: hidden;
  }
  .match .match-tabs .tabs-dropdown {
    justify-content: flex-start;
  }
  .match .match-tabs .tabs-dropdown__btn {
    display: none;
  }
  .match .match-tabs .tabs__wrapper {
    overflow: hidden;
  }
  .match .match-tabs .tabs__header {
    padding: 0 5px;
    position: static;
    max-width: 100%;
    max-height: unset !important;
  }
  .match .match-tabs .tabs__inner {
    flex-direction: row;
  }
  .table .table-row:not(.table-head):hover::after {
    left: -3px;
    right: -3px;
  }
  .tournament {
    padding-bottom: 30px;
  }
  .tournament__head {
    padding: 30px 0;
  }
  .tournament .table-head {
    display: none;
  }
  .tournament__table .table-cell {
    font-size: 12px;
  }
  .tournament__table .table-head .table-cell {
    font-size: 10px;
  }
  .tournament .table-head_mobile {
    display: flex;
  }
  .academy-page .container {
    padding: 0 20px;
  }
  .academy-page .hero__inner::before {
    display: none;
  }
  .academy-page .hero__inner::after {
    right: -190px;
  }
  .academy-page .hero__image {
    height: 400px;
  }
  .academy-about {
    padding-bottom: 30px;
  }
  .academy-about .container {
    padding: 0 20px;
  }
  .academy-about__rules ul {
    grid-template-columns: 1fr;
  }
  .academy-about__rules {
    flex-direction: column;
    gap: 25px;
    padding: 0 10px 0 20px;
  }
  .academy-about__rules .academy-about__col {
    margin-right: 0;
  }
  .academy-about__rules ul {
    max-width: 100%;
    gap: 25px;
  }
  .academy-about__rules ul li {
    max-width: 100%;
    font-size: 12px;
  }
  .academy-about__logo {
    display: none;
  }
  .academy-about__head {
    padding: 20px;
  }
  .academy-about__inner {
    padding: 0 20px;
  }
  .academy-about__goals {
    margin-bottom: 25px;
  }
  .academy-about__goals__text {
    font-size: 12px;
    max-width: 200px;
  }
  .academy-about__goals::before {
    top: 50%;
    transform: translateY(-50%);
    left: unset;
    right: 20px;
    width: 150%;
    height: 140px;
  }
  .academy-news {
    overflow: hidden;
    padding-bottom: 20px;
  }
  .academy-news__more {
    white-space: nowrap;
    font-size: 12px;
  }
  .academy-news__head {
    padding: 20px 0;
  }
  .academy-players {
    padding-bottom: 20px;
  }
  .academy-players__head {
    padding: 20px 0;
  }
  .academy-players__preview__title {
    max-width: 160px;
  }
  .academy-players__preview__info {
    max-width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .academy-players__preview__address {
    display: none;
  }
  .academy-players__preview__message {
    text-align: left;
    max-width: 250px;
  }
  .academy-players__preview__btn p:first-child {
    display: none;
  }
  .academy-players__preview__btn p:last-child {
    display: block;
  }
  .academy-players__preview__btn_mobile {
    display: inline-block;
  }
  .academy-contacts {
    padding-bottom: 20px;
  }
  .academy-contacts__head {
    padding: 20px 0;
  }
  .academy-team {
    padding-bottom: 60px;
  }
  .academy-team__head {
    padding: 20px 0;
  }
  .academy-team .tabs__item {
    padding: 5px 10px;
  }
  .academy-coaches__more_mobile {
    display: inline-flex;
  }
  .academy-coaches__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .academy-coaches__head {
    padding: 20px 0;
  }
  .academy-coaches__head .academy-coaches__more {
    display: none;
  }
  .academy-coaches__items {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
  .academy-coaches .coach-block {
    flex: 1 1 calc(50% - 20px);
  }
  .academy-coaches .coach-block__image {
    height: 300px;
  }
  .academy-coaches .coach-block__name {
    font-size: 14px;
  }
  .academy-coaches .coach-block p {
    font-size: 12px;
  }
  .academy-branch .academy-dropdown-btn img {
    height: 30px;
    width: 30px;
  }
  .academy-branch__head {
    padding: 20px 0;
  }
  .academy-branch .company__inner {
    padding: 25px 0;
  }
  .academy-branch .company__near {
    display: none;
  }
  .academy-branch .company__address {
    flex-direction: column;
    gap: 5px;
  }
  .academy-branch .academy-branch-company:hover::before {
    display: none;
  }
  .academy-championship__col p {
    margin-bottom: 25px;
  }
  .academy-championship__head {
    padding: 20px 0;
  }
  .coach__head {
    padding: 20px 0;
  }
  .coach .container {
    padding: 0 15px;
  }
  .coach__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .academy-players-page .players__tabs .tabs__item {
    font-size: 10px;
  }
  .academy-players-page .players .container {
    padding: 0 15px;
  }
  .academy-players-page .players__tabs {
    padding-left: 0;
    padding-right: 0;
  }
  .academy-players-page .players__head {
    padding: 20px 0;
  }
  .academy-players-page .players .players-block__title {
    padding-left: 0;
    font-size: 18px;
  }
  .academy-players-page .players .players-block__items {
    grid-template-columns: repeat(3, 1fr);
  }
  .academy-players-page .players .player {
    height: 150px;
  }
  .academy-players-page .players .player__over {
    padding: 15px;
  }
  .academy-players-page .players .player__over::before {
    height: 155px;
  }
  .academy-players-page .players .player__info p,
  .academy-players-page .players .player__info span {
    font-size: 10px;
  }
  .academy-players-page .players .player__name {
    font-size: 12px;
  }
  .academy-players-page .players .player__lastname {
    font-size: 12px;
  }
  .academy-players-page .players .player__club {
    font-size: 10px;
  }
  .academy-players-page .players .player__image {
    height: 130px;
  }
  .academy-player__back {
    height: 30px;
    width: 30px;
  }
  .academy-player__back i {
    font-size: 14px;
  }
  .academy-player__head {
    margin-left: 0;
    gap: 10px;
  }
  .academy-player__title {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.7px;
  }
  .shop-main .container {
    padding: 0 15px;
  }
  .shop-main .catalog-item {
    height: 265px;
  }
  .shop-main .catalog-item .product-info__filter span {
    font-size: 10px;
  }
  .shop-main .catalog-item .product-info__filter img {
    height: 18px;
  }
  .shop-main .catalog-item .catalog-item__price {
    min-height: 20px;
  }
  .shop-main .catalog-item__image {
    height: 180px;
  }
  .shop-main .catalog-item__title,
  .shop-main .catalog-item__price,
  .shop-main .catalog-item__add,
  .shop-main .catalog-item__description {
    font-size: 10px;
  }
  .tickets .tickets-match {
    margin-top: 30px;
  }
  .tickets__head-empty {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .tickets__head-empty h3 {
    text-align: center;
  }
  .tickets__select p {
    font-size: 10px;
  }
  .tickets__message {
    display: none;
  }
  .tickets__message_mobile {
    font-size: 10px;
    padding-bottom: 0;
    display: block;
  }
  .tickets__message_mobile span {
    font-size: 10px;
  }
  .tickets .container {
    padding: 0 15px;
  }
  .tickets__scheme {
    overflow: hidden;
  }
  .tickets__scheme svg {
    height: 100%;
    width: 100%;
  }
  .tickets__scheme svg:nth-child(1) {
    display: none;
  }
  .tickets__scheme img:nth-child(1) {
    display: none;
  }
  .tickets__scheme img:nth-child(2) {
    opacity: 0.5;
    display: block;
  }
  .tickets__scheme_mobile {
    display: block;
  }
  .cabinet-header__title {
    font-size: 14px;
  }
  .cabinet-header__top .translate {
    gap: 3px;
    font-size: 12px;
  }
  .cabinet-header__top .translate svg {
    width: 20px;
  }
  .cabinet-header__top .header__links .search svg {
    width: 20px;
  }
  .cabinet-header__top .header__links__item svg {
    width: 20px;
  }
  .cabinet-header__bottom .container {
    padding-left: 7em;
  }
  .next-matches__head {
    position: relative;
    z-index: 5;
    padding: 20px 0;
  }
  .next-matches .container {
    padding: 0 15px;
  }
  .next-matches .next-matches__purchases {
    width: calc(50% - 25px);
  }
  .next-matches .next-matches-item,
  .next-matches .profile-block {
    min-width: 70%;
  }
  .action__title {
    margin-bottom: 5px;
  }
  .action__title,
  .action h3 {
    font-size: 14px;
    max-width: 300px;
  }
  .action h3 {
    font-size: 16px;
  }
  .action__inner .bold {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 0;
  }
  .action__inner p {
    max-width: 250px;
    font-size: 12px;
  }
  .action__message {
    font-size: 12px;
  }
  .hero-stadium {
    height: 400px;
  }
  .hero-stadium .hero__inner::after {
    height: 100%;
    width: 264px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    background-size: contain;
    right: -132px;
  }
  .hero-stadium .hero__inner::before {
    height: 405px;
    width: 264px;
    top: 50%;
    transform: translateY(-50%);
    left: -132px;
  }
  .stadium-description {
    margin-bottom: 50px;
  }
  .stadium-description__block .block__head {
    margin-bottom: 25px;
  }
  .stadium-description__block .block__body {
    flex-direction: column;
  }
  .stadium-description__block .block__col {
    width: 100%;
  }
  .stadium-description__block .block__image .slick-next {
    width: 30px;
  }
  .stadium-description__block .block__image .slick-next::after {
    height: 20px;
    width: 20px;
  }
  .club-structure {
    margin-bottom: 50px;
  }
  .club-structure__items {
    gap: 5px;
  }
  .club-structure__club-item .container {
    gap: 20px;
  }
  .club-structure__club-item .club-item__link {
    position: absolute;
    font-size: 10px;
    padding: 3px 10px;
    display: none;
  }
  .club-structure__club-item .club-item__info {
    width: 50%;
  }
  .club-structure__club-item .club-item__image {
    position: relative;
  }
  .club-structure__club-item .club-item__image .club-item__link {
    right: 10px;
    bottom: 10px;
    margin-top: 0;
    display: inline-block;
  }
  .club-structure__club-item .club-item__image img {
    border-radius: 10px;
  }
  .club-structure__club-item .club-item__info p {
    font-size: 10px;
  }
  .club-structure__club-item .club-item__info p:last-child {
    margin-bottom: 0;
  }
  .club-structure__club-item .club-item__name {
    font-size: 12px;
    padding-bottom: 10px;
    margin-bottom: 0;
  }
  .club-structure__club-item:hover .club-item__image {
    overflow: hidden;
  }
  .club-structure__club-item:hover .club-item__image::before {
    content: "";
    background-image: url("/uploads/images/parts/LINES-WHITE.svg");
    position: absolute;
    left: -50px;
    height: 100%;
    top: 0;
    background-repeat: no-repeat;
    width: 100%;
    background-size: contain;
  }
  .club-structure__club-item:hover::before {
    content: "";
    position: absolute;
    right: -65px;
    top: 0;
    width: 130px;
    height: 100%;
  }
  .club-structure__club-item:hover .club-item__name {
    border-bottom: 4px solid transparent;
  }
  .leader {
    margin-bottom: 50px;
  }
  .stadium-page .club-partners {
    margin-bottom: 50px;
  }
  .stadium-page .club-partners .partners {
    padding-bottom: 150px;
  }
  .stadium-page .club-partners .partners__item {
    flex: unset;
    width: calc(50% - 50px);
  }
  .stadium-page .club-partners .partners__row {
    flex-wrap: wrap;
    justify-content: space-around;
    row-gap: 50px;
  }
  .stadium-page .club-partners .partners__title {
    font-size: 14px;
    bottom: 50px;
    padding: 7px 15px;
    top: unset;
    transform: translateY(0) translateX(-50%) skew(-30deg);
  }
  .stadium-page .club-partners .partners__items {
    row-gap: 50px;
  }
  .media {
    margin-bottom: 50px;
  }
  .liability {
    margin-bottom: 50px;
  }
  .liability__head {
    margin-bottom: 25px;
  }
  .liability__message {
    font-size: 10px;
    line-height: normal;
  }
  .liability__col {
    gap: 15px;
  }
  .liability__row {
    flex-direction: column;
    margin-bottom: 25px;
    gap: 15px;
  }
  .liability__image {
    width: 35px;
    height: 40px;
  }
  .city {
    margin-bottom: 50px;
  }
  .hero-chronology .hero__image {
    height: 400px;
  }
  .mission {
    margin-bottom: 50px;
  }
  .mission__message__text {
    font-size: 12px;
    max-width: 320px;
  }
  .mission__message::before {
    right: 0;
  }
  .mission .mission-task__items {
    max-width: 450px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 1fr);
  }
  .mission .mission-task__name {
    font-size: 20px;
  }
  .chronology__row {
    padding-right: 83px;
  }
  .chronology__row__inner {
    height: 164px;
    border-top: 2px solid #535353;
  }
  .chronology__row:last-child .chronology__item:last-child::before {
    height: 2px;
    bottom: -2px;
    background-image: url("/uploads/images/parts/dashed-mobile.svg");
  }
  .chronology__row::before {
    top: 0;
    width: 82px;
    height: calc(100% + 2px);
    background-image: url("/uploads/images/parts/el-right-mobile.svg");
  }
  .chronology-additional .chronology__row:last-child .chronology__item:last-child::before {
    height: 2px;
    bottom: -2px;
    background-image: url("/uploads/images/parts/dashed-yellow-mobile.svg");
  }
  .chronology-additional .chronology__row::before {
    width: 83px;
    background-image: url("/uploads/images/parts/el-yellow-mobile.svg");
  }
  .container {
    padding: 0 15px;
  }
  .shopcart__modal {
    min-width: 90%;
  }
  .order-page .order-form__title,
  .order-page .shopcart__title {
    font-size: 18px;
  }
  .order-page .shopcart__head a {
    font-size: 12px;
  }
  .order-page .shopcart__item__image {
    height: 80px;
  }
  .order-page .shopcart__item__image img {
    object-fit: contain;
    height: 100%;
  }
  .order-page .shopcart__item__base p {
    font-size: 12px;
  }
  .order-page .shopcart__item__base p:nth-child(1) {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .order-page .shopcart__item__price {
    font-size: 16px;
  }
  .order-page .shopcart__result p {
    font-size: 14px;
  }
  .order-page .shopcart__total p {
    font-size: 18px;
  }
  .order-page .order-section__info {
    margin-top: 20px;
  }
  .order-page .order-tabs__head button {
    font-size: 14px;
  }
  .order-page .order-form__title {
    font-size: 16px;
  }
  .order-page .order-tabs__body .order-tabs__item p {
    font-size: 12px;
  }
  .order-page .order-form__send-btn {
    font-size: 16px;
  }
  .order-page .order-section__shopcart {
    min-width: unset;
  }
  .order-success__head p {
    font-size: 14px;
  }
  .order-success__head p strong {
    font-size: 18px;
  }
  .order-success__message, .order-success__bottom {
    font-size: 12px;
  }
  .order-success__subtitle {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .order-success__product .product__info span {
    font-size: 14px;
  }
  .order-success__product .product__info__row {
    margin-top: 10px;
    font-size: 12px;
  }
  .order-success__info__item strong {
    font-size: 12px;
  }
  .user-order__item-head {
    padding: 15px 10px;
    font-size: 14px;
  }
  .user-order__good-image {
    padding: 15px;
  }
  .user-order__good-image img {
    height: 60px;
    width: 60px;
    object-fit: contain;
  }
  .user-order__price {
    font-size: 12px;
  }
  .user-order__price span {
    font-size: 18px;
  }
  .user-order__good-info span {
    font-size: 12px;
  }
  .user-order__good-info p {
    font-size: 12px;
  }
  .user-order__good-info .user-order__good-title {
    font-size: 14px;
  }
  .shopcart__modal-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 580px) {
  .shop-page .shop-preview__inner::before {
    background-size: 80%;
    left: -80px;
  }
  .shop-page .shop-preview .product-item__image {
    width: 10em;
  }
  .shop-page .shop-preview .product-item__col {
    gap: 20px;
  }
  .shop-page .shop-preview .product-item__info {
    font-size: 1.2em;
    gap: 10px;
  }
  .shop-page .shop-preview .product-item__info span {
    font-size: 1em;
  }
  .shop-page .shop-preview .product-item__divider {
    height: 80px;
    width: 60px;
  }
  .shop-page .shop-preview .product-item__mark span {
    font-size: 2.6em;
  }
  .shop-page .shop-preview .product-item__btn,
  .shop-page .shop-preview .product-item__personal {
    font-size: 0.65em;
  }
  .team .team-block__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .cart__item {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .cart__item .cart__item-base {
    grid-area: 1/1/2/4;
  }
  .cart__item-options {
    flex-direction: row;
  }
  .cart__info {
    align-items: center;
  }
  .cart__items {
    margin-top: 20px;
  }
  .cart__item-remove {
    position: absolute;
    right: 0;
    top: 20px;
  }
  .added-product .cart__item {
    display: flex;
  }
}
@media screen and (max-width: 560px) {
  .team-about__comp {
    flex-direction: column-reverse;
  }
  .product {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .product__inner {
    grid-template-rows: repeat(4, auto);
    grid-template-columns: repeat(1, 100%);
  }
  .product .product-info__main {
    flex-direction: column;
    gap: 30px;
  }
  .product .product-info__additional,
  .product .product-info__description {
    max-width: 100%;
  }
  .product .product-info__delivery,
  .product .product-info__pay {
    max-width: 100%;
  }
  .product .product-info__bottom {
    flex-direction: column;
    gap: 20px;
  }
  .product .product-gallery {
    position: relative;
    z-index: 5;
  }
  .product .product-gallery__back {
    position: absolute;
    top: 10px;
    z-index: 1;
    left: 10px;
  }
  .product .product-gallery__big {
    display: none;
  }
  .product .product-gallery__big-mobile {
    display: block;
  }
  .product .product-gallery__big .product-gallery__image {
    height: 450px;
  }
  .product .product-gallery__big .product-gallery__image {
    height: 450px;
  }
  .product .product-gallery__slider {
    padding-bottom: 30px;
  }
  .product .product-gallery__pagination {
    display: flex;
    justify-content: center;
  }
  .product .product-gallery__pagination .swiper-pagination-bullet {
    width: 15px;
    border-radius: 5px;
    opacity: 1;
    background-color: var(--dark-color);
  }
  .product .product-gallery__pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 5px;
    background-color: var(--accent-color);
  }
  .product .product-gallery__small {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .academy-players-page .players__image {
    height: 400px;
  }
  .academy-players-page .players__image img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .academy-players-page .players .player__over {
    padding: 15px 10px;
  }
  .academy-players-page .players .player__over::before {
    height: 135px;
  }
  .tournament__table .table-row .table-cell {
    margin-right: 0;
  }
  .product .product-info__actions .product-info__add-btn {
    flex: 1;
  }
  .product .product-info__additional button,
  .product .product-info__description button {
    font-size: 10px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 520px) {
  .header__title {
    font-size: 16px;
  }
  .header .translate svg:nth-child(2) {
    height: 50%;
    width: 50%;
  }
  .header__links {
    gap: 30px;
  }
  .header__links .header__socials {
    display: none;
  }
  .socials__item i {
    font-size: 18px;
  }
  .partners-mini {
    overflow: auto;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
    background-size: contain;
    background-position: center;
    position: relative;
  }
  .partners-mini__item {
    min-width: unset;
    width: 120px;
  }
  .partners-mini .partners__items {
    flex-wrap: wrap;
    row-gap: 15px;
  }
  .partners-mini__title {
    text-align: center;
    font-size: 14px;
    white-space: nowrap;
    padding: 10px 30px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    position: absolute;
    display: block;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
  .partners-mini__title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: skew(-20deg);
    border: 2px solid var(--dark-color);
  }
  .preview__inner::after {
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
  }
  .preview__inner::before {
    right: -110px;
  }
  .preview__item__wrapper {
    padding: 60px 20px;
  }
  .preview .swiper-pagination {
    justify-content: center;
    padding: 0 0 15px;
  }
  .preview .swiper-pagination-bullet {
    height: 6px;
  }
  .news__head {
    margin-bottom: 10px;
  }
  .match__item {
    min-width: 100%;
  }
  .news__items {
    gap: 20px;
    overflow-x: scroll;
    display: none;
  }
  .news__items .news__item {
    grid-area: unset;
  }
  .news__items-mobile {
    display: flex;
  }
  .news .tabs__content-item {
    display: block;
    flex-direction: column;
    gap: 30px;
  }
  .shop__navigation {
    display: none;
  }
  .hero-news .hero__image {
    height: 67vw;
  }
  .hero-news .hero__inner::after {
    transform: none;
    top: 220px;
    height: 480px;
    width: 300px;
  }
  .hero-news .hero__inner::before {
    display: none;
  }
  .team__title {
    font-size: 16px;
    max-width: 60%;
  }
  .academy-about__goals::before {
    right: 20px;
    width: 200%;
    height: 140px;
  }
  .academy-news .swiper {
    overflow: visible;
  }
  .academy-news__items {
    display: flex;
    gap: 0;
  }
  .academy-news__desktop {
    display: none;
  }
  .academy-news__slider {
    display: block;
  }
  .academy-players__preview::before {
    width: 1000px;
    left: unset;
    right: -100px;
  }
  .academy-team__photo {
    height: 240px;
    padding: 20px;
  }
  .academy-team__photo a {
    padding: 10px;
  }
  .academy-branch .company__logo img {
    -o-object-fit: contain;
    object-fit: contain;
    height: 120px;
    width: 50px;
  }
  .academy-branch .company__address {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .academy-branch .company__address__item {
    align-items: center;
  }
  .academy-branch .company__address__item img {
    height: 1.5em;
  }
  .academy-branch .company__info {
    flex-direction: column;
    align-items: flex-start;
    margin-left: 30px;
  }
  .academy-branch .company__manager {
    display: none;
  }
  .academy-branch .company__near {
    display: none;
  }
  .academy-player__inner {
    padding: 25px;
    gap: 25px;
    flex-direction: column;
  }
  .academy-player__body::before {
    display: none;
  }
  .academy-player .player__name {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .academy-player .player__role {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .academy-player .player__base {
    display: none;
  }
  .academy-player .player__base_mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
  }
  .academy-player .player__base_mobile .player__logo {
    max-width: 60px;
  }
  .academy-player .player__base_mobile .player__logo img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .academy-player .player__info {
    min-width: unset;
    padding-top: 0;
    padding-bottom: 25px;
    border-top: 0;
    border-bottom: 6px solid var(--dark-color);
  }
  .academy-player .player__info p,
  .academy-player .player__info span {
    font-size: 12px;
  }
  .academy-player .tshort-card {
    width: 180px;
    margin: 0 auto;
  }
  .academy-player .tshort-card__image {
    height: 100%;
  }
  .academy-player .player-card {
    border: none;
    display: flex;
    justify-content: center;
  }
  .academy-player .player-card__inner {
    border-radius: 10px;
    border: 5px solid var(--light-color);
    height: 380px;
    width: 100%;
  }
  .academy-player .player-card__inner::before {
    height: 1200px;
    width: 100%;
  }
  .academy-player .player-card__image img {
    width: 70%;
  }
  .main-news-page .news__items {
    grid-template-columns: repeat(1, 1fr);
    display: grid;
  }
  .search-page .search__title {
    gap: 15px;
  }
  .search-page .search__line {
    padding: 10px;
    font-size: 10px;
  }
  .search-page .search .tabs__item {
    font-size: 10px;
    padding: 5px 10px;
  }
  .search-page .search__form label {
    width: 50%;
  }
  .search-page .search__form input[type=submit] {
    font-size: 12px;
    height: 100%;
    width: 50%;
  }
  .shop-page .shop-preview__inner::before {
    background-size: 90%;
    left: -80px;
  }
  .shop-page .shop-preview .shop-pagination {
    bottom: 10px;
  }
  .shop-page .shop-preview .product-item__info {
    font-size: 0.9em;
    gap: 0;
    line-height: 150%;
  }
  .shop-page .shop-preview .product-item__info span {
    font-size: 1em;
  }
  .shop-page .shop-preview .product-item__row {
    justify-content: unset;
    gap: 10px;
  }
  .shop-page .shop-preview .product-item__personal {
    max-width: 40%;
  }
  .shop-page .shop-preview .product-item__btn {
    padding: 10px 15px;
  }
  .shop-page .shop-preview .product-item__mark span {
    font-size: 2.6em;
  }
  .shop-page .shop-preview .product-item__image {
    width: 11em;
  }
  .shop-main .catalog-item {
    height: 245px;
  }
  .shop-main .catalog-item__image {
    height: 160px;
  }
  .tickets .tickets-match {
    display: none;
  }
  .tickets .tickets-match__mobile {
    border-radius: 10px;
    border: 2px solid var(--accent-color);
    display: block;
    width: 100%;
    padding: 0;
  }
  .tickets .tickets-match__mobile .match-block__head {
    padding: 20px 20px 0 20px;
  }
  .tickets .tickets-match__mobile .match-block__about {
    padding: 0 20px;
  }
  .tickets .tickets-match__mobile .match-block__tour p {
    font-size: 10px;
    line-height: normal;
  }
  .tickets .tickets-match__mobile .match-block__begin {
    background-color: var(--accent-color);
    padding: 10px 0;
  }
  .next-matches__body {
    row-gap: 40px;
  }
  .next-matches .profile-block {
    min-width: 100%;
  }
  .next-matches .profile-block__photo {
    width: 60px;
    height: 60px;
  }
  .next-matches .profile-block__photo-btn {
    bottom: 0;
    right: -5px;
    height: 20px;
    width: 20px;
  }
  .next-matches .profile-block__title {
    font-size: 14px;
  }
  .next-matches .profile-block__top {
    margin-bottom: 15px;
  }
  .next-matches .profile-block__body {
    margin-bottom: 20px;
  }
  .next-matches .profile-block__name {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .next-matches .profile-block__bottom {
    padding-top: 20px;
  }
  .next-matches .profile-block__item img {
    height: 15px;
  }
  .next-matches .profile-block__item p {
    font-size: 12px;
  }
  .next-matches .profile-block__item span {
    font-size: 12px;
  }
  .next-matches .profile-block__nickname {
    margin: 5px;
  }
  .next-matches .profile-block__nickname,
  .next-matches .profile-block__phone {
    font-size: 10px;
  }
  .next-matches .profile-block__photo {
    height: 80px;
    width: 80px;
  }
  .next-matches .profile-block__setting img {
    height: 15px;
  }
  .next-matches .next-matches-item {
    min-width: 100%;
    padding: 0;
  }
  .next-matches .next-matches-item .match-block__head {
    padding: 10px 20px 0 20px;
  }
  .next-matches .next-matches-item .match-block__about {
    padding: 0 20px;
  }
  .next-matches .next-matches-item .match-block__begin {
    padding: 10px 0;
    background-color: var(--accent-color);
  }
  .next-matches .next-matches__purchases p,
  .next-matches .next-matches__poll p {
    font-size: 0.65em;
  }
  .next-matches .next-matches__purchases,
  .next-matches .next-matches__poll {
    width: calc(50% - 12.5px);
  }
  .next-matches .purchases__title,
  .next-matches .poll__title {
    margin-bottom: 10px;
  }
  .next-matches .purchases__icon,
  .next-matches .poll__icon {
    height: 16px;
  }
  .next-matches .purchases__icon svg,
  .next-matches .poll__icon svg {
    height: 100%;
  }
  .next-matches .purchases__date,
  .next-matches .purchases__all {
    font-size: 0.65em;
  }
  .next-matches .pool__btn {
    font-size: 0.65em;
    padding: 7px 20px;
  }
  .action__image {
    padding: 20px;
    height: 440px;
  }
  .cabinet-footer .footer__row {
    justify-content: center;
  }
  .club-structure__head {
    margin-bottom: 10px;
  }
  .club-structure__club-item .club-item__image {
    height: 100%;
  }
  .club-structure__club-item:hover .club-item__image::before {
    left: -40px;
    height: 100%;
    top: 0;
    width: 100%;
  }
  .club-structure__club-item:hover::before {
    content: "";
    position: absolute;
    right: -55px;
    top: 50%;
    transform: translateY(-50%);
    width: 7em;
    height: 100%;
  }
  .leader__leader-block .leader-block__image {
    height: 270px;
  }
  .media__row {
    gap: 10px;
  }
  .media__contacts-card {
    margin-bottom: 25px;
    padding: 12px 30px;
  }
  .media__contacts-card .contacts-card__name {
    font-size: 12px;
  }
  .media__contacts-card .contacts-card__info {
    font-size: 10px;
  }
  .media__contacts-card .contacts-card__btn {
    padding: 5px 10px;
  }
  .media__contacts-card .contacts-card__logo {
    width: 70px;
  }
  .media__contacts-card .contacts-card__logo::before {
    width: 190px;
    height: 200%;
    left: -55px;
  }
  .city__body {
    padding-top: 225px;
  }
  .city__video {
    height: 205px;
  }
  .pagination {
    width: 100%;
  }
  .pagination__arrow {
    width: 20px;
    height: 20px;
  }
  .pagination__arrow-next {
    margin-left: auto;
  }
  .pagination__arrow-prev {
    margin-right: auto;
  }
  .pagination__arrow svg {
    height: 100%;
    width: 100%;
  }
  .pagination__item {
    font-size: 12px;
  }
  .tournament__table .table-row .table-cell {
    font-size: 11px;
    padding: 10px 0;
  }
  .tournament__table .table-row {
    padding: 0 10px 0 10px;
  }
  .tournament__table .table-row .table-cell:nth-child(1) {
    margin-right: 5px;
  }
  .tournament__table .table-row .table-cell:nth-child(2) {
    max-width: 100px;
  }
}
@media screen and (max-width: 480px) {
  .setting-page .site-form {
    max-width: 360px;
    padding: 20px 0 35px;
    width: 100%;
  }
  .header__title {
    font-size: 14px;
  }
  .header .translate svg:nth-child(2) {
    height: 50%;
    width: 50%;
  }
  .header__links__item::before {
    height: 20px;
    width: 20px;
  }
  .header__logo_new {
    width: 90px;
    transform: translateX(-110px) translateY(0);
  }
  .header__links {
    gap: 30px;
  }
  .header__links .header__socials {
    display: none;
  }
  .header__container {
    padding: 0 20px 0 120px;
  }
  .header__logo {
    transform: translateX(-80px);
    width: 70px;
    height: 100px;
  }
  .header__logo svg {
    width: 50px;
    height: 95px;
  }
  .partners-mini {
    overflow: auto;
    padding-top: 60px;
    background-size: contain;
    background-position: center;
    position: relative;
  }
  .partners-mini__item {
    min-width: unset;
    width: 100px;
  }
  .partners-mini .partners__items {
    flex-wrap: wrap;
    gap: 15px;
    row-gap: 15px;
  }
  .coach-block__image {
    height: 220px;
  }
  .table:not(.tournament__table) .table-cell {
    font-size: 14px;
  }
  .table .table-row {
    padding-left: 15px;
  }
  .tournament__table .table__title {
    padding: 15px;
  }
  .table:not(.tournament__table) .table-head .table-cell {
    font-size: 12px;
  }
  .tournament__table .table-row .table-cell:not(:nth-child(2)) {
    text-align: center;
  }
  /*.tournament__table .table-row .table-cell:nth-child(2) {*/
  /*    flex: 2;*/
  /*}*/
  .partners {
    padding: 45px 0;
  }
  .partners__title {
    padding: 8px 45px;
    top: -20px;
  }
  .partners__items {
    gap: 30px;
    row-gap: 50px;
    justify-content: center;
  }
  .partners__item {
    width: calc(50% - 15px);
  }
  .app__inner {
    border-radius: 10px;
    height: 460px;
    padding: 25px;
    position: relative;
    background-repeat: no-repeat;
  }
  .app__title {
    font-size: 16px;
    text-align: right;
  }
  .app__descr {
    padding: 0 20px;
    font-size: 12px;
    max-width: 100%;
  }
  .app__btns {
    padding: 0 20px;
    margin-left: auto;
  }
  .single-news__image {
    height: 300px;
  }
  .single-news__quote strong {
    display: flex;
    align-items: center;
    height: 250px;
    padding: 0;
    max-width: 65%;
  }
  .single-news__quote__border {
    height: 100%;
    width: 117%;
    left: -200px;
    background: none;
    border: 6px solid var(--accent-color);
    transform: skew(-30deg) translateY(-50%);
  }
  .academy-coaches__items {
    flex-wrap: wrap;
  }
  .academy-coaches .coach-block {
    flex: 1 1 calc(50% - 12.5px);
  }
  .academy-coaches .coach-block__image {
    height: 190px;
  }
  .academy-coaches .coach-block__name {
    font-size: 14px;
  }
  .academy-coaches .coach-block p {
    font-size: 12px;
  }
  .cabinet-header__top-inner {
    padding-left: 5em;
  }
  .cabinet-header__bottom .container {
    padding-left: 6em;
  }
  .cabinet-header__logo {
    top: 10px;
    height: 115px;
  }
  .cabinet-header__logo::after {
    height: 125px;
    width: 80px;
  }
  .cabinet-header__title {
    font-size: 12px;
  }
  .cabinet-header__logo_new {
    width: 100px;
    height: 80px;
    left: -20px;
    top: 30px;
  }
  /*TODO: УБРАТЬ ПОСЛЕ НОВОГО ЛОГО*/
  .cabinet-header__top-inner,
  .cabinet-header__bottom .container {
    padding-left: 7.5em;
  }
  .subscription__item__title {
    font-size: 12px;
  }
  .subscription__item__top {
    margin-bottom: 10px;
  }
  .subscription__item__print svg {
    height: 16px;
  }
  .subscription__item__body {
    gap: 20px;
  }
  .subscription__item__season {
    font-size: 16px;
  }
  .subscription__item__date {
    font-size: 10px;
  }
  .subscription__item__description p {
    font-size: 10px;
  }
  .subscription__item__place p {
    font-size: 10px;
  }
  .subscription__item__place p strong {
    font-size: 10px;
  }
  .subscription__item__time {
    font-size: 10px;
  }
  .subscription__item-blocked .subscription__item__qr span {
    font-size: 16px;
  }
  .subscription__item-blocked .subscription__item__message p {
    font-size: 10px;
    line-height: 110%;
  }
  .subscription__ticket .subscription__item__team {
    font-size: 16px;
  }
  .subscription__ticket .subscription__item__date span,
  .subscription__ticket .subscription__item__time span {
    font-size: 10px;
  }
  .subscription__item-empty {
    height: 240px;
    min-height: unset;
  }
  .subscription__item-empty .subscription__item__btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  .leader__leader-block .leader-block__image {
    height: 240px;
  }
  .academy-players__preview__image {
    margin-left: -100px;
  }
  .product .product-gallery__big {
    width: 100%;
  }
  .academy-players__preview__info {
    padding-left: 30px;
  }
  .cart__item {
    padding: 20px 0;
  }
  .cart__item-options {
    width: 100%;
    justify-content: space-between;
    grid-area: 2/1/3/4;
  }
  .cart__item-option__item {
    flex: 1;
  }
  .cart__item-option__item .input-group {
    flex: 1;
    min-width: unset;
  }
  .added-product__block-info {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .cart__item-price {
    grid-area: 3/1/4/4;
  }
  .order-success__head p {
    font-size: 12px;
  }
  .order-success__inner {
    padding: 0 15px;
  }
  .order-success__section {
    padding: 30px 0;
  }
  .order-success__head p strong {
    font-size: 14px;
  }
  .product .product__image-number {
    font-size: calc(var(--dynamic-font-size) + 3vw);
    top: calc(27% + var(--dynamic-font-size));
  }
  .product .product__image-name {
    font-size: var(--dynamic-font-size);
    top: calc(12% + var(--dynamic-font-size));
  }
}
@media screen and (max-width: 460px) {
  .product .container {
    padding: 0 15px;
  }
  .product .product-info__add-btn {
    padding: 6px 15px;
  }
  .product .product-info__filter svg {
    height: 20px;
    width: 20px;
  }
  .modal__wrapper .modal .player-card__inner {
    height: 300px;
  }
}
@media screen and (max-width: 450px) {
  .shop-page .shop-preview {
    overflow: hidden;
  }
  .shop-page .shop-preview .container {
    padding: 0;
  }
  .shop-page .shop-preview__inner::before {
    left: -80px;
  }
  .shop-page .shop-preview .product-item__image {
    min-width: 130px;
  }
  .shop-page .shop-preview .product-item__personal {
    width: 50%;
  }
  .shop-page .shop-preview .product-item__btn,
  .shop-page .shop-preview .product-item__personal {
    font-size: 0.75em;
  }
}
@media screen and (max-width: 430px) {
  .header__logo_new {
    transform: translateX(-110px) translateY(-25px);
  }
  .product .product__image-number {
    font-size: calc(var(--dynamic-font-size) + 3vw);
    top: calc(30% + var(--dynamic-font-size));
  }
  .product .product__image-name {
    font-size: var(--dynamic-font-size);
    top: calc(15% + var(--dynamic-font-size));
  }
}
@media screen and (max-width: 420px) {
  .match-block .match-block__about {
    padding: 0;
  }
  .match-block-past .match-block__about {
    padding: 0 10px !important;
  }
  .academy-players-page .players .players-block__items {
    gap: 10px;
  }
  .cabinet-header__top .header__links {
    gap: 20px;
  }
  .team .player__over::before,
  .team .player {
    height: 200px;
  }
  .modal__wrapper .modal .player-card__image {
    height: 90%;
  }
  .modal__wrapper .modal .player-card__image img {
    object-fit: cover;
  }
  .academy-players__preview__message {
    font-size: 10px;
  }
  .academy-players__preview__image img {
    height: 175px;
  }
  .academy-players__preview__btn {
    padding: 5px 20px;
    font-size: 10px;
  }
}
@media screen and (max-width: 410px) {
  .header__links {
    gap: 25px;
  }
  .header__title {
    font-size: 12px;
  }
  .single-team .player-card__image {
    height: 90%;
  }
  .tournament__table .table-row:not(.table-head) .table-cell {
    font-size: 11px;
  }
  .tournament__table .table-row .table-cell:nth-child(2) {
    max-width: 80px;
  }
  .tournament__table .table-row:not(.table-head) .table-cell:nth-child(2) {
    font-size: 9px;
  }
  .tournament__table .table-row .table-cell:nth-child(1) {
    margin-right: 10px;
  }
}
@media screen and (max-width: 400px) {
  .team .player__info {
    line-height: 120%;
    padding-bottom: 30px;
  }
  .single-team .player__role {
    margin-bottom: 5px;
    padding-top: 20px;
  }
  .team .player__more-btn {
    font-size: 11px;
    padding: 10px 12px 10px 38px;
  }
  .order-page .shopcart__item__info {
    max-width: 130px;
  }
  .order-page .shopcart__item__price {
    font-size: 14px;
  }
  .order-page .shopcart__item__base p:nth-child(1) {
    font-size: 12px;
  }
  .order-page .shopcart__item__base p {
    font-size: 10px;
  }
}
@media screen and (max-width: 380px) {
  .product .product__image-number {
    font-size: calc(var(--dynamic-font-size) + 3vw);
    top: calc(35% + var(--dynamic-font-size));
  }
  .product .product__image-name {
    font-size: var(--dynamic-font-size);
    top: calc(20% + var(--dynamic-font-size));
  }
}
@media screen and (max-width: 880px) and (min-width: 750px) {
  .subscription .container {
    padding: 0 15px;
  }
  .subscription__items {
    gap: 25px;
  }
  .subscription__item {
    width: calc(50% - 12.5px);
    padding: 25px;
  }
  .subscription__item__info {
    width: 100%;
  }
  .subscription__item__title {
    font-size: 12px;
  }
  .subscription__item__top {
    margin-bottom: 10px;
  }
  .subscription__item__print svg {
    height: 16px;
  }
  .subscription__item__body {
    gap: 20px;
  }
  .subscription__item__season {
    font-size: 16px;
  }
  .subscription__item__date {
    font-size: 10px;
  }
  .subscription__item__description p {
    font-size: 10px;
  }
  .subscription__item__place p {
    font-size: 10px;
  }
  .subscription__item__place p strong {
    font-size: 10px;
  }
  .subscription__item__time {
    font-size: 10px;
  }
  .subscription__item-blocked .subscription__item__qr span {
    font-size: 16px;
  }
  .subscription__item-blocked .subscription__item__message p {
    font-size: 10px;
    line-height: 110%;
  }
  .subscription__ticket .subscription__item__team {
    font-size: 16px;
  }
  .subscription__ticket .subscription__item__date span,
  .subscription__ticket .subscription__item__time span {
    font-size: 10px;
  }
  .subscription__item-empty .subscription__item__btn {
    padding: 10px 20px;
    font-size: 12px;
  }
}
@media screen and (max-width: 780px) and (min-width: 680px) {
  .leader__leader-block .leader-block__image {
    height: 250px;
  }
}
.item-field-container {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
}

.font-color-white {
  color: rgba(255, 255, 255, 0.9);
}

.font-color-black {
  color: black;
}

.item-field-name,
.item-field-number,
.product .product__image-number,
.product .product__image-name {
  position: absolute;
  display: block;
  left: 50%;
  font-family: "kairat", serif;
  transform: translateX(-50%);
  font-weight: 900;
}

.item-field-name {
  letter-spacing: 5px;
  font-size: var(--dynamic-font-size);
  top: 12%;
  text-transform: uppercase;
}

.item-field-number {
  font-size: calc(var(--dynamic-font-size) + 3vw);
  top: 30%;
  letter-spacing: 3px;
}

.product .product__image-name {
  font-size: var(--dynamic-font-size);
  top: 15%;
}
.product .product__image-number {
  font-size: calc(var(--dynamic-font-size) + 5vw);
  top: 30%;
}

.profile-item-field-name {
  top: 27%;
  letter-spacing: 1px;
}

.profile-item-field-number {
  top: 37%;
  font-size: calc(var(--dynamic-font-size) + 1.5vw);
}

.order-item-field-name,
.cart__item__image-name {
  letter-spacing: 1px;
}

.order-item-field-number,
.cart__item__image-number {
  font-size: calc(var(--dynamic-font-size) + 1vw);
}

.shop-constructor {
  padding: 50px 0;
}
.shop-constructor__head {
  margin-bottom: 50px;
}
.shop-constructor__save-btn {
  border-radius: 5px;
}
.shop-constructor__price-container {
  font-size: 32px;
}
.shop-constructor__price-container span {
  font-weight: bold;
}
.shop-constructor__content {
  display: flex;
  gap: 5vw;
}
.shop-constructor__image {
  position: relative;
  width: 30vw;
}
.shop-constructor__image-container {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.shop-constructor__image-text, .shop-constructor__image-number {
  display: block;
  font-family: "kairat", serif;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.shop-constructor__image-text {
  top: 8%;
  font-size: 3vw;
}
.shop-constructor__image-number {
  top: 20%;
  font-size: 7vw;
}
.shop-constructor__image img {
  width: 100%;
}
.shop-constructor__setting {
  width: 100%;
}

@media screen and (max-width: 980px) {
  .shop-constructor__save-btn {
    font-size: 14px;
  }
  .shop-constructor__price-container {
    font-size: 26px;
  }
  .shop-constructor__image {
    width: 45vw;
  }
  .shop-constructor__image-text {
    top: 8%;
    font-size: 4vw;
  }
  .shop-constructor__image-number {
    top: 18%;
    font-size: 9vw;
  }
}
@media screen and (max-width: 780px) {
  .shop-constructor__content {
    flex-direction: column;
  }
  .shop-constructor__image {
    width: 45vw;
    margin: 0 auto;
  }
  .shop-constructor__image-text {
    top: 12%;
    font-size: 7vw;
  }
  .shop-constructor__image-number {
    top: 30%;
    font-size: 13vw;
  }
}
.refund {
  padding: 30px 0;
}
.refund #refundform-blank {
  display: none;
}
.refund__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.refund__head a {
  padding: 3px 0;
  border-bottom: 1px solid black;
}
.refund .help-block {
  padding: 5px 10px;
  font-size: 12px;
  color: #da4949;
}
.refund textarea {
  min-height: 150px;
}
.refund .hidden {
  display: none;
}
.refund #refund-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.refund .site-form__field {
  flex: 1;
}
.refund .site-form__field input {
  font-size: 14px;
}
.refund .field-refundform-photos .file-footer-buttons {
  display: none;
}
.refund .field-refundform-photos .file-upload-indicator {
  display: none;
}
.refund .field-refundform-photos .input-group-btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
.refund-form__text {
  font-size: 14px;
}
.refund-form__submit-btn {
  display: inline-flex;
  padding: 15px 40px;
  border-radius: 3px;
}
.refund-form__field-file {
  cursor: pointer;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.refund-form__field-file span {
  display: block;
  text-align: center;
  font-size: 12px;
  border: 1px solid var(--accent-color);
  padding: 10px;
  transition: 0.2s all ease;
}
.refund-form__field-file span:hover {
  background-color: var(--accent-color);
}
.refund-form__field-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 30px;
  row-gap: 20px;
}

@media screen and (max-width: 680px) {
  .refund {
    padding: 30px 0;
  }
  .refund__head {
    flex-direction: column;
  }
  .refund__head a {
    font-size: 12px;
  }
  .refund #refund-form {
    gap: 15px;
  }
  .refund .site-form__field {
    width: 100%;
  }
  .refund-form__field-row {
    flex-direction: column;
  }
  .refund-form__field-row-reverse {
    flex-direction: column-reverse;
    align-items: center;
  }
}
/*
 * подгрузка изменений для конкретных страниц
 */
.body-site-view.template-club .btn-skew {
  height: 70px;
  background-color: #fecc01;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transform: skewX(-15deg);
  margin: 1rem auto;
}
.body-site-view.template-club .btn-skew span {
  transform: skewX(15deg);
}

.body-site-404 .section-404 {
  min-height: 80vw;
  padding-bottom: 23vw;
  flex-grow: 1;
  position: relative;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
}
.body-site-404 .section-404 > .container {
  position: relative;
  padding-top: 5vw;
  text-align: center;
}
.body-site-404 .section-404 > .container img {
  margin-bottom: 2vw;
  max-width: 100%;
}
.body-site-404 .section-404 > .container .text-block {
  margin: auto;
  width: 500px;
  max-width: 100%;
}

.body-site-maintenance .top-background {
  top: 0;
}

/* -------------------------------------- */
@media (min-width: 992px) and (max-width: 1199px) {
  #wrapper {
    margin: 0 auto -160px;
    padding: 80px 0 160px;
  }
  #wrapper main {
    min-height: calc(100vh - 240px);
  }
  .header .first-panel {
    height: 50px;
    background-size: cover;
  }
  .header .first-panel p {
    font-size: 22px;
  }
  .header .first-panel .logo {
    width: 79px;
  }
  .header .second-panel li:not(:last-child) {
    margin-right: 15px;
  }
  .header .second-panel li:not(:first-child) {
    margin-left: 15px;
  }
  .header .second-panel a {
    font-size: 13px;
  }
  .panel-element .social .link {
    height: 30px;
    width: 33px;
    font-size: 20px;
  }
  .panel-element .switch {
    width: 80px;
    height: 30px;
  }
  .panel-element .switch .lang {
    font-size: 1.4rem;
  }
  .panel-element .form-search-group .form-search {
    margin-left: calc(50% - 115px);
  }
  .panel-element .form-search-group .form-search .button-search {
    font-size: 16px;
    width: 30px;
    height: 26px;
  }
  .panel-element .form-search-group .form-search .form-control {
    height: 24px;
    width: 200px;
    font-size: 12px;
  }
  .panel-element .form-search-group.active .form-search {
    margin-left: calc(30% - 130px);
    margin-right: calc(20% - 130px);
  }
  .panel-element .form-search-group.active .container-search {
    margin: 0 1.5% 0 11%;
  }
  .content p, .content div {
    font-size: 16px;
  }
  .head .p-head {
    min-height: 50px;
    font-size: 23px;
    padding-left: 0;
    padding-right: 0;
  }
  .footer {
    height: 160px;
  }
  .footer .footer-center .link.skew {
    height: 40px;
    width: 40px;
  }
  .footer .footer-center .link.skew i {
    font-size: 26px;
  }
  .footer .footer-center .link.site {
    font-size: 18px;
  }
  .top-background {
    top: 50px;
  }
  .section-news .link {
    font-size: 13px;
  }
  .section-news .news .h3 {
    font-size: 1.35rem;
    margin-bottom: 20px;
  }
  .section-news .news .short {
    font-size: 1.35rem;
    margin-block: 10px;
  }
  .section-news .news.one .h3 {
    font-size: 16px;
  }
  .section-standings tr {
    font-size: 18px;
  }
  .section-standings tr td, .section-standings tr th {
    padding: 0.5rem 2rem;
  }
  .people-block .image-block {
    max-width: 190px;
    max-height: 190px;
    flex: 0 0 190px;
  }
  .people-block .text-block .position {
    font-size: 14px;
  }
  .menu-team li a {
    padding: 12px 0;
    font-size: 20px;
  }
  .content__wrapper {
    padding: 20px;
  }
  .content__wrapper.one .teams .vs {
    font-size: 40px;
  }
  .content__wrapper.one .teams .team .image-block {
    height: 70px;
    width: 70px;
  }
  .content__wrapper.one .teams .team .name {
    font-size: 30px;
    padding: 0 15px;
  }
  .content__wrapper.one .teams .team.one {
    padding-right: 10px;
  }
  .content__wrapper.one .teams .team.two {
    padding-left: 10px;
  }
  .content__wrapper.many .owl-nav .owl-prev {
    left: -45px;
  }
  .content__wrapper.many .owl-nav .owl-next {
    right: -45px;
  }
  .content__wrapper.many .teams {
    margin-top: 10px;
  }
  .content__wrapper.many .teams .vs {
    font-size: 30px;
  }
  .content__wrapper.many .teams .team .image-block {
    height: 70px;
    width: 55px;
  }
  .body-site-index .section-first .slider .title {
    font-size: 19px;
  }
  .body-site-index .section-first .slider .image-block {
    height: 554px;
  }
  .body-site-index .section-first .slider .image-block::before {
    top: -19px;
    left: 45px;
  }
  .body-site-index .section-first .slider .image-block::after {
    bottom: -19px;
    right: 45px;
  }
  .body-site-index .section-first .slider .owl-dots .owl-dot {
    width: 11px;
    height: 9px;
  }
  .body-site-index .section-first .tournaments .tabs > li {
    font-size: 20px;
  }
  .body-site-index .container-sponsor {
    padding-top: 10px;
  }
  .body-site-index .container-sponsor .sponsor .h2 {
    font-size: 30px;
    max-width: 85%;
  }
  .body-site-index .section-partner .container-partner {
    padding: 50px 25px 50px;
  }
  .body-site-index .section-partner .col .image-block {
    height: 130px;
  }
  .body-news-index .section-news {
    padding-bottom: 200px;
  }
  .body-news-view .section-new .content img.main-img {
    max-width: 478px;
  }
  .body-news-view .section-new .title {
    font-size: 20px;
  }
  .body-news-view .section-new .tag-date {
    font-size: 17px;
  }
  .body-site-player .section-team {
    padding-bottom: 240px;
  }
  .body-site-player .section-team > .container {
    padding-top: 60px;
  }
  .body-match-view .section-match .h3 {
    font-size: 32px;
  }
  .body-match-view .section-match .vs {
    font-size: 156px;
    padding-top: 55px;
  }
  .body-match-view .section-match .image-block {
    width: 295px;
    height: 295px;
  }
  .body-match-view .section-match .club {
    font-size: 26px;
  }
  .body-match-view .section-match .city {
    font-size: 20px;
  }
  .body-match-view .section-match .fields .field .attribute, .body-match-view .section-match .fields .field .value {
    font-size: 26px;
  }
  .body-match-view .section-match .content p, .body-match-view .section-match .content div, .body-match-view .section-match .content h3 {
    font-size: 26px;
  }
  .body-match-view .section-match .photos .photo .easyii-box {
    max-width: 229px;
    max-height: 152px;
  }
  .body-match-next .content__wrapper.many .teams .vs, .body-match-prev .content__wrapper.many .teams .vs {
    font-size: 52px;
  }
  .body-match-next .content__wrapper.many .teams .team .image-block, .body-match-prev .content__wrapper.many .teams .team .image-block {
    height: 93px;
    width: 75px;
  }
  .body-match-next .content__wrapper.many .info, .body-match-prev .content__wrapper.many .info {
    font-size: 22px;
  }
  .body-match-next .content__wrapper.many .game, .body-match-prev .content__wrapper.many .game {
    margin-bottom: 25px;
    padding: 13px 12px;
  }
  .body-site-view.template-club .section-club .title {
    font-size: 20px;
  }
  .body-site-view.template-club .section-club .text {
    font-size: 17px;
  }
  .body-site-view.template-club .section-club #club_menu a {
    font-size: 13px;
  }
  .body-site-view.template-club .section-club .manager-block .title {
    font-size: 23px;
    margin-bottom: 20px;
  }
  .body-site-view.template-club .section-club .manager-block .position {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .body-site-view.template-club .section-club .manager-block .attribute {
    font-size: 20px;
  }
  .body-site-view.template-club .nav-pills li a {
    font-size: 16px;
    padding: 10px 0;
  }
  .body-site-view.template-team .section-team {
    padding-bottom: 240px;
  }
  .body-site-view.template-team .section-team .h3 {
    font-size: 23px;
  }
  .body-site-view.template-team .section-team > .container {
    padding-top: 60px;
  }
  .body-site-view.template-team .section-team .player .image-block img {
    height: auto;
    width: 132%;
  }
  .body-site-view.template-team .section-team .player .text-block {
    padding: 5px 12px 4px;
  }
  .body-site-view.template-team .section-team .player .text-block .text {
    font-size: 16px;
  }
  .body-site-view.template-team .section-team .player .text-block .number {
    font-size: 45px;
  }
  .body-site-view.template-team .section-team .player-block .flex .fields-title .title {
    font-size: 40px;
  }
  .body-site-view.template-team .section-team .player-block .flex .fields-title .position {
    font-size: 40px;
  }
  .body-site-view.template-team .section-team .player-block .flex .fields .attribute {
    font-size: 23px;
  }
  .body-site-view.template-team .section-team .player-block .flex .fields .value {
    font-size: 23px;
  }
  .body-site-view.template-team .section-team .player-block .flex .fields .number {
    font-size: 170px;
    margin-bottom: -30px;
  }
  .body-site-view.template-team .people-block .text-block .title {
    font-size: 26px;
  }
  .body-site-view.template-team .people-block .text-block .position {
    font-size: 21px;
  }
  .body-site-view.template-team .people-block .image-block {
    max-width: 250px;
    max-height: 250px;
    flex: 0 0 250px;
  }
}
@media (min-width: 1200px) and (max-width: 1250px) {
  .header .first-panel p {
    font-size: 2.78rem;
  }
  .header .second-panel a {
    font-size: 16px;
  }
}
@media (min-width: 1250px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1230px;
  }
}

/*# sourceMappingURL=main.css.map */
