.intro-brand {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: clamp(36px, 4vw, 62px) clamp(24px, 4vw, 58px);
    background: linear-gradient(180deg, #F1F5F9, rgb(241 245 249 / 94%));
    border-radius: 32px;
    position: relative;
    margin-inline: auto;
    .brand-icon {
        min-width: clamp(150px, 15vw, 230px);
        /* height: clamp(90px,15vw,230px); */
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #DADADAB2;
        background: white;
        border-radius: clamp(12px, 2vw, 20px);
    }
    .body-brand {
        .s-title {
            margin-top: 16px;
        }
        .s-desc {
            text-align: center;
        }
        .wrapper-cat {
            margin-top: clamp(24px, 2vw, 32px);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
            a {
                display: flex;
                align-items: center;
                gap: 8px;
                background: white;
                border-radius: 20px;
                padding: 14px clamp(16px, 2vw, 24px);
                border: 1px solid #DADADAB2;
                justify-content: center;
                text-align: center;
                min-height: 90px;
            }
        }
    }
}
@media only screen and (min-width: 768px) {
    .intro-brand {
        background: linear-gradient(90deg, #F1F5F9, rgb(241 245 249 / 94%));
        .body-brand {
            .s-desc {
                text-align: right;
            }
        }
    }
}