/*
==========
= FOOTER =
==========
 */

footer {
    position: relative;
    width: 100%;
    overflow: visible;
    margin-top: 45px;
    background-color: var(--cfblue);
    color: var(--white);
    padding-top: 58px;
    padding-left: 25px;
    padding-right: 25px;
    font-weight: 400;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0%;
}
@media screen and (min-width: 768px) {
    footer {
        font-size: 22px;
        line-height: 38px;
        padding-top: 142px;
    }
}
.footer-content {
    display: block;
    position: relative;
}
footer:before {
    content: "";
    display: block;
    position: absolute;
    top: -42px;
    left: 0;
    right: 0;
    width: 100%;
    background-image: url(../images/ui/footer-waves.svg);
    background-position: center top;
    background-repeat: repeat-x;
    background-size: 1920px;
    height: 45px;
    max-width: 100%;
    overflow: hidden;
}
.footer-ship {
    width: 200px;
    height: 111px;
    position: absolute;
    top: -144px;
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .footer-ship {
        width: 409px;
        height: 226px;
        position: absolute;
        top: -274px;
    }
}

.footer-logo {
    width: 100%;
    max-width: 194px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
    .footer-logo {
        margin-bottom: 80px;
        max-width: 339px;
    }
}
.social-grp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 35px;
    max-width: 704px;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (min-width: 768px) {
    .social-grp {
        margin-bottom: 40px;
    }
}
.social-link {
    width: 32px;
}

@media screen and (min-width: 768px) {
    .social-link {
        width: 50px;
    }
}

.footer-copyright {
    margin-bottom: 35px;
}

@media screen and (min-width: 768px) {
    .footer-copyright {
        margin-bottom: 50px;
    }
}

.footer-nav {
    border-top: 1px solid var(--white);
    padding-top: 18px;
    margin-bottom: 33px;
}

.footer-nav-ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

@media (hover: hover) {
    footer a:hover {
        color: #82b3dd;
    }
}
