.mk-carousel {
    height: 500px;
    overflow: hidden;
    position: relative;
    z-index: 999;
    font-size: 0;
    text-align: left
}

@media (max-width: 767px) {
    .mk-carousel {
        height: 300px
    }
}

.mk-carousel>img {
    height: 270px;
    position: relative;
    left: 50%;
    top: 50%;
    margin-top: -135px;
    margin-bottom: 100%;
    opacity: 0.7;
    cursor: pointer;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -moz-transform: perspective(270px) rotateY(-50deg);
    -ms-transform: perspective(270px) rotateY(-50deg);
    -webkit-transform: perspective(270px) rotateY(-50deg);
    transform: perspective(270px) rotateY(-50deg);
    -webkit-box-reflect: below 0 -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.5, transparent), to(rgba(0, 0, 0, 0.5)))
}

@media (max-width: 767px) {
    .mk-carousel>img {
        height: 100px;
        margin-top: -50px
    }
}

.mk-carousel>img.active {
    z-index: 2;
    opacity: 1;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -moz-transform: rotateY(0deg) scale(1.3);
    -ms-transform: rotateY(0deg) scale(1.3);
    -webkit-transform: rotateY(0deg) scale(1.3);
    transform: rotateY(0deg) scale(1.3)
}

.mk-carousel>img.image-left {
    -moz-transform: perspective(270px) rotateY(50deg);
    -ms-transform: perspective(270px) rotateY(50deg);
    -webkit-transform: perspective(270px) rotateY(50deg);
    transform: perspective(270px) rotateY(50deg)
}

.mk-carousel .mk-nav-controls {
    position: absolute;
    z-index: 999;
    top: 0;
    left: 50%;
    margin-left: -100px;
    padding: 0;
    width: 200px;
    font-size: 12px;
    text-align: center
}

.mk-carousel .mk-nav-controls li {
    display: inline-block
}

.mk-carousel .mk-nav-controls li a {
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    display: inline-block;
    padding: 5px;
    line-height: 1;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease
}

.mk-carousel .mk-nav-controls li a:hover,
.mk-carousel .mk-nav-controls li a:focus,
.mk-carousel .mk-nav-controls li a:active {
    background: #fff;
    color: #333
}