.banner__brand {
    padding: 24px 0;
}

.banner__brand .container {
    width: 100%;
    min-height: 324px;
    background-color: #F5F5F5;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner__brand .container .text__banner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 1008px;
    margin: 0 auto;
}

.banner__brand .container .text__banner h1 {
    margin-bottom: 0;
    color: #212121;
    font-family: Inter;
    font-weight: 800;
    font-size: 48px;
    line-height: 150%;
    text-align: center;
    text-transform: capitalize;
}

.banner__brand .container .text__banner p {
    color: #616161;
    margin-bottom: 0;
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    text-align: center;
}

.list__brand {
    padding-bottom: 96px;
}

.list__brand .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.list__brand__item {
    width: 100%;
    padding: 32px;
    border-radius: 24px;
    background-color: #F5F5F5;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    height: max-content;
    min-height: 323px;
    text-decoration: none;
}

.list__brand__item__image {
    display: flex;
    margin: 0 auto;
    width: 144px;
    height: auto;
}

.list__brand__item__image img {
    width: 100%;
    object-fit: cover;
}

.list__brand__item__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.list__brand__item__info h3 {
    text-align: center;
    color: #212121;
    margin-bottom: 0;
    font-family: Inter;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    text-transform: capitalize;
}

.list__brand__item__info p {
    color: #616161;
    margin-bottom: 0;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 145%;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;

}


@media screen and (max-width:998px) {
    .banner__brand .container {
        min-height: 250px;
    }

    .banner__brand {
        padding: 24px 10px;
    }

    .banner__brand .container .text__banner h1 {
        font-size: 30px;
    }

    .list__brand .container {
        grid-template-columns: 1fr 1fr;
        padding: 20px 10px;
    }

    .list__brand {
        padding-bottom: 48px;
    }
}

@media screen and (max-width:768px) {
    .banner__brand .container {
        min-height: max-content;
        padding: 48px 24px;
    }
    .list__brand__item__image {
        width: 122px;
    }
    .list__brand__item__info h3 {
        font-size: 20px;
    }

    .banner__brand {
        padding: 24px 10px;
    }

    .banner__brand .container .text__banner h1 {
        font-size: 24px;
    }

    .list__brand .container {
        grid-template-columns: 1fr !important;
    }

}