@font-face {
    font-family: 'Archivo Black', sans-serif;
    font-family: 'Lato', sans-serif;
    font-family: 'Roboto', sans-serif;
    font-family: 'Questrial', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
    background: #939393;
}

footer {
    width: 100%;
	height: auto;
	display: block;
    font-size: 0.9em;
    background: rgba(0,72,138);
}

.contenedor_pie {
    width: 100%;
    margin: 2% auto 3%;
    display: flex;
    flex-direction: row;
}

#Lett_contactenos {
    width: 50%;
    height: auto;
}

#Lett_contactenos h1 {
    width: 95%;
    height: 100%;
    margin: 25% 0 0;
    text-align: right;
    color: #fff;
    opacity: 0.5;
    font-size: 3em;
    letter-spacing: 0.02em;
}

#info_direccion {
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.direccion_pie {
    width: 100%;
}

.direccion_pie li {
    width: 100%;
    margin: 10px 0;
    list-style: none;
	align-items: center;
    display: flex;
    flex-direction: row;
}

.direccion_pie li a {
    width: 100%;
    display: flex;
    text-decoration: none;
    flex-direction: row;
}

.direccion_pie li img {
    width: 30px;
    height: 30px;
    display: block;
}

.direccion_pie h3 {
    width: 100%;
	margin: 30px 0 10px;
    font-size: 1.4em;
    letter-spacing: 0.05em;
    font-family: 'Questrial', sans-serif;
    color: rgba(255,255,255,0.7);
    border-bottom: 2px solid rgba(255,255,255,0.7);
}

.direccion_pie p {
    width: 100%;
    display: block;
    margin: 0;
    padding: 0 0 0 10px;
    font-family: 'Lato', sans-serif;
    font-size: 1.2em;
    color: white;
}

.privacidad {
    width: 100%;
    height: 10%;
    background: #333;
}

.privacidad p {
	width: 100%;
	padding: 10px 0;
	margin: 0 auto;
    color:#fff;
    opacity: 0.7;
    text-align: center;
}

@media (max-width:1080px) {

    #Lett_contactenos {
        width: 50%;
        height: auto;
    }

    #Lett_contactenos h1 {
        width: 90%;
        margin: 40% 0 0;
        font-size: 2.5em;
    }

    .direccion_pie {
        width: 100%;
    }

    .direccion_pie li img {
        width: 25px;
        height: 25px;
    }

    .direccion_pie h3 {
        font-size: 1.1em;
    }

    .direccion_pie p {
        font-size: 1.1em;
    }
}


@media (max-width:768px) {

    #Lett_contactenos h1 {
        width: 90%;
        margin: 40% 0 0;
        font-size: 2.1em;
    }

    .direccion_pie {
        width: 100%;
    }

    .direccion_pie li img {
        width: 22px;
        height: 22px;
    }

    .direccion_pie h3 {
        font-size: 1.1em;
    }

    .direccion_pie p {
        font-size: 1em;
    }
    
    .privacidad p {
        font-size: 0.8em;
    }
}

@media (max-width:640px) {
    
    footer {
        font-size: 0.8em;
    }

    .contenedor_pie {
        flex-direction: column;
    }

    #Lett_contactenos {
        width: 100%;
    }

    #Lett_contactenos h1 {
        width: 100%;
        margin: 3% 0;
        text-align: center;
        font-size: 2em;
    }

    #info_direccion {
        width: 95%;
    }

    .direccion_pie {
        width: 95%;
        margin-left: 10%;
    }

    .direccion_pie li img {
        width: 25px;
        height: 25px;
        display: block;
    }

    .direccion_pie h3 {
        font-size: 1.3em;
    }

    .privacidad p {
        font-size: 0.7em;
    }
	
}