@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body{
    font-weight: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

.contenedor{
    background: url(/img/bg_cardpx.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    /*background: linear-gradient(90deg, 
    rgba(5, 72, 82, 1) 0%,
    rgba(9, 39, 79, 1) 50%,
    rgba(51, 47, 83, 1) 100%);*/
    margin: 0 auto;
    padding: 0 auto;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
} 

img{
    width: 100%;
}

.c-card{
    display: flex;
    padding: 20px;
}

.card{
    max-width: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: #1a1a1ae3;
    box-shadow: 5px 5px 30px 7px rgba(0, 0, 0, .25),
    -5px -5px 30px 7px rgba(0, 0, 0, 0.22);
}

.card_banner{
    position: relative;
}

.card_banner img{
    display: block;
}

.background{
    position: absolute;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.795);*/
    display: flex;
    align-items: center;
}

.c_background{
    display: flex;
    justify-content: center;
    padding: 0 35px;
    width: 100%;
}

.card_poster img{
    max-width: 115px;
    border-radius: 5px;
    animation: poster 2s linear 2s infinite alternate;
}

@keyframes poster{
    0%{
        transform: scale(1,1);
    }
    100%{
        transform: scale(1.05, 1.05);
        /*box-shadow: 0px 0px 10px 7px rgba(172, 172, 172, 0.25);*/
    }
}

.card_banner_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 0px 20px 0px;
    text-align: center;
}

.content_tittle{
    font-size: 1.8rem;
    font-weight: 700;
    color: #f3f3f3;
    margin-bottom: 0;
}

.content_subtittle{
    font-size: 1rem;
    font-weight: 400;
    color: #d8d8d8;
    margin: 0;
}

.content_btn{
    cursor: pointer;
    border: 1px solid rgb(90, 26, 26);
    background-color: transparent;
    border-radius: 5px;
    color: #d8d8d8;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    transition: all 0.6s ease;
}

.content_btn :hover{
    color: rgb(130, 33, 33);
}

.content_widgets i{
    cursor: pointer;
    margin-top: 190px;
    color: #fff;
    padding: 8px;
    background-color: #002973;
    border-radius: 20%;
    transition: all 0.4s ease;
}

.content_widgets i:hover{
    color: #00CCFF;
    background-color: #002973;
    
}

.drop{
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.drop_rotate{
    transform: rotate(180deg);
}

.drop i{
    display: block;
    cursor: pointer;
    font-size: 1.8rem;
    color: rgb(204, 204, 204, 0.179);
    transition: all 0.6s ease;
}

.drop i:hover{
    color: rgb(230, 230, 230);
}

.drop_active{
    height: 260px!important;
}

.card_descripcion{
    height: 0px;
    transition: all 0.6s ease;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 30px 7px rgba(0, 0, 0, .25),
    -5px -5px 30px 7px rgba(0, 0, 0, 0.22);
    background: url(/img/bg_pixels.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /*background-color: rgba(0, 0, 0, 0.795);*/
}

.c_card_descripcion{
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
}

.card_descripcion_texto h1{
    font-size: 1.2rem;
    font-weight: 400;
    text-transform: uppercase;
    color: #acacac;
    margin: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid#4d4d4d;
}

.card_descripcion_texto p{
    font-size: 0.9rem;
    font-style: italic;
    text-align: justify;
    color: #a1a1a1;
}

.card_descripcion_img{
    display: flex;
    justify-content: flex-end;
    
}

.usuario{
    width: 30px;
    height: 30px;
    cursor: pointer;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid#414141;
    transition: all 0.3s ease;
}

.usuario:hover{
    border-color: #d8d8d8;
}

.usuario img{
    position: absolute;
    top: -5px;
}

@media (max-width:640px){
    .contenedor{
        display: block;
        width: 450px;
    }
    .card{
        display: block;
    }
}