/* :root {
    --Background-Color: #6162C3;
    --Basic-Text-Color: #000;
    --Secondary-Text-Color: #6162C3;
    --Polygon-Text-Color: #8247E5;
    --Paragraph-Text-Color: #3A3A3A;
    --Background_Body: #fff;
}


#Sneak_Peek div {
    display: flex;
    margin-top: 50px;
    gap: 10px;
    animation: slider 10s linear infinite;
    margin-bottom: 10px;
}

#Sneak_Peek div img {
    width: 300px;
}

@keyframes slider {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-310px * 11));
    }
}

@media only screen and (max-width: 1200px) {
    #Sneak_Peek div {
        animation: slider1 10s linear infinite;
        margin-top: 0;
    }

    #Sneak_Peek div img{
        width: 250px;
    }

    @keyframes slider1 {
        from {
            transform: translateX(0);
        }
    
        to {
            transform: translateX(calc(-260px * 11));
        }
    }
} */