/* FOOTER */

footer {
    position: relative;
    top: 60px;
    width: 100%;
    background-color: #244969;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-container {
    max-width: 1800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.reference-container {
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.reference-container li {
    list-style: none;
    color: white;
    margin: 5px 0;
    padding: 5px;
    font-size: clamp(14px, 3vw, 16px);
    border-bottom: solid 1px white;
}

.reference-container li a {
    cursor: pointer;
    color: #AFEEEE;
    font-size: clamp(14px, 3vw, 16px);
}

.contact-container {
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
    color: white;
    margin-bottom: 30px;
}

.contact-container p {
    font-weight: 200;
    font-size: clamp(14px, 3vw, 16px);
}

.contact-container a {
    text-decoration: none;
    color: #AFEEEE;
    font-size: clamp(14px, 3vw, 16px);
    text-decoration: underline;
}

.map-image-container {
    height: 100%;
    width: 80%;
    padding-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.map-image {
    height: 90%;
    width: 90%;
}

.contact-container p.contact-label {
    font-size: clamp(18px, 4vw, 20px);
    margin-bottom: 5px;
    margin-top: 15px;
    line-height: 1;
}

.contact-container p.contact-label strong {
    font-weight: 700; 
}

@media screen and (min-width: 650px) {
    footer {
        position: relative;
        top: 60px;
        width: 100%;
        background-color: #244969;
        display: flex;
        justify-content: center;
        align-content: center;
    }

    .footer-container {
        display: flex;
        width: 100%;
        max-width: 1800px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-content: center;
        padding: 30px 0;
    }

    .reference-container {
        width: 48%;
        padding: 20px 0;
    }

    .contact-container {
        width: 48%;
        margin-bottom: 0;
    }

    .map-image-container {
        margin-top: 40px;
        height: auto;
        width: 70%;
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1000px) {
    .reference-container {
        width: 30%;
        padding: 0;
    }

    .contact-container {
        width: 30%;
        margin-bottom: 0;
        padding-right: 50px;
    }

    .contact-container p {
        text-wrap: nowrap;
    }

    .map-image-container {
        height: auto;
        width: 80%;
        padding-bottom: 0;
    }
}