.gallery{
	padding: 50px 0;

}

.gallery__wrapper{
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 60px 32px;
}

.gallery__item{
	max-width: 410px;
	max-height: 615px;
	overflow: hidden;
}

.gallery__item img{
	width: 100%;
	height: 100%;
	object-fit: cover;
  	object-position: center;
}

.promo{
	position: relative;
	height: 50vh;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2rem 0;
}
.promo::after{
	content: '';
	background-color: rgba( 0,0,0,.6);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.promo__title{
	position: relative;
	color: #fff;
	z-index: 999;
}

.about{
	padding: 4rem 0;

}

.about__content{
	display: flex;
	justify-content: space-between;
	gap: 3rem;
}

.about__video{
	width: 60%;
}

.statistic{
	padding: 4rem 0;
}

.statistic__wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.statistic__item{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 0 4rem;
	height: 250px;
	width: 25%;
	background-color: #97c680;
	border-radius: 20px;
}

.statistic__num{
	font-size: 24px;
	font-weight: 800;
	color: #fff;
}

.statistic__title{
	font-size: 18px;
	font-weight: 600;
	color: #fff;
	margin-top: 2rem;
}


/* 📱 Мобильные устройства: портретные (до 480px) */
@media (max-width: 480px) {
	.gallery__wrapper{
		grid-template-columns: repeat(1,1fr);
  		gap: 40px 32px;
	}
	.statistic__item{
		width: 100%;
	}
	.about__content{
		flex-direction: column;
	}
	.about__video{
		width: 100%;
	}
  }
  
  /* 📱 Мобильные устройства: типичный смартфон (481px – 767px) */
@media (min-width: 480px) and (max-width: 767px) {
	.gallery__wrapper{
		grid-template-columns: repeat(2,1fr);
  		gap: 60px 32px;
	}
	.statistic__item{
		width: 100%;
	}
	.about__content{
		flex-direction: column;
	}
	.about__video{
		width: 100%;
	}
}
  
  /* 📱 Мобильные устройства: ландшафт или большие телефоны (768px – 991px) */
  @media (min-width: 768px) and (max-width: 991px) {
	.gallery__wrapper{
		gap: 40px 22px;	
	}
  }
  
