/* 
css - BEM
Date: 2022-02-10
*/

/*Font EXO*/
@font-face {
  font-family: 'Exo-light';
  src: url('../fonts/Exo-Light.ttf') format('woff2');
}

@font-face {
    font-family: 'Exo';
    src: url('../fonts/Exo-Regular.ttf') format('woff2');
    font-style: normal;
}

@font-face {
  font-family: 'Exo-bold';
  src: url('../fonts/Exo-Bold.ttf') format('woff2');
}

*{
    font-family: 'Exo';
    color: #fff;
}

:root {
    --main-bg-color: #000;
    --cblack: #000;
    --cwhite: #fff;
    --cred: #f00;
    --cgray: #333;
}

body{
    margin: 0;
    background: #000;
}
img{
    border: 0;
}
a{
    text-decoration: none;
}
h1,
h2{
    text-align: center;
    font-weight: lighter;
}
p{
    font-family: 'Exo-bold';
    font-size: 12px;
    text-align: center;
}
iframe{
    width: 100%;
    height: 300px;
}
.p14{
    font-size: 14px;
}
.p32{
    font-size: 32px;
}
.img-responsive{
    width: 100%;
}
.uppercase{
    text-transform: uppercase;
}

/*HEAD*/
header{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    max-height: 100px;
    padding:10px 0;
    border-bottom: 3px solid var(--cred);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    background: var(--cblack);
    width: 100%;
}

/*SECTION VIDEO*/
.video-container{
    background: url(../img/background.jpg) no-repeat top center;
    background-size: cover;
    height: 500px;
    margin-top: 88px;
    padding: 50px 0px;
    text-align: center;
}
.video-contador__next{
    font-family: 'Exo-bold';
    font-size: 32px;
    padding-bottom: 25px;
}
.video-contador__list{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-bottom: 35px;
}
.video-circle{
    width: 34px;
    padding: 4px 18px;
    border: 2px solid var(--cwhite);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
    font-family: 'Exo-bold';
    font-size: 16px;
}
.video-circle__number{
    font-family: 'Exo-bold';
    font-size: 32px;
}
.video-display{
    background: var(--cblack);
    margin: 0 auto;
    width: 532px;
    height: 300px;
}

/*SECTION MENU*/
.menu-container{
    background: var(--cgray);
    height: 300px;
    padding: 25px 0px 50px;
}
.menu-list{
    display: flex;
    margin: auto 160px;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 0;
}
.menu-list li{
    display: inline-block;
    cursor: pointer;
    width: 180px;
    height: 180px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin: 5px;
    position: relative;
}
.menu-list__imgPlay{
    width: 180px;
    height: 180px;
}
.menu-list__content{
    background: var(--cred);
    width: 140px;
    text-align: center;
    font-size: 14px;
    padding: 52px 20px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: all 400ms ease-out;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
}
.active>.menu-list__content,
.menu-list li:hover>.menu-list__content{
    opacity: 0.8;
    visibility: visible;
}
.menu-list__text{
    font-family: 'Exo-bold';
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    padding: 5px 0;
}
/*li:hover >.menu-list__text{
    color: var(--cred);
}*/

/*FOOTER*/
footer{
    background: var(--cblack);
    display: flex;
    height: 120px;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 90px;
}
footer div{
    width: 177px;
    text-align: center;
    padding-bottom: 5px;
}
.footer-privacidad p{
    font-size: 12px;
}
.footer-rrss__list{
    display: flex;
    padding: 0;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}
.footer-rrss__list li{
    display: inline-block;
    margin: 0 10px;
}

/*RESPONSIVE*/
/*Tablet*/
@media (max-width: 900px) {
    .menu-list{
        margin: auto 15%;
    }
    .menu-list__imgPlay{
        width: 150px;
        height: 150px;
    }
    .menu-list__content{
        width: 134px;
        font-size: 9px;
        padding: 56px 8px;
    }
}
@media (max-width: 700px) {
    .menu-list__imgPlay{
        width: 110px;
        height: 110px;
    }
    .menu-list__content{
        width: 94px;
        font-size: 8px;
        padding: 38px 8px;
    }
}
@media (max-width: 630px){
    footer{
        flex-direction: column;
        height: 280px;
    }
    footer div{
        width: auto;
    }
    .footer-privacidad p{
        font-size: 20px;
    }
}
/*Movil*/
@media (max-width: 568px){
    .video-display{
        width: 98%;
    }
    .menu-list__imgPlay{
        width: 80px;
        height: 80px;
    }
    .menu-list__content{
        width: 60px;
        font-size: 5px;
        padding: 30px 10px;
    }
    .slash{
        display: none;
    }
}
@media (max-width: 500px){
    .p32{
        font-size: 24px;
    }
    .menu-container{
        height: 200px;
    }
    .menu-list__text{
        font-size: 10px;
    }
}
