/*  ================= CSS utilisés dans toutes les pages ========== 
*
*
*/


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --blanc: white;
    --opaque: #35b5a3;
    --opaque2: #35a99d;
    --bleu: #00a0dd;
    --gris: #514a4a;
    --noir:#000000;
    --gris-fonce:#100f0f;
    font-family: 'Ubuntu', sans-serif;
}


body, html{
    position: relative;
    width: 100%;
    font-size: 16px;
    overflow-x: hidden !important;
}


a {
    display: inline-block;
    text-decoration: none;
}

a, .bouton, .sendForm{
    transition: color 0.4s, background-color 0.4s;
    width: max-content;
} 

p{
    color: ;
}


.flex-switch { 
    display: flex;
    flex-direction: column; /* -- Se change en row après -- */
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-row{
    display: flex;
}

.container{
    width: 90%;
    margin: 0  auto;
}


img {
    width: 100%;
    height: auto;
    display: block;
    max-width: max-content;
}

form #name{
    display: none;
}



.btn-1{
    background-color: var(--opaque);
    color: var(--blanc);
    padding: 10px 10px;
    border-radius: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: color 0.4s, background-color 0.4s;
}

.btn-2 {
    background-color: var(--opaque);
    color: var(--blanc);
    padding: 10px 71px;
    border-radius: 14px;
    font-weight: 500;
    border: 1px solid transparent;
    transition: color 0.4s, background-color 0.4s;
}

.btn-1:hover,.btn-2:hover{
    background-color: var(--gris-fonce);
    color: var(--blanc);
    border: 1px solid var(--blanc);
}


input[type="text"],textarea {
    width: 100%;
    padding: 12px 9px;
    font-weight: 500;
    font-size: 0.9em;
}

form ::placeholder{
    font-weight: 500;
    font-size: 1em;
}

input,textarea{
    font-family: inherit;
    font-size: inherit;
}

/*********** 

    MAIN CSS  

************/


li {
    list-style: inside;
    list-style-type: none;
}



.banner{
    position: relative;
}

.banner .banner-content{
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.banner-background img{
    object-fit: cover;
    max-width: 100%;
}

.grid-container{
    display: grid;
}

/*  ============ HEADER ================ */

header{
    background-color: #000000;
    color: var(--blanc);
}

header .container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 18px;
    padding-top: 10px;
}

header strong{
    font-size: 1.1em;
    margin-top: 14px;
}


header .col-2{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 294px;

}

header a{
    margin-top: 14px;
}


/*   =========== TYPOGRAPHY ============ */

.btn-1,.btn-2 {
    font-size: 1em;
}

.lang-link{
    font-size: 1.15em;
    margin-left: 10px;
    color: white;
}

.section1 h1{
    font-size: 1.8em;
}

.section2 .row-2 .col-1 h2 ,.section3 h2, .section4 .row-1 strong{
    font-size: 1.5em;
}

.section2 .row-1 strong, .section3 .row-2 .services-container h3, .section4 .row-2 h3{
    font-size: 1.4em;
}

.section3 .row-2 .services-container h4{
    font-size: 1.05em;
}



/*   =========== FIN TYPOGRAPHY ============ */



/*   =========== SECTION 1 ============= */

.section1 .banner-background img{
    height: 505px;
}

.section1 .banner-content{
    text-align: left;
    top: 31%;
}

.section1 h1{
    color: var(--blanc);
    max-width: 505px;
}

.section1 picture:not(.banner-background){
    align-self: flex-end;
}

.section1 picture:not(.banner-background)  img{
    max-width: 182px;
    margin-bottom: -217px;
}


.section1 .employee{
    position: absolute;
    right: 44px;
    bottom: -59px;
    width: 29%;
    min-width: 200px;
}

/*   =========== SECTION 2 ============= */

.section2{
    background-color: var(--gris-fonce);
}

.section2 > .row-1 .container,.section2 > .row-2 .container{
    max-width: 1447px;
}

.section2 .row-1 .container{
    width: 90%;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 25px;
}
.section2 .grid-container{
    background-color: var(--noir);
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    z-index: 1;
    position: relative;
}
.section2 .grid-container > div {
    padding: 10px 18px;
}

.section2 .grid-container > div .row-1 {
    align-items: center;
}


.section2 .row-1 strong{
    margin-left: 12px;
}

.section2 .row-1 p{
    margin-top: 10px;
}

.section2 > .row-2{
    padding-top: 15px;
    padding-bottom: 72px;
}

.section2 > .row-2 .btn-1{
    margin-top: 17px;
}

.section2 > .row-2 p{
    margin-top: 10px;
}

.section2 > .row-2 .col-2{
    margin-top: 17px;
}

.section2 strong{
    font-weight: 500;
}

.section2 h2{
    font-weight: 700;
    color: var(--opaque2);
}

.section2 strong, .section2 p{
    color: var(--blanc);
}



/*   =========== SECTION 3 ============= */

.section3 .row-1 hr{
    width: 100%;
    height: 26px;
    border: unset;
    background: linear-gradient( 90deg, #17adc8,#28b7b8,#a0f7e7,#4de1f9,#00a0dd, #35bead);
    animation: gradient 6s ease infinite;
    background-size: 400% 400%;
}

@keyframes gradient{ 
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.section3 h2{
    margin-top: 26px;
    text-align: center;
}

.section3 .row-2 .services-container {
    padding-bottom: 35px;
}

.section3 .row-2 ul{
    margin-left: 16px;
}

.section3 .row-2 li::before{
    padding-right: 3px;
    margin-left: -16px;
}

.section3 .row-2 .col-1 li::before{
    content: url("../images/list-opaque.png");
}

.section3 .row-2 .col-2 li::before{
    content: url("../images/list-bleu.png");
}

.section3  .row-2 .services-container > div{
    margin-top: 28px;
}

.section3  .row-2 .services-container  h3{
    margin-top: 11px;
}

.section3  .row-2 .services-container  h4{
    margin-top: 19px;
}

.section3  .row-2 .services-container  p{
    margin-top: 13px;
}

.section3  .row-2 .services-container  ul{
    margin-top: 10px;
}

.section3  .row-2 .services-container  ul li{
    margin-top: 8px;
}


.section3 .col-1 h3{
    color: #35bead;
}

.section3 .col-2 h3{
    color: var(--bleu);
}

.section3 h4{
    color: var(--noir);
}



/*   =========== SECTION 4 ============= */

.section4 {
    background-color: var(--gris-fonce);
    margin-top: 26px;
}

.section4 .row-1 {
    padding-top: 26px;
    text-align: center;
}

.section4 .row-1 strong{
    color: var(--opaque2);
}

.section4 .row-2.grid-container{
    grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
    grid-column-gap: 101px;
    grid-row-gap: 24px;
    width: 89%;
    margin: auto;
    margin-top: 39px;
}


.section4 .row-2 .flex-row {
    align-items: center;
}

.section4 .row-2 h3{
    color: #808080;
    margin-left: 13px;
    font-weight: 500;
}

.section4 .row-2 p{
    color: var(--blanc);
    margin-top: 20px;
}

.section4 .row-3{
    margin-top: 45px;
}

.section4 .row-3 h2{
    color: var(--opaque2);
}

.section4 .row-3 .title-container{
    justify-content: center;
    align-items: center;
}

.section4 .row-3 hr{
    background-color: var(--blanc);
    color: var(--blanc);
    height: 2px;
    flex: 1;
}
.section4 .row-3 .title-container h2{
    padding: 0px 18px;
}

.section4 .row-3 .grid-container{
    width: 95%;
    margin: auto;
    grid-template-columns: repeat(auto-fit,minmax(280px,100%));
    grid-column-gap: 42px;
    grid-row-gap: 26px;
}


.section4 .row-3 .form-container{
    margin-top: 25px;
}

.section4 .row-3 .radio-container{
    color: #808080;
    grid-column: 1 /-1;

}

.section4 .row-3 .radio-container div{
    margin-top: 5px;
}

.section4 .row-3 .submit-container .recaptcha-container,.section4 .row-3 .submit-container{
    grid-column: 1 /-1;
}

.section4 .row-3 .radio-container input{
    margin-right: 8px;
}

.radio-container p{
    margin-bottom: 10px;
    font-size: 1.2em;
}

.radio-container p,.radio-container label{
    font-weight: 500;
}

/*   =========== FOOTER ============= */

footer{
    background-color: var(--gris-fonce);
    color: var(--blanc);
}

footer a{
    color: var(--blanc);
}

footer a:hover{
    color: var(--opaque);
}

footer .row-1 {
    padding-top: 47px;
}

footer .row-1 .flex-row{
    align-items: center;
}

footer .row-1 a{
    margin-left: 10px;
    font-weight: 500;
}

footer .logo{
    margin-bottom: 19px;
    margin-top: 10px;
}

footer .row-1 .img-container{
    width: 57px;
}

footer .row-1 .img-container img{
    width: 71%;
}

footer .row-1 .col-1{
    order: 1;
    margin-top: 13px;
}

footer .row-1 .col-2 {
    order: 0;
    margin-bottom: 20px;
}

footer .row-2{
    padding-top: 33px;
    padding-bottom: 12px;
}


@media only screen and (min-width: 768px) {



    
}


@media only screen and (min-width: 1024px) {

    .flex-switch{
        flex-direction: row;
    }
    
    header .container{
        padding-top: 14px;
        padding-bottom: 29px;
    }


    header .col-2 {
        max-width: unset;
        flex: 1;
        flex-direction: column;
        align-items: flex-end;
        justify-content: flex-end;
        margin-left: 50px;
    }

    /*   =========== TYPOGRAPHY ============ */

    .btn-1, .btn-2{
        font-size: 1.2em;
    }

    header strong{
        font-size: 1.22em;
    }

    header .btn-1{
        font-size: 1.2em;
    }

    .section2 .row-1 strong,.section3 .row-2 .services-container h3, .section4 .row-2 h3,.section4 .row-3 h2{
        font-size: 1.8em;
    }
    .section2 .row-2 .col-1 h2 {
        font-size: 2.2em;
    }

    .section3 h2{
        font-size: 2.9em;
    }


    .section4 .row-1 strong{
        font-size: 2.9em;
    }

    /*   =========== FIN TYPOGRAPHY ========  */


    /*   =========== SECTION 1 ============= */

    .banner-background img{
        height: unset;
        max-width:unset;
    }

    .section1 .banner-background img{
        height: unset;
    }
    .section1 .banner-content{
        width: 84%;
        text-align: left;
        display: flex;
        justify-content: space-between;
        top: 50%;
    }

    .section1 .banner-content img{
        max-width: max-content;
    }

    .section1 h1{
        font-size: 3em;
        max-width: 616px;
        align-self: flex-end;
    }

    .section1 span{
        display: block;
    }

    .section1 .employee{
        width: 30%;
    }
    

    /*   =========== SECTION 2 ============= */

    .section2 {
        padding-top: 61px;
    }

    .section2 .row-1 .container{
        background-color: var(--noir);
        padding-top: unset;
        padding-bottom: 69px;;
    }

    .section2 .grid-container{
        width: 87%;
        margin: auto;
        grid-template-columns: repeat(auto-fit,minmax(300px,309px));
        justify-content: space-between;
    }

    .section2 .grid-container > div{
        padding: unset;
    }

    .section2 .row-1 strong{
        margin-left: 16px;
    }

    .section2 .row-1 p{
        margin-top: 22px;
    }

     
    .section2 > .row-2{
        justify-content: space-between;
        margin-top: 54px;
    }
   
    .section2 > .row-2 .flex-switch{
        justify-content: space-between;
    }

    .section2 > .row-2 .col-1{
        width: 70%;
        max-width: 767px;
        padding-right: 20px;
    }

    .section2 > .row-2 .btn-1{
        margin-top: 46px;
    }

    .section2 > .row-2 .col-2{
        width: 50%;
        margin-top: unset;
    }

    .section2 > .row-2 p{
        margin-top: unset;
        margin-bottom: 10px;
    }


    /*   =========== SECTION 3 ============= */

    .section3 h2{
        margin-top: 68px;
    }

    .section3 .row-2 .services-container{
        justify-content: space-between;
        padding-bottom: 59px;
    }

    .section3 .row-2 .services-container > div{
        width: 46%;
        max-width: 793px;
        margin-top: 53px;
    }
    .section3 .row-2 .services-container h3{
        margin-bottom: 36px;
    }

    .section3 .row-2 .services-container h4{
        margin-top: 23px;
    }

    .section3 .row-2 .services-container p{
        margin-top: 19px;
    }

    .section3 .row-2 .services-container ul{
        margin-top: 19px;
    }


    /*   =========== SECTION 4 ============= */

    .section4 .row-1{
        padding-top: 36px;
    }

    .section4 .row-2.grid-container{
        margin-top: 62px;
    }

    .section4 .row-3{
        margin-top: 71px;
    }

    .section4 .row-3 .title-container h2{
        font-weight: 600;
    }

        
    .section4 .row-3 .grid-container{
       grid-template-columns: repeat(auto-fit,minmax(383px,1fr));

    }

    .section4 .row-3 .grid-container .textarea{
        grid-column: 1 /-1;
    }
    
    .section4 .row-3 .radio-container{
        align-items: center;
    }
    .section4 .row-3 .radio-container div{
        margin-top: unset;
    }
    .section4 .row-3 .radio-container p{
        margin-bottom: unset;
        margin-right: 17px;
    }
    
    .section4 .row-3 .radio-container label{
        font-size: 1.1em;
    }

    .section4 .row-3 .radio-container input{
        margin-left: 20px;
    }


    /*   =========== FOOTER ============= */

    footer .logo{
        margin-top: unset;
        margin-bottom: 3px;
    }
    
    footer .row-1 {
        justify-content: space-evenly;
        max-width: 1395px;
        margin: auto;
    }

    footer .row-1 .col-1, footer .row-1 .col-2{
        order: unset;
    }

    footer .row-1 .col-2{
        margin-left: -74px;
    }

    footer .row-1 a{
        font-size: 1.7em;
        margin-left: 28px;
    }

    footer .row-1 .img-container,footer .row-1 .img-container img{
        width: unset;
    }

    footer .row-2{
        text-align: center;
        padding-top: 3px;
        padding-bottom: 52px;
      }

}
@media only screen and (min-width: 1550px) {

    /*  ======= TYPOGRAPHY ======= */

    header strong{
        font-size: 1.6em;
    }

    .section1 h1{
        font-size: 3.8em;
        max-width: 748px;
    }

    .section2 .row-2 .col-1 h2 {
        font-size: 2.9em;
    }

    /*  ======= FIN TYPOGRAPHY ======= */



    header .col-2{
        justify-content: space-between;
        flex-direction: row;
    }

    .section1 .employee{
        right: 19%;
    }

    .section2 > .row-2 .col-2{
        width: 38%;
    }

    .section3 .row-2 .services-container > div{
        width: 49%;
    }

    .section4 .row-3 .grid-container{
        grid-column-gap: 52px;
    }
}