@import "../../fonts/Cairo/stylesheet.css";

* {
    font-family: Cairo,sans-serif;
}
body
{
    background-repeat: no-repeat;

}
html {
    scroll-padding-top: 115px; /* Adjust the value for your needs */
}


 .partners {
     text-align: center;
     font-size: 23px;
     color: #242424;
 }


.merg_row
{
    margin-right: 130px;
}

.mrqRow{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


.Marquees{
    overflow-x: hidden;
}
.Marquee{
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;

}
.marquee{
    display: flex
;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 119px;
    margin: 10px;
    padding: 13px;
}

.marquee img {
    filter: grayscale(1);
    max-width: 150px;
}

.marquee:hover img {
    filter: grayscale(0);
}

.icon {
    color: #cccccc;
    transform: scale( 1.5 );
}
.FirstRow{
    animation: Scroll 60s linear infinite;}

.SecondRow{
    animation: Scroll 60s linear infinite;
    animation-direction: reverse;
}
.Marquees:hover .SecondRow{
    -webkit-animation-play-state:paused;
    -moz-animation-play-state:paused;
    -o-animation-play-state:paused;
    animation-play-state:paused;
}




@keyframes Scroll {
    0% {
        transform: translateX(-50vw);
        -webkit-transform: translateX(-50vw);
    }
    100% {
        transform: translateX(50vw);
        -webkit-transform: translateX(50vw);
    }
}


