.countries-section{
    overflow:hidden;
    background:#f5f5f5;
    height:60px;
    display:flex;
    align-items:center;
}

.countries-track{
    display:flex;
    width:max-content;
    animation:scrollCountries 15s linear infinite;
}
/*
.country{
    margin-right:60px;
    font-size:20px;
    font-weight:bold;
}*/
.country{
    display:flex;
    align-items:center;
    margin-right:60px;
    font-weight:600;
    white-space:nowrap;
}

.country img{
    width:32px;
    height:auto;
    margin-right:8px;
    border-radius:2px;
}
@keyframes scrollCountries{
    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}