/*
+----------------------------------------------------------------+
    Carousel
+----------------------------------------------------------------+
*/
.carousel {
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.carousel-box {
    height: 124px;
    left: 50%;
    list-style: none;
    overflow: hidden;
    position: absolute;
    top: 50%;
    margin: -62px 0 0 -100px;
    width: 200px;
    z-index: -1;

    -webkit-box-shadow: 0px 0px 10px 4px rgba(44, 42, 41, 0.05);
       -moz-box-shadow: 0px 0px 10px 4px rgba(44, 42, 41, 0.05);
        -ms-box-shadow: 0px 0px 10px 4px rgba(44, 42, 41, 0.05);
         -o-box-shadow: 0px 0px 10px 4px rgba(44, 42, 41, 0.05);
            box-shadow: 0px 0px 10px 4px rgba(44, 42, 41, 0.05);

    -webkit-transition: 0.5s ease-out;
       -moz-transition: 0.5s ease-out;
        -ms-transition: 0.5s ease-out;
         -o-transition: 0.5s ease-out;
            transition: 0.5s ease-out;
}

.carousel-box.is-active {
    z-index: 4;
    width: 648px;
    height: auto;
    left: 50%;
    margin: 35px 0 0 -324px;
    /*margin: 35px 0 0 0;*/
/*    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);*/
    top: 0;
}

.carousel-box.left,
.carousel-box.right {
    width: 500px;
    height: 312px;
}

.carousel-box.left {
    left: 0;
    margin: 0;
    top: 90px;
    z-index: 2;
    -webkit-transform: perspective(600);
    -moz-transform: perspective(600);
    -o-transform: perspective(600);
    transform: perspective(600px);
}

.carousel-box.right {
    left: calc(100% - 500px);
   /* right: 0;*/
    margin: 0;
    top: 90px;
    z-index: 2;
    -webkit-transform: perspective(600) ;
    -moz-transform: perspective(600) ;
    -o-transform: perspective(600) ;
    transform: perspective(600px) ;
}

.nav-left,
.nav-right {
    visibility: hidden;
}

.nav-left {left: 0}

.nav-right {
    right: 0;
    background-position: right -121px;
}