.graph__inner {
    width: 110rem;
    min-height: 200rem;
}

.graph__text {
    text-align: center;
    color: #666666;
    margin-bottom: 15rem;
    position: sticky;
    top: 30%;
}

.graph__images {
    width: 120rem;
    max-width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 10rem;
    position: relative;
    gap: 5%;
}

.graph__images_mobile {
    display: none;
}

.graph__image {
    position: relative;
}

.graph__image span,
.graph__image svg {
    display: block;
    width: 100%;
}

.graph__image_1 {
    width: 61.5%;
    flex: 0 0 auto;
}

.graph__image_2 {
    display: flex;
    align-items: flex-end;
    width: 40%;
    position: absolute;
    left: 45%;
    top: 5%;
}

.graph__image_2 img,
.graph__image_2 picture {
    flex: 0 0 auto;
    width: 45%;
}

/* media queries START */
@media (max-width: 1024.9px) {
    .graph__text {
        line-height: 3;
        margin-bottom: 10rem;
    }
}

@media (max-width: 767.9px) {
    .graph__text {
        font-size: 2.2rem;
        line-height: 1.8;
        margin-bottom: 6rem;
    }

    .graph__images_desktop {
        display: none;
    }

    .graph__images_mobile {
        display: block;
    }
}
/* media queries END */