* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter";
}

html {
    scroll-behavior: smooth;
}

:root {
    --bleu : #002654;
    --blanc: #FFFFFF;
    --rouge: #ED2939;

    --jaune : #faa834;
    
}

.nav {
    width: 100%;
    height: 80px;
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 50px;
    padding-right: 50px;
    justify-content: space-between;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: fixed;
    top: 0;
    z-index: 10;
}

#nav__logo {
    width: 205px;
}

.nav__items {
    height: 95px;
    width: auto;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    font-family: "Inter";
    font-weight: 600;
    margin: auto;
}

.nav__item {
    text-decoration: none;
    color: #323232;
    font-size: 16px;
    padding: 5px 15px;
    transition: .6s;    
}

.active, .nav__item:hover {
    color: var(--bleu);
}

.nav__item::after {
    display: block;
    content: ' ';
    width: 0%;
    height: 3px;
    margin-top: 5px;
    background: var(--rouge);
    border-radius: 10px;
    transition: 0.4s;
}

.nav__item:hover::after {
    width: 100%;
}

#header {
    height: auto;
    min-height: 100vh;
    margin-top: 10px;
    gap: 15px;
}

#headerRow {
    height: auto;
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.882);
    justify-content: center;
    padding-top: 150px;
    padding-bottom: 50px;
}

#landingPage__title, #landingPage__illustration {
    padding: 5px 30px;
    height: auto;
}

#landingPage__title h1 {
    font-size: 50px;
    color: var(--bleu);
}

#landingPage__title h3 {
    font-size: 35px;
    color: var(--rouge);
    font-weight: 400;
    font-family: "Inter";
    padding-left: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-left: 10px solid var(--bleu);
    margin-left: 45px;
    
}

#landingPage__title p {
    font-size: 25px;
    color: var(--bleu);
    font-family: "Inter";
    margin-top: 50px;
    margin-bottom: 45px;
}

#landingPage__title b {
    color: var(--bleu);
}


/* #landingPage__illustration {
    height: auto;
} */

.flat__button {
    padding: 15px 30px;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    font-family: "Inter";
    font-size: 20px;
    font-weight: 700;
    background: var(--rouge);
    transition: .4s;
    border: 1px solid var(--rouge);
    box-shadow: 1px 1px 6px 0px black;
}

.button{
    font-size: 16px;
    color: #000;
    padding-bottom: .1%;
    text-decoration: none;
    background: var(--rouge);
    border: 1px solid var(--rouge);
    box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    border-radius: 30px;
}

.flat__button:hover {
    color: var(--bleu);
    background: transparent;
}

#landingPage__illustration img {
    width: auto;
    height: 550px;
    border-radius: 15px;

}

#company_features {
    margin-top: 100px;
    margin-bottom: 200px;
    height: auto;
    padding: 20px;
}

#company_features .row {
    justify-content: center;
    gap: 20px;
}


.company_feature {
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    padding-top: 25px;
    padding-bottom: 25px;
    border-radius: 50px;
    background: var(--jaune);
    cursor: pointer;
}

.company_feature i {
    margin-right: 10px;
}

#index__about {
    margin-bottom: 100px;
    height: auto;
    min-height: 500px;
    padding-top: 25px;
    padding-bottom: 25px;
}

#index__about__image {
    height: auto;
    padding: 0;
    border-radius: 10px;
}

#index__about__text {
    padding-left: 20px;
}

.fil__ariane {
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
}

.fil__ariane span {
    color: var(--blanc);
    font-size: 27px;
    font-weight: 400;
}

.fil__ariane span::before {
    width: 85px;
    height: 5px;
    display: block;
    content: ' ';
    margin-bottom: 2px;
    background: var(--rouge);
}

#index__about__text h1 {
    margin-top: 25px;
    font-size: 28px;
    font-weight: 700;
    color: var(--bleu);
    text-align:center;
}

#index__about__text p {
    margin-top: 15px;
    font-size: 25px;
    color: var(--bleu);
    font-family: "Inter";
    text-align: justify;
}


#index__about__text .enga{
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    padding: auto;
    margin: auto;
    margin-bottom:40px;
}

.enga span::before{
    margin-left: 36.15%;
    margin-right: auto;
    text-align: center;

    width: 220px;
    height: 10px;
    display: block;
    content: ' ';
    margin-bottom: 2px;
    background: var(--rouge);
}

#index__about__call {
    width: 300px;
    height: 90px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0;
    text-decoration: none;
    color: var(--rouge);
    background: var(--blanc);
    padding-left: 10px;
    margin-left: 50px;
    margin-top: -40px;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 1px 7px 29px 5px;
}

#index__about__call i {
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    color: var(--bleu);
}

#num{
    color: var(--rouge);
}

#index__about__call__text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

#index__about__call__text b {
    text-align: center;
}

#work__with__us {
    border: 1px solid #000;
    margin-bottom: 200px;
    height: auto;
    min-height: 500px;
    background: var(--bleu);
    padding-top: 25px;
    padding-bottom: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

.ariane__row {
    justify-content: center;
    align-items: center;
}

#color_blue{
    color: var(--bleu);
}

#work__with__us .fil__ariane {
    color: #fff;
}

#work__with__us h1 {
    text-align: center;
    font-size: 30px;
    width: 650px;
    margin: auto;
    margin-top: 25px;
    color: #fff;
    margin-bottom: 50px;
}

#work__with__us__row {
    gap: 35px;
    justify-content: center;
}

.work__with__us {
    border-top: 5px solid #11395c;
    display: flex;
    flex-direction: row;
    height: 250px;
    justify-content: space-between;
    padding-top: 20px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
}

.work__with__us i {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: #fff;
}

.work__with__us__text {
    width: 400px;
    height: 200px;
}

.work__with__us__text b {
    font-size: 18px;
    color: #fff;
}

.work__with__us__text p {
    font-size: 14px;
    color: #6c757d;
    margin-top: 15px;
}

#services {
    margin-bottom: 100px;
}

#services h1 {
    width: 500px;
    margin: auto;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 50px;
}

#services__list {
    justify-content: center;
    gap: 70px;
}

.index__service {
    height: 450px;
    border-radius: 40px;
    padding: 0;
    cursor: pointer;
}

 .index__list {
    color: var(--blanc);
    height: 450px;
    border-radius: 40px;
    padding: 0;
    cursor: pointer;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.index__list__text {
    width: 100%;
    height: 100%;

    padding-top: 5%;
    padding-right: auto;
    padding-left: auto;
    padding-bottom: 5%;
    
    margin-left: auto;
    margin-right: auto;

    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: .3s;
}

.index__list__text h3 {

    color: var(--bleu);
    text-align: center;
    font-size: 1.5rem;

    margin-bottom: 2%;
    margin-left: auto;
    margin-right: auto;

}

.index__list__text a {

    text-decoration: none;
    color: var(--rouge);

}

.index__list__text p {

    color: var(--bleu);
    text-align: justify;
    font-size: 1rem;

    margin-left: 3%;
    margin-right: 3%;

    margin-top: 5%;
    margin-bottom: 10%;

}

.index__list__text img{

    height: 180px;  
    
    margin-left: auto;
    margin-right: auto;

    margin-top: 5%;
    margin-bottom: 5%;

    filter: drop-shadow(0 0 0.75rem #c0c0c0);}

.index__list:hover .index__list__text {
    transform: scale(.98);
} 

#index__service__1 {
    background: url('../img/Travaux/electric.jpg') no-repeat;
    background-position: center;
    background-size: cover;
}

#index__service__2 {
    background: url('../img/Travaux/plomberie.jpg') no-repeat;
    background-position: center;
    background-size: cover;
}

#index__service__3 {
    background: url('../img/Travaux/revetement.jpg') no-repeat;
    background-position: center;
    background-size: cover;
}


.index__service__text {
    background-color: rgba(47, 74, 98, .35);
    width: 100%;
    height: 100%;
    border-radius: 40px;
    padding-top: 25px;
    padding-left: 25px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: .3s;
}

.index__service__text i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    background: var(--bleu);
    color: #fff;
}

.index__service__text_normes {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: .3s;

    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 20px;
    padding-right: 20px;
}

.index__service__text h3 {
    color: var(--rouge);
    margin-top: 15px;
}

.index__service__text p {
    color: #fff;
    padding-right: 25px;
    margin-top: 5px;
}

.title_h3{
    color: var(--bleu);
    margin-bottom: 10px;
}

.norme_text_form{
    color: var(--rouge);
}

.index__service:hover .index__service__text {
    transform: scale(.98);
}

#services .flat__button {
    width: fit-content;
    margin-top: 50px;
}

#gallery {

    background: var(--bleu);
    padding-top: 2rem;
    padding-left: auto;
    padding-right: auto;
}

#gallery .fil__ariane {
    color: #fff;
}

#gallery h1 {
    width: 500px;
    margin: auto;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 50px;
    color: #fff;
}

#gallery .row {
    gap: 10px;
    margin-top: 100px;
}


.realisation__gallery {
    height: 450px;
    position: relative;
    padding: 0;
    cursor: pointer;
    border-radius: 35px;
}

.realisation__gallery img {
    width: 100%;
    height: 100%;
    position: absolute;

    transition: opacity 1s ease-in-out;
    margin-bottom: 10px;
}

.realisation__gallery__before:hover {
    opacity: 0;
}


footer {
    height: auto;
    min-height: 500px;
    background: var(--bleu);
    color: #fff;
    padding-top: 100px;
    padding-left: 50px !important;
    padding-bottom: 25px;
}

.footer__col {
    padding-left: 50px;
    padding-right: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__col h4 {
    color: var(--jaune);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer__col a {
    color: #f7f7f7;
     text-decoration: none;
}

#team__profiles {
    margin-bottom: 200px;
}



.team__profile {
    height: 450px;
    display: flex;
    flex-direction: column;
}

#team__profiles .fil__ariane {
    margin-bottom: 100px;
}

.team__profile img {
    width: 100%;
    height: 350px;
}

.team__profile h5 {
    margin-top: 25px;
    font-size: 18px;
    font-weight: 700;
    font-family: "Inter";
    color: var(--bleu);
}

.team__profile h6 {
    font-size: 15px;
    font-weight: 700;
    font-family: "Inter";
    color: var(--jaune);
}

#team__row {
    justify-content: center;
}

#mobile__burger {
    display: none;
}

@media screen and (max-width: 1000px) {
    #headerRow {
        display: flex;
        flex-direction: column !important;
        flex-wrap: wrap;
        padding-top: 50px;
    }
    #landingPage__title {
        width: 100%;
        height: auto;
        padding-bottom: 100px;
    }
    #landingPage__illustration {
        width: 300px;
        margin-top: 15px;
        margin: auto;
        height: auto;
    }
    #landingPage__illustration img {
        width: 100%;
    }
    #index__about {
        padding: 15px;
    }
    #index__about__text {
        margin-top: 15px;
    }
    #index__about__call {
        margin: auto;
        margin-top: 50px;
    }
    #work__with__us i {
        width: 100px;
        height: 100px;
        font-size: 25px;
        margin-right: 10px;
    }
    .work__with__us__text p {
        height: auto;
    }
    .work__with__us__text b {
        font-size: 15px;
    }
    #work__with__us {
        gap: 10px;
    }
    .work__with__us {
        height: 350px;
        padding-bottom: 50px;
    }
    #services__list {
        padding: auto;
    }
    .index__service {
        width: 100%;
    }
    .realisation__gallery {
        width: 100%;
    }
    #work__with__us__row {
        height: auto;
        padding-bottom: 15px;
    }
    .footer__col {
        margin-top: 25px;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }

    .nav__items {
        flex-direction: column;
        height: 0;
        opacity: 0;
        display: none;
        padding-bottom: 15px;
        padding-top: 15px;
        width: 100%;
        margin-top: 20px;
        background: #fff;
        display: flex;
        transition: 0.5s;
    }
    .nav img {
        margin-top: 30px;
        margin-left: 15px;
    }
    #mobile__burger {
        align-self: flex-end;
        margin-right: 25px;
        margin-top: -25px;
        width: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        color: var(--jaune);
        transition: .3s;
        cursor: pointer;
    }

    #landingPage__title h1 {
        font-size: 25px;
    }

    #landingPage__title h3 {
        font-size: 20px;
        margin-left: 5px;
        padding-left: 5px;
        margin-top: 15px;
    }

    #landingPage__title p {
        font-size: 18px;
    }
    .partner {
        height: 60px;
        width: 125px;
    }
    
    .partner img {
        width: 100%;
        height: 100%;
    }
    
    marquee {
        display: flex;
        flex-direction: row;
        filter: grayscale(0.5);
    }
    
        #partners .row {
        flex-direction: column;
        margin: 0;
    }
    
}

.phone_header{
    text-decoration:none;    
}

