.product-marks{
    width: 100%;
    padding-top: 40px;
    color: white;
    font-size: medium;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    text-align: center;
}

.product-marks h2{
    font-size: large;
    padding: 10px;
    transition: .5s ease-in-out;
}

#mark-txt{
    transform: translateX(100%);
}

.carousel{
    background-color: rgb(51, 51, 51);
    width: 100%;
    height: 100px;
    display: flex;
    margin: 20px auto;
    position: relative; 
}


.carousel-track{
    padding-right: 10px;
    display: flex;
    flex-wrap: nowrap;
    gap: 60px;
    width: max-content;
    animation: spin 20s infinite linear;
}


.product-marks img{
    flex: 0 0 0;
    max-width: 125px;
    object-fit: contain;
    transition: .3s;
    flex-shrink: 0;

}

@keyframes spin {
    from{
        translate: 0;
    }
    to{
        translate: -50%;
    }
}

@media screen and (min-width: 768px) {
    .product-marks h2{
        font-size: x-large;
    }

    .carousel-track{
        animation: spin 30s infinite linear;
    }
}