.owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-bottom: 15px;
    gap: 4px;
}

.owl-dot {
    width: 16px;
    height: 5px;
    background: #ccc !important;
    border-radius: 30px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0!important;

}
.owl-dot.active {
    background-color: #ccc !important;
    width: 50px;
    border-radius: 30px !important;
    position: relative;
}
.owl-dot.active.animating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: black;
    border-radius: 30px !important;
    animation: progress 3s linear forwards;
}
.owl-carousel .owl-stage{
    display: flex;
    align-items: center;
}
@media (max-width: 1200px) {
    .owl-carousel .owl-item img{
        border-radius: 16px !important;
    }
    .hero-section .carousel-image{
        width: 100% !important;
        max-width: 100% !important;
    }
    .owl-theme .owl-dots .owl-dot span{
        display: none !important;
    }
    .owl-dots{
        padding: 0 !important;
        margin-bottom: -20px !important;
    }
    .full-section{
        display: none;
    }
    .owl-carousel .owl-item .client-logo img{
        border-radius: 0px !important;
    }
}