.footer {
    border-top: 11px solid #053868;
    background-color: #002e45;
    color: #ffffff;
    padding: 60px 0;
    font-family: 'Proxima Nova Rg';
    font-weight: 300;
}
.footer__logo {
    font-size: 28px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer__copy {
    margin-left: 16px;
    font-size: 16px;
}
.footer__title {
    font-size: 26px;
    margin-bottom: 24px;
}
.footer__text,
.footer__link {
    font-size: 18px;
    line-height: 1.6;
    display: block;
    color: #ffffff;
    text-decoration: none;
}
.footer__link {
    text-decoration: underline;
}
.footer__link:hover {
    opacity: 0.7;
}
.footer__social {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.footer__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.footer__icon:hover {
    opacity: 0.7;
}

.footer__icon img {
    transition: opacity 0.3s ease;
    width: 100%;
    height: auto;
}

.footer__icon:hover img {
    opacity: 0.7;
}

.footer__top {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
@media (max-width: 991px) {
    .footer {
        padding: 40px 0;
    }
    .footer__title {
        font-size: 22px;
    }
}
@media (max-width: 767px) {
    .footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .footer__copy {
        margin-left: 0;
    }
    .footer__social {
        justify-content: flex-start;
    }
}
