:root {
    --bckgrnd-color: #0046a7;
    --white: white;
    --hvr-color: white;
    --fa-font-family: "Font Awesome 6 Free";
}

body {
    min-height: 100dvh;
    overflow-y: auto;
    width: 100vw;
}

.d-none {
    display: none;
}

.main-navbar {
    padding-left: 5%;
    padding-right: 5%;
}

.site-navigation {
    padding-left: 5%;
    padding-right: 5%;
}

.site-navbar-wrap {
    position: relative;
    z-index: 1000;
}

    .site-navbar-wrap a {
        color: #585454;
    }

    .site-navbar-wrap .site-navbar-top {
        font-size: 0.8rem;
    }

.site-navbar-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.site-navbar {
    margin-bottom: 0px;
    width: 100%;
    background: transparent;
}

    .site-navbar .row {
        width: 100%;
        margin: unset;
        background: white;
        box-shadow: 0px 6px 13px 0px rgb(0 0 0 / 6%);
        transition: .5s all ease;
        background-color: var(--bckgrnd-color);
    }

/*Underline animation navbar*/
.hover-underline-animation {
    display: inline-block;
    position: relative;
}

    .hover-underline-animation::after {
        content: '';
        position: absolute;
        width: 100%;
        transform: scaleX(0);
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: white;
        transition: transform 0.25s ease-out;
    }


    .hover-underline-animation:hover::after {
        transform: scaleX(1);
    }

    .hover-underline-animation.center::after {
        transform-origin: bottom center;
    }

    .hover-underline-animation.center:hover::after {
        transform-origin: bottom center;
    }
/*Secondary navbar*/
@media (min-width: 991px) {
    .arrow-icon {
        color: var(--white) !important;
    }

    .hover-underline-animation-black {
        display: inline-block;
        position: relative;
        color: #244154 !important;
    }

        .hover-underline-animation-black::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #407191;
            transition: transform 0.25s ease-out;
        }


        .hover-underline-animation-black:hover::after {
            transform: scaleX(1);
        }

        .hover-underline-animation-black.center::after {
            transform-origin: bottom center;
        }

        .hover-underline-animation-black.center:hover::after {
            transform-origin: bottom center;
        }
}
/**/


.arrow-icon {
    transition: transform 0.3s ease; /* Smooth transition for rotation */
}

.rotate {
    transform: rotate(180deg); /* Rotate 180 degrees */
}

.site-logo {
    float: left;
}

    .site-logo img {
        max-height: 40pt;
        padding: 6pt 0pt 10pt 0pt;
        transition: .5s all ease;
    }

.site-navbar .site-navigation .site-menu {
    margin-bottom: 0;
    float: right
}

    .site-navbar .site-navigation .site-menu a {
        text-decoration: none !important;
        font-weight: 500;
    }

    .site-navbar .site-navigation .site-menu > li {
        display: inline-block;
        padding: 0px 5px;
    }

        .site-navbar .site-navigation .site-menu > li > a {
            margin: 0 10px;
            padding: 0px 0px 2px 0px;
            color: var(--white);
            text-decoration: none !important;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

            .site-navbar .site-navigation .site-menu > li > a.active {
                color: var(--hvr-color);
            }

            .site-navbar .site-navigation .site-menu > li > a:hover {
                text-decoration: underline;
                color: var(--hvr-color);
            }

        .site-navbar .site-navigation .site-menu > li:last-child {
            padding-right: 0;
        }

            .site-navbar .site-navigation .site-menu > li:last-child > a {
                padding-right: 0;
            }

    .site-navbar .site-navigation .site-menu .has-children {
        position: relative;
    }

        .site-navbar .site-navigation .site-menu .has-children > a {
            position: relative;
            padding-right: 10px;
        }

            .site-navbar .site-navigation .site-menu .has-children > a:before {
                position: absolute;
                font-size: 16px;
                top: 50%;
                right: 0;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
            }

        .site-navbar .site-navigation .site-menu .has-children .dropdown {
            display: none;
            opacity: 0;
            top: 100%;
            position: absolute;
            right: 0pt;
            text-align: left;
            -webkit-box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
            padding: 0px 0;
            margin-top: 20px;
            margin-left: 0px;
            background: #fff;
            -webkit-transition: 0.2s 0s;
            -o-transition: 0.2s 0s;
            transition: 0.2s 0s;
            border-radius: 4px;
            max-height: 80vh;
            overflow-y: auto;
            z-index: 1000; /* Make sure it’s above other elements */
        }

            .site-navbar .site-navigation .site-menu .has-children .dropdown.visible {
                display: block;
            }

            .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
                position: absolute;
                transform: translate(10%, -5%)
            }

                .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
                    bottom: 100%;
                    left: 20%;
                    border: solid transparent;
                    content: " ";
                    height: 0;
                    width: 0;
                    position: absolute;
                    pointer-events: none;
                }

                .site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
                    border-color: rgba(136, 183, 213, 0);
                    border-bottom-color: #e9e9f5;
                    border-width: 10px;
                    margin-left: 110px;
                    /*margin-left: -10px;*/
                }

            .site-navbar .site-navigation .site-menu .has-children .dropdown a, .site-navbar .site-navigation .site-menu .has-children .dropdown button {
                font-size: 13px;
                font-weight: 600;
                letter-spacing: 0.03em;
                text-transform: uppercase;
                -webkit-transition: 0s all;
                -o-transition: 0s all;
                transition: 0s all;
                color: #0e1c60;
                border: none;
                background-color: inherit;
                margin: unset;
                padding: 12pt 15pt 12pt 15pt;
            }

                .site-navbar .site-navigation .site-menu .has-children .dropdown a.active, .site-navbar .site-navigation .site-menu .has-children .dropdown button.active {
                    color: #007bff;
                }

            .site-navbar .site-navigation .site-menu .has-children .dropdown .active > a {
                color: #fff !important;
            }

            .site-navbar .site-navigation .site-menu .has-children .dropdown > li {
                list-style: none;
                padding: 0;
                margin: 0;
                min-width: 300px;
            }

                .site-navbar .site-navigation .site-menu .has-children .dropdown > li:first-child > a {
                    border-top-left-radius: 4px;
                    border-top-right-radius: 4px;
                }

                .site-navbar .site-navigation .site-menu .has-children .dropdown > li:last-child > a {
                    border-bottom-left-radius: 4px;
                    border-bottom-right-radius: 4px;
                }

                .site-navbar .site-navigation .site-menu .has-children .dropdown > li > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li > button {
                    display: block;
                    font-weight: 600;
                }

                .site-navbar .site-navigation .site-menu .has-children .dropdown > li:hover {
                    background: #ebeef0;
                    color: #212529;
                }

                .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > a:before {
                    right: 20px;
                }

                .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
                    left: 100%;
                    top: 0;
                }

                .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:active > a, .site-navbar .site-navigation .site-menu .has-children .dropdown > li.has-children:focus > a {
                    background: #ebeef0;
                    color: #212529;
                }

        .site-navbar .site-navigation .site-menu .has-children:hover > a, .site-navbar .site-navigation .site-menu .has-children:focus > a, .site-navbar .site-navigation .site-menu .has-children:active > a {
            color: var(--hvr-color);
        }

        .site-navbar .site-navigation .site-menu .has-children, .site-navbar .site-navigation .site-menu .has-children:focus, .site-navbar .site-navigation .site-menu .has-children:active {
            cursor: pointer;
        }

            .site-navbar .site-navigation .site-menu .has-children > .dropdown, .site-navbar .site-navigation .site-menu .has-children:focus > .dropdown, .site-navbar .site-navigation .site-menu .has-children:active > .dropdown {
                -webkit-transition-delay: 0s;
                -o-transition-delay: 0s;
                transition-delay: 0s;
                margin-top: 0px;
                visibility: visible;
                opacity: 1;
            }

.site-mobile-menu {
    width: 100%;
    position: fixed;
    right: 0;
    z-index: 2000;
    padding-top: 5px;
    background: #fff;
    height: 100vh;
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
    overflow-y: auto;
}

.offcanvas-menu .site-mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
}

    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
        float: right;
        margin-top: 8px;
    }

        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
            font-size: 30px;
            display: inline-block;
            padding-left: 10px;
            padding-right: 0px;
            line-height: 1;
            cursor: pointer;
            -webkit-transition: .3s all ease;
            -o-transition: .3s all ease;
            transition: .3s all ease;
            margin-right: 20pt;
        }

            .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
                color: #dee2e6;
            }

    .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
        float: left;
        margin-top: 10px;
        margin-left: 0px;
    }

        .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
            display: inline-block;
            text-transform: uppercase;
        }

            .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
                max-width: 70px;
            }

            .site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
                text-decoration: none;
            }

.site-mobile-menu .site-mobile-menu-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 10px;
    max-height: calc(100vh - 10px);
    padding-top: 10px;
}

.site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: .5em;
    list-style: none;
    position: relative;
}

.navbar-active-link-active {
    position: relative;
    padding: 8px;
    overflow: hidden;
    /*color: red !important;*/
}

    .navbar-active-link-active::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 3px; /* Thickness of the underline */
        /*background-color: red;  Blue underline */
        transform: scaleX(1); /* Full width */
        transition: transform 0.3s ease-in-out;
    }


.site-mobile-menu .site-nav-wrap:first-of-type {
    margin-bottom: 25vh;
}

/*    .site-mobile-menu .site-nav-wrap:last-child {
        margin-bottom: 1em;
        border-bottom: 1px solid black;
        width: 98%
    }*/

.site-mobile-menu .site-nav-wrap a {
    padding: 20px 20px;
    display: block;
    position: relative;
    color: #212529;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.03em;
}

    .site-mobile-menu .site-nav-wrap a.active, .site-mobile-menu .site-nav-wrap a:hover {
        color: #354F9A;
    }

.site-mobile-menu .site-nav-wrap li {
    position: relative;
    display: block;
}

    .site-mobile-menu .site-nav-wrap li.active > a {
        color: #354F9A;
    }

.site-mobile-menu .site-nav-wrap .arrow-collapse {
    position: absolute;
    right: 0px;
    top: 20px;
    z-index: 20;
    width: 36px;
    height: 36px;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    font-size: 13px !important;
}


    .site-mobile-menu .site-nav-wrap .arrow-collapse:before {
        font-size: 12px;
        z-index: 20;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%) rotate(-180deg);
        -ms-transform: translate(-50%, -50%) rotate(-180deg);
        transform: translate(-50%, -50%) rotate(-180deg);
        -webkit-transition: .3s all ease;
        -o-transition: .3s all ease;
        transition: .3s all ease;
    }

    .site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.site-mobile-menu .site-nav-wrap > li ul > .collapsed:last-child {
    display: inline;
}

.site-mobile-menu .site-nav-wrap > li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
    margin-left: unset !important;
}


    .site-mobile-menu .site-nav-wrap > li > a {
        padding-left: 20px;
    }

    .site-mobile-menu .site-nav-wrap > li > ul {
        padding: 0;
        margin:;
        list-style: none;
    }

        .site-mobile-menu .site-nav-wrap > li > ul > li {
            display: block;
        }

            .site-mobile-menu .site-nav-wrap > li > ul > li > a {
                padding-left: 40px;
                font-size: 13px !important;
            }

            .site-mobile-menu .site-nav-wrap > li > ul > li > ul {
                padding: 0;
                margin: 0;
            }

                .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
                    display: block;
                }

                    .site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
                        font-size: 16px;
                        padding-left: 60px;
                    }




.switch-language {
    top: -2px;
}

    .switch-language .current-language-icon {
        max-width: 15pt;
    }

    .switch-language .dropdown .nav-link {
        padding: 7pt 0pt 7pt 10pt !important
    }

    .switch-language .flag-icon {
        max-width: 22pt;
        margin-right: 10pt;
    }

#pre-navbar {
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

    #pre-navbar.hidden {
        opacity: 0;
        visibility: hidden;
    }

.sticky-wrapper {
    position: relative;
    z-index: 100;
    width: 100%;
}


.site-bars-menu {
    float: right;
    padding: 5px 0 0 0;
}

.margin-login {
    margin-left: 80pt;
}

.user-image {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    line-height: 1.42857143;
    color: #354F9A;
    font-size: 14px;
    box-sizing: border-box;
    width: 35px;
    height: 35px;
    min-width: 30px;
    min-height: 30px;
    overflow: hidden;
    float: left;
    margin-right: 11px;
    border-radius: 50%;
    margin-left: 23px;
    border: 2px solid rgba(0, 0, 0, 0.15);
}

    .user-image img {
        max-width: 100%;
        max-width: -webkit-fill-available;
    }

.dropdown .user-image {
    position: relative;
    margin-left: 0pt;
    width: 30px;
    height: 30px;
    background-color: white;
}

.user-name-font-size {
    font-size: 16px;
    font-weight: 400;
}

.login-button {
    padding: 10px 15px !important;
    color: black !important;
    background-color: #e4e5e7 !important;
    transition: box-shadow 0.3s ease-in-out;
}

    .login-button:hover {
        box-shadow: 0 0 7px #f8f9fa;
    }

.active-account {
    display: none;
}

.responsive-line {
    display: none;
}

@media (max-width: 990px) {
    .responsive-line {
        display: block;
        border: 1px solid black;
    }

    .switch-language {
        margin: 20px 0 50px 0;
        padding: 15px
    }

    .site-navbar .row {
        background-color: #3c3c3c;
    }

    .arrow-icon {
        color: black;
    }

    .active-account {
        display: block;
        background-color: #00c73c;
        border-radius: 20px;
    }

    .has-children {
        background-color: rgb(182 192 201 / 40%);
        border-radius: 10px;
    }

    .border-bottom-mobile-navbar {
        margin-bottom: 2em;
    }
}

@media (min-width: 1035px) {
    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-none {
        display: none !important;
    }
}

@media (max-width: 1715px) {
    .site-navbar .site-navigation .site-menu > li > a {
        font-size: 15px;
    }

    .site-navbar .site-navigation .site-menu .has-children .dropdown a {
        font-size: 15px;
    }
}

/*@media (max-width: 1605px) {
    .site-navbar .site-navigation .site-menu > li {
        padding: 0;
        padding-bottom: 7pt;
    }
}*/

@media (max-width: 1515px) {
    .site-navbar .site-navigation .site-menu > li > a {
        font-size: 14px;
    }

    .site-navbar .site-navigation .site-menu .has-children .dropdown a {
        font-size: 14px;
    }

    .margin-login {
        margin-left: 30pt;
    }
}

@media (max-width: 1370px) {
    .site-navbar .site-navigation .site-menu > li > a {
        font-size: 13px;
    }

    .site-navbar .site-navigation .site-menu .has-children .dropdown a {
        font-size: 13px;
    }

    .margin-login {
        margin-left: 0pt;
    }
}

.row {
    margin: 0;
}

body.offcanvas-menu {
    overflow: hidden;
}

@media (max-width: 1250px) {


    .site-navbar .row {
        padding-bottom: 0pt;
        padding-top: 0pt;
        /*padding-right: 5pt;*/
    }
}

@media (max-width: 990px) {

    .logged-user {
        border-bottom: 2px solid #3c3c3cc9;
        padding: 10px 10px;
        width: 100%;
    }

    .site-mobile-menu-body .user-image {
        margin-left: 0;
        width: 30px;
        height: 30px;
    }

    .site-mobile-menu-body .current-user {
        width: 40px !important;
        height: 40px !important;
    }

    form.form-inline {
        margin: 15px;
    }

    .switch-language .collapse li {
        display: inline-block !important;
    }

        .switch-language .collapse li a span {
            display: none !important;
        }

    .site-mobile-menu .site-mobile-menu-body {
        flex-direction: column;
        display: flex;
    }

    .site-mobile-menu .site-nav-wrap:last-child {
        order: -1;
    }

    .home-icon::before {
        font-family: var(--fa-font-family); /* Make sure this matches the FA version */
        content: "\f015";
        font-weight: 900; /* Needed for solid icons */
        margin-right: 1em;
        display: inline-block;
        width: 24px; /* Set a fixed width */
        height: 24px; /* Set a fixed height */
    }

    .active-users-icon::before {
        font-family: var(--fa-font-family); /* Make sure this matches the FA version */
        content: "\f500";
        font-weight: 900; /* Needed for solid icons */
        margin-right: 1em;
        display: inline-block;
        width: 24px; /* Set a fixed width */
        height: 24px; /* Set a fixed height */
    }

    .companies-icon::before {
        font-family: var(--fa-font-family);
        content: "\f1ad"; /* fa-building (company icon) */
        font-weight: 900; /* Needed for solid icons */
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
    }

    .users-icon::before {
        font-family: var(--fa-font-family);
        content: "\f0c0"; /* Unicode for fa-users */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
    }

    .assertions-icon::before {
        font-family: var(--fa-font-family);
        content: "\f560"; /* fa-badge-check (assertion/verification) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
    }

    .deploys-icon::before {
        font-family: var(--fa-font-family);
        content: "\f382"; /* fa-cloud-upload-alt (works in free version) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
    }

    .issuers-employees-icon::before {
        font-family: var(--fa-font-family);
        content: "\f4c0"; /* fa-user-tie (better issuers/employees icon) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
    }

    .nft-icon-before::before {
        font-family: var(--fa-font-family);
        content: "\f1b2"; /* fa-image (NFT icon alternative) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
    }


    .tenants-icon::before {
        font-family: var(--fa-font-family);
        content: "\f015"; /* fa-home (represents tenants in a home/building) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
    }

    .send-emails-icon::before {
        font-family: var(--fa-font-family);
        content: "\f0e0"; /* fa-envelope (updated emails icon) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
    }

    .profile-icon::before {
        font-family: var(--fa-font-family);
        content: "\f2c0"; /* fa-user-alt (Profile icon) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
        line-height: 24px;
        text-align: center;
    }

    .showcase-icon::before {
        font-family: var(--fa-font-family);
        content: "\f302"; /* fa-th-large (Showcase icon) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
        line-height: 24px;
        text-align: center;
    }


    .badge-icon::before {
        font-family: var(--fa-font-family);
        content: "\f3ed"; /* fa-shield-alt (Badge icon) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
        line-height: 24px;
        text-align: center;
    }

    .import-badge-icon::before {
        font-family: var(--fa-font-family);
        content: "\f358"; /* fa-arrow-alt-circle-down (Import Badge icon) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
        line-height: 24px;
        text-align: center;
    }

    .account-settings-icon::before {
        font-family: var(--fa-font-family);
        content: "\f013"; /* fa-cogs (Account Settings icon) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
        line-height: 24px;
        text-align: center;
    }

    .community-icon::before {
        font-family: var(--fa-font-family);
        content: "\f0ac"; /* fa-users (Community icon) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
        line-height: 24px;
        text-align: center;
    }

    .developer-area-icon::before {
        font-family: var(--fa-font-family);
        content: "\f121"; /* fa-users (Community icon) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
        line-height: 24px;
        text-align: center;
    }

    .report-icon::before {
        font-family: var(--fa-font-family);
        content: "\f15c"; /* fa-file-alt (Report icon) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
        line-height: 24px;
        text-align: center;
    }

    .human-resource-icon::before {
        font-family: var(--fa-font-family);
        content: "\f509"; /* fa-users-cog (Human Resource icon) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
        line-height: 24px;
        text-align: center;
    }

    .anagrafica-icon::before {
        font-family: var(--fa-font-family);
        content: "\f2c2"; /* fa-address-card (Anagrafica icon) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
        line-height: 24px;
        text-align: center;
    }

    .hr-badge-area-icon::before {
        font-family: var(--fa-font-family);
        content: "\f507"; /* fa-user-shield (HR Badge Area icon) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
        line-height: 24px;
        text-align: center;
    }

    .public-profile-icon::before {
        font-family: var(--fa-font-family);
        content: "\f2c1"; /* fa-id-card (Public Profile icon) */
        font-weight: 900;
        margin-right: 1em;
        display: inline-block;
        width: 24px;
        height: 24px;
        line-height: 24px;
        text-align: center;
    }
}


/* SECONDARY NAVBAR */

.site-navbar .row.secondary-navbar {
    padding-left: 20pt;
    padding-right: 50pt;
    padding-top: 0pt;
    padding-bottom: 0pt;
    box-shadow: 0px 6px 13px 0px rgb(0 0 0 / 6%);
    transition: .5s all ease;
    background-color: #F5F7FA;
}

.site-navbar .secondary-navbar .site-navigation .site-menu > li {
    padding: 10px 15px 10px !important;
}

    .site-navbar .secondary-navbar .site-navigation .site-menu > li > a {
        color: black;
        text-transform: none;
        padding: unset;
        font-weight: 500 !important;
        font-size: 10pt !important;
    }

.sticky-wrapper.is-sticky .site-navbar .secondary-navbar .site-navigation .site-menu > li > a {
    padding: unset;
}

/*MEGA MENU*/
.resource-spotlight-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    background: #EFEDE6;
    border-radius: 24px;
    padding: 2em;
    overflow: hidden; /* Ensures animated content doesn't overflow the container */
    transition: all 0.3s ease; /* Smooth transition for the container */
}

    .resource-spotlight-container .p {
        color: #4a4a4a !important;
        z-index: 2;
    }

    .resource-spotlight-container .text-overlay {
        position: relative;
        color: #4a4a4a;
        text-align: left;
        z-index: 2;
        box-sizing: border-box;
    }

        .resource-spotlight-container .text-overlay .title {
            font-size: 1.25em;
            font-weight: 600;
            padding-bottom: 8px;
            margin-left: 0; /* Ensure no extra margin on the left */
        }

.icon-and-text-container {
    display: flex; /* Use flexbox to align items */
    align-items: center;
    position: relative; /* For positioning of the absolute left icon */
}

.resource-spotlight-container .text-and-icon-right {
    display: inline-flex;
    align-items: center;
    margin: 0; /* Remove any default margins */
    opacity: .85;
    transition: transform 0.3s ease; /* Smooth transition for the child div */
    position: relative;
}

.resource-spotlight-container .spotlight-icon-left {
    position: absolute; /* Make the left icon absolutely positioned */
    left: -32px; /* Positioned at -32px from the left edge of parent */
    opacity: 0; /* Hidden by default */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition for animation */
}

.resource-spotlight-container .spotlight-icon-right {
    margin-left: 0.5em; /* Space between text and right icon */
    transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition for animation */
}

/* Apply animations only for screens with a minimum width of 1280px */
@media (min-width: 1280px) {
    .resource-spotlight-container:hover .spotlight-icon-left {
        opacity: 1; /* Appear on hover */
        transform: translateX(32px); /* Move into its normal position */
    }

    .resource-spotlight-container:hover .text-and-icon-right {
        transform: translateX(32px); /* Slide the child div 32px to the right */
    }

    .resource-spotlight-container:hover .spotlight-icon-right {
        opacity: 0; /* Fade out */
    }
}

/* Styles for smaller screens */
@media (max-width: 991px) {
    .subnav-content-container {
        flex-direction: column; /* Stack columns vertically */
        gap: 10px; /* Reduce gap for smaller screens */
    }

    .resource-spotlight-container {
        background: #EFEDE6;
        border-radius: 24px;
        padding: 2em;
    }

    .site-mobile-menu-body > ul > li.sotto-menu {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Aligns items to the left */
        padding-left: 0; /* Prevent padding from pushing it */
    }

    .subnav-background {
        position: relative; /* Keeps submenu within flow */
        width: 100%;
        background-color: white;
        display: none;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        padding: 1em;
        border-radius: 10px;
    }

    .site-mobile-menu-body > ul > li.sotto-menu > a {
        text-align: left; /* Left-align text in the link */
        width: 100%;
    }
}

@media (min-width: 991px) {

    .subnav-background {
        position: fixed;
        top: 68px; /* Da cambiare se vengono aggiunti o tolti dei banner */
        left: 0;
        width: 100%; /* Adjust based on your layout */
        background-color: white; /* Ensure background visibility */
        z-index: 1000; /* Ensure it's above other elements */
        display: none; /* Hidden by default */
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add some shadow for better visibility */
        padding: 2em;
    }

        .subnav-background.active {
            display: flex; /* Show when active */
            justify-content: center;
        }
}

.subnav-background.active {
    display: block; /* Use Flexbox for layout */
}

.subnav-content-container {
    display: block; /* Flexbox container for columns */
    gap: 3em; /* Space between columns */
}

.subnav-column {
    flex: 1; /* Distribute space equally among columns */
    min-width: 200px; /* Set a minimum width for smaller screens */
}

.subnav-title-and-links {
    margin-bottom: 20px; /* Add spacing at the bottom */
}

.subnav-title-container {
    margin-bottom: 10px; /* Space between title and links */
    cursor: auto;
}

.subnav-links-container a {
    display: block; /* Ensure each link is on a new line */
    margin-bottom: 10px; /* Add space between links */
}

.uppercase {
    text-transform: uppercase;
    padding-bottom: .5em;
    border-bottom: 1px solid #b5b3b3;
    margin-bottom: 1em;
}
