.two-col-content-img {
    position: relative;
}
.two-col-content-img .content_container {
    display: flex;
    gap: 30px;
}
.two-col-content-img .content {
    width: 40%;
    display: flex;
}
.two-col-content-img .content img {
    align-self: end;
    max-height: 580px;
    margin-bottom: 8px;
}
.two-col-content-img .description {
    width: 60%;
}
.two-col-content-img .description img {
    margin-top: 80px;
    max-height: 580px;
}
.two-col-content-img svg {
    position: absolute;
    top: -40%;
    right: 0;
    z-index: -1;
}
@media only screen and (max-width: 768px) {
    .two-col-content-img .content_container {
        flex-direction: column;
    }
    .two-col-content-img .content,
    .two-col-content-img .description {
        width: 100%;
    }
    .two-col-content-img svg { 
        display: none;
    }
}
