:root {
    --primario: #195e9c;
    --blanco: #ffffff;
    --negro: #000000;
    --celeste: #bbd8ed;
}

/* global */
html {
    font-size: 62.5%;
    box-sizing: border-box;
    scroll-snap-type: y mandatory;
}

*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-size: 16px;
    /* 1rem = 10px */
    font-family: "Titillium Web", sans-serif;
    margin: 0;
}

/* inicio de codigo */

.logo img {
    display: block;
    margin: 0 auto;
    width: 10rem;
}

.navegacion nav {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    background-color: var(--primario);

}

.navegacion a {
    text-decoration: none;
    color: #ffffff;
    padding: 1rem;
}

.navegacion a:hover {
    background-color: var(--celeste);
    color: var(--negro);
    padding: 1rem;
    font-weight: 700;
}

.inicio {
    background-image: url(../img/inicio.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 480px;
    position: relative;
    margin-bottom: 2rem;
}

.contenido-inicio {
    position: absolute;
    background-color: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.contenido-inicio h2,
.contenido-inicio p {
    color: var(--blanco);
}

.contenido-inicio .ubicacion {
    display: flex;
    align-items: flex-end;
}

.contenido-inicio h2 {
    font-weight: 400;
    font-size: 8rem;
    padding: 2rem;

}

.inicio-doble {
    display: flex;
    flex-direction: row;
    justify-content: center;
 
}

.inicio-doble p {
    font-size: 3rem;
    padding-top: 3rem;
    padding-left: 2rem;
}

.boton {
    background-color: var(--primario);
    color: var(--blanco);
    padding: 1rem 3rem;
    margin-top: 2rem;
    font-size: 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5rem;
    width: auto;
    text-align: center;
    border: none;
}

.contenedor {
    max-width: 120rem;
    margin: 0 auto;
}


.sombra {
    box-shadow: 0px 5px 15px 0px rgba(79, 79, 79, 0.56);
    background-color: var(--blanco);
    padding: 2rem;
    border-radius: 1rem;
}

.nosotros {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nosotros h3 {
    text-align: center;
    padding: 2rem;
    font-size: 3rem;
    color: var(--primario);
}

.nosotros p {
    text-align: center;
    line-height: 1.8;
}

.contacto {
    padding: 5rem;
}

.contacto h4 {
    font-size: 3rem;
    color: var(--primario);
    text-align: center;
}

.contacto-contenido {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 2rem;
}

.ubi a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--negro);
}

.ubi {
    text-align: center;
    line-height: 2;
}

.ubi h5 {
    font-size: 3rem;
}

.horarios h6 {
    font-size: 3rem;
}



.horarios {
    text-align: center;
    line-height: 2;
}

.mapa iframe {
    width: 80rem;
    display: block;
    margin: 0 auto;
    height: 30rem;
    margin-top: 3rem;
}

footer {
    background-color: var(--primario);
    color: var(--blanco);
    padding: 5rem;
    text-align: center

}

.construccion {
    background-color: var(--primario);
    padding: 5rem;
}

.construccion h3 {
    color: var(--blanco);
    text-transform: uppercase;
    text-align: center;
    font-size: 3rem;
    padding: 2rem;
}

.iconos-construccion img {
    width: 7rem;
    display: block;
    margin: 0 auto;
    
}

.iconos-construccion p {
    text-align: center;
    color: var(--blanco);
    font-weight: 700;
    padding: 2rem;
    font-size: 2rem;
}

section {
    margin: 0 !important;
}

