#slider {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  height: 728px;
}
#slider .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 6.01%, rgba(0, 0, 0, 0.59) 39.76%, rgba(0, 0, 0, 0.617101) 67.57%, rgba(0, 0, 0, 0.376046) 87.12%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(3.5px);
          backdrop-filter: blur(3.5px);
  animation: slideImage 0.4s linear;
  z-index: 1;
}
#slider .slide-container {
  display: none;
  height: 100%;
}
#slider .slide-container.active {
  display: block;
}
#slider .slide-container .slide {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
#slider .slide-container .slide .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#slider .slide-container .slide .image img {
  width: 100%;
  height: 100%;
  animation: slideImage 0.4s linear;
  -o-object-fit: cover;
     object-fit: cover;
}
#slider .slide-container .slide .content {
  z-index: 1;
}
#slider .slide-container .slide .content .time {
  color: #cbd5e1;
  margin: 0;
  margin-bottom: 8px;
  font-family: "SF-Pro-Display";
}
#slider .slide-container .slide .content h1 {
  margin: 0;
  margin-bottom: 20px;
  width: 65%;
  font-weight: 600;
  color: #f9fafb;
}
@media (max-width: 576px) {
  #slider .slide-container .slide .content h1 {
    font-size: 24px;
    line-height: 32px;
  }
}
#slider .slide-container .slide .content .main-text {
  margin: 20px 0;
  width: 50%;
  color: #e2e8f0;
}
#slider .slide-container .slide .content a {
  display: inline-flex;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #f9fafb;
}
#slider .slide-container .slide .content a img {
  margin-left: 10px;
  transition: 0.5s;
}
#slider .slide-container .slide .content a:hover img {
  transform: translateX(10px);
}
#slider .arrows {
  position: relative;
}
#slider .arrows .prev-next-button {
  display: flex;
  position: absolute;
  color: white;
  bottom: 105px;
  width: 50%;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  #slider .arrows .prev-next-button {
    bottom: 40px;
  }
}
#slider .arrows .prev-next-button #prev,
#slider .arrows .prev-next-button #next {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  border-radius: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
#slider .arrows .prev-next-button #next {
  margin: 0 32px;
}
#slider .arrows .prev-next-button .text {
  display: flex;
  justify-content: center;
  align-items: center;
}
#slider .arrows .prev-next-button .text .line {
  width: 26px;
  height: 1px;
  background-color: #d9d9d9;
  margin: 0px 10px;
}
#slider .slide-right-side {
  width: 100%;
  position: absolute;
  top: 118px;
  right: 0;
}
#slider .slide-right-side-container {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
#slider .slide-right-side-container ul {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid #475467;
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  width: 26%;
  height: 610px;
  z-index: 2;
}
#slider .slide-right-side-container ul h6 {
  padding: 0 21px;
  margin: 0;
  font-weight: 400;
  color: white;
  margin-top: 46px;
  margin-bottom: 16px;
}
#slider .slide-right-side-container ul li {
  display: flex;
  position: relative;
  border-top: 1px solid #475467;
  padding: 0 21px;
  padding-top: 40px;
  height: 28%;
}
#slider .slide-right-side-container ul li .slide-img {
  width: 100px;
  height: 100px;
  margin-right: 6px;
}
#slider .slide-right-side-container ul li .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#slider .slide-right-side-container ul li .slide-text {
  overflow: hidden;
}
#slider .slide-right-side-container ul li .slide-text p {
  margin: 0;
}
#slider .slide-right-side-container ul li .slide-text p a {
  color: #f9fafb;
}
#slider .slide-right-side-container ul li .slide-text p a:hover {
  text-decoration: underline;
}
#slider .slide-right-side-container ul li .slide-text .slide-time {
  margin-top: 8px;
}
#slider .slide-right-side-container ul li .slide-text .slide-time span {
  color: #98a2b3;
}
#slider .slide-right-side-container ul li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -4px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #98a2b3;
}
@media only screen and (max-width: 1024px) {
  #slider .slide-right-side {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  #slider {
    height: 590px;
  }
  #slider .slide-container .slide .content h1 {
    font-weight: 500;
    width: 80%;
    margin-bottom: 16px;
  }
  #slider .slide-container .slide .content .main-text {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
  #slider .slide-container .slide .content a {
    font-size: 16px;
    line-height: 24px;
  }
  #slider .slide-container .slide .content a img {
    width: 19px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

@keyframes slideContent {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
}
@keyframes slideImage {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
}
.game-center {
  padding-top: 40px;
  padding-bottom: 80px;
}
.game-center-container {
  overflow: hidden;
}
.game-center-container .game-center-content {
  display: flex;
  width: 200%;
  transition: 0.5s;
}
.game-center-container .game-center-content ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(328px, 1fr));
  position: relative;
  background: #f9fafb;
  border: 4px solid #ffffff;
  box-shadow: -4px 16px 27px rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  width: 100%;
}
@media (max-width: 480px) {
  .game-center-container .game-center-content ul {
    grid-template-columns: 1fr;
  }
}
.game-center-container .game-center-content ul li {
  padding: 24px 32px;
  width: 100%;
}
.game-center-container .game-center-content ul li:not(:first-child) {
  background: rgba(217, 217, 217, 0.01);
  border-right: 1px dashed rgba(217, 217, 217, 0.0117647059);
}
.game-center-container .game-center-content ul li .header-texts {
  align-items: normal;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.game-center-container .game-center-content ul li .header-texts h5 {
  width: 45%;
}
.game-center-container .game-center-content ul li .header-texts p {
  margin-bottom: 12px;
}
.game-center-container .game-center-content ul li .button-groups {
  background: #e8eaf3;
  border-radius: 21px;
  padding: 4px;
  display: flex;
}
.game-center-container .game-center-content ul li .button-groups input {
  display: none;
}
.game-center-container .game-center-content ul li .button-groups label {
  width: 50%;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #667085;
  text-align: center;
  cursor: pointer;
  transition: 1s;
  border-radius: 21px;
}
@media only screen and (max-width: 768px) {
  .game-center-container .game-center-content ul li .button-groups label {
    transition: 0.6s;
  }
}
.game-center-container .game-center-content ul li .button-groups input:checked + label {
  background: #1f2668;
  border: 1px solid #ffffff;
  color: #f9fafb;
  transition: 0.4s;
}
.game-center-container .game-center-content ul .soccer-ball {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media only screen and (max-width: 1024px) {
  .game-center-container .game-center-content ul .soccer-ball {
    z-index: -1;
  }
}
.game-center-container .game-center-content.transform {
  transform: translateX(-50%);
}

.game-center li h6 {
  margin: 0;
  margin-bottom: 28px;
  font-weight: 500;
}
.game-center li .team-and-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.game-center li .team-and-result .teams img {
  width: 76px;
  height: 76px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 8px;
}
.game-center li .team-and-result .result {
  padding: 6px 12px;
  background: #e2e8f0;
  border: 1px solid #ffffff;
  box-shadow: -3px 4px 8px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #0f1521;
}
.game-center li .info {
  padding-top: 4px;
  border-top: 1px solid #475467;
}
.game-center li .info .teams-name {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #1d2939;
  margin: 0;
}
.game-center li .info .stadion,
.game-center li .info .day,
.game-center li .info .time {
  display: block;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #344054;
}
.game-center li .info .stadion {
  color: #98a2b3;
  margin-bottom: 4px;
}

.header-texts {
  margin-bottom: 36px;
  display: flex;
  align-items: center;
}
.header-texts h5 {
  margin: 0;
  font-weight: 600;
  color: #1d2939;
}
.header-texts h4 {
  margin: 0;
  font-weight: 500;
  color: #344054;
}
.header-texts p {
  display: flex;
  justify-content: normal;
  align-items: flex-end;
  margin-left: 15px;
}
.header-texts p a {
  position: relative;
  color: #667085;
}
.header-texts p a::before {
  content: "";
  position: absolute;
  left: -8px;
  width: 1px;
  height: 100%;
  background-color: #667085;
}

.cards .card-image {
  height: 192px;
}
.cards .card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cards .card-content {
  position: relative;
  background: #f9fafb;
  border: 2px solid #ffffff;
  box-shadow: -4px 16px 27px rgba(0, 0, 0, 0.03);
  border-radius: 0px 3px 3px 3px;
  padding: 12px;
  transition: 0.5s;
  width: 95%;
  margin-top: -43px;
}
.cards .card-content .time {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #667085;
}
.cards .card-content p {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  color: #344054;
  margin: 0;
  margin-top: 4px;
  transition: 0.5s;
  height: 95px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cards .card:hover .card-content {
  width: 100%;
}

table {
  width: 896px;
  background: #f9fafb;
  border: 4px solid #ffffff;
  box-shadow: -4px 16px 27px rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  table {
    width: 100%;
  }
}
table thead {
  background-color: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}
table thead tr th {
  position: relative;
  padding: 24px 0;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #475467;
}
table thead tr th:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 8px;
  background-color: #475467;
  position: absolute;
  right: 0;
  top: 45%;
}
@media (max-width: 480px) {
  table thead tr th {
    font-size: 14px;
    line-height: 24px;
    padding: 16px 0;
  }
}
table tbody tr td {
  position: relative;
  text-align: center;
  padding: 14px 0;
}
table tbody tr td img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 8px;
  margin-left: 24px;
}
table tbody tr td:first-child {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #344054;
  border-right: 1px solid #e2e8f0;
}
table tbody tr td:nth-child(2) {
  display: flex;
  justify-content: normal;
  align-items: center;
  text-align: left;
}
table tbody tr td:nth-child(2) .name {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #0f1521;
}
table tbody tr td:not(:last-child):not(:first-child):after {
  content: "";
  width: 1px;
  height: 8px;
  background-color: #667085;
  position: absolute;
  right: 0;
  top: 45%;
}
table tbody tr td:not(:first-child):not(:nth-child(2)) span {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 5px;
  border: 1px solid #ffffff;
  box-shadow: -2px 2px 10px rgba(22, 12, 133, 0.08);
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #1d2939;
}
@media (max-width: 480px) {
  table tbody tr td {
    padding: 8px 0 !important;
  }
  table tbody tr td:first-child {
    font-size: 14px;
    line-height: 24px;
  }
  table tbody tr td img {
    margin-left: 4px;
    margin-right: 4px;
    width: 20px;
    height: 30px;
  }
  table tbody tr td:nth-child(2) .name {
    font-size: 14px;
    line-height: 24px;
  }
  table tbody tr td:not(:first-child):not(:nth-child(2)) span {
    font-size: 14px;
    line-height: 24px;
    padding: 2px;
  }
}
table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
table tbody tr:nth-child(odd) td:not(:first-child):not(:nth-child(2)) span {
  background-color: #f1f5f9;
}
table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}
table tbody tr:nth-child(even) td:not(:first-child):not(:nth-child(2)) span {
  background: #ffffff;
}
table tbody tr.active {
  background-color: #e8eaf3;
}
table tbody tr.active td img {
  margin-left: 55px;
}

.swiper {
  width: 100%;
  height: 100%;
  overflow: visible !important;
}
.swiper .swiper-slide .card {
  position: relative;
  background: #1f2668;
  border: 1px solid #ffffff;
  box-shadow: -6px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  overflow: hidden;
}
.swiper .swiper-slide .card-text {
  padding-top: 20px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 12px;
  background: linear-gradient(180deg, rgba(31, 38, 104, 0.6) 0%, #00122e 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
.swiper .swiper-slide .card-text span {
  display: block;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #92a1c2;
}
.swiper .swiper-slide .card-text .name-number {
  display: flex;
  justify-content: space-between;
  align-items: normal;
  margin-top: -8px;
  margin-bottom: 10px;
  position: relative;
}
.swiper .swiper-slide .card-text .name-number p {
  margin: 0;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  color: #f9fafb;
}
.swiper .swiper-slide .card-text .name-number::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -10px;
  background: radial-gradient(50% 50% at 50% 50%, #8893ff 0%, rgba(31, 38, 104, 0) 100%);
}
.swiper .swiper-slide .card-text .nationality {
  padding-top: 10px;
  padding-bottom: 12px;
}
.swiper .swiper-slide .card-text .nationality p {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #f9fafb;
  text-align: center;
  margin: 0;
}
.swiper .swiper-slide .card-img {
  position: relative;
  z-index: 1;
  height: 350px;
}
.swiper .swiper-slide .card-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s;
}
.swiper .swiper-slide .card .footballer-number {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 136px;
  line-height: 100px;
  color: white;
  opacity: 0.2;
  position: absolute;
  top: 29px;
  left: 9px;
}
.swiper .swiper-slide .card .footballer-number::before {
  content: "";
  width: 82px;
  height: 84px;
  position: absolute;
  left: 42px;
  background: #ffffff;
  opacity: 0.4;
  filter: blur(14px);
}
.swiper .swiper-slide .card:hover .card-img img {
  transform: scale(1.1);
}

.player-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
  gap: 25px;
}
@media (max-width: 480px) {
  .player-cards {
    grid-template-columns: 1fr;
  }
}
.player-cards .card {
  position: relative;
  background: #1f2668;
  border: 1px solid #ffffff;
  box-shadow: 8px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 4px;
  overflow: hidden;
}
.player-cards .card-text {
  padding-top: 20px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 12px;
  background: linear-gradient(180deg, rgba(31, 38, 104, 0.6) 0%, #00122e 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
}
.player-cards .card-text span {
  display: block;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #92a1c2;
}
.player-cards .card-text .name-number {
  display: flex;
  justify-content: space-between;
  align-items: normal;
  margin-top: -8px;
  margin-bottom: 10px;
  position: relative;
}
.player-cards .card-text .name-number p {
  margin: 0;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  color: #f9fafb;
}
.player-cards .card-text .name-number::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -10px;
  background: radial-gradient(50% 50% at 50% 50%, #8893ff 0%, rgba(31, 38, 104, 0) 100%);
}
.player-cards .card-text .nationality {
  padding-top: 10px;
  padding-bottom: 12px;
}
.player-cards .card-text .nationality p {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #f9fafb;
  text-align: center;
  margin: 0;
}
.player-cards .card-img {
  position: relative;
  z-index: 1;
  height: 350px;
}
.player-cards .card-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.5s;
}
.player-cards .card .footballer-number {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 136px;
  line-height: 100px;
  color: white;
  opacity: 0.2;
  position: absolute;
  top: 29px;
  left: 9px;
}
.player-cards .card .footballer-number::before {
  content: "";
  width: 82px;
  height: 84px;
  position: absolute;
  left: 42px;
  background: #ffffff;
  opacity: 0.4;
  filter: blur(14px);
}
.player-cards .card:hover .card-img img {
  transform: scale(1.1);
}

.partners {
  padding-top: 106px;
  padding-bottom: 100px;
  background-color: #f1f5f9;
}
.partners .slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  place-items: center;
}
.partners .slider .slide {
  width: 100%;
  height: 125px;
  display: flex;
  align-items: center;
  padding: 30px;
  perspective: 100px;
}
.partners .slider .slide a {
  transition: 1s;
  width: 100%;
  height: 96px;
}
.partners .slider .slide a:hover {
  transform: translateZ(20px);
}
.partners .slider .slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: var(--from-transform);
  }
  100% {
    transform: var(--to-transform);
  }
}
.videos .cards .card {
  position: relative;
}
.videos .cards .card .overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.79) 0%, rgba(0, 0, 0, 0.63451) 35.39%, rgba(0, 0, 0, 0) 100%);
}
.videos .cards .card-img {
  width: 100%;
  height: 100%;
}
.videos .cards .card-img img {
  width: 100%;
  height: 100%;
}
.videos .cards .card-text {
  position: absolute;
  bottom: 0;
  padding: 8px 16px;
}
.videos .cards .card-text p {
  margin: 0;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  color: #f1f5f9;
}
.videos .cards .card-text p a {
  color: inherit;
}
.videos .cards .card-text p a:hover {
  text-decoration: underline;
}

.videos-cards .card {
  position: relative;
}
.videos-cards .card-img {
  width: 312px;
  height: 408px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .videos-cards .card-img {
    width: 100%;
    height: 100%;
  }
}
.videos-cards .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.videos-cards .card-img .overlay {
  position: absolute;
  z-index: 11;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.375364) 14.78%, rgba(0, 0, 0, 0.307888) 30.1%, rgba(0, 0, 0, 0.253064) 42.54%, rgba(0, 0, 0, 0) 100%);
  border-radius: 4px;
}
.videos-cards .card .time-and-play {
  position: absolute;
  top: 20px;
  left: 16px;
  right: 20px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
}
.videos-cards .card .time-and-play p {
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  border-radius: 4px;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #f9fafb;
}
.videos-cards .card .time-and-play img {
  opacity: 1;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.videos-cards .card-content {
  position: absolute;
  bottom: -15%;
  right: 0;
  width: 92%;
  background: #1d2939;
  border-radius: 4px;
  padding: 16px;
  transition: 0.5s;
}
.videos-cards .card-content h6 {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  color: #f9fafb;
  margin-bottom: 8px;
}
.videos-cards .card-content p {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #e2e8f0;
  text-align: right;
}
.videos-cards .card .center-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  border-radius: 28px;
  width: 52px;
  height: 52px;
  opacity: 0;
  transition: 0.5s;
}
.videos-cards .card .center-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.videos-cards .card:hover .time-and-play {
  top: 12px;
}
.videos-cards .card:hover .time-and-play img {
  opacity: 0;
}
.videos-cards .card:hover .card-content {
  bottom: 0;
}
.videos-cards .card:hover .center-img {
  opacity: 1;
}

.gallery-card a .card-img {
  width: 100%;
  height: 224px;
  margin-bottom: 20px;
}
.gallery-card a .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-card a .card-content .photo-and-date {
  display: flex;
  justify-content: normal;
  align-items: center;
  margin-bottom: 12px;
}
.gallery-card a .card-content .photo-and-date span {
  display: inline-block;
  margin: 0 5px;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #344054;
}
@media (max-width: 480px) {
  .gallery-card a .card-content .photo-and-date span {
    font-size: 14px;
  }
}
.gallery-card a .card-content .photo-and-date .date {
  font-weight: 400;
  color: #667085;
  position: relative;
}
@media (max-width: 480px) {
  .gallery-card a .card-content .photo-and-date .date {
    font-size: 14px;
  }
}
.gallery-card a .card-content .photo-and-date .date::before {
  width: 1px;
  height: 12px;
  content: "";
  position: absolute;
  left: -6px;
  top: 6px;
  background-color: #667085;
}
.gallery-card a .card-content h6 {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  color: #1d2939;
}

.little-header {
  width: 100vw;
  height: 400px;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .little-header {
    height: 590px;
  }
}
.little-header .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.little-header .image .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 6.01%, rgba(0, 0, 0, 0.59) 39.76%, rgba(0, 0, 0, 0.617101) 67.57%, rgba(0, 0, 0, 0.376046) 87.12%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(3.5px);
          backdrop-filter: blur(3.5px);
}
.little-header .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.little-header-container {
  height: 100%;
  padding-top: 200px;
}
.little-header-container h1 {
  position: relative;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  color: #f9fafb;
}
@media only screen and (max-width: 1024px) {
  .little-header-container h1 {
    padding-top: 160px;
    font-weight: 500;
  }
}

.image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.image .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 6.01%, rgba(0, 0, 0, 0.59) 39.76%, rgba(0, 0, 0, 0.617101) 67.57%, rgba(0, 0, 0, 0.376046) 87.12%, rgba(0, 0, 0, 0) 100%);
  -webkit-backdrop-filter: blur(3.5px);
          backdrop-filter: blur(3.5px);
}
.image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  font-family: "Poppins";
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

main {
  overflow: hidden;
  background-color: #f1f5f9;
}

a,
a:hover {
  text-decoration: none;
  color: initial;
  transition: 0.5s;
}

button {
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

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

.container {
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (min-width: 1300px) {
  .container {
    width: 1320px;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1 {
  font-size: 56px;
  line-height: 72px;
  margin: 0;
}
@media (max-width: 576px) {
  h1 {
    font-size: 40px;
    line-height: 56px;
  }
}

h2 {
  font-size: 48px;
  line-height: 60px;
  margin: 0;
}

h3 {
  margin: 0;
  font-size: 40px;
  line-height: 56px;
}

h4 {
  margin: 0;
  font-size: 36px;
  line-height: 56px;
}

h5 {
  margin: 0;
  font-size: 28px;
  line-height: 48px;
}
@media (max-width: 576px) {
  h5 {
    font-size: 20px;
    line-height: 32px;
  }
}

h6 {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
}

.big-paragraph {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
}

p {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}
@media (max-width: 576px) {
  p {
    font-size: 14px;
    line-height: 24px;
  }
}

span {
  font-size: 14px;
  line-height: 24px;
}

.little-span {
  font-size: 12px;
  line-height: 16px;
}

input[type=text],
input[type=tel],
input[type=number],
input[type=email],
textarea {
  display: block;
  background: #ffffff;
  border: 1px solid #e6ecfa;
  border-radius: 6px;
  padding: 12px 16px 12px 12px;
  outline: none;
  width: 100%;
  transition: 0.4s;
}
input[type=text]:focus, input[type=text]:active,
input[type=tel]:focus,
input[type=tel]:active,
input[type=number]:focus,
input[type=number]:active,
input[type=email]:focus,
input[type=email]:active,
textarea:focus,
textarea:active {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

textarea {
  resize: none;
}

@font-face {
  font-family: "SF-Pro-Display";
  src: url("../../fonts/SF-Pro-Display/SF-Pro-Display-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF-Pro-Display";
  src: url("../../fonts/SF-Pro-Display/SF-Pro-Display-Medium.woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF-Pro-Display";
  src: url("../../fonts/SF-Pro-Display/SF-Pro-Display-Semibold.woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SF-Pro-Display";
  src: url("../../fonts/SF-Pro-Display/SF-Pro-Display-Heavy.woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins/Poppins-Regular.woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins/Poppins-Medium.woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins/Poppins-SemiBold.woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../../fonts/Poppins/Poppins-Bold.woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
.header {
  position: absolute;
  width: 100%;
  height: 163px;
  z-index: 2;
  transition: 0.5s;
  background-color: transparent;
}
@media only screen and (max-width: 1024px) {
  .header {
    height: 68px;
    overflow: initial;
  }
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: inherit;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .header-container {
    justify-content: center;
    align-items: flex-start;
  }
  .header-container .logo {
    margin-top: 13px;
  }
}
.header-container .logo {
  margin-top: 12px;
}
@media only screen and (max-width: 1024px) {
  .header-container .logo {
    position: relative;
    z-index: 11;
  }
}
.header-container .logo img {
  width: 100%;
  height: auto;
}
.header-container .right-header {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .header-container .right-header {
    transition: 0.5s;
    height: 100vh;
    position: fixed;
    left: -100vw;
    background-color: black;
  }
  .header-container .right-header nav .navbar {
    flex-direction: column;
    border-top: none !important;
    border-bottom: none !important;
    margin-left: 0 !important;
    padding: 0 !important;
    margin-top: 120px;
    height: 70vh;
    overflow: auto;
  }
  .header-container .right-header nav .navbar::before, .header-container .right-header nav .navbar::after {
    display: none;
  }
  .header-container .right-header nav .navbar .navbar-list .dropdown {
    position: relative !important;
    top: 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
    width: 100% !important;
  }
  .header-container .right-header nav .navbar .navbar-list .dropdown li {
    border-bottom: none !important;
  }
  .header-container .right-header nav .navbar .navbar-list .dropdown li a {
    padding: 8px 0 !important;
    color: #cbd5e1 !important;
  }
  .header-container .right-header.active {
    left: 0;
  }
}
.header-container .right-header .top-header {
  display: flex;
  justify-content: flex-end;
  align-items: normal;
}
@media only screen and (max-width: 1024px) {
  .header-container .right-header .top-header {
    justify-content: flex-start;
  }
}
.header-container .right-header .top-header .social-icons {
  padding: 13px 42px;
  border-left: 1px solid #475467;
  border-right: 1px solid #475467;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .header-container .right-header .top-header .social-icons {
    display: none;
  }
}
.header-container .right-header .top-header .social-icons a {
  height: 20px;
}
.header-container .right-header .top-header .social-icons a img {
  transition: 0.5s;
}
.header-container .right-header .top-header .social-icons a img:hover {
  filter: contrast(2);
}
.header-container .right-header .top-header .social-icons a:not(:last-child) {
  margin-right: 24px;
}
.header-container .right-header .top-header .lang {
  padding: 14px 24px;
}
@media only screen and (max-width: 1024px) {
  .header-container .right-header .top-header .lang {
    display: none;
  }
}
.header-container .right-header .top-header .lang button {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #667085;
  padding: 0;
  outline: inherit;
  cursor: pointer;
}
.header-container .right-header .top-header .lang button.active {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #f1f5f9;
  text-transform: uppercase;
  cursor: default;
}
.header-container .right-header .top-header .lang .slash {
  margin: 0 2px;
  cursor: default;
  color: #667085;
}
.header-container .right-header nav {
  width: 100%;
}
.header-container .right-header nav .navbar {
  display: flex;
  position: relative;
  padding: 0 35px;
  margin-left: 50px;
  border-top: 1px solid #475467;
  border-bottom: 1px solid #475467;
}
@media screen and (max-width: 1300px) {
  .header-container .right-header nav .navbar {
    padding: 0;
    margin-left: 0;
  }
}
.header-container .right-header nav .navbar::before, .header-container .right-header nav .navbar::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
}
.header-container .right-header nav .navbar::before {
  border-top: 1px solid #475467;
  top: -1px;
}
.header-container .right-header nav .navbar::after {
  border-bottom: 1px solid #475467;
  bottom: -1px;
}
.header-container .right-header nav .navbar li {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #e2e8f0;
  padding: 20px 24px;
}
@media screen and (max-height: 750px) and (max-width: 1024px) {
  .header-container .right-header nav .navbar li {
    padding: 10px 24px;
  }
}
.header-container .right-header nav .navbar li a {
  display: inline-block;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #e2e8f0;
}
.header-container .right-header nav .navbar li a:hover {
  color: #f9fafb;
}
.header-container .right-header nav .navbar .navbar-list {
  position: relative;
  cursor: default;
  background-repeat: no-repeat;
  background-position-y: 17px;
  background-position-x: 96%;
}
@media screen and (min-width: 1024px) {
  .header-container .right-header nav .navbar .navbar-list {
    background-image: none !important;
  }
}
.header-container .right-header nav .navbar .navbar-list .dropdown {
  position: absolute;
  top: 60px;
  left: -5px;
  width: 172px;
  padding: 12px 10px;
  display: none;
  z-index: 0;
  transition: 0.5s;
  background-color: #0f1521;
  border-radius: 5px;
}
.header-container .right-header nav .navbar .navbar-list .dropdown li {
  padding: 0;
  padding: 2px 0;
}
.header-container .right-header nav .navbar .navbar-list .dropdown li a {
  display: block;
  padding: 8px 6px;
  background-color: transparent;
  transition: 0.5s;
  border-radius: 4px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #f9fafb;
}
.header-container .right-header nav .navbar .navbar-list .dropdown li a:hover {
  background-color: #1d2939;
}
.header-container .right-header nav .navbar .navbar-list .dropdown li:not(:last-child) {
  border-bottom: 1px solid #1d2939;
}
.header-container .right-header nav .navbar .navbar-list:hover .dropdown {
  display: block;
  z-index: 111;
}
.header-container .right-header nav .social-icons-mobile {
  display: none;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-top: 32px;
  padding-bottom: 44px;
  border-top: 1px solid #475467;
  background-color: black;
}
@media only screen and (max-width: 1024px) {
  .header-container .right-header nav .social-icons-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .header-container .right-header nav .social-icons-mobile {
    flex-wrap: wrap;
    padding-top: 16px;
  }
}
.header-container .right-header nav .social-icons-mobile a:not(:last-child) {
  padding-right: 35px;
}
@media (max-width: 480px) {
  .header-container .right-header nav .social-icons-mobile a {
    padding-left: 17px;
    padding-right: 18px !important;
    margin-top: 16px;
  }
}
.header-container .right-header nav .lang-mobile {
  position: absolute;
  top: 28px;
  left: 24px;
  display: none;
  color: white;
}
@media only screen and (max-width: 1024px) {
  .header-container .right-header nav .lang-mobile {
    display: block;
  }
}
.header-container .right-header nav .lang-mobile button {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #667085;
  padding: 0;
  outline: inherit;
  cursor: pointer;
}
.header-container .right-header nav .lang-mobile button.active {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #f1f5f9;
  text-transform: uppercase;
  cursor: default;
}
.header-container .right-header nav .lang-mobile .slash {
  margin: 0 2px;
  cursor: default;
  color: #667085;
}
.header-container #hamburger {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: column;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  padding: 10.5px 7.5px;
  display: none;
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .header-container #hamburger {
    display: flex;
  }
}
.header-container #hamburger .hamburger-line {
  position: relative;
  background-color: #ccd2e3;
  border-radius: 2px;
  height: 1px;
  transition: 0.5s;
}
.header-container #hamburger .hamburger-line:first-child {
  width: 21px;
}
.header-container #hamburger .hamburger-line:nth-child(2) {
  width: 15px;
}
.header-container #hamburger .hamburger-line:last-child {
  width: 9px;
}
.header-container #hamburger.active .hamburger-line {
  background-color: white;
}
.header-container #hamburger.active .hamburger-line:first-child {
  width: 100%;
  transform: rotate(45deg) translate(0, 10px);
}
.header-container #hamburger.active .hamburger-line:last-child {
  width: 100%;
  transform: rotate(-45deg) translate(0, -10px);
}
.header-container #hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.header.active {
  position: fixed;
  top: -200px;
  background-color: #0f1521;
}
@media only screen and (max-width: 1024px) {
  .header.active {
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(6.5px);
            backdrop-filter: blur(6.5px);
  }
}
.header.active .header-container .logo a img {
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 1024px) {
  .header.active .header-container .logo a img {
    height: inherit;
  }
}
.header.active .header-container .right-header .top-header {
  display: none;
}
.header.active .header-container .right-header nav ul {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.header.active .header-container .right-header nav ul::before {
  border-top: 1px solid transparent;
}
.header.active .header-container .right-header nav ul::after {
  border-bottom: 1px solid transparent;
}
.header.in-view {
  height: 64px;
  top: 0;
  z-index: 111;
}

footer .footer {
  background-color: #00122e;
  padding-top: 125px;
  padding-bottom: 80px;
  position: relative;
}
footer .footer-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
footer .footer-logo img {
  width: 113px;
  height: auto;
}
footer .footer-container .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 55px;
}
footer .footer-container .social-icons ul {
  border: 1px solid #98a2b3;
  border-radius: 2px;
  display: flex;
  padding: 12px 0;
  padding-left: 8px;
  padding-right: 21px;
}
@media (max-width: 576px) {
  footer .footer-container .social-icons ul {
    width: 80%;
    justify-content: space-between;
  }
}
footer .footer-container .social-icons ul li {
  display: flex;
  position: relative;
  margin: 6px 30px;
}
@media (max-width: 576px) {
  footer .footer-container .social-icons ul li {
    margin: 0;
    justify-content: space-evenly;
  }
}
footer .footer-container .social-icons ul li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 12px;
  background: #d9d9d9;
  position: absolute;
  top: 15px;
  left: 70px;
}
@media (max-width: 576px) {
  footer .footer-container .social-icons ul li:not(:last-child)::after {
    display: none;
  }
}
footer .footer-container .social-icons ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  footer .footer-container .social-icons ul li a {
    width: 30px;
  }
}
@media (max-width: 576px) {
  footer .footer-container .social-icons ul li a {
    width: 22px;
  }
}
footer .footer-container .social-icons ul li a svg path {
  transition: 0.4s;
}
footer .footer-container .social-icons ul li a:hover svg path {
  fill: white;
}
footer .footer-container .part-of-the-pride {
  position: relative;
}
footer .footer-container .part-of-the-pride h5 {
  margin: 0;
  text-align: center;
}
footer .footer-container .part-of-the-pride h5 span {
  display: inline-block;
  padding: 0 9px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 48px;
  color: #f9fafb;
  background-color: #00122e;
  position: relative;
  z-index: 1;
}
@media (max-width: 576px) {
  footer .footer-container .part-of-the-pride h5 span {
    font-size: 20px;
    line-height: 32px;
  }
}
footer .footer-container .part-of-the-pride::before, footer .footer-container .part-of-the-pride::after {
  content: "";
  width: 50%;
  z-index: 0;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
footer .footer-container .part-of-the-pride::before {
  background: linear-gradient(270deg, #ffffff 2.52%, rgba(255, 255, 255, 0) 100%);
  left: 0;
}
footer .footer-container .part-of-the-pride::after {
  background: linear-gradient(90deg, #ffffff 2.52%, rgba(255, 255, 255, 0) 100%);
  right: 0;
}
footer .footer-container .football-icons {
  margin-top: 92px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media (max-width: 576px) {
  footer .footer-container .football-icons {
    margin-top: 60px;
  }
}
footer .footer-container .football-icons a {
  width: 170px;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-container .football-icons a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-container .football-icons a svg path {
  transition: 0.4s;
}
footer .footer-container .football-icons a:hover svg path {
  fill: white;
}
footer .footer-container .football-icons a:first-child:hover svg path:nth-child(4), footer .footer-container .football-icons a:first-child:hover svg path:nth-child(5) {
  fill: #667085;
}
@media (max-width: 576px) {
  footer .footer-container .football-icons a:not(:last-child) {
    margin-bottom: 60px;
  }
}
@media (max-width: 576px) {
  footer .footer-container .football-icons {
    flex-direction: column;
  }
}
footer .navbar-copyright {
  background-color: #0f1521;
}
footer .navbar-copyright .navbar-copyright-container {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .navbar-copyright .navbar-copyright-container p {
  width: 100%;
  text-align: center;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #98a2b3;
  letter-spacing: -0.204545px;
  mix-blend-mode: normal;
  opacity: 0.5;
}

.main-page {
  background: #f1f5f9;
  position: relative;
}
.main-page .news {
  padding-bottom: 80px;
}
.main-page .news .cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
  gap: 24px;
}
.main-page .tournament {
  padding-top: 80px;
  padding-bottom: 80px;
  background-size: cover !important;
}
.main-page .tournament-container .header-texts h4 {
  color: #f9fafb;
}
.main-page .tournament-container .header-texts p {
  cursor: pointer;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #e2e8f0;
}
.main-page .tournament-container .header-texts p.active {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #f9fafb;
  cursor: default;
}
.main-page .tournament-container .header-texts span {
  color: #f9fafb;
}
.main-page .tournament-container .header-texts p:last-child {
  margin-left: 5px;
  white-space: nowrap;
}
.main-page .tournament-container .header-texts p:last-child a::before {
  margin: 0;
  background-color: transparent;
}
.main-page .tournament-container .tables {
  width: 200%;
  display: flex;
  transition: 0.5s;
}
.main-page .tournament-container .tables.active {
  transform: translateX(-50%);
}
.main-page .tournament-container .tables .table-content {
  position: relative;
  z-index: 11;
  width: 100%;
}
.main-page .team {
  padding-bottom: 80px;
}
.main-page .team-container {
  padding-top: 140px;
  background-color: #f1f5f9;
  position: relative;
  top: -70px;
}
.main-page .team-container .header-texts {
  justify-content: space-between;
}
.main-page .team-container .header-texts div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-page .team-container .header-texts div button {
  cursor: pointer;
}
.main-page .team-container .header-texts div button:first-child {
  margin-right: 12px;
}
.main-page .team-container .header-texts div button:disabled svg path {
  fill: #cbd5e1;
}
.main-page .videos {
  background-size: cover !important;
  padding-top: 78px;
  padding-bottom: 50px;
  position: relative;
}
.main-page .videos .overlay-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000000 -0.76%, rgba(0, 0, 0, 0) 100%);
}
.main-page .videos-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .main-page .videos-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.main-page .videos-container .left-side {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}
@media only screen and (max-width: 1024px) {
  .main-page .videos-container .left-side {
    width: 100%;
  }
}
.main-page .videos-container .left-side .header-texts {
  margin-bottom: 120px;
}
.main-page .videos-container .left-side .header-texts h4 {
  color: #f1f5f9;
}
.main-page .videos-container .left-side .bottom a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  border-radius: 28px;
  width: 43px;
  height: 43px;
}
.main-page .videos-container .left-side .bottom span {
  display: block;
  margin-top: 12px;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #93b2df;
}
.main-page .videos-container .left-side .bottom h5 {
  margin: 0;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  color: #f1f5f9;
}
.main-page .videos-container .right-side {
  width: 50%;
}
@media only screen and (max-width: 1024px) {
  .main-page .videos-container .right-side {
    width: 100%;
  }
}
.main-page .videos-container .right-side .cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
  gap: 24px;
}
.main-page .videos-container .right-side .cards a {
  width: 310px;
  height: 150px;
  display: block;
}
.main-page .videos-container .right-side .cards a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-page .videos-container .right-side .cards iframe {
  width: 100%;
  height: 100%;
}

.news-page {
  position: relative;
}
@media (max-width: 576px) {
  .news-page {
    height: 590px;
  }
}
.news-page-container {
  position: relative;
}
@media (max-width: 576px) {
  .news-page-container {
    height: 100%;
  }
}
.news-page-container .big-header {
  padding-top: 220px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  .news-page-container .big-header {
    padding-top: 180px;
    padding-bottom: 160px;
  }
}
@media (max-width: 576px) {
  .news-page-container .big-header {
    display: flex;
    justify-content: center;
    align-items: normal;
    flex-direction: column;
    height: 100%;
  }
}
.news-page-container .big-header p {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #cbd5e1;
}
.news-page-container .big-header h1 {
  margin-top: 8px;
  margin-bottom: 32px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  color: #f9fafb;
  width: 75%;
}
.news-page-container .big-header a {
  display: inline-flex;
  margin-bottom: 28px;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #f9fafb;
}
.news-page-container .big-header a img {
  margin-left: 10px;
  transition: 0.5s;
}
.news-page-container .big-header a:hover img {
  transform: translateX(10px);
}
@media (max-width: 576px) {
  .news-page-container .big-header a {
    font-size: 16px;
    line-height: 24px;
  }
  .news-page-container .big-header a img {
    width: 19px;
  }
}
@media only screen and (max-width: 1024px) {
  .news-page-container .big-header .other {
    display: none;
  }
}
.news-page-container .big-header .other ul {
  display: flex;
  justify-content: space-between;
  align-items: normal;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  border-radius: 4px;
  padding: 28px 0;
}
.news-page-container .big-header .other ul li {
  width: 33.3%;
  padding: 0 25px;
}
.news-page-container .big-header .other ul li:not(:last-child) {
  border-right: 1px solid #667085;
}
.news-page-container .big-header .other ul li span {
  display: block;
  margin-bottom: 4px;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #98a2b3;
}
.news-page-container .big-header .other ul li h6 {
  margin-bottom: 8px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  color: #f9fafb;
  height: 95px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-page-container .big-header .other ul li a {
  display: flex;
  justify-content: normal;
  align-items: center;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #f9fafb;
  margin: 0;
}
.news-page-container .big-header .other ul li a img {
  width: 16px;
  height: 12px;
}
.news-page-container .header {
  text-align: center;
}

.news-content {
  padding-top: 52px;
  padding-bottom: 66.5px;
}
.news-content-container .news-content-header {
  position: relative;
  text-align: center;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  color: #344054;
  padding-bottom: 13.5px;
  margin-bottom: 38.5px;
  border-bottom: 1px solid #000000;
}
@media (max-width: 576px) {
  .news-content-container .news-content-header {
    text-align: left;
  }
}
.news-content-container .news-content-header::after, .news-content-container .news-content-header::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #1d2939;
  transform: rotate(46deg);
  position: absolute;
  bottom: -4px;
}
.news-content-container .news-content-header::after {
  right: -1px;
}
.news-content-container .news-content-header::before {
  left: -1px;
}
.news-content-container .cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(424px, 1fr));
  gap: 48px 24px;
  margin-bottom: 13px;
}
@media (max-width: 480px) {
  .news-content-container .cards {
    grid-template-columns: 1fr;
    gap: 28px 0;
  }
}
.news-content-container .cards .time {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #667085;
}
@media (max-width: 576px) {
  .news-content-container .cards .time {
    font-size: 14px;
  }
}
.news-content-container .more {
  position: relative;
  padding: 35.5px 0;
  border-bottom: 1px solid #000000;
  background-color: transparent;
  text-align: center;
}
.news-content-container .more a {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #0f1521;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.4s;
  position: relative;
}
.news-content-container .more a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  transform: translateX(-50px);
  background-color: #a60303;
  opacity: 0;
  transition: 0.4s;
}
.news-content-container .more a:hover {
  color: #a60303;
}
.news-content-container .more a:hover::after {
  transform: translateX(0);
  opacity: 1;
}
.news-content-container .more::after, .news-content-container .more::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #1d2939;
  transform: rotate(46deg);
  position: absolute;
  bottom: -4px;
}
.news-content-container .more::after {
  right: -1px;
}
.news-content-container .more::before {
  left: -1px;
}

.news-detail {
  position: relative;
}
.news-detail-header {
  height: 590px;
}
.news-detail-header .image {
  position: relative;
  height: 100%;
}
.news-detail-header .image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.584) 100%);
  -webkit-backdrop-filter: blur(3.5px);
          backdrop-filter: blur(3.5px);
}
.news-detail-header .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-detail-content {
  padding-bottom: 80px;
  margin-top: -300px;
}
@media only screen and (max-width: 1024px) {
  .news-detail-content {
    margin-top: -400px;
  }
}
.news-detail-content-container {
  position: relative;
  border-bottom: 1px solid #1d2939;
}
@media only screen and (max-width: 1024px) {
  .news-detail-content-container {
    border-bottom: 1px solid transparent;
  }
}
.news-detail-content-container::before, .news-detail-content-container::after {
  border-bottom: 1px solid #000000;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #1d2939;
  transform: rotate(46deg);
  position: absolute;
  bottom: -6px;
}
@media only screen and (max-width: 1024px) {
  .news-detail-content-container::before, .news-detail-content-container::after {
    display: none;
  }
}
.news-detail-content-container .content {
  width: 85%;
  background: #f9fafb;
  border: 2px solid #ffffff;
  box-shadow: -4px 16px 27px rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  padding: 48px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .news-detail-content-container .content {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .news-detail-content-container .content {
    padding: 24px;
  }
}
.news-detail-content-container .content h2 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  color: #344054;
  margin-bottom: 48px;
}
@media (max-width: 576px) {
  .news-detail-content-container .content h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }
}
.news-detail-content-container .content .time-and-icons {
  display: flex;
  justify-content: space-between;
  align-items: normal;
}
@media (max-width: 576px) {
  .news-detail-content-container .content .time-and-icons {
    flex-direction: column;
  }
}
.news-detail-content-container .content .time-and-icons .time {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #667085;
}
@media (max-width: 576px) {
  .news-detail-content-container .content .time-and-icons .time {
    margin-bottom: 32px;
  }
}
.news-detail-content-container .content .time-and-icons ul {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #667085;
}
@media (max-width: 576px) {
  .news-detail-content-container .content .time-and-icons ul {
    justify-content: flex-start;
  }
}
.news-detail-content-container .content .time-and-icons ul li {
  margin: 0 6px;
}
.news-detail-content-container .content .time-and-icons ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 30px;
}
.news-detail-content-container .content .time-and-icons ul li:first-child a {
  background-color: #215a9d;
}
.news-detail-content-container .content .time-and-icons ul li:nth-child(2) a {
  background-color: #9b219d;
}
.news-detail-content-container .content .time-and-icons ul li:last-child a {
  background-color: #219d26;
}
.news-detail-content-container .content .time-and-icons:last-child {
  padding: 12px;
  border-top: 1px solid #cbd5e1;
}
.news-detail-content-container .content .text {
  margin: 24px 0;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #0f1521;
  text-align: justify;
}
@media (max-width: 576px) {
  .news-detail-content-container .content .text {
    font-size: 14px;
  }
}
.news-detail-content-container .content img {
  width: 100% !important;
  height: 100% !important;
}
.news-detail-content-container .content table {
  width: 100% !important;
}
.news-detail-content-container::after {
  right: 0;
}
.news-detail .other-news-container .cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(424px, 1fr));
  gap: 48px 24px;
  margin-bottom: 13px;
}
@media (max-width: 480px) {
  .news-detail .other-news-container .cards {
    grid-template-columns: 1fr;
    gap: 28px 0;
    margin-bottom: 110px;
  }
}

.gallery-page {
  padding-bottom: 95px;
}
.gallery-page .news-page {
  padding-bottom: 200px;
}
@media only screen and (max-width: 1024px) {
  .gallery-page .news-page {
    padding-bottom: 0;
  }
}
.gallery-page .gallery-content-container .gallery-cards {
  display: grid;
  position: relative;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 60px 24px;
  margin-top: -150px;
  z-index: 1;
}
@media (max-width: 480px) {
  .gallery-page .gallery-content-container .gallery-cards {
    grid-template-columns: 1fr;
    gap: 32px 0;
  }
}

.gallery-detail {
  position: relative;
}
.gallery-detail-header {
  height: 100%;
}
.gallery-detail-header-content {
  position: relative;
  z-index: 1;
  height: 49%;
  display: flex;
  justify-content: space-between;
  align-items: normal;
  flex-direction: column;
  margin-top: -340px;
}
@media only screen and (max-width: 768px) {
  .gallery-detail-header-content {
    height: initial;
    flex-direction: column-reverse;
    margin-top: -375px;
    justify-content: flex-end;
  }
}
.gallery-detail-header-content h1 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  color: #f9fafb;
  width: 95%;
}
.gallery-detail-header-content .bottom-info {
  display: flex;
  justify-content: space-between;
  align-items: normal;
  padding: 16px 0;
  border-bottom: 1px solid #f9fafb;
}
@media only screen and (max-width: 768px) {
  .gallery-detail-header-content .bottom-info {
    border-bottom: none;
    position: relative;
  }
}
.gallery-detail-header-content .bottom-info .left {
  display: flex;
}
.gallery-detail-header-content .bottom-info .left .photo-count {
  display: flex;
  justify-content: normal;
  align-items: center;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #f9fafb;
  margin-right: 12px;
}
.gallery-detail-header-content .bottom-info .left .photo-count svg {
  margin-right: 8px;
}
.gallery-detail-header-content .bottom-info .left .date {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #f9fafb;
  margin-left: 12px;
  position: relative;
}
.gallery-detail-header-content .bottom-info .left .date::before {
  content: "";
  position: absolute;
  left: -12px;
  width: 1px;
  height: 16px;
  background-color: #cbd5e1;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .gallery-detail-header-content .bottom-info .right {
    position: absolute;
    bottom: -270px;
    width: 100%;
    border-bottom: 1px solid #f9fafb;
    padding-bottom: 24px;
  }
}
.gallery-detail-header-content .bottom-info .right ul {
  display: flex;
  justify-content: normal;
  align-items: center;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #f9fafb;
}
.gallery-detail-header-content .bottom-info .right ul li {
  margin: 0 10px;
}
.gallery-detail-header-content .bottom-info .right ul li:first-child {
  margin-left: 20px;
}
.gallery-detail-header-content .bottom-info .right ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
  width: 48px;
  height: 48px;
}
.gallery-detail .gallery-cards {
  padding-top: 52px;
  padding-bottom: 72px;
}
@media only screen and (max-width: 768px) {
  .gallery-detail .gallery-cards {
    padding-top: 26px;
  }
}
.gallery-detail .gallery-cards-container-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(424px, 1fr));
  gap: 24px;
}
@media (max-width: 480px) {
  .gallery-detail .gallery-cards-container-content {
    grid-template-columns: 1fr;
  }
}
.gallery-detail .gallery-cards-container-content .card {
  cursor: pointer;
  width: 100%;
  height: 188px;
}
.gallery-detail .gallery-cards-container-content .card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-detail .gallery-cards .image-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  z-index: 22;
  width: 100vw;
  height: 100vh;
  transition: 0.5s;
}
.gallery-detail .gallery-cards .image-box .image-view {
  position: relative;
  padding: 20px;
  background: rgba(15, 21, 33, 0.5);
  border: 1px solid #ffffff;
  -webkit-backdrop-filter: blur(29px);
          backdrop-filter: blur(29px);
  border-radius: 12px;
}
.gallery-detail .gallery-cards .image-box .image-view .main-image {
  max-width: 75vw;
  max-height: 75vh;
}
.gallery-detail .gallery-cards .image-box .image-view .image-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
}
.gallery-detail .gallery-cards .image-box .image-view .image-actions .count {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: white;
}
.gallery-detail .gallery-cards .image-box .image-view .image-actions .count .line {
  width: 26px;
  height: 1px;
  background-color: #d9d9d9;
  margin: 0 7px;
}
.gallery-detail .gallery-cards .image-box .image-view .image-actions .slider-actions {
  display: flex;
}
.gallery-detail .gallery-cards .image-box .image-view .image-actions .slider-actions button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  border-radius: 27px;
}
.gallery-detail .gallery-cards .image-box .image-view .image-actions .slider-actions #nextButton {
  margin-left: 32px;
}
.gallery-detail .gallery-cards .image-box .image-view .image-actions .slider-actions #nextButton,
.gallery-detail .gallery-cards .image-box .image-view .image-actions .slider-actions #prevButton {
  cursor: pointer;
}
.gallery-detail .gallery-cards .image-box.no-active {
  z-index: -1;
  left: -100px;
  opacity: 0;
}
.gallery-detail .gallery-cards .image-box.active {
  z-index: 3;
  left: 0;
  opacity: 1;
}

.contact .little-header-container h1 {
  position: relative;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  color: #f9fafb;
}
@media (max-width: 576px) {
  .contact .little-header-container h1 {
    font-size: 36px;
    line-height: 56px;
  }
}
.contact-content {
  padding-bottom: 82px;
}
.contact-content-container .form-info {
  display: flex;
}
.contact-content-container .form-info form {
  position: relative;
  top: -80px;
  margin-right: 96px;
  width: 50%;
  padding-top: 44px;
  padding-left: 48px;
  padding-right: 48px;
  padding-bottom: 74px;
  background: #f9fafb;
  border: 2px solid #ffffff;
  box-shadow: -7px 16px 27px rgba(0, 0, 0, 0.03);
  border-radius: 4px;
}
.contact-content-container .form-info form p {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #1d2939;
  margin-bottom: 36px;
}
.contact-content-container .form-info form .form-group {
  margin-bottom: 16px;
}
.contact-content-container .form-info form .form-group label {
  display: block;
  margin-bottom: 8px;
}
.contact-content-container .form-info form .form-group input {
  height: 48px;
}
.contact-content-container .form-info form .form-group textarea {
  height: 136px;
  margin-bottom: 32px;
}
.contact-content-container .form-info form button {
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: #f8fafc;
  background: #1f2668;
  border: 1px solid #ffffff;
  border-radius: 8px;
}
.contact-content-container .form-info form button img {
  margin-right: 8px;
}
.contact-content-container .form-info .info {
  width: 50%;
  padding-top: 37px;
  padding-bottom: 77px;
}
.contact-content-container .form-info .info ul {
  border-left: 1px solid #e2e8f0;
  position: relative;
}
.contact-content-container .form-info .info ul li {
  padding-top: 25px;
  padding-bottom: 33px;
  padding-left: 43px;
  padding-right: 43px;
}
.contact-content-container .form-info .info ul li h5 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  color: #1d2939;
  margin-bottom: 8px;
}
.contact-content-container .form-info .info ul li p {
  margin-bottom: 16px;
}
.contact-content-container .form-info .info ul li p:last-child {
  margin-bottom: 0;
}
.contact-content-container .form-info .info ul li:not(:first-child) {
  position: relative;
  border-top: 1px solid #e2e8f0;
}
.contact-content-container .form-info .info ul li:not(:first-child)::after, .contact-content-container .form-info .info ul li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  transform: rotate(46deg);
}
.contact-content-container .form-info .info ul li:not(:first-child)::before {
  left: -4px;
}
.contact-content-container .form-info .info ul li:not(:first-child)::after {
  right: 0;
}
.contact-content-container .form-info .info ul::before, .contact-content-container .form-info .info ul::after {
  content: "";
  position: absolute;
  left: -4px;
  width: 8px;
  height: 8px;
  background: #cbd5e1;
  transform: rotate(46deg);
}
.contact-content-container .form-info .info ul::before {
  top: 0;
}
.contact-content-container .form-info .info ul::after {
  bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .contact-content-container .form-info {
    flex-direction: column;
  }
  .contact-content-container .form-info form,
  .contact-content-container .form-info .info {
    width: 100%;
  }
  .contact-content-container .form-info form {
    margin-top: -300px;
    top: 0;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.academy-content {
  padding-bottom: 64px;
}
@media only screen and (max-width: 1024px) {
  .academy-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.academy-content-container {
  position: relative;
  background: #f9fafb;
  border: 2px solid #ffffff;
  box-shadow: -7px 16px 27px rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  padding: 28px 36px 60px 36px;
  margin-top: -80px;
}
@media only screen and (max-width: 1024px) {
  .academy-content-container {
    margin-top: -300px;
    padding: 16px 24px;
  }
}
.academy-content-container .content-header {
  margin-bottom: 28px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.academy-content-container .content-header div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
.academy-content-container .content-header div::before, .academy-content-container .content-header div::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 48%;
  height: 1px;
  transform: translateY(-50%);
  background-color: #344054;
}
@media (max-width: 576px) {
  .academy-content-container .content-header div::before, .academy-content-container .content-header div::after {
    width: 40%;
  }
}
.academy-content-container .content-header div::before {
  left: 0;
}
.academy-content-container .content-header div::after {
  right: 0;
}
.academy-content-container .content-header::before, .academy-content-container .content-header::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #344054;
  transform: rotate(46deg) translateY(-50%);
}
.academy-content-container .content-header::before {
  left: -4px;
}
.academy-content-container .content-header::after {
  right: -4px;
}
.academy-content-container .content p {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #0f1521;
  text-align: justify;
  margin-bottom: 55px;
}
@media (max-width: 576px) {
  .academy-content-container .content p {
    font-size: 14px;
  }
}
.academy-content-container .content .content-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.academy-photos-container .header-texts {
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  .academy-photos-container .header-texts h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
.academy-photos-container .academy-slider {
  padding-top: 58px;
  padding-bottom: 101px;
}
.academy-photos-container .academy-slider .swiper-slide {
  width: 648px;
  height: 342px;
  border: 1px solid #ffffff;
  filter: drop-shadow(-6px 4px 8px rgba(0, 0, 0, 0.25));
}
.academy-photos-container .academy-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.academy-photos-container .academy-slider .swiper-slide .swiper-slide-shadow-left,
.academy-photos-container .academy-slider .swiper-slide .swiper-slide-shadow-right {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  border: 1px solid #ffffff;
  box-shadow: -6px 4px 8px rgba(0, 0, 0, 0.05);
}
.academy-tournament-container {
  overflow: hidden;
}
.academy-tournament-container .games-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #cbd5e1;
  border-top: 1px solid #cbd5e1;
  margin-bottom: 60px;
}
.academy-tournament-container .games-header button {
  padding: 19px 24px;
  transition: 0.5s;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #475467;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
.academy-tournament-container .games-header button.active {
  border-top: 1px solid #a40707;
  border-bottom: 1px solid #a40707;
  color: #a40707;
}
@media only screen and (max-width: 768px) {
  .academy-tournament-container .games-header button {
    font-size: 16px;
    line-height: 24px;
  }
}
.academy-tournament-container .tabs {
  display: flex;
  transition: 0.5s;
  width: 100%;
}
.academy-tournament-container .tabs .tab {
  width: 100%;
  display: none;
}
.academy-tournament-container .tabs .tab .tournament-and-games {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .academy-tournament-container .tabs .tab .tournament-and-games {
    flex-direction: column;
  }
}
.academy-tournament-container .tabs .tab .tournament-and-games .table-content {
  margin-right: 24px;
}
@media only screen and (max-width: 1024px) {
  .academy-tournament-container .tabs .tab .tournament-and-games .table-content {
    margin-right: 0;
  }
}
.academy-tournament-container .tabs .tab .tournament-and-games .table-content table {
  min-width: 872px;
}
@media only screen and (max-width: 1024px) {
  .academy-tournament-container .tabs .tab .tournament-and-games .table-content table {
    min-width: inherit;
  }
}
.academy-tournament-container .tabs .tab .tournament-and-games .last-games {
  width: 100%;
  height: 256px;
  padding: 20px 16px;
  background: #f9fafb;
  border: 2px solid #ffffff;
  box-shadow: -7px 16px 15px rgba(0, 0, 0, 0.03);
  border-radius: 10px;
}
@media only screen and (max-width: 1024px) {
  .academy-tournament-container .tabs .tab .tournament-and-games .last-games {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}
.academy-tournament-container .tabs .tab .tournament-and-games .last-games h6 {
  margin-bottom: 8px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  color: #344054;
}
.academy-tournament-container .tabs .tab .tournament-and-games .last-games .game {
  background: #f1f5f9;
  border-radius: 4px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.academy-tournament-container .tabs .tab .tournament-and-games .last-games .game .team-img {
  width: 88px;
  height: 88px;
  background: #f9fafb;
  border: 4px solid #ffffff;
  box-shadow: -4px 16px 27px rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  padding: 17px 0;
}
@media (max-width: 576px) {
  .academy-tournament-container .tabs .tab .tournament-and-games .last-games .game .team-img {
    width: 60px;
    height: 60px;
    padding: 12px 0;
  }
}
.academy-tournament-container .tabs .tab .tournament-and-games .last-games .game .team-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.academy-tournament-container .tabs .tab .tournament-and-games .last-games .game .team-name {
  text-align: center;
  margin-top: 8px;
  color: #1d2939;
}
@media (max-width: 576px) {
  .academy-tournament-container .tabs .tab .tournament-and-games .last-games .game .team-name {
    font-size: 16px;
    line-height: 24px;
  }
}
.academy-tournament-container .tabs .tab .tournament-and-games .last-games .game .result {
  background: #f9fafb;
  border: 2px solid #ffffff;
  box-shadow: -4px 16px 27px rgba(0, 0, 0, 0.04);
  border-radius: 2px;
  padding: 8px 12px;
  margin-top: -30px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: #1d2939;
}
.academy-tournament-container .tabs .tab.active {
  display: block;
}

.calendar .calendar-header {
  position: relative;
}
.calendar .calendar-header-container {
  position: relative;
  padding-top: 204px;
  padding-bottom: 54px;
}
.calendar .calendar-header-container h1 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  color: #f9fafb;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .calendar .calendar-header-container h1 {
    margin-bottom: 28px;
  }
}
.calendar .calendar-header-container .next-game {
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20.5px 0;
}
.calendar .calendar-header-container .next-game .teams {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 20px;
}
@media (max-width: 576px) {
  .calendar .calendar-header-container .next-game .teams {
    margin-top: 20px;
    align-items: flex-start;
  }
}
.calendar .calendar-header-container .next-game .teams .team {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 56px;
  color: white;
  white-space: nowrap;
}
.calendar .calendar-header-container .next-game .teams .team:first-child {
  margin-right: 20px;
}
.calendar .calendar-header-container .next-game .teams .team:last-child {
  margin-left: 20px;
}
@media (max-width: 576px) {
  .calendar .calendar-header-container .next-game .teams .team {
    font-size: 12px;
    line-height: 16px;
    white-space: normal;
    text-align: center;
  }
}
.calendar .calendar-header-container .next-game .teams .left-team,
.calendar .calendar-header-container .next-game .teams .right-team {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .calendar .calendar-header-container .next-game .teams .left-team,
  .calendar .calendar-header-container .next-game .teams .right-team {
    flex-direction: column;
  }
  .calendar .calendar-header-container .next-game .teams .left-team .team,
  .calendar .calendar-header-container .next-game .teams .right-team .team {
    margin-left: 0;
    margin-right: 0;
  }
  .calendar .calendar-header-container .next-game .teams .left-team img,
  .calendar .calendar-header-container .next-game .teams .right-team img {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (max-width: 576px) {
  .calendar .calendar-header-container .next-game .teams .left-team,
  .calendar .calendar-header-container .next-game .teams .right-team {
    width: 30%;
  }
}
@media only screen and (max-width: 1024px) {
  .calendar .calendar-header-container .next-game .teams .left-team {
    margin-right: 32px;
    flex-direction: column-reverse;
  }
}
@media (max-width: 576px) {
  .calendar .calendar-header-container .next-game .teams .left-team {
    margin-right: 16px;
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 1024px) {
  .calendar .calendar-header-container .next-game .teams .right-team {
    margin-left: 32px;
  }
}
@media (max-width: 576px) {
  .calendar .calendar-header-container .next-game .teams .right-team {
    margin-left: 16px;
  }
}
.calendar .calendar-header-container .next-game .teams img {
  width: 100%;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 576px) {
  .calendar .calendar-header-container .next-game .teams img {
    width: 40px;
    height: auto;
  }
}
.calendar .calendar-header-container .next-game .teams .mr {
  margin-left: 52px;
}
.calendar .calendar-header-container .next-game .teams .ml {
  margin-right: 52px;
}
.calendar .calendar-header-container .next-game .teams .mx {
  margin: 0 13px;
}
@media (max-width: 576px) {
  .calendar .calendar-header-container .next-game .teams .mx {
    margin: 0 4px;
  }
}
.calendar .calendar-header-container .next-game .teams .date {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: white;
}
.calendar .calendar-header-container .next-game .teams .date .time {
  border: 1px solid rgba(255, 255, 255, 0.24);
  -webkit-backdrop-filter: blur(5.5px);
          backdrop-filter: blur(5.5px);
  border-radius: 2px;
  width: 56px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 480px) {
  .calendar .calendar-header-container .next-game .teams .date .time {
    width: 40px;
    height: 56px;
  }
}
.calendar .calendar-header-container .next-game .teams .date .time span {
  display: block;
}
.calendar .calendar-header-container .next-game .teams .date .time span:last-child {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #e2e8f0;
}
@media (max-width: 576px) {
  .calendar .calendar-header-container .next-game .teams .date .time span:last-child {
    font-size: 14px;
  }
}
.calendar .calendar-header-container .next-game .teams .date .time .day,
.calendar .calendar-header-container .next-game .teams .date .time .hour,
.calendar .calendar-header-container .next-game .teams .date .time .minute {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  color: #f9fafb;
}
@media (max-width: 576px) {
  .calendar .calendar-header-container .next-game .teams .date .time .day,
  .calendar .calendar-header-container .next-game .teams .date .time .hour,
  .calendar .calendar-header-container .next-game .teams .date .time .minute {
    font-size: 16px;
    line-height: 24px;
  }
}
.calendar .calendar-header-container .next-game .teams::after {
  content: "";
  position: absolute;
  background-color: #475467;
  height: 1px;
  width: 140%;
  bottom: 0;
}
.calendar .calendar-header-container .next-game p {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  color: #f9fafb;
}
@media (max-width: 576px) {
  .calendar .calendar-header-container .next-game p {
    font-weight: 400;
  }
}
.calendar .tournament {
  padding-top: 60px;
  padding-bottom: 80px;
}
.calendar .tournament-container .table-content table {
  width: 100%;
}
.calendar .tournament-container .table-content table thead {
  background-color: #f9fafb;
}
.calendar .tournament-container .table-content table tbody tr td {
  padding: 10px 0;
}
.calendar .games-container .games-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #cbd5e1;
  border-top: 1px solid #cbd5e1;
}
.calendar .games-container .games-header button {
  padding: 19px 24px;
  transition: 0.5s;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #475467;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
.calendar .games-container .games-header button.active {
  border-top: 1px solid #a40707;
  border-bottom: 1px solid #a40707;
  color: #a40707;
}
@media only screen and (max-width: 768px) {
  .calendar .games-container .games-header button {
    font-size: 16px;
    line-height: 24px;
  }
}
.calendar .games-container .games-header .options {
  position: absolute;
  right: 60px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .calendar .games-container .games-header .options {
    top: -30px;
    right: 0;
  }
}
.calendar .games-container .games-header .dropdown {
  display: none;
  position: absolute;
  width: 170px;
  top: 80px;
  right: 0;
  background: #f9fafb;
  border: 1px solid #ffffff;
  box-shadow: 0px 6px 19px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  z-index: 1;
  padding: 8px;
}
@media only screen and (max-width: 768px) {
  .calendar .games-container .games-header .dropdown {
    top: 0;
  }
}
.calendar .games-container .games-header .dropdown.active {
  display: block;
}
.calendar .games-container .games-header .dropdown li button {
  text-align: center;
  padding: 8px 0;
  width: 100%;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #0f1521;
}
.calendar .games-container .games-header .dropdown li button.active {
  background: #f1f5f9;
  border-radius: 4px;
  border-top: none;
  border-bottom: none;
}
.calendar .games-container .games-result {
  display: flex;
  width: 200%;
  transform: translateX(0);
  transition: 0.4s;
}
.calendar .games-container .games-result .previous-games,
.calendar .games-container .games-result .next-games {
  width: 100%;
}
.calendar .games-container .games-result .previous-games .for-month,
.calendar .games-container .games-result .next-games .for-month {
  padding-bottom: 80px;
}
.calendar .games-container .games-result .previous-games .for-month:first-child,
.calendar .games-container .games-result .next-games .for-month:first-child {
  padding-top: 44px;
}
.calendar .games-container .games-result .previous-games .for-month h5,
.calendar .games-container .games-result .next-games .for-month h5 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  color: #344054;
  text-align: center;
  margin-bottom: 28px;
}
@media only screen and (max-width: 768px) {
  .calendar .games-container .games-result .previous-games .for-month h5,
  .calendar .games-container .games-result .next-games .for-month h5 {
    font-size: 24px;
    line-height: 32px;
  }
}
.calendar .games-container .games-result .previous-games .for-month .game,
.calendar .games-container .games-result .next-games .for-month .game {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  background: #f9fafb;
  border: 2px solid #ffffff;
  box-shadow: -4px 16px 27px rgba(0, 0, 0, 0.03);
  border-radius: 1px;
  padding: 20px 0;
  margin: 24px 0;
}
@media only screen and (max-width: 1024px) {
  .calendar .games-container .games-result .previous-games .for-month .game,
  .calendar .games-container .games-result .next-games .for-month .game {
    flex-direction: column;
    padding: 12px;
    margin: 0;
    margin-bottom: 36px;
  }
}
.calendar .games-container .games-result .previous-games .for-month .game .date-and-stadium,
.calendar .games-container .games-result .next-games .for-month .game .date-and-stadium {
  position: absolute;
  left: 27.5px;
  width: 244px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.calendar .games-container .games-result .previous-games .for-month .game .date-and-stadium::after,
.calendar .games-container .games-result .next-games .for-month .game .date-and-stadium::after {
  content: "";
  width: 1px;
  height: 108px;
  position: absolute;
  right: 0;
  background: #e2e8f0;
}
.calendar .games-container .games-result .previous-games .for-month .game .date-and-stadium h6,
.calendar .games-container .games-result .next-games .for-month .game .date-and-stadium h6 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  color: #1d2939;
  margin-bottom: 4px;
}
@media only screen and (max-width: 1024px) {
  .calendar .games-container .games-result .previous-games .for-month .game .date-and-stadium h6,
  .calendar .games-container .games-result .next-games .for-month .game .date-and-stadium h6 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
  }
}
.calendar .games-container .games-result .previous-games .for-month .game .date-and-stadium .stadium,
.calendar .games-container .games-result .next-games .for-month .game .date-and-stadium .stadium {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  color: #98a2b3;
}
@media only screen and (max-width: 1024px) {
  .calendar .games-container .games-result .previous-games .for-month .game .date-and-stadium,
  .calendar .games-container .games-result .next-games .for-month .game .date-and-stadium {
    position: static;
    margin-bottom: 4px;
    width: 100%;
  }
}
.calendar .games-container .games-result .previous-games .for-month .game .teams,
.calendar .games-container .games-result .next-games .for-month .game .teams {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .calendar .games-container .games-result .previous-games .for-month .game .teams,
  .calendar .games-container .games-result .next-games .for-month .game .teams {
    padding: 12px 0;
  }
}
.calendar .games-container .games-result .previous-games .for-month .game .teams .left,
.calendar .games-container .games-result .next-games .for-month .game .teams .left {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 30%;
}
@media only screen and (max-width: 1024px) {
  .calendar .games-container .games-result .previous-games .for-month .game .teams .left,
  .calendar .games-container .games-result .next-games .for-month .game .teams .left {
    flex-direction: column-reverse;
    justify-content: center;
  }
}
.calendar .games-container .games-result .previous-games .for-month .game .teams .right,
.calendar .games-container .games-result .next-games .for-month .game .teams .right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
}
@media only screen and (max-width: 1024px) {
  .calendar .games-container .games-result .previous-games .for-month .game .teams .right,
  .calendar .games-container .games-result .next-games .for-month .game .teams .right {
    flex-direction: column;
    justify-content: center;
  }
}
.calendar .games-container .games-result .previous-games .for-month .game .teams .team,
.calendar .games-container .games-result .next-games .for-month .game .teams .team {
  width: 40%;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #1d2939;
  white-space: nowrap;
}
.calendar .games-container .games-result .previous-games .for-month .game .teams .team:first-child,
.calendar .games-container .games-result .next-games .for-month .game .teams .team:first-child {
  margin-right: 16px;
  text-align: right;
}
@media only screen and (max-width: 1024px) {
  .calendar .games-container .games-result .previous-games .for-month .game .teams .team:first-child,
  .calendar .games-container .games-result .next-games .for-month .game .teams .team:first-child {
    margin-right: 0;
    margin-top: 4px;
  }
}
.calendar .games-container .games-result .previous-games .for-month .game .teams .team:last-child,
.calendar .games-container .games-result .next-games .for-month .game .teams .team:last-child {
  margin-left: 16px;
  text-align: left;
}
@media only screen and (max-width: 1024px) {
  .calendar .games-container .games-result .previous-games .for-month .game .teams .team:last-child,
  .calendar .games-container .games-result .next-games .for-month .game .teams .team:last-child {
    margin-left: 0;
    margin-top: 4px;
  }
}
@media only screen and (max-width: 768px) {
  .calendar .games-container .games-result .previous-games .for-month .game .teams .team,
  .calendar .games-container .games-result .next-games .for-month .game .teams .team {
    width: initial;
    font-size: 16px;
    line-height: 24px;
  }
}
.calendar .games-container .games-result .previous-games .for-month .game .teams-img,
.calendar .games-container .games-result .next-games .for-month .game .teams-img {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9fafb;
  border: 4px solid #ffffff;
  box-shadow: -4px 16px 27px rgba(0, 0, 0, 0.04);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  padding: 24px;
}
@media only screen and (max-width: 768px) {
  .calendar .games-container .games-result .previous-games .for-month .game .teams-img,
  .calendar .games-container .games-result .next-games .for-month .game .teams-img {
    width: 60px;
    height: 60px;
    padding: 12px;
  }
}
.calendar .games-container .games-result .previous-games .for-month .game .teams-img img,
.calendar .games-container .games-result .next-games .for-month .game .teams-img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.calendar .games-container .games-result .previous-games .for-month .game .teams .result,
.calendar .games-container .games-result .next-games .for-month .game .teams .result {
  padding: 8px 12px;
  background: #f1f5f9;
  border-radius: 4px;
  margin-left: 47px;
  margin-right: 31px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 48px;
  color: #1d2939;
}
@media only screen and (max-width: 1024px) {
  .calendar .games-container .games-result .previous-games .for-month .game .teams .result,
  .calendar .games-container .games-result .next-games .for-month .game .teams .result {
    background-color: #f9fafb;
    background: #f9fafb;
    border: 1px solid #ffffff;
    box-shadow: -4px 4px 17px rgba(0, 0, 0, 0.04);
    border-radius: 2px;
  }
}
@media only screen and (max-width: 768px) {
  .calendar .games-container .games-result .previous-games .for-month .game .teams .result,
  .calendar .games-container .games-result .next-games .for-month .game .teams .result {
    font-size: 16px;
    line-height: 24px;
    margin-left: 24px;
    margin-right: 24px;
  }
}
@media only screen and (max-width: 1024px) {
  .calendar .games-container .games-result .previous-games .for-month .game .teams,
  .calendar .games-container .games-result .next-games .for-month .game .teams {
    background-color: #f1f5f9;
  }
}
.calendar .games-container .games-result .previous-games .for-month .game .cup,
.calendar .games-container .games-result .next-games .for-month .game .cup {
  position: absolute;
  top: -45px;
  left: -1px;
  box-shadow: -4px 16px 25px rgba(0, 0, 0, 0.03);
  width: 50%;
  padding-left: 40px;
  z-index: -1;
  border-bottom: 50px solid #f9fafb;
  border-left: 0 solid transparent;
  border-right: 100px solid transparent;
  height: 0;
}
.calendar .games-container .games-result .previous-games .for-month .game .cup-content,
.calendar .games-container .games-result .next-games .for-month .game .cup-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.calendar .games-container .games-result .previous-games .for-month .game .cup-content img,
.calendar .games-container .games-result .next-games .for-month .game .cup-content img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 8px;
}
.calendar .games-container .games-result .previous-games .for-month .game .cup-content p,
.calendar .games-container .games-result .next-games .for-month .game .cup-content p {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #1d2939;
}
@media only screen and (max-width: 1024px) {
  .calendar .games-container .games-result .previous-games .for-month .game .cup,
  .calendar .games-container .games-result .next-games .for-month .game .cup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    z-index: 1;
    width: 100%;
    border: none;
    height: inherit;
    padding-left: 0;
    padding: 4px 0;
    background-color: #f1f5f9;
    box-shadow: none;
  }
  .calendar .games-container .games-result .previous-games .for-month .game .cup-content,
  .calendar .games-container .games-result .next-games .for-month .game .cup-content {
    width: 95%;
    border-top: 1px solid #cbd5e1;
  }
  .calendar .games-container .games-result .previous-games .for-month .game .cup-content img,
  .calendar .games-container .games-result .next-games .for-month .game .cup-content img {
    display: none;
  }
  .calendar .games-container .games-result .previous-games .for-month .game .cup-content p,
  .calendar .games-container .games-result .next-games .for-month .game .cup-content p {
    text-align: center;
    width: 100%;
    font-family: "SF-Pro-Display";
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #98a2b3;
  }
}
.calendar .games-container .games-result.active {
  transform: translateX(-50%);
}

@media only screen and (max-width: 1024px) {
  .about-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.about-content-container {
  background: #f9fafb;
  border: 2px solid #ffffff;
  box-shadow: -7px 16px 27px rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  padding: 0 36px;
  position: relative;
  margin-top: -70px;
}
@media only screen and (max-width: 1024px) {
  .about-content-container {
    margin-top: -300px;
    padding: 16px 24px;
  }
}
.about-content-container .content-header {
  margin-bottom: 28px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 576px) {
  .about-content-container .content-header {
    margin-bottom: 16px;
  }
}
.about-content-container .content-header div {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}
.about-content-container .content-header div::before, .about-content-container .content-header div::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 48%;
  height: 1px;
  transform: translateY(-50%);
  background-color: #344054;
}
@media (max-width: 576px) {
  .about-content-container .content-header div::before, .about-content-container .content-header div::after {
    width: 40%;
  }
}
.about-content-container .content-header div::before {
  left: 0;
}
.about-content-container .content-header div::after {
  right: 0;
}
.about-content-container .content-header::before, .about-content-container .content-header::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  background: #344054;
  transform: rotate(46deg) translateY(-50%);
}
.about-content-container .content-header::before {
  left: -4px;
}
.about-content-container .content-header::after {
  right: -4px;
}
.about-content-container .content-text {
  position: relative;
  padding-bottom: 57px;
  border-bottom: 1px solid #344054;
}
.about-content-container .content-text p {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #0f1521;
  text-align: justify;
}
@media (max-width: 576px) {
  .about-content-container .content-text p {
    font-size: 14px;
  }
}
.about-content-container .content-text::before, .about-content-container .content-text::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #344054;
  transform: rotate(46deg);
  position: absolute;
  bottom: -4px;
}
.about-content-container .content-text::before {
  left: 0;
}
.about-content-container .content-text::after {
  right: 0;
}
.about-content-container .content-images {
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}
@media (max-width: 576px) {
  .about-content-container .content-images {
    grid-template-columns: 1fr;
    gap: 32px 0;
  }
}
.about-content-container .content-images .content-img {
  width: 100%;
  height: 316px;
}
.about-content-container .content-images .content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-content-container .content-stadium {
  padding-top: 78px;
  padding-bottom: 52px;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .about-content-container .content-stadium {
    flex-direction: column;
  }
}
@media (max-width: 576px) {
  .about-content-container .content-stadium {
    padding-top: 46px;
    padding-bottom: 16px;
  }
}
.about-content-container .content-stadium h1 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  color: #1d2939;
  margin-right: 63px;
}
@media only screen and (max-width: 768px) {
  .about-content-container .content-stadium h1 {
    margin-right: 0;
    justify-content: flex-start;
  }
  .about-content-container .content-stadium h1::before, .about-content-container .content-stadium h1::after {
    display: none;
  }
}
@media (max-width: 576px) {
  .about-content-container .content-stadium h1 {
    font-size: 24px;
    line-height: 32px;
  }
}
.about-content-container .content-stadium .content-text {
  border-bottom: none;
}
.about-content-container .content-stadium .content-text::after, .about-content-container .content-stadium .content-text::before {
  display: none;
}
.about-content-container .content-gallery {
  overflow: hidden;
}
.about-content-container .content-gallery .swiper {
  width: 100%;
  height: 100%;
}
.about-content-container .content-gallery .swiper .swiper-button-next,
.about-content-container .content-gallery .swiper .swiper-button-prev {
  display: none;
}
.about-content-container .content-gallery .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 420px;
  opacity: 1;
}
.about-content-container .content-gallery .swiper .swiper-wrapper .swiper-slide .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-content-container .content-gallery .swiper.mySwiper .swiper-slide {
  height: 166px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}
.about .mySwiper2 {
  height: 80%;
  width: 100%;
}
.about .mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 20px 0;
}
.about .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}
.about .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.about .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.videos-header {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .videos-header {
    height: 500px;
  }
}
@media (max-width: 576px) {
  .videos-header .news-page-container {
    height: initial;
  }
}
.videos-header .big-header {
  position: relative;
}
.videos-header .big-header h1 {
  margin-bottom: 48px;
}
@media only screen and (max-width: 768px) {
  .videos-header .big-header h1 {
    font-size: 24px;
    line-height: 32px;
  }
}
.videos-header .big-header a {
  margin-bottom: 180px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.videos-header .big-header a span {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: white;
}
.videos-header .big-header a img {
  margin-right: 12px;
}
.videos-header .big-header .video-other {
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: rgba(15, 21, 33, 0.5);
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  border-radius: 4px;
}
@media only screen and (max-width: 1024px) {
  .videos-header .big-header .video-other {
    display: none;
  }
}
.videos-header .big-header .video-other ul {
  display: flex;
  justify-content: normal;
  align-items: normal;
}
.videos-header .big-header .video-other ul li {
  width: 25%;
}
.videos-header .big-header .video-other ul li .video-header-text {
  padding: 32px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 111;
  padding-left: 0;
}
.videos-header .big-header .video-other ul li .video-header-text a {
  margin: 0;
  width: 100%;
  height: 100%;
}
.videos-header .big-header .video-other ul li .video-header-text h6 {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  color: #f9fafb;
}
.videos-header .big-header .video-other ul li .video-header-text img {
  margin-right: 12px;
  width: 40px;
  height: 40px;
}
.videos-header .big-header .video-other ul li .video-header-text:hover + .video-image-and-time {
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  opacity: 1;
}
.videos-header .big-header .video-other ul li .video-image-and-time {
  z-index: -1;
  opacity: 0;
  position: absolute;
  top: -145px;
  transition: 0.5s;
  transform: translateY(100px);
}
.videos-header .big-header .video-other ul li .video-image-and-time .image-video {
  position: relative;
}
.videos-header .big-header .video-other ul li .video-image-and-time .image-video p {
  position: absolute;
  top: 15px;
  left: 20px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ffffff;
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  border-radius: 4px;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #f9fafb;
}
.videos-header .big-header .video-other ul li .video-image-and-time .image-video img {
  width: 330px;
  height: 144px;
  -o-object-fit: contain;
     object-fit: contain;
}

.videos-content {
  padding-top: 52px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1024px) {
  .videos-content {
    padding-bottom: 150px;
  }
}
.videos-content-header h4 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  color: #1d2939;
  position: relative;
  text-align: left;
  padding-bottom: 13.5px;
  margin-bottom: 38.5px;
  border-bottom: 1px solid #000000;
}
@media (max-width: 576px) {
  .videos-content-header h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
.videos-content-header h4::before, .videos-content-header h4::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #1d2939;
  transform: rotate(46deg);
  position: absolute;
  bottom: -4px;
}
.videos-content-header h4::after {
  right: -1px;
}
.videos-content-header .videos-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
  gap: 104px 24px;
}
@media (max-width: 480px) {
  .videos-content-header .videos-cards {
    grid-template-columns: 1fr;
  }
}

.teams {
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .teams .little-header-container {
    display: flex;
    align-items: center;
  }
  .teams .little-header-container h1 {
    padding-top: 0;
  }
}
.teams .players {
  padding-top: 36px;
  padding-bottom: 80px;
}
.teams .players-container {
  overflow: hidden;
}
.teams .players-container .games-header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #cbd5e1;
  border-top: 1px solid #cbd5e1;
}
.teams .players-container .games-header button {
  padding: 19px 24px;
  transition: 0.5s;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #475467;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: 0.5s;
}
.teams .players-container .games-header button.active {
  border-top: 1px solid #a40707;
  border-bottom: 1px solid #a40707;
  color: #a40707;
}
@media only screen and (max-width: 768px) {
  .teams .players-container .games-header button {
    font-size: 16px;
    line-height: 24px;
  }
}
.teams .players-container .teams-slide {
  display: flex;
  width: 300%;
  transform: translateX(0);
  transition: 0.4s;
}
.teams .players-container .teams-slide .team {
  width: 100%;
}
.teams .players-container .teams-slide .team .player-position {
  padding-top: 52px;
  padding-bottom: 66px;
  position: relative;
}
.teams .players-container .teams-slide .team .player-position:not(:last-child) {
  border-bottom: 1px solid black;
}
.teams .players-container .teams-slide .team .player-position:not(:last-child)::before, .teams .players-container .teams-slide .team .player-position:not(:last-child)::after {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #1d2939;
  transform: rotate(46deg);
  position: absolute;
  bottom: -4px;
}
.teams .players-container .teams-slide .team .player-position:not(:last-child)::after {
  right: 0;
}
.teams .players-container .teams-slide .team .player-position-header h5 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  color: #344054;
  margin-bottom: 28px;
  text-align: center;
}
.teams .players-container .teams-slide.active {
  transform: translateX(-33%);
}
.teams .players-container .teams-slide.active2 {
  transform: translateX(-67%);
}

.player-header {
  position: relative;
}
@media (max-width: 576px) {
  .player-header {
    height: 590px;
  }
}
.player-header-container {
  position: relative;
  z-index: 0;
  padding-top: 173px;
}
@media (max-width: 576px) {
  .player-header-img {
    width: 283px;
    height: 310px;
  }
}
.player-header-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.player-header-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .player-header-info {
    flex-direction: column;
  }
}
.player-header-text {
  position: relative;
  margin-left: 100px;
}
@media only screen and (max-width: 1024px) {
  .player-header-text {
    margin-left: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .player-header-text {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid #ffffff;
    -webkit-backdrop-filter: blur(7.5px);
            backdrop-filter: blur(7.5px);
    border-radius: 3px;
    padding-left: 25px;
    padding-right: 20px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.player-header-text-number {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 160px;
  line-height: 180px;
  color: #e2e8f0;
}
@media only screen and (max-width: 1024px) {
  .player-header-text-number {
    margin-right: 24px;
  }
}
@media (max-width: 576px) {
  .player-header-text-number {
    font-size: 60px;
    line-height: 80px;
  }
}
.player-header-text-name {
  margin-left: 185px;
  margin-top: -85px;
}
@media only screen and (max-width: 1024px) {
  .player-header-text-name {
    margin-left: 0;
    margin-top: 0;
  }
}
.player-header-text-name span {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-size: 100px;
  line-height: 112px;
  color: #f9fafb;
  display: block;
}
@media (max-width: 576px) {
  .player-header-text-name span {
    font-size: 40px;
    line-height: 42px;
  }
}
.player-header-text .square {
  width: 307px;
  height: 307px;
  position: absolute;
  top: 0;
  left: 40px;
  z-index: -1;
  background: rgba(255, 255, 255, 0.05);
  border: 4px solid #ffffff;
  -webkit-backdrop-filter: blur(7.5px);
          backdrop-filter: blur(7.5px);
  border-radius: 5px;
}
@media only screen and (max-width: 1024px) {
  .player-header-text .square {
    display: none;
  }
}
.player-info-list {
  padding-bottom: 60px;
}
.player-info-list-container {
  position: relative;
  margin-top: -32px;
  margin-bottom: 32px;
}
.player-info-list-container ul {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9fafb;
  border: 2px solid #ffffff;
  box-shadow: -4px 16px 27px rgba(0, 0, 0, 0.03);
  border-radius: 1px;
  padding: 0 28px;
}
@media only screen and (max-width: 1024px) {
  .player-info-list-container ul {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.player-info-list-container ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 20%;
  padding: 32px 0;
}
@media only screen and (max-width: 1024px) {
  .player-info-list-container ul li {
    width: 25%;
    padding: 24px 0;
    position: relative;
  }
  .player-info-list-container ul li:not(:last-child):after {
    content: "";
    width: 174px;
    height: 1px;
    background-color: #e2e8f0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 768px) {
  .player-info-list-container ul li {
    width: 33.3333%;
  }
}
@media (max-width: 576px) {
  .player-info-list-container ul li {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .player-info-list-container ul li {
    width: 100%;
  }
}
.player-info-list-container ul li p:first-child {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #344054;
  margin-bottom: 12px;
}
.player-info-list-container ul li p:last-child {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  color: #1d2939;
}
.player-info-list-container ul li .flag {
  display: flex;
  justify-content: center;
  align-items: center;
}
.player-info-list-container ul li .flag-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.player-info-list-container ul li .flag-img img {
  width: 24px;
  height: 16px;
  -o-object-fit: contain;
     object-fit: contain;
}
.player-info-list-container ul li .flag-name {
  position: relative;
  margin-left: 12px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #1d2939;
}
.player-info-list-container ul li .flag-name::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 13px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #0f1521;
}
.player-about {
  padding-top: 26px;
  padding-bottom: 96px;
}
@media (max-width: 576px) {
  .player-about {
    padding-bottom: 36px;
  }
}
.player-about-content {
  padding-top: 34px;
  border-top: 1px solid #98a2b3;
  position: relative;
  display: flex;
}
.player-about-content::before, .player-about-content::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  background: #98a2b3;
  border: 1px solid #98a2b3;
  transform: rotate(46deg);
}
.player-about-content::before {
  left: -4px;
}
.player-about-content::after {
  right: -4px;
}
.player-about-content h4 {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .player-about-content h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
.player-about-content-text {
  width: 60%;
}
@media only screen and (max-width: 1024px) {
  .player-about-content-text {
    width: 100%;
  }
}
.player-about-content-text p {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #0f1521;
  text-align: justify;
}
@media (max-width: 576px) {
  .player-about-content-text p {
    font-size: 14px;
    line-height: 24px;
  }
}
.player-about-content-img {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: normal;
  width: 40%;
  height: 520px;
}
@media only screen and (max-width: 1024px) {
  .player-about-content-img {
    display: none;
  }
}
.player-about-content-img .img {
  position: sticky;
  top: 70px;
  background-repeat: no-repeat;
  background-position-x: 90%;
  background-size: contain;
  width: 410px;
  height: 512px;
}
.player-about-content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 30px;
}
.player-statistics {
  padding-top: 20px;
  padding-bottom: 60px;
}
.player-statistics-container {
  padding-top: 34px;
  border-top: 1px solid #98a2b3;
  position: relative;
}
.player-statistics-container::before, .player-statistics-container::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  background: #98a2b3;
  border: 1px solid #98a2b3;
  transform: rotate(46deg);
}
.player-statistics-container::before {
  left: -4px;
}
.player-statistics-container::after {
  right: -4px;
}
.player-statistics-container h4 {
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .player-statistics-container h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
.player-statistics-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
  gap: 36px 22px;
}
@media only screen and (max-width: 768px) {
  .player-statistics-list {
    gap: 17px;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 312px) {
  .player-statistics-list {
    grid-template-columns: 1fr;
  }
}
.player-statistics-list li {
  background: #f9fafb;
  border: 2px solid #ffffff;
  box-shadow: -4px 16px 27px rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  padding: 24px 40px;
  grid-column: span 1;
}
.player-statistics-list li:last-child {
  grid-column: span 2;
}
.player-statistics-list li p:first-child {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #344054;
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .player-statistics-list li p:first-child {
    text-align: center;
  }
}
.player-statistics-list li p:last-child {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 56px;
  color: #0f1521;
}
@media only screen and (max-width: 768px) {
  .player-statistics-list li p:last-child {
    text-align: center;
  }
}
.player-statistics-list .cards {
  display: flex;
  padding: 40px 36px;
}
@media (max-width: 480px) {
  .player-statistics-list .cards {
    flex-direction: column;
  }
}
.player-statistics-list .cards .yellow,
.player-statistics-list .cards .red {
  width: 50%;
  display: flex;
}
@media (max-width: 480px) {
  .player-statistics-list .cards .yellow,
  .player-statistics-list .cards .red {
    width: 100%;
    align-items: center;
  }
}
.player-statistics-list .cards .card-color {
  padding: 4px 14px;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
  line-height: 56px;
  color: #f9fafb;
}
.player-statistics-list .cards .yellow {
  position: relative;
}
.player-statistics-list .cards .yellow .card-color {
  background: #f4df2f;
  border: 1px solid #ffffff;
  box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}
.player-statistics-list .cards .yellow::after {
  content: "";
  width: 1px;
  height: 72px;
  position: absolute;
  right: -50px;
  background-color: #cbd5e1;
}
@media (max-width: 480px) {
  .player-statistics-list .cards .yellow::after {
    display: none;
  }
}
.player-statistics-list .cards .red {
  margin-left: 100px;
}
@media (max-width: 480px) {
  .player-statistics-list .cards .red {
    margin-left: 0;
    margin-top: 24px;
  }
}
.player-statistics-list .cards .red .card-color {
  background: #c91e1e;
  border: 1px solid #ffffff;
  box-shadow: -4px 4px 4px rgba(0, 0, 0, 0.15);
  border-radius: 2px;
}
.player-statistics-list .cards .result {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  color: black;
  margin-left: 12px;
  width: 50%;
}
@media (max-width: 480px) {
  .player-statistics-list .cards .result {
    width: 100%;
  }
}
.player-carousel {
  padding-top: 26px;
  padding-bottom: 60px;
}
.player-carousel-container .wrapper {
  padding-top: 34px;
  border-top: 1px solid #98a2b3;
  position: relative;
}
.player-carousel-container .wrapper::before, .player-carousel-container .wrapper::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  background: #98a2b3;
  border: 1px solid #98a2b3;
  transform: rotate(46deg);
}
.player-carousel-container .wrapper::before {
  left: -4px;
}
.player-carousel-container .wrapper::after {
  right: -4px;
}
.player-carousel-container .wrapper .swiper img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.player-carousel-container .header-texts {
  margin-top: 34px;
  margin-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  .player-carousel-container .header-texts h4 {
    font-size: 24px;
    line-height: 32px;
  }
}
.player-other {
  padding-top: 26px;
  padding-bottom: 120px;
}
.player-other-container {
  padding-top: 34px;
  border-top: 1px solid #98a2b3;
  position: relative;
}
.player-other-container::before, .player-other-container::after {
  content: "";
  position: absolute;
  top: -4px;
  width: 8px;
  height: 8px;
  background: #98a2b3;
  border: 1px solid #98a2b3;
  transform: rotate(46deg);
}
.player-other-container::before {
  left: -4px;
}
.player-other-container::after {
  right: -4px;
}
.player-other-container h4 {
  margin-bottom: 20px;
}
.player-other h4 {
  margin-bottom: 28px;
}
.player h4 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  color: #344054;
}

.structure {
  padding-bottom: 124px;
  position: relative;
}
.structure-cards {
  margin-top: -76px;
}
@media only screen and (max-width: 1024px) {
  .structure-cards {
    margin-top: -240px;
  }
}
.structure-cards-container .cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(312px, 1fr));
}
@media only screen and (max-width: 1024px) {
  .structure-cards-container .cards {
    gap: 84px 0;
  }
}
@media (max-width: 480px) {
  .structure-cards-container .cards {
    grid-template-columns: 1fr;
  }
}
.structure-cards-container .cards .card {
  background: #1f2668;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #ffffff;
  box-shadow: -6px 4px 8px rgba(0, 0, 0, 0.25);
  position: relative;
}
.structure-cards-container .cards .card-nationality {
  position: absolute;
  top: 20px;
}
.structure-cards-container .cards .card-nationality img {
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 42px;
}
.structure-cards-container .cards .card-img {
  transition: 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.structure-cards-container .cards .card-img img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}
.structure-cards-container .cards .card-text {
  bottom: -12%;
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.structure-cards-container .cards .card-text-info {
  background: #f9fafb;
  border: 2px solid #ffffff;
  border-radius: 4px;
  box-shadow: -4px 16px 27px rgba(0, 0, 0, 0.03);
  padding: 24px 0;
  text-align: center;
  transition: 0.5s;
  width: 90%;
}
.structure-cards-container .cards .card-text-info h6 {
  margin-bottom: 4px;
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 500;
  color: #1d2939;
}
.structure-cards-container .cards .card-text-info p {
  font-family: "SF-Pro-Display";
  font-style: normal;
  font-weight: 400;
  color: #475467;
}
.structure-cards-container .cards .card:hover .card-img {
  transform: translateY(0);
}
.structure-cards-container .cards .card:hover .card-text-info {
  width: 100%;
}
