*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
.container{
    background: linear-gradient(90deg,#1a87ec 50%,#070545 50%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrapper{
    background-color: #dddddd;
    width: 90%;
    height: 90vh;
}


.navbar{
     width: 90%;
     margin: auto;
     height: 15vh;
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img{
    width: 40%;
}



.hero{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}
 .hero .images .pupitre0 {
    width: 45vh;
    display: none;
}
.hero .images .pupitre0.active{
    display: initial;
}
.images img{
    width: 100%;
    height: 348px;
}




.content{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    border-left: 4px solid #070545;
    padding: 20px 50px;
}
.content h3{
    color:rgb(73,73,73);
    font-size: 25px;
    text-transform: uppercase;
}
.content h1{
    color: #070545;
    font-size: 50px;
    
}
.content p{
    color: black;
    font-size: 18px;
    line-height: 30px;
    width: 322px;
}

.content button{
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    border: none;
    background-color: #070545;
    cursor: pointer;
}
.content button:hover{
    background-color: white;
    color: #3c6255;
}

/*Style reseaux sociaux*/
.social a{
    display: inline;
    padding: 10px ;
    margin: 1px;
    font-size: 200%;
    font-weight: 600;
    border-radius: 50%;
    position: relative;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    transition: all 0.15s ease;
}


.social-icon--mail{
 color: #000;
}
.social-icon--whatsapp{
    color: rgb(7, 170, 7);
}
.social-icon--instagram{
    color: #b32c71;
}
.social-icon--facebook{
    color: #0b30c5;
}

/* CSS slide */

.container .left,
.container .right{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    width: 50px;
    border: 2px solid #333;
    color: #333;
    line-height: 45px;
    text-align: center;
    font-weight: bolder;
    cursor: pointer;
}
.container .left{
    left: 80px;
}
.container .right{
    right: 80px;
}
.container .left:hover,
.container .right:hover{
    background-color: #333;
    color: #fff;
}














/*responsive*/

@media screen and (max-width:1207px){
    .content h1{
       font-size: 45px; 
    }
    .content p{
        font-size: 17px;
    }
    .content p{
     font-size:17px ;
    }
 @media screen and (max-width: 1110px){
    .content{
        padding:0px 40px ;
        line-height: 25px;
 }
 .content h1{
    font-size:40px ;
    gap:10px;
 }
}


@media screen and (max-width:796px){
    .wrapper{
        position: relative;
        overflow: hidden;
    }
   
   
   .hero img{
    display: none;
   }
   .content h1{
    font-size: 50px;
   }
   .content p {
    font-size: 18px;
    line-height: 30px;

   }
   .content{
    padding: 20px 50px;
   }
}}