.about-wrapper {
	display: flex;
	flex-direction: column;
}

.about-title {
	font-family: Literata;
	font-weight: 700;
	font-size: 48px;
	line-height: 125%;
	color: #1b593e;
	margin: 0;
	padding-bottom: 60px;
}

.about-content {
	display: flex;
	gap: 40px;
}

.about-content__text {
	font-family: Montserrat;
	font-weight: 400;
	font-size: 16px;
	line-height: 175%;
	color: #606060;
}

.about-video {
	
	position: relative;
	border-radius: 4px;
	overflow: hidden;
}

.about-video__element {
	width: 100%;
	height: 100%;
	display: block;
	border-radius: 4px;
}

.about-video__play {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	border: 0;
	background: #1b593e;
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.about-video__play::before {
	content: "";
	width: 0;
	height: 0;
	border-left: 18px solid #ffdb93;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
	margin-left: 3px;
}

.about-video__play.hidden {
	opacity: 0;
	pointer-events: none;
}

.about-facts {
	display: flex;
	gap: 20px;
	padding: 40px 0;
	flex-wrap: wrap;
	justify-content: center;
}

.about-facts__item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	width: 232px;
}

.about-facts__item img {
	height: 64px;
}

.about-facts__num {
	font-family: Literata;
	font-weight: 600;
	font-size: 32px;
	line-height: 125%;
	text-align: center;
	color: #1b593e;
}

.about-facts__desc {
	font-family: Montserrat;
	font-weight: 400;
	font-size: 16px;
	line-height: 175%;
	text-align: center;
	color: #606060;
}

@media (max-width: 992px) {
	.about-title {
		padding-bottom: 30px;
	}

	.about-content {
		flex-direction: column;
	}

	.about-content__video {
		width: 100%;
	}

	.about-video {
		width: 100%;
	}
}
.about-wrapper .index-block__subtitle{
  display: none;

}