body {
    overflow-x: hidden;
}

.header-section .know-more-btn {
    position: relative;
    padding: 7px 10px;
    width: max-content;
    border-radius: 20px;
    background: linear-gradient(to right, #5CA446, #83B441);
    z-index: 1;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
}

.header-section .know-more-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 20px;
    background: linear-gradient(to right, #83B441, #5CA446);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
}

.slide-center {
    height: 100vh;
}

.header-section .know-more-btn::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    left: -19px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.header-section .know-more-btn h6 {
    font-size: .7em;
    font-weight: 700;
}

.header-section {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    font-size: 20px;
    transition: background 0.3s ease;
}

.header-section.active {
    background: #3c3950b1;
}

.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);
}

.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;
}

.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 {
        position: relative;
    }

    .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);
    }
}