.gallery-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    height: 500px;
}

.gallery-track {
    display: flex;
    /*width: calc((685px * 10) + 620px);*/
    width: calc(((760px * 28) + (343px * 4)) * 2);
    /*width: calc((760px * 28) + (343px * 4));*/
    animation: scroll 90s linear infinite;
}

.gallery-track img {
    /*width: 600px;*/
    max-width: 100%;
    border-radius: 5px;
    margin-right: 10px;
    /*object-fit: cover;*/
}

.gallery-carousel:hover .gallery-track {
    animation-play-state: paused;
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

#bodas-form { margin: auto; text-align: center;}

#bodas-form img { border-radius: 5px; max-height: 800px; margin-bottom: 100px; }