.sec-gallery__list {
	 display: flex;
	 flex-direction: column;
	 gap: 20px;
}
 .sec-gallery__grid {
	 display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 30px;
}
 @media screen and max-width: 992px {
	 .sec-gallery__grid {
		 gap: 20px;
		 grid-template-columns: 1fr;
	}
}
 .sec-gallery__bg {
	 height: auto;
	 width: 100%;
	 background-image: none;
	 text-align: center;
}
 .sec-gallery__image {
	 border-radius: 10px;
}
 .sec-gallery__image--3 {
	 width: 100%;
}
 .sec-gallery .swiper-pagination {
	 position: relative;
	 bottom: 0;
	 left: 0;
	 display: none;
	 font-size: 0;
}
 @media screen and (max-width: 992px) {
	 .sec-gallery .swiper-pagination {
		 margin-top: 45px;
		 display: block;
	}
}
 @media screen and (max-width: 576px) {
	 .sec-gallery .swiper-pagination {
		 margin-top: 30px;
	}
}
 @media screen and (max-width: 992px) {
	 .sec-gallery .sec__footer {
		 display: none;
	}
}
 .sec-gallery__slider {
	 font-size: 0;
}
 @media screen and (max-width: 576px) {
	 .sec-gallery__slider {
		 padding: 0 15px;
	}
}
 @media screen and max-width: 576px {
	 .sec-gallery__slider--t2 {
		 padding: 0;
	}
}
 .sec-gallery__slider--t2 .gallery-block img {
	 height: 100%;
	 object-fit: cover;
}
 .sec-gallery__slider--t2 .swiper-pagination {
	 display: none;
}
 @media screen and max-width: 576px {
	 .sec-gallery__slider--t2 .swiper-pagination {
		 display: block;
	}
}
 @media screen and max-width: 576px {
	 .sec-gallery__slider--t2 .sec__footer {
		 display: none;
	}
}
 .sec-gallery__slider-nav {
	 margin-top: 30px;
}
 @media screen and max-width: 992px {
	 .sec-gallery__slider-nav {
		 margin-top: 20px;
	}
}
 @media screen and max-width: 576px {
	 .sec-gallery__slider-nav {
		 margin-top: 10px;
		 display: none;
	}
}
 .sec-gallery__slider-nav .gallery-block {
	 border-radius: 30px;
}
 .sec-gallery__slider-nav .swiper-slide {
	 opacity: 0.5;
}
 .sec-gallery__slider-nav .swiper-slide-thumb-active {
	 opacity: 1;
}
 .gallery-block {
	 position: relative;
	 border-radius: 40px;
	 overflow: hidden;
	 font-size: 0;
	 cursor: pointer;
}
 .gallery-block:hover .gallery-block__btn {
	 opacity: 1;
}
 .gallery-block .figcaption {
	 position: absolute;
	 bottom: 0;
	 right: 0;
	 left: 0;
	 color: #fff;
	 border-radius: 0 0 10px 10px;
	 background-color: #000 5c;
}
 .gallery-block__btn {
	 position: absolute;
	 right: 25px;
	 top: 25px;
	 z-index: 1;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 width: 54px;
	 height: 54px;
	 border-radius: 50%;
	 background: rgba(0, 0, 0, 0.5);
	 backdrop-filter: blur(30px);
	 border: 0;
	 padding: 0;
	 opacity: 0;
	 transition: opacity 0.2s;
	 pointer-events: none;
}
 @media screen and max-width: 1510px {
	 .gallery-block__btn {
		 width: 46px;
		 height: 46px;
	}
}
 @media screen and max-width: 576px {
	 .gallery-block__btn {
		 right: 10px;
		 top: 10px;
	}
}
 .gallery-block__btn svg {
	 width: 16px;
	 height: 16px;
	 fill: #fff;
}
 .gallery-block img {
	 width: 100%;
	 height: auto;
}
 