*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
background: #000000;
}
.container{
	width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
	margin: 5;
}

.container-video{
    width: 100%;
    height: 75vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .slider{
    position: absolute;
    top: 0;
    left: 0;
    
}


.container ul{
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.container ul li{
	width: 100%;
    list-style: none;
    cursor: pointer;
    margin: 5px;
}


.container ul li video{
    width: 100%;
    transition: all 0.3s;
}
.container ul li video:hover{
    transform: scale(1.2);
}

video{
    width: 100%;
    height: 100%;
}



.wrap-texto{
font-family: "Ubuntu", sans-serif;
color: #00d6d6;
text-align: center;
width: 100%;
}