*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.footer-body{
    height: 50%;
    background-color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    color: white;
    padding: 2rem;
}
.logo img{
    height: 80px;
}

.footer-info ul{
    list-style: none;
}

.footer-info ul li{
    margin: 10px;
}

.footer-info .fa-solid{
    color: #0056b3;
    font-size: 20px;
    margin: 10px;
}

.footer-information ul{
    list-style: none;
}

footer h2{
    color: #0056b3;
}

.footer-information ul a{
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.footer-information ul li a:hover{
    text-decoration: underline;
}

.footer-information ul li a{
    transition: 5s ease;   
}

.footer-information ul li{
    margin: 10px;
    transition: 5s ease-in-out;
}

footer input{
    flex: 1 1;
    background-color: transparent;
    outline: none;
    padding: 0 10px;
    color: inherit;
    min-height: 45px;
    border: none;
}

footer button{
    width: 100px;
    border-radius: 50px;
    padding: 0 15px;
    min-height: 45px;
    background-color: #0056b3;
    color: #cbd7d1;
    font-weight: bold;
    outline: none;
    border: none;
    cursor: pointer;
}

footer form{
    border: 1px solid white;
    padding: 2px;
    border-radius: 50px;
    display: flex;
    width: 100%;
    max-width: 500px;
    font-size: 14px;
}

.copy-right{
    background-color: #0056b3;
    text-align: center;
    color: #cbd7d1;
}

@media screen and (max-width: 768px){
    .footer-body{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 1rem;
        text-align: center;
    }

    .logoo{
        width: 250px;
    }

    .footer-info, .footer-information, .newsletter{
        width: 400px;
    }
}