footer {
    left: 0;
    bottom: 0;
    width: 100%;

    background-color: #063453;
    padding: 60px 0 30px 0;
    margin: auto;
    overflow: hidden;
}

.footer {
    width: 90%;
    max-width: 1500px;
    margin: auto;

    display: flex;
    justify-content:space-around;
    align-items: center;
    flex-direction: row;
    
    color: white;
    text-align: center;
    overflow: hidden;
}

.footer-logo {
    background-color: #fff;
    border-radius: 50%;
    height: 320px;
    width: 320px;
    padding: 5px;
    margin: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo img {
    width: 350px;
}

.footer-logo img:hover {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.footer-links, .footer-contact {
    height: 300px;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    text-align: left;
    flex-direction: column;
    margin: 0 50px;
    width: 300px;
}


.footer-links h3, .footer-contact h3{
    font-size: 25px;
    font-weight: 700;
    color: #fe6800;
    border-bottom:#fe6800 5px solid;
}

.footer-links li, .footer-contact li{
    list-style: none;
    margin: 10px 5px 0 5px;
}

.footer-contact ul {
    width: 400px;
}

.footer-links a, .footer-contact p{
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    transition: all 0.3s ease-in-out;
}

.footer-links a:hover{
    color: #fe6800;
}

.final{
    margin-top: 10px;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fe6800;
}

@media (width < 1158px){
    .footer-logo{
        display: None;
    }
}

@media (width < 768px){
    .footer{
        flex-direction: column;
    }
    .footer-links, .footer-contact{
        width: 100%;
    }
    .footer-links, .footer-contact{
        align-items: center;
        text-align: center;
    }
}