.mobile-view {
    display: none;
}

@media (max-width: 767px) {
    .desktop-view {
        display: none !important;
    }
    .mobile-view {
        display: block !important;
    }
    .mobile-view .vc_row {
        text-align: center;
    }
    .mobile-view img {
        max-width: 100%;
        height: auto;
    }
}

@media (min-width: 768px) {
    .desktop-view {
        display: block !important;
    }
    .mobile-view {
        display: none !important;
    }
}

div.custom-height {
    height: 100%;
    overflow: hidden;
}

.custom-height img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
}