class="text-block"/* Позиционирование ==============================================================*/
.body-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
}

.main-index-container {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	/* padding-bottom: 40px; */
}

.no-scroll {
  overflow: hidden;
}


.main-wrapper {
	max-width: 1440px;
	margin: 0 auto;
	padding: 100px 20px 0 20px;
}

/* Основной блок ==============================================================*/
.article {
	display: flex;
	flex-direction: column;
	gap: 30px;
    	padding: 45px 0 0 0;
}

.article-header-wrapper{
   	width: 100%;    
	z-index: 49;   
	position: fixed;   
 	background-color: #1a1a1a;
	padding: 95px 0 20px 0;
}

.article-header {
	display: flex;
	justify-content: space-between;   
	max-width: 1440px;   
	margin: 0 auto;   
    	padding: 0 20px;
}


.article__title{
	text-align: end;
	order:2;
	font-size:1.5rem;
}

.back-button {
	padding: 5px 15px;
	color: white;
	background-color: #d4003f;
	border: none;
	border-radius: 5px;
	transition: 0.3s ease-in-out;
	cursor: pointer;
}

.back-button:hover {
	background-color: #a3002e;
}

.back-button i {
	margin-right: 2px;
	font-size: 12px;
}

@media (max-width: 771px) {
	.article{
		padding: 80px 0 0 0;
	}	
	.article-header-wrapper{
		padding: 95px 0 0 0;
	}
	.back-button {
		padding: 8px 15px;
	}
	.article__title {
		margin-top: 15px;
		text-align: start;
	}
	.article-header {
		display: flex;
		flex-direction: column;
		padding-bottom: 15px;
	}
}

@media (max-width: 574px) {
	.article{
		padding: 110px 0 0 0;
	}
}	

@media (max-width: 311px) {
	.article{
		padding: 130px 0 0 0;
	}
}	


.article__main {
	/* border-bottom: 1px solid #6c6c6c; */
	/* padding-bottom: 20px; */

}


.article-block-image{	
	display: grid;
	/* grid-template-columns: 1fr 2fr; */	
	gap: 20px;
}

.article-block-image img{
  	aspect-ratio: 16 / 5;
	width: 100%;
	object-fit: cover;
	border-radius: 5px;
	overflow: hidden;
}

@media (max-width: 1050px) {
	.article-block-image {
		grid-template-columns: 1fr;
		text-align: center;
		justify-items: center;
	}
	.article-block-image img {
 		/* width: 70%; */
 	}
}

@media (max-width: 771px) {
	.article-block-image {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.article-block-image img {
		width: 100%;
	}
}


.article__image-block,
.article__double-image-block {
	/* padding: 0 0 20px 0; */
	/* border-bottom: 1px solid #6c6c6c; */
}

.article__text-block {
	padding: 0;
	/* border-bottom: 1px solid #6c6c6c; */
}

.article__main p,
.article__image-block p,
.article__double-image-block p,
.article__text-block p {
	text-align: justify;	
	word-spacing: -1px;
	/* border-bottom: 1px solid #6c6c6c; */
}

.article__image-block h2,
.article__double-image-block h2,
.article__text-block h2 {
	padding-bottom: 10px;
}

.article__image {
	width: 100%;
	height: 700px;
	object-fit: cover;
	border-radius: 5px;
}

.article__double-image {
	display: flex;
	gap: 20px;
}

.article__image-small {
	max-width: 100%;
	height: 100%;
	border-radius: 5px;
}


.product-gallery__image {
	cursor: pointer;
	border-radius: 5px;
	transition: 0.3s ease-in-out;
}


.product-gallery__item{
	width:100%;	
	position: relative;
	overflow:hidden;
}

.product-gallery__item-first {
	width:100%;	
	height:auto;
	grid-column: 1; 
	grid-row: 1 / span 2;
	position: relative;
	overflow:hidden;
}


.product-gallery__item-small {
	width:50%;	
	position: relative;
	overflow:hidden;
}

.product-gallery__item:hover  .product-gallery__image {
	transform: scale(1.1);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-gallery__item-first:hover .product-gallery__image {
	transform: scale(1.1);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.product-gallery__item-small:hover   .product-gallery__image {
	transform: scale(1.1);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-gallery__icon {
	position: absolute;
	top: 10px;
	right: 10px;
	color: #d4003f;
	font-size: 18px;
	padding: 5px;
}

@media (max-width: 771px) {
	.article__double-image {
		flex-direction: column;
	}
	.product-gallery__item-small{
		width: 100%;
	}
	.article__image-small,
	.article__image {
		width: 100%;
		max-width: 100%;
		height: auto;
	}
}

/* Модальное окно Фотогалерея ==============================================================*/
#gallerymodal {
	border-radius: 8px;
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: rgba(18, 18, 18, 0.567);
}

#gallerymodal .gallery-modal__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 90vh;
	max-width: 1400px;
	max-height: 90vh;
	/* border-radius: 8px; */
	position: relative;
	overflow: hidden;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#gallerymodal .gallery-modal__close-button {
	position: absolute;
	top: 12px;
	right: 10px;
	color: #ffffff;
	background: rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	padding: 13px;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
	z-index: 1000;
	-webkit-transition: ease-in-out 0.3s;
	-o-transition: ease-in-out 0.3s;
	transition: ease-in-out 0.3s;
}

#gallerymodal .gallery-modal__close-button:hover {
	color: #d4003f;
}

/* Слайдер в модальном окне Фотогалерея ==============================================================*/
#gallerymodal .swiper-container {
	touch-action: manipulation;
	display: -ms-grid;
	display: grid;
	width: 100%;
	height: auto;
}

#gallerymodal .swiper-slide {
	touch-action: manipulation;
	display: -webkit-box;
	display: -ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#gallerymodal .swiper-slide img {
	touch-action: manipulation;
	width: 99%;
	/* height: 100%; */
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 8px;
}

#gallerymodal .swiper-button-prev,
#gallerymodal .swiper-button-next {
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	color: white;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	-webkit-transition: ease-in-out 0.3s;
	-o-transition: ease-in-out 0.3s;
	transition: ease-in-out 0.3s;
}

#gallerymodal .swiper-button-prev:hover,
#gallerymodal .swiper-button-next:hover,
#gallerymodal .swiper-button-prev:active,
#gallerymodal .swiper-button-next:active {
	color: #d4003f;
}

#gallerymodal .swiper-button-prev::after {
	content: '❮';
	font-size: 28px;
}

#gallerymodal .swiper-button-next::after {
	content: '❯';
	font-size: 28px;
}

#gallerymodal .swiper-pagination .swiper-pagination-bullets {
	bottom: 10px;
}

#gallerymodal .swiper-pagination .swiper-pagination-bullet {
	background-color: #999999;
	opacity: 0.7;
	width: 12px;
	height: 12px;
}

#gallerymodal .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #d4003f;
	opacity: 1;
}

@media (max-width: 771px) {
	#gallerymodal .swiper-button-prev,
	#gallerymodal .swiper-button-next {
		width: 35px;
		height: 35px;
	}
	#gallerymodal .swiper-button-prev::after {
		font-size: 22px;
	}	
	#gallerymodal .swiper-button-next::after {
		font-size: 22px;
	}
	#gallerymodal .gallery-modal__close-button  {
		padding: 10px;
		font-size: 18px;
	}
	#gallerymodal .swiper-pagination .swiper-pagination-bullet {
		width: 9px;
		height: 9px;
	}
}

@media (max-width: 375px) {
	#gallerymodal .swiper-button-prev,
	#gallerymodal .swiper-button-next {
		width: 30px;
		height: 30px;
	}
	#gallerymodal .swiper-button-prev::after {
		font-size: 18px;
	}	
	#gallerymodal .swiper-button-next::after {
		font-size: 18px;
	}
	#gallerymodal .gallery-modal__close-button {
		padding: 8.75px;
		font-size: 14px;
	}
}

	.overlay-text {
  		position: absolute;
 	 	bottom: 0;
 	 	left: 0;
		right: 0;
 		background-color: rgba(0, 0, 0, 0.7);
  		color: white;
  		text-align: center;
 		padding: 10px;
 		opacity: 0;
 		transition: opacity 0.3s ease;
	}

	.product-gallery__item:hover .overlay-text {
 		 opacity: 1;
	}

	.product-gallery__item-first:hover .overlay-text {
 		 opacity: 1;
	}

	.product-gallery__item-small:hover .overlay-text {
 		 opacity: 1;
	}


.gsap-animation-element {
	opacity: 0;
	transform: translateY(100px);
	transition: opacity 0.3s, transform 0.3s;
}




#slider2 {
	max-width: 1440px;
	margin: 0 auto;
	padding: 40px 20px 80px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
	overflow: hidden;
}

#slider2 .swiper-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-transition: -webkit-transform 0.3s ease;
	transition: -webkit-transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
	transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

#slider2 .swiper-slide {
	background-color: #333;
	border-radius: 5px;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: -webkit-transform 0.3s ease-in-out;
	-o-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
	width: auto;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	aspect-ratio: 160 / 105;
}

#slider2 .slider-button-prev,
#slider2 .slider-button-next {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	color: white;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	-webkit-transition: ease-in-out 0.3s;
	-o-transition: ease-in-out 0.3s;
	transition: ease-in-out 0.3s;
}

#slider2 .slider-button-prev{
	left:25px;
}

#slider2 .slider-button-next{
	right:25px;
}

#slider2 .slider-button-prev::after {
	content: '❮';
	font-size: 28px;
}

#slider2 .slider-button-next::after {
	content: '❯';
	font-size: 28px;
}

.gallery-h3{
	max-width: 1440px;    
	margin: 0 auto;    
	padding: 40px 20px 0 20px;
}

#slider2 .swiper-slide:hover {
	-webkit-transform: scale(1.03);
	-ms-transform: scale(1.03);
	transform: scale(1.03);
	-webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

#slider2 .unique-card-image {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

#slider2 .unique-card-body {
	padding: 15px;
	text-align: center;
	color: #fff;
}

#slider2 .unique-card-title {
	font-size: 1.2rem;
	margin: 0;
}

#slider2 .swiper-pagination {
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 10;
}

#slider2 .swiper-pagination-bullet {
	background-color: #fff;
	opacity: 0.7;
	width: 12px;
	height: 12px;
	margin: 0 5px;
	display: inline-block;
}

#slider2 .swiper-pagination-bullet-active {
	opacity: 1;
	background-color: #d4003f;
}

#slider2 .swiper-scrollbar {
	background-color: rgba(0, 0, 0, 0.1);
	height: 8px;
	border-radius: 4px;
}

#slider2 .swiper-scrollbar-drag {
	background-color: #d4003f;
	border-radius: 4px;
}

@media (max-width: 771px) {
	#slider2 .slider-button-prev,
	#slider2 .slider-button-next {
		width: 40px;
		height: 40px;

	}	
	#slider2 .swiper-slide {
		width: 100%;
	}
	#slider2 .swiper-scrollbar {
	height: 18px;
	}
}

/* Модальное окно Фотогалерея внизу страницы ==============================================================*/
#bottomgallerymodal {
	border-radius: 8px;
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background-color: rgba(18, 18, 18, 0.567);
}

#bottomgallerymodal .bottom-gallery-modal__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 90vh;
	max-width: 1400px;
	max-height: 90vh;
	/* border-radius: 8px; */
	position: relative;
	overflow: hidden;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#bottomgallerymodal .bottom-gallery-modal__close-button {
	position: absolute;
	top: 12px;
	right: 10px;
	color: #ffffff;
	background: rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	padding: 13px;
	font-size: 24px;
	font-weight: bold;
	cursor: pointer;
	z-index: 1000;
	-webkit-transition: ease-in-out 0.3s;
	-o-transition: ease-in-out 0.3s;
	transition: ease-in-out 0.3s;
}

#bottomgallerymodal .bottom-gallery-modal__close-button:hover {
	color: #d4003f;
}

/* Слайдер в модальном окне Фотогалерея внизу страницы==============================================================*/
#bottomgallerymodal .swiper-container {
	touch-action: manipulation;
	display: -ms-grid;
	display: grid;
	width: 100%;
	height: auto;
}

#bottomgallerymodal .swiper-slide {
	touch-action: manipulation;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#bottomgallerymodal .swiper-slide img {
	touch-action: manipulation;
	width: 99%;
	/* height: 100%; */
	max-width: 100%;
	max-height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 8px;
}

#bottomgallerymodal .swiper-button-prev,
#bottomgallerymodal .swiper-button-next {
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	color: white;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	-webkit-transition: ease-in-out 0.3s;
	-o-transition: ease-in-out 0.3s;
	transition: ease-in-out 0.3s;
}

#bottomgallerymodal .swiper-button-prev:hover,
#bottomgallerymodal .swiper-button-next:hover,
#bottomgallerymodal .swiper-button-prev:active,
#bottomgallerymodal .swiper-button-next:active {
	color: #d4003f;
}

#bottomgallerymodal .swiper-button-prev::after {
	content: '❮';
	font-size: 28px;
}

#bottomgallerymodal .swiper-button-next::after {
	content: '❯';
	font-size: 28px;
}

#bottomgallerymodal .swiper-pagination .swiper-pagination-bullets {
	bottom: 10px;
}

#bottomgallerymodal .swiper-pagination .swiper-pagination-bullet {
	background-color: #999999;
	opacity: 0.7;
	width: 12px;
	height: 12px;
}

#bottomgallerymodal .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #d4003f;
	opacity: 1;
}

@media (max-width: 771px) {
	#bottomgallerymodal .swiper-button-prev,
	#bottomgallerymodal .swiper-button-next {
		width: 35px;
		height: 35px;
	}
	#bottomgallerymodal .swiper-button-prev::after {
		font-size: 22px;
	}
	#bottomgallerymodal .swiper-button-next::after {
		font-size: 22px;
	}
	#bottomgallerymodal .bottom-gallery-modal__close-button {
		padding: 10px;
		font-size: 18px;
	}
	#bottomgallerymodal .swiper-pagination .swiper-pagination-bullet {
		width: 9px;
		height: 9px;
	}
}

@media (max-width: 375px) {
	#bottomgallerymodal .swiper-button-prev,
	#bottomgallerymodal .swiper-button-next {
		width: 30px;
		height: 30px;
	}
	#bottomgallerymodal .swiper-button-prev::after {
		font-size: 18px;
	}
	#bottomgallerymodal .swiper-button-next::after {
		font-size: 18px;
	}
	#bottomgallerymodal .bottom-gallery-modal__close-button {
		padding: 8.75px;
		font-size: 14px;
	}
}

.article__image-block-wrapper {
	display: flex;
	gap: 30px;
	padding: 20px 0;
}

.article__image-block-item {
	flex: 1;
}

@media (max-width: 900px) {
	.article__image-block-wrapper {
		flex-direction: column;
		gap: 10px;
		padding: 20px 0;
	}
}
