.cover-preloader{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: white;
}
.animate-me{
    opacity: 0;
}

.split-item{
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: center;
    top: 0;
    z-index: 0;
}

.split-item .split-content{
    position: relative;
    width: 80%;
    padding: 20px;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    animation-duration: 0.8s;
    -moz-animation-duration: 0.8s;
    -webkit-animation-duration: 0.8s;
}

/**
 * Responsive
 */

@media (max-width: 720px){
    .split-item .split-content{
        width: 70%;
    }

    .split-item .split-content .caption{
        font-size: 1em;
    }
}
@media (max-height: 640px){
    #split-slider .split-item .split-content .caption{
        font-size: 12px;
        line-height: 15px;
    }
    #split-slider .split-item .split-content .content{
        max-height: 100px;
        overflow-y: auto;
    }
}

.split-item.active{
    z-index: 2;
}

.split-left,
.split-right,
.split-top,
.split-bottom{
    position: absolute;
    float: left;
    overflow: hidden;
}

.split-left,
.split-right{
    top: 0;
    width: 50%;
    height: 100%;
}

.split-top,
.split-bottom{
    left: 0;
    width: 100%;
    height: 50%;
}

.split-left{
    left: 0;
}

.split-right{
    left: 50%;
}

.split-top{
    top: 0;
}

.split-bottom{
    top: 50%;
}

.split-inner{
     position: absolute;
     background-size: cover;
     background-position: center;
}

.split-vertical .split-inner{
    height: 100%;
    width: 200%;
}

.split-horizontal .split-inner{
    height: 200%;
    width: 100%;
}

.split-horizontal .bottom-inner{
    top: -100%;
}

.right-inner{
    left: -100%;
}

#split-slider:before,
.split-item:before { /** vertical centering */
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
}

#split-thumbs {
    display: inline-block;
    vertical-align: middle;
    padding: 10px;
    text-align: center;
    position: relative;
    left: 50px;
    width: 24px;
    z-index: 10;
    list-style-type: none;
}

#split-thumbs li {
    cursor: pointer;
    margin: 0;
    width: 40px;
    height: 40px;
    display: block;
    text-align: center;
    position: relative;
}

#split-thumbs li .thumb-dot{
    width: 5px;
    height: 5px;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    display: block;
    position: absolute;
    z-index: -1;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

li.split-thumb:before {
    width: 17px;
    height: 17px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    position: absolute;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

li.split-thumb:after {
    opacity: 0;
    position: absolute;
    content: "";
    width: 11px;
    height: 11px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#split-thumbs li:hover:before{
    opacity: 1;
}

#split-thumbs li.active:after{
    opacity: 1;
}

#split-thumbs li .thumb-image{
    position: absolute;
    top: -30px;
    right: -145px;
    background-size: cover;
    width: 120px;
    height: 120px;
    background-position: center center;
    border: 5px solid;
    opacity: 0;
    -webkit-transform: translateX(50px);
    -moz-transform: translateX(50px);
    -ms-transform: translateX(50px);
    -o-transform: translateX(50px);
    transform: translateX(50px);
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
#split-thumbs li .thumb-image:after {
    content: "";
    position: absolute;
    left: -30px;
    top: 46px;
    z-index: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 25px 25px 0;
}
#split-thumbs li:hover .thumb-image{
    opacity: 1;
    -webkit-transform:translateX(0);
    -moz-transform:translateX(0);
    -ms-transform:translateX(0);
    -o-transform:translateX(0);
    transform:translateX(0);
}

/**
 * Animation
 */

.split-item.move-in-next,
.split-item.move-in-prev{
    z-index: 3; /* make sure we're above the .active */
}

/**
 * Vertical Split Animations
 */

@-webkit-keyframes splitTopCenter {
     0% {
         -webkit-transform: translateY(-100%);
         transform: translateY(-100%);
     }

     100% {
         -webkit-transform: translateY(0);
         transform: translateY(0);
     }
 }

@keyframes splitTopCenter {
    0% {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes splitBottomCenter {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes splitBottomCenter {
    0% {
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes splitCenterBottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes splitCenterBottom {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@-webkit-keyframes splitCenterTop {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes splitCenterTop {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.move-in-next .split-animated,
.move-out-next .split-animated,
.move-in-prev .split-animated,
.move-out-prev .split-animated{
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
}

/**
 * Downwards direction, Vertical
 */

.split-vertical .move-in-next .split-left{
    -webkit-animation-name: splitTopCenter;
    animation-name: splitTopCenter;
}

.split-vertical .move-in-next .split-right{
    -webkit-animation-name: splitBottomCenter;
    animation-name: splitBottomCenter;
}

.split-vertical .move-out-next .split-left{
    -webkit-animation-name: splitCenterBottom;
    animation-name: splitCenterBottom;
}

.split-vertical .move-out-next .split-right{
    -webkit-animation-name: splitCenterTop;
    animation-name: splitCenterTop;
}

/**
 * Upwards direction, Vertical
 */

.split-vertical .move-in-prev .split-left{
    -webkit-animation-name: splitBottomCenter;
    animation-name: splitBottomCenter;
}

.split-vertical .move-in-prev .split-right{
    -webkit-animation-name: splitTopCenter;
    animation-name: splitTopCenter;
}

.split-vertical .move-out-prev .split-left{
    -webkit-animation-name: splitCenterTop;
    animation-name: splitCenterTop;
}

.split-vertical .move-out-prev .split-right{
    -webkit-animation-name: splitCenterBottom;
    animation-name: splitCenterBottom;
}

/**
 * Horizontal Split Animations
 */

@-webkit-keyframes splitLeftCenter {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes splitLeftCenter {
    0% {
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes splitRightCenter {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes splitRightCenter {
    0% {
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes splitCenterRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes splitCenterRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@-webkit-keyframes splitCenterLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes splitCenterLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

/**
 * Width/Height Based
 */

@-webkit-keyframes leftWidth {
     0% {
         left: 0;
         width: 0;
     }

     100% {
         left: 0;
         width: 100%;
     }
 }

@keyframes leftWidth {
    0% {
        left: 0;
        width: 0;
    }

    100% {
        left: 0;
        width: 100%;
    }
}

@-webkit-keyframes rightWidth {
    0% {
        right: 0;
        width: 0;
    }

    100% {
        right: 0;
        width: 100%;
    }
}

@keyframes rightWidth {
    0% {
        right: 0;
        width: 0;
    }

    100% {
        right: 0;
        width: 100%;
    }
}

@-webkit-keyframes topHeight {
    0% {
        top: 0;
        height: 0;
    }

    100% {
        top: 0;
        height: 100%;
    }
}

@keyframes topHeight {
    0% {
        top: 0;
        height: 0;
    }

    100% {
        top: 0;
        height: 100%;
    }
}

@-webkit-keyframes bottomHeight {
    0% {
        bottom: 0;
        height: 0;
    }

    100% {
        bottom: 0;
        height: 100%;
    }
}

@keyframes bottomHeight {
    0% {
        bottom: 0;
        height: 0;
    }

    100% {
        bottom: 0;
        height: 100%;
    }
}

/**
 * Downwards direction, Horizontal
 */

.split-horizontal .move-in-next .split-top{
    -webkit-animation-name: splitLeftCenter;
    animation-name: splitLeftCenter;
}

.split-horizontal .move-in-next .split-bottom{
    -webkit-animation-name: splitRightCenter;
    animation-name: splitRightCenter;
}

.split-horizontal .move-out-next .split-top{
    -webkit-animation-name: splitCenterRight;
    animation-name: splitCenterRight;
}

.split-horizontal .move-out-next .split-bottom{
    -webkit-animation-name: splitCenterLeft;
    animation-name: splitCenterLeft;
}

/**
 * Upwards direction, Horizontal
 */

.split-horizontal .move-in-prev .split-top{
    -webkit-animation-name: splitRightCenter;
    animation-name: splitRightCenter;
}

.split-horizontal .move-in-prev .split-bottom{
    -webkit-animation-name: splitLeftCenter;
    animation-name: splitLeftCenter;
}

.split-horizontal .move-out-prev .split-top{
    -webkit-animation-name: splitCenterLeft;
    animation-name: splitCenterLeft;
}

.split-horizontal .move-out-prev .split-bottom{
    -webkit-animation-name: splitCenterRight;
    animation-name: splitCenterRight;
}

/**
 * Downwards direction, Horizontal shift
 */

.shift-horizontal .move-in-next .split-animated{
    -webkit-animation-name: splitRightCenter;
    animation-name: splitRightCenter;
}

.shift-horizontal .move-out-next .split-animated{
    -webkit-animation-name: splitCenterLeft;
    animation-name: splitCenterLeft;
}

/**
 * Upwards direction, Horizontal shift
 */

.shift-horizontal .move-in-prev .split-animated{
    -webkit-animation-name: splitLeftCenter;
    animation-name: splitLeftCenter;
}

.shift-horizontal .move-out-prev .split-animated{
    -webkit-animation-name: splitCenterRight;
    animation-name: splitCenterRight;
}

/**
 * Downwards direction, Vertical shift
 */

.shift-vertical .move-in-next .split-animated{
    -webkit-animation-name: splitBottomCenter;
    animation-name: splitBottomCenter;
}

.shift-vertical .move-out-next .split-animated{
    -webkit-animation-name: splitCenterTop;
    animation-name: splitCenterTop;
}

/**
 * Upwards direction, Vertical shift
 */

.shift-vertical .move-in-prev .split-animated{
    -webkit-animation-name: splitTopCenter;
    animation-name: splitTopCenter;
}

.shift-vertical .move-out-prev .split-animated{
    -webkit-animation-name: splitCenterBottom;
    animation-name: splitCenterBottom;
}

/**
 * Slides
 */

.slide-vertical .image-inner,
.slide-horizontal .image-inner,
.inslide-vertical .split-item,
.inslide-horizontal .split-item
{
    /*-webkit-box-shadow: 0px 0px 15px 0px rgba(50, 50, 50, 0.85);*/
    /*-moz-box-shadow:    0px 0px 15px 0px rgba(50, 50, 50, 0.85);*/
    /*box-shadow:         0px 0px 15px 0px rgba(50, 50, 50, 0.85);*/
}

.image-wrap{
    width: 100%;
    height: 100%;
}

.inslide-horizontal .move-in-next .image-wrap img{
    position: absolute;
    right: 0!important;
}

.inslide-horizontal .move-in-prev .image-wrap img{
    position: absolute;
    left: 0;
}

.inslide-vertical .move-in-next .image-wrap img{
    position: absolute;
    bottom: 0;
}

.inslide-vertical .move-in-prev .image-wrap img{
    position: absolute;
    top: 0;
}

/**
 * Downwards direction, Horizontal slide
 */

.slide-horizontal .move-in-next .split-animated{
    -webkit-animation-name: splitRightCenter;
    animation-name: splitRightCenter;
}

/**
 * Upwards direction, Horizontal slide
 */

.slide-horizontal .move-in-prev .split-animated{
    -webkit-animation-name: splitLeftCenter;
    animation-name: splitLeftCenter;
}

/**
 * Downwards direction, Vertical slide
 */

.slide-vertical .move-in-next .split-animated{
    -webkit-animation-name: splitBottomCenter;
    animation-name: splitBottomCenter;
}

/**
 * Upwards direction, Vertical slide
 */

.slide-vertical .move-in-prev .split-animated{
    -webkit-animation-name: splitTopCenter;
    animation-name: splitTopCenter;
}

/**
 * Inside Slide
 */

/**
 * Downwards direction, Horizontal Inside slide
 */

.inslide-horizontal .split-item,
.inslide-vertical .split-item{
    overflow: hidden;
}

/**
 * Downwards direction, Horizontal Inner side slide
 */

.inslide-vertical .split-item.move-in-next .image-wrap{
    -webkit-animation-name: bottomHeight;
    animation-name: bottomHeight;
}

/**
 * Upwards direction, Horizontal Inner slide
 */

.inslide-vertical .split-item.move-in-prev .image-wrap{
    -webkit-animation-name: topHeight;
    animation-name: topHeight;
}

/**
 * Downwards direction, Vertical Inner slide
 */

.inslide-horizontal .split-item.move-in-next .image-wrap{
    -webkit-animation-name: rightWidth;
    animation-name: rightWidth;
}

/**
 * Upwards direction, Horizontal Inner slide
 */

.inslide-horizontal .split-item.move-in-prev .image-wrap{
    -webkit-animation-name: leftWidth;
    animation-name: leftWidth;
}

.inslide-horizontal .image-wrap,
.inslide-vertical .image-wrap{
    overflow: hidden;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.inslide-horizontal .split-inslide-inner,
.inslide-vertical .split-inslide-inner{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1;
    background-position: center center;
    background-attachment: fixed;
}

.split-item{
    visibility: hidden;
}

.split-item.active,
.split-item.move-in-next,
.split-item.move-out-next,
.split-item.move-in-prev,
.split-item.move-out-prev{
    visibility: visible;
}

@media(max-width: 1024px){
    .tab-pmode-ss #split-slider .split-item .image-cover{
        background-size: contain;
        background-repeat: no-repeat;
    }
}

@media(max-width: 767px){
    .mob-pmode-ss #split-slider .split-item .image-cover{
        background-size: contain;
        background-repeat: no-repeat;
    }
}