
/* =================================================css for the clients section =============================================== */

.clients-section {
    /* background:#E8ECF7; */
    margin: 0px;
}
.clients-section .tabs-wrapper{
    width:min(550px,100%);
    margin:auto;
    display: flex;
    justify-content: center;
    border:1px solid black;
    border-radius:30px;
    overflow: hidden;
}
.tabs-wrapper .tab{
    width: 100%;
    height:100%;
    padding: 16px 20px;
    text-align: center;
    cursor: pointer;
}
.tabs-wrapper .middle-tab{
    border-left: 1px solid black;
    border-right: 1px solid black;
}
.tabs-wrapper .tab.active{
    background:var(--primary);
}
.tabs-wrapper .tab.active p{
    color:white;
}

.tabs-wrapper .tab p{
    white-space: nowrap;
    margin-bottom: 0;
}

.client .image-wrapper {
    height: 110px;
    background-color: #fff;
    padding: 4px;
    border-radius: 10px;
    transition: 0.4s all;
    /* box-shadow: 0px 2px 4px #00000015; */
    border: 1px solid #00000015;
}

.client .image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: 0.4s all;
    object-position: center center;
} 
.client .image-wrapper:Hover img {
    transform: scale(1.1)
} 


.client_heading{
    text-align: center;
    background-color: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
}