/*
 * Static-export fixes.
 *
 * LiteSpeed's unused-CSS pass removes Owl Carousel selectors that are added
 * to the page only after JavaScript runs. Restore the small set needed by the
 * client-logo carousel below the Education in VR gallery.
 */

/*
 * Elementor stretches the homepage hero with JavaScript, but LiteSpeed delays
 * that JavaScript until the visitor interacts with the page. Make the hero
 * full-bleed immediately so it does not jump from the theme's fixed-width grid
 * to the viewport width after the delayed scripts initialize.
 */
.elementor-856 .elementor-element.elementor-element-7de7c51 {
    width: 100vw !important;
    max-width: none !important;
    left: auto !important;
    margin-left: calc(50% - 50vw) !important;
}

/* Do not let the hidden, uninitialized logos create a tall empty section. */
.mkdf-cc-inner.mkdf-owl-slider:not(.owl-loaded) {
    height: 0;
    overflow: hidden;
}

.mkdf-owl-slider.owl-loaded {
    display: block;
}

.mkdf-owl-slider .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.mkdf-owl-slider .owl-stage {
    position: relative;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
}

.mkdf-owl-slider .owl-stage::after {
    content: "";
    display: block;
    clear: both;
    height: 0;
    line-height: 0;
    visibility: hidden;
}

.mkdf-owl-slider .owl-item {
    position: relative;
    float: left;
    min-height: 1px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.mkdf-owl-slider .owl-item img {
    display: block;
    width: 100%;
}

/* Navigation is disabled in the carousel settings, so hide its generated UI. */
.mkdf-owl-slider .owl-nav.disabled {
    display: none;
}
