/* ==========================
   FOOTER
========================== */

.aer-footer{
    background:#0B4466; /*#0A3F5E;*/
    color:#FFFFFF;
    padding:70px 5% 40px;
	border-top:5px solid #FF7F2A;
}

/* CONTENEDOR */

.aer-footer-contenedor{

    display:grid;

    grid-template-columns:
        1.2fr
        1fr
        1.2fr;

    gap:70px;

    max-width:1400px;

    margin:auto;
}

/* LOGO */

.aer-footer-logo{

    max-width:300px;

    margin-bottom:30px;
}

/* TEXTO */

.aer-footer-texto{
    line-height:2;
    text-align:justify;
    color:#F0F0F0;
	font-family:Calibri;
}

/* TITULOS */

.aer-footer-col h3{
    margin-bottom:15px;
    font-size:18px;
    font-weight:600;
	font-family:Calibri;
}

/* LINEAS */

.aer-footer-linea{
    width:100%;
    height:2px;
    background:rgba(255,255,255,.25);
    margin:15px 0 25px;
}

/* MENU */

.aer-footer-menu{
    list-style:none;
    padding:0;
}

.aer-footer-menu li{
    margin-bottom:15px;
}

.aer-footer-menu a{
    color:#FFFFFF;
	font-family:Calibri;
    text-decoration:none;
    transition:.3s;
	text-align:left;
}

.aer-footer-menu a:hover{
	font-family:Calibri;
    color:#FF7F2A;
    padding-left:8px;
}

/* REDES */

.aer-redes{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.aer-redes a{
	font-family:Calibri;
    color:#FFFFFF;
    text-decoration:none;
    transition:.3s;
}

.aer-redes a:hover{
    color:#FF7F2A;
}

/* UBICACION */

.aer-ubicacion{
    display:flex;
    align-items:center;
    gap:20px;
	font-family:Calibri;
}

.aer-bandera{
    width:70px;
}

/* COPYRIGHT */

.aer-footer-copy{
    text-align:center;
    margin-top:25px;
    color:#EAEAEA;
	font-family:Calibri;
}

/* RESPONSIVE */

@media(max-width:900px){
    .aer-footer-contenedor{
        grid-template-columns:1fr;
        gap:40px;
    }

    .aer-footer-logo{
        max-width:250px;
    }

    .aer-footer-copy{
		font-family:Calibri;
        text-align:left;
    }
}