#gallery-block {
	padding-bottom: 40px;
}
#gallery-block .swiper {
	overflow: unset;
}
#gallery-block .gallery-holder {
	overflow: hidden;
}
#gallery-block .gallery-item {
	display: flex;
	flex-direction: column;
	height: auto;
	position: relative;
	cursor: pointer;
	height: auto;
}
#gallery-block .gallery-image {
	position: relative;
	padding-top: 77%;
	overflow: hidden;
}
#gallery-block .gallery-image:before {
	content: '';
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	background-color: var(--primary);
	opacity: 0;
	transition: 0.3s;
	background-image: url(images/loop.png);
	background-position: center;
	background-repeat: no-repeat;
	z-index: 1;
}
#gallery-block .gallery-image:hover:before {
	opacity: 0.7;
}
#gallery-block .gallery-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	transition: 0.5s;
}
#gallery-block .gallery-image:hover img {
	transform: scale(1.1);
}
#gallery-block .gallery-content {
	flex-grow: 1;
	padding: 15px;
	background: var(--bg-light);
}
#gallery-block .gallery-title {
	font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 15px;
    font-family: 'Unbounded';
}
#gallery-block .gallery-text {
	font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    color: var(--main-text);
}
#gallery-block .swiper-button-lock {
	display: none;
}

@media (max-width: 1200px) {
	#gallery-block .gallery-title {
		font-size: 16px;
	}
	#gallery-block .gallery-text {
		font-size: 16px;
	}
}

@media (max-width: 650px) {
	#gallery-block .gallery-content {
		flex-grow: 1;
		padding: 10px;
		background: var(--bg-light);
	}
	#gallery-block .gallery-title {
		font-size: 14px;
		margin-bottom: 10px;
	}
	#gallery-block .gallery-text {
		font-size: 14px;
	}
}