footer{
    background: #1F2937;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    color: #94A3B8;
    width: 100%;
    /* min-width: 1440px; */
    font-weight: 400;
    font-size: 14px;
}

footer strong{
    font-weight: 700;
}


footer .highlight{
    color: #D1D5DB;
    font-weight: 500;
}

footer .container{
    padding: 0 32px;
}

footer .divider{
    width: 100%;
    height: 1px;
    background: #4D546A;
}

footer .top{
    padding: 70px 0 40px 0;
    display: flex;
    justify-content: space-between;
}

footer .top .left{
    display: flex;
    flex-direction: column;
    gap: 44px;
}

footer .top .left .company-info{
    display: flex;
    flex-direction: column;
    gap: 22px;
    
}

footer .top .left .company-info p.details{
    display: flex;
    gap: 30px;
}

footer ul.sns li{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #353E4B;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer ul.sns li a{
    width: 18px;
    height: 16px;
}



footer .bottom{
    padding: 39px 0 43px 0;
    display: flex;
    justify-content: space-between;
}

footer .bottom .footer__badges{
    display: none;
}

footer .bottom .nav ul{
    display: flex;
    justify-content: flex-end;
    gap: 40px;
}


@media screen and (max-width: 1280px){
    footer{
        min-width: unset;
    }

    footer .top .footer__badges{
        display: none;
    }

    footer .top .left{
        gap: 30px;
    }

    footer .top .left .company-info{
        gap: 20px;
    }


    footer .top .left .company-info p.details{
        flex-direction: column;
        gap: 0;
    }

    footer .bottom{
        flex-direction: column-reverse;
        align-items: flex-start;
        padding:0;
    }

    footer .bottom nav{
        padding: 15px 0;
        width: 100%;
        border-bottom: 1px solid #4D546A;
    }

    footer .bottom .nav ul{
        justify-content: flex-start;
    }

    footer .bottom .footer__badges{
        display: flex;
    }

    footer .bottom > div{
        display: flex;
        flex-direction: column;
        padding: 38px 0 52px 0;
        gap: 37px;
    }
    
}