.bienvenida{
    width: 95%;
	max-width: 1300px;
	margin: 20px auto;
    box-shadow: 0 0 30px 0 rgba(0,0,0,0.70);
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    padding: 20px;
    /* border-radius: 5px; */
}

.bienvenida h2{
    text-align: center;
}

.bienvenida p{
    text-indent: 30px;
}

.contenedor_card{
    width: 100%;
    max-width: 1400px;
    /* height: 490px; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    /* border: inset 2px rgb(228, 13, 13); */
}

.contenedor_card .card{
    width: 45%;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.7);
    /* border-radius: 8px; */
    box-shadow: 0 2px 2px rgba(0,0,0,0.2);
    overflow: hidden;
    margin: 20px;
    text-align: center;
    transition: all 0.25s;
}

.contenedor_card .card:hover{
    transform: translateY(-15px);
    box-shadow: 0 12px 16px rgba(0,0,0,0.2);
}

.contenedor_card .card h4{
    font-weight: 600;
}

.contenedor_card .card p{
    padding: 0 1rem;
    font-size: 16px;
    font-weight: 300;
}

.contenedor_card .card a{
    font-weight: 500;
    text-decoration: none;
    color: #3498DB;
}

.contenedor_card .actual{
    width: 90%;
    text-align: right;
    padding-bottom: 15px;
    /* border: inset 2px rgb(228, 13, 13); */
}

.paginacion {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.paginacion a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.2);
}

.paginacion a:hover{
    background-color: rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 850px){
    .contenedor_card{
        width: 100%;
        max-width: 700px;
        /* height: 1500px; */
        display: flex;
        /* flex-wrap: nowrap; */
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .contenedor_card .card{
        width: 95%;
    }

    .bienvenida{
        max-width: 700px;
    }
}

@media screen and (max-width: 500px){
    .contenedor_card{
        width: 100%;
        max-width: 400px;
        /* height: 1500px; */
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
    }

    .contenedor_card .card{
        width: 95%;
        font-size: 0.7rem;
    }

    .contenedor_card .card p{
        font-size: 0.75rem;
    }

    .bienvenida{
        max-width: 400px;
        font-size: 0.7rem;
    }
}