footer {
    padding: 80px 0 58px;
    background-color: #1b1b1b;
}
.footer-content {
    max-width: 1680px;
    padding: 0 90px;
    margin: 0 auto;
}
.footer-main {
    display: flex;
    margin-bottom: 125px;
}
.footer-main h2 {
    color: #8d8d8d;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.37;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.footer-main p {
    color: #fff;
    line-height: 1.6;
}
.footer-main dd.social-box {
    margin-top: 21px;
}
.footer-main dd.social-box li a:hover {
    color: #000;
    background-color: #fff;
}
.footer-main .footer-about {
    width: 53.76%;
    padding-right: 11.86%;
}
.footer-copyright {
    color: #8d8d8d;
    font-size: 14px;
}
.footer-copyright>ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-copyright a {
    font-size: 14px;
}
.footer-hover-link {
    transition: all .3s;
    text-decoration: underline;
}
.footer-link li a:hover,
.footer-hover-link:hover {
    color: #ddd;
    text-decoration: none;
}

.footer-link{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 550px) {
    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
    .footer-main .footer-about {
        width: 100%;
    }
    .footer-content {
        padding: 0 20px;
    }
}