.carousel {
margin: 0 auto;
position: relative;
width: 1200px;
}
.carousel-wrapper {
height: 600px;
}
.carousel-box {
background-color: #fff;
height: 124px;
list-style: none;
overflow: hidden;
position: absolute;
top: 50%;
    left: 50%;
    border-radius: 50%;
margin: -62px 0 0 -100px;
width: 200px;
z-index: -1;
-webkit-box-shadow: 0 0 10px 4px rgba(44, 42, 41, .05);
-moz-box-shadow: 0 0 10px 4px rgba(44, 42, 41, .05);
-ms-box-shadow: 0 0 10px 4px rgba(44, 42, 41, .05);
-o-box-shadow: 0 0 10px 4px rgba(44, 42, 41, .05);
box-shadow: 0 0 10px 4px rgba(44, 42, 41, .05);
-webkit-transition: .5s ease-out;
-moz-transition: .5s ease-out;
-ms-transition: .5s ease-out;
-o-transition: .5s ease-out;
transition: .5s ease-out;
text-align: center;
}
.carousel-box h3{
color: #000000;
font-family: "akz-cond";
font-size: 40px;
margin-top: 70px;
font-weight: 100;
text-transform: uppercase;
}
.carousel-box h2{
font-size: 50px;
font-family: "akz-cond";
font-weight: 100;
text-transform: uppercase;
margin-top: -15px;
border-bottom: 3px solid #131313;
display: inline-block;
padding-bottom: 0;
}
.carousel-box h4{
font-size: 16px;
font-weight: 100;
margin-bottom: 15px;
font-style: italic;
}
.carousel-box .intro{
width: 90%;
margin: auto;
font-size: 12px;
color: #636363;
}
.carousel-box .link a{
color: #636363;
font-size: 13px;
}
.carousel-box img{
position: absolute;
bottom: 0px;
left: 0;
width: 80%;
}






.carousel-box.is-active {
z-index: 4;
width: 550px;
height: 550px;
left: 50%;
margin: 35px 0 0 -275px;
top: 0;
border-radius: 50%;
overflow: hidden;
text-align: center;
display: block;
}
.carousel-box.left, .carousel-box.right {
width: 450px;
height: 450px;
border-radius: 50%;
display: block;

}
.carousel-box.left {
left: 75px;
margin: 0;
top: 85px;
z-index: 2;
opacity: 0.5;
}
.carousel-box.right {
left: calc(100% - 450px - 75px);
margin: 0;
top: 85px;
z-index: 2;
opacity: 0.5;

}
.nav-left, .nav-right {
background-size: 100%;
cursor: pointer;
height: 50px;
position: absolute;
position: absolute;
top: 50%;
width: 50px;
background-repeat:no-repeat ;
z-index: 99;
margin-top: -25px;
}

.nav-left {
    left: 0px;
    background-image: url("../images/prev.png");
}

.nav-right {
    right: 0px;
    background-image: url("../images/next.png");
}