html {
    font-size: 0.625rem;
    font-family: 'Lato', sans-serif;
    scroll-behavior: smooth;
}

a {
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease-out;
}

a:hover {
    font-size: 3.2rem;
    color: white;
    transition: all .3s ease-out;
}

h1 {
    color: #c99028;
    font-size: 6rem;
    font-weight: 500;
    margin-top: 60px;
    margin-bottom: 60px;
    text-transform: uppercase;
}

h1 span {
    font-size: 4rem;
}

h2 {
    text-align: center;
    font-size: 6rem;
    line-height: 8.2rem;
    color: #101e28;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    margin: 65px auto 50px;
}

h4 {
    font-size: 4.2rem;
    line-height: normal;
    font-weight: 700;
    font-style: italic;
    text-transform: none;
    text-align: left;
    margin: 0 auto 20px;
}

h5 {
    color: #c99028;
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: 500;
}

p {
    font-size: 1.8rem;
    line-height: 3.8rem;
    margin-bottom: 40px;
    text-align: left;
}

/************** NAVBAR **************/

nav {
    position: fixed;
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: .5px;
    list-style: none;
    background-color: #314052;
    color: #c99028;
    width: 100vw;
    height: 125px;
    display: flex;
    align-items: center;
}

nav ul {
    align-items: center;
    justify-content: space-around;
    height: 100%;
    width: 100%;
}

nav ul li {
    cursor: pointer;
}

nav ul li:hover {
    color: white;
}

.nav-link {
    text-decoration: none;
    color: #c99028;
}

/**************** ACCEUIL *********************/


.acceuil {
    text-align: center;
    font-size: 1.8rem;
}

.acceuil img {
    margin-top: 185px;
    height: 400px;
}

.acceuil div span {
    font-weight: bold;
}

#cabinet {
    text-align: center;
}

ul {
    list-style-position: outside;
    padding-left: 60px;
}

/***************** EQUIPE **********************/

.equipe__presentation {
    border-top: 6px solid #c99028;
    padding-top: 30px;
    padding-bottom: 60px;
}

.image-grid {
    width: 100%;
    object-fit: contain;
    display: block;
    margin-bottom: 35px;
    height: 250px;
}

.name {
    color: #314052;
    font-size: 4.2rem;
    text-transform: uppercase;
    font-weight: 500;
}

.about {
    text-align: right;
}

.about__more {
    color: #101e28;
    font-size: 1.8rem;
    line-height: 3.8rem;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .3s ease-out;
    text-align: right;
    cursor: pointer;
    font-weight: 700;
}

.about__more:hover {
    color: #c99028;
    font-size: 1.8rem;
}


/****************** FOOTER ***************************/

#contact {
    background: #314052;
    width: 65%;
    border: 6px solid #314052;
    color: white;
}

/* .line{
    border: 6px solid white;
    padding: 7px;
    
} */

.contact__line {
    border: 6px solid white;
    padding: 7px;

}

.contact__title {
    color: #c99028;
}

.contact__adress div {
    font-size: 2.0rem;
    text-align: center;
}

label {
    font-size: 1.5rem;
}


/******************* MEDIA QUERY *********************/



@media screen and (max-width: 576px) {
    .nav-link {
        font-size: 2rem;
        font-weight: 500;
    }

    .acceuil img{
        height: 200px;
        margin-top: 230px;
    }


    h1{
        font-size: 3rem;
    }

    h2{
        font-size: 3rem;
    }

    h4{
        font-size: 3rem;
    }

    h1 span{
        font-size: 2.5rem;
    }

    .acceuil__img{
        width: 100%;
    }

    #contact{
        width: 95%;
    }

    .contact__title{
        font-size: 3rem;
    }

    .contact__adress{
        margin-bottom: 35px;
    }

    nav{
        height: 100px;
    }
}



@media screen and (min-width: 768px) {
    
}


@media screen and (max-width: 992px) {
    #contact{
        width: 95%;
    }
}


@media screen and (max-width: 1200px) {
    #contact{
        width: 95%;
    }

    .acceuil img{
        height: 200px;
        margin-top: 230px;
    }
}