footer.footer{
    background: #000;
    padding: 50px 0;
}
.footer__content {
    font-family: 'NunitoSans', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 2vw ,18px);
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer__top{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 32px;
}
.footer__logo {
    width: 125px;
}
.footer__social{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer__social .footer__social__title{
    font-size: inherit;
    text-align: center;
    margin: 0;
}
.footer__social__links{
    display: flex;
    align-items: center;
    gap: 24px;
}
.footer__social__links a{
    width: 30px;
    height: 30px;
}
.footer__copyright {
    margin-bottom: 10px;
}
.footer__links {
    width: 100%;
    display: flex;
    gap: 20px;
}
.footer__links .footer__item {
    position: relative;
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
}
.footer__links .footer__item:hover {
    text-decoration: none;
}
@media (max-width: 991px) {
    footer {
        padding: 30px 0;
    }
    .footer__content{
        align-items: center;
    }
    .footer__top{
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    .footer__logo {
        width: 120px;
    }
    .footer__social__links{
        justify-content: center;
    }
    .footer__links {
        align-items: center;
        justify-content: unset;
        flex-direction: column;
        gap: 15px;
    }
    .footer__links .footer__separator {
        display: none;
    }
}

