.about-block {
    background: var(--background-secondary);
    border-radius: 0;
    padding-top: var(--min-70);
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.about-block .about__content {
    max-width: 615px;
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: var(--min-25);
}

.about-block .about__img {
    position: absolute;
    bottom: 0;
    top: 0;
    right: 0;
    max-width: clamp(41.25rem, 8.552rem + 47.56vw, 65.625rem);
    width: 65%;
    height: 100%;
    margin-top: auto;
    display: flex;
}

.about-block .about__img img, .about-block .about__img svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width:1880px) {
    .about-block {
        padding-bottom: var(--min-70);
    }
}


@media(max-width:1100px) {
    .about-block .about__content {
        max-width: 100%;
        width: 100%;
    }

    .about-block {
        display: flex;
        flex-direction: column;
        padding-bottom: 0;
        gap: var(--min-30);
    }

    .about-block .about__img  {
        position: relative;
        margin-left: auto;
        width: 100%;
    }

    .about-block .about__img img {
        max-height: 300px;
    }
}