@charset "UTF-8";

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

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

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

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

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

/* Указываем box sizing */

html {
  height: 100%;
  scroll-behavior: smooth;
}

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

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

input:focus-visible {
  outline: none;
}

a {
  text-decoration: none;
  color: inherit;
}

svg {
  flex-shrink: 0;
}

svg path,
svg rect {
  transition: 0.2s ease-in-out;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1;
  color: #ffffff;
  font-size: 18px;
  font-family: SFProDisplay;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #0B0D0D;
}

ul,
ol {
  list-style-position: inside;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

.container {
  max-width: 1792px;
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
}

.content {
  padding: 100px 0;
}

.title {
  color: #fff;
  font-family: OpenSansCondensed;
  font-size: 64px;
  line-height: 113%;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  padding: 30px 70px;
  color: #000;
  font-family: OpenSansCondensed;
  font-size: 28px;
  font-weight: 700;
  border-radius: 20px;
  background: #FFF;
  transition: 0.2s ease-in-out;
}

.btn:hover {
  background: #FF5820;
  color: #fff;
}

/*alert*/

.box-size {
  box-sizing: border-box;
}

.alert--fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.alert--error,
.alert--warning,
.alert--active {
  display: flex;
}

.alert--width {
  width: 400px;
}

.alert--img__item svg {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.alert--img__item {
  display: none;
  flex-shrink: 0;
}

.alert--active .active {
  display: block;
}

.alert--warning .warning {
  display: block;
}

.alert--error .error {
  display: block;
}

.alert--content {
  position: relative;
  z-index: 12;
  border-radius: 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 30px;
  color: #333333;
  margin-bottom: 10%;
}

.alert--bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.6;
  z-index: 11;
  top: 0px;
  left: 0px;
}

.alert-text {
  margin-top: 15px;
  text-align: center;
}

.alert--active .active path {
  fill: #4ad395;
}

.alert--warning .warning path {
  fill: #e5e75d;
}

.alert--error .error path {
  fill: #f81919;
}

.alert--title {
  font-size: 28px;
  font-weight: 500;
}

.alert--subtitle {
  font-weight: 400;
  font-size: 20px;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid #ccbbbb;
}

.alert--x {
  position: absolute;
  width: 30px;
  height: 30px;
  padding: 8px;
  right: 10px;
  top: 10px;
  cursor: pointer;
}

.alert--x svg {
  width: 100%;
  height: 100%;
}

.alert--x svg path {
  fill: #968787;
  transition: all 0.3s ease;
}

.alert--x:hover path {
  fill: black;
}

/*alert*/

/*formLoader*/

.form_loader {
  position: fixed;
  display: none;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}

.form_loader_block {
  position: absolute;
  width: 350px;
  max-width: 90%;
  left: 50%;
  top: 45%;
  padding: 40px;
  border-radius: 10px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.form_loader_animate {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.form_loader_animate:after {
  content: "";
  display: block;
  width: 85%;
  height: 85%;
  /*margin: 8px;*/
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #C53364 transparent #C53364 transparent;
  -webkit-animation: loader-animate 1.2s linear infinite;
          animation: loader-animate 1.2s linear infinite;
}

.form_loader_text {
  font-size: 20px;
  text-align: center;
}

@-webkit-keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*formLoader*/

.burger {
  position: relative;
  z-index: 1;
  display: none;
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (5px)[3];
  grid-template-columns: repeat(3, 5px);
  justify-content: space-between;
  width: 25px;
  row-gap: 5px;
  -moz-column-gap: 5px;
       column-gap: 5px;
  margin-left: 80px;
  margin-right: 0;
}

.burger__dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: #ffffff;
  position: relative;
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.burger__dot--line {
  background-color: transparent;
}

.burger__dot--line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #ffffff;
  border-radius: 5px;
  transition: width 0.3s ease;
  transform-origin: 2.5px 2.5px;
}

.burger__dot--left-top::before {
  transform: rotate(45deg);
}

.burger__dot--right-bottom::before {
  transform: rotate(-135deg);
}

.burger__dot--right-top::before {
  transform: rotate(135deg);
}

.burger__dot--left-bottom::before {
  transform: rotate(-45deg);
}

.burger._opened .burger__dot--line::before {
  width: 18px;
}

.burger._opened .burger__dot--aside {
  background-color: transparent;
}

.header {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 9;
}

.header__container {
  display: flex;
  align-items: center;
  position: relative;
  background: url("../img/header-rec.png") right center/auto 100% no-repeat, #151515;
  padding: 24px;
  border-radius: 24px;
  margin: 0 50px;
}

.header__freedom {
  display: flex;
  width: 120px;
  height: 40px;
  flex-shrink: 0;
  margin-right: 30px;
}

.header__freedom img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  margin-right: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-left: 30px;
  border-left: 1px solid #666;
}

.header__nav-link {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: OpenSansCondensed;
  transition: 0.2s ease-in-out;
}

.header__nav-link:hover {
  color: #FF5820;
}

.header__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 134px;
  height: 36px;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__socials {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: 32px;
}

.header__socials a {
  display: flex;
}

.header__socials a:hover svg path {
  fill: #fff;
}

.header__lang {
  position: relative;
  font-family: OpenSansCondensed;
  font-size: 20px;
}

.header__lang:hover .header__lang-other {
  display: flex;
  flex-direction: column;
  row-gap: 2px;
}

.header__lang:hover .header__lang-active svg {
  transform: rotate(180deg);
}

.header__lang-active {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.header__lang-active svg {
  transition: 0.2s ease-in-out;
}

.header__lang-other {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  padding: 4px 0;
}

.header__lang-other a {
  transition: 0.2s ease-in-out;
}

.header__lang-other a:hover {
  color: #FF5820;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  display: none;
}

.menu.active {
  display: block;
}

.menu.active .menu__block {
  -webkit-animation: showMenu 0.4s ease-in-out forwards;
          animation: showMenu 0.4s ease-in-out forwards;
}

@-webkit-keyframes showMenu {
  from {
    transform: translateX(-600px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes showMenu {
  from {
    transform: translateX(-600px);
  }

  to {
    transform: translateX(0);
  }
}

.menu__block {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 64px;
  border-radius: 0 40px 40px 0;
  background: #151515;
  height: 100%;
  max-width: 560px;
  overflow: auto;
}

.menu__close {
  position: absolute;
  top: 40px;
  right: 40px;
}

.menu__close:hover svg path {
  stroke: #fff;
}

.menu__block-logo {
  display: flex;
  width: 134px;
  height: 36px;
  margin-bottom: 40px;
}

.menu__block-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.menu__nav {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
  margin-bottom: 40px;
}

.menu__nav-title {
  color: #666;
  font-size: 20px;
}

.menu__nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 15px;
}

.menu__nav-list li a {
  font-family: OpenSansCondensed;
  transition: 0.2s ease-in-out;
}

.menu__nav-list li a:hover {
  color: #FF5820;
}

.menu__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-top: auto;
  padding-top: 40px;
  border-top: 1px solid #666;
}

.menu__contacts-title {
  color: #666;
  font-size: 20px;
}

.menu__contacts-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.menu__contacts-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu__contacts-list li a,
.menu__contacts-list li span {
  font-weight: 600;
}

.menu__contacts-list li a {
  transition: 0.2s ease-in-out;
}

.menu__contacts-list li a:hover {
  color: #FF5820;
}

.menu__contacts-list li:last-child a:nth-child(1) {
  border-right: 1px solid #fff;
  padding-right: 10px;
}

.menu__socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu__socials a {
  display: flex;
}

.menu__socials a:hover svg path {
  fill: #fff;
}

.header-space {
  padding-top: 138px;
}

.footer {
  margin-top: auto;
  padding: 0 16px 16px 16px;
}

.footer__block {
  border-radius: 40px;
  background: #131313;
  padding: 80px;
  margin-bottom: 60px;
  margin-top: 20px;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 70px;
}

.footer__logo {
  display: flex;
  width: 295px;
  flex-shrink: 0;
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 30px;
}

.footer__socials a {
  display: flex;
}

.footer__socials a:hover svg path {
  fill: #fff;
}

.footer__nav {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
}

.footer__nav-block {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.footer__nav-title {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.1px;
}

.footer__nav-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__nav-list a {
  transition: 0.2s ease-in-out;
}

.footer__nav-list a:hover {
  color: #FF5820;
}

.footer__nav-list a.active {
  color: #FF5820;
}

.footer__nav-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #666;
  font-size: 20px;
  white-space: nowrap;
}

.footer__image {
  width: 100%;
  height: auto;
}

.footer__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.breadcrumbs__container {
  padding-bottom: 40px;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  overflow: auto;
}

.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.breadcrumbs__list-item {
  position: relative;
}

.breadcrumbs__list-item:not(:last-child) {
  margin-right: 28px;
}

.breadcrumbs__list-item:not(:last-child)::before {
  position: absolute;
  content: ">";
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
}

.breadcrumbs__list-link {
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  color: #999;
  transition: 0.2s ease-in-out;
}

.breadcrumbs__list-link:hover {
  color: #FF5820;
}

.breadcrumbs__list-link.active {
  pointer-events: none;
  color: #fff;
}

.hero {
  margin-top: 20px;
  margin-right: 16px;
  margin-left: 16px;
  border-radius: 40px;
  overflow: hidden;
}

.hero__container {
  width: 100%;
}

.hero__slider {
  width: 100%;
}

.hero__slide {
  height: calc(100dvh - 20px);
  width: 100%;
}

.hero__slide-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide-image::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(51, 51, 51, 0) 0%, #000 100%);
  top: 0;
  left: 0;
}

.hero__slide-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.hero__slide-info {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 60px;
  bottom: 85px;
  text-align: center;
  max-width: 1100px;
  width: 98%;
}

.hero__slide-title {
  font-family: OpenSansCondensed;
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 120%;
}

.hero__slide-link {
  padding: 30px 70px;
  color: #000;
  font-family: OpenSansCondensed;
  font-size: 28px;
  font-weight: 700;
  border-radius: 20px;
  background: #FFF;
  transition: 0.2s ease-in-out;
}

.hero__slide-link:hover {
  background: #FF5820;
  color: #fff;
}

.hero__pagination {
  position: absolute;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  justify-content: center;
}

.hero__pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #fff;
  opacity: 1 !important;
  transition: 0.2s ease-in-out;
}

.hero__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FF5820;
  width: 120px;
  border-radius: 500px;
}

.news {
  overflow: hidden;
}

.news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.news__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 70px;
  margin-bottom: 50px;
}

.news__button {
  color: #666;
  font-size: 28px;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.news__button:hover {
  color: #FF5820;
}

.news__button.active {
  color: #FF5820;
  text-decoration: underline;
}

.news__block {
  display: flex;
  align-items: flex-end;
  gap: 50px;
}

.news__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 55px;
  width: 720px;
  flex-shrink: 0;
}

.news__left-cursor {
  display: flex;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  -webkit-animation: leftright 1s ease-in-out infinite;
          animation: leftright 1s ease-in-out infinite;
}

@-webkit-keyframes leftright {
  0% {
    transform: translateX(100px);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100px);
  }
}

@keyframes leftright {
  0% {
    transform: translateX(100px);
  }

  50% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100px);
  }
}

.news__left-cursor img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.news__left-subtitle {
  color: #666;
  font-size: 24px;
  line-height: 120%;
}

.news__sliders {
  width: 100%;
  overflow: hidden;
  margin-right: -100px;
  padding-right: 100px;
}

.news__slider {
  width: 100%;
  overflow: unset;
  display: none;
}

.news__slider.active {
  display: block;
}

.news__slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 20px;
  background: #161616;
  gap: 30px;
  width: 640px;
  padding: 20px;
  padding-bottom: 40px;
  overflow: hidden;
}

.news__slide:hover .news__slide-more {
  text-decoration: underline;
}

.news__slide:hover .news__slide-title {
  color: #FF5820;
}

.news__slide-img {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 10px;
}

.news__slide-img::before {
  display: block;
  content: "";
}

.news__slide-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news__slide-img::before {
  padding-top: 67%;
}

.news__slide-date {
  padding: 12px 16px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  border-radius: 500px;
  background: #FFF;
}

.news__slide-title {
  overflow: hidden;
  color: #FFF;
  text-overflow: ell7ipsis;
  font-family: OpenSansCondensed;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  -ms-grid-row-align: stretch;
      align-self: stretch;
  transition: 0.2s ease-in-out;
  line-height: 120%;
}

.news__slide-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  -ms-grid-row-align: stretch;
      align-self: stretch;
  overflow: hidden;
  color: #666;
  text-overflow: ellipsis;
  font-size: 24px;
}

.news__slide-more {
  color: #FF5820;
  font-size: 24px;
  font-weight: 500;
  margin-top: auto;
}

.single__block {
  position: relative;
  margin: 0 16px;
  border-radius: 40px;
  overflow: hidden;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 60px;
  gap: 50px;
}

.single__block-logo {
  display: flex;
  width: 76px;
  height: 100px;
}

.single__block-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.single__block-desc {
  max-width: 1140px;
  margin-right: 400px;
  font-size: 24px;
  line-height: 120%;
}

.single__block-link {
  position: absolute;
  right: 60px;
  bottom: 190px;
  color: #FF7040;
  font-family: OpenSansCondensed;
  font-size: 28px;
  font-weight: 700;
  transition: 0.2s ease-in-out;
}

.single__block-link:hover {
  color: #fff;
}

.calendar {
  overflow: hidden;
}

.calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.calendar__arrows {
  display: flex;
  align-items: center;
  gap: 30px;
}

.calendar__arrow {
  display: flex;
}

.calendar__arrow:hover svg path {
  fill: #fff;
}

.calendar__slider {
  width: 100%;
  overflow: unset;
}

.calendar__slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 635px;
  height: 500px;
  background: url("../img/calendar-bg-2.png") center/cover no-repeat;
  padding: 50px 40px;
  border-radius: 20px;
  overflow: hidden;
}

.calendar__slide.next-match {
  background: url("../img/calendar-bg-1.png") center/cover no-repeat;
}

.calendar__slide:not(.next-match) .calendar__slide-title,
.calendar__slide:not(.next-match) .calendar__slide-team_name,
.calendar__slide:not(.next-match) .calendar__slide-team_city {
  color: #000;
}

.calendar__slide:not(.next-match) .calendar__slide-tag {
  border: 1px solid #999;
}

.calendar__slide::before {
  position: absolute;
  content: "";
  background: url("../img/calendar-arrow.png") center/contain no-repeat;
  width: 30px;
  height: 30px;
  top: 10px;
  right: 10px;
  transition: 0.2s ease-in-out;
}

.calendar__slide:hover::before {
  transform: rotate(-45deg);
}

.calendar__slide-date {
  padding: 12px 16px;
  border-radius: 500px;
  background: #FFF;
  color: #999;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.calendar__slide-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 70px;
}

.calendar__slide-title {
  color: #FFF;
  font-family: OpenSansCondensed;
  font-size: 50px;
  font-weight: 700;
  text-transform: uppercase;
}

.calendar__slide-tag {
  padding: 12px 16px;
  border-radius: 500px;
  background: #FFF;
  color: #999;
  font-size: 16px;
  font-weight: 500;
}

.calendar__slide-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
}

.calendar__slide-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: OpenSansCondensed;
  line-height: 130%;
  text-transform: uppercase;
}

.calendar__slide-team_image {
  width: 90px;
  height: 120px;
  margin-bottom: 20px;
}

.calendar__slide-team_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.calendar__slide-team_name {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.calendar__slide-team_city {
  font-size: 20px;
  font-family: SFProDisplay;
}

.calendar__slide-total {
  color: #FF5820;
  font-family: OpenSansCondensed;
  font-size: 80px;
  font-weight: 700;
}

.calendar__tabs {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 50px;
  overflow: auto;
  padding-bottom: 5px;
}

.calendar__tabs-item {
  color: #666;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.calendar__tabs-item.active {
  color: #FF5820;
  text-decoration: underline;
}

.calendar.page-matches .calendar__slider {
  display: none;
}

.calendar.page-matches .calendar__slider.active {
  display: block;
}

.partner {
  overflow: hidden;
}

.partner__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.partner__general {
  width: 470px;
  height: auto;
  flex-shrink: 0;
}

.partner__general img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.partner__title {
  position: relative;
  color: #444;
  font-weight: 400;
}

.partner__title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/line-title.png") center/100% auto no-repeat;
  width: 100dvw;
  height: 2px;
  z-index: -1;
}

.partner__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 80px;
}

.partner__item {
  max-width: 340px;
  height: auto;
}

.partner__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.preview__container {
  position: relative;
  padding-top: 100px;
  padding-bottom: 70px;
  overflow: hidden;
}

.preview__image {
  position: absolute;
  right: 32px;
  bottom: 0;
  transform: translateY(50%);
  pointer-events: none;
  z-index: -1;
}

.command {
  position: relative;
  padding-bottom: 40px;
  margin: 0 16px;
}

.command__btns {
  position: absolute;
  right: 55px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 12px;
  z-index: 3;
  width: 200px;
  transition: top 0.2s ease;
}

.command__btn {
  width: 200px;
  padding: 16px 20px;
  border-radius: 12px;
  background: #FFF;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: 0.2s ease-in-out;
}

.command__btn.active {
  background: #FF5820;
  color: #fff;
}

.command__btn:hover {
  background: #FF5820;
  color: #fff;
}

.command__block {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  height: 100dvh;
  overflow: auto;
}

.command__block::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.command__item {
  position: relative;
  height: 100dvh;
  border-radius: 40px;
  overflow: hidden;
  flex-shrink: 0;
  display: none;
}

.command__item.active {
  display: flex;
}

.command__item-img {
  width: 100%;
  height: 100%;
}

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

.command__item-elems {
  position: absolute;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
}

.command__item-pagination {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  display: flex;
  flex-direction: column;
  z-index: 2;
  left: unset !important;
  bottom: unset !important;
  width: auto !important;
  row-gap: 12px;
}

.command__item-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  width: 14px;
  height: 14px;
  background: #FFF;
  opacity: 1 !important;
  transition: 0.2s ease-in-out;
  border-radius: 500px;
}

.command__item-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  height: 120px;
  background: #FF5820;
}

.standings__container {
  padding-bottom: 60px;
}

.standings__title {
  margin-bottom: 50px;
}

.standings__tabs {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 50px;
  overflow: auto;
  padding-bottom: 5px;
}

.standings__tabs-item {
  color: #666;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.standings__tabs-item.active {
  color: #FF5820;
  text-decoration: underline;
}

.standings__tables {
  overflow: auto;
}

.standings__table {
  display: none;
}

.standings__table.active {
  display: block;
}

.standings__table table {
  padding: 24px;
  width: 100%;
  background: #F9F9F9;
  border-collapse: collapse;
  border-radius: 0 0 24px 24px;
  min-width: 1240px;
}

.standings__table table thead tr td {
  color: #6A7284;
  font-size: 12px;
  border-bottom: 1px solid rgba(106, 114, 132, 0.5);
  padding: 24px;
  text-align: center;
  padding-bottom: 6px;
}

.standings__table table thead tr td:nth-child(2) {
  text-align: left;
}

.standings__table table tbody tr td {
  color: #252525;
  font-size: 16px;
  padding: 12px 24px;
  text-align: center;
}

.standings__table-header {
  width: 100%;
  background: #222;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  border-radius: 12px 12px 0 0;
  min-width: 1240px;
}

.standings__table-header span {
  color: #FF5820;
}

.standings__table-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.standings__table-logo img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.standings__table-forms {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.team {
  background: #fff;
}

.team__tabs {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 50px;
  overflow: auto;
  padding-bottom: 5px;
}

.team__tabs-item {
  color: #666;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.team__tabs-item.active {
  color: #FF5820;
  text-decoration: underline;
}

.team .js-team-tab {
  display: none;
}

.team .js-team-tab.active {
  display: flex;
}

.team__players {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}

.team__players-item {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}

.team__players-title {
  color: #111;
  font-family: OpenSansCondensed;
  font-size: 40px;
  font-weight: 700;
}

.team__players-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.team__players-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: url("../img/player-bg.jpg") center/cover no-repeat;
  height: 550px;
  padding: 40px;
  transition: 0.2s ease-in-out;
}

.team__players-card:hover {
  transform: translateY(-10px);
}

.team__players-card img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 90%;
}

.team__players-name {
  position: relative;
  z-index: 1;
  color: #FFF;
  font-family: OpenSansCondensed;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 95px;
  max-width: 300px;
}

.team__players-gamecounter {
  position: relative;
  z-index: 1;
  color: #FFF;
  font-family: OpenSansCondensed;
  font-size: 42px;
  font-weight: 700;
}

.team__players-gamesubtitle {
  position: relative;
  z-index: 1;
  color: #FFF;
  font-size: 32px;
  max-width: 120px;
}

.team__trainer-cards {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.team__trainer-card {
  background: url("../img/trener-bg.jpg") center/cover no-repeat;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  transition: 0.2s ease-in-out;
}

.team__trainer-card:hover {
  transform: translateY(-10px);
}

.team__trainer-left {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team__trainer-pos {
  margin-top: auto;
  margin-bottom: 20px;
  color: #999;
  font-size: 24px;
  font-weight: 500;
}

.team__trainer-name {
  color: #000;
  font-size: 40px;
  font-weight: 600;
  line-height: 110%;
}

.team__trainer-img {
  width: 200px;
  height: 240px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

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

.employee {
  background: #ffffff;
}

.employee__container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.employee__image {
  width: 340px;
  height: 400px;
  flex-shrink: 0;
  border-radius: 32px;
  overflow: hidden;
}

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

.employee__info {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.employee__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.employee__tags-item {
  padding: 16px 24px;
  border-radius: 500px;
  background: #F4F4F4;
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

.employee__name {
  color: #000;
  font-size: 48px;
  font-weight: 600;
}

.employee__desc {
  color: #999;
  font-size: 24px;
  line-height: 100%;
}

.employee__cards {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.employee__card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px;
  padding-right: 16px;
  border-radius: 100px;
  background: #F4F4F4;
}

.employee__card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #ffffff;
}

.employee__card-icon img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.employee__card-title {
  color: #333;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
}

.employee__card-title span {
  color: #999;
}

.news__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.news__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 30px;
  border-radius: 20px;
  background: #F4F4F4;
  padding: 20px;
}

.news__card .news__slide-title {
  color: #000;
}

.white-section {
  background: #ffffff;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  gap: 8px;
}

.pagination li a,
.pagination li span {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  border-radius: 8px;
  transition: 0.2s ease-in-out;
  font-weight: 600;
}

.pagination li a:hover {
  background: #EFF2F7;
}

.pagination li.active a {
  background: #FF5820;
  color: #fff;
}

.article__image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 60px;
}

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

.article__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 32px;
}

.article__date {
  padding: 20px 24px;
  border-radius: 500px;
  background: #F4F4F4;
  color: #000;
  font-size: 28px;
  font-weight: 500;
}

.article__title {
  color: #222;
}

.article__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 10px;
  color: #222;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0.96px;
}

.funshop__tabs {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 50px;
  overflow: auto;
  padding-bottom: 5px;
}

.funshop__tabs-item {
  color: #666;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.funshop__tabs-item.active {
  color: #FF5820;
  text-decoration: underline;
}

.funshop__items {
  display: none;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.funshop__items.active {
  display: -ms-grid;
  display: grid;
}

.funshop__item {
  padding: 20px 20px 30px 20px;
  border-radius: 20px;
  background: #F4F4F4;
}

.funshop__item-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.funshop__item-img::before {
  display: block;
  content: "";
}

.funshop__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.funshop__item-img::before {
  padding-top: 90%;
}

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

.funshop__item-tag {
  padding: 12px 16px;
  border-radius: 500px;
  background: #FFF;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.funshop__item-tag.red {
  background: #FF5820;
  color: #ffffff;
}

.funshop__item-price {
  color: #222;
  font-size: 24px;
  font-weight: 600;
}

.funshop__item-name {
  color: #222;
  font-family: OpenSansCondensed;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.funshop__item-elems {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.funshop__item-elems a {
  font-size: 24px;
  font-weight: 500;
}

.funshop__item-elems a:hover {
  text-decoration: underline;
}

.funshop__item-buy {
  color: #FF5820;
}

.funshop__item-link {
  color: #999;
}

.product__container {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.product__left {
  width: 640px;
  flex-shrink: 0;
}

.product__left .swiper-slide {
  position: relative;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
}

.product__left .swiper-slide::before {
  display: block;
  content: "";
}

.product__left .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product__left .swiper-slide::before {
  padding-top: 125%;
}

.product__left .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product__pagination {
  position: absolute;
  bottom: 20px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 8;
  display: flex;
  justify-content: center;
}

.product__pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: #fff;
  opacity: 1 !important;
  transition: 0.2s ease-in-out;
}

.product__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FF5820;
  width: 120px;
  border-radius: 500px;
}

.product__right {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  align-items: flex-start;
  width: 100%;
}

.product__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.product__tag {
  padding: 12px 16px;
  border-radius: 500px;
  background: #F4F4F4;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.product__tag.red {
  background: #FF5820;
  color: #ffffff;
}

.product__price {
  color: #222;
  font-size: 32px;
  font-weight: 600;
}

.product__title {
  font-size: 40px;
  color: #000;
}

.product__desc {
  color: #999;
  font-size: 24px;
}

.product__elems {
  border-radius: 20px;
  background: #F4F4F4;
  padding: 24px;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px;
}

.product__elem {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
}

.product__elem svg {
  width: 100%;
  flex-shrink: 1;
}

.product__elem-subtitle {
  color: #999;
  flex-shrink: 0;
}

.product__elem-title {
  color: #222;
  flex-shrink: 0;
}

.product__sizes {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 16px;
}

.product__sizes-title {
  color: #333;
  font-size: 24px;
  font-weight: 500;
}

.product__sizes-elems {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.product__sizes-btn {
  border-radius: 500px;
  border: 1px solid #999;
  padding: 16px 24px;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  background: #ffffff;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.product__sizes-btn:hover:not(.active, .disabled) {
  background: #FF5820;
  color: #ffffff;
}

.product__sizes-btn.active {
  background: #000;
  color: #ffffff;
}

.product__sizes-btn.disabled {
  background: #D3D3D3;
  pointer-events: none;
}

.product__type {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 16px;
}

.product__type-title {
  color: #333;
  font-size: 24px;
  font-weight: 500;
}

.product__type-elems {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.product__type-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  border: 1px solid #999;
  padding: 16px 24px;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  background: #ffffff;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.product__type-btn:hover:not(.active, .disabled) {
  background: #FF5820;
  color: #ffffff;
}

.product__type-btn.active {
  background: #000;
  color: #ffffff;
}

.product__type-btn.disabled {
  background: #D3D3D3;
  pointer-events: none;
}

.product__buy {
  border: 1px solid #000;
}

.product__buy:hover {
  border-color: #FF5820;
}

.product__customize {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  display: none;
}

.product__customize.active {
  display: flex;
}

.product__customize-title {
  color: #333;
  font-size: 24px;
  font-weight: 500;
}

.product__customize-fields {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
  width: 100%;
}

.product__customize-fields select,
.product__customize-fields input {
  height: 56px;
  padding: 12px 20px;
  border-radius: 10px;
  background: #F4F4F4;
  border: none;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.product__customize-fields select {
  background-image: url("../img/select-arrow.png");
  background-position: 96% center;
  background-repeat: no-repeat;
}

.product__customize-fields .customize-1 {
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  display: none;
}

.product__customize-fields .customize-1.active {
  display: block;
}

.product__customize-fields .customize-2 {
  display: none;
}

.product__customize-fields .customize-2.active {
  display: block;
}

.modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
  display: none;
}

.modal.active {
  display: flex;
}

.modal__block {
  width: 100%;
  max-width: 870px;
  margin: 0 16px;
  border-radius: 20px;
  background: #F4F4F4;
  padding: 35px;
}

.modal__block form {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  width: 100%;
}

.modal__field {
  width: 100%;
}

.modal__field input {
  width: 100%;
  padding: 16px;
  border-radius: 10px;
  background: #FFF;
  border: none;
  outline: none;
}

.modal__field input::-moz-placeholder {
  color: #999;
}

.modal__field input:-ms-input-placeholder {
  color: #999;
}

.modal__field input::placeholder {
  color: #999;
}

.modal__info {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px;
  border-radius: 20px;
  background: #FFF;
}

.modal__info-img {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.modal__info-col {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  width: 100%;
}

.modal__info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.modal__info-tag {
  padding: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #000;
  border-radius: 500px;
  background: #F4F4F4;
}

.modal__info-price {
  color: #222;
  font-size: 20px;
  font-weight: 600;
}

.modal__info-title {
  color: #222;
  font-family: OpenSansCondensed;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.modal__send {
  color: #FFF;
  text-align: center;
  font-family: OpenSansCondensed;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  background: #FF5820;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #FF5820;
  transition: 0.2s ease-in-out;
}

.modal__send:hover {
  background: #ffffff;
  color: #000;
}

.products__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}

.products__items .products__item {
  flex-direction: column;
  gap: 40px;
}

.products__items .products__item-img {
  width: 100%;
}

.products__items .products__item-img::before {
  padding-top: 52%;
}

.products__item {
  display: flex;
  align-items: center;
  border-radius: 20px;
  background: #F4F4F4;
  padding: 20px;
  gap: 50px;
}

.products__item-img {
  position: relative;
  width: 460px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

.products__item-img::before {
  display: block;
  content: "";
}

.products__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.products__item-img::before {
  padding-top: 100%;
}

.products__item-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.products__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.products__item-tag {
  padding: 12px 16px;
  border-radius: 500px;
  background: #FFF;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.products__item-tag.red {
  background: #FF5820;
  color: #ffffff;
}

.products__item-price {
  color: #222;
  font-size: 24px;
  font-weight: 600;
}

.products__item-title {
  font-size: 40px;
  color: #000;
}

.products__item-desc {
  color: #999;
  font-size: 24px;
}

.products .product__elems {
  background: #fff;
}

.products__btns {
  display: flex;
  align-items: center;
  gap: 30px;
}

.products__btns a {
  font-size: 24px;
  font-weight: 500;
}

.products__btns a:hover {
  text-decoration: underline;
}

.products__item-buy {
  color: #FF5820;
}

.products__item-link {
  color: #999;
}

.empty__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.empty__title {
  color: #222;
  margin-bottom: 32px;
}

.empty__text {
  margin-bottom: 32px;
  color: #666;
  font-size: 32px;
  text-align: center;
}

.empty__link {
  background: #FF5820;
  border: 1px solid #FF5820;
  color: #ffffff;
}

.politics__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #999;
  font-size: 32px;
}

.politics__container h2,
.politics__container h3,
.politics__container h4,
.politics__container h5,
.politics__container h6 {
  color: #000;
  margin-bottom: 32px;
}

.politics__container * {
  margin-bottom: 20px;
}

.politics__container h2 {
  font-size: 48px;
}

.contact__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}

.contact__left {
  border-radius: 20px;
  background: #F4F4F4;
  padding: 35px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact__form-title {
  color: #000;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact__form-subtitle {
  color: #999;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact__form-col {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  width: 100%;
  margin-bottom: 15px;
}

.contact__form-col span {
  font-size: 16px;
  color: #111;
  font-weight: 500;
}

.contact__form-col input,
.contact__form-col textarea {
  padding: 16px 24px;
  border-radius: 10px;
  background: #FFF;
  width: 100%;
  border: none;
  outline: none;
  font-size: 18px;
}

.contact__form-col input::-moz-placeholder, .contact__form-col textarea::-moz-placeholder {
  color: #999;
}

.contact__form-col input:-ms-input-placeholder, .contact__form-col textarea:-ms-input-placeholder {
  color: #999;
}

.contact__form-col input::placeholder,
.contact__form-col textarea::placeholder {
  color: #999;
}

.contact__form-col textarea {
  height: 120px;
  resize: none;
}

.contact__form-submit {
  width: 100%;
  background: #FF5820;
  border: 1px solid #FF5820;
  color: #ffffff;
  text-align: center;
  justify-content: center;
  outline: none;
  cursor: pointer;
  margin: 0;
  transition: 0.2s ease-in-out;
}

.contact__form-submit:hover {
  background: #ffffff;
  color: #000000;
}

.contact__right {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #F4F4F4;
  padding: 35px;
}

.contact__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 22px;
}

.contact__header-title {
  color: #000;
  font-size: 26px;
  font-weight: 600;
}

.contact__header-socials {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact__header-socials a {
  display: flex;
}

.contact__header-socials a svg:hover {
  transform: scale(1.04);
}

.contact__map {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
}

.contact__items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px;
  background: #FFF;
  padding: 10px;
}

.contact__item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 7.385px;
  background: #F4F4F4;
  flex-shrink: 0;
}

.contact__item-col {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.contact__item-col span {
  color: var(--text-tetriary, #6A7284);
  font-size: 12px;
  font-weight: 400;
}

.contact__item-col a,
.contact__item-col div {
  color: #252525;
  font-size: 16px;
  font-weight: 700;
}

.contact__item-col a {
  transition: 0.2s ease-in-out;
}

.contact__item-col a:hover {
  color: #FF5820;
}

.stats__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 540px 1fr;
  grid-template-columns: 540px 1fr;
  grid-gap: 60px;
  color: #333;
}

.stats__left {
  display: flex;
  flex-direction: column;
  row-gap: 60px;
}

.stats__left-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px;
  font-size: 24px;
  font-weight: 600;
  background: #0B0D0D;
  border-radius: 12px 12px 0 0;
  color: #ffffff;
}

.stats__left-header span {
  color: #FF5820;
}

.stats__matches-body {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding: 24px;
  background: #F9F9F9;
  border-radius: 0 0 12px 12px;
}

.stats__matches-body table {
  width: 100%;
  border-collapse: collapse;
}

.stats__matches-body table thead tr td {
  padding: 8px;
  border-bottom: 1px solid #DADFE5;
  color: #6A7284;
  font-size: 12px;
}

.stats__matches-body table tbody tr td {
  padding: 8px;
  overflow: hidden;
  color: #252525;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.stats__left-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stats__left-logo img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.stats__left-col {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.stats__left-col span {
  color: #252525;
  font-size: 24px;
  font-weight: 600;
}

.stats__left-col div {
  color: #999;
  font-size: 16px;
}

.stats__right {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.stats__match {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: url("../img/stats-match-bg.jpg") center/cover no-repeat;
  padding: 60px;
  border-radius: 20px;
}

.stats__match-top {
  display: flex;
  align-items: center;
  gap: 100px;
}

.stats__match-command {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: OpenSansCondensed;
  text-transform: uppercase;
}

.stats__match-command_logo {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.stats__match-command_logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.stats__match-command_name {
  color: #333;
  font-size: 40px;
  font-weight: 700;
}

.stats__match-command_city {
  color: #999;
  font-size: 26px;
}

.stats__match-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stats__match-info_title {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 16px;
}

.stats__match-info_date {
  color: #666;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.2px;
  margin-bottom: 32px;
}

.stats__match-info_count {
  color: #FF5820;
  font-family: OpenSansCondensed;
  font-size: 100px;
  margin-bottom: 32px;
}

.stats__match-info_status {
  color: #999;
  font-size: 24px;
  letter-spacing: 0.2px;
}

.stats__match-bot {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  margin-top: 20px;
  width: 100%;
}

.stats__match-time {
  position: relative;
}

.stats__match-time:nth-of-type(3) .stats__match-event {
  flex-direction: column-reverse;
  bottom: 12px;
}

.stats__match-time_logo {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.stats__match-time_logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.stats__match-event {
  position: absolute;
  bottom: -38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2px;
}

.stats__match-event_icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats__match-event_icon img {
  max-width: 100%;
  max-height: 100%;
}

.stats__match-event_time {
  background: #F4F4F4;
  padding: 10px 6px;
  overflow: hidden;
  color: #666;
  font-size: 16px;
  letter-spacing: 0.2px;
  border-radius: 12px;
}

.stats__match-timeline {
  width: 100%;
}

.stats__match-timeline svg {
  width: 100%;
  height: auto;
}

.stats__move {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 32px;
  border-radius: 12px;
  background: #F9F9F9;
  padding: 32px;
}

.stats__right-title {
  text-align: center;
  color: #333;
  font-family: OpenSansCondensed;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.stats__move-block {
  display: flex;
  flex-direction: column;
}

.stats__move-block_row {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 220px 48px 220px;
  grid-template-columns: 220px 48px 220px;
  grid-auto-rows: 80px;
}

.stats__move-block_item {
  display: flex;
  align-items: center;
}

.stats__move-block_item:nth-child(1) {
  justify-content: flex-end;
}

.stats__move-block_col {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.stats__move-block_name {
  color: #252525;
  font-size: 16px;
  font-weight: 600;
}

.stats__move-block_help {
  color: #999;
  font-size: 12px;
}

.stats__move-block_time {
  color: #252525;
  text-align: right;
  font-family: OpenSansCondensed;
  font-size: 16px;
  font-weight: 700;
  margin: 0 12px;
}

.stats__move-block_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.stats__move-block_icon img {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}

.stats__move-block_center {
  display: flex;
  justify-content: center;
}

.stats__tabs {
  display: flex;
  align-items: center;
  gap: 70px;
  overflow: auto;
  padding-bottom: 5px;
}

.stats__tabs-item {
  color: #666;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.stats__tabs-item.active {
  color: #FF5820;
  text-decoration: underline;
}

.stats__content-tab {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  display: none;
}

.stats__content-tab.active {
  display: flex;
}

.stats__compound {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.stats__compound-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}

.stats__compound-column_header {
  background: #0B0D0D;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 12px 12px 0 0;
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
}

.stats__compound-column_header img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.stats__compound-column_body {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 24px;
  background: #F9F9F9;
  border-radius: 0 0 12px 12px;
}

.stats__compound-column_row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.stats__compound-column_number {
  color: #666;
  font-size: 16px;
  letter-spacing: 0.2px;
}

.stats__compound-column_info {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.stats__compound-column_info div {
  color: #252525;
  font-size: 16px;
  font-weight: 600;
}

.stats__compound-column_info span {
  color: #999;
  font-size: 12px;
}

.stats__compound-column_images {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.stats__compound-column_image {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #666;
  font-size: 16px;
}

.stats__compound-column_image img {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.stats__numbers {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  border-radius: 12px;
  background: #F9F9F9;
  padding: 32px;
}

.stats__numbers-block {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.stats__number-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stats__number-header_item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
  font-size: 24px;
  font-weight: 600;
}

.stats__number-header_item img {
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

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

.stats__number-row_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stats__number-row_header span {
  font-weight: 700;
  font-size: 16px;
  color: #333;
}

.stats__number-row_header div {
  color: #999;
  font-size: 16px;
  font-weight: 700;
}

.stats__number-row_line {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  border-radius: 100px;
  background: #FFF;
  height: 10px;
  gap: 12px;
}

.stats__number-row_left {
  height: 100%;
  border-radius: 100px;
  background: #FF5820;
  -ms-grid-column-align: end;
      justify-self: end;
}

.stats__number-row_right {
  height: 100%;
  border-radius: 100px;
  background: #00A9F1;
}

.stats__review {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
}

.stats__review-item_img {
  position: relative;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
}

.stats__review-item_img::before {
  display: block;
  content: "";
}

.stats__review-item_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.stats__review-item_img::after {
  position: absolute;
  content: "";
  width: 56px;
  height: 56px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("../img/yt-icon.png") center/contain no-repeat;
}

.stats__review-item_img::before {
  padding-top: 56%;
}

.stats__review-item_title {
  color: #333;
  font-family: OpenSansCondensed;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.staff__tabs {
  display: flex;
  align-items: center;
  gap: 70px;
  margin-bottom: 50px;
  overflow: auto;
  padding-bottom: 5px;
}

.staff__tabs-link {
  color: #666;
  font-size: 20px;
  font-weight: 500;
  white-space: nowrap;
}

.staff__tabs-link.active {
  color: #FF5820;
  text-decoration: underline;
}

.staff__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}

.staff__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  border-radius: 20px;
  background: url("../img/staff-bg.jpg") center/cover no-repeat;
  padding: 30px;
}

.staff__item.hidden {
  display: none;
}

.staff__item-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}

.staff__item-pos {
  margin-bottom: 20px;
  color: #999;
  font-size: 20px;
}

.staff__item-name {
  margin-bottom: 50px;
  color: #000;
  font-size: 36px;
  font-weight: 600;
}

.staff__item-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #999;
  font-weight: 500;
  font-size: 20px;
  transition: 0.2s ease-in-out;
  margin-top: auto;
}

.staff__item-phone:hover {
  color: #FF5820;
}

.staff__item-img {
  width: 150px;
  height: 180px;
  flex-shrink: 0;
}

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

.general {
  position: relative;
  background: url("../img/general-bg.jpg") center/cover no-repeat;
  overflow: hidden;
}

.general__title {
  margin-bottom: 60px;
  color: #666;
  font-size: 32px;
  padding-left: 140px;
}

.general__title span {
  position: relative;
  z-index: 2;
}

.general__title::before {
  position: absolute;
  content: "";
  background: url("../img/general-line.png") center/100% auto no-repeat;
  width: 100dvw;
  height: 2px;
  top: 118px;
  left: 0;
}

.general__block {
  display: flex;
  gap: 130px;
}

.general__image {
  width: 750px;
  height: auto;
  flex-shrink: 0;
}

.general__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.general__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 32px;
}

.general__subtitle {
  color: #FFF;
  font-family: OpenSansCondensed;
  font-size: 44px;
  font-weight: 700;
}

.general__desc {
  color: #777;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
}

.general__link {
  margin-top: 12px;
}

.general__content {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  border-radius: 20px;
  background: #222;
  padding: 40px;
  margin-top: 70px;
}

.general__content-img {
  border-radius: 12px;
  width: 260px;
  height: 172px;
  flex-shrink: 0;
  overflow: hidden;
}

.general__content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.general__content-col {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.general__content-contats {
  display: flex;
  align-items: center;
  gap: 12px;
}

.general__content-contact {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: -0.1px;
}

.general__content-contact:nth-child(1) {
  border-right: 1px solid #444;
  padding-right: 12px;
}

.service__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 42px;
}

.service__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 20px;
  background: #F4F4F4;
  height: 295px;
  -ms-grid-column-span: 2;
  grid-column: 2 span;
  border: 1px solid #F4F4F4;
  transition: 0.2s ease-in-out;
}

.service__item:hover {
  border: 1px solid #FF5820;
}

.service__item:nth-child(10),
.service__item:nth-child(11) {
  -ms-grid-column-span: 3;
  grid-column: 3 span;
}

.service__item-img {
  width: 330px;
  height: auto;
  flex-shrink: 0;
}

.service__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.service__item-title {
  color: #000;
  font-size: 32px;
  font-weight: 600;
}

.service__item-subtitle {
  color: #999;
  font-size: 18px;
  font-weight: 600;
}

.freedom__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 42px;
}

.freedom__title {
  color: #333;
}

.freedom__image {
  width: 240px;
  height: auto;
  flex-shrink: 0;
}

.freedom__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.group__container {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  background: url("../img/hold-bg.jpg") center/cover no-repeat;
  padding: 80px;
  border-radius: 20px;
  overflow: hidden;
}

.group__title {
  color: #333;
  font-size: 60px;
  text-transform: unset;
}

.group__text {
  color: #999;
  font-size: 24px;
  line-height: 100%;
}

.amount__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 42px;
}

.amount__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 200px;
  border-radius: 20px;
  background: #F4F4F4;
  row-gap: 20px;
}

.amount__item-count {
  color: #FF5820;
}

.amount__item-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.benefits__container {
  padding-bottom: 100px;
}

.benefits__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 42px;
}

.benefits__item {
  padding: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 20px;
  background: #F4F4F4;
  height: 300px;
}

.benefits__item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 125px;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.benefits__item-img img {
  width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.benefits__item-title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  line-height: 133%;
}

.partner__wrapper {
  position: relative;
}

.partner__slider {
  position: relative;
  margin-top: 42px;
  margin-left: 50px;
  margin-right: 50px;
}

.partner__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.partner__arrow.prev {
  left: 0;
}

.partner__arrow.next {
  right: 0;
}

.partner__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.partner__slide img {
  max-width: 170px;
  max-height: 170px;
  -o-object-fit: contain;
     object-fit: contain;
}

.center__container {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.stats__compound-empty {
  background: #F9F9F9;
  border-radius: 0 0 12px 12px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  align-items: center;
  text-align: center;
}

.stats__compound-empty_title {
  color: #222;
  font-family: OpenSansCondensed;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}

.stats__compound-empty_subtitle {
  color: #666;
  text-align: center;
  font-size: 20px;
}

.compositions__block {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.compositions__commands {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px;
}

.philosophy__container {
  padding-top: 100px;
}

.philosophy__title {
  color: #333;
  font-family: OpenSansCondensed;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 60px;
}

.philosophy__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 24px;
  align-items: start;
}

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

.philosophy__image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}

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

.philosophy__left-block {
  display: flex;
  flex-direction: column;
  row-gap: 42px;
  align-items: flex-start;
  padding: 35px;
  border-radius: 20px;
  background: #F4F4F4;
}

.philosophy__left-block_title {
  color: #000;
  font-family: OpenSansCondensed;
  font-size: 42px;
  font-weight: 700;
}

.philosophy__left-block_text {
  color: #999;
  font-size: 20px;
  line-height: 120%;
}

.philosophy__right {
  display: flex;
  flex-direction: column;
  row-gap: 42px;
  border-radius: 20px;
  background: #F4F4F4;
  padding: 35px;
}

.philosophy__right-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 20px;
  color: #999;
  font-size: 20px;
  line-height: 120%;
}

.philosophy__right-block h1,
.philosophy__right-block h2,
.philosophy__right-block h3,
.philosophy__right-block h4,
.philosophy__right-block h5,
.philosophy__right-block h6 {
  color: #000;
}

.logo__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 600px 1fr;
  grid-template-columns: 600px 1fr;
  grid-gap: 24px;
  align-items: start;
  padding-top: 60px;
}

.logo__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
  border-radius: 20px;
  background: #F4F4F4;
}

.logo__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.logo__desc {
  display: flex;
  flex-direction: column;
  row-gap: 42px;
  align-items: flex-start;
  padding: 35px;
  border-radius: 20px;
  background: #F4F4F4;
}

.history__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 60px;
  padding-bottom: 100px;
}

.history__title {
  color: #222;
  font-family: OpenSansCondensed;
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.history__text {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  color: #222;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0.96px;
  margin-bottom: 60px;
}

.history__video {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  margin-top: 40px;
}

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

.history__video::before {
  position: absolute;
  content: "";
  background: url("../img/yt-icon.png") center/contain no-repeat;
  width: 128px;
  height: 128px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.laureates__container {
  padding-top: 100px;
  padding-bottom: 60px;
}

.laureates__header {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.laureates__title {
  color: #333;
  font-family: OpenSansCondensed;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.laureates__form {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.laureates__form input,
.laureates__form select {
  height: 80px;
  padding: 12px 24px;
  border-radius: 16px;
  border: none;
  outline: none;
  font-size: 24px;
  color: #999;
}

.laureates__form-select {
  -webkit-appearance: none;
  padding-right: 50px !important;
  background: url("../img/select-arrow.png") 95% center/16px 8px no-repeat, #F4F4F4;
}

.laureates__form-date input {
  background: #F4F4F4;
}

.laureates__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}

.laureates__item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  border-radius: 20px;
  background: #F4F4F4;
  padding: 20px;
}

.laureates__item-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  height: 100%;
}

.laureates__item-tags {
  display: flex;
  align-items: center;
  gap: 30px;
}

.laureates__item-tag {
  padding: 12px 16px;
  border-radius: 500px;
  background: #FFF;
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.laureates__item-title {
  color: #222;
  font-family: OpenSansCondensed;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
}

.laureates__item-text {
  overflow: hidden;
  color: #666;
  text-overflow: ellipsis;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 20px */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.laureates__item-link {
  color: #FF5820;
  font-size: 24px;
  font-weight: 500;
  margin-top: auto;
}

.laureates__item-link:hover {
  text-decoration: underline;
}

.laureates__item-image {
  width: 395px;
  height: 265px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
}

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

.laureates__stats {
  margin-top: 60px;
}

.laureates__stats-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 42px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.laureates__stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  border-radius: 20px;
  background: #F4F4F4;
}

.laureates__stats-item_count {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #FF5820;
  font-family: OpenSansCondensed;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.laureates__stats-item_img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #fff;
}

.laureates__stats-item_img img {
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
}

.laureates__stats-item_title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
}

.achievment {
  overflow: hidden;
}

.achievment__block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  grid-gap: 60px;
  margin-bottom: 60px;
}

.achievment__block-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}

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

.achievment__block-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.achievment__block-tags {
  display: flex;
  align-items: center;
  gap: 32px;
}

.achievment__block-tag {
  padding: 20px 24px;
  border-radius: 500px;
  background: #F4F4F4;
  color: #000;
  font-size: 28px;
  font-weight: 500;
}

.achievment__block-title {
  color: #222;
  font-family: OpenSansCondensed;
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
}

.achievment__block-text {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  color: #222;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.72px;
}

.achievment__more {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 60px;
}

.achievment__more-title {
  color: #333;
  font-family: OpenSansCondensed;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.achievment__slider {
  overflow: unset;
  width: 100%;
}

.achievment__slide {
  width: 580px;
}

.achievment__slide-content {
  width: 100%;
  height: 330px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
}

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

.achievment__slide-content iframe {
  width: 100%;
  height: 100%;
}

.achievment__slide-title {
  color: #333;
  font-family: OpenSansCondensed;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.stats__map-image {
  width: 100%;
  height: auto;
}

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

@media (max-width: 1800px) {
  .container {
    max-width: 1440px;
  }

  .title {
    font-size: 52px;
  }

  .btn {
    font-size: 20px;
    padding: 20px 40px;
  }

  .footer__block {
    padding: 40px;
  }

  .footer__top {
    margin-bottom: 40px;
  }

  .footer__logo {
    width: 200px;
  }

  .footer__nav-title {
    font-size: 18px;
  }

  .footer__nav-item {
    font-size: 16px;
  }

  .hero__slide-title {
    font-size: 60px;
  }

  .hero__slide-link {
    font-size: 20px;
    padding: 20px 40px;
  }

  .news__buttons {
    gap: 20px 30px;
    margin-bottom: 30px;
  }

  .news__button {
    font-size: 20px;
  }

  .news__left {
    width: 600px;
  }

  .news__left-subtitle {
    font-size: 20px;
  }

  .news__sliders {
    margin-right: -200px;
    padding-right: 70px;
  }

  .news__slide {
    width: 500px;
    gap: 15px;
  }

  .news__slide-title {
    font-size: 26px;
  }

  .news__slide-desc {
    font-size: 18px;
  }

  .news__slide-more {
    font-size: 18px;
  }

  .single__block-desc {
    font-size: 20px;
  }

  .single__block-link {
    font-size: 20px;
  }

  .calendar__header {
    margin-bottom: 50px;
  }

  .calendar__slide {
    width: 500px;
    padding: 25px;
    height: 395px;
  }

  .calendar__slide::before {
    width: 20px;
    height: 20px;
  }

  .calendar__slide-header {
    margin-bottom: 30px;
  }

  .calendar__slide-title {
    font-size: 32px;
  }

  .calendar__slide-team_name {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .calendar__slide-team_city {
    font-size: 16px;
  }

  .calendar__slide-total {
    font-size: 60px;
  }

  .partner__container {
    gap: 40px;
  }

  .partner__general {
    width: 350px;
  }

  .partner__item {
    max-width: 250px;
  }

  .team__players {
    row-gap: 40px;
  }

  .team__players-item {
    row-gap: 30px;
  }

  .team__players-title {
    font-size: 32px;
  }

  .team__players-card {
    height: 400px;
    padding: 20px;
  }

  .team__players-name {
    font-size: 32px;
    max-width: 200px;
    margin-bottom: 50px;
  }

  .team__players-gamecounter {
    font-size: 32px;
  }

  .team__players-gamesubtitle {
    font-size: 26px;
  }

  .team__trainer-card {
    padding: 20px;
  }

  .team__trainer-pos {
    font-size: 18px;
  }

  .team__trainer-name {
    font-size: 26px;
  }

  .team__trainer-img {
    width: 160px;
    height: 200px;
  }

  .employee__container {
    gap: 40px;
  }

  .employee__info {
    row-gap: 20px;
  }

  .employee__tags-item {
    font-size: 16px;
    padding: 12px 20px;
  }

  .employee__name {
    font-size: 32px;
  }

  .employee__desc {
    font-size: 16px;
  }

  .news__card {
    row-gap: 20px;
  }

  .pagination li a,
  .pagination li span {
    width: 40px;
    height: 40px;
  }

  .article__image {
    margin-bottom: 40px;
  }

  .article__content {
    row-gap: 20px;
  }

  .article__date {
    padding: 12px 20px;
    font-size: 20px;
  }

  .article__text {
    font-size: 20px;
  }

  .funshop__item-img {
    margin-bottom: 20px;
  }

  .funshop__item-header {
    margin-bottom: 15px;
  }

  .funshop__item-tag {
    font-size: 14px;
  }

  .funshop__item-price {
    font-size: 20px;
  }

  .funshop__item-name {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .funshop__item-elems a {
    font-size: 16px;
  }

  .product__left {
    width: 450px;
  }

  .product__tag {
    font-size: 14px;
  }

  .product__price {
    font-size: 24px;
  }

  .product__title {
    font-size: 32px;
  }

  .product__desc {
    font-size: 16px;
  }

  .product__elems {
    padding: 18px;
  }

  .product__elem {
    font-size: 16px;
    gap: 16px;
  }

  .product__sizes-title {
    font-size: 18px;
  }

  .product__sizes-btn {
    font-size: 16px;
    padding: 12px 20px;
  }

  .product__type-title {
    font-size: 18px;
  }

  .product__type-btn {
    font-size: 16px;
    padding: 12px 20px;
  }

  .modal__block {
    max-width: 600px;
    padding: 20px;
  }

  .modal__field input {
    padding: 10px 12px;
    font-size: 14px;
  }

  .modal__info-img {
    width: 80px;
    height: 80px;
  }

  .modal__info-price {
    font-size: 16px;
  }

  .modal__info-title {
    font-size: 16px;
  }

  .modal__send {
    font-size: 18px;
    padding: 12px 30px;
  }

  .products__item-info {
    gap: 24px;
  }

  .products__item-tag {
    font-size: 14px;
  }

  .products__item-price {
    font-size: 20px;
  }

  .products__item-title {
    font-size: 32px;
  }

  .products__item-desc {
    font-size: 16px;
  }

  .products__btns {
    gap: 20px;
  }

  .products__btns a {
    font-size: 18px;
  }

  .empty__text {
    font-size: 26px;
  }

  .politics__container {
    font-size: 26px;
  }

  .politics__container h2,
  .politics__container h3,
  .politics__container h4,
  .politics__container h5,
  .politics__container h6 {
    margin-bottom: 10px;
  }

  .politics__container * {
    margin-bottom: 20px;
  }

  .politics__container h2 {
    font-size: 36px;
  }

  .contact__form-title {
    font-size: 20px;
  }

  .contact__form-col input,
  .contact__form-col textarea {
    font-size: 16px;
    padding: 12px 20px;
  }

  .contact__header-title {
    font-size: 20px;
  }

  .contact__header-socials {
    gap: 15px;
  }

  .stats__container {
    -ms-grid-columns: 400px 1fr;
    grid-template-columns: 400px 1fr;
    grid-gap: 30px;
  }

  .stats__left {
    row-gap: 40px;
  }

  .stats__left-header {
    padding: 16px 12px;
    font-size: 18px;
  }

  .stats__matches-body {
    padding: 12px;
  }

  .stats__matches-body table tbody tr td {
    font-size: 14px;
  }

  .stats__left-col span {
    font-size: 18px;
  }

  .stats__match {
    padding: 30px;
  }

  .stats__match-top {
    gap: 50px;
  }

  .stats__match-command_logo {
    width: 100px;
    height: 100px;
  }

  .stats__match-command_name {
    font-size: 30px;
  }

  .stats__match-command_city {
    font-size: 20px;
  }

  .stats__match-info_title {
    font-size: 20px;
  }

  .stats__match-info_date {
    font-size: 16px;
  }

  .stats__match-info_count {
    font-size: 60px;
    margin-bottom: 20px;
  }

  .stats__match-info_status {
    font-size: 20px;
  }

  .stats__move {
    padding: 30px;
    row-gap: 20px;
  }

  .stats__right-title {
    font-size: 30px;
  }

  .stats__compound {
    row-gap: 20px;
  }

  .stats__compound-column_header {
    padding: 16px 12px;
    font-size: 18px;
  }

  .stats__compound-column_header img {
    width: 30px;
    height: 30px;
  }

  .stats__compound-column_body {
    padding: 16px 12px;
  }

  .stats__numbers {
    padding: 30px;
  }

  .stats__number-header_item {
    font-size: 18px;
  }

  .stats__number-header_item img {
    width: 30px;
    height: 30px;
  }

  .stats__review-item_title {
    font-size: 30px;
  }

  .staff__item-pos {
    font-size: 16px;
  }

  .staff__item-name {
    font-size: 22px;
  }

  .staff__item-phone {
    font-size: 16px;
  }

  .general__title {
    padding-left: 80px;
  }

  .general__block {
    gap: 60;
  }

  .general__image {
    width: 500px;
  }

  .general__right {
    row-gap: 20px;
  }

  .general__subtitle {
    font-size: 30px;
  }

  .general__desc {
    font-size: 18px;
  }

  .general__content {
    margin-top: 50px;
    padding: 20px;
  }

  .general__content-col {
    row-gap: 20px;
  }

  .service__item-img {
    width: 200px;
  }

  .service__item-title {
    font-size: 24px;
  }

  .service__item-subtitle {
    font-size: 16px;
  }

  .freedom__image {
    width: 150px;
  }

  .group__container {
    padding: 60px;
  }

  .benefits__item-img {
    height: 90px;
    max-width: 150px;
  }

  .stats__compound-empty {
    padding: 30px;
  }

  .stats__compound-empty_title {
    font-size: 24px;
  }

  .stats__compound-empty_subtitle {
    font-size: 16px;
  }

  .compositions__block {
    row-gap: 20px;
  }

  .compositions__commands {
    grid-gap: 40px;
  }

  .philosophy__title {
    margin-bottom: 40px;
    font-size: 28px;
  }

  .philosophy__left-block {
    row-gap: 15px;
    padding: 20px;
  }

  .philosophy__left-block_title {
    font-size: 26px;
  }

  .philosophy__left-block_text {
    font-size: 16px;
  }

  .philosophy__right {
    row-gap: 15px;
    padding: 20px;
  }

  .philosophy__right-block {
    row-gap: 15px;
    font-size: 16px;
  }

  .logo__container {
    -ms-grid-columns: 400px 1fr;
    grid-template-columns: 400px 1fr;
  }

  .logo__desc {
    row-gap: 15px;
    padding: 20px;
  }

  .history__title {
    font-size: 40px;
  }

  .history__text {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .history__video::before {
    width: 80px;
    height: 80px;
  }

  .laureates__header {
    margin-bottom: 40px;
  }

  .laureates__title {
    font-size: 28px;
  }

  .laureates__form input,
  .laureates__form select {
    height: 42px;
    font-size: 16px;
  }

  .laureates__item-col {
    gap: 15px;
  }

  .laureates__item-tags {
    gap: 15px;
  }

  .laureates__item-tag {
    font-size: 14px;
    padding: 8px 12px;
  }

  .laureates__item-title {
    font-size: 26px;
  }

  .laureates__item-text {
    font-size: 16px;
  }

  .laureates__item-link {
    font-size: 18px;
  }

  .laureates__item-image {
    width: 250px;
    height: 200px;
  }

  .laureates__stats-item_count {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .laureates__stats-item_img {
    width: 50px;
    height: 50px;
  }

  .laureates__stats-item_img img {
    width: 30px;
    height: 30px;
  }

  .laureates__stats-item_title {
    font-size: 16px;
  }

  .achievment__block {
    margin-bottom: 40px;
    gap: 40px;
  }

  .achievment__block-col {
    gap: 20px;
  }

  .achievment__block-tag {
    font-size: 16px;
    padding: 12px 16px;
  }

  .achievment__block-title {
    font-size: 32px;
  }

  .achievment__block-text {
    font-size: 16px;
  }

  .achievment__more {
    row-gap: 20px;
  }

  .achievment__more-title {
    font-size: 26px;
  }

  .achievment__slide {
    width: 400px;
  }

  .achievment__slide-content {
    height: 250px;
  }

  .achievment__slide-title {
    font-size: 22px;
  }
}

@media (max-width: 1650px) {
  .header__nav-list {
    gap: 15px;
  }

  .header__nav-link {
    font-size: 18px;
  }
}

@media (max-width: 1440px) {
  .container {
    max-width: 1240px;
  }

  .content {
    padding: 75px 0;
  }

  .title {
    font-size: 42px;
  }

  .btn {
    font-size: 16px;
    padding: 16px 30px;
  }

  .header__freedom {
    margin-right: 10px;
  }

  .header__nav-list {
    padding-left: 10px;
  }

  .hero__slide-info {
    row-gap: 30px;
  }

  .hero__slide-title {
    font-size: 40px;
  }

  .hero__slide-link {
    font-size: 16px;
    padding: 16px 30px;
  }

  .hero__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 60px;
  }

  .news__header {
    margin-bottom: 30px;
  }

  .news__buttons {
    margin-bottom: 20px;
  }

  .news__button {
    font-size: 16px;
  }

  .news__left {
    width: 450px;
    gap: 20px;
  }

  .news__left-subtitle {
    font-size: 16px;
  }

  .news__sliders {
    padding-right: 100px;
    margin-right: -100px;
  }

  .news__slide {
    width: 400px;
  }

  .news__slide-title {
    font-size: 20px;
  }

  .news__slide-desc {
    font-size: 14px;
  }

  .single__block-desc {
    max-width: unset;
    margin-right: 0;
  }

  .single__block-link {
    position: static;
  }

  .calendar__header {
    margin-bottom: 30px;
  }

  .calendar__slide {
    height: 315px;
    width: 400px;
  }

  .calendar__slide-date {
    padding: 8px 12px;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .calendar__slide-title {
    font-size: 26px;
  }

  .calendar__slide-tag {
    padding: 8px 12px;
    font-size: 14px;
  }

  .calendar__slide-team_image {
    width: 60px;
    height: 90px;
  }

  .calendar__slide-total {
    font-size: 40px;
  }

  .calendar__tabs {
    gap: 40px;
    margin-bottom: 20px;
  }

  .calendar__tabs-item {
    font-size: 16px;
  }

  .standings__tabs {
    gap: 40px;
    margin-bottom: 20px;
  }

  .standings__tabs-item {
    font-size: 16px;
  }

  .team__tabs {
    gap: 40px;
    margin-bottom: 20px;
  }

  .team__tabs-item {
    font-size: 16px;
  }

  .article__date {
    font-size: 16px;
  }

  .article__text {
    font-size: 16px;
  }

  .funshop__tabs {
    gap: 40px;
    margin-bottom: 20px;
  }

  .funshop__tabs-item {
    font-size: 16px;
  }

  .product__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 60px;
  }

  .product__title {
    font-size: 26px;
  }

  .products__item-title {
    font-size: 26px;
  }

  .empty__text {
    font-size: 20px;
  }

  .politics__container {
    font-size: 18px;
  }

  .politics__container h2 {
    font-size: 20px;
  }

  .stats__tabs {
    gap: 40px;
  }

  .stats__tabs-item {
    font-size: 16px;
  }

  .stats__number-header_item {
    font-size: 16px;
  }

  .stats__review-item_title {
    font-size: 24px;
  }

  .staff__tabs {
    gap: 40px;
    margin-bottom: 20px;
  }

  .staff__tabs-link {
    font-size: 16px;
  }

  .staff__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .general__title {
    padding-left: 40px;
    font-size: 24px;
  }

  .general__title::before {
    top: 86px;
  }

  .general__image {
    width: 300px;
  }

  .general__subtitle {
    font-size: 22px;
  }

  .general__desc {
    font-size: 16px;
  }

  .service__items {
    grid-gap: 20px;
  }

  .service__item {
    height: 250px;
  }

  .amount__items {
    grid-gap: 20px;
  }

  .philosophy__container {
    padding-top: 75px;
  }

  .philosophy__left-block_title {
    font-size: 24px;
  }
}

@media (max-width: 1360px) {
  .header__nav {
    display: none;
  }

  .header__socials {
    display: none;
  }

  .header__lang {
    margin-left: auto;
  }
}

@media (max-width: 1240px) {
  .container {
    max-width: 992px;
  }

  .content {
    padding: 50px 0;
  }

  .news__buttons {
    flex-wrap: nowrap;
    overflow: auto;
    padding-bottom: 10px;
  }

  .news__button {
    white-space: nowrap;
  }

  .news__block {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .news__left {
    width: 100%;
    gap: 10px;
    flex-direction: column-reverse;
  }

  .news__left-cursor {
    width: 30px;
    height: 30px;
  }

  .news__sliders {
    padding-right: 0;
    margin-right: 0;
    overflow: unset;
  }

  .news__slide {
    width: 350px;
    padding-bottom: 20px;
  }

  .news__slide-date {
    font-size: 12px;
    padding: 6px 10px;
  }

  .news__slide-title {
    font-size: 16px;
  }

  .news__slide-more {
    font-size: 14px;
  }

  .partner__general {
    width: 250px;
  }

  .partner__item {
    max-width: 150px;
  }

  .team__players-cards {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .team__trainer-cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .pagination li a,
  .pagination li span {
    font-size: 12px;
  }

  .funshop__item-tag {
    font-size: 12px;
  }

  .funshop__item-price {
    font-size: 16px;
  }

  .funshop__item-name {
    font-size: 20px;
  }

  .product__container {
    gap: 30px;
  }

  .product__left {
    width: 300px;
  }

  .product__right {
    row-gap: 24px;
  }

  .product__tag {
    font-size: 12px;
  }

  .product__price {
    font-size: 20px;
  }

  .product__sizes-btn {
    font-size: 14px;
  }

  .product__type-btn {
    font-size: 14px;
  }

  .product__customize-fields select,
  .product__customize-fields input {
    height: 40px;
    padding: 6px 12px;
    font-size: 14px;
  }

  .product__customize-fields .customize-2 {
    -ms-grid-column-span: 2;
    grid-column: 2 span;
  }

  .products__item-tag {
    font-size: 12px;
  }

  .products__item-price {
    font-size: 16px;
  }

  .products .product__elems {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .contact__map {
    height: 300px;
  }

  .stats__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .stats__review-item_title {
    font-size: 20px;
  }

  .staff__item-name {
    font-size: 18px;
  }

  .general__title::before {
    top: 62px;
  }

  .service__item {
    -ms-grid-column-span: 3;
    grid-column: 3 span;
  }

  .group__container {
    padding: 25px;
    row-gap: 15px;
  }

  .group__text {
    font-size: 18px;
  }

  .amount__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .amount__item {
    height: 130px;
    row-gap: 10px;
  }

  .amount__item-title {
    font-size: 14px;
  }

  .compositions__commands {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .philosophy__container {
    padding-top: 50px;
  }

  .logo__container {
    -ms-grid-columns: 200px 1fr;
    grid-template-columns: 200px 1fr;
  }

  .laureates__container {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .laureates__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .laureates__stats-items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
}

@media (max-width: 1200px) {
  .alert--width {
    width: 370px;
  }

  .alert--content {
    padding: 25px;
  }

  .alert--img__item svg {
    width: 75px;
    height: 75px;
  }

  .alert-text {
    margin-top: 10px;
  }

  .alert--title {
    font-size: 24px;
  }

  .alert--subtitle {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  body {
    font-size: 16px;
  }

  .title {
    font-size: 32px;
  }

  .footer__block {
    margin-bottom: 30px;
    padding: 25px;
  }

  .footer__socials {
    gap: 15px;
  }

  .footer__nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .breadcrumbs__container {
    padding-bottom: 20px;
  }

  .single__block-desc {
    font-size: 18px;
  }

  .calendar__slide {
    width: 350px;
    height: 275px;
    padding: 15px;
  }

  .calendar__slide::before {
    width: 15px;
    height: 15px;
  }

  .calendar__slide-title {
    font-size: 20px;
  }

  .calendar__slide-team_image {
    width: 40px;
    height: 60px;
  }

  .calendar__slide-team_name {
    font-size: 20px;
  }

  .calendar__tabs {
    gap: 20px;
  }

  .preview__container {
    padding: 50px 0;
  }

  .preview__image {
    width: 200px;
    height: 300px;
  }

  .command__btns {
    right: 16px;
    width: 150px;
  }

  .command__btn {
    font-size: 12px;
    padding: 12px;
    width: 150px;
  }

  .command__item-elems {
    gap: 25px;
  }

  .command__item-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    height: 60px;
  }

  .standings__tabs {
    gap: 20px;
  }

  .team__tabs {
    gap: 20px;
  }

  .team__trainer-pos {
    font-size: 16px;
  }

  .team__trainer-name {
    font-size: 20px;
  }

  .employee__container {
    flex-direction: column;
    align-items: flex-start;
  }

  .news__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px;
  }

  .pagination li a,
  .pagination li span {
    width: 25px;
    height: 25px;
  }

  .funshop__tabs {
    gap: 20px;
  }

  .funshop__items {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .product__container {
    flex-direction: column;
  }

  .product__left {
    margin: 0;
  }

  .product__elem svg {
    height: 2px;
  }

  .products__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .products__item {
    gap: 40px;
    flex-direction: column;
  }

  .products__item-img {
    width: 100%;
  }

  .products__item-img::before {
    padding-top: 52%;
  }

  .stats__tabs {
    gap: 20px;
  }

  .staff__tabs {
    gap: 20px;
  }

  .staff__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .staff__item {
    padding: 20px 10px;
  }

  .staff__item-img {
    width: 120px;
    height: 150px;
  }

  .general__title {
    padding-left: 0;
    margin-bottom: 30px;
    font-size: 20px;
  }

  .general__title::before {
    display: none;
  }

  .general__block {
    flex-direction: column;
    gap: 20px;
  }

  .general__subtitle {
    font-size: 18px;
  }

  .general__desc {
    font-size: 14px;
  }

  .general__content {
    flex-direction: column;
  }

  .general__content-contats {
    flex-direction: column;
    align-items: flex-start;
  }

  .general__content-contact:nth-child(1) {
    border: none;
  }

  .benefits__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .benefits__item {
    height: 200px;
  }

  .benefits__item-img {
    height: 60px;
  }

  .benefits__item-title {
    font-size: 14px;
  }

  .philosophy__title {
    margin-bottom: 25px;
  }

  .philosophy__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .history__title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .history__text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .laureates__header {
    margin-bottom: 25px;
  }

  .laureates__stats-items {
    margin-top: 20px;
  }

  .achievment__block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .achievment__block-title {
    font-size: 26px;
  }

  .achievment__more-title {
    font-size: 20px;
  }

  .achievment__slide {
    width: 320px;
  }

  .achievment__slide-content {
    height: 200px;
  }
}

@media (max-width: 992.9px) {
  .container {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 26px;
  }

  .burger {
    margin-left: 20px;
  }

  .header {
    top: 0;
  }

  .header__container {
    padding: 20px;
    margin: 0;
    border-radius: 0;
    background: #151515;
  }

  .header__freedom {
    width: 90px;
    height: 35px;
  }

  .header__logo {
    width: 80px;
    height: 26px;
  }

  .menu__block {
    padding: 16px;
    border-radius: 0;
    padding-top: 40px;
  }

  .header-space {
    padding-top: 75px;
  }

  .hero {
    margin-right: 0;
    margin-left: 0;
  }

  .hero__slide-title {
    font-size: 32px;
  }

  .news__slide {
    width: 300px;
  }

  .single__block {
    padding: 20px;
    gap: 25px;
    margin: 0;
    min-height: 500px;
    height: unset;
  }

  .team__players-cards {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .team__trainer-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .product__elems {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats__match-top {
    flex-direction: column;
    gap: 30px;
  }

  .stats__match-time:nth-of-type(3) .stats__match-event {
    bottom: 30px;
  }

  .stats__match-event {
    bottom: -30px;
  }

  .stats__match-event_icon {
    width: 20px;
    height: 20px;
  }

  .stats__match-event_time {
    font-size: 12px;
    padding: 4px;
  }

  .stats__move {
    padding: 20px 10px;
  }

  .stats__right-title {
    font-size: 26px;
  }

  .stats__move-block_row {
    -ms-grid-columns: 1fr 48px 1fr;
    grid-template-columns: 1fr 48px 1fr;
  }

  .stats__move-block_name {
    font-size: 12px;
  }

  .stats__move-block_time {
    font-size: 12px;
    margin: 0 6px;
  }

  .stats__tabs {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats__compound-block {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .stats__number-row_header span {
    font-size: 12px;
  }

  .stats__number-row_header div {
    font-size: 12px;
  }

  .stats__review {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .stats__review-item_img {
    margin-bottom: 10px;
  }

  .stats__review-item_title {
    font-size: 16px;
  }

  .service__items {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .logo__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .laureates__stats-items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .team__players-cards {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .news__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .funshop__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .product__left {
    width: 100%;
  }

  .contact__left {
    padding: 25px 15px;
  }

  .contact__right {
    padding: 25px 15px;
  }

  .contact__item {
    width: 100%;
  }

  .general__content-img {
    width: 100%;
    height: auto;
  }

  .amount__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }

  .laureates__item {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .laureates__item-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 500px) {
  .alert--content {
    width: 92%;
  }

  .alert--img__item svg {
    width: 60px;
    height: 60px;
  }

  .alert--title {
    font-size: 22px;
  }
}

/* Toast Overrides - Super Simple and Elegant */
.alert--fixed {
  position: fixed !important;
  width: auto !important;
  height: auto !important;
  top: 20px !important;
  right: 20px !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 99999 !important;
  background: transparent !important;
}

.alert--fixed .alert--bg {
  display: none !important;
}

.alert--fixed .alert--content {
  position: relative !important;
  width: 320px !important;
  max-width: calc(100vw - 40px) !important;
  margin: 0 !important;
  padding: 16px 20px 16px 50px !important;
  border-radius: 8px !important;
  background-color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  border-left: 5px solid #4ad395 !important;
  animation: toastSlideIn 0.3s ease-out !important;
}

.alert--fixed.alert--error .alert--content {
  border-left-color: #f81919 !important;
}

.alert--fixed.alert--warning .alert--content {
  border-left-color: #e5e75d !important;
}

.alert--fixed .alert--img__item {
  position: absolute !important;
  left: 15px !important;
  top: 18px !important;
}

.alert--fixed .alert--img__item svg {
  width: 24px !important;
  height: 24px !important;
}

.alert--fixed .alert--x {
  position: absolute !important;
  width: 20px !important;
  height: 20px !important;
  padding: 2px !important;
  right: 10px !important;
  top: 10px !important;
}

.alert--fixed .alert-text {
  margin-top: 0 !important;
  text-align: left !important;
}

.alert--fixed .alert--title {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #333333 !important;
  line-height: 1.2 !important;
}

.alert--fixed .alert--subtitle {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #666666 !important;
  margin-top: 4px !important;
  padding-top: 0 !important;
  border-top: none !important;
  line-height: 1.4 !important;
}

@keyframes toastSlideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}