/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 09 2026 | 13:43:03 */
.slider-gallery-section {
	background-color: var(--gray-light-3-dyn-2);
	transition: all 0.4s;
	
	.gallery-swiper {
		padding-left: var(--adjustive-padding);
		padding-right: var(--adjustive-padding);
		margin-bottom: 2rem;
		margin-top: 2rem;
		position: relative;
		--swiper-scrollbar-bottom: -1rem;
		--swiper-scrollbar-sides-offset: var(--adjustive-padding);
		--swiper-scrollbar-bg-color: var(--gray-light-1);
		--swiper-scrollbar-drag-bg-color: var(--green-light-1);
		overflow: unset;
        overflow-x: clip;		
		
		.swiper-slide {
			height: 100%;
			
			&:last-of-type {
				margin-right: var(--adjustive-padding);
			}
			
			.slide-wrapper {
				padding: 0;
				border: 0;
				position: relative;
				aspect-ratio: 3 / 4.5;
				overflow: hidden;
				
				.poster-img {
					width: 100%;
					height: 100%;
					object-fit: cover;
				}
				
				.zoom-btn {
					position: absolute;
					top: 0.5rem;
					right: 0.5rem;
					z-index: 3;
					appearance: none;
					-webkit-appearance: none;
					border: 0;
					cursor: pointer;
					border-radius: 50%;
					width: 3.5rem;
					height: 3.5rem;
					padding: 0.8rem;
					display: flex;
					align-items: center;
					justify-content: center;
					background-color: var(--teal-light-transparent);
					
					svg {
						width: 100%;
						height: 100%;
						transition: all 0.3s ease;
					}
					
					&:hover svg,
					&:focus-visible svg {
						transform: scale(1.1);
					}
				}
				
				.info-wrapper {
					position: absolute;
					left: 0;
					bottom: 0;
					width: 100%;
					z-index: 2;
					background-color: var(--green-dark-transparent-3);
					
					.title-wrapper {
						display: flex;
						align-items: center;
						justify-content: space-between;
						gap: 0.75rem;
						width: 100%;
						padding: 0.5rem;
						margin: 0;
						appearance: none;
						-webkit-appearance: none;
						background: none;
						border: 0;
						text-align: left;
						color: #fff;
						min-height: 70px;
						
						.slide-title {
							font-size: 1.25rem;
							font-weight: 700;
							line-height: 1.3;
						}
						
						.title-arrow {
							flex: 0 0 auto;
							display: flex;
							align-items: center;
							justify-content: center;
							width: 1.5rem;
							height: 1.5rem;
							color: var(--green-light-1);
							
							svg {
								width: auto;
								height: 1.25rem;
								transform: rotate(-90deg);
							}
						}
					}
					
					.excerpt-wrapper {
						display: grid;
						grid-template-rows: 1fr;
						transition: grid-template-rows 0.35s ease;
					}
					
					.excerpt-clip {
						min-height: 0;
						overflow: hidden;
					}
					
					.excerpt-inner {
						padding: 0 0.5rem 0.5rem;
						transition: opacity 0.3s ease, transform 0.35s ease;
						
						strong {
							font-size: 1.25rem;
							
							@media screen and (max-width: 768px) {
								font-size: 1.1rem;
							}
						}
						
						p {
							color: #fff;
							text-align: left;
							
							@media screen and (max-width: 768px) {
								font-size: 0.9rem;
							}
							
							&:last-of-type {
								margin-bottom: 0;
							}
						}
					}
					
					&.has-toggle {
						.title-wrapper {
							cursor: pointer;
						}
						
						.excerpt-wrapper {
							grid-template-rows: 0fr;
						}
						
						.excerpt-inner {
							opacity: 0;
							transform: translateY(0.75rem);
						}
						
						&.is-open,
						&:has(.title-wrapper:focus-visible) {
							.excerpt-wrapper {
								grid-template-rows: 1fr;
							}
							
							.excerpt-inner {
								opacity: 1;
								transform: none;
							}
						}
					}
					
					&:not(.has-toggle) .excerpt-inner {
						padding-top: 0.5rem;
					}
				}
				
				@media (hover: hover) and (pointer: fine) {
					.info-wrapper.has-toggle:hover {
						.excerpt-wrapper {
							grid-template-rows: 1fr;
						}
						
						.excerpt-inner {
							opacity: 1;
							transform: none;
						}
					}
				}
			}
		}
		
		.gallery-nav__btn {
			position: absolute;
			top: 50%;
			transform: translateY(-50%);
			appearance: none;
			-webkit-appearance: none;
			background-color: var(--green-dark-transparent-3);
			border-radius: 50%;
			width: 3rem;
			height: 3rem;
			padding: 0.6rem;
			z-index: 10;
			display: flex;
			align-items: center;
			justify-content: center;
			color: var(--green-light-1);
			
			svg {
				height: 100%;
			}
			
			&.swiper-button-disabled {
				opacity: 0.75;
			}
			
			&.gallery-nav__btn--right {
				right: var(--adjustive-padding);
				
				svg {
					transform: translateX(2px);
				}
			}
			
			&.gallery-nav__btn--left {
				svg {
					transform: translateX(-2px);
				}
			}
		}
	}
}

@media (prefers-reduced-motion: reduce) {
	.slider-gallery-section .excerpt-wrapper,
	.slider-gallery-section .excerpt-inner,
	.slider-gallery-section .zoom-btn svg {
		transition: none;
	}
}

.slider-gallery-section .gallery-nav {
	display: flex;
	gap: 1rem;
}

.slider-gallery-section .gallery-nav__btn {
	background: none;
	border: 0;
	padding: .5rem;
	cursor: pointer;
}

.slider-gallery-section .gallery-nav__btn.swiper-button-disabled {
	opacity: .35;
	cursor: default;
}

.slider-gallery-section .gallery-scrollbar {
	position: relative;
	margin-top: 1rem;
}

body.gallery-lightbox-open {
	overflow: hidden;
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	flex-direction: column;
	padding: 4rem 1rem 1rem;
	background: rgba(0, 0, 0, .92);
}

.gallery-lightbox.is-open {
	display: flex;
}

.gallery-lightbox__close {
	position: absolute;
	top: 2rem;
	right: 2rem;
	background: none;
	border: 0;
	padding: .5rem;
	cursor: pointer;
	z-index: 2;
}

.gallery-lightbox__caption {
	flex: 0 0 auto;
	min-height: 1.75rem;
	margin-bottom: .75rem;
	color: #fff;
	text-align: center;
	font-size: .95rem;
	max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-lightbox__main {
	flex: 1 1 auto;
	min-height: 0;
	width: 100%;
}

.gallery-lightbox__main .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
}

.gallery-lightbox__main .swiper-slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.gallery-lightbox__prev,
.gallery-lightbox__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: 0;
	padding: 1rem;
	cursor: pointer;
	z-index: 2;
}

.gallery-lightbox__prev { 
	left: 0.5rem; 
	
	@media screen and (min-width: 1200px) {
		left: 1.5rem;
	}
}
.gallery-lightbox__next { 
	right: 0.5rem;
	
	@media screen and (min-width: 1200px) {
		right: 1.5rem;
	}
}

.gallery-lightbox__prev.swiper-button-disabled,
.gallery-lightbox__next.swiper-button-disabled {
	opacity: .35;
	cursor: default;
}

.gallery-lightbox__thumbs {
	flex: 0 0 auto;
	margin-top: 1rem;
	max-height: 90px;
}

.gallery-lightbox__thumbs .swiper-slide {
	width: 90px;
	height: 64px;
	opacity: .45;
	cursor: pointer;
	transition: opacity .2s ease;
}

.gallery-lightbox__thumbs .swiper-slide-thumb-active {
	opacity: 1;
}

.gallery-lightbox__thumbs img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}