.about-us__brands-list {
    margin-top: 64px;
}

.about-us__brands-list__title {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
}

.about-us__brand-list__wrapper {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}

.about-us__brand-list__card {
    display: flex;
    gap: 16px;
    padding: 16px 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: box-shadow 0.25s;
}

.about-us__brand-list__card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}


.about-us__brand-list__logo {
    width: 50%;
    min-width: 150px;
    height: auto;
    padding:  0;
}

.about-us__brand-list__image {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin: auto;
}

@media only screen and (max-width: 769px) {
    .about-us__brand-list__wrapper {
        flex-direction: column;
        gap: 32px;
        margin-top: 32px;
    }

    .about-us__brand-list__image {
        max-height: 30px;
    }
}