.footer {
    background-color: #131217;
    padding: 75px 0;
    font-family: 'Inter', sans-serif;
}

.footer ul {
    list-style: none;
    margin: 0;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
}

.footer img, .footer svg {
    display: block;
}

.footer img {
    max-width: 100%;
}

.footer,
.footer a {
    color: #fff;
}

.footer__container {
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
}

.footer__logo {
    display: flex;
    justify-content: center;
}

.footer__logo img {
    width: 192px;
    height: 161px;
    object-fit: contain;
}

.footer__menu>li:not(:first-child) {
    margin-top: 30px;
}

.footer__menu a {
    display: block;
    font-size: 18px;
    line-height: 28px;
    transition: color .4s;
}

.footer__menu a:hover {
    color: #F78E1A;
}

.footer__menu-submenu>a {
    font-weight: 700;
    font-size: 22px;
    line-height: 32px;
    color: #757575;
    text-transform: uppercase;
}

.footer__menu-submenu.active>a {
    color: #F78E1A;
}

.footer__menu-submenu>a div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 0;
    right: 0;
}

.footer__menu-submenu>a svg {
    width: 22px;
    height: 22px;
    fill: #757575;
    transition: transform .4s, fill .4s;
}

.footer__menu-submenu.active>a svg {
    transform: rotate(180deg);
    fill: #F78E1A;
}

.footer__menu-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer__menu-row a svg {
    width: 38px;
    height: 38px;
    fill: #fff;
    transition: fill .4s;
}

.footer__menu a:hover svg {
    fill: #F78E1A;
}

.footer__link {
    display: block;
}

.footer__link:not(:last-child) {
    margin-bottom: 30px;
}

.footer__link img {
    object-fit: contain;
}

.footer__clutch-widget {
    margin-bottom: 24px;
    background: #fff;
    border-radius: 8px;
    padding: 8px 12px;
    display: inline-block;
}

.footer__copyright {
    color: #757575;
}

.footer__legal {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.4;
    color: #757575;
}

.footer__legal a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.footer__legal a:hover {
    color: #F78E1A;
}

.footer__legal-sep {
    margin: 0 6px;
    color: #555;
}

@media screen and (min-width: 992px) {
    .footer {
        display: flex;
        align-items: center;
        min-height: auto;
        padding: 50px 0;
    }

    .footer__container {
        display: flex;
    }

    .footer__col {
        width: 100%;
        max-width: 25%;
    }

    .footer__col:last-child {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        margin-right: auto;
    }

    .footer__logo {
        justify-content: flex-start;
    }

    .footer__logo img {
        width: 135px;
        height: 113px;
    }

    .footer__menu>li:not(:first-child) {
        margin-top: 20px;
    }

    .footer__menu a {
        font-size: 14px;
        line-height: 24px;
    }

    .footer__menu a[href="#"] {
        pointer-events: none;
    }

    .footer__menu-submenu>a {
        font-size: 16px;
        line-height: 26px;
    }

    .footer__menu-submenu>a div {
        display: none;
    }

    .footer__menu-submenu>ul {
        margin-top: 20px;
    }

    .footer__menu-submenu>ul>li {
        margin-top: 5px;
    }

    .footer__menu-row {
        gap: 20px;
    }

    .footer__link:not(:last-child) {
        margin-bottom: 40px;
    }

    .footer__copyright {
        font-size: 12px;
        line-height: 12px;
        margin-top: auto;
    }
}

@media screen and (min-width: 1400px) {
    .footer__logo img {
        width: 192px;
        height: 161px;
    }

    .footer__menu a {
        font-size: 16px;
        line-height: 26px;
    }

    .footer__menu-submenu>a {
        font-size: 18px;
        line-height: 28px;
    }
}

@media screen and (max-width: 991px) {
    .footer__col:not(:first-child) {
        margin-top: 50px;
    }

    .footer__col:nth-child(3) {
        margin-top: 30px;
    }

    .footer__menu-submenu>a {
        position: relative;
        padding-right: 43px;
    }

    .footer__menu-submenu>ul {
        display: none;
    }

    .footer__menu-submenu>ul>li {
        padding: 30px 0 0 15px;
    }

    .footer__copyright {
        text-align: center;
    }

    .footer__legal {
        text-align: center;
    }
}