.hero-image{
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../Common/ImagenIglesia.JPG");
  height: 35vh;
  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: 25px;
}

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

.visitanosContainer{
    width: 100%;
    height: 120vh;
    margin-top: 10vh;
    overflow-y: hidden; 
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 40% 60%;
    background-color: var(--background-dark-color);
    grid-template-areas: 
    "googleMaps"
    "direccion";
    margin-bottom: 10%;
}

.googleMaps{
    grid-area: googleMaps;
    overflow-y: hidden; 
}

.gmap_canvas{
    height: 100%;
    width: 100%;
    margin-top: 5%;
}
.direccion{
    grid-area: direccion;
    margin: 10%;
    color: var(--background-white-color);
    display: grid;
    justify-self: center;
    grid-template-columns: 100%;
    grid-template-rows: 50% 35% 15%;
    grid-template-areas: 
    "direccionTexto"
    "timer"
    "concertarCita"
}

.direccionTexto{
    grid-area: direccionTexto;
    text-align: center;
    font-size: 1.5em;
}

.timer{
    grid-area: timer;
    justify-self: center;
    font-weight: bold;
    font-size: 25px;
}

.concertarCita{
    grid-area: concertarCita;
    align-self: center;
    border-radius: 8px;
    max-width: 50%;
    margin-left: 25%;
    font-size: 20px;
    color: var(--background-dark-color);
    background-color: var(--background-white-color);
    transition: all .2s ease-in-out
}

.concertarCita a{
    text-decoration: none;
    color: var(--background-dark-color);
}

.concertarCita:hover{
    transform: scale(1.05);
}
@media screen and (max-width: 1024px) and (max-height : 768px) and (orientation : landscape){ /*Ipad mini and normal */


    .visitanosContainer{
        height: 55vh;
        grid-template-columns: 50% 50%;
        grid-template-rows: 100%;
        background-color: var(--background-dark-color);
        grid-template-areas: 
        "googleMaps direccion"
    }

    .gmap_canvas{
        margin-left: 5%;
    }
}

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

    .descripcion{
        height: 25vh;
    }


    .visitanosContainer{
        height: 55vh;
        grid-template-columns: 50% 50%;
        grid-template-rows: 100%;
        background-color: var(--background-dark-color);
        grid-template-areas: 
        "googleMaps direccion"
    }

    .direccionTexto{
        font-size: 28px;
    }

    .gmap_canvas{
        margin-left: 5%;
    }

    .timer{
        font-size: 28px;
        font-weight: bold;
    }

    .concertarCita{
        font-size: 28px;
        max-height: 70%;
    }
}

