body {
    overflow-x: hidden;
}

.header-section {
    position: fixed;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.033);
    font-size: 20px;
    transition: 0.3s ease;
}

.header-section.active {
    background: #3c3950cf;
}

.nav-links .nav-links-sitemap .dropdown-menu a:hover {
    color: var(--w-c);
}

.nav-links .nav-links-sitemap {
    padding-block: 30px;
    border-bottom: 2px solid transparent;
    transition: .3s all ease;
    position: relative;
}

.nav-links .nav-links-sitemap:hover>a {
    color: var(--p-c);
}

.nav-links .nav-links-sitemap:hover {
    border-bottom-color: var(--p-c);
}

.services-dropdown {
    position: relative;
    padding-right: 25px;
}

.services-dropdown::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--t-c);
    mask-image: url(/footer-images/icons/dropdown.svg);
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    width: 1.5em;
    height: 1.5em;
    transition: .3s ease;
}

.nav-links .nav-links-sitemap:hover .services-dropdown::before {
    background-color: var(--p-c);
}

.nav-links .nav-links-sitemap a {
    transition: .3s all ease;
}

.nav-links .nav-links-sitemap:hover {
    border-bottom-color: var(--p-c);
}

.nav-links li a {
    color: var(--w-c);
    font-size: .6em;
}

.services-item {
    position: relative;
}

.services-item:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    position: absolute;
    background-color: var(--w-c);
    aspect-ratio: 1;
    top: 50%;
    transform: translateY(10%);
    min-width: 200px;
    padding: 0;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    display: none;
}

.dropdown-menu li a:hover {
    background: var(--p-c);
    color: var(--w-c);

}

.dropdown-menu li a {
    display: block;
    padding: 12px 15px;
    color: #000;
    font-size: .8em;
}

.nav-links .services-dropdown {
    padding-right: 19px;
}

.nav-links .services-dropdown::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--w-c);
    mask-image: url(../images/footer-images/icons/dropdown.svg);
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
}

.mobile-sidebar {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    background-color: rgba(0, 0, 0, 0);
    height: 100vh;
}

.mobile-sidebar.active {
    opacity: 1;
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.mobile-sidebar .sidebar-content {
    position: absolute;
    left: -280px;
    top: 0;
    height: 100%;
    width: 260px;
    padding: 20px;
    transition: 0.4s ease;
    background-color: var(--p-c);
}

.mobile-sidebar.active .sidebar-content {
    left: 0;
}

.sidebar-links li a {
    color: var(--w-c);
    font-size: .7em;
}

.services-submenu {
    display: none;
    padding-left: 15px;
    margin-top: 8px;
}

.services-item.open .services-submenu {
    display: block;
}

.services-submenu li a {
    font-size: 1rem;
    opacity: 0.85;
}

@media (min-width: 0px) and (max-width: 1200px) {

    .services-item .dropdown-arrow {
        position: absolute;
        right: 0px;
        top: 0%;
        transform: translateY(0%) rotate(270deg);
        width: 1.2em;
        height: 1.2em;
        background-color: var(--w-c);
        mask-image: url(../images/footer-images/icons/dropdown.svg);
        mask-size: contain;
        mask-repeat: no-repeat;
        cursor: pointer;
        transition: transform .3s ease;
    }

    .services-item.open .dropdown-arrow {
        transform: translateY(10%) rotate(360deg);
    }

    .services-item .dropdown-menu {
        position: static;
        background-color: #ffffff00;
        padding-left: 0;
        margin: 0;
        list-style: none;
        border-radius: 4px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height .4s ease, opacity .3s ease;
        transform: translateY(0) !important;
        border: none;
        box-shadow: unset;
    }

    .services-item.open .dropdown-menu {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
        height: 165px;
    }

    .services-item .dropdown-menu li a {
        display: block;
        padding: 10px 12px;
        color: var(--w-c);
        text-decoration: none;
        font-size: 0.95em;
    }

    .services-item .dropdown-menu li a:hover {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--p-c);
    }
}