/*PIE DE PAGINA*/
.container-footer{
    width: 100%;
    position: relative;
    display: flex;
    background-color: #112c66;
    height: 100%;
    justify-content: space-evenly;
    margin-top: 40px;
    z-index: 101;
}
.footer-container{
    padding: 30px 100px 30px 0px;
}
.footer-container img{
    width: 400px;
}
.footer-container h2{
    font-size: 25px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: aliceblue;
    padding-bottom: 15px;
}
.footer-container p{
    font-size: 18px;
    font-family: "Noto Sans", sans-serif;
    color: white;  
}
.icon{
    text-align: center;
    font-size: 35px;
}
.icon a {
    color: white
}
.icon a:hover {
    color: black
    
}
.copyright{
    background-color:  rgb(18, 27, 47);
    color: rgb(230, 228, 228);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    position: relative;
    padding: 15px 0 15px 0;
    text-align: center;
    height: 50px;
    z-index: 101;
}
/*Responsive Footer 1400px*/
@media (max-width: 1400px){
.footer-container{
    padding: 0;
    padding: 20px
}
}
/*Responsive Footer 750px*/
@media (max-width: 750px){

.container-footer{
    flex-flow: column wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}
.footer-container{
    width: 90%;
    padding: 0;
    padding: 20px 0 20px 0;
    text-align: justify;
    text-align: center;
}

.footer-container h2{
    font-size: 18px;
    text-align: center;
}
.footer-container p{
    font-size: 15px;

}
.footer-container img{
    display: block;
    width: 200px;
    margin: auto;
}
.copyright{
    font-size: 15px;
    padding: 10px 0 35px 0;
    text-align: center; 
}
}