.menu-group{
    display: flex;
    gap: 80px;
}
.footer-awards ul{
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}
.next-banner .img{
    position: relative;
}
.next-banner .img::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.4;
}
@media (max-width: 992px){
    .footer-awards ul{
        flex-direction: column;
        gap: 20px;
        align-items:self-start;
        padding-top: 30px;
        margin-bottom: 30px;
        border-top: 1px solid #E1E1E1;
    }
     .footer-awards ul li:first-child{
        padding-bottom: 10px;
        padding-left: 0;
    }
    .footer-awards ul li img{
        max-width: 100%;
        
    }
}
@media (max-width: 575px) {
    .menu-group{
        gap: 40px;
    }
    .footer-awards ul{
        align-items: center;
    }
   
    .footer-awards ul li{
        padding-left: 10px;
    }
}