header {
    background: #f8f8f8;
    font-family: "Kumbh Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "YOPQ" 300;
}

.mobile-logo {
    position: fixed;
    top: 50px;
    right: 10px;
    z-index: 1010;
    display: none;
    transition: top 0.3s ease, left 0.3s ease, max-height 0.3s ease;
}

.mobile-logo.sticky {
    top: 15px;
    right: 10px;
}

.mobile-logo img {
    max-height: 70px;
    width: auto;
}

.mobile-logo.sticky img {
    max-height: 50px;
}

@media (max-width: 1000px) {
    .mobile-logo {
        display: block;
    }
}

@media (min-width: 1001px) {
    .mobile-logo {
        display: none;
    }
}

.logo-liga {
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    z-index: 1010;
}

.logo-liga img {
    max-height: 40px;
    width: auto;
}

@media (max-width: 1000px) {
    .logo-liga {
        display: block;
    }
}

@media (min-width: 1001px) {
    .logo-liga {
        display: none;
    }
}

.desktop-header {
    z-index: 1100;
}

.desktop-header .top-bar {
    background: #000;
    height: 30px;
    display: flex;
    align-items: center;
}

.desktop-header .top-bar .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: #000;
}

.desktop-header .social-slogan {
    color: #ffffff;
    font-size: 14px;
    margin-right: 10px;
    text-transform: uppercase;
    font-family: "Saira Condensed", sans-serif;
    font-weight: 400;
}

.desktop-header .social-icons {
    display: flex;
    gap: 15px;
}

.desktop-header .social-icon {
    font-size: 16px;
    color: #ffffff;
    transition: color 0.5s ease;
    text-decoration: none;
}

.desktop-header .social-icon:hover {
    color: #e40001;
}

.desktop-header .main-header {
    background: #fff;
    height: 80px;
    transition: height 0.3s ease;
}

.desktop-header .main-header.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    height: 45px;
    z-index: 1100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

body.admin-bar .desktop-header .main-header.sticky {
    top: 32px;
}

.desktop-header .header-container {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    position: relative;
    height: 100%;
}

.desktop-header .header-images {
    display: flex;
    gap: 10px;
    line-height: 0;
    margin-right: 20px;
}

.desktop-header .header-image img {
    max-height: 70px;
    width: auto;
    margin: 5px 0;
    transition: max-height 0.3s ease;
}

.desktop-header .main-header.sticky .header-image img {
    max-height: 35px;
}

.desktop-header .desktop-nav-left {
    margin-right: auto;
}

.desktop-header .desktop-nav-right {
    margin-left: auto;
}

.desktop-header .nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2px;
    height: 100%;
    box-sizing: border-box;
    align-items: center;
}

.desktop-header .nav-menu.nav-menu-right {
    justify-content: flex-end;
}

.desktop-header .nav-menu li {
    position: relative;
    height: 100%;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.desktop-header .nav-menu li a {
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    font-family: "Saira Condensed", sans-serif;
    text-transform: uppercase;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
}

.desktop-header .nav-menu li .menu-item-link {
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    padding: 0 10px;
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1;
    transition: color 0.3s ease, transform 0.3s ease;
    font-family: "Saira Condensed", sans-serif;
    text-transform: uppercase;
    box-sizing: border-box;
    position: relative;
    cursor: default;
}

.desktop-header .nav-menu li a:hover,
.desktop-header .nav-menu li .menu-item-link:hover {
    color: #e40001;
    transform: translateX(5px);
}

.desktop-header .nav-menu li a::before,
.desktop-header .nav-menu li .menu-item-link::before {
    content: '';
    position: absolute;
    bottom: 24px;
    left: 10px;
    width: 0;
    height: 1px;
    background: #e40001;
    transition: width 0.3s ease;
}

.desktop-header .main-header.sticky .nav-menu li a::before,
.desktop-header .main-header.sticky .nav-menu li .menu-item-link::before {
    bottom: 6px;
}

.desktop-header .nav-menu li a:hover::before,
.desktop-header .nav-menu li .menu-item-link:hover::before {
    width: calc(100% - 20px);
}

.desktop-header .nav-menu li:hover > .sub-menu {
    display: block;
}

.desktop-header .nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #f6f6f6;
    z-index: 1000;
    min-width: 200px;
    padding: 10px 0;
}

.desktop-header .main-header.sticky .nav-menu .sub-menu {
    top: 100%;
}

.desktop-header .nav-menu .sub-menu li {
    display: block;
    margin: 0;
}

.desktop-header .nav-menu .sub-menu li a {
    padding: 10px 15px;
    color: #000000;
    font-family: "Saira Condensed", sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    display: block;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.desktop-header .nav-menu .sub-menu li a:hover {
    color: #e40001;
    transform: translateX(5px);
}

.desktop-header .nav-menu .sub-menu li a::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 15px;
    width: 0;
    height: 1px;
    background: #e40001;
    transition: width 0.3s ease;
}

.desktop-header .nav-menu .sub-menu li a:hover::before {
    width: calc(100% - 30px);
}

.desktop-header .site-branding {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1101;
    line-height: 0;
}

.desktop-header .site-logo img {
    max-height: 140px;
    width: auto;
    transition: max-height 0.3s ease;
}

.desktop-header .main-header.sticky .site-logo img {
    max-height: 70px;
}

.mobile-header {
    background: #FFF;
    height: 65px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: none;
}

.mobile-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    box-shadow: 0 -3px 6px rgba(0,0,0,.07);
    -webkit-box-shadow: 0 -3px 6px rgba(0,0,0,.07);
    -moz-box-shadow: 0 -3px 6px rgba(0,0,0,.07);
}

.mobile-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    position: relative;
    cursor: pointer;
}

.mobile-nav .nav-item i {
    font-size: 18px;
    color: #e40001;
}

.mobile-nav .nav-text {
    font-size: 9px;
    margin-top: 5px;
    text-transform: uppercase;
    color: #333;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100dvh - 65px);
    background: rgba(228, 0, 1, 0.9);
    z-index: 1020;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .mobile-menu-buttons {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 1rem;
}

.mobile-menu .menu-button {
    flex: 1;
    background: #fff;
    color: #e40001;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    transition: background 0.3s ease;
}

.mobile-menu .menu-button:hover {
    background: #f0f0f0;
}

.mobile-menu .menu-items {
    list-style: none;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu .menu-items li {
    margin: 0;
}

.mobile-menu .menu-items a {
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    display: block;
    padding: 10px 0;
    text-transform: uppercase;
}

.mobile-menu .menu-items li.menu-item-has-children > a::after {
    content: '\25BC';
    display: inline-block;
    margin-left: 10px;
    font-size: 16px;
}

.mobile-menu .menu-items li.menu-item-has-children.active > a::after {
    content: '\25B2';
}

.mobile-menu .sub-menu {
    list-style: none;
    padding: 10px 0 10px 20px;
    margin: 0;
    display: block;
    opacity: 0;
    transform: translateY(-10px);
    height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, height 0.3s ease;
}

.mobile-menu .sub-menu.active {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}

.mobile-menu .sub-menu a {
    text-transform: uppercase;
}

.mobile-menu .menu-items > li:not(:last-child)::after {
    content: '';
    display: block;
    width: 90%;
    height: 1px;
    background: #b30001;
    margin: 10px auto 0;
}

.mobile-menu .sub-menu li::after {
    content: none;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.mobile-social-tapbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #e40001;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 1000;
}

.social-tapbar-item {
    font-size: 24px;
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 400px) {	
    .social-tapbar-item {
        font-size: 12px;
    }
    .mobile-social-tapbar {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {	
    .social-tapbar-item {
        font-size: 16px;
    }
    .mobile-social-tapbar {
        gap: 1.75rem;
    }
}

@media (max-width: 640px) {	
    .social-tapbar-item {
        font-size: 20px;
    }
}

@media (max-width: 1000px) {
    .desktop-header { display: none; }
    .mobile-header { display: block; }
    .mobile-social-tapbar { display: flex; }
}

@media (min-width: 1001px) {
    .desktop-header { display: block; }
    .mobile-header { display: none; }
    .mobile-social-tapbar { display: none; }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .desktop-header .site-logo img,
    .desktop-header .header-image img {
    }
}