.about-us-gallery {
	width: 100%;
	padding-inline: 80px;
	max-width: 1440px;
	margin: auto;
	display: flex;
	flex-direction: column;
	row-gap: 32px;
	overflow: hidden;
	position: relative;
}
@media (max-width: 1024px) {
	.about-us-gallery {
		padding-inline: 32px;
	}
}
@media (max-width: 767px) {
	.about-us-gallery {
		padding-inline: 20px;
	}
}
@media (max-width: 1024px) {
	.about-us-gallery {
		row-gap: 24px;
		padding-inline: 0;
	}
}
@media (max-width: 1024px) {
	.about-us-gallery h2 {
		padding-inline: 32px;
	}
}
@media (max-width: 767px) {
	.about-us-gallery h2 {
		padding-inline: 20px;
	}
}
.about-us-gallery__container {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	transition: all 0.4s ease;
	overflow: hidden;
}
@media (max-width: 767px) {
	.about-us-gallery__container {
		height: auto;
		flex-direction: column;
		overflow: visible;
		gap: 8px;
	}
}
.about-us-gallery__slider-container {
	height: 260px;
}
@media (max-width: 1024px) {
	.about-us-gallery__slider-container {
		height: 161px;
	}
}
@media (max-width: 767px) {
	.about-us-gallery__slider-container {
		height: 104px;
	}
}
.about-us-gallery__slider-container .swiper-wrapper {
	width: 100%;
	display: flex;
	justify-content: space-between;
}
.about-us-gallery__slider-container {
	.swiper-slide {
		display: grid;
		grid-template-columns: 40% calc(35% - 32px) 25%;
		grid-gap: 16px;
		
		@media (max-width: 767px) {
			grid-gap: 8px;
			grid-template-columns: 40% calc(35% - 16px) 25%;
		}
		
		.about-us-gallery__item {
			height: 100%;
			overflow: hidden;
		}
		
		img {
			display: block;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}
	
	&:nth-child(even) {
		.swiper-slide {
			grid-template-columns: 25% calc(35% - 32px) 40%;
			
			@media (max-width: 767px) {
				grid-template-columns: 25% calc(35% - 16px) 40%;
			}
		}
	}
}
.about-us-gallery__item {
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.2s ease-out;
}
.about-us-gallery__item img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

/* gallery_popup */
.gallery_popup {
	position: fixed;
	inset: 0;
	z-index: 200;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: .4s;
	
	&.show {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}
	
	.overlay {
		position: fixed;
		inset: 0;
		background-color: rgba(0, 0, 0, 0.4);
	}
	
	.close_popup {
		position: absolute;
		top: 12px;
		right: 15px;
		z-index: 3;
		cursor: pointer;
		
		@media(max-width: 767px) {
			display: none;
		}
		
		svg {
			display: block;
		}
	}
	
	.popup_container {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		display: flex;
		justify-content: center;
		align-items: center;
		width: 80%;
		max-height: 90%;
		
		@media(max-width: 767px) {
			width: 90%;
		}
	}
	
	.popup_content {
		position: relative;
		padding: 40px;
		background-color: #fff;
		border-radius: 4px;
		display: flex;
		flex-direction: column;
		row-gap: 32px;
		max-height: 100%;
		overflow: auto;
		
		@media(max-width: 767px) {
			padding: 16px;
		}
	}
	
	.swiper {
		width: 100%;
	}
	
	.swiper-slide {
		aspect-ratio: 16 / 9;
		overflow: hidden;
		
		img {
			display: block;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
	}
	
	.gallery_popup__pagination {
		text-align: center;
		margin-top: 12px;
	}
	
	.gallery_popup__navigation {
		width: 160px;
		display: flex;
		justify-content: space-between;
		position: absolute;
		left: 50%;
		bottom: 6px;
		transform: translate(-50%, 0);
		text-align: center;
		z-index: 1;
		font-size: 16px;
		color: #1B1D1F;
		user-select: none;
		
		svg {
			display: block;
		}
	}
}