/********* COULEURS *******************/
/**************************************/
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    --primary-color: #000000;
    --secondary-color: #353C3D;
    --secondary-color-hover: #888;
    --troisieme-couleur: #5fc8d2;
    --quatrieme-couleur: #8628D8;
    font-family: "Poppins", sans-serif;

    overflow-x: hidden;
}

section {
    position: relative;
}

.bg-dark {
    background-color: var(--primary-color);
    color: #FFF;
}

.bg-dark h2,
.bg-dark h3 {
    color: #fff;
}

h1,
h2,
h3,
p,
ul {
    margin: 0;
    color: #fff;
}

a{
    display: inline-block;
}

/********* COMMUNS ********************/
/**************************************/
a.button--secondary {
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

/********* NAVBAR *********************/
/**************************************/
.navbar {
    position: fixed;
    top: 0;
    padding: 2rem 1rem;
    width: 100%;
    color: #fff;
    background-color: var(--primary-color);
    z-index: 1;
}

.navbar__container {
    position: relative;
    justify-content: flex-end;
}

.navbar #menu .menu.principal>li a {
    color: #fff;
}

.navbar #menu .menu.principal>li a:hover {
    color: var(--secondary-color);
}

.navbar #menu .menu.principal>li {
    margin: 0 15px;
}

a.display-menu span,
a.display-menu span:before,
a.display-menu span:after {
    background-color: #fff;
}

@media only screen and (max-width: 1024px) {
    .navbar #menu {
        background-color: var(--primary-color);
    }

    .navbar #menu li {
        margin: 10px 0 !important;
    }

    .logo {
        left: 50%;
        transform: translateX(-50%);
    }
}

/********* GRAPHIQUE ELEMENT ********************/
/**************************************/
h1 {
    position: relative;
}

/*#section-1 h1::after {
    content: "";
    display: block;
    top: 70px;
    left: 0;
    margin-top: 2rem;
    width: 40%;
    height: 2.5px;
    background-color: var(--troisieme-couleur);
    opacity: 1;
    text-align: center;
}*/

#section-2.titre {
    position: relative;
}


.citation {
    position: relative;
    text-align: center;
    font: italic normal 300 26px/35px Poppins;
}

.citation::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    background: url(../img/quote-01.svg) center / contain no-repeat;
    width: 80px;
    height: 65px;
    opacity: 1;
    transform: translate(-30%, -50%);
}

.citation::after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    right: 0;
    background: url(../img/quote-02.svg) center / contain no-repeat;
    width: 80px;
    height: 65px;
    opacity: 1;
    transform: translate(30%, 50%);
}

/*#section-2 .titre::before {
    content: "";
    display: block;
    position: absolute;
    top: 115px;
    left: 32%;
    width: 200px;
    height: 2.5px;
    background-color: var(--troisieme-couleur);
    opacity: 1;
}

#section-2 .titre::after {
    content: "";
    display: block;
    position: absolute;
    top: 135px;
    left: 35%;
    width: 200px;
    height: 2.5px;
    background-color: var(--quatrieme-couleur);
    opacity: 1;
}*/
/*.contact-us contact form-base{
    position: relative;
}
.form-check-label::before{
    content: "";
    display: block;
    position: absolute;
    top: 115px;
    left: 32%;
    width: 200px;
    height: 2.5px;
    background-color: var(--troisieme-couleur);
    opacity: 1;
}*/

/********* BUTTON ********************/
/**************************************/
.ouvrir-ici {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--troisieme-couleur);
    padding: 0.5em 0.8em;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: 0;
    transform: translateY(50%);
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}

.fleche {
    height: 50px;

}

.picto-taille {
    width: 280px;
    height: 150px;
}

/* vertical line */
/*.ouvrir-ici::after {
    content: '';
    position: absolute;
    background-color: var(--troisieme-couleur);
    width: 3px;
    height: 30px;
    bottom: 3px;
    right: 0px;

}*/

/* horizontal line */
/*.ouvrir-ici::before {
    content: '';
    position: absolute;
    background-color: var(--troisieme-couleur);
    width: 50px;
    height: 3px;
    bottom: 0px;
    right: 0px;

}
*/
/********* SECTION ********************/
/**************************************/
#hero {
    background-color: var(--primary-color);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.container-1 {
    padding-left: 0;
    padding-right: 0;
}

.image-motif {
    bottom: 0;
    left: -230px;
    position: absolute;
}

.image-motif-2 {
    top: 0;
    right: -230px;
    height: 730px;
    position: absolute;
    opacity: .6;
}

.logo {
    position: absolute;
}

.logo img {
    min-width: 300px;
}

#fond-gris {
    background: #454E4F 0% 0% no-repeat padding-box;
    border-radius: 8px;
    color: #fff;
    width: 100%;
    padding: 2em;
    margin: auto;
    margin-bottom: 4rem;

}
.triangle {
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 50px 40px 50px;
    border-color: transparent transparent #353C3D transparent;
    transform: rotate(0deg);
    position: absolute;
    top: 0;
    transform: translateY(-100%);
 }
 .triangle-1{
    left: 11.3%;
 } .triangle-2{
    left: 50%;
    transform: translate(-50%,-100%);
 } .triangle-3{
    right: 11.3%;
 }

#section-1 {
    background-color: var(--secondary-color);
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
#section-2 {
    padding-bottom: 150px;
    padding-top: 110px;
    overflow: hidden;
  }
#section-2>.container {
    position: relative;
    z-index: 1;
}

#section-2 article .article-top {
    text-align: center;
    position: relative;
    padding: 40px;
    background-color: var(--secondary-color);
    border-radius: 8px;
}


.presentation-textes {
    position: absolute;
}

.titre-foca {
    font-size: 40px;
    letter-spacing: 0px;
    padding-bottom: 3rem;
    text-align: center;
}

.presentation-text {
    margin-left: 60px;
    margin-right: 60px;
}

.presentation-text p {
    font: normal normal normal 17px;
    font-family: "Poppins";
    letter-spacing: 0px;
}

.en-savoir-plus {
    font-weight: 600;
}

.div-parent {
    display: flex;
    align-items: center;
}

.div-parent>div {
    width: 50%;
}

.container-2 {
    padding-left: 0;
}

.div-en-savoir-plus {
    margin-top: 40px;
    padding-bottom: 40px;
    text-align: center;
}

.presentation-foca-propose {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;

}
.presentation-textes {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.retour-ligne {
    font: normal normal 200 45px/15px Poppins;
    color: var(--troisieme-couleur);
}


.button-fill {
    background-color: var(--quatrieme-couleur);
    border-radius: 8px;
    border: none;
    padding: 1em 2em;
    transition-duration: .2s;
}

.button-fill:hover{
    opacity: .5;
}

#section-1 a {
    color: #fff;
    font: normal normal 600 18px/29px Poppins;
    letter-spacing: 0px;
    text-decoration: none;

}



article {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% / 3) - 40px);
}

article .fleche {
    transition-duration: 300ms;
}

article.show-text .fleche {
    transform: rotate(180deg);
}

.article-text {
    background-color: var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    transition: opacity 300ms;
    position: absolute;
    bottom: 0;
    left: 0;
}

.article-text.hidden {
    opacity: 0;
    visibility: hidden;
    height: 0;
    overflow: hidden;
    padding: 0;
}

.titre-article {
    font-size: 35px;
    font-family: "Poppins";
    padding-top: 20px;
    text-align: center;
}

summary {
    list-style-type: none;
    text-align: center;
}

.titre {
    font-size: 40px;
    text-align: center;
    padding-bottom: 3rem;
    margin: auto;
}

article p {
    font: normal normal normal 17px/29px Poppins;
    letter-spacing: 0px;
}

#contact {
    background-color: var(--primary-color);
}

.text-4 {
    font-size: 40px;
    font-weight: 500;
    padding-bottom: 3rem;
}

form textarea,
form input,
form input:focus,
form textarea:focus {
    background: transparent !important;
    color: #fff !important;
}

form input::placeholder,
form textarea::placeholder{
    opacity: .8;
}

form span.required{
    font-weight: 500;
    margin-left: 5px;
    color: #ef233c;
}

.l-row {
    padding-bottom: 3rem;
}

.footer-mentions-legales {
    background-color: var(--secondary-color);
}

footer {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

footer h4 {
    align-items: center;
    color: #fff;
    border-bottom: 1px solid var(--troisieme-couleur);
    display: inline-block;
}

footer div#open {
    background-color: var(--secondary-color) !important;
}

/********* CONTACT ********************/
/**************************************/
.map {
    text-align: center;
}

.map iframe {
    max-width: 100%;
    width: 100%;
    height: 500px;
}

.contact-coords {
    width: fit-content;
    margin: auto;
}

.contact-coords a {
    text-decoration: none;
}

#contact p {
    font-size: 20px;
}

#contact a {
    color: #fff;
    font-size: 20px;
    transition-duration: .2s;
    display: inline;
}

#contact a:hover {
    color: var(--troisieme-couleur);
}

.picto-coordonnees {
    height: 40px;
    width: 40px;
    object-fit: contain;
    margin-right: 20px;
}

.picto-coordonnees.lkd {
    background-color: #FFF;
    border-radius: 50%;
}

.logo-coordonnees {
    width: 312px;
    height: 107px;
    margin-bottom: 40px;
    margin-top: 2rem;
}

.interligne {
    line-height: 3;
}

.contact-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-col {
    width: 43%;
}

span.sent{
    color: #70e000;
}

#contact hr {
    width: 1px;
    height: 710px;
    background-color: var(--secondary-color);
}

.picto-coords > p:not(:last-of-type){
    margin-bottom: 1.5rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-row>.form-group {
    display: inline-block;
    width: 48%;
}

.form-base [type="submit"] {
    background-color: var(--quatrieme-couleur) !important;
    color: #fff !important;
    width: 160px;
    height: 60px;
    font: normal normal 600 18px/29px Poppins;
}

.form-base [type="submit"]:hover{
    opacity: .5;
}

.centrer-button {
    text-align: center;
    padding-top: 20px;
    padding-right: 40px;
    padding-left: 40px;
    padding-bottom: 40px;
}


.centrer {
    text-align: center;
}

.form-base label {
    display: block;
    margin-bottom: 3px;
    color: #fff;
}

/********* FOOTER *********************/
/**************************************/
footer div#open {
    background-color: var(--primary-color);
    color: #FFF;
}

footer div#open h2,
footer div#open h3,
footer div#open a {
    color: #FFF;
}

footer h2 {
    margin: 20px 0;
}

.close-footer{
    cursor: pointer;
    background-color: transparent;
    border: 0;
}

/********* MEDIA QUERIES ***************/
/**************************************/
/*@media(max-width:1666px) {
    #section-1 h1::before{
      display: none;
    }
}*/

@media(max-width:1250px) {}

@media(max-width:992px) {
    .div-parent {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .div-parent>div:first-of-type {
        width: 100%;
    }

    .div-parent>div:last-of-type {
        width: 100%;
    }

    #section-1 {
        padding-top: 2rem;
        padding-bottom: 2rem;
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .div-en-savoir-plus {
        padding-bottom: 0px;
        margin-top: 30px;
    }

    .presentation-foca-propose {
        flex-direction: column;
        gap: 2rem;
    }

    article {
        width: 100%;
    }

    article img {
        width: 200px;
        height: 130px;
        padding: 15px;
    }

    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .container-fluid {
        padding-left: 0rem;
        padding-right: 0rem;
    }

    .text-4 {
        font-size: 35px;
        padding-bottom: 2rem;
        padding-top: 2rem;
        text-align: center;
    }

    .l-row {
        padding-bottom: 2rem;
    }

    .py-2 {
        padding-bottom: 0rem;
        padding-top: 0rem;
    }

    .presentation-text {
        margin-left: 0px;
        margin-right: 0px;
    }

    .l-row .l-col-12 {
        margin: 0;
    }

    .contact-us {
        margin-top: 20px;
    }

    .triangle {
       display: none;
     }

    #contact hr {
        display: none;
    }

    .contact-col {
        width: 100%;
    }

    .fleche {
        height: 80px;
    }
    .presentation-foca-propose.padding{
        padding: 0;
    }

    .contact-coords {
        margin: unset;
    }

    .presentation-textes {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .contact-coords {
        display: flex;
        align-items: center;
        gap: 2rem;
        justify-content: space-between;
        margin: auto;
    }

    .retour-ligne {
        font: normal normal 200 35px/15px Poppins;

    }
    .article-text{
        position: static;
        margin-top: 40px;
        max-width: 360px;
    }

}

@media(max-width:820px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media(max-width:800px) {
    .contact-coords {
        display: unset;
        align-items: center;
        gap: 1rem;
        justify-content: space-between;
        width: 80.5%;
        margin: auto;
    }

    .text-4 {
        padding-bottom: 2rem;
        padding-top: 2rem;
        text-align: start;
    }
}

@media(max-width:575px) {
    .text-4 {
        padding-bottom: 2rem;
        padding-top: 2rem;
        font-size: 30px;
    }

    article p {
        font-size: 16px;
    }

    .titre-article {
        font-size: 28px;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    article img {
        width: 170px;
        height: 110px;
        padding: 10px;
    }

    .titre {
        font-size: 32px;
        padding-top: 3rem;
    }

    .presentation-text p {
        font-size: 16px;
    }

    .div-en-savoir-plus {
        text-align: start;
    }

    .titre-foca {
        font-size: 28px;
        padding-bottom: 2rem;
    }

    #contact p,
    #contact a {
        font-size: 16px;
    }

   /* .hero-content {
        height: 65vh;

    }*/

    .form-row>.form-group {
        width: 100%;
    }

    .retour-ligne {
        font: normal normal 200 32px/15px Poppins;

    }


}






/* The Modal (background) */
.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close,
.close2 {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus,
.close2:hover,
.close2:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

input[type="checkbox"] {
    margin: .3em 10px 0 0 !important;
}

input[type="submit"] {
    background-color: var(--secondary-color) !important;
    color: var(--primary-color) !important;
    border: var(--secondary-color) !important;
}