/*
+----------------------------------------------------------------+
    Carousel
+----------------------------------------------------------------+
*/
.carousel {
    margin: 0 auto;
    min-height: 430px;
    position: relative;
    width: 95%;
}

.carousel-wrapper {
    height: 380px;
}

.carousel-box {
    /*border: 7px solid #FFF;*/
    background-color: #CFCFCF;
    background-size: cover !important;
    height: 284px;
    left: 50%;
    list-style: none;
    overflow: hidden;
    position: absolute;
    top: 50%;
    margin: -62px 0 0 -100px;
    /*margin: -125px 0 0 -225px;*/
    width: 450px;
    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;

    opacity: 0;
    filter: alpha(opacity=0); /* For IE8 and earlier */
    /* IE 8 */
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    /* Netscape */
    -moz-opacity: 0;
    /* Safari 1.x */
    -khtml-opacity: 0;
}

    .carousel-box.is-active {
        z-index: 4;
        width: 580px;
        height: 360px;
        left: 50%;
        margin: 55px 0 0 -290px;
        top: 0;
        opacity: 1;
        filter: alpha(opacity=100); /* For IE8 and earlier */
        /* IE 8 */
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        /* Netscape */
        -moz-opacity: 1;
        /* Safari 1.x */
        -khtml-opacity: 1;
    }

    .carousel-box.left,
    .carousel-box.right {
        width: 450px;
        height: 284px;

        opacity: 1;
        filter: alpha(opacity=100); /* For IE8 and earlier */
        /* IE 8 */
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        /* Netscape */
        -moz-opacity: 1;
        /* Safari 1.x */
        -khtml-opacity: 1;
    }

    .carousel-box.left {
        left: 50px;
        margin: 0;
        top: 90px;
        z-index: 2;
        transform: perspective(600px) rotateY(0deg);
        -webkit-transform: perspective(600) rotateY(0deg);
    }

    .carousel-box.right {
        left: auto;
        right: 50px;
        margin: 0;
        top: 90px;
        z-index: 2;
        transform: perspective(600px) rotateY(0deg);
        -webkit-transform: perspective(600) rotateY(0deg);
    }

    .carousel-box .classCarouselContenu {
        margin: auto;
        margin-top: 92px;
        width: 230px;
        height: 100px;
        background: rgba(255, 255, 255,0.9);
    }

    .carousel-box.is-active .classCarouselContenu {
        width: 330px;
        height: 140px;
        margin-top: 110px;
        background: rgba(255, 255, 255,0.9);
    }

.nav-left,
.nav-right {
    background: url('../images/arrow.png') no-repeat left 5px;
    cursor: pointer;
    height: 60px;
    position: absolute;
    top: 200px;
    width: 44px;
}

.nav-left {
    left: 0;
}

.nav-right {
    right: 0;
    background-position: right -121px;
}
