.ats-cv-carousel-wrapper{
    /* margin-top:18px; */
    color:#fff;
}
.ats-cv-carousel-viewport{
    position:relative;
    overflow:hidden;
}
.ats-cv-slides-container{
    display:flex;
    transition:transform 0.4s ease-in-out;
    will-change:transform;
    gap:8px;
}
.ats-cv-slide-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:36px;
    height:36px;
    font-size:16px;
    border-radius:50%;
    border:none;
    background:none;
    color:#999;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background 0.2s ease,transform 0.2s ease,opacity 0.2s ease;
    cursor:pointer;
    z-index:10;
    opacity:0.9;
}
.ats-cv-slide-arrow:active{
    transform:translateY(-50%) scale(0.95);
}
.ats-cv-slide-arrow.prev{
    left:7px;
}
.ats-cv-slide-arrow.next{
    right:7px;
}
.ats-cv-slide{
    flex:0 0 80%;
    /* opacity:0; */
    transition:opacity 0.3s ease-in-out;
    /* margin-right:10px; */
}
.ats-cv-slide.active{
    opacity:1;
}

.ats-cv-slide .card_home_child{
    min-height:202px;
}

.ats-cv-carousel-controls{
    display:flex;
    align-items:center;
    gap:12px;
    /* padding-bottom:10px; */
    flex-wrap:wrap;
    /* margin-left:5px; */
}
.ats-cv-nav-btn{
    width:25px;
    height:25px;
    font-size:15px;
    border-radius:50%;
    border:none;
    background:#00a0d2;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 12px rgba(0,160,210,0.25);
    transition:background 0.2s ease;
}
.ats-cv-nav-btn:hover{
    background:#007ba3;
    transform:scale(1.1);
}
.ats-cv-nav-btn:active{
    transform:scale(0.95);
}
.ats-cv-carousel-viewport{
    user-select:none;
}
.ats-cv-carousel-viewport.dragging{
    cursor:grabbing;
}
.ats-cv-bullets{
    display:flex;
    align-items:center;
    gap:8px;
}
.ats-cv-bullet{
    width:8px;
    height:8px;
    border-radius:50%;
    border:none;
    background:#c7d8e2;
    padding:0;
    transition:background 0.2s ease,transform 0.2s ease;
}
.ats-cv-bullet.active{
    background:#00a0d2;
    transform:scale(1.2);
}
.ats-cv-see-all-link{
    margin-left:auto;
    text-decoration:none;
    /* margin-right:10px; */
}
@media(max-width:576px){
    /* .ats-cv-carousel-controls{
        flex-direction:column;
        align-items:flex-start;
    } */
    /* .ats-cv-see-all-link{
        margin-left:0;
    } */
    .ats-cv-slide-arrow{
        width:30px;
        height:30px;
        font-size:14px;
    }
    .ats-cv-slide-arrow.prev{
        left:5px;
    }
    .ats-cv-slide-arrow.next{
        right:5px;
    }
}

