.brands-wrapper {
    padding-top: 150px;
    padding-bottom: 100px;
}
.brands-title {
    font-size: 64px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Oswald';
    letter-spacing: -5px;
}

.brands-elements__wrapper {
    margin-top: 80px;
}
.brands-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.brands-element {
    background: white;
    padding: 32px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    width: calc((100% - 48px) / 4);
    justify-content: space-between;
}
.brand-element__desc {
    font-size: 12px;
    color: #00000099;
    text-align: center;
}
.brand-element__title {
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    .brands-elements {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .brands-element {
        width: 100%;
    }
}