*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.body {
  font-family: "Open Sans", sans-serif;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}
button {
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.header {
  height: 80px;
  background: #001e28;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.header-logo {
  height: 70%;
}
.header-nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 9999;
}

.burger span {
  display: block;
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s;
}

/* Анімація бургер-меню */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

.footer {
  background: #001e28;
  padding-bottom: 48px;
  padding-top: 48px;
}
.f-row {
  display: flex;
  flex-direction: row;
}
.space-between {
  justify-content: space-between;
}
.aic {
  align-items: center;
}
.h-100per {
  height: 100%;
}
.c-gap-24 {
  column-gap: 24px;
}
.header-link {
  position: relative;
  display: inline-block;
  color: rgb(191, 162, 94);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  padding-bottom: 2px;
}
.header-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(191, 162, 94);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header-link:hover::after {
  transform: scaleX(1);
}
.header-link--active::after {
  transform: scaleX(1);
}
.first-screen {
  position: relative;
  padding-bottom: 96px;
  padding-top: 96px;
  background: rgba(0, 0, 0, 0.45)
    url("/images/360_F_814745556_D0MT3UYUJ29HqxsdCj00O6XiR6pyNpSv.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: rgb(255, 255, 255);
  background-position: right center;
}
.first-screen::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 30, 40, 0.6);
}
.first-screen-content {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 3;
  width: 540px;
}
.f-col {
  display: flex;
  flex-direction: column;
}
.mb-48 {
  margin-bottom: 48px;
}
.mb-0 {
  margin-bottom: 0;
}
.first-screen-link {
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: 0.3s;
  font-size: 36px;
  font-weight: 600;
  font-variant: small-caps;
}
.first-screen-link:hover {
  color: rgb(191, 162, 94);
}
.grid-3x1-g24 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
}
.fz-24 {
  font-size: 24px;
}
.fw-600 {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.event-item {
  padding-bottom: 16px;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  background: #001e28;
  border-radius: 0px 0px 8px 8px;
  color: rgb(255, 255, 255);
}
.grid-80-20per-g24 {
  display: grid;
  grid-template-columns: calc(80% - 24px) 20%;
  grid-gap: 24px;
}
.aie {
  align-items: flex-end;
}
.color-gold {
  color: rgb(191, 162, 94);
}
.mb-24 {
  margin-bottom: 24px;
}
.team-container {
  padding-bottom: 12px;
  padding-top: 12px;
  border-style: solid;
  border-width: 0;
  border-color: rgb(255, 255, 255);
  border-top-width: 1px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.team-name {
  display: flex;
  align-items: center;
  column-gap: 12px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: 0.3s;
  font-size: 18px;
  font-weight: 600;
}
.team-name:hover {
  color: rgb(191, 162, 94);
}
.img-36-contain {
  height: 36px;
}
.fz-20 {
  font-size: 20px;
}
.page-subtitle {
  text-transform: uppercase;
  color: rgb(0, 30, 40);
  font-family: Impact;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.main-news-grid {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.main-news {
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  color: rgb(255, 255, 255);
}
.main-news:hover {
  color: rgb(191, 162, 94);
}
.img-100per-cover {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.main-big-news {
  grid-area: 1 / 1 / 3 / 3;
}
.main-news-desc {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle,
    rgba(0, 30, 40, 0.6) 0%,
    rgba(0, 30, 40, 0.7) 100%
  );
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.main-news-desc-title {
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}
.main-news-desc-title--big {
  font-size: 24px;
  font-weight: 600;
  transition: 0.3s ease;
}
.main-news-desc-subtitle {
  font-size: 14px;
  font-weight: 600;
}
.main-news-desc-date {
  font-size: 14px;
  font-weight: 600;
}
.fz-36 {
  font-size: 32px;
}
.main-news-list {
  grid-area: 1 / 4 / 3 / 5;
}
.main-news-list-items {
  max-height: 540px;
  overflow-y: auto;
}
.news-list-title {
  font-size: 18px;
  font-weight: 600;
}
.main-news-list-title {
  color: rgb(0, 30, 40);
  text-transform: uppercase;
  font-family: Impact;
  letter-spacing: 2px;
  padding-bottom: 24px;
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
  border-color: rgba(0, 30, 40, 0.5);
}
.news-list-num {
  border-style: solid;
  border-width: 1px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  font-size: 20px;
  font-weight: 600;
  min-width: 48px;
  min-height: 48px;
}
.color-blackblue {
  color: rgb(0, 30, 40);
}
.main-news-list-link {
  color: rgb(0, 30, 40);
  text-decoration: none;
  transition: 0.3s;
}
.main-news-list-link:hover {
  color: rgb(191, 162, 94);
}
.jcc {
  justify-content: center;
}
.link-more {
  border-radius: 8px;
  border-style: solid;
  border-width: 1px;
  padding-bottom: 4px;
  padding-top: 4px;
  padding-left: 8px;
  padding-right: 8px;
  color: rgb(0, 30, 40);
  text-decoration: none;
  transition: 0.3s;
  font-weight: 600;
}
.link-more:hover {
  background: #001e28;
  color: rgb(191, 174, 37);
}
.bg-blueblack {
  background: #001e28;
}
.p-t-b-48 {
  padding-bottom: 48px;
  padding-top: 48px;
}
.page-subtitle-gold {
  font-family: Impact;
  letter-spacing: 2px;
  color: rgb(223, 174, 37);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.grid-4x1-g24 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}
.main-video-img {
  height: 202px;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  display: block;
  margin-bottom: 8px;
}
.main-video-img:hover {
}
.main-video-absolute {
  background: radial-gradient(
    circle,
    rgba(0, 30, 40, 0.5) 0%,
    rgba(0, 30, 40, 0.5) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-video-absolute:hover {
  transform: scale(1.1);
}
.main-video-title {
  font-size: 18px;
  font-weight: 600;
}
.img-64-contain {
  height: 64px;
  width: 64px;
  object-fit: contain;
}
.main-video-desc {
  display: flex;
  position: relative;
  flex-direction: column;
  row-gap: 4px;
  color: rgb(223, 174, 37);
  text-decoration: none;
  transition: 0.3s;
}
.main-video-desc:hover {
  color: rgb(255, 255, 255);
}
.rank-stand {
  border-radius: 12px;
  border-style: solid;
  border-width: 3px;
  border-color: rgb(190, 190, 190);
}
.team-stand-head {
  padding-left: 8px;
  padding-right: 8px;
  padding-bottom: 8px;
  padding-top: 8px;
  border-style: solid;
  border-width: 0;
  border-bottom-width: 3px;
  border-color: rgb(223, 174, 37);
  font-size: 18px;
  font-weight: 600;
}
.team-stand-row {
  display: grid;
  grid-template-columns: 10% 70% 10% 10%;
  padding-left: 8px;
  padding-right: 8px;
  font-weight: 600;
  color: rgb(0, 30, 40);
  align-items: center;
  padding-bottom: 16px;
  padding-top: 16px;
}
.team-stand-row:hover {
}
.team-name-stand {
  display: flex;
  align-items: center;
  column-gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: rgb(0, 30, 40);
  text-decoration: none;
  transition: 0.3s;
}
.team-name-stand:hover {
  color: rgb(142, 104, 0);
}
.team-img-stand {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.bg-grey-opacity {
  background: rgba(198, 198, 198, 0.8);
}
.team-card {
  border-radius: 12px;
  background: #001e28;
  display: flex;
  align-items: center;
  height: 400px;
  justify-content: center;
  flex-direction: column;
  row-gap: 16px;
  padding: 16px;
  text-align: center;
}
.team-img {
  height: 96px;
  width: 96px;
  border-radius: 100%;
  overflow: hidden;
}
.team-card-link {
  font-size: 24px;
  text-decoration: none;
  transition: 0.3s;
  color: rgb(255, 255, 255);
  font-weight: 600;
  text-transform: uppercase;
}
.team-card-link:hover {
  color: rgb(223, 174, 37);
}
.team-card-desc {
  height: 92px;
  align-items: center;
  display: flex;
  flex-direction: column;
}
.team-card-desc-value {
  color: rgb(191, 162, 94);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}
.team-profile {
  border-radius: 12px;
  color: rgb(0, 30, 40);
  text-decoration: none;
  transition: 0.3s;
  background: #ffffff;
  border-style: solid;
  border-width: 1px;
  padding-bottom: 4px;
  padding-top: 4px;
  padding-right: 12px;
  padding-left: 12px;
  border-color: rgb(255, 255, 255);
  font-weight: 600;
}
.team-profile:hover {
  color: rgb(191, 174, 37);
  background: transparent;
}
.gallery-container {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.gallery-item {
  display: block;
  height: 280px;
  opacity: 0.9;
  overflow: hidden;
  position: relative;
  transition: 0.3s;
}
.gallery-item:hover {
  opacity: 1;
}
.gallery-1 {
  grid-area: 1 / 1 / 2 / 3;
}
.gallery-2 {
  grid-area: 1 / 3 / 2 / 5;
}
.gallery-3 {
  grid-area: 1 / 5 / 2 / 7;
}
.gallery-4 {
  grid-area: 2 / 1 / 3 / 4;
}
.gallery-5 {
  grid-area: 2 / 4 / 3 / 7;
}
.page-title {
  border-color: rgb(191, 162, 94);
  color: rgb(191, 162, 94);
  padding-left: 12px;
  display: block;
  border-style: solid;
  border-width: 0;
  border-left-width: 4px;
}
.pag-arrow {
  height: 48px;
  width: 56px;
  padding-left: 8px;
  transition: 0.3s;
}
.pag-arrow:hover {
  padding-left: 0;
  padding-right: 8px;
  align-items: center;
  display: flex;
}
.img-48-contain {
  height: 48px;
}
.rotate-180 {
  rotate: 180deg;
}
.calendar-head {
  align-items: center;
  border-style: solid;
  border-color: rgb(0, 30, 40);
  border-width: 0;
  border-top-width: 4px;
  border-bottom-width: 1px;
  display: grid;
  font-size: 20px;
  font-variant: small-caps;
  font-weight: 600;
  grid-template-columns: repeat(7, 1fr);
  height: 60px;
  text-align: center;
}
.calendar-matches {
  background-color: rgba(0, 0, 0, 0);
  display: grid;
  border-style: solid;
  border-color: rgb(0, 30, 40);
  border-width: 0;
  border-top-width: 1px;
  border-left-width: 1px;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
}
.calendar-day {
  border-color: rgb(0, 30, 40);
  border-style: solid;
  border-width: 0;
  border-right-width: 1px;
  border-bottom-width: 1px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: 600;
  height: 205px;
  padding-bottom: 16px;
  padding-top: 16px;
  position: relative;
  text-align: center;
  background-color: rgba(0, 30, 40, 0.15);
}
.opacity-60per {
  opacity: 0.6;
}
.c-gap-12 {
  column-gap: 12px;
}
.d-f-aic-jcc-g12 {
  align-items: center;
  display: flex;
  justify-content: center;
  column-gap: 12px;
}
.img-98-contain {
  height: 98px;
  width: 98px;
  object-fit: contain;
}
.contact-block {
  align-items: center;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  border: 1px solid #001e28;
}
.t-a-c {
  text-align: center;
}
.h-480 {
  height: 480px;
}
.grid-30-70per {
  display: grid;
  grid-template-columns: 30% 70%;
}
.video-post-aside-card {
  display: flex;
  font-weight: 600;
  column-gap: 16px;
  width: 100%;
  padding-bottom: 12px;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 12px;
  color: rgb(255, 255, 255);
  transition: 0.3s;
  text-decoration: none;
}
.video-post-aside-card:hover {
  color: rgb(191, 162, 94);
  background-color: rgb(0, 26, 34);
}
.video-post-aside-img {
  width: 45%;
  overflow: hidden;
  position: relative;
}
.w-55per {
  width: 55%;
}
.video-post-link-big {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.video-post-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.video-post-item--big {
  flex: 2;
  overflow: hidden;
  position: relative;
}
.video-post-img--big {
  height: 100%;
  width: 100%;
  object-fit: cover;
  min-height: 200px;
}
.color-white {
  color: rgb(255, 255, 255);
}
.grid-65-35per-g24 {
  grid-template-columns: 65% calc(35% - 24px);
  display: grid;
  grid-gap: 24px;
}
.pos-relative {
  position: relative;
}
.sticky-top-24 {
  position: sticky;
  top: 24px;
}
.post-img-box {
  border-radius: 8px;
  height: 480px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.post-img-desc {
  background: #001e28;
  position: absolute;
  height: 36px;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-left: 16px;
  padding-right: 16px;
  color: rgb(191, 162, 94);
}
.post-small-img {
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

.player-top-info {
  display: flex;
  gap: 24px;
  align-items: center;
}
.player-top-info-img {
  flex: 1;
}
.player-top-info-stats {
  flex: 3;
}

.grid-2x2-g24 {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 280px);
}
.player-up-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.player-up-stats--4-col {
  grid-template-columns: repeat(4, 1fr);
}
.player-up-stats-item {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  border-style: solid;
  border-width: 0;
  border-left-width: 1px;
  border-color: rgba(255, 255, 255, 0.5);
  padding-left: 12px;
  padding-right: 12px;
}
.player-up-stats-item:first-child {
  border-left-width: 0;
}
.player-up-stats-label {
  font-size: 18px;
  text-transform: capitalize;
}
.player-up-stats-value {
  font-size: 20px;
  font-weight: 600;
}
.player-up-stats-value-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.text-capit {
  text-transform: capitalize;
}
.player-stats-img {
  /* position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: -48px;
  height: 320px;
  object-fit: contain; */
  height: 200px;
  width: 100%;
  object-fit: contain;
}
.player-stats-img:first-child {
}
.bor-rad-8 {
  border-radius: 8px;
}
.padding-16 {
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
}
.stats-card {
  border-radius: 8px;
  border-style: solid;
  border-color: rgba(0, 30, 40, 0.2);
  border-width: 1px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  background-image: url("../images/3012440fc7bd950ccf7d6a9def053ce8.webp");
  background-repeat: no-repeat;
  background-size: 380px;
  background-position-x: 40px;
  background-position-y: 40px;
}
.stats-card-title {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
}
.mb-16 {
  margin-bottom: 16px;
}
.stats-item-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  padding-top: 12px;
  border-style: solid;
  border-width: 0;
  border-color: rgba(0, 30, 40, 0.5);
  border-top-width: 1px;
  font-weight: 600;
  font-size: 18px;
}
.fz-14 {
  font-size: 14px;
}
.img-100per-contain {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.fw-700 {
  font-weight: 700;
}
.grid-2x1-g24 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
}
.review-inner {
  display: flex;
  grid-gap: 24px;
}
.review-main {
  flex: 2;
}
.review-aside {
  flex: 1;
}
.r-gap-8 {
  row-gap: 8px;
}
.head-to-head-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr 2fr;
  padding-left: 16px;
  padding-right: 16px;
  border-style: solid;
  border-width: 0;
  border-color: rgba(0, 30, 40, 0.5);
  border-bottom-width: 1px;
  text-align: center;
  font-size: 20px;
  padding-bottom: 8px;
  padding-top: 8px;
  font-weight: 600;
}
.jc-end {
  justify-content: flex-end;
}
.fz-28 {
  font-size: 28px;
}
.img-192-contain {
  height: 192px;
}
.ai-start {
  align-items: flex-start;
}
.ai-end {
  align-items: flex-end;
}
.fz-48 {
  font-size: 48px;
}
.results-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.results-team-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.play-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.videos-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
}
.rank-stand-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-logo {
  display: block;
  height: 80px;
}
.footer-menu {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.menu-link {
  color: #fff;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.table-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
}
._table {
  width: 100%;
}
.matches-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.matches-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px;
  background: #001e28;
  border-radius: 8px;
}
.matches-card-body {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 16px;
}
.matches-card-team {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  color: #fff;
}
.matches-card-team:hover {
  color: rgb(223, 174, 37);
}
.matches-card-team:first-child {
  flex-direction: column-reverse;
}
.matches-team-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.matches-team-name {
  font-size: 18px;
  font-weight: 600;
}
.matches-time {
  color: #fff;
  font-size: 20px;
}
.headlines-news-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.headlines-news-card {
  display: flex;
  flex-direction: column;
  background: #001e28;
  border-radius: 8px;
  color: #fff;
  overflow: hidden;
}
.headlines-news-card:hover {
  color: #dfae25;
}
.headlines-news-card-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
}
.headlines-news-title {
  font-size: 18px;
  font-weight: 600;
}
/* Breadcrumbs */
.breadcrumbs {
  padding: 0;
}
.breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs-list-item {
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
.breadcrumbs-list-item + .breadcrumbs-list-item::before {
  content: "|";
  margin: 0 12px;
  color: #fff;
  font-weight: 400;
}
.breadcrumbs-list-item-link {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  padding: 5px 0;
}
.breadcrumbs-list-item-link:hover {
  color: #bfa25e;
}
.breadcrumbs-list-item-active {
  color: #bfa25e;
  font-weight: 700;
}
.pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.pagination a {
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 4px;
}
.pagination--light a {
  background: #001e28;
  color: #fff;
}
.pagination a:hover {
  background: #dfae25;
  color: #000;
}
.pagination .active {
  background: #dfae25;
  color: #000;
}
.pagination--dark a {
  border: 2px solid #dfae25;
  color: #fff;
}
.review-news-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-video-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.review-match {
  display: flex;
  gap: 24px;
  align-items: center;
}
.review-team-name {
  font-size: 36px;
  font-weight: 700;
}
.review-team-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.review-team-score {
  font-size: 36px;
}
.review-match-team {
  display: flex;
  align-items: center;
  column-gap: 12px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.review-stats-team-name {
  font-size: 24px;
  font-weight: 600;
}
.review-stats-img {
  height: 40px;
  width: 40px;
  object-fit: contain;
}
.review-stats-value {
  font-size: 24px;
  font-weight: 600;
}
.review-stats-player {
  display: flex;
  align-items: center;
  column-gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: rgb(0, 30, 40);
  text-decoration: none;
  transition: 0.3s;
  justify-content: center;
}
.review-stats-player-name-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.review-stats-player-name {
  font-size: 20px;
}
.review-stats-player-surname {
  font-size: 24px;
  font-weight: 700;
}
.review-stats-playe-img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}
.team-stand-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.filters-container {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filters-item {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  padding: 10px 16px;
  background: #001e28;
  border-radius: 6px;

  color: #fff;
  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  min-width: 180px;

  background-image: url("data:image/svg+xml;utf8,<svg fill='%23ffc300' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
}
.filters-item:focus {
  outline: none;
}
.contacts-inner {
  display: flex;
  gap: 24px;
}
.contacts-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contacts-form {
  flex: 1;
}
.contacts-info-item {
  display: flex;
  gap: 16px;
  align-items: center;
}
.contacts-info-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contacts-info-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.contacts-info-label {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  color: #bfa25e;
}
.contacts-info-value-wrap {
  display: flex;
  flex-direction: column;
}
.contacts-info-value-link:hover {
  color: #bfa25e;
}

.contacts-form__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contacts-form__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #001e28;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

/* Field wrapper */
.contacts-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contacts-form__label {
  font-size: 14px;
  color: #cfd4da;
}

/* Inputs */
.contacts-form__input,
.contacts-form__textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contacts-form__input:focus,
.contacts-form__textarea:focus {
  border-color: #bfa25e;
  box-shadow: 0 0 0 3px rgba(255, 195, 0, 0.15);
}

.contacts-form__textarea {
  resize: vertical;
}

/* Button */
.contacts-form__button {
  padding: 12px 18px;
  border: none;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgb(255, 255, 255);
  color: rgb(0, 30, 40);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.contacts-form__button:hover {
  color: rgb(191, 174, 37);
  background: transparent;
}

.contacts-form__button:active {
  transform: translateY(2px);
}
.table-squad-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.team-videos-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-news-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
.team-inner {
  display: flex;
  gap: 24px;
}
.team-main,
.player-main {
  flex: 2;
  min-width: 0;
  overflow: hidden;
}
.video-post-inner {
  display: flex;
  align-items: stretch;
}
.team-main .swiper,
.player-aside .swiper {
  width: 100%;
}
.team-aside {
  flex: 1;
}
.team-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-top-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.team-top-title {
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
}
.trophies-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trophies-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0, 30, 40, 0.2);
  border-radius: 8px;
  padding: 16px;
}
.trophies-card:hover {
  color: rgb(191, 162, 94);
}
.trophies-card-content {
  text-align: center;
  text-transform: capitalize;
}
.trophies-card-img {
  width: 100%;
  height: 245px;
  object-fit: contain;
}
.trophies-card-title {
  font-size: 20px;
  font-weight: 600;
}
.trophies-card-subtitle {
  margin-bottom: 0;
  color: rgb(191, 162, 94);
}
.post-wrap-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.swiper {
  width: 100%;
}
.matches .swiper-slide,
.video-post .swiper-slide {
  display: flex;
}
.video-post .swiper-slide {
  height: auto;
}
.swiper-wrapper {
  gap: 0 !important;
}

@media (max-width: 1200px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background: #001e28;
    overflow-y: auto;
    padding-top: 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    z-index: 999;
  }

  .header-nav.active {
    transform: translateX(0);
  }

  .header-nav-list {
    flex-direction: column;
    text-align: center;
  }

  .burger {
    display: flex;
  }

  .main-news-grid {
    grid-template-columns: 2fr 1fr;
  }

  .main-big-news {
    grid-area: 1 / 1 / 3 / 2;
  }

  .main-news-grid > a.main-news:nth-child(2) {
    grid-area: 1 / 2 / 2 / 3;
  }

  .main-news-grid > a.main-news:nth-child(4) {
    grid-area: 2 / 2 / 3 / 3;
  }

  .main-news-list {
    grid-area: 3 / 1 / 4 / 3;
  }
  .videos-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .team-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .headlines-news-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .review-inner {
    flex-direction: column-reverse;
  }
  .review-video-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .matches-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  .team-inner {
    flex-direction: column;
  }
  .grid-65-35per-g24 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .main-news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .main-big-news {
    grid-area: 1 / 1 / 2 / 3;
  }

  .main-news-grid > a.main-news:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
  }

  .main-news-grid > a.main-news:nth-child(4) {
    grid-area: 2 / 2 / 3 / 3;
  }

  .main-news-list {
    grid-area: 3 / 1 / 4 / 3;
  }
  .videos-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .rank-stand-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  ._table {
    width: 1000px;
  }
  .headlines-news-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-team-name,
  .review-team-score {
    font-size: 28px;
  }
  .matches-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .player-up-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .video-post-inner {
    flex-direction: column-reverse;
  }
}
@media (max-width: 768px) {
  .rank-stand-inner {
    grid-template-columns: 1fr;
  }
  .team-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .first-screen-link {
    font-size: 32px;
  }
  .main-news-desc-title--big,
  .team-card-link {
    font-size: 22px;
  }
  .main-news {
    min-height: 260px;
  }
  .review-video-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-match-team {
    flex-direction: column;
  }
  .review-match-team:last-child {
    flex-direction: column-reverse;
  }
  .review-stats-player {
    flex-direction: column;
  }
  .review-stats-player:last-child {
    flex-direction: column-reverse;
  }
  .review-stats-player-name-wrap {
    align-items: center;
    row-gap: 0;
  }

  .review-stats-player-surname,
  .review-stats-team-name {
    font-size: 22px;
  }
  .review-stats-img {
    width: 32px;
    height: 32px;
  }
  .review-team-name,
  .review-team-score {
    font-size: 24px;
  }
  .results-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .contacts-inner {
    flex-direction: column;
  }
  .player-up-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .team-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .team-videos-cards,
  .post-wrap-images {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .table-squad-inner {
    grid-template-columns: 1fr;
  }
  .team-news-cards {
    gap: 16px;
  }
  .post-small-img--big {
    grid-column: span 2;
    min-height: 240px;
  }
}
@media (max-width: 576px) {
  .main-news-grid,
  .review-news-cards,
  .review-video-cards {
    grid-template-columns: 1fr;
  }

  .main-news-grid > * {
    grid-area: auto !important;
  }
  .main-big-news {
    order: 1;
  }
  .main-news:nth-of-type(2) {
    order: 2;
  }
  .main-news:nth-of-type(3) {
    order: 3;
  }
  .main-news-list {
    order: 4;
  }
  .videos-cards {
    grid-template-columns: 1fr;
  }
  .team-cards {
    grid-template-columns: 1fr;
  }
  .first-screen-content {
    width: 100%;
  }
  .headlines-news-cards,
  .team-stats,
  .team-videos-cards,
  .team-news-cards {
    grid-template-columns: 1fr;
  }
  .first-screen-link {
    font-size: 28px;
  }
  .main-news-desc-title--big,
  .review-stats-player-name,
  .head-to-head-grid {
    font-size: 18px;
  }
  .team-card-link,
  .review-stats-player-surname,
  .review-stats-team-name {
    font-size: 20px;
  }
  .review-stats-value {
    font-size: 22px;
  }

  .review-team-img {
    width: 40px;
    height: 40px;
  }
  .matches-cards {
    grid-template-columns: 1fr;
  }
  .results-cards {
    grid-template-columns: 1fr;
  }
  .header-nav {
    width: 100%;
  }
  .player-top-info {
    flex-direction: column;
  }
  .player-top-info-img {
    flex: auto;
  }
  .player-stats-img {
    height: 280px;
  }
}
@media (max-width: 480px) {
  .review-match {
    flex-direction: column;
    margin-left: -12px;
  }
  .review-match-team,
  .review-match-team:last-child {
    flex-direction: row;
  }
  .review-team-name,
  .review-team-score {
    font-size: 22px;
  }
  .review-stats-value {
    font-size: 20px;
  }
  .head-to-head-grid,
  .player-up-stats-label {
    font-size: 16px;
  }
  .filters-item {
    min-width: 100%;
  }
  .team-top-img {
    width: 48px;
    height: 48px;
  }
  .team-top-title {
    font-size: 22px;
  }
  .player-up-stats-value {
    font-size: 18px;
  }
  .post-img-box {
    height: 300px;
  }
}

@media (max-width: 425px) {
  .pagination a.page {
    display: none;
  }

  .pagination a.active {
    display: inline-block;
  }
  .pagination a {
    padding: 8px 14px;
  }
  .player-up-stats {
    grid-template-columns: 1fr;
  }
  .post-wrap-images {
    grid-template-columns: 1fr;
  }
  .post-small-img--big {
    grid-column: auto;
    min-height: auto;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 14px;
  }
  .review-stats-team-name,
  .review-stats-player-surname {
    font-size: 18px;
  }

  .team-name,
  .main-news-desc-title,
  .main-news-desc-title--big,
  .news-list-title,
  .matches-team-name,
  .main-video-title,
  .team-stand-head,
  .team-name-stand,
  .headlines-news-title,
  .team-card-desc-value,
  .matches-time,
  .team-card-link,
  .review-stats-value,
  .review-stats-player-name,
  .contacts-info-label,
  .player-up-stats-value,
  .player-up-stats-value,
  .stats-item-row,
  .stats-card-title {
    font-size: 16px;
  }

  .team-img {
    width: 88px;
    height: 88px;
  }
  .head-to-head-grid,
  .contacts-form__button,
  .player-up-stats-label {
    font-size: 14px;
  }
  .review-stats-img {
    width: 24px;
    height: 24px;
  }
  .review-match {
    gap: 16px;
  }
  .review-team-name,
  .review-team-score {
    font-size: 20px;
  }
  .review-team-img,
  .contacts-info-img {
    width: 32px;
    height: 32px;
  }
}

@media (min-width: 993px) {
  .results .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px !important;
  }
  .video-post .swiper-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    transform: none !important;
    width: 100% !important;
    height: 100% !important;
  }
}
@media (min-width: 1025px) {
  .matches .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px !important;
  }
}
