
.bs-slider{
    overflow: hidden;
    position: relative;
    width: 100%;
    max-height: 90vh;
    min-height: 600px;
    background: #000000;
}

.bs-slider .bs-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -moz-linear-gradient(top, rgba(66,52,27,0) 0%, rgba(66,52,27,0) 40%, rgba(66,52,27,0.8) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(66,52,27,0) 0%,rgba(66,52,27,0) 40%,rgba(66,52,27,0.8) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(66,52,27,0) 0%,rgba(66,52,27,0) 40%,rgba(66,52,27,0.8) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0042341b', endColorstr='#8042341b',GradientType=0 ); /* IE6-9 */
}
.bs-slider > .carousel-inner > .item > img,
.bs-slider > .carousel-inner > .item > a > img {

}

.carousel-inner>.item>a>img, .carousel-inner>.item>img{
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

img.slide-image{
    display: block;
    width: 100%;
    min-height: 700px;
    object-fit: cover;
}

/********************
*****Slide effect
**********************/

.fade {
    opacity: 1;
}
.fade .item {
    top: 0;
    z-index: 1;
    opacity: 0;
    width: 100%;
    position: absolute;
    left: 0 !important;
    display: block !important;
    -webkit-transition: opacity ease-in-out 1s;
    -moz-transition: opacity ease-in-out 1s;
    -ms-transition: opacity ease-in-out 1s;
    -o-transition: opacity ease-in-out 1s;
    transition: opacity ease-in-out 1s;
}
.fade .item:first-child {
    top: auto;
    position: relative;
}
.fade .item.active {
    opacity: 1;
    z-index: 2;
    -webkit-transition: opacity ease-in-out 1s;
    -moz-transition: opacity ease-in-out 1s;
    -ms-transition: opacity ease-in-out 1s;
    -o-transition: opacity ease-in-out 1s;
    transition: opacity ease-in-out 1s;
}


a.slide-btn{
    padding: 8px 12px;
    color:  #fff;
    font-weight: bold;
    background: transparent;
    border: 1px solid #fff;
    display: inline-block;
    font-size: 16px;
    font-family: 'Quicksand', sans-serif;
    text-decoration: none;
    outline-width: 0;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

a.slide-btn:hover{
    background: #fff;
    color: #0574b5;
}


/*---------- LEFT/RIGHT ROUND CONTROL ----------*/
.control-round .carousel-control {
    top: 45%;
    opacity: 0;
    width: 45px;
    height: 80px;
    z-index: 100;
    color: #ffffff;
    display: block;
    font-size: 32px;
    cursor: pointer;
    overflow: hidden;
    line-height: 80px;
    text-shadow: none;
    position: absolute;
    font-weight: normal;
    background: transparent;
}
.control-round:hover .carousel-control{
    opacity: 1;
}
.control-round .carousel-control.left {
}
.control-round .carousel-control.right {
}
.control-round .carousel-control.left:hover,
.control-round .carousel-control.right:hover{
    color: #927239;
    background: rgba(255,255,255, 0.8);
}
.control-round .carousel-control.left>span:nth-child(1){
    left: 45%;
}
.control-round .carousel-control.right>span:nth-child(1){
    right: 45%;
}





/*---------- INDICATORS CONTROL ----------*/

.carousel-indicators {
    bottom: 40px;
}
.indicators-line > .carousel-indicators{
    z-index: 99;
}
.indicators-line > .carousel-indicators li{
    border-radius: 0;
    height: 8px;
    width: 40px;
    margin: 0px 4px;
    border: 1px solid #f5eee3;
}
.indicators-line > .carousel-indicators li:last-child{
    margin-right: 0;
}
.indicators-line > .carousel-indicators .active{
    background: #927239;
}

.indicators-line > .carousel-indicators .active:before{

}



.slide-text {
    left: 0;
    bottom: 20%;
    right: 0;
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
    position: absolute;
    text-align: center;
    padding: 10px 32px;

}

.slide-text > h2 {
text-transform: uppercase;
    padding: 0;
    color: #ffffff;
    font-size: 54px;
    font-style: normal;
    
    display: block;
    font-weight: 700;
    text-shadow: 1px 2px 4px rgba(83,65,34,0.6);
    -webkit-animation-delay: 0.7s;
    animation-delay: 0.7s;
}
.slide-text > h3 {
    max-width: 1200px;
    text-shadow: 1px 2px 4px rgba(83,65,34,0.6);
    padding: 0;
    color: #ffffff;
    font-size: 32px;
    line-height: 1em;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    margin: 0;
    display: block;
    padding-bottom: 16px;
    -webkit-animation-delay: 1.1s;
    animation-delay: 1.1s;
}



@media (max-width: 768px){

    .slide-text{
        bottom: 25%;
        padding: 16px 32px;
    }

    .slide-text > h2 {
        font-size: 32px;
        text-align: center;
    }
    .slide-text > h3{
        font-size: 20px;
        text-align: center;
    }

    .control-round .carousel-control{
        width: 32px;
    }

}


