.brandsAB{
    max-width: 1440px;
    box-sizing: border-box;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 64px;
    padding: 120px 40px;
}

.brands_mainframe{
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 108px;
}

.brands_left{
    display: flex;
    gap: 24px;
}

.brands_frame{
    display: flex;
    padding: 0 40px;
    width: 210px;
    height: 210px;
    border-radius: 12px;
    background-color: #fff;
    justify-content: center;
}

.empty_frame{
    background-color: #eceded;
}

.brands_frame img{
    align-self: center;
    width: 100%;
}

.brands_right{
    display: flex;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
}

.brands_title{
    display: flex;
    font-size: 2.708vw;
    letter-spacing: -0.027vw;
    color: #202020;
    font-weight: 700;
}

.brands_desc{
    display: flex;
    font-size: 20px;
    font-weight: 500;
    color: #545454;
    width: 50%;
}

@media screen and (max-width: 768px) {
    .brandsAB{
        padding: 72px 16px 45px 16px;
        gap: 24px;
    }

    .brands_mainframe{
        flex-direction: row;
        padding: 0;
        gap: 24px;
    }

    .brands_left{
        flex-direction: column;
        gap: 16px;
    }

    .brands_col{
        gap: 16px;
        width: 100%;
    }

    .brands_frame{
        width: calc(50vw - 60px);
        height: 25vw;
        padding: 0px 16px;
    }

    .brands_frame .crocus{
        width: 79px;
    }
    
    .brands_frame .harrods{
        width: 70px;
    }
    
    .brands_frame .glencairn{
        width: 110px;
        height: 44px;
    }
    
    .brands_frame .steinpol{
        width: 149px;
        height: 44px;
    }
    
    .brands_frame .liberty{
        width: 96px;
        height: 82px;
    }

    .brands_right{
        flex-direction: column;
        width: auto;
        max-width: none;
        gap: 32px;
        justify-content: initial;
    }

    .brands_title{
        font-size: 20px;
        letter-spacing: -0.31px;
    }

    .brands_desc{
        font-size: 16px;
        width: auto;
    }
}

@media screen and (min-width: 1440px) {
    .brands_title{
        font-size: 39px;
        letter-spacing: -0.39px;
    }
}