/*begin::Global css*/
:root {
    --primary-color: #003893;
    --secondary-color: #dc143c;
    --tertiary-color: #2d67b1;
    --black-color: #000000;
    --white-color: #ffffff;
    --gray-color: #76766f;
    --btn-hover-color: #e7f0ff;
    --border-color: #ebe5eb;
    --primary-gradient: linear-gradient(60deg, #003893, #dc143c);
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden !important;
    font-family: "League Spartan", -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    font-optical-sizing: auto;
    font-style: normal;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

body.offcanvas-menu:before {
    opacity: 1;
    z-index: 1002;
    visibility: visible;
}

.mt-32 {
    margin-top: 32px;
}

.mb-32 {
    margin-bottom: 32px;
}

.ps-32 {
    padding-left: 32px;
}

.pe-32 {
    padding-right: 32px;
}

.section_divider {
    position: relative;
    width: 100%;
    padding-bottom: 32px;
}

.section_divider::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: var(--border-color);
}

.load_more {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

.load_more > a {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    padding: 10px;
    transition: 0.2s all ease-in-out;
}

.load_more > a:hover {
    background: var(--btn-hover-color);
}

.load_more > a > span {
    margin-left: 5px;
}

.news_tags {
    display: flex;
    gap: 10px;
    margin-top: 5px;
    align-items: center;
}

.news_tags > span {
    font-size: 12px;
    background-color: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px 4px;
    line-height: 1;
    border-radius: 4px;
}

.banner_content .news_tags > span {
    background-color: var(--white-color);
    color: var(--primary-color);
}
/* end::Global css */

/* begin::Custom scrollbar css */
.custom_scrollbar {
    scrollbar-width: thin;
    /*    scrollbar-color: #ff7f00 #b0b7c4;*/
}

.custom_scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.custom_scrollbar::-webkit-scrollbar-track {
    background-clip: content-box;
    border: 2px solid transparent;
}

.custom_scrollbar::-webkit-scrollbar-thumb {
    background-color: #ff7f00;
}

.custom_scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #e67200;
}

.custom_scrollbar::-webkit-scrollbar-corner,
.custom_scrollbar::-webkit-scrollbar-track {
    background-color: #b0b7c4;
}
/* end::Custom scrollbar css */

/* begin::Site table css */
.site_table thead tr th {
    background-color: var(--primary-color);
    line-height: 1;
}

.site_table thead tr th,
.site_table tbody tr td {
    padding: 15px 20px;
}

.site_table thead tr th {
    color: var(--white-color);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.site_table tbody tr td {
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.table_btn {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    padding: 10px;
    transition: 0.2s all ease-in-out;
    white-space: nowrap;
}

.table_btn:hover {
    background: var(--btn-hover-color);
}

.table_btn > span {
    margin-left: 5px;
}
/* end::Site table css */

/* begin::Club navigation header css */
.nav_header {
    position: relative;
    z-index: 100;
}

.club_navigation {
    display: flex;
    align-items: center;
    width: 100%;
    background: var(--white-color);
    gap: 10px;
    position: relative;
    padding: 12px 12px 12px 165px;
}

.club_heading {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--gray-color);
    font-weight: bold;
    font-size: 12px;
    line-height: 18px;
}

.club_heading > span {
    border: 1px solid var(--gray-color);
    padding: 1px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club_heading > span > i {
    transform: rotate(-45deg);
}

.clubs_list {
    width: 100%;
}

ul.clubs_list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-right: 24px;
}

ul.clubs_list > li {
    display: flex;
    justify-content: center;
}

ul.clubs_list > li > a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.clubs_list > li > a > img {
    width: 32px;
    height: 32px;
    transition: all 0.1s ease-in-out;
}

ul.clubs_list > li > a:hover img {
    transform: scale(1.25);
}
/* end::Club navigation header css */

/* begin::header customization css */
.site-navbar-wrap {
    width: 100%;
}

.site-navbar .site-navigation .site-menu {
    margin: 0;
    padding: 0;
}

.site-navbar .site-navigation .site-menu > li {
    display: inline-block;
}

.site-navbar .site-navigation .site-menu > li > a {
    padding: 20px 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: bold;
    text-decoration: none !important;
}

.site-navbar .site-navigation .site-menu > li > a.active {
    color: #fff;
}

.site-navbar .site-navigation .site-menu > li > a:hover {
    color: #fff;
}

.site-navbar .site-navigation .site-menu > li:last-child {
    padding-right: 0;
}

.site-navbar .site-navigation .site-menu > li:last-child > a {
    padding-right: 0;
}

.site-navbar .site-navigation .site-menu .has-children {
    position: relative;
}

.site-navbar .site-navigation .site-menu .has-children > a {
    position: relative;
    padding-right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children > a:before {
    position: absolute;
    content: "\e313";
    font-size: 16px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "icomoon";
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
    visibility: hidden;
    opacity: 0;
    top: 100%;
    position: absolute;
    text-align: left;
    -webkit-box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 0px 0;
    margin-top: 20px;
    margin-left: 0px;
    background: #fff;
    -webkit-transition: 0.2s 0s;
    -o-transition: 0.2s 0s;
    transition: 0.2s 0s;
    border-radius: 4px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
    position: absolute;
    z-index: 2;
}

.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown.arrow-top:before {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown.arrow-top:before {
    border-color: rgba(136, 183, 213, 0);
    border-bottom-color: #fff;
    border-width: 10px;
    margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
    -webkit-transition: 0s all;
    -o-transition: 0s all;
    transition: 0s all;
    color: #343a40;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
    color: var(--primary-color);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .active > a {
    color: var(--primary-color);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
}

.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown
    > li:first-child
    > a {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown
    > li:last-child
    > a {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown > li > a {
    padding: 9px 20px;
    display: block;
}

.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown
    > li
    > a:hover {
    background: var(--btn-hover-color);
    color: var(--primary-color);
}

.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown
    > li.has-children
    > a:before {
    content: "\e315";
    right: 20px;
}

.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown
    > li.has-children
    > .dropdown,
.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown
    > li.has-children
    > ul {
    left: 100%;
    top: 0;
}

.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown
    > li.has-children:hover
    > a,
.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown
    > li.has-children:active
    > a,
.site-navbar
    .site-navigation
    .site-menu
    .has-children
    .dropdown
    > li.has-children:focus
    > a {
    background: #ebeef0;
    color: #212529;
}

.site-navbar .site-navigation .site-menu .has-children:hover > a,
.site-navbar .site-navigation .site-menu .has-children:focus > a,
.site-navbar .site-navigation .site-menu .has-children:active > a {
    color: #fff;
}

.site-navbar .site-navigation .site-menu .has-children:hover,
.site-navbar .site-navigation .site-menu .has-children:focus,
.site-navbar .site-navigation .site-menu .has-children:active {
    cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:focus > .dropdown,
.site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
}

.site-mobile-menu {
    width: 300px;
    position: fixed;
    right: 0;
    z-index: 2000;
    padding-top: 20px;
    background: #fff;
    height: calc(100vh);
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
    float: right;
    margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
    font-size: 30px;
    display: inline-block;
    padding-left: 10px;
    padding-right: 0px;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
    color: #dee2e6;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
    float: left;
    margin-top: 10px;
    margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
    display: inline-block;
    text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
    max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
    text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 20px;
    height: calc(100vh - 52px);
    padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.site-mobile-menu .site-nav-wrap a {
    padding: 10px 20px;
    display: block;
    position: relative;
    color: #212529;
}

.site-mobile-menu .site-nav-wrap a.active,
.site-mobile-menu .site-nav-wrap a:hover {
    color: #007bff;
}

.site-mobile-menu .site-nav-wrap li {
    position: relative;
    display: block;
}

.site-mobile-menu .site-nav-wrap li.active > a {
    color: #007bff;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
    position: absolute;
    right: 0px;
    top: 5px;
    z-index: 20;
    width: 36px;
    height: 36px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
    background: #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
    font-size: 12px;
    z-index: 20;
    font-family: "icomoon";
    content: "\f078";
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
    -ms-transform: translate(-50%, -50%) rotate(-180deg);
    transform: translate(-50%, -50%) rotate(-180deg);
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap > li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
}

.site-mobile-menu .site-nav-wrap > li > a {
    padding-left: 20px;
    font-size: 20px;
}

.site-mobile-menu .site-nav-wrap > li > ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-mobile-menu .site-nav-wrap > li > ul > li {
    display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > a {
    padding-left: 40px;
    font-size: 16px;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
    padding: 0;
    margin: 0;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
    display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
    font-size: 16px;
    padding-left: 60px;
}

.sticky-wrapper {
    /*position: absolute;
    z-index: 100;*/
    width: 100%;
    background: var(--primary-color);
}

.sticky-wrapper + .site-blocks-cover {
    margin-top: 96px;
}

.sticky-wrapper .site-navbar {
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

.sticky-wrapper .site-navbar ul li.active a {
    color: #fff;
}

.sticky-wrapper.is-sticky .site-navbar {
    background-color: var(--primary-color);
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li {
    display: inline-block;
    padding: 10px 5px;
}

.sticky-wrapper.is-sticky
    .site-navbar
    .site-navigation
    .site-menu
    > li:last-child {
    padding-right: 0;
}

.sticky-wrapper.is-sticky
    .site-navbar
    .site-navigation
    .site-menu
    > li:last-child
    > a {
    padding-right: 0;
}

.sticky-wrapper.is-sticky
    .site-navbar
    .site-navigation
    .site-menu
    > li.has-children
    > a {
    padding-right: 20px;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li > a {
    padding: 10px 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.sticky-wrapper.is-sticky
    .site-navbar
    .site-navigation
    .site-menu
    > li
    > a:hover {
    color: #fff !important;
}

.sticky-wrapper.is-sticky
    .site-navbar
    .site-navigation
    .site-menu
    > li
    > a.active {
    color: #fff !important;
}

.sticky-wrapper.is-sticky
    .site-navbar
    .site-navigation
    .site-menu
    > li.active
    a {
    color: #fff;
}

.site_logo {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    transition: 0.2s;
    width: 115px;
    z-index: 20;
    display: flex;
    justify-content: center;
}

.site_logo > img {
    margin-top: 15px;
    width: 80px;
    height: 130px;
    z-index: inherit;
    filter: drop-shadow(2px 0px 5px rgba(0, 0, 0, 0.4));
    -webkit-filter: drop-shadow(2px 0px 5px rgba(0, 0, 0, 0.4));
}

.mobile_logo {
    display: none;
}

.navigation_menu {
    width: 100%;
    padding-left: 150px;
    padding-right: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signin_btn > a {
    font-size: 16px;
    font-weight: bold;
    color: var(--gray-color);
    background: var(--white-color);
    border-radius: 4px;
    padding: 4px 10px;
    display: block;
    transition: 0.2s;
}

.signin_btn > a:hover {
    background: var(--btn-hover-color);
}
/* end::header customization css */

/* begin::Secondary Navigation css */
.secondary_nav {
    background: var(--white-color);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.15);
    z-index: 1;
    position: relative;
}

.secondary_nav > ul {
    margin: 0;
    padding: 0 140px;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 55px;
    width: 100%;
}

.secondary_nav > ul > li {
    height: 100%;
}

.secondary_nav > ul > li > a {
    padding: 4px 20px;
    font-size: 16px;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    font-weight: bold;
    line-height: 18px;
    transition: all 0.2s ease-in-out;
}

.secondary_nav > ul > li > a::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(
        137.27deg,
        var(--primary-color) 19.85%,
        var(--secondary-color) 91.08%,
        var(--tertiary-color) 113.26%
    );
    transition: 0.2s;
    z-index: -1;
}

.secondary_nav > ul > li > a.active::before,
.secondary_nav > ul > li > a:focus::before,
.secondary_nav > ul > li > a:hover::before {
    height: 4px;
}

.sticky-wrapper.is-sticky .site_logo > img {
    margin-top: 5px;
    width: 65px;
    height: 105px;
}

.sticky-wrapper.is-sticky .fixedLogoBg {
    position: absolute;
    border-radius: 100%;
    width: 140px;
    height: 140px;
    left: -25px;
    top: -25px;
    background: #fff;
}
/* end::Secondary Navigation css */

/* begin::Mobile Secondary Navigation CSS */
.secondary-nav-mobile {
    margin-top: 20px;
}

.secondary-nav-mobile ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.secondary-nav-mobile ul li {
    border-bottom: 1px solid var(--border-color);
}

.secondary-nav-mobile ul li:last-child {
    border-bottom: 0;
}

.secondary-nav-mobile ul li a {
    display: flex;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--black-color);
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.secondary-nav-mobile ul li a:hover,
.secondary-nav-mobile ul li a.active {
    background: var(--btn-hover-color);
    color: var(--primary-color);
}
/* end::Mobile Secondary Navigation CSS */

/* begin::Page title css */
.page_title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.page_title > h2 {
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
    padding-right: 10px;
    color: var(--primary-color);
}

.page_title > a.title_btn {
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    color: var(--primary-color);
    position: relative;
}

.page_title > a.title_btn > span {
    margin-left: 5px;
}

.page_title > a.title_btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.page_title > a.title_btn:hover::after {
    width: 100%;
}
/* end::Page title css */

/* begin::Page header css */
.page_header {
    width: 100%;
    min-height: 150px;
    display: flex;
    align-items: center;
    background: var(--primary-gradient);
}

.page_header h1 {
    color: var(--white-color);
    font-size: 60px;
    font-weight: bold;
    line-height: 1;
}
/* end::Page header css */

/* begin::Home wrapper css */
.home_wrapper {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin: 30px 0;
    padding: 0 30px;
}

.home_sidebar {
    width: 328px;
    margin-top: 32px;
    z-index: 1;
    position: relative;
    flex-shrink: 0;
    background: var(--white-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.home_sidebarHeader {
    background: linear-gradient(60deg, #003893, #dc143c);
    padding: 14px 15px;
    text-align: center;
}

.home_sidebarHeader > h4 {
    color: var(--white-color);
    font-size: 24px;
    font-weight: bold;
}

.sidebar_localTime {
    margin-top: 15px;
    color: var(--tertiary-color);
    display: block;
    text-align: center;
}

.home_sidebarContent {
    padding: 0 0 10px;
    width: 100%;
}

.home_content {
    width: calc(100% - 328px);
    padding-left: 32px;
    position: relative;
}

.home_wrapper .tab-nav {
    display: flex;
    justify-content: center;
    padding: 5px 0;
    margin: 0 auto 20px;
    max-width: 250px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.home_wrapper .tab-nav li {
    list-style: none;
    border-radius: 8px;
    padding: 2px 15px;
    cursor: pointer;
}

.home_wrapper .tab-nav li.active {
    background: var(--primary-gradient);
    color: var(--white-color);
    font-weight: bold;
}

.home_wrapper .tab-content .tab-pane {
    display: none;
}

.home_wrapper .tab-content .tab-pane.active {
    display: block;
}

.home_wrapper .tab-content #standings.tab-pane.active {
    padding: 0 20px;
}
/* end::Home wrapper css */

/* begin::Home Sidebar css */
.sidebar_matchesList {
    width: 100%;
    margin-top: 10px;
}

.sidebar_matchesList > a {
    padding: 20px 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.sidebar_matchesList > a::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 10px;
    right: 10px;
    height: 1px;
    background: var(--border-color);
}

.sidebar_matchesList > a:hover {
    background: linear-gradient(60deg, #003893, #dc143c);
}

.sidebar_matchDate {
    font-size: 24px;
    color: var(--secondary-color);
    display: block;
    text-align: center;
    margin-bottom: 0;
}

.sidebar_leftTeam {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.sidebar_leftTeam > .sidebar_teamName {
    width: 30px;
    height: 30px;
    overflow: hidden;
    display: block;
    margin-left: 8px;
}

.sidebar_leftTeam > .sidebar_teamName > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.sidebar_rightTeam {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.sidebar_rightTeam > .sidebar_teamName {
    width: 30px;
    height: 30px;
    overflow: hidden;
    display: block;
    margin-right: 8px;
}

.sidebar_rightTeam > .sidebar_teamName > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.sidebar_score {
    border-radius: 4px;
    border: 1px solid var(--border-color);
    width: 60px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.sidebar_score > span {
    margin-top: 2px;
    font-size: 16px;
    font-weight: bold;
    color: var(--gray-color);
}

.sidebar_matchesList > a:hover .sidebar_leftTeam,
.sidebar_matchesList > a:hover .sidebar_rightTeam,
.sidebar_matchesList > a:hover .sidebar_score > span {
    color: var(--white-color);
}

.home_sidebarFooter {
    padding: 0 8px 8px;
}

.sidebar_viewBtn {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    padding: 10px;
    transition: 0.2s all ease-in-out;
}

.sidebar_viewBtn:hover {
    background: var(--btn-hover-color);
}

.sidebar_viewBtn > span {
    margin-left: 5px;
}

.sidebar_table table thead tr th {
    background: #fbfafa;
    font-size: 12px;
    color: var(--tertiary-color);
    border-bottom: 0;
}

.sidebar_table table tbody tr td {
    border-bottom-color: var(--border-color);
    font-size: 14px;
}

.sidebar_table table tbody tr td > a {
    color: var(--primary-color);
    font-weight: bold;
}

.sidebar_table table tbody tr td > a:hover {
    text-decoration: underline;
}

.featured_player {
    width: 100%;
    margin-top: 20px;
}

.featured_player > h4 {
    font-size: 30px;
    line-height: 36px;
    font-weight: bold;
    padding-right: 10px;
    color: var(--primary-color);
}

.featured_player_card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    overflow: hidden;
}

.player_info {
    display: flex;
    align-items: center;
    background: var(--btn-hover-color);
}

.player_details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.player_details > div {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.player_details > div:last-child {
    margin-bottom: 0;
}

.player_details > div > small {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 300;
}

.player_details > div > strong {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
    margin-top: 5px;
}

.player_photo {
    background: var(--primary-gradient);
}

.player_name {
    width: 100%;
    padding: 15px 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.player_name > div > strong {
    color: var(--secondary-color);
    font-size: 34px;
    line-height: 1;
    display: block;
}

.player_name > div > small {
    display: block;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}

.player_name > div > span {
    display: block;
    font-size: 15px;
    color: var(--black-color);
}

ul.player_social {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.player_social > li {
    line-height: 0;
    margin-bottom: 10px;
}

ul.player_social > li:last-child {
    margin-bottom: 0;
}

ul.player_social > li > a {
    color: var(--primary-color);
    font-size: 20px;
}
/* end::Home Sidebar css */

/* begin::Main banner section css */
.main_banner {
    width: 100%;
    position: relative;
    padding-top: 32px;
}

.main_banner::before {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    margin-right: -30px;
    background-color: var(--primary-color);
    z-index: 0;
}

.banner_content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
}

.banner_right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.banner_post_large,
.banner_post_small {
    width: 100%;
}

.banner_post_large > span.post_image {
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.banner_post_large > span.post_image > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    transition: 0.2s all ease-in-out;
}

.banner_post_large > .post_content {
    margin-top: 20px;
}

.banner_post_large > .post_content > h4 {
    font-weight: bold;
    font-size: 34px;
    line-height: 40px;
    color: var(--white-color);
}

.banner_post_large > .post_content > p {
    color: var(--white-color);
    font-size: 18px;
    margin-top: 10px;
}

.banner_post_large:hover h4 {
    text-decoration: underline;
}

.banner_post_large:hover span.post_image > img {
    scale: 1.1;
}

.banner_post_small > span.post_image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.banner_post_small > span.post_image > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    transition: 0.2s all ease-in-out;
}

.banner_post_small > .post_content {
    margin-top: 20px;
}

.banner_post_small > .post_content > h4 {
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    color: var(--white-color);
}

.banner_post_small:hover h4 {
    text-decoration: underline;
}

.banner_post_small:hover span.post_image > img {
    scale: 1.1;
}

.banner_post_small > .post_content > p {
    color: var(--white-color);
    font-size: 18px;
    margin-top: 10px;
    line-height: 1.5em;
    max-height: 3em;
    overflow: hidden;
    position: relative;
}

.banner_post_small > .post_content > p::after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.5em;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}

@supports (-webkit-line-clamp: 2) {
    .banner_post_small > .post_content > p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .banner_post_small > .post_content > p::after {
        display: none;
    }
}

.banner_marquee {
    width: 100%;
    padding: 15px 5px 12px 15px;
    line-height: 1;
    z-index: 1;
}

.banner_marquee p,
.banner_marquee a {
    margin-bottom: 0;
    color: var(--white-color);
    font-size: 15px;
    text-align: center;
    width: 100%;
    display: block;
    line-height: 1;
    margin: 0 14px;
    position: relative;
    padding-left: 10px;
}

.banner_marquee p::before,
.banner_marquee a::before {
    font: var(--fa-font-regular);
    content: "\f1ea";
    position: absolute;
    left: -10px;
    color: var(--white-color);
    margin-top: -1px;
}
/* end::Main banner section css */

/* begin::Partners logos section css */
.partners_section {
    width: 100%;
    background: var(--white-color);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 15px 15px 15px 60px;
}

.partners_section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--primary-gradient);
}

.partner_logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 85px;
    width: 100%;
}

.partner_logo > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: contain;
}

.partners_section .swiper-horizontal > .swiper-pagination-bullets,
.partners_section .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -8px;
}

.partners_section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 0, 0, 0.5);
}

.partners_section .swiper-pagination-bullet-active {
    background: var(--primary-gradient);
}
/* end::Partners logos section css */

/* begin::Gallery section css */
.gallery_section {
    width: 100%;
}

.gallery_holder {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

.gallery_img {
    width: 100%;
    height: 160px;
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.gallery_img > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    transition: 0.2s all ease-in-out;
}

.gallery_img:hover img {
    scale: 1.1;
}
/* end::Gallery section css */

/* begin::Latest videos section css */
.latest_videos_section {
    width: 100%;
}

.latest_videos_holder {
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
}

.latest_videos_right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.latest_videos_large,
.latest_videos_small {
    width: 100%;
}

.latest_videos_large > span.post_image {
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    position: relative;
}

.latest_videos_large > span.post_image > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    transition: 0.2s all ease-in-out;
}

.latest_videos_large > .post_content {
    margin-top: 20px;
}

.latest_videos_large > .post_content > h4 {
    font-weight: bold;
    font-size: 34px;
    color: var(--primary-color);
    line-height: 1.2em;
    max-height: 2.5em;
    overflow: hidden;
    position: relative;
}

.latest_videos_large > .post_content > h4::after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.2em;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}

.latest_videos_large > .post_content > p {
    color: var(--black-color);
    font-size: 18px;
    margin-top: 10px;
    font-weight: 300;
}

.latest_videos_large:hover h4 {
    text-decoration: underline;
}

.latest_videos_large:hover span.post_image > img {
    scale: 1.1;
}

.latest_videos_small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
}

.latest_videos_small > span.post_image {
    width: 100%;
    height: 124px;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    margin-right: 15px;
    position: relative;
}

.latest_videos_small > span.post_image > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    transition: 0.2s all ease-in-out;
}

.latest_videos_small > .post_content > h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.2em;
    max-height: 2.5em;
    overflow: hidden;
    position: relative;
}

.latest_videos_small > .post_content > h4::after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.2em;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}

.latest_videos_small:hover h4 {
    text-decoration: underline;
}

.latest_videos_small:hover span.post_image > img {
    scale: 1.1;
}

.latest_videos_small > .post_content > p {
    color: var(--black-color);
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.5em;
    max-height: 3em;
    overflow: hidden;
    position: relative;
    font-weight: 300;
}

.latest_videos_small > .post_content > p::after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.5em;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}

@supports (-webkit-line-clamp: 2) {
    .latest_videos_large > .post_content > h4,
    .latest_videos_large > .post_content > p,
    .latest_videos_small > .post_content > h4,
    .latest_videos_small > .post_content > p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .latest_videos_large > .post_content > h4::after,
    .latest_videos_large > .post_content > p::after,
    .latest_videos_small > .post_content > h4::after,
    .latest_videos_small > .post_content > p::after {
        display: none;
    }
}

.duration_badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    font-size: 14px;
    font-weight: bold;
    color: var(--white-color);
    line-height: 1;
}

.duration_badge > i {
    line-height: 1;
    margin-right: 5px;
}
/* end::Latest videos section css */

/* begin::Awards section css */
.awards_section {
    width: 100%;
}

.awards_holder {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.awards_tile > span {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    position: relative;
}

.awards_tile > span > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    transition: 0.2s all ease-in-out;
}

.awards_tile > .award_content {
    margin-top: 20px;
}

.awards_tile > .award_content > h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.2em;
    max-height: 2.5em;
    overflow: hidden;
    position: relative;
}

.awards_tile > .award_content > h4::after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.2em;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}

.awards_tile:hover h4 {
    text-decoration: underline;
}

.awards_tile:hover span > img {
    scale: 1.1;
}

.awards_tile > .award_content > p {
    color: var(--black-color);
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.5em;
    max-height: 3em;
    overflow: hidden;
    position: relative;
    font-weight: 300;
}

.awards_tile > .award_content > p::after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.5em;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}

@supports (-webkit-line-clamp: 2) {
    .awards_tile > .award_content > h4,
    .awards_tile > .award_content > p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .awards_tile > .award_content > h4::after,
    .awards_tile > .award_content > p::after {
        display: none;
    }
}
/* end::Awards section css */

/* begin::Latest news section css */
.latest_news_section {
    width: 100%;
}

.latest_news_holder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.latest_news_tile > span {
    width: 100%;
    height: 204px;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    position: relative;
}

.latest_news_tile > span > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    transition: 0.2s all ease-in-out;
}

.latest_news_tile > .latest_news_content {
    margin-top: 20px;
}

.latest_news_tile > .latest_news_content > h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.2em;
    max-height: 2.5em;
    overflow: hidden;
    position: relative;
}

.latest_news_tile > .latest_news_content > h4::after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.2em;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}

.latest_news_tile:hover h4 {
    text-decoration: underline;
}

.latest_news_tile:hover span > img {
    scale: 1.1;
}

.latest_news_tile > .latest_news_content > p {
    color: var(--black-color);
    font-size: 16px;
    margin-top: 10px;
    line-height: 1.5em;
    max-height: 3em;
    overflow: hidden;
    position: relative;
    font-weight: 300;
}

.latest_news_tile > .latest_news_content > p::after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.5em;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}

@supports (-webkit-line-clamp: 2) {
    .latest_news_tile > .latest_news_content > h4,
    .latest_news_tile > .latest_news_content > p {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .latest_news_tile > .latest_news_content > h4::after,
    .latest_news_tile > .latest_news_content > p::after {
        display: none;
    }
}
/* end::Latest news section css */

/* begin::Teams news section css */
.teams_news_section {
    width: 100%;
}
/* begin::Footer section css */
.site_footer {
    width: 100%;
    background: var(--primary-color);
    padding-top: 50px;
}

.footer_menu {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.footer_navs {
    width: 100%;
}

.footer_navs > h4 {
    color: var(--white-color);
    margin-bottom: 15px;
}

.footer_navs > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer_navs > ul > li {
    position: relative;
    padding-left: 12px;
    padding-bottom: 8px;
    display: flex;
    align-items: center;
}

.footer_navs > ul > li:last-child {
    padding-bottom: 0;
}

.footer_navs > ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: auto;
    width: 4px;
    height: 2px;
    border-radius: 100%;
    background: var(--white-color);
}

.footer_navs > ul > li > a {
    color: var(--white-color);
    font-size: 16px;
    transition: margin 0.3s;
}

.footer_navs > ul > li > a:hover {
    margin-left: 4px;
}

.powered_by {
    width: 100%;
    margin-top: 35px;
}

.powered_by > a {
    width: 100%;
    height: 100px;
    display: block;
    overflow: hidden;
}

.powered_by > a > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
}

.copyright_footer {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding: 15px 0;
}

.copyright_footer > p {
    color: var(--white-color);
    font-size: 16px;
}

ul.footer_social {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

ul.footer_social > li {
    line-height: 0;
}

ul.footer_social > li > a {
    color: var(--white-color);
    font-size: 20px;
}

.scroll_top > a {
    color: var(--white-color);
    font-size: 24px;
    line-height: 0;
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    left: 45%;
    right: auto;
    top: -50px;
    transition: 0.3s all ease-in-out;
    transform: translate(50%, 50%);
    background: var(--primary-color);
}

.scroll_top > a:hover {
    background: var(--white-color);
    color: var(--primary-color);
}
/* end::Footer section css */

/* begin::Video details page css */
.video_wrapper {
    width: 100%;
    margin-top: 30px;
}

.videos_holder {
    width: 100%;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 32px;
    margin-bottom: 30px;
}

.videos_left {
    width: 100%;
}

.videos_right {
    width: 100%;
    margin-top: 30px;
}

.video_header {
    width: 100%;
}

.video_date_share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.video_date_share > span {
    color: var(--primary-color);
}

.jssocials-shares {
    margin: 0;
}

.jssocials-share-logo.fa-square-facebook {
    color: #1877f2;
}

.jssocials-share-logo.fa-square-x-twitter {
    color: #000000;
}

.jssocials-share-logo.fa-square-whatsapp {
    color: #25d366;
}

.video_header h2 {
    font-size: 40px;
    line-height: 1;
    color: var(--black-color);
    font-weight: 600;
}

.video_header p {
    font-size: 18px;
    line-height: 1.3;
    color: var(--black-color);
    margin-top: 10px;
}

.video_holder {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.videos_right > h4 {
    color: var(--primary-color);
    font-size: 30px;
    line-height: 1;
    font-weight: bold;
    padding-bottom: 10px;
}

.more_videos {
    max-height: 750px;
    overflow-y: auto;
}

.more_videos_block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.more_videos_block > span.video_image {
    width: 100%;
    height: 90px;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    margin-right: 15px;
    position: relative;
}

.more_videos_block > span.video_image > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    transition: 0.2s all ease-in-out;
}

.more_videos_block > .video_content > h4 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.2em;
    max-height: 3.5em;
    overflow: hidden;
    position: relative;
}

.more_videos_block > .video_content > h4::after {
    content: "";
    text-align: right;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1.2em;
    background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}

.more_videos_block:hover h4 {
    text-decoration: underline;
}

.more_videos_block:hover span.video_image > img {
    scale: 1.1;
}

@supports (-webkit-line-clamp: 3) {
    .more_videos_block > .video_content > h4 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .more_videos_block > .video_content > h4::after {
        display: none;
    }
}
/* end::Video details page css */

/* begin::Post details page css */
.post_wrapper {
    width: 100%;
    margin-top: 30px;
}

.posts_holder {
    max-width: calc(100% - 30%);
    margin: 0 auto 30px;
}

.post_header {
    width: 100%;
}

.post_date_share {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

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

.post_subheader > span {
    color: var(--primary-color);
    margin-inline-end: 10px;
    padding-inline-end: 10px;
    border-right: 1px solid var(--border-color);
    line-height: 1;
}

.post_subheader > small {
    color: var(--primary-color);
    line-height: 1;
}

.post_header h2 {
    font-size: 40px;
    line-height: 1;
    color: var(--black-color);
    font-weight: 600;
}

.post_banner {
    width: 100%;
    margin-top: 20px;
    position: relative;
}

.post_banner > span {
    width: 100%;
    height: 500px;
    display: block;
    /* overflow: hidden; */
    border-radius: 8px;
}

.post_banner > span > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.post_content {
    width: 100%;
    margin-top: 20px;
}

.post_content p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
    text-align: justify;
}

.post_content p:last-child {
    margin-bottom: 0;
}

.post_content > ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.post_content > ul > li {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    font-size: 18px;
    position: relative;
    padding-left: 20px;
}

.post_content > ul > li:last-child {
    padding-bottom: 0;
}

.post_content > ul > li::before {
    font-family: "icomoon";
    content: "\f0da";
    position: absolute;
    left: 0;
    top: auto;
}

.more_news {
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding: 25px 50px 30px;
}

.more_news > h4 {
    color: var(--primary-color);
    font-size: 30px;
    line-height: 1;
    font-weight: bold;
    padding-bottom: 15px;
}

.moreNewsSwiper .swiper_controls .swiper-button-next,
.moreNewsSwiper .swiper_controls .swiper-button-prev {
    width: 50px;
    height: 50px;
}

.moreNewsSwiper .swiper_controls .swiper-button-next > span,
.moreNewsSwiper .swiper_controls .swiper-button-prev > span {
    background: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    color: var(--white-color);
}

.moreNewsSwiper .swiper_controls .swiper-button-next::after,
.moreNewsSwiper .swiper_controls .swiper-button-prev::after {
    content: "";
}

.video_container {
    position: relative;
    display: inline-block;
    max-height: 500px;
    width: 100%;
    overflow: hidden;
}

.video_thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.play_button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play_button i {
    font-size: 1.5rem;
}

#videoElement {
    display: none;
    width: 100%;
    height: auto;
}

.postsSwiper .swiper-slide {
    width: 100%;
    height: 500px;
    display: block;
    /* overflow: hidden; */
    border-radius: 8px;
}

.postsSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.postsSwiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    display: flex;
    background: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.postsSwiper .swiper-horizontal > .swiper-pagination-bullets,
.postsSwiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0px;
}

.postsSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
}

.postsSwiper .swiper-pagination-bullet-active {
    background: var(--white-color);
}
/* end::Post details page css */

/* begin::Gallery page css */
.filter_buttons {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    gap: 12px;
    margin-bottom: 20px;
}

.filter_buttons .filter_btn,
.filter_buttons .more-btn {
    background: var(--white-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    padding: 10px;
    transition: 0.2s all ease-in-out;
    white-space: nowrap;
}

.filter_buttons .filter_btn:hover,
.filter_buttons .more-btn:hover {
    background: var(--btn-hover-color);
}

.filter_buttons .filter_btn.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.filter_buttons .more-button {
    position: relative;
}

.filter_buttons .more-button .dropdown {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 150px;
    z-index: 1000;
}

.filter_buttons .more-button .dropdown .dropdown-item {
    padding: 8px 16px;
    cursor: pointer;
    white-space: nowrap;
}

.filter_buttons .more-button .dropdown .dropdown-item:hover {
    background-color: #f0f0f0;
}

.filter_buttons .more-button.show .dropdown {
    display: block;
}

.filter_buttons .more-button.show .dropdown .dropdown-item {
    display: block !important;
}

.filter_buttons .more-button.show .dropdown .dropdown-item.active {
    background-color: var(--primary-color);
    color: #fff;
}

.gallery_block {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery_block .gallery_img {
    height: 200px;
}

.gallery_block .gallery_img:hover img {
    transform: scale(1.05);
}

.gallery_block .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.gallery_block .gallery_img.loading .spinner {
    display: block;
}

@media (max-width: 768px) {
    .filter_buttons .filter_btn,
    .filter_buttons .more-btn {
        padding: 6px 12px;
    }

    .filter_buttons .more-button .dropdown {
        min-width: 120px;
    }
}
/* end::Gallery page css */

/* begin::About Us pages css */
.about_banner {
    width: 100%;
    margin-bottom: 30px;
}

.about_banner > span {
    width: 100%;
    height: 450px;
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.about_banner > span > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.about_content {
    width: 100%;
}

.about_content p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 15px;
    text-align: justify;
}

.about_content p b {
    color: var(--secondary-color);
}

.about_content p:last-child {
    margin-bottom: 0;
}

.about_content h4 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.about_content > ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.about_content > ul > li {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    font-size: 18px;
    position: relative;
    padding-left: 20px;
}

.about_content > ul > li:last-child {
    padding-bottom: 0;
}

.about_content > ul > li::before {
    font-family: "icomoon";
    content: "\f0da";
    position: absolute;
    left: 0;
    top: -1px;
}

.rfp_table tbody tr td span {
    font-weight: 500;
    display: block;
    text-align: left;
    font-size: 16px;
}

.rfp_table tbody tr td small {
    display: block;
    text-align: left;
    color: var(--gray-color);
}
/* end::About Us pages css */

/* begin::Contact us page css */
.contact_content {
    width: 100%;
}

.contact_content > p {
    font-size: 34px;
    line-height: 1.2;
    text-align: center;
    font-weight: 600;
    font-style: italic;
    max-width: 75%;
    margin: 0 auto 30px;
    color: var(--primary-color);
}

.contact_details {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.contact_block {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px 20px;
}

.contact_block > span {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600;
}

.contact_block > p {
    color: var(--black-color);
    font-size: 20px;
}

.contact_block > p > a {
    color: var(--black-color);
}

.contact_form {
    width: 100%;
    max-width: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    margin: 30px auto 0;
    padding: 30px;
    border-radius: 8px;
}

.contact_form > h4 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.contact_form > h4::after {
    content: "";
    position: absolute;
    height: 2px;
    width: auto;
    bottom: 0;
    left: 46%;
    right: 46%;
    background: var(--secondary-color);
}

.contact_form input,
.contact_form select,
.contact_form textarea {
    border-color: var(--border-color);
    border-radius: 4px;
    min-height: 55px;
    font-size: 16px;
}

.contact_form input:focus,
.contact_form select:focus,
.contact_form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    background: var(--white-color);
}

.contact_btn {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.contact_btn > button {
    background: var(--secondary-color);
    color: var(--white-color);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border: 1px solid transparent;
}

.contact_btn > button > i {
    margin-left: 5px;
}

.contact_btn > button:hover {
    border: 1px solid var(--secondary-color);
    background: transparent;
    color: var(--secondary-color);
}

.contact_map {
    width: 100%;
    margin-top: 40px;
    line-height: 0;
}

.contact_map > iframe {
    width: 100%;
    -webkit-filter: grayscale(0.5);
    filter: grayscale(0.5);
}
/* end::Contact us page css */

/* begin::Standings page css */
.standings_table {
    width: 100%;
}

.standings_table thead tr th {
    border-bottom: 0;
    background: var(--btn-hover-color);
    font-weight: 600;
    padding: 10px;
}

.standings_table tbody tr td {
    padding: 15px 10px;
    font-size: 16px;
}

.standings_table tbody tr:last-child td {
    border-bottom: 0;
}

.standings_table tbody tr td > a {
    color: var(--black-color);
    transition: 0.2s all ease-in-out;
}

.standings_table tbody tr td > a:hover {
    text-decoration: underline;
}

.wld_stats {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

.wld_stats > span {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7px 5px 5px;
    border-radius: 100%;
    color: var(--white-color);
    font-size: 14px;
    font-weight: bold;
}

.wld_stats span.win_circle {
    background: #17c653;
}

.wld_stats span.lost_circle {
    background: #f8285a;
}

.wld_stats span.draw_circle {
    background: #c4cada;
}

.circle-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #555;
    color: #fff;
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 10px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* end::Standings page css */

/* begin::Live matches page css */
#live-matches {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.match-card {
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
}

.match-info {
    padding: 15px 20px;
    background-color: var(--primary-color);
    color: #fff;
}

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

.match-time {
    margin: 0;
    font-size: 1em;
}

.match-stream iframe {
    width: 100%;
    height: 340px;
}
/* end::Live matches page css */

/* begin::Fixtures page css */
.fixture_block {
    width: 100%;
    margin-bottom: 30px;
}

.fixture_block > h4 {
    color: var(--secondary-color);
    display: block;
    margin-bottom: 15px;
}

.match_day_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.2s all ease-in-out;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.match_day_block:last-child {
    border-bottom: 0;
}

.match_day_block:hover {
    background: var(--primary-gradient);
    border-bottom: 1px solid transparent;
}

.team_names {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.match_teamA {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.match_teamA > span {
    width: 30px;
    height: 30px;
    overflow: hidden;
    display: block;
    margin-left: 8px;
}

.match_teamA > span > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.match_time {
    border-radius: 4px;
    border: 1px solid var(--border-color);
    width: 60px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: var(--black-color);
    font-size: 13px;
}

.match_Score {
    border-radius: 4px;
    background: var(--primary-color);
    color: var(--white-color);
    width: 60px;
    font-weight: 600;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 13px;
}

.match_teamB {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.match_teamB > span {
    width: 30px;
    height: 30px;
    overflow: hidden;
    display: block;
    margin-right: 8px;
}

.match_teamB > span > img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}

.match_venue > span {
    color: var(--secondary-color);
}

.match_day_block:hover .match_teamA,
.match_day_block:hover .match_time,
.match_day_block:hover .match_teamB,
.match_day_block:hover .match_venue > span {
    color: var(--white-color);
}

.match_day_block:hover .match_Score {
    background: var(--white-color);
    color: var(--primary-color);
}
/* end::Fixtures page css */

/* begin::Players page css */
.player-block {
    position: relative;
    margin-bottom: 30px;
}

.player-block .featured_player_card {
    height: 100%;
}

.player-block .featured_player_card .player_info {
    justify-content: space-between;
}

.player-block .featured_player_card .player_name > div > strong {
    font-size: 24px;
}

.player-block .featured_player_card .player_name > div > small {
    font-size: 17px;
    font-weight: 500;
}

.team_captain {
    background-color: var(--secondary-color);
    font-size: 15px !important;
    color: var(--white-color) !important;
    border-radius: 4px;
    padding: 6px 8px 4px;
    margin-top: 0 !important;
    text-transform: uppercase;
    text-align: center;
}
/* end::Players page css */
