.ve-banners {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ve-banner-item {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top:0;
    left:0;
    transition: opacity .8s ease;
}


.ve-banner-item.active {
    opacity:1;
    visibility:visible;
    position:relative;
}

.ve-banner-item img {
    width: 100%;
    height: auto;
    display: block;
}


.ve-banner-prev,
.ve-banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,.5);
    color: #fff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    z-index: 5;
}


.ve-banner-prev {
    left: 15px;
}


.ve-banner-next {
    right: 15px;
}


.ve-banner-dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width:100%;
}


.ve-banner-dot {
    display:inline-block;
    width:10px;
    height:10px;
    background:#fff;
    border-radius:50%;
    margin:5px;
    cursor:pointer;
    opacity:.5;
}


.ve-banner-dot.active {
    opacity:1;
}
.ve-banners {
    position: relative;
    min-height: 100px;
}
/* ==========================
   Slider Full Width
========================== */

.home .ve-banners{

    width:100vw;

    margin-left:calc(50% - 50vw);

    max-width:100vw;

    position:relative;

}

.home .ve-banner-item{

    width:100%;

}

.home .ve-banner-item img{

    width:100%;

    display:block;

    object-fit:cover;

}