@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');

body{
    margin: 0;
    padding:0;
    font-family: 'Poppins',sans-serif;
    font-size:1vw;
    background-color: #f4f7f6;
}
header{
    height:12vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}
#bloc_logo{
}
#bloc_logo>h1{
    font-weight: 400;
    margin:0;
    padding-left: 50px;
    font-size:1.5vw;
    position: relative;
    cursor: pointer;
    color:#132f3a;
    transition: all 0.3s;
}
#back_select{
    background-color: #23232B;
    position: relative;
    width:18vw;
    height: 100%;
    cursor: pointer;
    padding: 0;
}
select{
    width:100%;
    background-color: #23232B;
    outline: none;
    border: none;
    color: white;
    font-family: 'Poppins', Futura, sans-serif;
    font-size: 1vw;
    height: 100%;
    cursor: pointer;
    padding: 0 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 1px;
    text-overflow: '';
}
.svg_select{
    position: absolute;
    width: 10px;
    right: 15px;
    top:50%;
    transform: translate(0,-50%);
}
#menu h1{
    position: relative;
    color:#132f3a;
    font-weight: 300;
    margin: 25px 0 0;
    padding-left: 50px;
    bottom: 0;
    font-size:1.5vw;/*2.5 avant changement client*/
}
#menu h1:after, .bloc_titre_cat>p:after{
    content:'';
    position: absolute;
    top:50%;
    left:105%;
    background-color: #132f3a;
    width:30%;
    height:0.3vw;
}
.bloc_titre_cat>p:after{
    background-color: #132f3a;
}
#menu{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.bloc_titre_cat{
    margin-top: 70px;
    position: relative;
    width:100vw;
    height:2.5vw;
    padding-left: 50px;
}
.bloc_titre_cat p{
    position: absolute;
    margin: 0;
    text-transform: capitalize;
    color: #132f3a;
    font-size:1.5vw;/*2 avant changement client*/
}
#maj_li{
    padding: 0;
    position: relative;
    width:100%;
    margin: 0 0 50px 0;
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}
.bloc_vid,.bloc_vidv2{
    position: relative;
    margin: 70px 25px 0px 25px;
    /*height:25vw;*/
    max-height: 40vw;
    width:25%;
    min-width: 280px;
    background-color: white;
    cursor: pointer;
    padding-bottom: 3vw;
    transition: all 0.3s;
    animation: blocvid 1s;
}
.bloc_vid::after,.bloc_vidv2::after{
    content: '';
    position: absolute;
    background-color: black;
    opacity: 0.4;
    height:0.1vw;
    width:50%;
    bottom: 0;
    z-index: 3;
    margin-bottom: 1.5vw;
    left:50%;
    transform: translate(-50%);
}
.bloc_vid:hover .hover_video, .bloc_vidv2:hover .hover_video{
    background-color: rgba(0,0,0,0.5);
}
.bloc_vid:hover .play_button,.bloc_vidv2:hover .play_button{
    left:0;
}
.bloc_vid:hover .titre_inside,.bloc_vidv2:hover .titre_inside{
    left:0;
}
@keyframes blocvid {
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}
.video{
    position: relative;
    height:14vw;/* 1920*1080 pour 25vw*/
    min-height: 157px;
    width:100%;
    background-color: #e4e7e6;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.hover_video{
    position: absolute;
    background-color: rgba(0,0,0,0);
    height: 100%;
    width:100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    transition: all 0.3s;
}
.play_button{
    position: relative;
    fill: #ffffff;
    height: 20%;
    left:-100%;
    transition: left 0.2s;
}
.titre_inside{
    position: relative;
    text-align: center;
    font-size: 100%;
    font-weight: 200;
    left:100%;
    color:white;
    transition: left 0.2s;
}
.title_video{
    font-weight: 500;
    padding: 0 15px;
}
.desc_video{
    text-align: justify;
    padding: 0 15px;
    margin: 0;
}
#shadow{
    position: fixed;
    height:100vh;
    width:100vw;
    display: none;
    background-color: rgba(0,0,0,0.6);
    top:0;
    z-index: 10;
}
iframe{
    position: fixed;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    width:70vw;
    height:40vw;
    display: none;
    z-index: 11;
}
/*
#loader{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    background-color: red;
    height:100px;
    width:100px;
    border-radius: 0;
    animation: load 1s infinite ;
}
@keyframes load {
    0%{
        transform: translate(-50%,-50%) rotate(0);
        border-radius: 0;
    }
    50%{
        transform: translate(-50%,-50%) rotate(360deg);
        border-radius: 30%;
    }
    100%{
        transform: translate(-50%,-50%) rotate(720deg);
        border-radius: 0;
    }
}
*/
#loader{
    position: fixed;
    z-index: 2;
    height: 30px;
    width: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 5px solid transparent;
    border-left-color: white;
    border-right-color: white;
    border-radius: 100%;
    animation: rotate 500ms infinite linear;
}
@keyframes rotate {
    from{
        transform: translate(-50%,-50%) rotate(0);
    }
    to{
        transform: translate(-50%,-50%) rotate(360deg);
    }
}
.list_playlist{
    padding: 0;
    position: relative;
    width:100%;
    margin: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}
#bloc_playlist{
    position: relative;
    width:100%;
    height: 0px;
    transition: height 0.3s;
    background-color: #3D434D;
    overflow: hidden;
}
.list_playlist{
    padding-bottom: 30px;
}
.play_arrow{
    content:'';
    position: absolute;
    width: 0;
    height: 0;
    top:100%;
    left:50%;
    transform: translate(-50%,-100%);
    z-index: 2;
    transition: all 0.3s;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid white;
}







@media screen and (max-width: 960px) {
    #bloc_logo h1{
        font-size: 20px;
        padding-left: 10vw;
    }
    header{
        height:10vw;
        box-shadow: 0 -3px 10px black;
    }
    #back_select{
        width:40vw;
    }
    select{
        font-size: 15px;
    }
    #menu>h1{
        margin-top:30px;
        font-size: 25px;
    }
    .bloc_vid,.bloc_vidv2{
        width:40%;
        margin: 20px 25px 0px 25px;
        max-height: none;
        padding-bottom: 50px;
    }
    .video{
        height:22.5vw;
    }
    .bloc_titre_cat {
        margin-top: 20px;
    }
    .bloc_titre_cat p{
        font-size: 20px;
    }
    .bloc_titre_cat{
        height: 20px;
    }
    .bloc_vid::after, .bloc_vidv2::after {
        height:1px;
        margin-bottom: 25px;
    }
    .title_video{
        font-size: 15px;
    }
    .desc_video{
        font-size: 13px;
    }
    .hover_video{
        background-color: rgba(0,0,0,0.3);
    }
    .play_button{
        left:0;
    }
    .titre_inside{
        left:0;
        font-size: 15px;
    }
    iframe{
        position: fixed;
        top:50%;
        left:50%;
        transform: translate(-50%,-50%);
        width:90vw;
        height:50.6vw;
        display: none;
        z-index: 11;
    }
}
@media screen and (max-width: 680px) {
    .bloc_vid,.bloc_vidv2{
        width:80%;
        margin: 20px 25px 0 25px;
        max-height: none;
    }
    .video{
        height:45vw;
    }
    #back_select{
        width:50vw;
    }
    select{
        font-size: 3vw;
    }
}

::-webkit-scrollbar{
    width: 5px;
    cursor: pointer;
}
::-webkit-scrollbar-track {
    background-color: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: #23232B;
}
::-webkit-scrollbar-thumb:hover {
    width:10px;
}