.about-block {}

.about-block .heading {
    align-items: start;
    flex-wrap: wrap;
}

.about-block .about__title {
    max-width: 870px;
    width: 100%;
}

.about-block .about__title span {
    color: var(--light-text-2);
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.about-block .about__wrapper {
    display: flex;
    max-width: 870px;
    width: 100%;
    gap: clamp(1.25rem, 0.114rem + 5.68vw, 4.375rem);
    margin-bottom: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
}

.about-block .text__holder {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    width: 100%;
}

.about-block .text__holder p {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: var(--main-text);
}

.about-block .about__btn {
    margin-top: 10px;
    max-width: 192px;
    width: 100%;
    height: 40px;
}

.about-block .about__img {
    max-height: 500px;
    height: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

@media(max-width: 1020px) {
    .about-block .about__wrapper {
        max-width: 100%;
    }

    .about-block .text__holder {
        max-width: 100%;
    }
}

@media(max-width: 600px) {
    .about-block .about__wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .about-block .about__img {
        height: 250px;
    }
}

@media(max-width: 400px) {
    .about-block .about__btn {
        max-width: 100%;
    }
}