.about-block {
    padding: 80px 0px;
}

.about-block .block-title {
    text-align: left;
}

.about-block .about-wrapper {
    display: flex;
    gap: 50px;
}

.about-block .about-wrapper .left-side {
    width: 59%;
}

.about-block .about-wrapper .right-side {
    position: sticky;
    top: 150px;
    width: 40%;
    height: fit-content;
    overflow: hidden;
}

.about-block .about-wrapper .right-side:after {
    content: '';
    display: block;
    padding-bottom: 73%;
}

.about-block .about-wrapper .right-side img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1400px) {
    .about-block .about-wrapper {
        gap: 15px;
    }

    .about-block .about-wrapper .left-side {
        width: 50%;
    }

    .about-block .about-wrapper .right-side {
        width: 50%;
    }
}

@media (max-width: 769px) {
    .about-block {
        padding: 30px 0;
    }

    .about-block .about-wrapper {
        flex-direction: column;
    }

    .about-block .about-wrapper .left-side {
        width: 100%;
    }

    .about-block-text {
        height: 225px;
        overflow: auto;
        padding-right: 20px;
    }

    .about-block .about-wrapper .right-side {
        width: 100%;
    }

    .about-block .about-wrapper .right-side:after {
        padding-bottom: 47%;
    }
}