.about{
    height: 100%;
}
.titreProd{
    display: inline-block;
    margin: 100px 0;
    padding: 10px;
    background: hsla(0, 0%, 100%, 0.75);
    border-radius: 15px;
    text-align: center;
    position:absolute;
    top: 10%;
    left: 40%;
}
.video{
    height: 50vh;
    overflow: hidden;
}
video{    
    width: 100%;
}
#apropos{
    padding: 10px;
}
.histoire, .equipe{
    display: flex;
    justify-content: space-around;
    align-items: center;
    transition: translateX(12px);
}
#apropos .article{
    width: 80%;
    margin: 10px;
    animation: normal;
    animation-duration: 3s;
    animation-name: glissement;
}
@keyframes glissement{
    from{
        margin-left: -150%;
    }
    to{
        margin-left: 1%;
    }
}
.article h1 {
    line-height: 35px;
    font-size: 30px;
}
.article h2 {
    line-height: 28px;
    font-weight: 500;
    font-size: 24px;
    margin: 10px 0;
}
.article p{
    padding-top: 10px;
    margin: 5px 0;
}
/* Slider */
.defile{
    width: 50%;
    margin: 20px;
}
.slider, .slider2{
    width : 600px;
    height: 500px;
    padding: 2px;
    box-shadow: 5px 2px 2px .5px #c96805;
    
}

@media (max-width: 700px){
    .titreProd{
        top: 2%;
        left: 30%;
        height: 80px;
    }
    .video{
        height:100%;
    }
    .equipe::before{
        content: "";
        width: 50%;
        border: #c96805 2px solid;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .histoire{
        flex-direction: column-reverse;
    }
    .equipe{
        flex-direction: column;
    }
    .article{
        width: 100%;
    }
    .slider, .slider2{
        width :100%;
        height: 400px;
    }
    .defile{
        width: 100% ;
    }
}