*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.bg-dark{
    color:#ffffff;
}
main{
    width: 100%;
    height: auto;
    /* background: purple; */
    position: absolute;
}

.content-all{
    width: 100%;
    max-width: 1000px;
    /* background:red; */
    margin: auto;
    margin-top: 80px;
    /* border: 2px solid white; */
}

header{
    width: 100%;
    height: 60px;
    position: fixed;
    left: 0;
    top: 0;
    /* 60,100%, 50%  70, 80%, 30%, 0.9*/
    /* color violeta semi tranparente */
    background:#000000;
    /* background:hsla(300,95%, 25%, 0.7); */
}

#check{
    display: none;
}
#check:checked ~ .menu{
    width: 400px;
}

a:link, a:visited, a:active {
    text-decoration:none;
}
.menu{
    position: fixed;
    top: 60px;
    width: 0px;
    height: 100vh;
    background:#000000;
    /* background: hsla(300, 95%, 25%, 0.7); */
    transition: all 600ms cubic-bezier(1,0,0,1);
    transition-timing-function: cubic-bezier(1,0,0,1);
    overflow: hidden;
}
.menu li{
    list-style: none;
    padding: 16px;
    color: white;
    cursor: pointer;
    transition: all 300ms;
    display: block;
    width: 400px;
}

.menu li:hover{
    background: rgba(0,0,0,0.2);
}

.content-all label{
    position: fixed;
    width: 100%;
    max-width: 1000px;
    top: 14px;
    font-size: 26px;
    color: white;
    cursor: pointer;
    z-index: 10;
}

.content-all h2{
    position: fixed;
    width: 100%;
    max-width: 1000px;
    top: 18px;
    font-size: 26px;
    text-align: right; */
    /* color: white; */
}

/* #123456  va donde dice yellow*/
body{
    /* background:yellow; */
    color: #ffffff;
    background-color: #000000;
/* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='105' viewBox='0 0 80 105'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='death-star' fill='%233b0394' fill-opacity='0.22'%3E%3Cpath d='M20 10a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V10zm15 35a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V45zM20 75a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V75zm30-65a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V10zm0 65a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V75zM35 10a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V10zM5 45a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V45zm0-35a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V10zm60 35a5 5 0 0 1 10 0v50a5 5 0 0 1-10 0V45zm0-35a5 5 0 0 1 10 0v20a5 5 0 0 1-10 0V10z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
font-size: 16px;
font-family: 'Oswald', sans-serif 'Source Sans Pro';
}

a{
    color: #ffffff;
    text-decoration: none;

}
ul{
    list-style: none;
}
.contenedor{
    width: 90%;
    margin: auto;
}
.menu-btn{
    position: absolute;
    cursor:pointer;
    top:15px;
    right: 30px;
    z-index: 2;
    display:none;
}
hr{
    margin: 0px 0 ;
}
.btn{
    cursor: pointer;
    display: inline-block;
    border:0;
    font-weight:bold;
    padding: 10px 20px;
    background:#262626;
    color: #fff;
    font-size: 15px;
    border:1px solid #ffff;
    margin: 10px 0;
}
.btn:hover{
    opacity: .7;
}
.showcase h2,
.showcase p{
    margin-bottom: 10px;}
/*  prueba */
.contenedor .galeria-port{
    display: flex;
    justify-content:space-between;
    flex-wrap: wrap;
}
.contenedor .galeria-port{
    font-size: 20px;
    display: flex;
    justify-content:space-evenly;
    align-items: center;
    height: 200px;
    padding: 20px 0;
}
.imagen-port{
    width: 100%;
    height: 100px;
    margin-bottom: 90px;
    overflow:hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0,.5); */
}
.imagen-port > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.hover-galeria{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; */
    transform: scale(0);
    /* background: hsla(273, 91%, 27%, 0.7);  */
    background: hsla(300, 95%, 25%, 0.7);
    transition: transform .4s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.hover-galeria img{
    width: 50px;
}
.hover-galeria p{
    color:#fff;
}
.imagen-port:hover .hover-galeria{
    transform: scale(0);
}


/* noticias */

.news-cards{
    display: grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    gap:25px;
    margin: 10px 0 ;
}
.news-cards img{
    width: 100%;
    height: 160px;
}
.news-cards h3{
    font-size: 20px;
    margin: 10px 0 ;
}
.news-cards a{
    padding: 10px 0;
    color: #f2f2f2;
    text-transform: uppercase;
    display: inline-block;
    font-weight: bold;
}
.news-cards a:hover{
    text-decoration: underline;
}
/* .cards-banner-one{
    width: 100%;
    height: 350px;
    background: url('../img/oscuro.jpg')no-repeat center center/cover;
    margin-bottom:40px;
} */
.cards-banner-one.content{
    width: 40%;
    padding: 90px 0 0 30px;
    color: #ffffff;
}
.cards-banner-one p,
.cards-banner-one h2{
margin: 10px 0 20px 0;
}
/* segundp banner */
.cards-banner-two{
    width: 100%;
    height: 350px;
    background:url(' ../img/JUEGOSIEditor.jpg')no-repeat center center/cover;
}
.cards-banner-two2{
    width: 90%;
    height: 350px;
    margin:0 auto;
    background-size:cover;
    background:url(' ../img/nuevaport (1).jpg')no-repeat center center/cover;
}

.cards-banner-two.content{
    width: 50%;
    padding: 100px 0 0 30px;
    color: #ffffff;
}
.uno-tres-padding{
    width: 29%;
    float: left;
    margin: 4% 2% ;
}
.uno-tres-padding p{
    font-size:20px;
}
/* SOCIAL PARA LAS REDES */
.social{
margin: 50px;
}
.social p{
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}
.links{
    display:flex;
    align-items: center;
    justify-content: center;
}
.links a{
    margin: 0 30px;
    font-size:3rem;
}
.atras-pie{
    background-image:url("img/AROS AMARILLOS.jpg");
}
.footer{
    background:#2f3640;
    color:#616161;
    background:black;
    color:#fff;
    font-size: 12px;
    padding: 20px 0;
    text-align: center;
    padding-bottom:20px;
}
@media(max-width:778px,min-width:500px){
     .menu-btn{
    display: block;
}
        /* .nav-main ul.nav-menu {
         display:block;
         position:absolute;
         top: 0;
         left: 0;
         /* #2f3640 */
         /* background:purple;
         height: 100%;
         padding: 30px;
         opacity:.9;
         transform: translateX(-400px);
         transition:transform .5s ease-in-out;
     } */
     .nav-main ul.nav-menu li{
         padding: 20px;
         font-size: 14px;
     }

     .nav-main ul.nav-menu.show {
         transform: translateX(-20px);
     }
    .nav-main ul.nav-menu li{
        padding: 20px;
        font-size: 14px;
    }
    .nav-main ul.nav-menu-right {
        margin-right: 40px;
    }
    /* veo */
    .imagen-port{
        width:100%;
    }
    .news-cards{
        grid-template-columns:2fr 2fr;
    }
    .cards-banner-one .content{
        width: 80%;
    }
    .cards-banner-two .content{
        width: 80%;
    }
}
@media(max-width:576px){
    .contenedor{
    flex-direction: column;
    justify-content:center;
    align-items:center;
    }
    .imagen-port{
        width: 100%;
    }
    .news-cards{
        grid-template-columns:1fr;
    }
    .news-cards img{
        height: 200px;
    }
    .cards-banner-one.content,
    .cards-banner-two.content{
    width: 100%;
    padding: 60px 20px ;
    }
}
@media(max-width:992px){
    .contenedor{
    flex-direction: column;
    justify-content:center;
    align-items:center;
    }
    .imagen-port{
        width: 95%;
    }
    .news-cards{
        grid-template-columns:1fr;
    }
    .news-cards img{
        height: 200px;
    }
    .cards-banner-one.content,
    .cards-banner-two.content{
    width: 100%;
    padding: 60px 20px ;
    }
}
@media(max-width:1200px){
    .contenedor{
    flex-direction: column;
    justify-content:center;
    align-items:center;
    }
    .imagen-port{
        width: 95%;
    }
    .news-cards{
        grid-template-columns:1fr;
    }
    .news-cards img{
        height: 100px;
    }
    .cards-banner-one.content,
    .cards-banner-two.content{
    width: 100%;
    padding: 60px 20px ;
    }
}
