.header {
  min-height: 75.9vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  padding: 3rem;
  /* background: linear-gradient(
    0deg,
    rgba(20, 24, 83, 0.4),
    rgba(20, 24, 83, 0.4)
  ); */
  border-radius: 35px 35px 0px 0px;
  margin-bottom: 4rem;
}

.header__content--title {
  color: var(--color-white);
}

.header__content--title span {
  display: block;
  -webkit-text-fill-color: transparent;
  /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--color-white);
}

.score {
  margin-bottom: 19rem;
  padding: 0 3rem;
  position: relative;
}
.score > .container {
  display: flex;
  gap: 2rem;
}
.score > .container > .games {
  flex: 1;
  width: 50%;
}

.score > .container > .games > h3 {
  text-align: center;
  color: var(--color-blue);
  margin-block: 1rem;
}

.score__item.slick-current {
  margin-right: 1rem;
}
.score__item.slick-current + .slick-active {
  margin-left: 1rem;
}

.custom-dots-container {
  position: relative;
}

.custom-dots {
  position: absolute;
  /* bottom: -4rem; */
  /* Adjust the position as needed */
  /* left: 50%; */
  /* transform: translateX(-50%); */
  margin-top: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
}

.custom-dots .dot {
  width: 7.4rem;
  /* Adjust the dot size */
  height: 0.6rem;
  background-color: rgba(43, 48, 150, 0.167);
  /* Adjust the dot color */
  margin: 0 5px;
  /* Adjust the spacing between dots */
  cursor: pointer;
}

.custom-dots .slick-active .dot {
  background-color: var(--color-blue);
  /* Adjust the active dot color */
}

.score__item {
  display: grid !important;
  grid-template-columns: 1fr 2rem 1fr;
  width: 68rem;
  min-height: 41rem;
  background-color: var(--color-white);
  font-size: 2rem;
  padding: 0 4rem 3rem 4rem;
}

.score__title {
  grid-column: 1 / -1;
  text-align: center;
  background-color: var(--color-blue);
  /*width: max-content;*/
  padding: 0.8rem 8.2rem;
  justify-self: center;
  color: var(--color-white);
  margin-bottom: 3.5rem;
  display: grid;
  place-items: center;
}

.score__first {
  grid-column: 1 / 2;
  display: flex;
  gap: 6.5rem;
  align-items: center;
  place-content: center;
}

.score__dots {
  grid-column: 2 / 3;
  align-self: center;
  justify-self: center;
}

.score__second {
  grid-column: 3 / -1;
  display: flex;
  gap: 6.5rem;
  align-items: center;
  place-content: center;
}

.score__logo {
  width: 10.2rem;
  height: 8.3rem;
  margin-bottom: 3rem;
}

.score__logo img {
  object-fit: contain;
}

.score__time {
  display: flex;
  gap: 1rem;
  grid-column: 1 / -1;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.score__stadion {
  grid-column: 1 / -1;
  margin: 0 auto;
  margin-bottom: 2.5rem;
}

.score__actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 3rem;
}

.score__actions--full,
.score__actions--tv {
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  min-width: 14rem;
}

.score__first--title,
.score__second--title {
  color: var(--color-blue);
}

.score__content {
  color: var(--color-blue);
  text-align: center;
}

.score__time--clock {
  font-weight: 600;
  opacity: 0.8;
}

.top-players {
  margin-block: 12rem;
}

.top-players > .container > h2 {
  color: var(--color-blue);
}

.top-players__container {
  background-image: url("../imgs/stadium.png");
  min-height: 66.7rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  /*display: flex;*/

  position: relative;

  margin-block: 6rem;
  padding-block-start: 10rem;
}

.top-players__container::after {
  content: "";
  inset: 0;
  position: absolute;
  background-image: linear-gradient(
    180deg,
    rgba(15, 17, 54, 0) 74%,
    #0f1136 100%
  );
  pointer-events: none;
}

.top-players__slider__actions {
  position: absolute;
  display: flex;
  top: 3rem;
  right: 3rem;
  gap: 1rem;
  z-index: 1;
}

.top-players__slider__actions > button {
  background: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  width: 4.4rem;
  aspect-ratio: 1;
  cursor: pointer;
}

.top-players__slider {
  display: flex;
  overflow-x: clip;
  align-items: flex-end;
  padding-left: 10%;
}

.player-container.slick-slide {
  display: flex;
  align-items: flex-end;
  position: relative;
}

.player-container:not(.slick-active) {
  min-width: 45vw;
}

.player-container.slick-slide:not(.slick-current) > .player-info {
  display: none;
}

.player-container.slick-slide.slick-current
  + .player-container.slick-slide:not(.slick-current) {
  margin-left: 1vw;
}

.player-container > .player-info {
  position: absolute;
  top: 0;
  left: 0.5vw;
  /*top:-10rem;*/
  font-family: Agency;
  color: var(--color-white);
  display: grid;
  gap: 1rem;
  width: min(100%, 20rem);
}

.player-container > .player-info > .number {
  font-size: 8rem;
  font-weight: 700;
  line-height: 8.6rem;
}

.player-container > .player-info > .name {
  width: min(100%, 45rem);
}

.player-container > .player-info > .goal-counter {
  display: grid;
  gap: 0.5rem;

  font-family: TT Hoves;
  font-size: 1.6rem;
  line-height: 3.6rem;
}

.player-container > .player-info > .goal-counter > :nth-child(2) {
  font-family: Agency;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 3rem;
  color: var(--color-yellow);
}

.player-container > .player-info > .position {
  color: var(--color-yellow);

  font-family: TT Hoves;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 3.6rem;
}

.player-container.slick-slide.slick-current > .player-img {
  margin-left: 10vw;
  flex-basis: 54.5rem;
  flex-shrink: 0;
}

.player-container.slick-slide:not(.slick-current) > .player-img {
  opacity: 0.8;
  width: 31.3rem;
  /*width: 54.5rem;*/
  margin-inline: auto;
}

.player-container.slick-slide.slick-current > .player-img > img {
  /*object-fit: contain;*/
  aspect-ratio: 1;
}

.slick-track {
  display: flex;
  align-items: flex-end;
  height: 100%;
}

.top-players .slick-dots {
  position: absolute;
  bottom: -4rem;
  display: flex;
  flex-wrap: wrap;
  left: 50%;
  transform: translateX(-50%);

  gap: 1rem;
}

.top-players .slick-dots button {
  color: transparent;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #e4e4ee;
}

.top-players .slick-dots .slick-active button {
  background-color: var(--color-blue);
}

.our-store > .container {
  display: flex;
  gap: 0.6rem;
  margin-top: 10rem;
  margin-bottom: 15rem;
  padding-block-start: 6.4rem;
}

.our-store > .container > * {
  flex: 1;
  flex-basis: 33rem;
}

.our-store {
  background-image: url("../imgs/web.jpeg");
  background-size: cover;
}

.our-store > .container > .img-container > img {
  width: 70%;
  object-fit: contain;
  transform: translateY(20%) scale(1.5);
  margin-inline: auto;
  pointer-events: none;
}

.our-store > .container > .info > .product-list {
  display: flex;
  gap: 2rem;

  position: relative;
  bottom: -10.5rem;
  color: var(--color-blue);
  overflow-x: auto;
  /* max-width: 100%; */
}

.our-store > .container > .info > .product-list > .product-card {
  background-color: var(--color-white);
}

.our-store > .container > .info > .actions > .btn {
  padding: 0.8em 1.1em;
  font-size: 1.8rem;
  background-color: transparent;
  --color-blue: var(--color-white);
}

.our-store > .container > .info {
  color: var(--color-white);
}

.our-store > .container > .info > p {
  margin-block: 3rem;
}
.videos {
  margin-top: 5rem;
}

.videos .all__videos {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 6rem;
}

.videos .all__videos .left__videos {
  flex: 1;
  /*height: 53.4rem;*/
  flex-basis: 50rem;
  position: relative;
  min-height: 33rem;
}
.videos .all__videos .left__videos > .flash-swiper {
  position: absolute;
  width: 100%;
  height: 100%;
}
.videos .all__videos .left__videos > .flash-swiper > .slick-list {
  height: 100%;
}

.news__card {
  width: 100%;
  height: 100%;
}

.videos .all__videos .right__videos {
  display: grid;
  gap: 2rem;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 53.4rem;
  flex: 1;
  flex-basis: 500px;
}

.news__card {
  position: relative;
}
.news__card .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-white);
  width: 6rem;
  height: 6rem;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news__card .play i {
  font-size: 2rem;
}

.achievement {
  margin-top: 10rem;
}
.achievement h2 {
  color: var(--color-white);
}
.achievement .achievement__main {
  margin-top: 3.4rem;
  background: linear-gradient(
      90deg,
      rgba(28, 31, 75, 0.7) 20.1%,
      rgba(15, 17, 40, 0) 69.64%
    ),
    linear-gradient(
      0deg,
      rgba(43, 49, 150, 0.45) 0%,
      rgba(43, 49, 150, 0.45) 100%
    ),
    url("../imgs/achievement_background.jfif"), lightgray 50% / cover no-repeat;
  background-position: center;
  padding: 6rem 0rem 4rem 0rem;
}
.achievement .achievement__main .main__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 3.4rem;
}
.achievement .achievement__main .main__head p {
  max-width: 47rem;
  color: var(--color-white);
}
.achievement .achievement__main .main__head .slider__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.9rem;
}

.achievement .achievement__main .main__head .slider__nav .slider__ico {
  width: 4.4rem;
  height: 4.4rem;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.achievement .achievement__main .main__slider {
  margin-top: 6rem;
  text-align: center;
}
.achievement .achievement__main .main__slider .swiper-slide {
  padding: 0 6rem;
  border-right: 1px solid var(--color-white);
  display: flex;
  flex-direction: column;
  height: initial;
}

.achievement .achievement__main .main__slider h4 {
  margin-top: 1.8rem;
  color: var(--color-white);
}
.achievement .achievement__main .main__slider .slider__img {
  width: 10.6rem;
  height: 10.9rem;
  margin-inline: auto;
  margin-top: auto;
}

.achievement .achievement__main .main__slider .slider__img > img {
  object-fit: contain;
}

.players {
  margin-top: 33.4rem;
}

.players .players__main {
  margin-top: 5rem;
}
.players .player__info {
  background-image: url("../imgs/playerheader.png");
  min-height: 60.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  align-items: center;
  padding: 2.5rem 15rem 0 15rem;
}

.players .player__info .player__text {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  flex: 1;
  flex-basis: 45rem;
}

.players .player__info .player__text h2 {
  color: var(--color-white);
  max-width: 40rem;
  text-transform: uppercase;
}
.players .player__info .player__text span {
  color: var(--color-yellow);
}
.players .player__info .player__text ul {
  display: flex;
  gap: 6rem;
  align-items: center;
  margin-top: 1rem;
}
.players .player__info .player__text ul li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.players .player__info .player__text h4 {
  color: var(--color-yellow);
}

.players .player__info .player__img {
  max-height: 58rem;
  flex: 1;
  flex-basis: 45rem;
  display: flex;
}
.players .player__info .player__img img {
  object-fit: contain;
  height: initial;
}

.current-league {
  margin-top: 10rem;
}
.current-league > .container > h4 {
  text-align: center;
  color: var(--color-blue);
}

.current-league > .container > .info-container {
  margin-block-start: 5rem;
  overflow: auto;
}

.current-league
  > .container
  > .info-container
  :is(.statistics__body > ul > li, .statistics__header) {
  display: grid;
  grid-template-columns:
    minmax(min(10rem, 100%), 1fr) minmax(min(10rem, 100%), 2fr)
    repeat(6, minmax(min(10rem, 100%), 1fr));
}

.current-league > .container > .info-container > .statistics__header {
  font-family: TT Hoves;
  font-weight: 600;
  line-height: 2.4rem;
}

.current-league > .container > .info-container > .statistics__body {
  margin-top: 3rem;

  color: var(--color-blue);
  font-family: Agency;
  font-weight: 700;

  font-size: 1.8rem;
  line-height: 2.4rem;
}

.current-league > .container > .info-container > .statistics__body > ul > li {
  align-items: center;
}

.current-league
  > .container
  > .info-container
  > .statistics__body
  > ul
  > li
  > div:nth-child(1) {
  padding-inline-start: 3.8rem;
}

.current-league
  > .container
  > .info-container
  > .statistics__body
  > ul
  > li
  > div {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 1rem 0;
}

.current-league
  > .container
  > .info-container
  > .statistics__body
  > ul
  > li
  > div
  > img {
  width: 4.4rem;
  aspect-ratio: 1;
  display: inline-block;
  object-fit: contain;
}

.current-league
  > .container
  > .info-container
  > .statistics__body
  > ul
  > li:nth-child(odd)
  > div {
  background-color: var(--color-white);
}

.current-league
  > .container
  > .info-container
  > .statistics__body
  > ul
  > li:nth-child(even)
  > div {
  background: rgba(152, 154, 189, 0.1);
}

.current-league select {
  color: var(--color-blue);
  text-transform: uppercase;
  font-family: Agency;
}

.app {
  margin-block: 16rem 10rem;
}

.app .app__all {
  display: flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  gap: 11.5rem;
}
.app .app__img {
  flex: 1;
  flex-basis: 35rem;
}
.app .app__text {
  flex: 1;
  flex-basis: 35rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.app .app__text h2 {
  color: var(--color-blue);
}
.app .app__text .text__store {
  display: flex;
  gap: 5rem;
}
.app .app__text .text__store .store__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.app .app__text .text__store .store__img {
  width: 13rem;
  height: 4.5rem;
}
.app .app__text .text__store .store__right {
  width: 10rem;
  height: 10rem;
}

.intro{
  margin-top: 10rem;
}

@media screen and (max-width: 1200px) {
  .score__item {
    padding: 0 2rem 2rem 2rem;
  }
  .score {
    padding: 0 1.5rem;
  }

  .score__logo {
    width: 8.2rem;
    height: 5.3rem;
    margin-bottom: 2rem;
  }

  .score__first,
  .score__second {
    gap: 2.7rem;
  }

  .score__items .slick-slide {
    margin-right: 0rem;
  }
}

@media screen and (max-width: 992px) {
  .header {
    min-height: 60vh;
  }
  .custom-dots-container > .custom-dots > li {
    flex: 1;
  }
  .custom-dots .dot {
    width: 100%;
  }
  .header__content--title {
    font-size: 7.3rem;
    line-height: 7.8rem;
  }

  .score__item {
    padding: 0 1rem 2rem 1rem;
  }
  .score > .container {
    flex-direction: column;
  }
  .score > .container > .games {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .header {
    border-radius: initial;
    padding-left: 1.5rem;
    min-height: 45vh;
  }

  .header__content--title {
    font-size: 5.2rem;
    line-height: 5.8rem;
  }
  
  .score__title {
    padding: 0.8rem 3.2rem;
}
  
  .achievement .achievement__main .main__head .slider__nav {
    display: none;
  }
  .achievement .achievement__main .main__slider .swiper-slide {
    padding: 0;
    border: none;
  }
  .videos {
    margin-top: 3rem;
  }

  .videos .all__videos .left__videos {
    height: 40rem;
  }
  .videos .all__videos .right__videos {
    grid-auto-columns: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    grid-auto-flow: column;
    grid-template-rows: initial;
    grid-template-columns: initial;
    scroll-snap-type: x mandatory;
    grid-auto-rows: 30rem;
  }
  .news__card {
    scroll-snap-align: start;
  }

  .our-store > .container {
    flex-direction: column;
  }
  .our-store > .container > .img-container > img {
    width: 100%;
    transform: scale(1);
  }
  .our-store > .container > .info {
  }
}

@media screen and (max-width: 480px) {
  .header__content--title {
    font-size: 4.2rem;
    line-height: 4.8rem;
  }

  .score__title,
  .score__time,
  .score__stadion {
    font-size: 1.2rem;
    line-height: 1.4rem;
  }

  .score__actions {
    flex-direction: column;
  }

  .top-players__slider {
    align-items: stretch;
    padding: 0;
  }

  .player-container > .player-info {
    margin-inline: auto;
    position: relative;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    width: 90%;
  }

  .player-container > .player-info > .name {
    grid-row: 2/3;
  }

  .player-container > .player-info > .number {
    font-size: 3rem;
    line-height: 3.4rem;
  }

  .player-container.slick-slide {
    flex-direction: column;
    gap: 3rem;
    justify-content: flex-end;
    align-items: stretch;
  }

  .player-container.slick-slide.slick-current > .player-img {
    margin-left: 0;
    max-height: 31.4rem;
  }

  .top-players__slider__actions {
    display: none;
  }

  .top-players__container {
    margin-block: 3rem;
  }

  .top-players > h2 {
    padding-inline: 1.6rem;
  }

  .header {
    min-height: 25.9vh;
  }
}
