 
@media screen and (min-width: 992px) {

    .scroller {
        height: 100vh;
    }

    .inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        height: 100vh;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
    }
    figure.slide-image {
        text-align: center;
    }
    
    figure.slide-image > img {
        max-height: 100vh;
        width: auto;
    }
    .p-wrap {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 100vh;
        margin: auto;
    }
    .text-wrap {
        position: absolute;
        width: 500px;
        height: 80vh;
        right: 0;
        bottom: 0;
    }

    .panel-text {
        position: absolute;
        left: 0%;
        top: 0%;
        right: 0%;
        bottom: 0%;
        z-index: 1;
        width: 100%;
        height: 100%;
        text-align:center;
        color: #000;  
        transform:translateY(100%);
        opacity: 0;
    }

    .panel {
        position: absolute;
        left: 0%;
        top: 0%;
        right: 0%;
        bottom: 0%;
        z-index: 1;
        width: 100%;
        height: 100%;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0;
        transform-origin: center;
        transform: scale(0);
    }
    .panel.first {
        opacity: 0;
    }

    figure.slide-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        max-width: 750px;
    }


    .slide-floating-content {
        z-index: 5;
        width: 100%;
        position: absolute;
        left: 0;
        top: 25%;
    }

    .slide-floating-content p {
        max-width: 475px;
        width: 100%;
    }

    .panel-text > figure.mobile-image,
    .mobile-nav-tabs {
        display: none;
    }
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
    .slide-floating-content p {
        max-width: 350px;
        width: 100%;
    }
}

@media screen and (min-width: 1200px) {
    .slide-floating-content {
        z-index: 5;
        width: 50%;
        position: absolute;
        left: 0;
        top: 25%;
    }

}

@media screen and (max-width: 992px) {
    .slide-content {
        -webkit-clip-path: url(#svgPathSliderText);
        clip-path: url(#svgPathSliderText);
        background-color: #fff;
        padding: 2rem 2.5rem 4rem;
        text-align: left;
        max-width: 460px;
        margin: auto;
        width: 100%;
        font-size: 0.8em;
    }
    #slide-content-wrapper > .slides-wrapper {
        display: flex;
        flex-wrap: nowrap;
        overflow: auto;
    }
    
    .panel-text {
        display: block;
        flex: 0 0 90%;
    }
    
    figure.mobile-image {
        height: 300px;
        display: block;
        text-align: center;
    }
    
    figure.mobile-image > img {
        max-height: 100%;
        width: auto;
    }
    ul.slide-mobile-nav-tabs {
        display: flex;
        list-style: none;
        padding: 0;
        justify-content: center;
    }
    ul.slide-mobile-nav-tabs a {
        width: 32px;
        height: 5px;
        padding: 0;
        border-bottom: 5px solid #D0DDF0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
    }
    ul.slide-mobile-nav-tabs a.active {
        border-color: #5C9DFF;
        border-left-color: transparent;
        border-right-color: transparent;
    }    
    
    ul.slide-mobile-nav-tabs > li {
        margin-left: 5px;
        margin-right: 5px;
    }
    #slide-content-wrapper .mobile-nav-tabs {
        position: absolute;
        width: 100%;
        bottom: 0.5rem;
    }
}