body {
    font-family: "Helvetica Neue", "sans-serif";
    transition: padding-top 0.1s ease-in-out;
}

.nav-item {
    transition: all 0.3s ease-in-out;
}


.dropdown-menu-v2-target {
    position: absolute;
    top: 0;
    left: 0;
    width: max-content;
    display: none;
    min-width: 200px;
    background-color: transparent;
    opacity: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    color: #0D2240;

    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 166.667% */
    text-transform: capitalize;

    transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;

    &[data-show] {
        display: block;
        background-color: #F3C300;
        opacity: 1;
    }

    a {
        color: #0D2240;

        &:hover {
            text-decoration: none;
            color: #0D2240;
        }
    }

    .subitem-lvl2[data-menu-open='1'] {
        background-color: #FFE88B;
    }

    .subitem1 {
        padding: 10px 24px;
    }

    .subitem1:hover {
        background-color: #FFE88B;

    }
}

.dropdown-mega-menu-v2-target {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    min-width: 200px;
    background-color: transparent;
    opacity: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    color: #0D2240;
    padding: 20px;

    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px; /* 166.667% */
    text-transform: capitalize;

    transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
    width: 100%;

    gap: 20px;

    &[data-show] {
        display: grid;
        background-color: #F3C300;
        opacity: 1;
        row-gap: 40px;

        /* Mobile: 1 column */
        grid-template-columns: 1fr;

        /* Tablet: 3 columns */
        @media (min-width: 768px) {
            grid-template-columns: repeat(3, 1fr);
        }

        /* Desktop: 5 columns */
        @media (min-width: 1024px) {
            grid-template-columns: repeat(5, 1fr);
        }
    }

    a {
        &:hover {
            text-decoration: underline;
        }
    }

    .subitem-lvl2[data-menu-open='1'] {
        background-color: #FFE88B;
    }

    .subitem1 {
        padding: 10px 24px;
    }

    .subitem1:hover {
        background-color: #FFE88B;

    }
}

.mega-menu-l2 {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: 100%;
}

.mega-menu-l2-title {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 14px;
    color: #0D2240;

    &:hover {
        text-decoration: underline;
        color: #7A2582;
    }
}

.mega-menu-l3-title {
    a {
        color: #0D2240;

        &:hover {
            text-decoration: underline;
            color: #0044BE;
        }
    }

    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.nav-item-container {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #0D2240;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 166.667% */
    text-transform: capitalize;

    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;

    a {
        padding: 0;
    }

    &:hover {
        background-color: #F3C300;
    }

    &[data-menu-open] {
        background-color: #F3C300;
    }
}

.rotate-180 {
    transform: rotate(180deg);
}

.btn-nav-menu-trigger {
    padding: 0 0 0 0;
    background: transparent;
    border: none;

    transition: all 0.3s ease-in-out;

    &:focus {
        box-shadow: none;
    }

}


.page-content {
    background-image: url('../img/lions-bg-img.svg');
    background-repeat: no-repeat;
    background-position: right 0;

    h2 {
        color: #0D2240;
        text-align: center;

        /* Header/H2 */
        font-size: 52px;
        font-style: normal;
        font-weight: 500;
        line-height: 74px; /* 142.308% */
        margin-bottom: 36px;

        &:after {
            content: "";
            display: block;
            margin: 0 auto;
            max-width: 308px;
            height: 5px;
            background-color: #F3C300;
            margin-top: 4px; /* Adjust as needed for spacing */
        }
    }

    h3 {
        color: #0D2240;

        /* Header/H3 */
        font-size: 42px;
        font-style: normal;
        font-weight: 500;
        line-height: 56px; /* 133.333% */
        margin-bottom: 24px;

        &:after {
            content: "";
            display: block;
            max-width: 120px;
            height: 5px;
            background-color: #F3C300;
            margin-top: 4px; /* Adjust as needed for spacing */
        }
    }

    h4 {
        color: #0D2240;

        /* Header/H4 */
        font-size: 36px;
        font-style: normal;
        font-weight: 500;
        line-height: 38px; /* 105.556% */
        margin-bottom: 24px;

        &:after {
            content: "";
            display: block;
            max-width: 308px;
            height: 5px;
            background-color: #F3C300;
            margin-top: 4px; /* Adjust as needed for spacing */
        }
    }

    h5 {
        color: #0D2240;

        /* Header/H5 */
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 30px; /* 125% */
    }

    a {
        color: #0D2240;
        transition: color 0.3s ease;

        &:hover {
            text-decoration: none;
            color: #061120;
        }
    }

    .ce-bodytext {
        color: #0D2240;

        /* md/Regular */
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px; /* 140% */

    }
}


