/* Base css start */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* fonts */
  --font-HelveticaNeue: "Helvetica Neue", sans-serif;

  /* colors */
  --primary: #d3222c;
  --black: #070707;
  --black-50: #e9e9ea;
  --black-100: #d2d2d5;
  --black-200: #a5a5ab;
  --black-300: #777980;
  --black-400: #4a4c56;
  --black-500: #1d1f2c;
  --bg-color-1: #f6f8fa;
}

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

a,
button {
  color: inherit;
  transition: all 0.3s;
}
a {
  text-decoration: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-inline: 20px;
}

body {
  font-family: var(--font-HelveticaNeue);
  color: var(--black);
}

h2 {
  font-size: 32px;
  line-height: 1;
}

.section__bg {
  width: 1440px;
  max-width: 100%;
}
/* Base css end */

/* components css start */

/* section title start */
.section__title {
  gap: 12px;
}
.section__title::after,
.section__title::before {
  content: "";
  height: 2px;
  flex-grow: 1;
  background-color: var(--primary);
  border-radius: 2px;
}
.section__subtitle {
  font-size: 12px;
  line-height: 1;
  color: var(--black-400);
}
.section__title--lg {
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.section__subtitle--white {
  color: var(--black-50);
}
.section__title--white {
  color: var(--black-50);
}
/* section title end */

/* button style start */
.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding-inline: 32px;
  border-radius: 12px;
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}
.theme-btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.theme-btn--regular {
  background-color: transparent;
  color: var(--black);
}
.theme-btn--regular:hover {
  background-color: var(--primary);
  color: #fff;
}
.theme-btn--regular-white {
  border-color: #fff;
  color: #fff;
}
.theme-btn--regular-white:hover {
  background-color: #fff;
  color: var(--primary);
}
.theme-btn--sm {
  height: 40px;
}
.theme-btn--black {
  background-color: #1e1e1f;
  border-color: #1e1e1f;
}
.theme-btn--black:hover {
  background-color: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
/* button style end */

/* social-icons start */
.social-icons {
  gap: 12px;
}
.social-icon img {
  width: 20px;
}
.social-icon:hover {
  transform: scale(1.2);
}
/* social-icons end */

/* card start */
.card {
  border: 0;
  border-radius: 12px;
}

.card__thumb {
  border-radius: 12px;
}
.card__thumb img {
  transition: all 1s ease-in-out;
}
.card__thumb:hover img {
  transform: scale(1.1);
}
.card__content {
  max-width: 436px;
}
.card__tag {
  top: 8px;
  right: 8px;
  font-size: 12px;
  line-height: 1;
  padding: 10px 18px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 8px;
  text-transform: uppercase;
}
.card__info {
  font-size: 14px;
  line-height: 17px;
  color: var(--black-300);
}
.card__title {
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}
.card__subtitle {
  font-size: 14px;
  line-height: 1;
  color: var(--black-400);
}
.card--has-divider::after {
  content: "";
  width: 1px;
  height: calc(100% + 8px);
  background-color: #e4e4e4;
  position: absolute;
  top: -4px;
  right: -12px;
}
.card__desc {
  line-height: 1.4;
  color: var(--black-300);
  letter-spacing: -0.04em;
}
.card--white {
  box-shadow: 0px 2px 32px 0px #0000000f;
  border: 1px solid #eceff3;
  transition: all 0.3s;
}
.card--white:hover {
  border-color: var(--primary);
}

.card.style-2 {
  background-color: var(--bg-color-1);
  border: 1px solid #eceff3;
  transition: all 0.3s;
}
.card.style-2 .card__thumb {
  width: 51.5%;
  flex-shrink: 0;
}
.card.style-2 .card__content {
  width: 31.6%;
}

.card--black {
  background-color: #171717;
}
.card--black .card__desc {
  color: var(--black-100);
}
.card--black.style-2 {
  background-color: #171717;
  border: 0;
}

.card__readmore-btn {
  line-height: 20px;
  color: var(--black-400);
  transition: all 0.3s;
}
.card__readmore-btn:hover {
  color: var(--primary);
}
.card__readmore-btn.style-2 {
  color: var(--primary);
}
.card__readmore-btn.style-2:hover {
  color: var(--black);
}

.card--horizontal .card__thumb {
  width: 200px;
}

.card__num {
  font-size: 20px;
  line-height: 1;
  color: var(--black-200);
  letter-spacing: -0.04em;
}
/* card end */

/* slider nav start */
.slider-nav__btn {
  width: 60px;
  height: 60px;
  background-color: #0003;
}
.slider-nav__btn--sm {
  width: 48px;
  height: 48px;
}
.slider-nav__btn:hover {
  background-color: #000;
}
.slider-nav__btn--prev {
  left: 32px;
}
.slider-nav__btn--next {
  right: 32px;
  background-color: #00000099;
}
.slider-nav.style-2 .slider-nav__btn {
  background-color: transparent;
  border: 1px solid var(--bg-color-1);
  color: var(--black-300);
}
.slider-nav.style-2 .slider-nav__btn:hover {
  background-color: #eceff3;
  color: var(--primary);
  border-color: #eceff3;
}
/* slider nav end */

/* tags start */
.tag {
  font-size: 20px;
  line-height: 1;
  color: var(--black-400);
  background-color: var(--bg-color-1);
  padding: 10px 18px;
}
.tag:hover {
  background-color: #eceff3;
}
/* tags end */

/* tabs style start */
.theme-tab-btn {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  color: #000;
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 0;
}
.theme-tab-btn:hover {
  color: #1d9b8e;
}
.theme-tabs .theme-tab-btn.active {
  background-color: #1d9b8e;
  color: #fff;
}
.theme-tab-btn.style-2 {
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  color: var(--black-400);
  padding: 11px 18px;
  border: 1px solid #eceff3;
  border-radius: 12px;
  margin: 0;
}
.theme-tab-btn.style-2.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 500;
}
/* tabs style end */

/* table style start */
.theme-table table {
  border-spacing: 0;
}
.theme-table th,
.theme-table td {
  line-height: 1;
  border-bottom: 1px solid #dfe1e7;
  border-right: 1px solid #dfe1e7;
}
.theme-table th {
  background-color: var(--bg-color-1);
  padding: 8px;
}
.theme-table td {
  background-color: #fff;
  padding: 10px 8px;
}
.theme-table {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #dfe1e7;
}
.theme-table th:last-child,
.theme-table td:last-child {
  border-right: 0;
}
.theme-table tr:last-child td {
  border-bottom: 0;
}
/* table style end */

.divider {
  width: 100%;
  height: 1px;
  border-top: 1px dashed #dfe1e7;
}

/* pagination style start */
.page-link {
  width: 32px;
  height: 32px;
  color: var(--black-400);
}
.page-link:hover {
  background-color: transparent;
  color: var(--primary);
}
.active > .page-link {
  background-color: var(--primary);
  color: #fff;
}
.page-link-btn {
  color: var(--primary);
  background-color: var(--bg-color-1);
}
.page-link-btn:hover {
  background-color: var(--primary);
  color: #fff;
}
.disabled > .page-link-btn {
  color: var(--black-200);
}
/* pagination style end */

/* swiper controls start */
.custom-fraction {
  padding-right: 45px;
}
.custom-fraction span {
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.swiper-pagination {
  height: 1px !important;
  border-radius: 2px;
  background-color: #ffffff4d;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background-color: var(--primary);
  border-radius: 2px;
}
/* swiper controls end */

/* components css end */

/* header start */

.header__top {
  background-color: var(--bg-color-1);
  padding-block: 16px;
}
.header__top-wrapper {
  gap: 32px;
}
.header__top-logo {
  font-size: 18px;
  line-height: 1;
  padding-right: 12px;
}
.header__top-logo::after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--black);
  position: absolute;
  top: 0;
  right: -2px;
  border-radius: 2px;
}
.header__top-menu {
  gap: 24px;
}
.header__top-link {
  line-height: 1;
  color: var(--black-400);
}
.header__top-link:hover {
  color: var(--primary);
}
.header__main {
  background-color: #000000;
}
.header__banner {
  background-color: #000000;
  padding-block: 12px;
}
.header__banner-wrapper {
  max-width: 728px;
  margin: 0 auto;
}
.header__banner-img {
  width: 100%;
  max-width: 728px;
  height: auto;
  max-height: 90px;
  object-fit: cover;
}
.header__main-content {
  padding-block: 20px;
}
.header__logo img {
  width: 280px;
}
.header__actions {
  gap: 12px;
}
.header__search {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  overflow: hidden;
}
.header__search-input {
  background-color: rgba(255, 255, 255, 0.1);
  border: 0;
  padding: 8px 12px;
  color: #fff;
  font-size: 14px;
  width: 160px;
  outline: none;
}
.header__search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.header__search-btn {
  background-color: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.header__search-btn img {
  width: 18px;
}
.header__action-btn img {
  width: 24px;
}
.header__action-btn {
  background-color: transparent;
  border: 0;
}
.header__action-btn--menu {
  background-color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
}
.header__nav {
  padding-bottom: 16px;
}
.header__menu {
  gap: 32px;
}
.header__link {
  line-height: 1;
  color: var(--black-50);
}
.header__link:hover,
.header__link.active,
.header__link--active {
  color: var(--primary);
}
.header__link--dropdown {
  gap: 6px;
}
.header__link--dropdown svg {
  width: 10px;
  height: 10px;
}
/* dropdown menu */
.header__menu-item--has-dropdown {
  position: relative;
}
.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 180px;
  list-style: none;
  margin: 10px 0 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}
.header__menu-item--has-dropdown:hover > .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__dropdown li {
  position: relative;
}
.header__dropdown-link {
  display: block;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  white-space: nowrap;
  transition: color 0.2s, background-color 0.2s;
}
.header__dropdown-link:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
}
/* 3rd level sub-dropdown */
.header__dropdown--sub {
  position: absolute;
  top: 0;
  left: 100%;
  margin: 0 0 0 4px;
}
.header__dropdown-item--has-sub:hover > .header__dropdown--sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* offcanvas menu */
.offcanvas-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.offcanvas-menu li {
  list-style: none;
}
.offcanvas-menu__link {
  display: block;
  padding: 10px 16px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  transition: background-color 0.2s;
}
.offcanvas-menu__link:hover,
.offcanvas-menu__link.active {
  color: var(--primary);
}
.offcanvas-menu__toggle svg {
  transition: transform 0.3s;
}
.offcanvas-menu__toggle.is-open svg {
  transform: rotate(180deg);
}
.offcanvas-menu__sub {
  list-style: none;
  padding-left: 0;
}
.offcanvas-menu__sub .offcanvas-menu__link {
  font-size: 14px;
  font-weight: 400;
  padding: 8px 16px;
}
.promo-teams {
  background-image: linear-gradient(0deg, #ce292c 0%, #4d1200 41.35%, #000 100%);
  border-top: 1px solid #fff3;
}
.promo-teams__slider {
  padding-block: 16px;
}
.promo-teams__logo {
  width: 60px;
  height: 60px;
}
.promo-teams__logo img {
  max-width: 36px;
  max-height: 36px;
}
/* header end */

/* skin banners start */
.skin-banner {
  position: absolute;
  z-index: 99;
  display: none;
}
.skin-banner.is-sticky {
  position: fixed;
  top: 20px;
}
.skin-banner--left {
  left: calc((100vw - 1320px) / 2 - 140px);
}
.skin-banner--right {
  right: calc((100vw - 1320px) / 2 - 140px);
}
.skin-banner img {
  display: block;
  width: 120px;
  height: 600px;
  object-fit: cover;
}
@media (min-width: 1600px) {
  .skin-banner {
    display: block;
  }
}
/* skin banners end */

/* leaderboard ad */
.leaderboard-ad__divider {
  border: none;
  border-top: 2px dashed #ccc;
  margin-bottom: 20px;
}

/* wc-banner start */
.wc-banner {
  padding-block: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #304FFE;
}
.wc-banner__wc-img {
  width: 48px;
}
.wc-banner__title {
  line-height: 1;
}
.wc-banner__title sup {
  font-size: 0.6em;
}
.wc-banner__subtitle {
  line-height: 1;
  color: var(--black-100);
}
.timer__time {
  font-size: 32px;
  line-height: 1;
  padding: 5px 10px;
  background-color: #8f1c16;
  border-radius: 4px;
}
.timer__text {
  line-height: 1;
  color: var(--black-100);
}
.wc-banner__right {
  gap: 32px;
}
.wc-banner__bg-img {
  max-width: 494px;
  width: 100%;
  left: 30%;
}
/* wc-banner end */

/* latest news section start */
.latest-news {
  padding-block: 47px 80px;
}
.latest-news__card {
  border-radius: 12px;
  height: 500px;
  min-height: 400px;
}
.latest-news__card-content {
  padding: 0 24px 24px;
}
.latest-news__card-content::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  filter: blur(50px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.latest-news__tag {
  background-color: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  line-height: 1;
}
.latest-news__subtitle {
  font-size: 12px;
  line-height: 1;
}
.latest-news__title {
  font-size: 32px;
  line-height: 1.2;
}
.latest-news__desc {
  font-size: 14px;
  opacity: 0.85;
}
.latest-news__info {
  line-height: 1;
  gap: 12px;
  font-size: 13px;
}
.latest-news__info .divider {
  width: 1px;
  height: 12px;
  border-radius: 1px;
}
.latest-news__pagination {
  text-align: center;
  margin-top: 12px;
}
.latest-news__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  opacity: 1;
}
.latest-news__pagination .swiper-pagination-bullet-active {
  background-color: var(--primary);
}
.latest-news__card .card__desc {
  letter-spacing: 0;
  max-width: 755px;
}
/* top news */
.top-news__heading {
  font-size: 22px;
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
}
.top-news__slider {
  height: auto;
}
.top-news__slider .swiper-slide {
  height: auto !important;
  cursor: pointer;
  padding-bottom: 14px;
  border-bottom: 1px solid #f0f0f0;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.top-news__slider .swiper-slide:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.top-news__slider .swiper-slide-thumb-active {
  opacity: 1;
}
.top-news__slider .swiper-slide-thumb-active .top-news__number {
  color: var(--primary);
}
.top-news__item {
  text-decoration: none;
  color: inherit;
}
.top-news__number {
  font-size: 28px;
  font-weight: 700;
  color: #ccc;
  line-height: 1;
  min-width: 22px;
  transition: color 0.3s;
}
.top-news__thumb {
  width: 75px;
  height: 55px;
  border-radius: 4px;
  overflow: hidden;
}
.top-news__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}
.top-news__info {
  font-size: 12px;
  color: #999;
}
/* sidebar */
.sidebar__ad img {
  border-radius: 8px;
}
.sidebar__videos-title {
  font-size: 18px;
  font-weight: 700;
}
.sidebar__video-card {
  height: 160px;
  border-radius: 8px;
}
.sidebar__video-overlay {
  background-color: rgba(0, 0, 0, 0.3);
}
.sidebar__video-play {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 0, 0, 0.9);
  color: #fff;
  font-size: 20px;
}
.sidebar__video-info {
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}
/* bottom row */
.latest-news__bottom .card__thumb {
  height: 200px;
}
/* latest news section end */

/* cyprus-new section start */
.cyprus-new {
  padding-block: 60px;
}
.cyprus-new .card__tag-inline {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.5px;
}
.cyprus-new .card--featured .card__thumb {
  height: 320px;
}
.cyprus-new .col-lg-3 .card__thumb {
  height: 140px;
}
/* cyprus-new section end */

/* international section start */
.international {
  padding-block: 80px;
}
.international__thumb-large {
  height: 300px;
}
.international .col-lg-4:first-child .card__content {
  padding: 16px;
}
.international__thumb-sm {
  width: 150px;
  min-width: 150px;
  height: 100px;
}
.international .col-lg-4:nth-child(2) .card--black.style-2,
.international .col-lg-4:last-child .card--black.style-2 {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px;
}
.international .col-lg-4:nth-child(2) .card__title,
.international .col-lg-4:last-child .card__title {
  font-size: 14px;
}
.international .col-lg-4:nth-child(2) .card__info,
.international .col-lg-4:last-child .card__info {
  font-size: 11px;
}
@media (max-width: 991px) {
  .international .card--black.style-2 {
    flex-direction: column !important;
  }
  .international__thumb-sm {
    width: 100%;
    min-width: 100%;
    height: 180px;
  }
  .international .col-lg-4:nth-child(2) .card__title,
  .international .col-lg-4:last-child .card__title {
    font-size: 14px;
  }
}
@media (max-width: 575px) {
  .international__thumb-large {
    height: 220px;
  }
  .international__thumb-sm {
    height: 150px;
  }
}
/* international section end */

/* munidal section start */
.munidal {
  padding-block: 120px;
  background-color: var(--bg-color-1);
}

.munidal__card {
  border-radius: 12px;
  min-height: 460px;
}
.countdown {
  gap: 20px;
}
.countdown__title {
  font-size: 32px;
  line-height: 1;
}
.countdown__text {
  line-height: 1;
  color: var(--black-100);
}
.munidal__card-title {
  font-size: 32px;
  line-height: 1;
}
.munidal__card-desc {
  color: var(--black-50);
  max-width: 413px;
  letter-spacing: -0.04em;
}
.munidal .card__desc {
  letter-spacing: 0;
  line-height: 1.2;
}
/* munidal section end */

/* league section start */
.league {
  padding-block: 80px;
}
.league__wrapper {
  grid-template-columns: 342px 1fr;
  gap: 32px;
}
.league .section__title::after,
.league .section__title::before {
  width: 36px;
  flex-shrink: 0;
}
.powered-by {
  line-height: 1;
}
.powered-by span {
  color: var(--black-300);
}
.powered-by__logo img {
  height: 16px;
  width: auto;
}
.powered-by__logo--lg img {
  height: 32px;
}
.league__content {
  background-color: var(--bg-color-1);
  border: 1px solid #eceff3;
  border-radius: 12px;
}
/* league section end */

/* cyprus section start */
.cyprus {
  padding-bottom: 100px;
}
.cyprus__wrapper {
  grid-template-columns: 1fr 342px;
}
.cyprus__sidebar-card {
  border-radius: 12px;
}
/* cyprus section end */

/* podcast section start */
.podcast {
  padding-block: 90px;
}
.podcast .section__bg {
  max-width: 1320px;
}
.podcast .card {
  padding: 20px;
}
.podcast .card.style-2 .card__thumb {
  width: 47.5%;
}
.podcast .card.style-2 .card__content {
  width: auto;
  flex-grow: 1;
  max-width: 237px;
}

.podcast--white {
  padding-block: 80px;
}
.podcast__container {
  padding: 80px 24px;
  background-color: var(--bg-color-1);
  border-radius: 12px;
}
.podcast--white .card__title {
  letter-spacing: 0;
}
.podcast--white .card__content {
  max-width: 100%;
}
/* podcast section end */

/* greece section start */
.greece {
  padding-block: 80px 100px;
}
.greece .card__thumb {
  width: 47.9%;
}
.greece .card__desc {
  color: var(--black-400);
}
/* greece section end */

/* international section start */
.international {
  padding-bottom: 120px;
}
/* international section end */

/* basketball section start */
.basketball {
  padding-block: 120px 140px;
}
.basketball .card.style-2 .card__thumb {
  width: 56.4%;
}
.basketball .card--sm.style-2 .card__thumb {
  width: 50%;
}
/* basketball section end */

/* video section start */
.videos .section__title::before {
  flex-grow: 0;
  width: 11px;
}
.videos .card {
  padding: 12px;
}
.videos .card .card__thumb {
  width: 54%;
  flex-shrink: 0;
}
.videos .card .card__content {
  width: auto;
  flex-grow: 1;
}
.videos {
  padding-bottom: 80px;
}
/* video section end */

/* footer start */
.footer {
  background-color: #1e1e1f;
  padding-top: 60px;
}
.footer__left {
  max-width: 372px;
}
.footer__logo img {
  width: 157px;
}
.footer__menu {
  gap: 136px;
}
.footer__menu-block {
  gap: 20px;
}
.footer__link {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.footer__link:hover {
  color: var(--primary);
}
.footer__copyright {
  padding-block: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
/* footer end */

/* category section start */
.category {
  padding-bottom: 80px;
}
/* category section end */

/* article section start */

.article {
  padding-bottom: 80px;
}
.article__categories {
  line-height: 1;
  color: var(--black-400);
}
.article__categories-divider {
  width: 1px;
  height: 12px;
  background-color: var(--black-300);
  border-radius: 1px;
}
.article__header h6 {
  font-size: 12px;
  line-height: 1;
  color: var(--black-400);
}
.article__title {
  font-size: 48px;
  line-height: 1;
}
.article__subtitle {
  color: var(--black-400);
}
.article__author-img {
  width: 32px;
  height: 32px;
}
.article__author-name {
  line-height: 1;
  color: var(--primary);
}
.article__date-time {
  font-size: 12px;
  line-height: 1;
  color: var(--black-300);
}
.article__date-time-divider {
  width: 1px;
  height: 8px;
  background-color: var(--black-300);
  border-radius: 1px;
}
.article__thumb {
  border-radius: 12px;
}
.article__thumb img {
  transition: all 1s ease-in-out;
}
.article__thumb:hover img {
  transform: scale(1.1);
}
.article__content h4 {
  font-size: 24px;
  line-height: 1;
}
.article h5 {
  font-size: 20px;
  line-height: 1;
  color: var(--black-400);
}
.article p {
  color: var(--black-400);
}
.article p strong {
  color: var(--black);
}
.ad-card {
  padding: 40px;
  background-color: #fdf4f4;
  border-radius: 12px;
}
.ad-card .ad-card__subtitle {
  font-size: 12px;
  line-height: 1;
  color: var(--black-300);
}
.article blockquote {
  background-color: #d3222c0d;
  border-radius: 12px;
  border-left: 3px solid var(--primary);
  color: var(--black-500);
}
.hash-tag:hover {
  color: var(--primary);
}

.article__sidebar-block {
  border-radius: 12px;
  background-color: var(--bg-color-1);
  border: 1px solid #eceff3;
}
.article__latest-news .card__title {
  font-size: 20px;
}

.article__sidebar {
  gap: 32px;
}
.article__league-card {
  border-radius: 12px;
  background-color: var(--bg-color-1);
  background-size: cover;
  background-position: center;
}
.article__league-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.ad-card.style-2 {
  padding: 32px;
  background-size: cover;
  background-position: center;
}
.ad-card.style-2::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000000d9;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 12px;
}
.article__points-table {
  background-color: var(--bg-color-1);
  border: 1px solid #eceff3;
  border-radius: 12px;
}

.article__nav-link {
  line-height: 1;
  color: var(--black-400);
  border: 1px solid #eceff3;
  border-radius: 12px;
  padding: 11px 17px;
}
.article__nav-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.article__nav-link.active {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
  font-weight: 500;
}
.search-box__input {
  height: 40px;
  color: var(--black-300);
  background-color: var(--bg-color-1);
  border: 1px solid #eceff3;
  border-radius: 12px;
  padding-inline: 42px 16px;
}
.search-box__input::placeholder {
  color: inherit;
}
.search-box__input:focus {
  outline: none;
}
.search-box {
  width: 222px;
  max-width: 100%;
}
.card__title--sm {
  font-size: 20px;
  line-height: 1.2;
}
.card__divider {
  background-color: var(--primary);
  opacity: 0.06;
  height: 1px;
  width: 100%;
}
.group-tabs {
  grid-template-columns: repeat(6, 1fr);
}
.group-tabs .nav-link {
  font-size: 20px;
  line-height: 1;
  color: var(--black);
  text-transform: uppercase;
  border: 1px solid #eceff3;
  border-radius: 12px;
  height: 44px;
  background-color: var(--bg-color-1);
  box-shadow: 0px 2px 32px 0px #0000000f;
  padding: 0;
}
.group-tabs .nav-link:hover,
.group-tabs .nav-link.active {
  background-color: #fff;
}
.group-tabs .nav-link.active {
  border: 1px solid #eceff3;
}
.top-socorers__position {
  width: 32px;
  height: 32px;
  color: var(--black-400);
  letter-spacing: -0.04em;
}
.top-scorers__name {
  line-height: 1;
  letter-spacing: -0.04em;
}
.top-scorers__country {
  display: block;
  font-size: 12px;
  line-height: 1;
  color: var(--black-300);
  letter-spacing: -0.04em;
}
.top-scorers__point {
  line-height: 1;
  color: var(--primary);
  font-weight: 500;
}
.top-scorers__item:not(:last-child) {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(211, 34, 44, 0.06);
}
.top-scorers {
  gap: 12px;
}
.article__category-list li a {
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--black-400);
  gap: 6px;
}
.article__category-list li a span {
  color: var(--primary);
}
.newsletter-card {
  background-color: var(--black);
  border-radius: 12px;
}
.newsletter-card__title {
  font-size: 24px;
  line-height: 1;
}
.newsletter-card__desc {
  line-height: 1.4;
  color: var(--black-100) !important;
  max-width: 318px;
}
.newsletter-card__input {
  height: 48px;
  background-color: #222222;
  border: 0;
  border-radius: 12px;
  padding: 0 16px;
  width: 100%;
  color: #ffff;
}
.newsletter-card__input::placeholder {
  color: var(--black-200);
}
/* article section end */

/* feature-article section start */
.featured-article {
  padding-bottom: 80px;
}
/* feature-article section end */

/* latest-post section start */
.latest-post {
  padding-bottom: 80px;
}
/* latest-post section end */

/* hero section start */
.hero__wrapper {
  background-image: url("../../../assets/templates/assets/img/backgrounds/wc-hero-bg.jpg");
  background-position: center;
  background-size: cover;
  padding: 150px 0 16px 60px;
  border-radius: 12px;
}
.hero__subtitle {
  font-size: 12px;
  line-height: 1;
  color: var(--black-100);
}
.hero__title {
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero__content {
  max-width: 716px;
}
.hero__desc {
  line-height: 1.4;
  color: var(--black-100);
  max-width: 605px;
}
.hero__slider-container {
  max-width: 420px;
  margin-top: -28px;
}
.hero__card {
  background-color: #0000001a;
  border-radius: 12px;
  gap: 12px;
  border: 1px solid #ffffff66;
}
.hero__card-thumb {
  width: 129px;
  flex-shrink: 0;
}
.hero__card-thumb img {
  transition: all 1s ease-in-out;
}
.hero__card-thumb:hover img {
  transform: scale(1.1);
}
.hero__card-subtitle {
  font-size: 14px;
  line-height: 1;
  color: var(--black-100);
  font-weight: 400;
}
.hero__card-title {
  font-size: 20px;
  line-height: 1.3;
}
/* hero section end */

/* teams section start */
.teams {
  padding-bottom: 60px;
}
.teams .section__title::after,
.teams .section__title::before {
  display: none;
}
.teams__cards {
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.teams__card {
  border: 1px solid #eceff3;
  border-radius: 8px;
  box-shadow: 0px 2px 32px 0px #0000000f;
}
.teams__flag {
  width: 40px;
  margin-bottom: 8px;
}
.teams__name {
  font-size: 16px;
  line-height: 1;
}
.teams__ranking {
  line-height: 1;
  color: var(--black-200);
}
/* teams section end */

/* fixtures section start */

.fixtures {
  padding-block: 80px;
}

.fixtures .theme-btn--regular {
  color: var(--black-50);
}
.fixtures__card {
  padding: 15px;
  border: 1px solid #e0e0e10f;
  border-radius: 12px;
  background-color: #141414;
}
.fixtures__title {
  font-size: 16px;
  line-height: 1.2;
}
.fixtures__date-time {
  font-size: 12px;
  line-height: 1;
  color: var(--black-100);
}
.fixtures__body-wrapper {
  gap: 16px;
}
.fixtures__team {
  padding: 0 8px 5px;
}
.fixtures__team img {
  width: 52px;
}
.fixtures__team span {
  font-size: 12px;
  line-height: 1;
  color: var(--black-50);
  font-weight: 500;
}
.fixtures__score {
  text-align: center;
}
.fixtures__score-title {
  font-size: 24px;
  line-height: 32px;
}
.fixtures__score-subtitle {
  font-size: 12px;
  line-height: 1;
  color: var(--black-100);
}
.fixtures__venue {
  line-height: 1;
  color: var(--black-200);
}
/* fixtures section end */


/* group section start */
.group {
  padding-block: 80px;
}
.group__card {
  border: 1px solid #ECEFF3;
  border-radius: 12px;
  box-shadow: 0px 2px 32px 0px #0000000F;
}
.group__title {
  font-size: 20px;
  line-height: 1;
}
.group__team img {
  width: 24px;
}
.group__team:not(:last-child) {
  padding-bottom: 12px;
  border-bottom: 1px solid #F6F8FA;
}
.group__teams {
  gap: 12px;
}
/* group section end */

/* newsletter section start */
.newsletter {
  background-image: url('../../../assets/templates/assets/img/backgrounds/newsletter-bg.jpg');
  background-position: center;
  background-size: cover;
  padding-top: 46px;
}
.newsletter__content {
  max-width: 520px;
  padding-bottom: 100px;
}
.newsletter .section__desc {
  line-height: 1.6;
  color: var(--black-100);
}
.newsletter__input {
  height: 48px;
  background-color: #FFFFFF1A;
  border: 0;
  border-radius: 12px;
  color: #fff;
  padding-inline: 16px;
}
.newsletter__input::placeholder {
  color: inherit;
}
.newsletter__input {
  max-width: 222px;
}
.newsletter__thumb {
  width: 256px;
}
/* newsletter section end */

/* venues section start */
.venues {
  padding-block: 80px;
}
/* venues section end */