#carouselSlide{
    position: relative;
}

body{
margin: 0;
}
.VueCarousel-slide {
font-size:12px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
-webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
height:160px;
background:#ccc;
-webkit-box-sizing:border-box;
        box-sizing:border-box;
}

/*.slide-1{
background: -webkit-gradient(linear, left bottom, left top, color-stop(1%, rgba(0, 0, 0, 0.9)), color-stop(99%, rgba(0, 0, 0, 0))),url(../images/mv/slide-1@2x.jpg);
background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.9)1%, rgba(0, 0, 0, 0)99%),url(../images/mv/slide-1@2x.jpg);
background: linear-gradient(0deg, rgba(0, 0, 0, 0.9)1%, rgba(0, 0, 0, 0)99%),url(../images/mv/slide-1@2x.jpg);
}*/
/*.slide-2{
background: -webkit-gradient(linear, left bottom, left top, color-stop(1%, rgba(0, 0, 0, 0.9)), color-stop(99%, rgba(0, 0, 0, 0))),url(../images/mv/slide-2@2x.jpg);
background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.9)1%, rgba(0, 0, 0, 0)99%),url(../images/mv/slide-2@2x.jpg);
background: linear-gradient(0deg, rgba(0, 0, 0, 0.9)1%, rgba(0, 0, 0, 0)99%),url(../images/mv/slide-2@2x.jpg);
}
.slide-3{
background: -webkit-gradient(linear, left bottom, left top, color-stop(1%, rgba(0, 0, 0, 0.9)), color-stop(99%, rgba(0, 0, 0, 0))),url(../images/mv/slide-3@2x.jpg);
background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.9)1%, rgba(0, 0, 0, 0)99%),url(../images/mv/slide-3@2x.jpg);
background: linear-gradient(0deg, rgba(0, 0, 0, 0.9)1%, rgba(0, 0, 0, 0)99%),url(../images/mv/slide-3@2x.jpg);
}
.slide-4{
background: -webkit-gradient(linear, left bottom, left top, color-stop(1%, rgba(0, 0, 0, 0.9)), color-stop(99%, rgba(0, 0, 0, 0))),url(../images/mv/slide-4@2x.jpg);
background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.9)1%, rgba(0, 0, 0, 0)99%),url(../images/mv/slide-4@2x.jpg);
background: linear-gradient(0deg, rgba(0, 0, 0, 0.9)1%, rgba(0, 0, 0, 0)99%),url(../images/mv/slide-4@2x.jpg);
}
.slide-5{
background: -webkit-gradient(linear, left bottom, left top, color-stop(1%, rgba(0, 0, 0, 0.9)), color-stop(99%, rgba(0, 0, 0, 0))),url(../images/mv/slide-5@2x.jpg);
background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.9)1%, rgba(0, 0, 0, 0)99%),url(../images/mv/slide-5@2x.jpg);
background: linear-gradient(0deg, rgba(0, 0, 0, 0.9)1%, rgba(0, 0, 0, 0)99%),url(../images/mv/slide-5@2x.jpg);
}
.slide-6{
background: -webkit-gradient(linear, left bottom, left top, color-stop(1%, rgba(0, 0, 0, 0.9)), color-stop(99%, rgba(0, 0, 0, 0))),url(../images/mv/slide-6@2x.jpg);
background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.9)1%, rgba(0, 0, 0, 0)99%),url(../images/mv/slide-6@2x.jpg);
background: linear-gradient(0deg, rgba(0, 0, 0, 0.9)1%, rgba(0, 0, 0, 0)99%),url(../images/mv/slide-6@2x.jpg);
}*/

.slide{
background-size: cover;
background-position: center;
position:relative;
}
.slide:after{
  position: absolute;
  content:"";
  top:0;
  left:0;
  width: 100%;
  height:100%;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(1%, rgba(0, 0, 0, 0.9)), color-stop(99%, rgba(0, 0, 0, 0)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.9)1%, rgba(0, 0, 0, 0)99%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9)1%, rgba(0, 0, 0, 0)99%);
}
.slide img { 
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.VueCarousel-dot-container{
    position: absolute;
    bottom:0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin: 0 auto;
}
.VueCarousel-dot{
    background-color:rgba(255, 255, 255, 0.5)!important;
}
.VueCarousel-dot--active{
    background-color: #8C7E59 !important;
}
.VueCarousel-dot-container{
    display: none !important;
}
.VueCarousel-dot[data-v-438fd353]:focus{
    outline:0px solid rgba(0, 0, 0, 0) !important;
}

@media screen and (min-width: 768px){
.VueCarousel-dot-container{
    display: block !important;
}
.VueCarousel-slide {
    height:450px;
    object-fit: cover;
}
}