/* ---------------------------------------------------------
   Custom Header Styles
--------------------------------------------------------- */
/* Default Site Header - Fixed */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, top 0.3s ease;
    padding: 20px 0;
}

/* Adjust for Admin Bar */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

.site-header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Branding / Logo */
.site-branding {
    flex: 0 0 auto;
}

.site-branding .custom-logo-link img {
    width: var(--header-logo-width, 180px);
    height: auto;
    transition: width 0.3s ease;
}

.site-header.scrolled .site-branding .custom-logo-link img {
    max-height: 50px;
}

/* Navigation */
.main-navigation {
    flex: 1 1 auto;
    display: flex;
    /* Flex to center content if needed */
    justify-content: center;
    /* Center menu items */
    margin: 0 20px;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
}

.main-navigation ul li {
    display: inline-block;
    position: relative;
}

.main-navigation ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: var(--menu-font-size, 16px);
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    /* For pseudo-element absolute positioning */
    padding-bottom: 5px;
    /* Space for the underline */
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color, #4169e1);
    transition: width 0.3s ease-in-out;
}

.main-navigation ul li a:hover {
    color: var(--primary-color, #4169e1);
}

.main-navigation ul li a:hover::after {
    width: 100%;
}

/* =========================================================
   Desktop Submenu Dropdown Styles
   ========================================================= */
/* Parent Item relative positioning */
.main-navigation ul li {
    position: relative;
}

/* Submenu container */
.main-navigation ul li .sub-menu {
    display: block;
    /* Override flex */
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    min-width: 220px;
    padding: 10px 0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    margin-top: 15px;
    /* Offset for animation */
}

/* Hover to show submenu */
.main-navigation ul li:hover .sub-menu,
.main-navigation ul li.focus .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Bridge to keep hover active */
.main-navigation ul li .sub-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

/* Submenu Items */
.main-navigation ul li .sub-menu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.main-navigation ul li .sub-menu li a {
    display: block;
    padding: 8px 15px;
    font-size: 13px !important;
    text-transform: none;
    /* Reset uppercase */
    color: #333 !important;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
}

/* Remove underline effect from submenu items */
.main-navigation ul li .sub-menu li a::after {
    display: none;
}

/* Hover effect for submenu items */
.main-navigation ul li .sub-menu li a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color, #4169e1) !important;
    padding-left: 25px;
    /* Slide effect */
}

/* Hide mobile toggle on desktop */
.submenu-toggle {
    display: none;
}

/* CTA Button & Language Switcher Container */
.header-cta {
    flex: 0 0 auto;
    display: flex;
    /* Ensure horizontal layout */
    align-items: center;
    /* Vertically center items */
    gap: 20px;
    /* Space between language and button */
    flex-wrap: nowrap;
    /* Prevent wrapping */
}

.header-lang-switcher {
    display: flex;
    align-items: center;
}

.btn-get-in-touch {
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent;
    color: #333;
    border: 1px solid #333;
    border-radius: 30px;
    /* Rounded pill shape */
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.btn-get-in-touch:hover {
    background-color: #333;
    color: #fff;
}

/* Hide site-title */
/* Hide site-title */
.site-title {
    display: none !important;
}

/* Hide mobile CTA by default (desktop) - Force hidden */
.mobile-cta-btn {
    display: none !important;
}

/* Hamburger Icon - Hidden on Desktop */
.menu-toggle {
    display: none;
}

/* Hide mobile language switcher on Desktop */
.mobile-lang-switcher {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 900px) {

    /* Header container layout for mobile */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 1003;
    }

    /* Hide desktop CTA on mobile */
    .header-cta.desktop-only {
        display: none;
    }

    /* Main navigation takes remaining space and positions hamburger */
    .main-navigation {
        display: flex;
        justify-content: flex-end;
        /* Align items to the right */
        align-items: center;
        margin-left: auto;
        /* Push navigation to the far right away from logo */
        gap: 15px;
        /* Space between lang switcher and hamburger */
    }

    .mobile-lang-switcher {
        display: block;
        margin-right: 5px;
    }

    /* Show hamburger on mobile - positioned at right */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        /* Reduced padding */
        z-index: 1002;
        position: relative;
        margin-left: 0;
        /* Remove auto margin */
    }

    .hamburger-box {
        width: 28px;
        height: 20px;
        display: inline-block;
        position: relative;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        width: 28px;
        height: 3px;
        background-color: #333;
        border-radius: 3px;
        position: absolute;
        transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    }

    .hamburger-inner {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger-inner::before,
    .hamburger-inner::after {
        content: '';
        display: block;
    }

    .hamburger-inner::before {
        top: -8px;
    }

    .hamburger-inner::after {
        bottom: -8px;
    }

    /* Hamburger animation when menu is open */
    .main-navigation.toggled .hamburger-inner {
        background-color: transparent;
    }

    .main-navigation.toggled .hamburger-inner::before {
        transform: translateY(8px) rotate(45deg);
        background-color: #333;
    }

    .main-navigation.toggled .hamburger-inner::after {
        transform: translateY(-8px) rotate(-45deg);
        background-color: #333;
    }

    /* Mobile Navigation Overlay */
    .main-navigation ul {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        justify-content: flex-start;
        /* Start from top */
        overflow-y: auto;
        /* Enable scrolling */
        align-items: center;
        gap: 20px;
        padding: 100px 20px 40px;
        /* More top padding */
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
        list-style: none;
        margin: 0;
    }

    .main-navigation.toggled ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .main-navigation ul li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        display: block;
        text-align: center;
        width: 100%;
    }

    .main-navigation.toggled ul li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Stagger animation for menu items */
    .main-navigation.toggled ul li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .main-navigation.toggled ul li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .main-navigation.toggled ul li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .main-navigation.toggled ul li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .main-navigation.toggled ul li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .main-navigation.toggled ul li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .main-navigation ul li a {
        font-size: 20px;
        font-weight: 600;
        color: #333;
        transition: color 0.3s ease, transform 0.3s ease;
        display: block;
        padding: 10px 0;
    }

    .main-navigation ul li a:hover {
        color: #4169e1;
        transform: scale(1.05);
    }

    /* Mobile CTA Button - show at bottom of menu */
    .mobile-cta-btn {
        display: none;
        position: fixed;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        padding: 15px 40px;
        background-color: #4169e1;
        color: #fff;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        z-index: 1002;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, background-color 0.3s ease;
        box-shadow: 0 4px 15px rgba(65, 105, 225, 0.4);
    }

    .main-navigation.toggled .mobile-cta-btn {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        transition-delay: 0.4s;
    }

    .mobile-cta-btn:hover {
        background-color: #2a4fc7;
    }

    .site-header {
        background-color: #fff;
        padding: 10px 0;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .site-branding .custom-logo-link img {
        max-height: 40px;
    }

    .main-navigation ul li a {
        font-size: 18px;
    }

    .mobile-cta-btn {
        padding: 12px 30px;
        font-size: 14px;
        bottom: 30px;
    }
}

/* ---------------------------------------------------------
   Header Style: Transparent with Contact (Glassmorphism)
--------------------------------------------------------- */
.site-header.transparent_contact {
    padding-top: 20px;
    background: transparent !important;
    box-shadow: none !important;
}

.site-header.transparent_contact.scrolled {
    padding-top: 10px;
}

.header-glass-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

.glass-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    background: rgba(40, 44, 52, 0.7);
    /* Dark semi-transparent */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 40px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.site-header.transparent_contact.scrolled .glass-content {
    background: rgba(40, 44, 52, 0.9);
    padding: 8px 30px;
}

/* Logo in Glass Header */
.transparent_contact .site-branding {
    display: flex;
    align-items: center;
}

.transparent_contact .site-branding .custom-logo-link img {
    width: var(--header-logo-width, 180px);
    height: auto;
}

/* Navigation in Glass Header - True Center */
.transparent_contact .main-navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    z-index: 1;
}

.transparent_contact .main-navigation ul li a {
    color: #fff !important;
    /* Force white text */
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.transparent_contact .main-navigation ul li a:hover {
    color: var(--primary-color, #4169e1) !important;
}

.transparent_contact .main-navigation ul li a::after {
    background-color: var(--primary-color, #4169e1);
}

/* Contact Info (Right Side) */
.header-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    color: #fff;
    font-size: 13px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.header-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.header-contact-info .contact-item svg {
    color: var(--primary-color, #ef3e42);
    height: 14px;
    width: 14px;
    fill: currentColor;
    display: inline-block;
}

.header-contact-info .contact-item span {
    color: #e0e0e0;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* =========================================================
   Language Globe Trigger Button
   ========================================================= */
.lang-globe-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
    color: #fff;
}

.lang-globe-trigger svg {
    fill: #fff;
    transition: fill 0.3s ease, transform 0.3s ease;
}

.lang-globe-trigger:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.lang-globe-trigger:hover svg {
    fill: var(--primary-color, #ef3e42);
}

/* Desktop: hide globe inside nav, show the desktop globe next to contact info */
@media (min-width: 901px) {
    .transparent_contact .main-navigation .lang-globe-trigger {
        display: none;
    }

    .desktop-lang-globe {
        display: flex;
        margin-left: auto;
        /* Push to the right, next to contact info */
        margin-right: 15px;
        z-index: 2;
        position: relative;
    }

    .transparent_contact .header-contact-info {
        z-index: 2;
        position: relative;
    }
}

/* Mobile: hide the desktop globe */
@media (max-width: 900px) {
    .desktop-lang-globe {
        display: none !important;
    }
}

/* =========================================================
   Full Page Language Overlay
   ========================================================= */
.lang-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 17, 23, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lang-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lang-overlay-content {
    text-align: center;
    max-width: 420px;
    width: 90%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s ease;
}

.lang-overlay.active .lang-overlay-content {
    transform: translateY(0) scale(1);
}

.lang-overlay-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    color: #fff;
}

.lang-overlay-close svg {
    fill: #fff;
}

.lang-overlay-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lang-overlay-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 30px 0;
    letter-spacing: -0.3px;
}

/* Style the GTranslate widget inside the overlay */
.lang-overlay-widget {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lang-overlay-widget .gt_switcher {
    overflow: visible !important;
    width: 100% !important;
}

.lang-overlay-widget .gt_switcher .gt_selected {
    border-radius: 12px !important;
}

.lang-overlay-widget .gt_switcher .gt_selected a {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    color: #fff !important;
    padding: 10px 15px !important;
    font-size: 15px !important;
}

.lang-overlay-widget .gt_switcher .gt_option {
    background-color: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin-top: 5px;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    max-height: 300px !important;
}

.lang-overlay-widget .gt_switcher .gt_option a {
    color: #333 !important;
    padding: 10px 15px !important;
    font-size: 14px !important;
    transition: background 0.2s ease !important;
}

.lang-overlay-widget .gt_switcher .gt_option a:hover {
    background-color: #f5f5f5 !important;
}

/* Also handle popup widget type */
.lang-overlay-widget .gtranslate_wrapper {
    width: 100%;
}

.lang-overlay-widget a.gt_switcher-popup {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    color: #fff !important;
    padding: 10px 15px !important;
    font-size: 15px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
}

/* =========================================================
   Mobile Adjustments for Glass Header
   ========================================================= */
@media (max-width: 900px) {

    /* Enable Floating Glass Effect on Mobile */
    .site-header.transparent_contact {
        padding: 10px 0;
        background: transparent !important;
        box-shadow: none !important;
    }

    .header-glass-container {
        padding: 0 15px;
        display: block;
    }

    .glass-content {
        background: rgba(40, 44, 52, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 8px 25px;
        border-radius: 40px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .transparent_contact .site-branding .custom-logo-link img {
        width: auto !important;
        /* Override Customizer width on mobile */
        height: auto !important;
        max-width: 130px !important;
        max-height: 40px !important;
    }

    .transparent_contact .site-branding {
        flex: 0 0 auto;
    }

    /* Hide desktop contact info on mobile */
    .header-contact-info.desktop-only {
        display: none !important;
    }

    /* Navigation on mobile: globe + hamburger side by side on the right */
    .transparent_contact .main-navigation {
        position: static !important;
        /* Reset desktop absolute centering */
        left: auto !important;
        transform: none !important;
        flex: 0 0 auto !important;
        margin-left: auto;
        display: flex !important;
        align-items: center;
        gap: 8px;
    }

    /* Show lang globe on mobile */
    .transparent_contact .main-navigation .lang-globe-trigger {
        display: flex;
    }

    /* Hamburger styling */
    .transparent_contact .menu-toggle {
        display: flex;
        padding: 0;
        z-index: 1005;
    }

    .transparent_contact .hamburger-inner,
    .transparent_contact .hamburger-inner::before,
    .transparent_contact .hamburger-inner::after {
        background-color: #fff !important;
    }

    /* ---------------------------------------------------------
       Modern Full Screen Menu Overlay
    --------------------------------------------------------- */
    .transparent_contact .main-navigation ul {
        background-color: #ffffff;
        padding-top: 80px;
    }

    /* Hide globe when menu is open */
    .transparent_contact .main-navigation.toggled .lang-globe-trigger {
        display: none !important;
    }

    /* Close Icon: Fixed top-right corner */
    .transparent_contact .main-navigation.toggled .menu-toggle {
        position: fixed;
        top: 25px;
        right: 25px;
    }

    /* When menu is open, hamburger turns into dark 'X' */
    .transparent_contact .main-navigation.toggled .hamburger-inner,
    .transparent_contact .main-navigation.toggled .hamburger-inner::before,
    .transparent_contact .main-navigation.toggled .hamburger-inner::after {
        background-color: #333 !important;
    }

    /* Menu Items Modern Typography */
    .transparent_contact .main-navigation.toggled ul li {
        margin-bottom: 20px;
    }

    .transparent_contact .main-navigation.toggled ul li a {
        color: #1a1a1a !important;
        font-size: 24px;
        font-weight: 700;
        text-transform: capitalize;
        letter-spacing: -0.5px;
    }

    /* ---------------------------------------------------------
       Mobile Submenu Styles
    --------------------------------------------------------- */
    /* Reset desktop dropdown */
    .transparent_contact .main-navigation ul li .sub-menu,
    .main-navigation ul li .sub-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        min-width: unset !important;
        height: auto !important;
        /* Override 100vh from .main-navigation ul */
        gap: 0 !important;
        /* Override gap from .main-navigation ul */
        z-index: auto !important;
        /* Override z-index from .main-navigation ul */
        display: none;
        /* Hidden by default on mobile */
        width: 100%;
    }

    /* Show submenu when parent has .submenu-open */
    .transparent_contact .main-navigation ul li.submenu-open>.sub-menu,
    .main-navigation ul li.submenu-open>.sub-menu {
        display: block !important;
    }

    /* Hide the ::before bridge on mobile */
    .transparent_contact .main-navigation ul li .sub-menu::before {
        display: none !important;
    }

    /* Parent item wrapper */
    .transparent_contact .main-navigation.toggled ul li.menu-item-has-children,
    .main-navigation.toggled ul li.menu-item-has-children {
        position: relative;
    }

    /* Arrow toggle button */
    .submenu-toggle {
        display: flex !important;
        /* Force show on mobile */
        position: absolute;
        right: 0;
        top: 0;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10;
        padding: 0;
        transition: transform 0.3s ease;
    }

    .submenu-toggle svg {
        width: 16px;
        height: 16px;
        fill: #999;
        transition: fill 0.3s ease, transform 0.3s ease;
    }

    .submenu-toggle:hover svg {
        fill: var(--primary-color, #4169e1);
    }

    /* Rotate arrow when open */
    .submenu-open .submenu-toggle svg {
        transform: rotate(180deg);
        fill: var(--primary-color, #4169e1);
    }

    /* Submenu items styling on mobile */
    .transparent_contact .main-navigation.toggled ul li .sub-menu li {
        margin-bottom: 8px !important;
        padding-left: 20px;
        border-left: 3px solid var(--primary-color, #4169e1);
        display: block !important;
        /* Ensure visibility */
    }

    .transparent_contact .main-navigation.toggled ul li .sub-menu li a {
        font-size: 18px !important;
        font-weight: 500 !important;
        color: #555 !important;
        padding: 5px 10px !important;
        text-transform: none !important;
        display: block !important;
    }
}