footer {
    margin-top: 30px;
}
footer .footer {
    background: #FAFAFA;
    border-radius: 30px;

}
footer .footer .main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 9px 0;
}


footer .footer .main-content .buttons {
    display: flex;
    align-items: center;
    gap: 42px;
}
footer .footer .main-content .buttons a {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    line-height: 22px;
    transition: all 0.2s;
    margin-top: 10px;
    &:hover {
        &:after{
            width: 100%;

        }

    }
    &:after {
        transition: all 0.5s;
        width: 0;
        display: block;
        margin-top: 6px;
        content: "";
        background: #F34900;
        height: 2px;

    }
}
footer .footer .main-content .flex {
    display: flex;
}
footer .footer .main-content .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
footer .footer .main-content .flex a {
    font-size: 20px;
    color: #000000;
    font-weight: 500;
    line-height: 22px;
    letter-spacing: -0.40px;
}
footer .down-content {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;

    margin: 0 auto;
    margin-top: 33px;
    margin-bottom: 38px;
    align-items: center;
}
footer .down-content .h4 {
    font-size: 15px;
    color: #9D9EA9;
    font-weight: 400;
    line-height: 20px;
}
footer .down-content .flex{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
footer .down-content a {
    font-size: 15px;
    font-weight: 400;
    color: #F34900;
    text-decoration: underline;
    line-height: 22px;

}
@media (width < 1400px) {
    footer .footer .main-content {
        flex-direction: column;
        gap: 40px;
        padding-top: 30px;
        padding-bottom: 50px;
    }
    footer .footer .main-content .buttons {
        flex-direction: column;
        gap: 20px;
    }
    footer .footer .main-content .flex {
        flex-direction: column;
    }
    footer .down-content {
        flex-direction: column;
        gap: 20px;
    }
    footer .down-content .h4 {
        text-align: center;
    }
}