:root 
{
--azul: #00175A;
--blanco: #ffffff;
--naranja: #D74300;
--gris: #969696;
--azulClaro: #002349d8;
--verde: #0AB636;
--fuentePrincipal: "Raleway", sans-serif;
}

/* Bloque 1 rem= 10 pixeles  */
html 
{
    font-size: 62.5%;
    box-sizing: border-box;
}

*, *:before, *:after 
{
    box-sizing: inherit;
}


body
{
    font-family: var(--fuentePrincipal);
    font-size: 1.6rem;
}

h1,h2,h3 
{
    font-weight: 900;
    margin: 0;
    color: var(--azul);
}

p
{
    margin: 0;
}

a
{
    text-decoration: none;
}

img
{
    display: block;
    max-width: 100%;
}

.contenedor {
    max-width: 120rem;
    margin: 0 auto;
    width: 90%;
}

/** -- Utilidades -- **/
.text-center {
    text-align: center;
}
.mt-5 {
    margin-top: 5rem;
}

/* --- Contacto --- */

.titulo-contacto {
    text-align: center;
    margin: 4rem 0 4rem 0;
    text-transform: uppercase;
    font-size: 4rem;
}

.contenido-contacto {
    display: flex;
    flex-direction: column;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 2rem;
    color: var(--azul);
}

@media (min-width: 992px) {
    .contenido-contacto {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: unset;
    }
}

.info-contacto
{   
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

@media (min-width: 992px) {
    .info-contacto {
        margin-bottom: 0;
    }
}

.info-contacto svg {
    width: 3rem;
    height: 3rem;
}

.info-contacto div:nth-child(5) {
    font-weight: 700;
}

.descripcion-contacto {
    font-size: 1.6rem;
    padding: 2rem;
    text-align: justify;
}

.cel-contacto {
    display: grid;
    grid-template-columns: 3rem 1fr;
    line-height: 1.6;
    padding-left: 4rem;
    margin-bottom: 1rem;
}

.cel-contacto span {
    font-weight:700;
}

.tel-contacto {
    display: grid;
    grid-template-columns: 3rem 1fr;
    line-height: 1.6;
    padding-left: 4rem;
    margin-bottom: 1rem;
}

.tel-contacto span {
    font-weight: 700;
}

.email-contacto {
    display: grid;
    grid-template-columns: 3rem 1fr;
    line-height: 1.6;
    padding-left: 4rem;
    margin-bottom: 3rem;
}

.email-contacto span {
    font-weight: 700;
}

/* -- Mapa - Ubicación -- */

.mapa-contacto {
    display: flex;
    justify-content: center;
}

.mapa-contacto iframe{
    max-width: 90%;
}

@media (min-width: 768px) {
    .mapa-contacto iframe{
        max-width: 60rem;
    }
}
