@import url('https://fonts.googleapis.com/css2?family=Alef&family=Mulish&display=swap');

html{
    scroll-behavior: smooth;
}
body{
    margin: 0px;
    padding: 0px;
    font-family: 'Alef', sans-serif;
}

 pre.styled-pre {
   font-family: inherit;
   font-size: inherit;
   line-height: inherit;
   white-space: pre-wrap;
   margin: 0;         
}
nav{
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
    border-bottom: 5px solid #F32C2C;
    background-color: #B40505;
}
nav .logo{
    width: 120px;
    margin-top: 10px;
    margin-bottom: 10px;
}

nav .onglets.droite img{
    width: 30px;
    height: 30px;
    margin-left: 10px;
}
nav .onglets img:hover{
    transform: scale(1.5); 
}

nav .onglets.gauche{
    margin-top: 3px;
    margin-left: 320px;
}

nav .onglets.gauche a{
    text-decoration: none;
    color: #FFF;
    margin-right: 10px;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
}

header{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-size: cover;
    color: rgb(255, 255, 255);
    padding: 70px;
}

header h1{
    font-family: 'Mulish', sans-serif;
    font-size: 100px;
    background-color: rgba(180,5,5,0.5);
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 10px;
}
header h4{
    margin-top: 20px;
    font-size: 20px;
    text-align: center;
    background-color: rgba(243, 44, 44, 0.5);    
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 10px;
}
.information{
    white-space: 1px;
    text-align: center;
    font-family: 'Mulish', sans-serif;
    background-color: rgba(243, 44, 44, 0.5);    
    padding-left: 50px;
    padding-right: 50px;
    border-radius: 10px;
    color: #FFF;
}
.main{
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main .content .card{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom:20px;
}
.main .content .card .left{
   flex: 0 0 30%;
   padding: 20px;
   background-color:#F32C2C;
   color:#fff;
   text-align: center;
}
.main .content .card .left h1{
    font-size: 50;
}
.main .content .card .left button{
    background:    #f32c2c;
    border:        3.55px solid #fff;
    border-radius: 40px;
    padding:       20px 50px;
    color:         #ffffff;
    display:       inline-block;
    text-align:    center;
    font-size: 30;
    cursor:pointer;
}
.main .content .card .left button:hover{
    transform: scale(1.5); 
}
.main .content .card .right.nous{
    height:300px;
    width: 400px;
    text-align: center;
    margin-top: 10px;
}

.main .content .card .right img{
    height:300px;
    width: 400px;
    object-fit: cover;
    margin-top: 5px;
}

footer{
    margin-top: 40px;
    border-top: 5px solid #F32C2C;
    background-color: #b40505;
    color: #fff;
    padding: 30px 100px;;
}
footer h1{
    font-family: 'Mulish', sans-serif;
    border-bottom: 1px solid white;
    width: 20%;
    padding-bottom: 5px;
}
footer .services{
    margin-top: -10px;
    display:flex;
    flex-wrap:wrap;
}
footer .services .service{
    margin-right: 30px;
}
footer .services .service a{
    max-width: 300px;
    color:rgb(255, 255, 255);
}
footer #contact{
    color: rgb(255, 255, 255);
    text-align: center;
}
footer #contact a{
    color: rgb(255, 255, 255);
}
.presentoire{
    padding-left: 40px;
}
.presentoire li{
    list-style-type:none; 
    list-style-position:inside;
    display:inline-block;
    width:400px;
    padding:5px;
    text-align:center;
    vertical-align:top;

}
.presentoire h1{
    font-family: 'Mulish' sans-serif;
    text-align: center;
    font-size: 50px;
}
.presentoire h4{
    font-family: 'Mulish' sans-serif;
    font-size: 20px;
}
.presentoire .photo img{
    height:300px;
    width: 300px;
    margin-right: 20px;
    object-fit: cover;
}
.presentoire .photo img:hover{
    transform: scale(1.2); 
}

@media screen and (max-width:830px){
    nav{
        margin-top: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    header h1{
        font-family: 'Mulish', sans-serif;
        font-size: 70px;
        background-color: rgba(180,5,5,0.5);
        padding-left: 50px;
        padding-right: 50px;
        border-radius: 10px;
    }
    header h4{
        margin-top: 10px;
        font-size: 15px;
        text-align: center;
        background-color: rgba(243, 44, 44, 0.5);    
        padding-left: 50px;
        padding-right: 50px;
        border-radius: 10px;
    }
    nav .onglets.gauche{
        margin-top: 10px;
        margin-bottom: 20px;
        margin-left: 0px;
    }
    nav .onglets.droite{
        display: none;
    }
    .main .card {
        margin: 10px;
    }
    .main .content .card .right img{
        height:200px;
        width: 100%;
        margin-top: -0px;
    }
    .main .content .card{
        display: block;
    }
    footer{
        padding: 30px;
    }
}

