/* Déclaration des polices Aeonik-MGEN */
@font-face {
    font-family: 'Aeonik-MGEN-Regular';
    src: url('../fonts/Aeonik-MGEN/otf/AeonikMGEN-Regular.otf') format('opentype'),
         url('../fonts/Aeonik-MGEN/ttf/AeonikMGEN-Regular.ttf') format('truetype'),
         url('../fonts/Aeonik-MGEN/web/AeonikMGEN-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Déclaration des autres polices */

/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Boîte de modèle de bordure pour inclure les paddings et les bordures dans les dimensions */
}

/* Body */
body {
    background-color: #ffffff;
    font-family: 'Aeonik-MGEN-Regular', sans-serif;
    font-size: 16px;
    color: #000000;
}
strong{font-family: 'Aeonik-MGEN-Regular', sans-serif;}
/* Styles communs */
.bg-vert-forest { background-color: #96dcaa }
.bg-rose-limonade { background-color: #2d418c }
.vert-forest { color: #96dcaa }
.rose-limonade { color: #2d418c }
.txt-bold { font-family: 'Aeonik-MGEN-Bold', sans-serif;}
.txt-light { font-family: 'Aeonik-MGEN-Light', sans-serif; }

/* Logo container */
.logo-container {
    text-align: right;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
}

/* Logo */
.logo-right-top {
    width: 85px;
    height: 105px;
    background: url(../images/v45_1466.png) no-repeat center center / cover;
    opacity: 1;
    position: relative;
    top: 0px;
    overflow: hidden;
}

/* .image-container{} */
.image-banner{ width: 270px;
    position: relative; /* Ajoutez cette ligne */}
/* Header top padding */
.header-top {
    padding-top: 44px;
}

/* Headings */
h1 { font-size: 38px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 22px; }
h5 { font-size: 16px; }
p { font-size: 18px; }

/* Title */
.title {
    color: var(--Rose-Limonade, #2d418c);
    font-size: 33px;
    text-align: right;
    font-style: normal;
    font-weight: 600;
    line-height: 1.2;
}

/* Subtitle */
.sub-title {
    font-family: 'Aeonik-MGEN-Light', sans-serif;
    color: var(--Rose-Limonade, #2d418c);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.2;
    text-align: right;
}

/* Form container */
.form-container {
    padding: 32px;
    border-bottom: 1px solid #ffffff;
    border-radius: 15px;
}
.form-group {
    margin-bottom: 6px;
}
  .form-check-label {
        padding-left: 0px;
        margin-bottom: 0;
        cursor: pointer;
    }
/* Form input fields */
input[type=text],
input[type=tel],
input[type=email],
input[type=submit] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

/* Labels */
label {
    font-size: 14px;
    color: #ffffff;
}

/* Submit button */
.btn-border {
    background-color: #6AA517;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    float: right;
}

/* Hover effect on submit button */
.btn-border:hover {
    background-color: #4d7812;
    color: #fff;
}

/* Placeholder text color */
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder {
    color: #9EA5AD;
}
/* Scrollbar customization */
.mentions {
    color: #e6e6e6;
    margin: 10px 0px;
    overflow-y: scroll;
    overflow-x: hidden;
    max-height: 50px;
    font-size: 13px;
    line-height: 12px;
}

.mentions::-webkit-scrollbar {
    width: 4px;
    height: 64px; /* Hauteur de la barre de défilement */
    background-color: #ccc; /* Couleur de fond de la barre de défilement */
}

.mentions::-webkit-scrollbar-thumb {
    background-color: #6AA517; /* Couleur de la poignée de la barre de défilement */
    border-radius: 16px; /* Bordure de la poignée */
}

.mentions::-webkit-scrollbar-track {
    border-radius: 16px; /* Bordure de la piste de la barre de défilement */
}

.mentions::-webkit-scrollbar-thumb:hover {
    background-color: #999; /* Couleur de la poignée de la barre de défilement au survol */
}

/* Ajoutez le reste de la personnalisation de la barre de défilement ici */

/* Champs valides */
.is-valid {
    border-color: #28a745 !important; /* Couleur de bordure verte */
    background-color: #f8f9fa !important; /* Couleur de fond gris clair */
}

/* Champs invalides */
.is-invalid {
    border-color: #dc3545 !important; /* Couleur de bordure rouge */
    background-color: #f8d7da !important; /* Couleur de fond rouge clair */
}

/* Messages d'erreur */
.invalid-feedback {
    color: #dc3545; /* Couleur du texte rouge */
}
/* Media Queries pour les smartphones */
@media only screen and (max-width: 767px) {
    /* Ajoutez vos styles spécifiques aux smartphones ici */
    h1 { font-size: 32px; }
    h2 { font-size: 24px; }
    h3 { font-size: 24px; }
    h4 { font-size: 22px; }
    h5 { font-size: 16px; }
    p { font-size: 14px; }

    .title {
        font-size: 28px;
        line-height: 1.2;
        text-align: left;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .sub-title {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.2;
        text-align: left;
        margin-bottom: 40px;
    }

    .form-container {
        padding: 12px;
        border-bottom: 1px solid #ffffff;
        border-radius: 10px;
    }

    label {
        font-size: 14px;
        color: #ffffff;
    }

  
/* Scrollbar customization */
.mentions {


    font-size: 15px;
  
}


}

/* Media Queries pour les tablettes */
@media only screen and (min-width: 768px) and (max-width: 1020px) {
    /* Ajoutez vos styles spécifiques aux tablettes ici */
    h1 { font-size: 38px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
    h4 { font-size: 20px; }
    h5 { font-size: 16px; }
    p { font-size: 16px; }

    .title {
        font-size: 32px;
        line-height: 1.2;
        text-align: right;
        margin-top: 70px; /* Ajoutez une marge en haut */
    }

    .sub-title {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.2;
        text-align: right;
    }

    .form-container {
        padding: 16px;
        border-bottom: 1px solid #ffffff;
        border-radius: 10px;
    }

    label {
        font-size: 14px;
    }

}

/* Media Queries pour les écrans entre 1020px et 1200px */
@media only screen and (min-width: 1020px) and (max-width: 1200px) {
    /* Ajoutez vos styles spécifiques à cette gamme de tailles d'écran ici */
    h1 { font-size: 36px; }
    h2 { font-size: 32px; }
    h3 { font-size: 24px; }
    h4 { font-size: 22px; }
    h5 { font-size: 16px; }
    p { font-size: 14px; }

    .title {
        font-size: 34px;
        line-height: 1.2;
        text-align: right;
        margin-top: 85px; /* Ajoutez une marge en haut */
    }

    .sub-title {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.2;
        text-align: right;
        margin-bottom: 50px;
    }
}

#myModal p{
    font-size: 14px !important;
}
