
/* ================= FOOTER ================= */
footer {
    width: 100%;
    height: 315px;
    background-image: url("/_assets/_img/main/footer.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    color: #062a64;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    z-index: 6;

    overflow: visible;
}

.footer-list {
    margin-top: auto; /*push to bottom*/
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-bottom: 15px;

    flex-wrap: wrap;
    justify-content: center;
}

.footer-list li {
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    color: #062a64;
}

/*circle*/
.footer-list span {
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #062a64;
    border-radius: 50%;
    margin: 0 0.5rem;
    vertical-align: middle;
}



footer p {
    margin-top: 10px;
    font-size: 12px;
    color: #062a64;
}

.footer-link {
    position: relative;
    display: inline-block;
    color: #062a64;
    text-decoration: none;
}

.footer-modal-content {
    font-size: 13px;
}

.footer-modal-content span {
    font-weight: 500;
    color: black;
}

.footer-modal-content h2, .footer-modal-content h3 {
    color: #0b6f82 !important;
}

.footer-modal-content ul, .footer-modal-content ul:not(.bullet) > li {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-modal-content a {

    text-decoration: none;
    color: #0b6f82;
    /*text-decoration-thickness: 1px;*/
    /*text-underline-offset: 3px;*/
    /*transition: color 0.2s ease, text-decoration-thickness 0.2s ease;*/
}

.footer-modal-content a:hover {
    text-decoration: underline;
    /*text-decoration-thickness: 2px;*/
    /*text-underline-offset: 3px;*/
}

.footer-modal-content a:focus-visible {
    outline: 2px solid #0b6f82;
    outline-offset: 2px;
    border-radius: 2px;
}

/*bullet points*/
.footer-modal-content ul.bullet {
    display: block;
    list-style: disc;
    margin-left: 20px;
    padding-left: 20px;
}

.footer-modal-content ul.bullet li {
    display: list-item;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Remove bullets from the contact section */
.footer-modal-content .contact li.contact {
    list-style: none;
}


/*footer contact flex*/
li.contact p {
    color: black;
}

.contact.flex-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
}



@media (max-width: 1050px) {
    footer {
        height: 150px;
        background-image: none;
        background-color: white;
    }


}

@media (max-width: 670px) {
    footer {
        height: 250px;
    }

    .footer-list {
        flex-direction: column;
    }

    .footer-list span {
        display: none;
    }
}