.service_general_content_image_wrapper {
    display: grid;
    grid-template-columns: 2.7fr 3fr;
    gap: 50px 69px;
}
.service_general_content_image_wrapper.reverse {
    grid-template-columns: 3fr 2.7fr;
}
.service_general_content_image_wrapper img {
    width: 100%;
}
.service_general_content_image_wrapper.reverse .service_content_wrapper {
    grid-row: 1;
}
.service_container .service_content_wrapper,
.service_container .service_content_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.bottom_content {
    padding-top: 20px;
}
.service_content_wrap.bottom_content iframe {
    max-width: 100%;
    margin-top: 20px;
}

@media(max-width:992px) {
    .service_general_content_image_wrapper {
        grid-template-columns: 1fr !important;
    }
    .service_general_content_image_wrapper.reverse .service_content_wrapper {
        grid-row: initial;
    }
}