.page7{
	position: relative;
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    padding-top: 10vh;
/*    opacity: 0.7;*/
}

.page7-row1{
	justify-content: center;
}

.page7-title{
    font-family: Poppins-Bold, sans-serif;
    font-size: min(4vw,75px);
    color: #003F7D;
}

.page7-row2{
    display: flex;
	justify-content: center;
	width: 100vw;
}

.carousel-container {
    width: 100%; /* Adjust according to your design */
    height: 100%; /* Adjust according to your design */
    overflow: hidden; /* Hide anything outside the container */
    position: relative;
}

.carousel-slide {
    display: flex;
    width: 100%; /* Two images side by side, each taking 100% of the container width */
    height: 100%;
    animation: slide 120s infinite linear; /* Infinite animation */
}

.carousel-slide img {
    width: 100%; /* Each image takes 50% of the container width */
    height: 100%;
    object-fit: cover;
}

@keyframes slide {
    0% { transform: translateX(0); }
    50% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

@media (max-width: 500px){
    .page7{
        padding-top: 5vh;
    }

    .page7-title{
        font-size: 6vw
    }

}