#main {
    margin-top: 130px;
    padding: 50px 0px;
    background: #f5f8fd;
}

.about-work__items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-work__image.element-show {
    transform: none;
    opacity: 1;
}
.about-work__image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 350px;
    min-width: 350px;
    margin-left: 130px;
    transition: 1000ms;
    opacity: 0;
    transform: scale(0);
}

.about-work__image img {
    max-width: 100%;
    max-height: 100%;
}

.about-work {
    max-width: 1240px;
    border-radius: 30px;
    background: #fff;
    margin: 0 auto;
    padding: 30px 60px;
    margin-bottom: 60px;
}

.about-work__title.element-show {
    transform: none;
    opacity: 1;
}

.about-work__title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 63px;
    line-height: 100%;
    transition: 1000ms;
    opacity: 0;
    transform: translateX(-50px);
}

@media only screen and (max-width: 1200px) {
    .about-work {
        max-width: 860px;
        padding: 60px 0 82px 0;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .about-work {
        padding: 13px 20px 30px 20px;
    }
}