footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}
footer h5{
    display: flex;
    justify-content: flex-start;
    font-size: 1.8em;
    font-weight: 600;
    width: 80%;
    height: 20%;
}
footer > .subscribe {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    width: 90%;
    height: 300px;
    background-color: #006CF6;
    margin-top: 1%;
    margin-bottom: 1%;
    border-radius: 4px;
}
footer > .subcribe > h5{
    width: 90%;
    height: 20%;
    color: #f5f5f5;
    background-color: black;
}
footer > .subscribe > .input-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    height: 40%;
}
footer > .subscribe > .input-icon > input{
    width: 80%;
    height: 20%;
    border:  1px solid #f5f5f5;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    background-color: #006CF6;
    font-size: 1em;
    
}
footer > .subscribe > .input-icon > input::placeholder{
    color: #f5f5f5;
}
footer > .subscribe > .input-icon > input:focus{
    outline: none;
}
footer > .subscribe > .input-icon > ion-icon{
    width: 10%;
    height: 20%;
    color: white;
}
footer > .info-contact{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 90%;
    height: 300px;
    margin-top: 1%;
    margin-bottom: 1%;

}

footer > .info-contact > p{
    width: 80%;
    height: 14%;
}
footer > .social-networks{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 90%;
    height: 300px;
    margin-top: 1%;
    margin-bottom: 1%;
}
footer > .social-networks > .social-icon{
    display: flex;
    justify-content: flex-start;
    gap: 10%;
    width: 80%;
    height: 30%;
}
footer > .social-networks > .social-icon > ion-icon{
    width: 30px;
    height: 30px;
    background-color: #006CF6;
    padding: 2%;
    border-radius: 4px;
    color: #f5f5f5;
    transition: all ease-in-out;
    transition-duration: 0.3s;
}
footer > .social-networks > .social-icon > ion-icon:hover{
    transform: scale(0.9);
    background-color: #00000000;
    color: #006CF6;
}
@media only screen and (min-width: 425px){
    footer > .subscribe{
        width: 40%;
    }
    footer > .info-contact{
        width: 20%;

    }
    footer > .social-networks{
        width: 20%;

    }
    
}