.text_wrapper {
    gap: 6px;
    width: 100%;
    padding: 0 60px;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
}

.about_header {}

.about_header_h1 {
    font-family: 'citilink-reg', sans-serif;
    font-size: 32px;
}

.about_text {

}

.about_text_p {
    font-size: 18px;
    max-width: 1000px;
}

.brands_presented {
    padding: 0 60px;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    justify-content: center;
}

.brands_text {

}

.brands_text_h1 {
    font-size: 32px;
    font-family: 'citilink-reg', sans-serif;
}

.brands_wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
    max-width: 1000px;
}

.brand {
    width: 100%;
    height: 150px;
    scroll-snap-align: unset;
    min-width: unset;
    padding: 24px;
    border-radius: 12px;
    background-color: var(--bg-color-2);
    overflow: unset;
    position: unset;
    transition: unset;
    flex: unset;
}

.brand_img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

@media (max-width: 900px) {
    .text_wrapper {
        padding: 0 18px;
        margin-top: 12px;
    }

    .about_header_h1 {
        font-size: 48px;
    }

    .about_text_p {
        font-size: 24px;
    }

    .brands_presented {
        padding: 0 18px;
    }

    .brands_text_h1 {
        font-size: 32px;
    }

    .brand {
        flex: 1 1 20svw;
    }

    .brands_wrapper {
        flex-wrap: wrap;
    }
}

@media (max-width: 757px) {
    .text_wrapper {
        padding: 0 18px;
        margin-top: 12px;
    }

    .about_header_h1 {
        font-size: 32px;
    }

    .about_text_p {
        font-size: 18px;
    }

    .brands_presented {
        padding: 0 18px;
    }

    .brands_text_h1 {
        font-size: 24px;
    }

    .brand {
        flex: 1 1 43svw;
    }

    .brands_wrapper {
        flex-wrap: wrap;
    }
}