.desktop_image {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.mobile_image {
    width: 100%;
    display: none;
}

@media screen and (max-width: 992px) {
    .mobile_image {
        display: block;
    }
    .desktop_image {
        display: none;
    }
}