/*Reuniones*/

.reuniones-g {
    display: flex;
    justify-content: center;
}

.divis {
    padding: 48px 16px;
    align-items: center;
    display: flex;
}

.divis a {
    font-size: 30px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: 5px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    height: 496px;
    width: 216px;
    background-color: #bebebe;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.jovenes {
    background-image: url(/images/cards/card-jovenes.jpg);
    background-size: cover;
    background-position: center;
}

.adolescentes {
    background-image: url(/images/cards/card-fireyoung.jpg);
    background-size: cover;
    background-position: center;
}

.hombres {
    background-image: url(/images/cards/card-hombres.jpg);
    background-size: cover;
    background-position: center;
}

.mujeres {
    background-image: url(/images/cards/card-mujeres.jpg);
    background-size: cover;
    background-position: center;
}

.matrimonios {
    background-image: url(/images/cards/card-matrimonios.jpg);
    background-size: cover;
    background-position: center;
}

.oracion {
    background-image: url(/images/cards/card-oracion.jpg);
    background-size: cover;
    background-position: center;
}

.general {
    background-image: url(/images/cards/card-domingo.jpg);
    background-size: cover;
    background-position: center;
}

.divis a:hover {
    filter: grayscale(0%);
    scale: 1.05;
}

@media (max-width: 1656px) {
    .divis {
        display:grid;
    }

    .divis a {
        height: 80px;
        width: 496px;
    }
}

@media (max-width: 600px) {
    .divis a {
        height: 80px;
        width: 296px;
    }
}