
.gallery-slide{
    padding-bottom: 48px;
    padding-top: 48px;
    overflow: hidden;
}

.gallery-slide .intro h2{
    margin-bottom: 60px;
}



.gallery-slide .marquee-content .marquee-item .image-wrapper{
    width: 275px;
    height: 382px;
    border-radius: 24px;
}

.gallery-slide .marquee-content .marquee-item .image-wrapper:nth-child(2n){
    width: 262px;
    height: 325px;
    align-self: center;
}

.gallery-slide .marquee-content .marquee-item .image-wrapper:nth-child(3n){
    width: 310px;
    height: 420px;
}

.gallery-slide .marquee-content .marquee-item .image-wrapper:nth-child(4n){
    width: 382px;
    height: 382px;
}

.gallery-slide .marquee-content .marquee-item .image-wrapper:nth-child(5n){
    width: 275px;
    height: 363px;
    align-self: flex-end;
}



.marquee-content {
    display: flex;
    overflow: hidden;
    gap: 20px;

}

.gallery-slide .marquee-content .marquee-item{
    display: flex;
    flex-direction: row;
    /*flex-wrap: nowrap;*/
    flex-shrink: 0;
    gap: 20px;
    /*justify-content: space-around;*/
    animation: scrolling 30s linear infinite;
}

/*.marquee-item img {*/
/*    display: block;*/
/*    width: 100%;*/
/*    !*   padding: 0 20px; *!*/
/*}*/

@keyframes scrolling {
    0% { transform: translateX(0); }
    100% { transform: translatex( calc(-100% - 20px)); }
}

/*Tablet*/
/*--------------------------*/

@media only screen and (min-width: 769px){
    .gallery-slide .intro{
        display: flex;
    }

    .gallery-slide .intro h2{
        white-space: nowrap;
        margin-right: 20px;
    }

    .gallery-slide .intro .graphic svg{
        width: 37vw;
        transform: translateY(-20%);
    }
}


/*Escritorio*/
/*--------------------------*/
@media only screen and (min-width: 1024px){

    .gallery-slide .intro .graphic svg{
        width: 54vw;
        max-width: 789px;
        transform: translateY(-15px);
    }

}
