@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Rajdhani:wght@300;400;500;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.header{
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #424753;
    padding: 2rem 0;
}

.header img{
    height: 100%;
    border-radius: .3rem;
}

/*presenta*/
.presenta{
    width: 100%;
    background-color: #e0e0e5;
    text-align: center;
    padding: 1rem 0;
}

h1{
    display: inline-block;
    font-family: "Rajdhani", sans-serif;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 10px;
    border-bottom: 1px solid #adadad;
}

h2{
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
}

h3{
    font-weight: 300;
}

.sitio{
    color: #424753;
    text-align: center;
}

/*contacto*/
.cvs{
    width: 100%;
    background-color: #eceeef;
    padding: 20px;
}

.contenido_col1{
    color: #000;
    text-align: center;
    font-size: 20px;
}

.contenido_col1 p{
    padding-bottom: 10px;
}

.contenido_col1 a{
    color: #065f24;
    text-decoration: none;
}

.contenido_col1 a:hover{
    color: #0f8b38;
}

/* footer */
footer{
    background: #424753;
    padding: 12px;
    display: flex;
    justify-content: center;
}

.title_footer{
    color: #fff;
    text-align: center;
}

.title_redes{
    background-color: #000;
    padding-top: 20px;
}

.redes{
    gap: 20px;
    padding: 16px;
}

.redes a{
    color: #e0e0e5;
}

.redes a:hover{
    color: #fff;
}

@media screen and (max-width: 768px){
    nav, .row{
        flex-direction: column;
    }
    .portada img{
        width: 100%;
    }
    .seccion{
        width: 100%;
    }
    .contenido_texto_mapa{
        padding: 0 0 20px 0;
    }
    aside img{
        padding-bottom: 20px;
    }
    .contenido_col1{
        padding-bottom: 20px;
    }
}