@charset "utf-8";

/* _________________________ Footer _________________________ */
footer {
    width: 100%;
    height: 200px;
    background-color: #002a3b;
}

/* _____ Footer content _____ */
/* Contact */
.footer-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    color: #fff;
}

.contact-foot {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    padding: 16px;
}

.contact-foot h5 {
    font-size: 16px;
    font-weight: 500;
}

#phone,
#mail {
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
}

h5,
p {
    margin: 0;
}

#other {
    width: 20%;
}

#legal-mentions {
    width: 40%;
    padding: 24px;
}

#legal-mentions a {
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: end;
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
}

#legal-mentions a:hover {
    text-decoration: underline #12BAFB;
    color: #12BAFB;
    cursor: pointer;
}

/* _________________________ Responsive _________________________ */
/* _________________________ Responsive 0 > 499px */
@media screen and (max-width: 499px) {

    /* __________°°° ***** Footer 0 > 499px ***** °°°__________*/
    /* Footer - GENERAL - 0 > 499px */
    footer {
        min-width: 0;
        height: 80px;
    }

    /* Footer - CONTACT - 0 > 499px */
    .contact-foot {
        width: 40%;
        gap: 4px;
        padding: 2px;
    }

    .contact-foot h5 {
        font-size: 10px;
    }

    #phone,
    #mail,
    #other,
    #legal-mentions a {
        font-size: 8px;
        gap: 2px;
    }

    #legal-mentions {
        padding: 12px;
    }

    #i-phone,
    #i-mail {
        width: 10px;
        height: 10px;
    }
}

/* _________________________ Responsive 500px > 661px */
@media screen and (min-width: 500px) and (max-width: 767px) {

    /* __________°°° ***** Footer 500 > 661px ***** °°°__________*/
    /* Footer - GENERAL - 500px > 661px */
    footer {
        height: 80px;
    }

    /* Footer - CONTACT - 500px > 661px */
    .contact-foot {
        width: 30%;
        gap: 4px;
        padding: 2px;
    }

    .contact-foot h5 {
        font-size: 10px;
    }

    #phone,
    #mail,
    #other,
    #legal-mentions a {
        font-size: 8px;
    }

    #i-phone,
    #i-mail {
        width: 12px;
        height: 12px;
    }
}

/* _________________________ Responsive 662px > 767px */
@media screen and (min-width: 662px) and (max-width: 767px) {

    /* __________°°° ***** Footer 662 > 767px ***** °°°__________*/
    /* Footer - GENERAL - 662px > 767px */
    footer {
        height: 100px;
    }

    /* Footer - CONTACT - 662px > 767px */
    .contact-foot {
        width: 30%;
        gap: 6px;
        padding: 4px;
    }

    .contact-foot h5 {
        font-size: 12px;
    }

    #phone,
    #mail,
    #other,
    #legal-mentions a {
        font-size: 10px;
    }

    #i-phone,
    #i-mail {
        width: 16px;
        height: 16px;
    }
}

/* _________________________ Responsive 768px > 991px */
@media screen and (min-width: 768px) and (max-width: 991px) {

    /* __________°°° ***** Footer 768 > 991px ***** °°°__________*/
    /* Footer - GENERAL - 768px > 991px */
    footer {
        height: 120px;
    }

    /* Footer - CONTACT - 768px > 991px */
    .contact-foot {
        width: 30%;
        gap: 8px;
        padding: 4px;
    }

    .contact-foot h5 {
        font-size: 12px;
    }

    #phone,
    #mail,
    #other,
    #legal-mentions a {
        font-size: 10px;
    }

    #i-phone,
    #i-mail {
        width: 18px;
        height: 18px;
    }
}

/* _________________________ Responsive 992px > 1199px */
@media screen and (min-width: 992px) and (max-width: 1199px) {

    /* __________°°° ***** Footer 992 > 1199px ***** °°°__________*/
    /* Footer - GENERAL - 992px > 1199px */
    footer {
        height: 150px;
    }

    /* Footer - CONTACT - 992px > 1199px */
    .contact-foot {
        gap: 10px;
        padding: 8px;
    }

    .contact-foot h5 {
        font-size: 14px;
    }

    #phone,
    #mail,
    #other,
    #legal-mentions a {
        font-size: 12px;
    }

    #i-phone,
    #i-mail {
        width: 20px;
        height: 20px;
    }

}