.page__picture {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 112px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.brands-title {
    margin: 45px 0;
    text-align: center;
    font-size: 16px;
    font-family: "Roboto-Regular";
    font-style: normal;
    font-weight: 400;
    color: #000000;
}

.brand-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
}

.brand-name {
    display: block;
    width: 90%;
    margin: 0 auto;
    font-size: 15px;
    color: #000000;
    font-family: "Roboto-Regular";
    font-style: normal;
    font-weight: 400;
    border-radius: 50px;
    padding: 14px 0;
    box-sizing: border-box;
    -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.2);
}

.brand-name > span {
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.brand-item > img {
    margin: auto;
    width: 100%;
}

@media (max-width: 1024px) {
    .page__picture {
        height: 55px;
    }

    .brands-title {
        margin: 30px 0;
        font-size: 15px;
    }

    .brand-name {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .page__picture {
        height: 40px;
    }
    .brands-title {
        margin: 15px 0;
        font-size: 14px;
    }

    .brand-name {
        font-size: 13px;
    }
}