.hero-image{
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../Common/ImagenIglesia.JPG");
    height: 25vh;
    max-width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
  
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--background-white-color);
    font-size: 5vw;
    font-weight: bold;
    font-family: Futura,sans-serif;;
}


.descripcion {
    width: 90%;
    margin-left: 5%;
    height: 60vh;
    text-align: center;
    color: var(--background-dark-color);
    margin-top: 5%;
}

.nuestrosColaboradores {
    width: 90%;
    margin-left: 5%;
    color: var(--background-dark-color);
    margin-top: 5vh;
    font-size: 22px;
    text-align: center;
    letter-spacing: 5px;
}

.descripcionColaboradores {
    width: 90%;
    margin-left: 5%;
    height: 70vh;
    text-align: center;
    color: var(--background-dark-color);
    margin-top: 5%;
}
.nuestrosColaboradoresContainer {
    width: 90%;
    height: 240vh;
    margin-left: 5%;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 75vh 75vh 75vh;
    grid-row-gap: 5vh;
    grid-template-areas: 
    "pastor1"
    "pastor2"
    "pastor3";
}

.pastor1 {
    grid-area: pastor1;
}
.pastor2 {
    grid-area: pastor2;
}
.pastor3 {
    grid-area: pastor3;
}

.ficha {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 50% 30% 10% 10%;
    grid-template-areas: 
    "imagenColaborador"
    "nombreColaborador"
    "puestoColaborador"
    "contactoColaborador"
}

.imagenColaborador {
    grid-area: imagenColaborador;
    width: 90%;
    height: 57vh;
    margin-left: 5%;
    align-self: center;
}

.nombreColaborador {
    grid-area: nombreColaborador;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.puestoColaborador { 
    grid-area: puestoColaborador;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}

.contactoColaborador {
    grid-area: contactoColaborador;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}



@media only screen and (max-height : 666px) and (orientation : portrait){ /*iphone SE*/
    .descripcion{
        height: 72vh;
    }
}

@media only screen and (max-height : 813px) and (min-width: 374px) and (orientation : portrait){ /*iphone X and 8Plus*/
    .descripcion{
        height: 55vh;
    }
}

@media screen and (max-width: 1024px) and (max-height : 768px) and (orientation : landscape){ /*Ipad mini and normal */
    .hero-image{
        height: 50vh;
    }

    .descripcion{
        height: 35vh;
        width: 90%;
        margin-left: 5%;
        overflow: hidden;
    }

    .descripcionColaboradores{
        height: 38vh;
    }

    .imagenColaborador {
        width: 20vw;
        height: 40vh;
        margin-left: 40vw;
    }


    .nuestrosColaboradoresContainer {
        width: 90%;
        height: 70vh;
        display: grid; 
        margin-top: 5%;
        grid-template-columns: 33% 33% 33%;
        grid-template-rows: 100%;
        grid-template-areas: 
        "pastor1 pastor2 pastor3";
        overflow-y: hidden;
    }


    .imagenColaborador {
        width: 90%;
        height: 57vh;
        margin-left: 5%;
        align-self: center;
    }

}

@media screen and (min-width: 1025px){
    .hero-image{
        height: 50vh;
    }
    .hero-text {
        font-size: 55px;
    }
    .nuestrosColaboradores {
        font-size: 55px;
    }

    .descripcion{
        height: 25vh;
        width: 90%;
        margin-left: 5%;
    }

    .descripcionColaboradores{
        height: 25vh;
    }

    .nuestrosColaboradoresContainer {
        width: 90%;
        height: 70vh;
        display: grid; 
        margin-top: 5%;
        grid-template-columns: 33% 33% 33%;
        grid-template-rows: 100%;
        grid-template-areas: 
        "pastor1 pastor2 pastor3";
        overflow-y: hidden;
    }

    .imagenColaborador {
        width: 90%;
        height: 57vh;
        margin-left: 5%;
        align-self: center;
    }
}