.footer {
    background-color: #0055A3;
    padding: 43px 30px 10px 30px;
}

.footer .wrapper {
    justify-content: space-between;
}

.footer .row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer .socials {
    display: flex;
    align-items: center;
    gap: 20px;
}
.footer .socials strong {
    font-size: 22px;
    line-height: 27px;
    color: #ffffff;
}
.footer .socials .social-container {
    display: flex;
    gap: 9px;
}

.footer .row .links {
    display: flex;
    gap: 60px;
    align-items: center;
}

.footer .row .links .logo {
    width: 113px;
    height: auto;
}
.footer .row .links .menu-list {
    list-style-type: none;
    display: flex;
    gap: 44px;
}
.footer .row .links .menu-list li > a {
    font-family: AmericanCaptain;
    font-size: 22px;
    line-height: 27px;
    color: #ffffff;
}

.footer .wrapper .copyright {
    justify-content: center;
    border-top: 1px solid #8B8B8B;
    padding-top: 19px;
    margin-top: 33px;
    font-size: 14px;
    line-height: 21px;
    color: #ffffff;
}
.footer .wrapper .copyright a {
    font-size: 14px;
    line-height: 21px;
    color: #ffffff;
}

@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1024px) {

}

@media screen and (max-width: 767px) {
    .footer {
        padding: 41px 20px 21px 20px;
    }

    .footer .row {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer .row .links {
        gap: 57px;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }
    
    .footer .row .links .menu-list {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .footer .row .links .menu-list li > a {
        line-height: 23px;
    }

    /* Socials */
    .footer .row .socials {
		justify-content: center;
		width: 100%;
        margin-top: 50px;
    }
    
    .footer .wrapper .copyright {
        margin-top: 37px;
    }
}