
/** clients-section **/

.clients-section{
    position: relative;
}

.clients-section .inner-container{
    position: relative;
    display: flex;
    align-items: center;
    gap: 70px;
    overflow: hidden;
}

.clients-section .inner-container h4{
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 30px;
    color: Var(--theme-color);
    text-transform: uppercase;
    min-width: 160px;
}

.clients-section .clients-logo{
    position: relative;
    display: block;
}

.clients-section .clients-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.clients-section .clients-logo img{
    position: relative;
    display: block;
    width: auto;
    max-width: 140px;
    max-height: 60px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: all .3s cubic-bezier(.25,.8,.25,1);
}

.clients-section .clients-logo img:hover{
    filter: grayscale(0%);
    transform: scale(1.08);
}

/** clients marquee (about page) **/

.clients-marquee-wrap {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}

.clients-marquee-wrap:hover .clients-marquee-track {
    animation-play-state: paused;
}

@keyframes clients-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.clients-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: fit-content;
    animation: clients-scroll 18s linear infinite;
    will-change: transform;
}

.clients-marquee-track .clients-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.clients-marquee-track .clients-logo img {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.clients-marquee-track .clients-logo img:hover {
    filter: grayscale(0%);
    transform: scale(1.08);
}


.clients-section .pattern-layer{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.clients-section.alternat-2{
    padding: 93px 0px;
}

.clients-section.home-5{
    padding: 100px 0px;
    background-color: transparent;
}

  
  
/** rtl-css **/
  

  
/** responsive-css **/
  
@media only screen and (max-width: 1200px){
  
}
  
@media only screen and (max-width: 991px){

}
  
@media only screen and (max-width: 767px){

}
  
@media only screen and (max-width: 599px){
  
}
  
@media only screen and (max-width: 499px){
    .clients-section .inner-container{
        position: relative;
        display: block;
    }

    .clients-section .inner-container h4{
        min-width: 100%;
        text-align: center;
        margin-bottom: 25px;
    }
} 