@keyframes animate {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-3000px, 0, 0);
    }
}

@media (max-width:767px) {
    .slider-area h2 {
        font-size: 30px;
    }

    .wrapper {
        width: 95%;
        border-radius: 0;
        padding: 0;
    }


}

/* GALLERY */
.gallery-container {
    width: 100%;
    overflow: hidden;
}

.gallery-container:hover .image-gallery {
    animation-play-state: paused;
}

.image-gallery {
    animation: animate 25s alternate linear infinite;
    padding: 0 1rem;

    white-space: nowrap;
}

.image-gallery img {
    display: inline-block;
    max-width: 30%;
    height: auto;
}

@media screen and (max-width: 796px) {

    .image-gallery img {
        display: inline-block;
        max-width: 100%;
        height: auto;
    }
}

