@import url(../styles/global.css);
@import url(../styles/header.css);

.overlay-product{
    border-radius: 20px;
    overflow: hidden;
    min-height: 150px;
    height: 100%;
    color: var(--color-primary);
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 23px;
    -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
 
}
.overlay-product .img-wrapper{
    max-height: 200px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
}
.overlay-product .img-wrapper img{

    object-fit: cover;
    height: 100% !important;
}
.gallery-slider a{
        border-radius: 20px;
        overflow: hidden;
}
.overlay-product .img-wrapper::before , .gallery-slider a::before{
    content: " ";
    position:absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: block;
    background: linear-gradient(to bottom , rgba(255,255,255,0),rgba(0,0,0,0.8));
    transition: all 0.3s;
}
.overlay-product .img-wrapper:hover::before, .gallery-slider a:hover:before{
    background: linear-gradient(to bottom , rgba(255,255,255,0),#4D1A56);
}
.overlay-product__title{
line-height: 24px;
padding: 0 16px;
font-weight: 700;
font-size: 18px;
color: var(--color-primary);
margin-top: 10px;
padding: 5px 0;
}

.data-box{
    background: #F5F5F5;
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
}
.value-box{
    background: #F5F5F5;
    padding: 16px;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
}
.gallery-slider{
    padding: 0 20px;
}
.gallery-slider img{
    border-radius: 15px;
    object-fit: cover;
}
.gallery-slider a , .gallery-slider img{
    height: 100%;
}
.gallery-slider .owl-prev,.gallery-slider .owl-next{
    top:50%;
    position: absolute;
    transform: translateY(-50%);
}
.gallery-slider .owl-prev{
    right: -7px;
}
.gallery-slider .owl-next{
    left: -7px;
}

@media only screen and (max-width:576px){
    .data-box{
        text-align: right !important;
    }
}
.customers-section .row{
    width: 100%;
    justify-content: center;
}
.customers-section img{
    max-width: 200px;
    margin: auto;
}
@media only screen and (min-width:768px){
.customers-section .col-md-2{
   flex: 0 0 20%;
   text-align: center;

}
}