.about_us_block{
    display: flex;
    gap: 80px;
    align-items: center;
}
.about_us_image{
    flex-basis: 50%;
}
.about_us_content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-basis: 50%;
}
.about_us_text p:last-of-type{
    margin-bottom: 0;
}
.about_us_content .standart_buttons_wrap{
    margin-top: 40px;
}
.about_us_section{
    position: relative;
}
.about_us_block> div{
    position: relative;
    z-index: 2;
}
.about_us_block:before{
    content: '';
    width: 100%;
    position: absolute;
    top: -130px;
    left: 0;
    background: #F0F2F6;
    height: calc(100% + 150px);
    clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
    display: inline-block;
}
@media screen and (max-width: 768px) {
    .about_block_item_image img{
        min-width: 40px;
    }
    body .about_us_block{
        flex-direction: column-reverse;
        gap: 25px;
    }
    body .about_us_content .standart_buttons_wrap{
        margin-top: 30px;
    }
}
@media screen and (max-width: 991px) {
    .about_us_block:before{
        height: calc(100% + 60px);
        top: -60px;
        clip-path: polygon(0 0, 100% 60px, 100% 100%, 0 100%);
    }
    .about_us_block{
        padding-bottom: 70px;
    }
}
@media screen and (min-width: 991px) {
    .about_us_block{
        padding-bottom: 260px;
    }
}
