@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,300;0,400;0,500;0,700;1,100;1,300;1,400;1,500;1,700&display=swap');

:root{
    --main-color: #81bb18;
    --green-opacity: rgba(26, 218, 26, 0.1);
    --main-color-second: #1a405f;
    --main-orange: orange;
    --main-violet: rgb(141, 18, 203);
    --main-red: red;

    --color-f5: #f5f5f5;
    --color-f7: #f7f7f7;
    --color-db: #dbdbdb;
    --color-eb: #ebebeb;
    --color-9b: #9b9b9b;
    --color-text: #1d2b4c;
    --color-text-p: #5b6a87;

    --color-footer-p: #c9c9c9;

    --bottom: #dee2e6;

    --white: #ffffff;
    --white-1: rgba(255,255,255,0.1);
    --white-2: rgba(255,255,255,0.2);
    --white-3: rgba(255,255,255,0.3);
    --white-4: rgba(255,255,255,0.4);
    --white-5: rgba(255,255,255,0.5);
    --white-6: rgba(255,255,255,0.6);
    --white-7: rgba(255,255,255,0.7);
    --white-8: rgba(255,255,255,0.8);
    --white-9: rgba(255,255,255,0.9);

    --dark-1: rgba(0,0,0,0.1);
    --dark-2: rgba(0,0,0,0.2);
    --dark-3: rgba(0,0,0,0.3);
    --dark-4: rgba(0,0,0,0.4);
    --dark-5: rgba(0,0,0,0.5);
    --dark-6: rgba(0,0,0,0.6);
    --dark-7: rgba(0,0,0,0.7);
    --dark-8: rgba(0,0,0,0.8);
    --dark-9: rgba(0,0,0,0.9);
    --dark-other: rgba(44, 44, 44, 0.1);
    --dark-navbarOne: #1b1b1b;

    --box-shadow: 0 2px 5px rgba(0,0,0,0.1);

}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}
html{
    overflow-x: hidden;
}


body{
    position: relative;
    margin: 0;
    padding: 0;
    /* overflow: hidden; */
}
.container{
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 15px;
}

p{
    font-size: 18px;
    color: var(--color-text-p);
}
 
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
li{
    list-style: none;
}
.max-90{
    max-width: 90%;
	margin: 0 auto; 
}
.max-width{
	max-width: 80%;
	margin: 0 auto;
}
.max-content{
    max-width: 70%;
    margin: 0 auto;
}

#header{
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
}
#header .header{
    height: 10vh;
    transition: .5s ease background-color;
}
#header .nav-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.brand{
    height: 8vh;
    width: 180px;
}
#header .nav-list ul{
    list-style: none;
    position: absolute;
    background: rgb(222, 222, 222);
    width: 100vw;
    height: 100vh;
    left: 100%;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
    overflow-x: hidden;
    transition: .5s ease left;
}
#header .nav-list ul.active{
    left: 0;
}
#header .nav-list ul li a{
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-text);
    padding: 10px 15px;
    margin-left: 5px;
    transition: .5s;
}
#header .nav-list ul li a.active,
#header .nav-list ul li a:hover{
    display: block;
    background: var(--main-color);
    transition: .5s;
    border-radius: 5px;
    color: white;
}
#header .nav-list ul a::after{
    content: attr(data-after);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: rgba(240, 248, 225, 0.021);
    transition: .5s;
    font-size: 10rem;
    letter-spacing: 50px;
    z-index: -1;
}
#header .nav-list ul li:hover a::after{
    transform: translate(-50%, -50%) scale(1);
    letter-spacing: initial;
}
#header .nav-list ul li:hover a{
    color: white;
}

#header .hamburger{
    height: 45px;
    width: 45px;
    display: inline-block;
    border: 3px solid var(--main-color);
    border-radius: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    cursor: pointer;
    transform: scale(.8);
}
#header .hamburger:after{
    position: absolute;
    content: '';
    height: 100%;
    width: 100%;
    border-radius: 10px;
    border: 3px solid var(--main-color);
    animation: hamburger_puls 1s ease infinite;
}
@keyframes hamburger_puls{
    0%{
        opacity: 1;
        transform: scale(1);
    }
    100%{
        opacity: 0;
        transform: scale(1.3);
    }
}
#header .hamburger .bar{
    height: 2px;
    width: 30px;
    position: relative;
    background: var(--main-color);
    z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    background-color: var(--main-color);
    transition: .3s;
    transition-property: top, bottom;
}
#header .hamburger .bar::after{
    top: 8px;
}
#header .hamburger .bar::before{
    bottom: 8px;
}
#header .hamburger.active .bar::after{
    top: 0;
}
#header .hamburger.active .bar::before{
    bottom: 0;
}

.header .rightOption{
    display: flex;
    align-items: center;
}

.header .rightOption ul{
    display: flex;
    align-items: center;
}
.header .rightOption ul li{
    list-style: none;
}
.header .rightOption ul li a{
    display: inline-block;
    height: 20px;
    width: 30px;
    text-align: center;
    line-height: 20px;
    border-radius: 3px;
    font-size: 1.5rem;
    color: white;
    border: none;
}
.header .rightOption ul li a.active{
    background: var(--white-3);
}
.header .rightOption select option{
    color: #222222;
}


/* FIN HEADER NAV */ 

/***************************************
        HOME CSS START 
***************************************/

#home{
    position: relative;
    height: 90vh;
    width: 100%;
}
.home{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5vh;
}
.home .block{
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 2rem;
    align-items: center;
}
.home .block .left{
    position: relative;
    width: 100%;
}
.home .block .left h1{
    color: #1d2b4c;
    font-size: 65px;
    font-weight: 400;
}
.home .block .left h2{
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    padding-top: 20px;
    color: #5b6a87;
}
.home .block .left p{
    padding-top: 20px;
    font-size: 19px;
    font-weight: 300;
    line-height: 25px;
    text-align: justify;
    color: #5b6a87;
}
.home .block .left p span{
    color: var(--main-color)!important;
    text-transform: uppercase!important;
    font-size: 20px!important;
    font-weight: 600;
}
.home .block .left .lien{
    display: flex;
    margin-top: 10px;
}
.home .block .left .lien a{
    display: inline-block;
    height: 59px;
    width: 200px;
    border: 10px;
    margin-right: 10px;
}
.home .block .right .img{
    position: relative;
    
}
.home .block .right img{
    margin-top: 10vh;
}
.home .block .right .hero-gradiant{
    position: absolute;
    top: -5vw;
    right: -5vw;
    z-index: -1;
    overflow: visible;
    width: 60vw;
    height: 50vw;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    -ms-grid-row-align: auto;
    align-self: auto;
    border-radius: 50px;
    background-image: linear-gradient(270deg,rgba(110, 243, 48, 0) 80%,rgba(110,243,48,.1)),linear-gradient(274deg,rgba(110, 243, 48, 0.25),rgba(243,246,252,0) 52%);
    color: #25a4fd;
    -o-object-fit: fill;
    object-fit: fill;
}


.effet-1{
    position: absolute;
    left: -5%;
    top: -5%;
    width: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    animation: movedelement 5s linear infinite;
}
.effet-1 div{
    height: 3px;
    width: 3px;
    background: var(--main-color);
    margin: 0 10px 10px;
}
@keyframes movedelement{
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
    25% {
        -webkit-transform: translate(10px,10px);
        transform: translate(10px,10px);
    }
    50% {
        -webkit-transform: translate(5px,5px);
        transform: translate(5px,5px);
    }
    75% {
        -webkit-transform: translate(10px,-5px);
        transform: translate(10px,-5px);
    }
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}
.effet-2{
    position: absolute;
    border-top: 50px solid transparent;
    border-left: 50px solid var(--main-color);
    left: 30%;
    bottom: 10%;
    animation: spin 15s linear infinite;
}
.effet-2:before{
    content: '';
    border-top: 50px solid transparent;
    border-left: 50px solid var(--main-color);
    position: absolute;
    opacity: 0.5;
    left: -55px;
    top: -45px;
}
@keyframes spin{
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.index-right{
    position: absolute;
    right: 0;
    top: -10%;
    z-index: -1;
    opacity: 0.5;
}
.index-right img{
    height: 110vh;
}

/*********** END HOME ******************/


/*******************************************
        POURQUOI NOUS CHOISIR CSS STYLE 
*******************************************/

#pourquoi-nous-choisir{
    padding-top: 50px;
    padding-bottom: 10px;
}
.pourquoi-nous-choisir .block{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
    align-items: center;
}
.pourquoi-nous-choisir .block .left h1{
    font-size: 40px;
    color: var(--main-color);
    font-weight: 400;
    padding-bottom: 10px;
}
.pourquoi-nous-choisir .block .left h2{
    font-size: 18px;
    font-weight: 500;
    text-align: justify;
    color: var(--color-text);
}
.pourquoi-nous-choisir .block .left .content{
    margin-top: 40px;
    margin-left: 20px;
}
.pourquoi-nous-choisir .block .left .content .item{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.pourquoi-nous-choisir .block .left .content .item .icon i{
    color: var(--main-color);
    font-size: 18px;
}
.pourquoi-nous-choisir .block .left .content .item .text{
    margin-left: 18px;
}
.pourquoi-nous-choisir .block .left .content .item .text p{
    font-size: 16px;
    font-weight: 300;
    color: var(--color-text-p);
}

.pourquoi-nous-choisir .block .right .img img{
    border: 0;
    height: 420px;
    max-width: 100%;
    vertical-align: middle;
    display: inline-block;
    border-radius: 10px;
}


/******** END POURQUOI NOUS CHOISIR *******/


/******************************************
    FONCTIONNALITE START 
******************************************/

#fonctionnalite{
    position: relative;
    padding-top: 50px;
    padding-bottom: 80px;
}
.fonctionnalite .block{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}

.fonctionnalite .block .left .item{
    position: relative;
    width: 400px;
    height: 300px;
    margin: auto;
    border-radius: 5px;
    background-color: transparent;
    box-shadow: 0 16px 50px 0 rgba(26,39,81,.1);
}
.fonctionnalite .block .left .item .img{
    position: relative;
    width: 100%;
    height: 100%;
}
.fonctionnalite .block .left .item img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 500px;
    width: 250px;
    object-fit: cover;
}
.fonctionnalite .block .left .hero-corner{
    position: absolute;
    left: -3px;
    top: -3px;
    width: 100px;
    height: 100px;
}
.fonctionnalite .block .left .hero-corner.hero-corner-top-right {
    left: auto;
    right: -3px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.fonctionnalite .block .left .hero-corner.hero-corner-bottom-left {
    left: -3px;
    top: auto;
    bottom: -3px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}
.fonctionnalite .block .left .benefit-line-1 {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 6px;
    border-radius: 5px;
    background-color: var(--main-color);
}
.fonctionnalite .block .left .benefit-line-2 {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6%;
    height: 100%;
    border-radius: 5px;
    background-color: var(--main-color);
  }

.fonctionnalite .block .right h1{
    font-size: 40px;
    color: var(--main-color);
    font-weight: 500;
    padding-bottom: 30px;
}
.fonctionnalite .block .right h2{
    font-size: 14px;
    color: var(--dark-6);
    font-weight: 500;
    padding-bottom: 10px;
}
.fonctionnalite .block .right p{
    padding-bottom: 20px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 300;
    color: var(--color-text-p);
}
.fonctionnalite .block .right .item{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.fonctionnalite .block .right .item .icon i{
    color: var(--main-color);
    padding-right: 15px;
}
.fonctionnalite .block .right .item .text p{
    padding: 0!important;
}
.fonctionnalite .block .right p span{
    font-weight: 600!important;
}
.fonctionnalite .block .right a{
    display: block;
    height: 50px;
    width: 150px;
    line-height: 50px;
    text-align: center;
    border-radius: 5px;
    background: var(--main-color);
    font-size: 16px;
    color: var(--white);
    border: 1px solid var(--main-color);
    transition: all 0.3s linear;
}
.fonctionnalite .block .right a:hover{
    color: var(--main-color);
    background: transparent;
}

/******** END FONCTIONNALITE *******/


/***************************************
        A-PROPOS SECTION CSS STYLE 
****************************************/

#aproposSection{
    padding-top: 50px;
    padding-bottom: 100px;
}
.aproposSection .block{
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 2rem;
}
.aproposSection .block .left{
    position: relative;
}
.aproposSection .block .left .experience{
    position: absolute;
    top: 50px;
    left: -65px;
    width: 130px;
    height: auto;
    background: var(--main-color);
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 10px;
}
.aproposSection .block .left .experience .icon{
    height: 50px;
    width: 50px;
    margin: 0 auto;
    /* margin-bottom: 30px; */
}
.aproposSection .block .left .experience .text h1 span{
    font-size: 3.5rem!important;
    font-weight: 600!important;
}
.aproposSection .block .left .experience h1{
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3rem;
    text-align: center;
    color: var(--white);
}
.aproposSection .block .left .img{
    height: 550px;
    border-radius: 10px;
    overflow: hidden;
}
.aproposSection .block .left .imgLeft{
    position: absolute;
    width: 300px;
    height: 250px;
    bottom: -40px;
    right: -75px;
    border-radius: 10px;
}
.aproposSection .block .left .imgLeft img{
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.09);
}
.aproposSection .block .right{
    padding-left: 75px;
}
.aproposSection .block .right .title h1{
    font-size: 1.5rem;
    color: var(--main-color);
    padding-bottom: 10px;
}
.aproposSection .block .right .title h2{
    font-size: 3rem;
    color: var(--color-text);
    padding-bottom: 15px;
}
.aproposSection .block .right .title p{
    padding-bottom: 20px;
    line-height: 24px;
    text-align: justify;
}
.aproposSection .block .right .title span{
    font-weight: 600;
}
.aproposSection .block .right .blockItem{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    flex-wrap: wrap;
}
.aproposSection .block .right .blockItem .item{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.aproposSection .block .right .blockItem .icon{
    width: 60px;
}
.aproposSection .block .right .blockItem .content h1{
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-text);
}
.aproposSection .block .right .lien{
    margin-top: 40px;
}
.aproposSection .block .right .lien a{
    padding: 15px 20px;
    background: var(--main-color);
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    color: var(--white);
}

/*******************************************
        SERVICE SECTION CSS STYLE 
*******************************************/

#service{
    padding-top: 50px;
    padding-bottom: 80px;
    background: #f7f7f7;
}
.service .title{
    width: 500px;
    text-align: center;
    margin: 0 auto;
}
.service .title h1{
    font-size: 40px;
    font-weight: 500;
    color: var(--main-color);
}
.service .title p{
    padding-top: 20px;
    width: 500px;
    font-weight: 300;
    font-size: 16px;
    line-height: 27px;
    color: var(--color-text-p);
}

.service .block{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 50px;
}
.service .block .item{
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.09);
}
.service .block .item .icon{
    width: 128px;
    height: 128px;
    margin: 0 auto;
}
.service .block .item .text h1{
    font-size: 0.8rem;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-text);
    padding-top: 30px;
}
.service .lien{
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service .lien a{
    border: 2px solid var(--main-color);
    color: var(--white);
    padding: 15px 20px;
    background: var(--main-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 5px;
}
.service .lien a:nth-child(2){
    color: var(--main-color);
    background: transparent;
    margin: 0 10px;
}

/**************************************
    WORLD SECTION START
***************************************/

#world{
    position: relative;
    width: 100%;
    padding-top: 180px;
    padding-bottom: 100px;
}
.world .title{
    margin-bottom: 50px;
}
.world .title h1{
    font-size: 2rem;
    color: var(--main-color);
    text-align: center;
    padding-bottom: 10px;
}
.world .title h2{
    font-size: 3rem;
    text-align: center;
    color: var(--color-text);
} 
.world .block{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.world .block .item{
    padding: 20px;
    text-align: center;
}
.world .block .item h1{
    font-size: 4rem;
    font-weight: 300;
}
.world .block .item:nth-child(1) h1{
    color: var(--main-red);
}
.world .block .item:nth-child(2) h1{
    color: var(--main-orange);
}
.world .block .item:nth-child(3) h1{
    color: var(--main-violet);
}
.world .block .item h2{
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark-6);
}
.world .lien{
    display: flex;
    align-items: center;
    justify-content: center;
}
.world .lien a{
    padding: 20px 30px;
    border-radius: 10px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.4s ease-in-out;
}
.world .lien a:hover{
    background: var(--main-color);
    color: var(--white);
}

/********** END WORLD SECTION *************/

/*******************************************
        PARTNER SECTION CSS STYLE 
*******************************************/

#partnerbelieve{
    padding-top: 80px;
    padding-bottom: 80px;
}
.partnerbelieve .title h1{
    font-size: 50px;
    font-weight: 500;
    color: var(--main-color);
    text-align: center;
}
.partnerbelieve .title p{
    padding-top: 10px;
    padding-bottom: 20px;
    text-align: center;
    font-weight: 300;
    font-size: 20px;
    line-height: 27px;
    color: var(--color-text-p);
}
.partnerbelieve .item{
    border: 1px solid var(--bottom);
    border-radius: 5px;
    box-shadow: rgba(13, 21, 55, 0.06) 0 5px 50px;
    background: var(--white);
    transition: all 0.3s linear;
}
.partnerbelieve a{
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.3s linear;
}
.partnerbelieve a:hover .item{
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.07), 0 4px 6px -2px rgba(0,0,0,.05)
}
.partnerbelieve .item .img{
    height: 200px;
    padding: 10px;
}
.partnerbelieve .item .img img{
    height: 100%;
    width: 100%;
}
.partnerbelieve .item h1{
    padding-top: 30px;
    font-size: 25px;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
}

/*********** END PARTNER SECTION **********/

/*******************************************
        FOOTER CSS STYLE 
*******************************************/

#footer{
    padding-top: 100px;
    background: #f7f7f7;
}

.footer{
    display: grid;
    grid-template-columns: 28% 28% 18% 18%;
    gap: 2rem;
    border-bottom: 1px solid var(--bottom);
    padding-bottom: 50px;
}
.footer .title{
    margin-bottom: 30px;
}
.footer .title h1{
    font-size: 30px;
    font-weight: 500;
    color: var(--color-text);
}

.footer .itemfooter .titleLogo{
    margin-bottom: 20px;
}
.footer .itemfooter .content .itemL{
    display: grid;
    grid-template-columns: 15% 1fr;
    margin-bottom: 20px;
}
.footer .itemfooter .content .itemL .icon i{
    font-size: 25px;
    color: var(--color-text-p);
}
.footer .itemfooter .content .itemL .text p,
.footer .itemfooter .content .itemL .text p a{
    color: var(--color-text-p);
    font-weight: 300;
}

.footer .itemfooter .content .a{
    margin-bottom: 20px;
}
.footer .itemfooter .content .a a{
    color: var(--color-text-p);
    transition: all 0.3s linear;
    font-size: 16px;
    font-weight: 300;
}
.footer .itemfooter .content .a .fa-circle-o{
    font-size: 12px;
}
.footer .itemfooter .content .a a:hover{
    color: var(--color-text);
    font-weight: 400;
    padding-left: 10px;
}

.footer .itemfooter .reseauxSociaux{
    display: flex;
}
.footer .itemfooter .reseauxSociaux .item{
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border: 1px solid var(--bottom);
    margin-right: 10px;
}
.footer .itemfooter .reseauxSociaux .item a{
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.3s linear;
}
.footer .itemfooter .reseauxSociaux .item i{
    color: var(--color-text-p);
    font-size: 16px;
}
.footer .itemfooter .reseauxSociaux .item a:hover{
    background: var(--color-text);
}
.footer .itemfooter .reseauxSociaux .item a:hover i{
    color: var(--white);
}

.footerbottom{
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
}
.footerbottom p{
    text-align: center;
    color: var(--color-text-p);
}
.footerbottom p a{
    color: var(--main-color);
}
/************** END FOOTER *****************/


/*==========================================
        PAGE FONCTIONNALITE
===========================================*/

#enteteFonct{
    padding-top: 100px;
    padding-bottom: 50px;
}
.enteteFonct .title h1{
    font-size: 3.5rem;
    font-weight: 500;
    text-align: center;
    color: var(--main-color);
}

.itemFonct{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}
.itemFonct .left{
    width: 500px;
}
.itemFonct .left h1{
    font-size: 2rem;
    font-weight: 500;
    color: var(--main-color);
    padding-bottom: 30px;
}
.itemFonct .left h1 span{
    font-weight: 600!important;
}
.itemFonct .left p{
    font-size: 18px;
    color: var(--color-text-p);
    font-weight: 300;
    padding-bottom: 15px;
}
.itemFonct .right .img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 500px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.itemFonct .right .img img{
    height: 500px;
    width: 250px;
}

#bienFait{
    padding-top: 30px;
    padding-bottom: 30px;
}
.bienFait .title h1{
    font-size: 50px;
    font-weight: 500;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
    text-transform: uppercase;
}
.bienFait .block{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    flex-wrap: wrap;
}
.bienFait .block .item{
    padding: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    background: #f4ffe0;
}
.bienFait .block .item .icon{
    height: 80px;
    width: 80px;
    margin: 20px auto;
}
.bienFait .block .item h1{
    font-size: 1.3rem;
    font-weight: 400;
    padding-bottom: 20px;
    color: var(--dark-8);
}
.bienFait .block .item p{
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    color: #575757;
}

#faq{
    padding-top: 30px;
    padding-bottom: 30px;
}
.faq .title{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-end;
}
.faq .title .item h1{
    font-size: 4rem;
}
.faq .title .item h1 span{
    color: var(--main-color);
}
.faq .title .item:nth-child(2){
    text-align: right;
}
.faq .title .item a{
    font-size: 16px;
    font-weight: 500;
    color: var(--dark-7);
    display: inline;
    text-decoration: underline;
    text-align: right;
}

/********* END PAGE FONCTIONNALITE *********/


/*===========================================
        PAGE APROPOS
============================================*/

.barnierePage{
    padding-top: 10vh;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: center;
}
.barnierePage .title h1{
    color: var(--main-color);
    font-size: 5rem;
}
.barnierePage .title p{
    color: var(--color-text-p);
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    padding-top: 30px;
}

#nos-professeurs{
    background: white;
    padding-top: 100px;
    padding-bottom: 100px;
}

.nos-professeurs{
    display: flex;
    flex-direction: column;
}
.nos-professeurs .block-nos-professeurs h1{
    color: var(--main-color);
    font-size: 2.5rem;
    font-weight: 500;
    padding-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
}
.nos-professeurs .block-nos-professeurs p{
    color: var(--color-text-p);
    font-size: 18px;
    line-height: 1.3rem;
    font-weight: 300;
    text-align: justify;
    text-align-last: center;
    padding-bottom: 40px;
    max-width: 800px;
    margin: 0 auto;
}
.nos-professeurs .block-nos-professeurs-item .block{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.nos-professeurs .block-nos-professeurs-item .block .item{
    height: 450px;
    overflow: hidden;
    cursor: pointer;
    
}
.nos-professeurs .block-nos-professeurs-item .block .item .img{
    width: 100%;
    height: 350px;
    border-radius: 5px;
    overflow: hidden;
}
.nos-professeurs .block-nos-professeurs-item .block .item .img img{
    transition: all 0.5s linear;
}
.nos-professeurs .block-nos-professeurs-item .block .item:hover img{
    transform: scale(1.1);
}

.nos-professeurs .block-nos-professeurs-item .block .item .content{
    height: 100px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.5s linear;
}
.nos-professeurs .block-nos-professeurs-item .block .item:hover .content{
    background: var(--white);
    color: var(--main-color);
}
.nos-professeurs .block-nos-professeurs-item .block .item:hover .content h1,
.nos-professeurs .block-nos-professeurs-item .block .item:hover .content p{
    color: var(--main-color);
}
.nos-professeurs .block-nos-professeurs-item .block .item .content h1{
    color: var(--main-color);
    text-align: center;
    font-size: 1.4rem;
    font-weight: 500;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}
.nos-professeurs .block-nos-professeurs-item .block .item .content p{
    color: var(--color-text-p);
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
}


/*============ END PAGE APROPOS =============*/




/* =========================================
    PAGE CONTACT
===========================================*/

#contactPage{
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
}

#middleMail{
    padding-top: 50px;
    padding-bottom: 30px;
}
.middleMail{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.middleMail .item{
    border-radius: 5px;
    box-shadow: 0 5px 20px 0 rgba(210, 210, 245, 0.5);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.middleMail .item .icon i{
    font-size: 4rem;
    color: var(--main-color);
}
.middleMail .item .text{
    text-align: center;
    margin-top: 30px;
}
.middleMail .item .text h1{
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-9);
    text-align: center;
    padding-bottom: 20px;
}
.middleMail .item .text p{
    color: #575757;
    font-size: 16px;
    line-height: 22px;
}
.middleMail .item .text p span{
    font-weight: 500!important;
}
.middleMail .item .text p a{
    color: var(--main-color)!important;
    font-weight: 500!important;
}

.contactPage .block{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}


.contactPage .block .blockright{
    width: 100%;
}
.contactPage .block .field{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.contactPage .block .field p{
    font-size: 23px;
    color: #101010;
    font-weight: 500;
    margin-bottom: 5px;
}
.contactPage .block .field p span{
    color: red;
    padding-left: 3px;
    font-size: 23px;
    font-style: normal!important;
}
.contactPage .block .field span{
    font-style: italic;
    color: var(--dark-7);
    font-size: 14px;
}
.contactPage .block .field input{
    height: 50px;
    border-radius: 3px;
    border: 2px solid #ededed;
    background: #f8f8f8;
    font-size: 18px;
    padding-left: 10px;
    outline: none;
}
.contactPage .block .fields{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 30px;
    margin-bottom: 30px;
}
.contactPage .block .fields .item{
    display: flex;
    flex-direction: column;
}
.contactPage .block .fields p{
    font-size: 23px;
    color: #101010;
    font-weight: 500;
    margin-bottom: 5px;
}
.contactPage .block .fields p span{
    color: red;
    padding-left: 3px;
    font-size: 23px;
    font-style: normal!important;
}
.contactPage .block .fields span{
    font-style: italic;
    color: var(--dark-7);
    font-size: 14px;
}
.contactPage .block .fields input{
    height: 50px;
    border-radius: 3px;
    border: 2px solid #ededed;
    background: #f8f8f8;
    font-size: 18px;
    padding-left: 10px;
    outline: none;
}
.contactPage .block .field textarea{
    border-radius: 3px;
    height: 200px;
    border: 2px solid #ededed;
    background: #f8f8f8;
    font-size: 18px;
    padding: 10px;
    outline: none;
    resize: vertical;
}
.contactPage .block .bouton button{
    background: var(--main-color);
    font-size: 16px;
    color: white;
    padding: 15px 40px;
    border-radius: 3px;
    margin-top: 30px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0px 7px 15px 0px rgba(102, 244, 66, 0.3);
}


/******** FIN CONTACT PAGE **********************/


/* ============================================
        PAGE CONDITIONS D'UTILISATION
===============================================*/

#conditions{
    padding-top: 30px;
    padding-bottom: 50px;
}
.conditions h1{
    font-size: 2rem;
    color: var(--color-text);
    font-weight: 600;
    padding-bottom: 20px;
}
.conditions h2{
    font-size: 1.5rem;
    font-weight: 500;
    padding-bottom: 15px;
    color: var(--color-text);
}
.conditions h3{
    font-size: 1.2rem;
    color: var(--color-text);
    padding-bottom: 15px;
}
.conditions p{
    font-weight: 300;
    line-height: 24px;
    padding-bottom: 25px;
    text-align: justify;
}


/********* FIN CONDITIONS D'UTILISATION *********/

@media only screen and (min-width: 1200px){
    .max-width{
        max-width: 80%;
        margin: 0 auto;
    }
    #header{
        width: 100%;
    }
    #header .header{
        width: 100%;
    }
    #header .hamburger{
        display: none;
        width: 100%;
    }
    #header .nav-list ul{
        position: initial;
        display: block;
        height: 100%;
        width: 100%;
        width: fit-content;
        background-color: transparent;
    }
    #header .nav-list ul li{
        display: inline-block;
    }
    #header .nav-list ul li a{
        font-size: 1rem;
    }
    #header .nav-list ul a:after{
        display: none;
    }
}

@media(max-width : 920px){
    .max-width{
        max-width: 100%!important;
    }
    .max-90{
        max-width: 100%!important;
    }
    .max-content{
        max-width: 100%!important;
    }
    section{
        overflow: hidden!important;
    }

    #header .nav-list ul li{
        margin-bottom: 20px;
    }
    .brand{
        height: 150px;
        height: 8vh;
    }

    #home{
        position: relative;
        height: auto;
        margin-top: 10vh;
        padding: 10px;
    }
    .home .block{
        display: flex;
        flex-direction: column;
    }
    .home .block .left{
        padding: 0px;
    }
    .home .block .left .lien a{
        width: 50%;
        border-radius: 5px;
    }
    .home .block .left .lien a img{
        border-radius: 5px;
    }
    .home .block .right img{
        margin-top: 0;
    }
    .home .block .right .hero-gradiant{
        display: none;
    }
    .effet-1,
    .effet-2{
        display: none;
    }

    #pourquoi-nous-choisir{
        padding: 10px;
    }
    .pourquoi-nous-choisir .block{
        display: flex;
        flex-direction: column;
        gap: 0rem;
    }
    .pourquoi-nous-choisir .block .right .img img{
        height: 250px;
    }

    #fonctionnalite{
        padding-bottom: 0px;
    }
    .fonctionnalite .block{
        display: flex;
        flex-direction: column;
        margin-top: 50px;
        padding: 10px;
    }
    .fonctionnalite .block .left .item{
        width: 100%;
        border: 3px solid var(--main-color);
    }
    .fonctionnalite .block .left .hero-corner{
        display: none;
    }
    .fonctionnalite .right{
        margin-top: 80px;
    }

    #aproposSection{
        padding-bottom: 50px;
    }
    .aproposSection .block{
        display: flex;
        flex-direction: column;
        padding: 10px;
    }
    .aproposSection .block .left .experience{
        left: 0;
    }
    .aproposSection .block .left .img{
        width: 70%;
        height: 350px;
        margin: 0 auto;
    }
    .aproposSection .block .left .imgLeft{
        right: 0;
        width: 200px;
        height: 150px;
    }
    .aproposSection .block .right{
        padding-left: 0px;
        margin-top: 40px;
    }
    .aproposSection .block .right .title h1{
        font-size: 1.2rem;
    }
    .aproposSection .block .right .title h2{
        font-size: 2rem;
    }
    .aproposSection .block .right .blockItem{
        gap: 1rem;
    }
    .aproposSection .block .right .blockItem .content h1{
        font-size: 0.8rem;
    }


    .service{
        padding: 10px;
    }
    .service .title{
        width: 100%;
    }
    .service .title p{
        width: 100%;
    }
    .service .block{
        grid-template-columns: repeat(2,1fr);
        gap: 1rem;
    }
    .world .block{
        display: flex;
        flex-direction: column;
    }

    #partnerbelieve{
        padding: 10px;
    }

    #footer{
        padding: 10px;
    }
    .footer{
        grid-template-columns: 1fr;
    }

    /***** BARNIERE SECTION ****/
    .barnierePage{
        margin-top: 20vh;
        display: flex;
        flex-direction: column;
        padding: 10px;
    }

    /**** PAGE FONCTIONNALITE ****/

    .enteteFonct .title h1{
        font-size: 2.5rem;
    }
    .bienFait .block{
        display: flex;
        flex-direction: column;
    }
    .itemFonct{
        flex-wrap: wrap;
        gap: 2rem;
        padding: 10px;
    }
    .itemFonct .left{
        width: 100%;
    }
    .itemFonct .right .img{
        width: 100%;
    }
    .itemFonct .right .img img{
        height: 500px;
        width: 100%;
    }

    /**** A-PROPOS *******/

    .nos-professeurs{
        padding: 10px;
    }
    .nos-professeurs .block-nos-professeurs-item .block{
        display: flex;
        flex-direction: column;
    }
    .nos-professeurs .block-nos-professeurs-item .block .item{
        height: auto;
    }
    .nos-professeurs .block-nos-professeurs-item .block .item .img{
        height: 500px;
    }

    /**** PAGE CONTACT ****/
    
    .middleMail{
        display: flex;
        flex-direction: column;
        padding: 10px;
    }

    .contactPage .block{
        display: flex;
        flex-direction: column;
        padding: 10px;
    }
    .contactPage .block .fields{
        display: flex;
        flex-direction: column;
    }

    /**** PAGE CONDITION ****/

    #conditions{
        padding: 10px;
    }
    
    
}