@charset "utf-8";

/* _________________________ Mentions légales _________________________ */
#mentions-legales {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.content-mentions-legales {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0 auto 32px;
    line-height: 1.3;
}

.title-mentions-legales {
    font-size: 28px;
    font-weight: 500;
    font-family: 'Kanit', sans-serif;
}

a {
    color: #000;
}

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

.content h3 {
    font-size: 20px;
    font-weight: 500;
    font-family: 'Kanit', sans-serif;
    margin: 16px 0 8px;
}

.content p {
    font-size: 18px;
}

/* _________________________ Ressponsive _________________________ */
/* _________________________ Responsive 0 > 499px _________________________ */
@media screen and (max-width: 499px) {
    .content-mentions-legales {
        width: 60%;
    }

    .title-mentions-legales {
        font-size: 20px;
    }

    .content h3 {
        font-size: 15px;
    }

    .content p {
        font-size: 12px;
    }
}

/* _________________________ Responsive 500px > 661px _________________________ */
@media screen and (min-width: 500px) and (max-width: 661px) {
    .content-mentions-legales {
        width: 60%;
    }

    .title-mentions-legales {
        font-size: 20px;
    }

    .content h3 {
        font-size: 15px;
    }

    .content p {
        font-size: 12px;
    }
}

/* _________________________ Responsive 662px > 767px _________________________ */
@media screen and (min-width: 662px) and (max-width: 767px) {
    .title-mentions-legales {
        font-size: 22px;
    }

    .content h3 {
        font-size: 16px;
    }

    .content p {
        font-size: 14px;
    }
}

/* _________________________ Responsive 768px > 991px _________________________ */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .title-mentions-legales {
        font-size: 24px;
    }

    .content h3 {
        font-size: 18px;
    }

    .content p {
        font-size: 15px;
    }
}

/* _________________________ Responsive 992px > 1199px _________________________ */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .title-mentions-legales {
        font-size: 26px;
    }

    .content h3 {
        font-size: 22px;
    }

    .content p {
        font-size: 16px;
    }
}