*{
    margin: 0;
    padding: 0;

    --black: #000;
    --dark: #272727;
    --dark-blue: #36918d;
    --blue: #54d4c8; /*Probleme de couleur dans le cahier des charges*/
    --white: #fff;
}

body{
    position: relative;
    font-family: 'Roboto', sans-serif;
}

/*****NAVBAR*****/

.navigation{
    position: relative;
    text-transform: uppercase;
    position: relative;
    width: 100%;
    height: 64px;
    background: var(--dark);
}

.navigation ul{
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    margin-bottom: 0;

    transition: 1s;
}

.toggle{
    z-index: 1001;
    display: none;
    position: absolute;
    left: 20px;
    color: var(--white);
}

.toggle:hover{
    cursor: pointer;
    color: var(--dark-blue);
}

.toggle i{
    font-size: 20px;
    line-height: 64px;
}

.navigation .title{
    position: absolute;
    left: 25px;
    color: var(--white);
    display: inline;

    transition: .2s;
}

.navigation .title p{
    line-height: 64px;
    margin-bottom: 0;
    font-size: 25px;
}

.navigation .title span{
    color: var(--dark-blue);
    display: inline;
}

.navigation ul li{
    list-style: none;
}

.navigation ul li a{
    padding: 20px 15px;
    display: block;
    color: var(--white);
}

.navigation ul li a:hover{
    text-decoration: none;
    color: var(--dark-blue);
}

/*****INNOVATION*****/

.innovation{
    background: var(--blue);
    color: var(--white);
    padding-top: 30px;
    margin: 0;
}

.solutions > div{
    padding-top: 100px;
}

.solutions h1{
    font-size: 60px;
    font-weight: 300;
    text-transform: uppercase;
}

.solutions h1 span,
.solutions h2{
    color: var(--dark);
}

.solutions h2{
    font-size: 35px;
    font-weight: 300;
    text-transform: uppercase;
}

.solutions p{
    font-size: 20px;
    padding: 25px 0;
}

.solutions ul li i{
    color: var(--dark-blue);
}


/*****DESCRIPTION*****/

.description{
    background: var(--dark);
    color: var(--white);
}

.description > div{
    padding: 20px;
    text-align: center;
}

.description h2{
    text-transform: uppercase;
    font-size: 35px;
}

.foncs{
    margin: 0;
}

.foncs h3{
    font-size: 20px;
    text-transform: uppercase;
    color: var(--dark-blue);
}

.foncs > div > div{
    padding: 0 10px;
}

.foncs div div i{
    font-size: 50px;
}

/***FOOTER***/

footer{
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black);
}

footer div{
    padding: 30px 15px;
}

footer i{
    padding: 10px 25px;
    font-size: 20px;
}

footer a i{
    color: var(--blue);
}

footer a i:hover{
    color: var(--white);
}

footer a{
    color: var(--white);
}

footer a:hover{
    color: var(--dark-blue);
    text-decoration: none;
}

.footer-easyapp::after{
    content: '|';
    padding-left: 10px;
    color: var(--white);
}

/**SERVICES**/

.services{
    color: var(--white);
    background: rgb(60, 60, 63);
}

.services h1{
    text-transform: uppercase;
    padding-top: 50px;
    padding-bottom: 20px;
}

.services > div p{
    font-size: 20px;
}

.services i{
    color: var(--blue);
    font-size: 50px;
    float: right;
}

.services h2{
    font-size: 25px;
    color: var(--blue);
    text-transform: uppercase;
}

.content div div p{
    font-size: 16px;
}

.content{
    margin: 0;
}


/****CONTACT****/

#contact{
    min-height: 100vh;
}

.contact h1{
    padding: 50px 0;
    text-transform: uppercase;
    color: var(--blue);
}

.contact form{
    width: 550px;
    padding-bottom: 100px;
}

.contact form input,
.contact textarea{
    background: rgb(238, 238, 238);
}

.contact form button{
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
    padding: 10px 30px;
    background: var(--blue);
    border: none;
    border-bottom: 4px solid var(--dark-blue);

    transition: .3s;
}

.contact form button:hover{
    background: var(--dark-blue);
}

/*******************/
/***MEDIA QUERIES***/
/*******************/

@media screen and (max-width: 576px){
    .toggle{
        display: inline;
    }

    .navigation{
        z-index: 1000;
    }

    .navigation .title{
        left: 60px;
    }

    .navigation ul{
        position: relative;
        left: -100%;
        padding-right: 0;
        padding-top: 64px;
        flex-direction: column;
        text-align: center;
    }

    .navigation ul li{
        background: var(--dark);
    }

    .icons{
        text-align: center;
    }

    .contact form{
        width: 90%;
    }
}