/* ------------------- FOOTER ------------------- */

footer {
    width: 100%;
    background-color: rgb(30, 30, 30);

    padding: 4rem 8.33% 6rem 8.33%;
    color: white;
}

.newsletter-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10rem 0 10rem;
    margin-right: auto;
}

.newsletter-text {
    font-size: clamp(0.8rem, 0.733rem + 0.222vw, 1rem);
}

.newsletter-box {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.newsletter-box input {
    flex: 6;

    border: var(--button-border);
    padding: .75rem;
    font-size: clamp(0.8rem, 0.733rem + 0.222vw, 1rem);
}

.newsletter-box input:focus {
    outline: none;
}

.newsletter-box .cta-button {
    background-color: white;
    border: var(--button-border);
    color: black !important;
}

.footer-main {
    width: 100%;

    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2rem 0 2rem 0;
}

.footer-nav {
    flex: 1;
    width: 100%;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: space-evenly;
}

.footer-nav-top {
    flex: 1;
    padding: 2rem 0 0 0;

    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
}

.footer-paragraph  {
    max-width: 400px;
}

.footer-nav-logo {
    height: 60px;
    flex: 1 0 20px;

    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url('../img/home/logo-wh.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    min-width: 200px;
}

.footer-contact-title, .footer-navigation-title {
    font-family: AvenirBlack;
    font-size: clamp(1rem, 0.733rem + 0.222vw, 1.5rem);
    margin-bottom: .5rem;
}

.footer-contact {
    flex: 0;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
    gap: .5rem;

    margin-right: 5rem;
}

.footer-nav-top ul {
    flex: 1;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;;

    gap: .5rem;
}

.footer-nav-top ul li {
    list-style-type: none;
}

.footer-nav-top ul li a {
    font-weight: bold;
    font-size: clamp(0.8rem, 0.733rem + 0.222vw, 1rem);
    text-decoration: none;
    color: white;
}

.footer-nav-top ul li a:hover {
    color: #b3b3b3;
}

.footer-nav-center {
    flex: 1;

    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-end;


    padding-top: 2rem;
}

.footer-nav-center ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;

    gap: 2rem;
}

.footer-nav-center ul li {
    list-style-type: none;
}

.footer-nav-center ul li a {
    font-size: clamp(0.8rem, 0.733rem + 0.222vw, 1rem);
    text-decoration: none;
    color: white;
}

.footer-nav-center ul li a:hover {
    color: #b3b3b3;
}

.footer-nav-bottom {
    flex: 1;

    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
}


.footer-nav-bottom ul {
    flex: 1;
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;

    gap: .5rem;

    cursor: pointer;
}

.footer-nav-bottom ul li {
    list-style-type: none;
}

.footer-nav-bottom ul li a {
    font-size: clamp(0.8rem, 0.733rem + 0.222vw, 1rem);
    text-decoration: none;
    color: white;
}

.footer-nav-bottom ul li a img {
    flex: 1 0 0;
    height: 25px;
    min-width: 4px;
}

.footer-nav-bottom p {
    flex: 8;

    font-size: clamp(0.8rem, 0.733rem + 0.222vw, 1rem);
    display: flex;
    justify-content: flex-end;
    align-items: center;
}








/* ---------------- MEDIA QUERIES --------------- */
@media screen and (max-width: 1410px) {
    .footer-nav-top  {
        flex-flow: column nowrap;
    }

    .footer-nav-logo {
        width: 100px;
        flex: 0 0 100px;
    }

    .footer-contact {
        margin-right: 0;
    }



    .footer-navigation {
        margin-top: 2rem;
        margin-right: 5vw;

    }
}

@media screen and (max-width: 890px) {
    .newsletter-container {
        padding: 0 5% 0 5%;
    }
}

@media screen and (max-width: 740px) {
    .newsletter-container {
        padding: 0;
        align-items: center;
    }

    .newsletter-box {
        margin-top: 1rem;
        flex-flow: column nowrap;
        align-items: center;
        padding: 0;
    }

    .newsletter-box input {
        min-width: 350px;
    }

    .footer-main {
        padding: 0;
        margin-top: 2rem;
    }

    .footer-nav-top {
        padding: 0;
        flex-flow: column nowrap;
    }

    .footer-nav-logo {
        width: 100px;
        flex: 0 0 100px;
    }

    .footer-nav-center {
        flex-direction: row;
    }

    .footer-nav-bottom {
        padding: 1rem 0 1rem 0;
        flex-direction: column;
    }

    .footer-nav-bottom p {
        padding: 1rem 0 0 0;
    }

    .footer-nav-bottom ul {
        justify-content: center;
    }

    .footer-nav-bottom ul li a img {
        flex: 1 0 0;
        height: 20px;
        min-width: 4px;
    }
}

