.section {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
}
.fullscreen-video-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.fullscreen-video-container video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.image-gallery {
display: flex;
width: 100%;
height: 100%;
overflow-x: scroll;
scroll-snap-type: x mandatory;
}
.image {
flex: 0 0 100%;
scroll-snap-align: start;
}
.image img {
width: 100%;
height: 100%;
object-fit: cover;
}