.section-brands {
    background-image: url(../../img/back-brands.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    padding-block: clamp(80px, 8vw, 104px) clamp(60px, 7vw, 80px);
    position: relative;
}
.section-brands .s-title {
    position: absolute;
    top: -6px;
    right: 51%;
    transform: translateX(50%);
}
.brand-cart {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: clamp(16px, 2vw, 24px);
    padding: clamp(18px, 2vw, 24px) clamp(14px, 2vw, 18px);
    gap: clamp(16px, 2vw, 24px);
    box-shadow: 0 0 4px #eee;
}
.brand-logo {
    margin-inline: auto;
}
.brand-img {
    width: 100%;
    border-radius: 8px;
}
.brand-cart h4 {
    font-size: clamp(16px, 2vw, 22px);
    font-family: var(--Medium);
}
.brand-cart p {
    font-size: clamp(12px, 2vw, 14px);
    display: flex;
    gap: 8px;
}
.brand-cart > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.brand-cart p i {
    width: clamp(14px, 2vw, 18px);
    height: clamp(14px, 2vw, 18px);
    color: var(--color1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 2vw, 18px);
    flex: 0 0 clamp(14px, 2vw, 18px);
    margin-top: 3px;
}
.brand-cart a {
    font-size: clamp(14px, 2vw, 18px);
    min-height: clamp(40px, 4vw, 48px);
    width: 100%;
    border: 1px solid #494949;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 12px;
    border-radius: 12px;
    transition: 0.4s;
    font-family: var(--Medium);
}
.brand-cart a:hover {
    background-color: var(--color1);
    color: white;
    border-color: var(--color1);
}
@media (max-width: 768px) {
    .brand-cart {
        margin-bottom: 1rem;
    }
    .section-brands {
        background-size: 276%;
    }
}