
.ctl-carousel-container{
    width: 100%;
    position: relative;    
    overflow: hidden;   
}

.ctl-carousel-item{
    width: 100%; 
    position: relative;
    text-align: center;
    
    display: inline-block;
}

.ctl-carousel-item-image{
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;    
}

.ctl-carousel-item-image-cover{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #000;
    opacity: 0.2;
}

.ctl-carousel-item img{
    width: 100%;
    height: auto;
}

.ctl-carousel-pagination{
    position: absolute;
    bottom: 15px;
    z-index: 15;
    width: 100%;
    padding: 0px !important;
    margin: 0px !important;
    text-align: center;
    list-style: none !important;
}

.ctl-carousel-pagination li{
    display: inline-block !important;
    padding: 0px !important;
    margin: 0px !important;    
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000\9;
    background-color: rgba(0,0,0,0);
    border: 1px solid #fff;
    border-radius: 10px;
    
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;      
    
    opacity: 0.5;
    
    cursor: pointer;
    box-shadow: 0px 1px 2px rgba(0,0,0,.6);    
}

.ctl-carousel-pagination li:hover{
    opacity: 1;
}

.ctl-carousel-pagination li.ctl-carousel-item-pagination-active{
    background-color: #fff;
}

.ctl-carousel-item-content{
    position: absolute;
    top: 50%;
    left: 0%;
    -webkit-transform: translate(0%,-50%);
    -moz-transform: translate(0%,-50%);
    -ms-transform: translate(0%,-50%);
    transform: translate(0%,-50%);
    width: 100%;

}

.ctl-carousel-item-content p,
.ctl-carousel-item-content h1{
    color: #fff; 
    line-height: normal;  
    white-space: normal;    
}

.ctl-carousel-item-button{
    color: #fff;    
    display: inline-block;
    cursor: pointer;    
}

.ctl-carousel-item-full-slide-button{
   /* display: block; */
}

.ctl-carousel-item-button:hover,
.ctl-carousel-item-button:active,
.ctl-carousel-item-button:focus{
    color: #fff;
    text-decoration: none;
}

.ctl-carousel-nav{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,.6);
    background-color: rgba(0,0,0,0);
    filter: alpha(opacity=50);
    opacity: .5;
    -moz-transition: all 0.4s ease 0s;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;    
    cursor: pointer;
}

.ctl-carousel-nav:hover{
    opacity: 1;  
}

.ctl-carousel-nav i{
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px;  
}

.ctl-carousel-nav-left i{
    left: 50%;
    margin-left: -10px;   
}

.ctl-carousel-nav-left{
    
}

.ctl-carousel-nav-right i{
    right: 50%;
    margin-right: -10px; 
}

.ctl-carousel-nav-right{
    right: 0;
    left: auto;
}

.ctl-carousel-item-wrapper{
    white-space: nowrap;    
    line-height: 0px;
    -moz-transition: all 1s ease 0s;
    -webkit-transition: all 1s ease 0s;
    -o-transition: all 1s ease 0s;
    transition: all 1s ease 0s;  
    
    position: relative;
}

.ctl-carousel-slide-content{
    position: absolute;
    top: 0px;
    height: 100%;
}

.ctl-carousel-slide-content.ctl-carousel-float-left{
    left: 0px;
}
.ctl-carousel-slide-content.ctl-carousel-float-right{
    right: 0px;
}

.ctl-carousel-slide-image{
    width: 100%;
}

@media screen and (max-width: 767px){
    .ctl-carousel-item-content-wrapper{
        width: 100% !important;
    }
}