.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: var(--color-light);
    background-color: var(--color-light);
    z-index: 1024;
}

body.admin-bar .site-header {
    top: 32px;
}

.site-header.scrolled {
    background-color: var(--e-global-color-secondary);
    background-color: rgb(240 240 240 / 50%);
    backdrop-filter: blur(5px);
    animation: HeaderFadeInDown 0.6s ease-in-out;
}

@keyframes HeaderFadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.site-header>.container {
    display: flex;
    align-items: center;
    height: 70px;
    gap: 1rem;
}

.site-header ul {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, -0.357rem + 1.786vw, 1.25rem);
    margin-left: auto;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header .social-list {
    gap: 1rem;
    flex-direction: row;
    align-items: center;
}

.site-header .main-manu li>a {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-33);
    line-height: 1.4;
    transition: var(--td-3);
    text-decoration: none;
}

.site-header .main-manu li>a:hover,
.site-header .main-manu li.current-menu-item>a {
    color: var(--color-primary);
}

.site-header .btn-primary {
    padding: 7px 16px;
    font-size: 14px;
}

.site-header .navbar-toggler {
    margin-left: auto;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.5);
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 1.5rem;
    transition: background-image 0.5s ease-in;
}

.site-header:has(.show) .navbar-toggler {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");
    background-size: 1rem;
    z-index: 1046;
}

@media (min-width:1200px) {
    .site-header>.container {
        height: 94px;
    }

    .site-header .offcanvas-xl {
        flex: 1;
    }

    .site-header ul {
        flex-direction: row;
        align-items: center;
        margin-left: auto;
    }
}

@media (max-width:1199.98px) {
    body.admin-bar .site-header .offcanvas-xl {
        top: 32px;
    }

    .site-header .offcanvas-header {
        height: 70px;
        padding-right: calc((100vw - var(--container)) / 2);
        border-bottom: 1px solid var(--color-input-border);
    }

    .site-header .offcanvas-body {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .site-header .social-list {
        border-top: 1px solid var(--color-input-border);
        padding-top: 1rem;
        margin-top: auto;
    }
}

/* End 991PX */