.about-block {}

.about-block .about__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.about-block .image__holder {
    max-width: 630px;
    max-height: 360px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;

}

.about-block .image__holder img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-block .text__holder {
    overflow: unset;
    max-width: 610px;
    padding-right: 0;
    max-height: fit-content;
    height: fit-content;
}

.about-block .text__holder p {
    font-weight: 400;
    /* font-size: 16px; */
    font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
    line-height: 150%;
}

.about-block .infographics__wrapper {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-block .separator {
    background-color: var(--primary);
}

.about-block .infographics__item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.about-block .infographics__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-block .infographics__number {
    font-family: var(--second-family);
    font-weight: 700;
    /* font-size: 32px; */
    font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
    line-height: 120%;
    color: var(--card)
}

.about-block .infographics__value {
    color: var(--main-text);
}

@media(max-width:1000px) {
    .about-block .infographics__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-block .about__wrapper {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .about-block .text__holder {
        max-width: 100%;
    }

    .about-block .image__holder {
        max-width: 100%;
    }
}

@media(max-width:500px) {
    .about-block .infographics__wrapper {
        grid-template-columns: 1fr;
    }
}