
/**************************************************/
/**************************************************/
/*****************    GENERAL     *****************/
/**************************************************/
/**************************************************/


*{
    margin : 0;
    padding : 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    background-color : #1F2128;
    overflow-x: hidden;
}

body::-webkit-scrollbar{
    display : none;
}

section{
    margin-top : 100px;
}

h1{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 80px;
    margin-top : 30px;
    margin-left : 40px;
}

h1 span{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    -webkit-text-stroke: #1F2128;
    -webkit-text-stroke-width: 2px;
    color: transparent;
}

h2{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size : 50px;
    color : #ECECED;
    text-align: center;
    padding-top : 40px;
}

h3{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 30px;
    color : #1F2128;
}

/**************************************************/
/**************************************************/
/*****************    HEADER      *****************/
/**************************************************/
/**************************************************/


header{
    background-image: url(images/background_header.svg);
    background-repeat: no-repeat;
    background-size: cover;
    min-height : 100vh;
}

#topHeader{
    display : flex;
    justify-content: space-between;
}


#logo{
    height : 100px;
    width : auto;
    margin : 15px 40px;
}

/*************** menu *********************/
.lines{
    background-color: #1F2128;
    width: 35px;
    height : 3px;
    position : relative;
}

.line1{
    margin-top : 0;
    transition: .5s;
}

.line2{
    margin-top : 10px;
    transition: .5s;
}



.line1.active{
    transform : rotate(45deg);
    margin-top : é.9px;
    transition: .5s;
}

.line2.active{
    transform : rotate(-45deg);
    margin-top: -2.9px;
    transition: .5s;
}

.burgerIcon{
    position : absolute;
    z-index : 3;
    top : 30px;
    right : 30px;
    width : 35px;
    height : 35px;
    transition: .5s;
    cursor: pointer;
}

.burgerMenu{
    background-color : #ECECED;
    position : fixed;
    z-index : 2;
    right : 0;
    width : 30vw;
    min-height : 100%;
    transform: translateY(0%) translateX(100%);
    transition: transform 0.6s cubic-bezier(0.42,0,0.58,1);
    box-shadow: 0 0 6rem rgb(0 0 0 / 50%);
}

.burgerMenu.active{
    background-color : #ECECED;
    position : fixed;
    z-index : 2;
    right : 0;
    min-height : 100%;
    width : 30vw;
    transform: translateY(0%) translateX(0%);
    transition: transform 0.6s cubic-bezier(0.42,0,0.58,1);
    box-shadow: 0 0 6rem rgb(0 0 0 / 50%);
}

.burgerMenu ul li:first-child{
    margin : 180px 80px 0px 0px;
}

.burgerMenu ul li{
    list-style-type: none;
    line-height: 50px;
    letter-spacing: 1px;
    text-align: right;
    margin : 30px 80px 0px 0px;
}

.burgerMenu ul li a{
    text-decoration: none;
    color : #1F2128;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size : 25px;
    transition: 0.6s;
    position : relative;
}

.burgerMenu ul li a:hover{
    text-decoration: none;
    color : #1F2128;
    margin-right : 20px;
    transition: 0.6s;
}

.burgerMenu ul li a:before{
    content: "";
    width: 0;
    height: .6em;
    bottom: 0;
    left: 100%;
    position: absolute;
    background-color: #FFEA30;
    z-index: -1;
    transition: .3s ease-in-out;
}

.burgerMenu ul li a:hover:before{
    width: 100%;
    left: 0;
}


/*************** scroll *********************/


.scrLines{
    background-color: #1F2128;
    width: 35px;
    height : 5px;
    position : relative;
    z-index : 1;
    top : 200px;
    left : 50vw;
}

.scrollDown{
    width : 100px;
    height : 100px;
    transform: translate(-50%, -50%);
    animation : scrollDown 1s infinite;
}

@keyframes scrollDown{
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, -10px);
    }

    100% {
        transform: translate(0, 0px);
    }
}

.scrLine1{
    margin-top : -30px;
    margin-left : -24px;
    transition: .5s;
    transform : rotate(45deg);
}

.scrLine2{
    margin-top: -5px;
    margin-left: -3px;
    transition: .5s;
    transform : rotate(-45deg);
}



/**************************************************/
/**************************************************/
/*****************    MAIN     *****************/
/**************************************************/
/**************************************************/

/**************************************************/
/*****************    A PROPOS    *****************/
/**************************************************/

.divPropos{
    display : flex;
    justify-content: space-around;
    align-items: center;
}

.div1Propos{
    width : 70vh;
}

.div1Propos p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color : #ECECED;
    font-size : 25px;
}

.div1Propos p span{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

.div1Propos button{
    border : 2px solid #FFEA30;
    background-color: #FFEA30;
    border-radius: 30px;
    color : #1F2128;
    width : 180px;
    padding : 5px 20px;
    font-size : 25px;
    transition: .3s ease-in-out;
}

.div1Propos button:hover{
    border : 2px solid #FFEA30;
    background-color: transparent;
    color : #FFEA30;
    transition: .3s ease-in-out;
}

.div2Propos{
    width : 50vh;
}

.div2Propos img{
    max-width : 50vh;
}


/***************** parcours *******************/

.divParcours{
    display : flex;
    justify-content: space-around;
    align-items: baseline;
}

.parcours{
    width : 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.parcours img{
    max-width: 20vh;
}

.parcours p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color : #FFEA30;
    text-align : center;
}




/**************************************************/
/*****************    REALISATIONS  ***************/
/**************************************************/

.filtre{
    padding : 20px;
    margin : 40px auto;
}

.filtre ul{
    display : flex;
    justify-content: center;
    margin-bottom : 10px;
}

.filtre li{
    color : #FFEA30;
    list-style: none;
    background-color : transparent;
    border-radius: 30px;
    border : 2px solid #FFEA30;
    padding : 5px 20px;
    font-size : 25px;
    transition: .3s ease-in-out;
    cursor: pointer;
    margin : 10px 20px;
}

.filtre li.active{
    color : #1F2128;
    list-style: none;
    background-color : #FFEA30;
    border-radius: 30px;
    border : 2px solid #FFEA30;
    padding : 5px 20px;
    font-size : 25px;
    transition: .3s ease-in-out;
    cursor: pointer;
}

.filtre li:hover{
    color : #1F2128;
    list-style: none;
    background-color : #FFEA30;
    border-radius: 30px;
    border : 2px solid #FFEA30;
    padding : 5px 20px;
    font-size : 25px;
    transition: .3s ease-in-out;
    cursor: pointer;
}

.projet{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#arrou{
    background-image: url(images/projets/arrou/arrou_1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#absences{
    background-image: url(images/projets/absences/absences_1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#lambda{
    background-image: url(images/projets/lambda/lambda_1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#nike{
    background-image: url(images/projets/nike/nike_1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#ecoton{
    background-image: url(images/projets/ecoton/ecoton_1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

#porte_ouverte{
    background-image: url(images/projets/porte_ouverte/porte_ouverte_1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


.itemBox{
    position : relative;
    height : 50vh;
    width : 50vh;
    margin : 10px;

}

.itemBox:hover{
    position : relative;
    height : 50vh;
    width : 50vh;
    margin : 10px;
    transition: .3s ease-in-out;
}


.hover_div{
    background-image: url(images/tache_jaune.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position : relative;
    height : 50vh;
    width : 50vh;
    opacity: 0;
    transition: opacity .6s cubic-bezier(0.42,0,0.58,1);
}

.hover_div:hover{
    background-image: url(images/tache_jaune.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position : relative;
    height : 50vh;
    width : 50vh;
    opacity: 1;
    transition: opacity .6s cubic-bezier(0.42,0,0.58,1);
    cursor: pointer;
}

.titre_projet{
    position : absolute;
    top: 40%; 
    width : 100%;
    object-fit: cover;
    text-align : center;
}

.titre_projet p{
    font-size : 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    color : #1F2128;
}

.titre_projet p span{
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

/*****************    MODAL      ****************/


.modal-content{
    background-color: #ECECED;
    border-radius: 20px;
}
.modal-header span{
    font-size : 30px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color : #1F2128!important;
}

.modal-header {
    margin : 10px;
    border-bottom : none;
}

#modal_titre {
    margin : 10px;
}

.modal-texte{
    font-size : 15px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color : #1F2128;
    margin : 10px 0px;
}

.carousel-inner{
    margin-top : 30px;
}

.slide{
    margin : 10px auto;
}

.modal-domaine{
    margin-top : 5px;
    font-size : 15px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    color : #1F2128;
}

.carousel-indicators{
    position:initial;
    z-index: 15;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    list-style: none;
    margin-top : 20px;
}

.carousel-indicators li {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border : 2px solid #1F2128;
    margin: 0 10px;
    padding : 0;
}

.carousel-indicators li.active {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border : 2px solid #1F2128;
    background-color: #1F2128;
    margin: 0 10px;
    padding : 0;
}

.carousel-indicators li:hover {
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border : 2px solid #1F2128;
    background-color: #1F2128;
    margin: 0 10px;
    padding : 0;
}

.button_consulter{
    border: 1px solid #1F2128;
    background-color: transparent;
    border-radius: 30px;
    color: #1F2128;
    width: 120px;
    padding: 3px 15px;
    font-size: 12px;
    transition: .3s ease-in-out;
    margin: 10px 0px 30px 0px;
    text-align: center;
    cursor: pointer;
}

.button_consulter:hover{
    border : 2px solid #1F2128;;
    background-color: #1F2128;;
    color : #ECECED;
    transition: .3s ease-in-out;
    text-decoration: none;
    
}



/**************************************************/
/*****************    CONTACT      ****************/
/**************************************************/

.divContact{
    display : flex;
    justify-content: space-around;
    align-items: center;
}

.div1Contact{
    width : 50vh;
}

.div1Contact img{
    max-width : 40vh;
}

.div2Contact{
    width : 50vh;
}

.icon{
    margin : 30px 0px;
}

.icon a{
    display : flex;
    align-items: center;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    text-align : left;
    font-size : 15px;
}

.icon a p{
    margin : 0px 30px;
    color : #FFEA30;
}

.div2Contact img{
    max-width : 8vh;
}




/**************************************************/
/**************************************************/
/*****************    FOOTER      *****************/
/**************************************************/
/**************************************************/


footer{
    margin : 50px 0px 10px 0px;
}

footer p{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size : 15px;
    text-align : center;
    color : #FFEA30;
}





/**************************************************/
/**************************************************/
/*****************    MEDIA Q     *****************/
/**************************************************/
/**************************************************/


/**************************************************/
/*****************    TABLETTE    *****************/
/**************************************************/

@media (max-width: 991.98px) {


    /******************** general **********************/
    body{
        overflow-x: hidden;
    }

    h1{
        font-size : 60px;
    }

    h2{
        font-size : 40px;
        margin-bottom : 40px;
    }


    /******************** header **********************/
    .burgerMenu{
        width : 50vw;
        box-shadow: none;
    }
    
    .burgerMenu.active{
        width : 50vw;
        box-shadow: none;
    }

     /******************** main **********************/

    /******************** a propos **********************/

    .div1Propos{
        width : 40vh;
        margin : 20px;
    }

    .div2Propos{
        width : 40vh;
    }

    .div2Propos img{
        max-width : 30vh;
    }

    .div1Propos p{
        font-size : 20px;
    }

    .div1Propos button{
        font-size : 20px;
    }

    /******************** realisations **********************/

    
    .filtre li{
        font-size : 20px;
        margin : 5px 10px;
    }

    .filtre li:hover{
        font-size : 20px;
        margin : 5px 10px;
    }

    .filtre li.active{
        font-size : 20px;
        margin : 5px 10px;
    }

    /******************** carousel **********************/

    .carousel-indicators li {
        width: 20px;
        height: 20px;
        border-radius: 100%;
        border : 2px solid #1F2128;
        margin: 0 10px;
        padding : 0;
    }
    
    .carousel-indicators li.active {
        width: 20px;
        height: 20px;
        border-radius: 100%;
        border : 2px solid #1F2128;
        background-color: #1F2128;
        margin: 0 10px;
        padding : 0;
    }
    
    .carousel-indicators li:hover {
        width: 20px;
        height: 20px;
        border-radius: 100%;
        border : 2px solid #1F2128;
        background-color: #1F2128;
        margin: 0 10px;
        padding : 0;
    }

    .div1Contact img{
        max-width : 30vh;
    }
}

/**************************************************/
/*****************    PHONE       *****************/
/**************************************************/

@media (max-width: 767.98px) {


    /******************** general **********************/
    body{
        overflow-x: hidden;
    }

    h1{
        font-size : 50px;
    }

    h1 span{
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 700;
        -webkit-text-stroke: #1F2128;
        -webkit-text-stroke-width: 1px;
        color: transparent;
    }

    /******************** header **********************/

    .burgerMenu{
        width : 100vw;
        box-shadow: none;
    }
    
    .burgerMenu.active{
        width : 100vw;
        box-shadow: none;
    }

    .burgerMenu ul li:first-child{
        margin : 100px 0px 0px 0px;
    }

    .burgerMenu ul li{
        text-align: center;
        margin : 30px 0px 0px 0px;
    }

    /******************** main **********************/


    /******************** a propos **********************/

    .divPropos{
        display : flex;
        flex-direction: column-reverse;
    }

    .div2Propos{
        width : 40vh;
    }

    .div2Propos img{
        max-width : 40vh;
    }

    /******************** parcours **********************/

    .divParcours{
        flex-direction: column;
        justify-content: center;
        margin-top : 30px;
    }

    .parcours{
        margin : auto;
    }

    .parcours p{
        font-size : 15px;
    }

    /******************** realisations **********************/
    
    .filtre ul{
        flex-wrap: wrap;
    }

    .filtre li{
        text-align: center;
        margin: 5px auto;
        font-size : 20px;
    }

    .filtre li:hover{
        text-align: center;
        margin: 5px auto;
        font-size : 20px;
    }

    .filtre li.active{
        text-align: center;
        margin: 5px auto;
        font-size : 20px;
    }
    

    /******************** contact **********************/

    .div1Contact{
        display : none;
    }

    .div2Contact{
        width : 40vh;
    }

    .icon a{
        font-size : 12px;
    }

    /******************** footer **********************/

    footer p{
        font-size : 10px;
    }
}

/**************************************************/
/*****************    MINI PHONE       *****************/
/**************************************************/

@media (max-width: 575.98px) {


    /******************** general **********************/

    body{
        overflow-x: hidden;
    }

    h1{
        font-size : 40px;
    }

    /******************** header **********************/

    

    /******************** realisations **********************/

    .filtre li{
        text-align: center;
        margin: 5px auto;
        font-size : 15px;
    }

    .filtre li:hover{
        text-align: center;
        margin: 5px auto;
        font-size : 15px;
    }

    .filtre li.active{
        text-align: center;
        margin: 5px auto;
        font-size : 15px;
    }

}

@media (max-height: 700px) {

    .scrollDown{
        display : none;
    }
}


