body {
    font-family: montserrat-light, 'Arial', serif;
    margin: 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    min-height: 80vh;
    margin-bottom: 50px;
}

/* FONT-FACE */
@font-face {
    font-family: chelsea;
    src: url("../fonts/Chelsea.ttf");
}

@font-face {
    font-family: poppins;
    src: url("../fonts/Poppins-sb.otf");
}

@font-face {
    font-family: montserrat-light;
    src: url("../fonts/Montserrat-Light.ttf");
}

@font-face {
    font-family: montserrat-light-g;
    src: url("../fonts/Montserrat-SemiBold.ttf");
}

@font-face {
    font-family: more_sugar_thin;
    src: url("../fonts/More-Sugar-Thin.otf");
}

/* FIN FONT-FACE*/

/* TITRE */
.title-primary {
    margin: 50px auto 20px;
    width: max-content;
    max-width: 100%;
    text-align: center;
    text-transform: uppercase;
    color: var(--green-primary-darker);
    font-family: more_sugar_thin, serif;
}

.title-primary::after {
    background-color: var(--green-primary-darker);
    width: 60%;
    margin: 5px auto;
    height: 5px;
    display: block;
    content: '';
}

.title-second {
    text-align: center;
    color: var(--green-primary);
    font-family: more_sugar_thin, serif;
    margin: 40px auto 20px;
    text-transform: uppercase;
}

.subtitle {
    text-align: center;
    width: 95%;
    margin: 0 auto 1.2rem;
}

@media (min-width: 1200px) {
    .title-primary {
        font-size: 3rem !important;
    }

    .title-second {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }
}

/* FIN TITRE */

/* BOUTON */

.btn {
    border-width: 3px;
    font-family: poppins, serif;
}

.btn-outline-green-primary {
    border-color: var(--green-primary);
    color: var(--green-primary);
    font-family: Arial, serif;
    font-weight: bolder;
}

.btn-outline-green-primary:hover {
    background-color: var(--green-primary);
}

.btn-bg-green {
    background-image: url("../img/icon/forme_bouton.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-weight: 1000;
    color: black;
    padding: 10px 20px;
}

.btn-bg-green:hover {
    color: white;
}

.btn-green-primary {
    color: black;
    background-color: var(--green-primary);
    border-color: var(--green-primary);
}

.btn-green-primary:hover {
    color: white;
    background-color: var(--green-primary-darker);
    border-color: var(--green-primary-darker);

}

/* FIN BOUTON */

/* FORMULAIRE */
label {
    color: var(--green-primary-darker);
    font-weight: bolder;
    font-family: more_sugar_thin, serif;
    font-size: 1.2rem!important;
    margin-bottom: 0!important;
}

textarea::placeholder {
    color: var(--green-primary-darker)!important;
    font-weight: bolder;
    font-family: more_sugar_thin, serif;
    font-size: 1.2rem!important;
}
/* FIN FORMULAIRE */


.g-recaptcha {
    width: max-content;
    margin: auto;
}

.active-green-darker {
    background-color: var(--green-primary-darker);
    color: white;
}

.active-green {
    background-color: var(--green-primary);
}

.text-green-primary {
    color: var(--green-primary);
}

.text-green-primary-darker {
    color: var(--green-primary-darker)!important;
    font-weight: bolder;
}

.bg-black {
    background-color: black;
    color: white;
}

.bg-green-primary-darker {
    background-color: var(--green-primary-darker);
    color: white;
}

.bg-white-light {
    background-color: #f9f9f9;
}

.page-item.active .page-link {
    color: black;
    background-color: var(--green-primary);
    border-color: var(--green-primary);
    z-index: 0;
}


.my-form {
    width: 95%;
    max-width: 480px;
    margin: 20px auto 20px auto;
}

.my-contact-form {
    width: 90%;
    margin: auto;
}

.little-card-container {
    min-height: 155px;
    max-height: max-content;
}

.little-card {
    min-height: 100%;
    max-height: max-content;
    max-width: 448px;
}

.little-card-img {
    height: 100%;
    padding: 20px;
}

.block-info {
    width: 95%;
    max-width: 1000px;
    text-align: justify;
    margin: 0 auto 1.5rem;
}

.video {
    width: 95%;
    border-radius: 5px;
    border: 2px solid white;
    overflow: hidden;
    height: max-content;
}

label.required:after {
    content: "*";
    color: #7a0606;
    border-radius: 50%;
    display: inline-block;
    height: 4px;
    width: 4px;
    position: relative;
    right: -2px;
    top: -2px;
    filter: opacity(75%);
}


@media (min-width: 768px) {

    .video {
        width: 75%;
    }

}

@media (min-width: 992px) {

    .my-contact-form {
        width: 75%;
    }

    .title-primary p {
        max-width: 75%;
    }

    .video {
        width: 50%;
    }

}

@media (min-width: 1200px) {
    .video {
        width: 40%;
    }
}




/*article ajouté*/
#popup {
    position: fixed;
    right: 70px;
    top: 60px;
    background-color: white;
    padding: 7px 10px;
    box-shadow: 10px 10px 10px;
    border-radius: 2px;
    font-family: poppins, serif;
    z-index: 100;
}

#cgv2 {
    line-height: 30px;
    margin: auto;
}

.covid-info {
    line-height: 30px;
    width: 80%;
    margin: auto;
}