.about-block .block-inner {
display: flex;
}
.about-left {
    flex-basis: 40%;
    margin-right: 40px;
    background: linear-gradient(110deg, #f7f7f7 60%, #f1f1f1 60%);
    padding: 60px;
}
.about-right {
	flex: 1;
	position: relative;
}
.about-right img {
    display: block;
    z-index: 3;
    position: relative;
    width: 100%;
    height: auto;
}
.about-right::after {
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: -40px;
    right: -40px;
    content: "";
    background: linear-gradient(110deg, #275d6f 60%, #127281 60%);
    z-index: 2;
}