#cgi-header-logo {
	width: 100vw;
}

#cgi-header-logo img{
	justify-content: center;
	width: 40vw;
	margin-left: 30vw;
	margin-top: 5vw;
}

.content {
	padding: 20px 5vw;
	text-indent: 32px;
}

.swiper-container {
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
}

.swiper-slide {
    height: 90vw; /* Make slides larger (adjust as needed) */
    width: auto; /* Let the width be determined by the content */
    position: relative; /* Required for overlap */
    transform: scale(0.85); /* Shrink slides slightly for overlap effect */
    transition: transform 0.3s ease; /* Smooth transition when slide changes */
    onclick: openModal(this)
}

.swiper-slide:hover {
	transform: scale(1); /* Shrink slides slightly for overlap effect */
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-style: solid;
    border-color: #fff;
    border-width: 10px;
    filter: drop-shadow(0px 3px 8px #50505075);
    /* Drop shadow effect */
    box-shadow: 0px 3px 8px rgba(75, 75, 75, 0.5);
    /* Adding a subtle shadow effect for better visibility */
    onclick: openModal(this)
}

.swiper-slide-active {
    transform: scale(1); /* Enlarge the active slide */
    z-index: 10; /* Bring the active slide to the front */
}

.swiper-wrapper {
    display: flex; /* Allow slides to stack next to each other */
    gap: -200px; /* Negative gap to create overlap (adjust as needed) */
}

@media (max-width: 680px) {
    .swiper-slide img {
        border: 8px solid #eeeeee;
    }

    .content {
		padding: 20px 20px;

	}
}

@media (max-width: 480px) {
    .swiper-slide img {
        border: 6px solid #eeeeee;
    }
}

#swiper-cgi-renders {
	margin-bottom: 100px;
}