.loop-centered .owl-stage{
    padding-bottom: 15px;
}
.loop-centered .item{
    position: relative;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
    border-radius: 0 0  6px 6px;
    overflow: hidden;
}
.loop-centered .item img{
    height: 720px;
    object-fit: cover;
}
@media(max-width:2560px){
    .loop-centered .item img{
        height: 540px;
    }   
}
.loop-centered .owl-item .item::after{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0, .5);
    content: "";
    opacity: 0;
    transition: all .5s ;
    z-index: 10;
}

.loop-centered__text{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all .5s ;
    z-index: 11;
}

@media(min-width:1400px){
.loop-centered__text{
margin-left: 10%;
}
}




.loop-centered__text .loop-centered__title{
    color: #fff;
    font-weight: bold;
    margin-bottom: 40px;
    text-shadow: 0px 0px 5px rgb( 0, 0, 0 );
    letter-spacing: .5px;
    font-size: 37px;
    line-height: 34px;
}
.loop-centered__btn{
    display: inline-block;
    background-image: -moz-linear-gradient( -180deg, rgb(169,208,74) 0%, rgb(217,251,136) 100%);
    background-image: -webkit-linear-gradient( -180deg, rgb(169,208,74) 0%, rgb(217,251,136) 100%);
    background-image: -ms-linear-gradient( -180deg, rgb(169,208,74) 0%, rgb(217,251,136) 100%);
    transition: all 0.3s;
    width: 210px;
    height: 44px;
    line-height: 44px;
    color: #333333;
    border-radius: 41px;
    padding-left: 28px;
    font-size: 17px;
    position: relative;
}

.loop-centered__btn:hover{
    text-decoration: none;
    padding-left: 45px;
}

.loop-centered__btn .fa{
    display: inline-block;
    height: 44px;
    background: #595959;
    color: #fff;
    border-radius: 0 41px 41px 0;
    width: 46px;
    float: right;
    line-height: 44px;
    text-align: center;
    font-size: 22px;
}

.loop-centered__btn:hover .fa{
    background: transparent;
}

.loop-centered .owl-item:not(.center) .item::after{
    
    opacity: 1;
}

.loop-centered .owl-item:not(.center) .item .loop-centered__text{
    opacity: 0;
}

.loop-centered .owl-nav{
    position: absolute;
    width: calc(100%/2);
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    margin-left: 8px;
    height: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.loop-centered .owl-nav button.owl-prev, .loop-centered .owl-nav button.owl-next{
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #fff;
    font-size: 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5);
}
.loop-centered .owl-nav button.owl-prev{
    padding: 2px 2px 0 0 !important;
    margin-left: -25px;
}
.loop-centered .owl-nav button.owl-next{
    padding: 2px 0 0 2px  !important;
    margin-right: -25px;
}

.loop-centered .owl-dots{
    position: absolute;
    bottom: 10px;
    z-index: 12;
    text-align: center;
    -webkit-tap-highlight-color: transparent; 
    width: 100%;
    /* left: 50%;
    transform: translateX(-50%); */
}
.loop-centered .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; 
}
.loop-centered .owl-dots .owl-dot span {
      width: 45px;
      height: 10px;
      margin: 5px 7px;
      background: #fff;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; 
}
.loop-centered .owl-dots .owl-dot.active span, .loop-centered .owl-dots .owl-dot:hover span {
    background: #143a21; 
}

@media(max-width: 1200px){
    .loop-centered__text{
        margin-left: 0;
        text-align: center;
        width: 100%;
    }
}

@media(max-width: 992px){
    .loop-centered__text .loop-centered__title{
        font-size: 32px;
    }
}

@media(max-width: 768px){
    .loop-centered .owl-stage{
        padding-bottom: 0;
    }
    .loop-centered .item{
        box-shadow: none;
        border-radius: 0;
    }
    .loop-centered .item img{
        height: 400px;
    }   
    
    .loop-centered__text .loop-centered__title{
        font-size: 28px;
    }
}