﻿.pagepart-heading {
    text-align: center;
    font-family: var(--siteFontPrimary), sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    width: 100%;
}

.pagepart-subheading {
    text-align: center;
    font-family: var(--siteFontSecondary), sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.pagepart-content {
    text-align: center;
    font-family: var(--siteFontSecondary), sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.pagepart-legal-line {
    color: #737F8C;
    text-align: center;
    font-family: var(--siteFontSecondary), sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    width: 100%;
    font-style: italic;
}

@media (max-width: 992px) {
    .pagepart-heading {
        font-size: 45px;
    }
}

@media (max-width: 768px) {
    .pagepart-heading {
        font-size: 40px;
    }
    .pagepart-subheading {
        font-size: 20px;
    }
    .pagepart-content {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .pagepart-heading {
        font-size: 32px;
    }
}

.pagepart-content ul {
    display: flex;
    flex-direction: column;
}

.pagepart-content ul li {
    list-style: none;
    position: relative;
    padding-left: 2rem;
    text-align: left;
    margin-top: 0.5rem;
}

.pagepart-content ul li::before {
    content: "\f00c";
    font-family: "FontAwesome", sans-serif;
    font-weight: 900;
    color: var(--siteColorPrimary);
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 1rem;
}

.pagepart a {
    color: currentColor;
    transition: color 0.1s ease-in-out;
}

.pagepart a:hover {
    color: var(--siteColorPrimary);
    text-decoration: underline;
}

.pagepart a:focus-visible {
    color: var(--siteColorPrimary);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--siteColorPrimary), transparent 60%);
    outline: none;
}

.pagepart b, .pagepart strong {
    font-weight: 700;
}


.pagepart table {
    width: 100%;
    border-collapse: collapse;
}

.pagepart td {
    padding: 5px 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.pagepart tr:first-child td {
    font-weight: bold;
    background-color: #eeeeee;
}

.pagepart tr {
    background-color: #ffffff;
}

.pagepart tr:hover {
    background-color: #f8f8f8;
}

/*#region BREADCRUMB*/
.breadcrumb {
    font-size: 0.9rem;
}

.breadcrumb li a {
    color: var(--siteTextColorSecondary);
    text-decoration: none;
}


.breadcrumb li a:hover {
    color: color-mix(in srgb, var(--siteColorPrimary), black 25%);
    text-decoration: underline;
}

.breadcrumb li a:focus-visible {
    color: var(--siteColorPrimary);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--siteColorPrimary), transparent 60%);
    outline: none;
}

.active-breadcrumb {
    font-weight: 800;
}

.breadcrumb-item a {
    border-radius: 0.1rem;
}

.btn-close:focus-visible, .login-icon:focus-visible {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--siteColorPrimary), transparent 60%);
    outline: none;
}

/*#endregion BREADCRUMB*/

/*#region LOADER*/
.overlay-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
}

.overlay-loader-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 400px;
}

@media (max-width: 576px) {
    .overlay-loader-content {
        width: 90%;
    }
}

.loader-card {
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*#endregion BREADCRUMB*/

/*#region ICONS*/
.icon {
    width: 24px;
    height: 24px;
    color: var(--siteColorSecondary);
    fill: currentColor;
}

.login-icons {
    gap: 15px !important;
}

/*#endregion ICONS*/

/*#region TO_TOP_BUTTON*/
.top-btn {
    font-size: 1rem;
    display: flex;
    line-height: 1rem;
    padding: 0.5rem;
    gap: 0.75rem;
    align-items: center;
    transition: background-color 0.2s, color 0.2s;
    border: none;
    font-weight: 600;
    background-color: transparent;
    color: var(--siteColorPrimary);
}

.top-btn:hover {
    background-color: color-mix(in srgb, var(--siteColorPrimary), transparent 90%);
}

.top-btn:focus-visible {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--siteColorPrimary), transparent 60%);
    outline: none;
}

/*#endregion TO_TOP_BUTTON*/

/*#region OLD*/
/*Old css that will be removed/updated eventually*/

.page-btn {
    color: white;
    background-color: var(--siteColorPrimary);
    font-weight: 700;
    text-decoration: none;
    padding: 8px 40px 8px 20px;
    border-radius: 4px;
    border: none;
    width: fit-content;
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.btn-check:focus-visible + .page-btn,
.page-btn:focus-visible,
.page-btn:hover {
    color: white;
    background-color: var(--siteColorPrimaryAccent);
    border: none;
}

.page-btn.form-control:focus-visible {
    color: white;
    background-color: var(--siteColorPrimaryAccent);
    border: none;
}

.comp-heading {
    font-family: Nunito;
    font-size: 48px;
    font-weight: 700;
    line-height: 62px;
    letter-spacing: 0em;
    margin: 0px;
}

.comp-subheading {
    font-size: 24px !important;
    margin: 0px !important;
}

@media screen and (max-width: 1461px) {
    .comp-heading {
        max-width: 526px;
    }
}

@media screen and (max-width: 1126px) {
    .comp-heading {
        font-size: 45px;
        line-height: 55px;
    }

    .comp-subheading {
        font-size: 18px;
    }
}

@media screen and (max-width: 1055px) {
    .comp-heading {
        max-width: 493px;
    }
}

@media screen and (max-width: 992px) {
    .comp-heading {
        align-items: center;
        text-align: center;
    }
}

@media screen and (max-width: 586px) {
    .comp-heading {
        font-size: 40px;
        max-width: 438px;
    }
}

@media screen and (max-width: 411px) {
    .comp-heading {
        font-size: 35px;
        line-height: 50px;
    }
}

@media screen and (max-width: 356px) {
    .comp-heading {
        font-size: 32px;
    }
}

.product-cont {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 40px;
}

.product-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
}

.second-product-card {
    display: flex;
    flex-direction: column;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 16px;
}

.first-product-card-cont {
    width: 227px;
}

.second-product-card-cont {
    width: 177px;
}

.product-card-text {
    color: #1f262e;
    text-align: center;
    font-family: Nunito;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin: 0px;
}

.second-product-card-text {
    color: #1f262e;
    text-align: center;
    font-family: Nunito;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin: 0px;
}

.hover-link {
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #d7d7d7;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    color: black;
    align-items: center;
}

.hover-link:hover {
    transform: scale(1);
    box-shadow: 0 4px 16px 4px rgba(31, 38, 46, 0.12);
    text-decoration: none;
    color: black;
}

.hover-link:focus-visible {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--siteColorPrimary), transparent 60%);
    outline: none;
}

@media screen and (max-width: 1025px) {
    .product-cont {
        width: 100vw;
        align-items: center;
    }

    .product-row {
        gap: 15px;
        width: 100vw;
    }

    .first-product-card-cont {
        width: 23.2%;
    }
}

@media screen and (max-width: 963px) {
    .second-product-card-cont {
        width: 18.2%;
    }
}

@media screen and (max-width: 425px) {
    .first-product-card-cont {
        width: 44% !important;
    }
}

@media screen and (min-width: 427px) and (max-width: 620px) {
    .product-row {
        gap: 4px !important;
    }

    .product-row img {
        width: 43px;
    }

    .second-product-card-text {
        font-size: 13px !important;
        width: 18.2% !important;
    }

    .product-card-text {
        font-size: 15px !important;
    }
}

@media screen and (max-width: 769px) {
    .product-cont {
        width: 100vw;
    }

    .first-product-card-cont {
        width: 23%;
    }

    .second-product-card-cont {
        width: 18%;
    }
}

@media screen and (max-width: 426px) {
    .more-products-cont {
        padding-top: 40px;
        margin: 0px;
    }

    .mobile-view-car-guide {
        display: flex;
        flex-direction: column;
    }

    .desktop-view-car-guide {
        display: none;
    }
}

@media screen and (max-width: 376px) {
    .product-card-text {
        color: #1f262e;
        text-align: center;
        font-family: Nunito;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        margin: 0px;
    }

    .first-product-card-cont {
        width: 145px;
    }
}

@media screen and (max-width: 321px) {
    .first-product-card-cont {
        width: 130px;
    }
}

@media screen and (max-width: 281px) {
    .first-product-card-cont {
        width: 120px;
    }

    .product-card-text {
        font-size: 14px;
    }
}

.login-span {
    color: var(--siteColorPrimary);
}

/*#endregion OLD*/

/*#region NEW_TYPOGRAPHY*/
.roboto-font {
    font-family: 'Roboto', sans-serif;
}

.nunito-font {
    font-family: 'Nunito', sans-serif;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, p, div, ul, li, span {
    margin: 0;
    padding: 0;
}

h1, .h1 {
    font-size: clamp(60px, 6cqw, 65px);
    font-weight: 800;
}

h2, .h2 {
    font-size: clamp(40px, 4cqw, 50px);
    font-weight: 700;
}

h3, .h3 {
    font-size: clamp(37px, 3.6cqw, 48px);
    font-weight: 600;
}

h4, .h4 {
    font-size: clamp(30px, 3.2cqw, 40px);
    font-weight: 600;
}

h5, .h5 {
    font-size: clamp(23px, 2.5cqw, 30px);
    font-weight: 500;
}

h6, .h6 {
    font-size: clamp(16px, 1.6cqw, 24px);
    font-weight: 400;
}

.text-container {
    container-type: inline-size;
}

@media (max-width: 576px) {
    h1, .h1 {
        font-size: clamp(40px, 6cqw, 50px);
        font-weight: 800;
    }
}


/*#endregion NEW_TYPOGRAPHY*/

/*#region PAGEPART*/
@media (min-width: 768px) {
    .pagepart-outer-container {
        padding: 6rem 0;
    }
}

@media (min-width: 768px) {
    .pagepart-outer-container {
        padding: 6rem 0;
    }
}

.pagepart {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}


.pagepart-content-list {
    width: 100%;
}

.pagepart-content-list ul {
    display: flex;
    flex-direction: column;
    width: fit-content;
}

.pagepart-content-list ul li {
    list-style: none;
    position: relative;
    padding-left: 2rem;
    text-align: left;
    margin-top: 0.8rem;
}

.pagepart-content-list ul li::before {
    content: "\f00c";
    font-family: "FontAwesome", sans-serif;
    font-weight: 900;
    color: var(--siteColorPrimary);
    position: absolute;
    left: 0;
    top: 0.1rem;
    font-size: 1rem;
}

.pagepart-inner a {
    color: var(--siteColorPrimary);
    text-decoration: none;
}

.pagepart-inner a:hover {
    text-decoration: underline;
    color: color-mix(in srgb, var(--siteColorPrimary), black 10%);
}

.pagepart-inner a:focus-visible {
    text-decoration: underline;
    color: color-mix(in srgb, var(--siteColorPrimary), black 10%);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--siteColorPrimary), transparent 60%);
    outline: none;
}

/*#endregion PAGEPART*/

/*#region FORMS*/
.submit-btn, .submit-field-btn {
    color: white;
    background-color: var(--siteColorPrimary);
    font-weight: 700;
    text-decoration: none;
    border: 2px solid var(--siteColorPrimary);
    width: fit-content;
    display: flex;
    align-items: center;
    text-wrap: nowrap;
    justify-content: center;
    transition: background-color 0.2s;
}

.submit-btn:focus-visible, .submit-field-btn:focus-visible {
    box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--siteColorPrimary), white 50%);
    outline: none;
}

.submit-btn:hover, .submit-field-btn:hover {
    background-color: color-mix(in srgb, var(--siteColorPrimary), transparent 10%);
}

@media (min-width: 576px) {
    .submit-field-btn:focus-visible {
        border-left: none;
    }
}

.submit-btn {
    font-size: 24px;
    padding: 20px 30px 20px 30px;
    border-radius: 4px;
}

.submit-field-btn {
    font-size: 20px;
    padding: 1rem 1.5rem;
    border-radius: 0 4px 4px 0;
}

@media (max-width: 576px) {
    .submit-field-btn {
        padding: 1rem;
        border-radius: 4px;
        width: 100%;
    }
}

.hero-form-control {
    font-size: 18px;
    font-weight: 400;
    padding: 1rem 1.5rem;
    border: 2px solid var(--siteColorPrimary);
    border-radius: 4px 0 0 4px;
    color: #495057;
    height: fit-content;
}

@media (max-width: 576px) {
    .hero-form-control {
        font-size: 16px;
        padding: 1rem;
        border-radius: 4px;
        text-align: center;
    }
}

.form-control:focus-visible, .form-select:focus-visible {
    border-color: var(--siteColorPrimary);
    box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--siteColorPrimary), transparent 60%);
}

.form-control.is-invalid:focus-visible, .was-validated .form-control:invalid:focus-visible {
    border-color: #dc3545;
    box-shadow: inset 0 0 0 3px rgba(220, 53, 69, .25);
}

.form-select.is-invalid:focus-visible, .was-validated .form-select:invalid:focus-visible {
    border-color: #dc3545;
    box-shadow: inset 0 0 0 3px rgba(220, 53, 69, .25);
}

.tooltip-btn-img {
    object-fit: contain;
}

.form-disclaimer {
    font-size: 13px;
    line-height: 13px;
    font-weight: 400;
}

.invalid-feedback {
    color: #dc3545;
    margin-top: 0.25rem;
    font-size: 0.875em;
    text-align: right;
}

@media (max-width: 768px) {
    .form-disclaimer {
        font-size: 15px;
        line-height: 15px;
        font-weight: 500;
    }
}

.id-popover {
    max-width: 700px;
    width: 700px;
    font-size: 15px;
    line-height: 18px;
}

.id-popover p {
    margin-bottom: 0.5rem;
}

@media (max-width: 990px) {
    .form-input {
        width: 100%;
        text-align: center;
        border-radius: 4px 4px 0 0;
        height: 60px;
    }
}

.mobile-tooltip {
    cursor: pointer;
    width: 100%;
    max-width: 100%;
}

.form-floating > label {
    color: #495057;
    left: unset;
    display: flex;
    align-items: center;
}

@media (min-width: 1200px) {
    .form-container {
        max-width: 1100px !important;
    }
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.2rem;
}

@media (min-width: 992px) {
    .w-lg-fit-content {
        width: fit-content !important;
    }
}

.form-floating > .form-select:not([value=""]):not(:focus-visible) ~ label,
.form-floating > .form-select:focus-visible ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-floating > .form-select[value=""] ~ label {
    opacity: 1;
    transform: scale(1) translateY(0) translateX(0);
}

.form-floating > .form-select:has(option[value=""]:checked) ~ label {
    opacity: 1;
    transform: scale(1) translateY(0) translateX(0);
}

.form-select option[value=""] {
    display: none;
}

.form-select option[value=""]:disabled {
    color: transparent;
}

.form-floating {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.formBtn {
    font-size: 1rem;
    line-height: 1rem;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    display: flex;
    gap: 1rem;
    align-items: center;
    color: white;
    transition: background-color 0.2s, color 0.2s;
    border: none;
    font-weight: 600;
}

.nextBtn {
    background-color: var(--siteColorPrimary);
}

.saveBtn {
    background-color: var(--siteColorPrimary);
}

.nextBtn:hover, .saveBtn:hover {
    background-color: color-mix(in srgb, var(--siteColorPrimary), transparent 10%);
}

.nextBtn:focus-visible, .saveBtn:focus-visible {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--siteColorPrimary), transparent 60%);
    outline: none;
}

.backBtn {
    background-color: #999899;
}

.cancelBtn {
    color: black;
    background-color: #EAEAEC;
}

.backBtn:hover {
    background-color: color-mix(in srgb, #999899, transparent 10%);
}

.backBtn:focus-visible {
    box-shadow: 0 0 0 4px color-mix(in srgb, #999899, transparent 60%);
    outline: none;
}

.cancelBtn:hover {
    background-color: color-mix(in srgb, #EAEAEC, black 3%);
}

.cancelBtn:focus-visible {
    box-shadow: 0 0 0 4px color-mix(in srgb, #EAEAEC, black 10%);
    outline: none;
}

.form-title {
    text-align: center;
    color: var(--siteColorPrimary);
    margin-bottom: 1rem;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes loading-dots {
    0% {
        content: '';
    }
    25% {
        content: '.';
    }
    50% {
        content: '..';
    }
    75% {
        content: '...';
    }
    100% {
        content: '';
    }
}

/*#endregion FORMS*/


/*#region HEADER*/
.navbar-shadow {
    box-shadow: 6px 1px 5px #999 !important;
}

#header {
    .navbar {
        border-bottom: 1px solid #d0d0d0;
        border-top: 4px solid var(--siteColorPrimary);
    }

    .logo-link {
        border-radius: .25rem;
        background: none;
        border: none;
        padding: 0;
        margin: 0;
        text-align: left;
        cursor: pointer;
    }

    /*MOBILE*/

    .navbar-toggler:focus-visible, .logo-link:focus-visible {
        outline: none;
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--siteColorPrimary), transparent 60%);
    }

    .navbar-toggler:focus-visible {
        box-shadow: none;
    }

    .animated-close {
        width: 20px;
        height: 14px;
        position: relative;
        transition: .5s ease-in-out;
        cursor: pointer;
    }

    .animated-close span {
        display: block;
        position: absolute;
        background: #7f7f7f;
        height: 2px;
        width: 100%;
        border-radius: 2px;
        transition: .25s ease-in-out;
        transform-origin: left center;
    }

    .navbar-toggler.collapsed .animated-close {
        span:nth-child(1) {
            top: 0;
        }

        span:nth-child(2) {
            top: 7px;
        }

        span:nth-child(3) {
            top: 14px;
        }
    }

    .navbar-toggler:not(.collapsed) .animated-close {
        span:nth-child(1) {
            transform: rotate(45deg);
            left: 3px;
        }

        span:nth-child(2) {
            display: none;
        }

        span:nth-child(3) {
            transform: rotate(-45deg);
            top: 14px;
            left: 3px;
        }
    }

    .mobile-dropdown-menu {
        display: none;
        -ms-overflow-style: none;
        scrollbar-width: none;
        position: fixed;
        top: 65px !important;
        left: 0;
        right: 0;
        background-color: white;
        z-index: 1000;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .mobile-dropdown-menu.show {
        display: block !important;
    }

    @media (min-width: 992px) {
        .mobile-dropdown-menu {
            display: none !important;
        }
    }

    .section-heading {
        position: sticky;
        top: 4px;
        z-index: 100;
        box-shadow: 2px 0 4px rgba(31, 38, 46, .12), 0 0 5px rgba(31, 38, 46, .08);
        border-radius: 0.3rem;
    }

    .accordion-item:nth-of-type(8n + 1) {
        .accordion-button:not(.collapsed), .submenu-container p {
            color: var(--sectionOne) !important;
        }

        .accordion-button:focus-visible {
            box-shadow: 0 0 0 4px color-mix(in srgb, var(--sectionOne), transparent 60%);
        }
    }

    .accordion-item:nth-of-type(8n + 2) {
        .accordion-button:not(.collapsed), .submenu-container p {
            color: var(--sectionTwo) !important;
        }

        .accordion-button:focus-visible {
            box-shadow: 0 0 0 4px color-mix(in srgb, var(--sectionTwo), transparent 60%);
        }
    }

    .accordion-item:nth-of-type(8n + 3) {
        .accordion-button:not(.collapsed), .submenu-container p {
            color: var(--sectionThree) !important;
        }

        .accordion-button:focus-visible {
            box-shadow: 0 0 0 4px color-mix(in srgb, var(--sectionThree), transparent 60%);
        }
    }

    .accordion-item:nth-of-type(8n + 4) {
        .accordion-button:not(.collapsed), .submenu-container p {
            color: var(--sectionFour) !important;
        }

        .accordion-button:focus-visible {
            box-shadow: 0 0 0 4px color-mix(in srgb, var(--sectionFour), transparent 60%);
        }
    }

    .accordion-item:nth-of-type(8n + 5) {
        .accordion-button:not(.collapsed), .submenu-container p {
            color: var(--sectionFive) !important;
        }

        .accordion-button:focus-visible {
            box-shadow: 0 0 0 4px color-mix(in srgb, var(--sectionFive), transparent 60%);
        }
    }

    .accordion-item:nth-of-type(8n + 6) {
        .accordion-button:not(.collapsed), .submenu-container p {
            color: var(--sectionSix) !important;
        }

        .accordion-button:focus-visible {
            box-shadow: 0 0 0 4px color-mix(in srgb, var(--sectionSix), transparent 60%);
        }
    }

    .accordion-item:nth-of-type(8n + 7) {
        .accordion-button:not(.collapsed), .submenu-container p {
            color: var(--sectionSeven) !important;
        }

        .accordion-button:focus-visible {
            box-shadow: 0 0 0 4px color-mix(in srgb, var(--sectionSeven), transparent 60%);
        }
    }

    .accordion-item:nth-of-type(8n + 8) {
        .accordion-button:not(.collapsed), .submenu-container p {
            color: var(--sectionEight) !important;
        }

        .accordion-button:focus-visible {
            box-shadow: 0 0 0 4px color-mix(in srgb, var(--sectionEight), transparent 60%);
        }
    }

    .accordion-button {
        color: var(--siteColorSecondary);
        font-size: 20px;
        font-weight: 600;
        background-color: white;
        border-radius: 0.3rem;
        padding: 0.6rem 1rem !important;
    }

    .accordion-button::after {
        transition: none !important;
        background-image: none !important;
        content: "\F4FE";
        font: normal normal normal 24px/1 Bootstrap-icons;
    }

    .accordion-button:not(.collapsed)::after {
        transform: none !important;
        background-image: none !important;
        content: "\F2EA";
        font: normal normal normal 24px/1 Bootstrap-icons;
    }

    .submenu-container p {
        font-weight: 700;
        border-bottom: 1px solid #f7f7f8;
        padding: .7rem 0;
    }

    .submenu-container button {
        padding: .7rem 0;
        color: var(--bs-gray-dark);
        font-weight: 300;
        font-size: 14px;
        text-decoration: none;
        border: none;
        border-bottom: 1px solid #f7f7f8;
        background: none;
        margin: 0;
        text-align: left;
        cursor: pointer;
        border-radius: 1px;
    }

    .mobile-menu-overlay, .menu-overlay {
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, .7);
        opacity: 0;
        visibility: hidden;
        transition: opacity .15s ease-in-out;
        z-index: -1;
        pointer-events: none;
    }

    .navbar-nav:hover .menu-overlay {
        opacity: 1;
        visibility: visible;
    }

    #mobileMenu.show + .mobile-menu-overlay {
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
    }

    @media (min-width: 992px) {
        .mobile-menu-overlay {
            display: none;
        }
    }

    /*DESKTOP*/

    li.nav-item {
        cursor: pointer;
        flex-grow: 1;
        flex-basis: auto;
        text-align: center;
    }

    .nav-link {
        transform: translateZ(0);
        color: var(--siteColorSecondary);
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        padding: 24px 16px !important;
        position: relative;
    }

    .nav-link::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 100%;
        height: 4px;
        background: var(--siteColorSecondary);
        transition: right 0.3s ease-out;
    }

    .nav-link:hover::before,
    .nav-link:focus-visible::before {
        right: 0;
    }

    .nav-item .nav-link:focus-visible {
        outline: none;
    }

    .nav-item:hover .nav-link::before {
        right: 0;
    }

    .nav-item:nth-of-type(8n + 1) .nav-link:hover,
    .nav-item:nth-of-type(8n + 1):hover .nav-link,
    .nav-item:nth-of-type(8n + 1) .nav-link:focus-visible,
    .nav-item:nth-of-type(8n + 1) .dropdown-hero-headings span,
    .nav-item:nth-of-type(8n + 1) .menu-category-link:hover,
    .nav-item:nth-of-type(8n + 1) .menu-category-link:focus-visible {
        color: var(--sectionOne);
    }

    .nav-item:nth-of-type(8n + 1) .nav-link::before {
        background-color: var(--sectionOne);
    }

    .nav-item:nth-of-type(8n + 2) .nav-link:hover,
    .nav-item:nth-of-type(8n + 2):hover .nav-link,
    .nav-item:nth-of-type(8n + 2) .nav-link:focus-visible,
    .nav-item:nth-of-type(8n + 2) .dropdown-hero-headings span,
    .nav-item:nth-of-type(8n + 2) .menu-category-link:hover,
    .nav-item:nth-of-type(8n + 2) .menu-category-link:focus-visible {
        color: var(--sectionTwo);
    }

    .nav-item:nth-of-type(8n + 2) .nav-link::before {
        background-color: var(--sectionTwo);
    }

    .nav-item:nth-of-type(8n + 3) .nav-link:hover,
    .nav-item:nth-of-type(8n + 3):hover .nav-link,
    .nav-item:nth-of-type(8n + 3) .nav-link:focus-visible,
    .nav-item:nth-of-type(8n + 3) .dropdown-hero-headings span,
    .nav-item:nth-of-type(8n + 3) .menu-category-link:hover,
    .nav-item:nth-of-type(8n + 3) .menu-category-link:focus-visible {
        color: var(--sectionThree);
    }

    .nav-item:nth-of-type(8n + 3) .nav-link::before {
        background-color: var(--sectionThree);
    }

    .nav-item:nth-of-type(8n + 4) .nav-link:hover,
    .nav-item:nth-of-type(8n + 4):hover .nav-link,
    .nav-item:nth-of-type(8n + 4) .nav-link:focus-visible,
    .nav-item:nth-of-type(8n + 4) .dropdown-hero-headings span,
    .nav-item:nth-of-type(8n + 4) .menu-category-link:hover,
    .nav-item:nth-of-type(8n + 4) .menu-category-link:focus-visible {
        color: var(--sectionFour);
    }

    .nav-item:nth-of-type(8n + 4) .nav-link::before {
        background-color: var(--sectionFour);
    }

    .nav-item:nth-of-type(8n + 5) .nav-link:hover,
    .nav-item:nth-of-type(8n + 5):hover .nav-link,
    .nav-item:nth-of-type(8n + 5) .nav-link:focus-visible,
    .nav-item:nth-of-type(8n + 5) .dropdown-hero-headings span,
    .nav-item:nth-of-type(8n + 5) .menu-category-link:hover,
    .nav-item:nth-of-type(8n + 5) .menu-category-link:focus-visible {
        color: var(--sectionFive);
    }

    .nav-item:nth-of-type(8n + 5) .nav-link::before {
        background-color: var(--sectionFive);
    }

    .nav-item:nth-of-type(8n + 6) .nav-link:hover,
    .nav-item:nth-of-type(8n + 6):hover .nav-link,
    .nav-item:nth-of-type(8n + 6) .nav-link:focus-visible,
    .nav-item:nth-of-type(8n + 6) .dropdown-hero-headings span,
    .nav-item:nth-of-type(8n + 6) .menu-category-link:hover,
    .nav-item:nth-of-type(8n + 6) .menu-category-link:focus-visible {
        color: var(--sectionSix);
    }

    .nav-item:nth-of-type(8n + 6) .nav-link::before {
        background-color: var(--sectionSix);
    }

    .nav-item:nth-of-type(8n + 7) .nav-link:hover,
    .nav-item:nth-of-type(8n + 7):hover .nav-link,
    .nav-item:nth-of-type(8n + 7) .nav-link:focus-visible,
    .nav-item:nth-of-type(8n + 7) .dropdown-hero-headings span,
    .nav-item:nth-of-type(8n + 7) .menu-category-link:hover,
    .nav-item:nth-of-type(8n + 7) .menu-category-link:focus-visible {
        color: var(--sectionSeven);
    }

    .nav-item:nth-of-type(8n + 7) .nav-link::before {
        background-color: var(--sectionSeven);
    }

    .nav-item:nth-of-type(8n + 8) .nav-link:hover,
    .nav-item:nth-of-type(8n + 8):hover .nav-link,
    .nav-item:nth-of-type(8n + 8) .nav-link:focus-visible,
    .nav-item:nth-of-type(8n + 8) .dropdown-hero-headings span,
    .nav-item:nth-of-type(8n + 8) .menu-category-link:hover,
    .nav-item:nth-of-type(8n + 8) .menu-category-link:focus-visible {
        color: var(--sectionEight);
    }

    .nav-item:nth-of-type(8n + 8) .nav-link::before {
        background-color: var(--sectionEight);
    }

    .nav-item .menu-category-link:focus-visible {
        outline: 2px solid currentColor;
    }

    .nav-item:hover .dropdown-menu {
        display: block;
        left: 0;
        padding-top: 2rem;
        padding-bottom: 0;
        cursor: default;
        border: none;
        border-radius: 0;
    }

    .dropdown-menu[data-bs-popper] {
        margin-top: -2px;
        padding-top: 2rem;
    }

    .dropdown-img-container {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(247, 247, 248, 1) 100%);
        height: auto;
        width: 350px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-img-container:before {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(248, 248, 248, 1) 58%, rgba(247, 247, 248, 1) 62%);
        height: 75%;
        bottom: 0;
        max-width: 290px;
        position: absolute;
        left: 0;
        right: 0;
        content: "";
    }

    .dropdown-img-container img {
        max-width: 200px;
        height: auto;
        max-height: 400px;
    }

    .dropdown-hero-headings {
        position: relative;
        bottom: 65px;
        padding: 0 10px;
    }

    .dropdown-hero-headings h3 {
        font-size: 18px;
        line-height: 24px;
        color: var(--siteColorSecondary);
        font-weight: 200;
        z-index: 1;
    }

    .dropdown-hero-headings span {
        font-weight: 700;
    }

    .dropdown-hero-headings a {
        font-size: 14px;
        line-height: 18px;
        color: var(--bs-gray-dark);
        position: relative;
        font-weight: 400;
        padding-right: 22px;
        text-decoration: none;
        cursor: pointer;
    }

    .dropdown-hero-headings a:hover {
        color: var(--bs-gray-dark);
    }

    .dropdown-hero-headings .icon {
        transition: transform 0.4s ease;
    }

    .dropdown-hero-headings a:hover .icon {
        transform: translateX(4px);
    }

    .menu-category-heading {
        font-weight: 700;
        font-size: 16px;
        color: var(--siteColorSecondary);
    }

    .menu-category-link {
        font-weight: 300;
        line-height: 18px;
        font-size: 14px;
        color: var(--bs-gray-dark);
        text-decoration: none;
        transition: color 0.2s ease;
        background: none;
        border: none;
        padding: 0;
        margin: 0;
        text-align: left;
        cursor: pointer;
        border-radius: 1px;
    }
}

/*#endregion HEADER*/