/* ---PROMO--- */
.promo {
	background: url(../images/promo-img.png) no-repeat center;
	background-size: cover;
	padding: 100px 0;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 57px;
}
.promo__title {
	font-weight: 700;
	font-family: 'Alegreya';
	font-size: 80px;
	line-height: 120px;
	color: #1FC166;
	max-width: 489px;
	text-align: center;
}
.Paginator {
	font-weight: 500;
	font-family: 'Alegreya';
	font-size: 20px;
	line-height: auto;
	color: #1FC166;
	/* max-width: 700px; */
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto;
	width: 100%;
}

/* ---GALLERY--- */
.gallery {
	padding: 60px 0;
	background: #FBFBFB;
}
.gallery__title {
	font-size: 52px;
	line-height: 74px;
	text-align: center;
	margin-bottom: 58px;
}
.gallery__row {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
}
.gallery__col {
	text-align: center;
}
.gallery__img-wrap {
	min-width: 220px;
	height: 220px;
	overflow: hidden;
	border-radius: 30px;
}
.gallery__img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}
.gallery__col--last {
	background: #20C166;
	color: white;
	box-shadow: 0px 4px 12px rgba(32, 193, 102, 0.3);
	border-radius: 16px;
	min-width: 220px;
	height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}
.gallery__col--last:hover {
	background: #1aa851;
	transform: translateY(-2px);
	box-shadow: 0px 6px 20px rgba(32, 193, 102, 0.4);
}
.gallery__col-text {
	font-family: 'Play';
	font-weight: 400;
	font-size: 28px;
	line-height: 34px;
	color: white;
}
.gallery__search-btn {
	background: #20C166 !important;
	color: white !important;
	box-shadow: 0px 4px 12px rgba(32, 193, 102, 0.3);
	border-radius: 12px;
	display: block;
	padding: 15px 0;
	margin-top: 5px;
	font-family: 'Play';
	font-weight: 400;
	font-size: 28px;
	line-height: 34px;
	transition: all 0.3s ease;
	text-decoration: none;
}
.gallery__search-btn:hover {
	background: #1aa851 !important;
	transform: translateY(-2px);
	box-shadow: 0px 6px 20px rgba(32, 193, 102, 0.4);
}
.gallery__search-btn--large {
	min-width: 220px;
	height: auto;
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px 20px;
	margin-top: 0;
	margin-bottom: 5px;
	background: #20C166 !important;
	box-sizing: border-box;
}
.gallery__search-btn--large .gallery__col-text {
	margin: 0;
	color: white !important;
	font-size: 24px;
	line-height: 30px;
	text-align: center;
}
.gallery__search-btn--single {
	min-height: 120px;
	padding: 30px 20px;
}

/* ---SUPPORT--- */
.main-support {
	background: #CAEBB3;
	padding: 83px 0;
}
.main-support__row {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 50px;
}
.main-support__col:first-child {
	text-align: center;
}
.main-support__title {
	font-family: 'Play';
	font-weight: 400;
	font-size: 42px;
	line-height: 37px;
	margin-bottom: 40px;
}
.main-support__text {
	font-family: 'Inter';
	font-weight: 400;
	font-size: 20px;
	line-height: 27px;
}
.main-support__col:last-child {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 21px;
}
.support__btn {
	font-family: 'Play';
	font-weight: 400;
	font-size: 28px;
	line-height: 34px;
	background: #20C166;
	color: white;
	box-shadow: 0px 4px 12px rgba(32, 193, 102, 0.3);
	border-radius: 12px;
	display: block;
	min-width: 300px;
	text-align: center;
	padding: 20px 0;
	margin-bottom: 0;
	transition: all 0.3s ease;
	text-decoration: none;
}
.support__btn:hover {
	background: #1aa851;
	transform: translateY(-2px);
	box-shadow: 0px 6px 20px rgba(32, 193, 102, 0.4);
}
@media screen and (max-width: 1360px) {
	.promo {
		padding: 130px 0;
	}
	.promo__title {
		font-size: 75px;
		line-height: 91px;
	}
	.gallery__title,
	.main-support__title {
    font-size: 36px;
		line-height: 27px;
	}
	.gallery__row {
		gap: 15px;
	}
	.main-support__text {
		font-size: 18px;
		line-height: 25px;
	}
	.gallery__row {
		display: flex;
		gap: 20px;
		justify-content: center;
	}
	.gallery__col {
		max-width: 250px;
	}
}

@media screen and (max-width: 1130px) {
	.promo {
		padding: 80px 0;
	}
	.promo__title {
		font-size: 65px;
	}
	.gallery__row {
		flex-wrap: wrap;
		gap: 50px 20px;
	}
	.gallery__col {
		width: 300px;
	}
	.gallery__search-btn--large {
		min-height: 80px;
		padding: 20px 15px;
	}
	.gallery__search-btn--large .gallery__col-text {
		font-size: 20px;
		line-height: 26px;
	}
	.main-support__row {
    grid-template-columns: 1fr;
	}
	.support__btn {
		font-size: 24px;
		line-height: 34px;
		min-width: 250px;
	}
	.main-support__col:last-child {
		flex-direction: row;
		gap: 50px;
	}
}
@media screen and (max-width: 930px) {
	.promo {
		background-size: 100%;
		padding-top: 150px;
	}
	.promo__title {
		font-size: 46px;
		max-width: 300px;
		line-height: 72px;
	}
	.gallery__col:last-child {
		width: 60%;
	}
	.main-support__text {
    font-size: 18px;
    line-height: 27px;
	}
	.gallery__title, .support__title {
    font-size: 39px;
    line-height: 37px;
	}
}
@media screen and (max-width: 640px) {
	.promo {
		padding-top: 330px;
		display: block;
		text-align: center;
	}
	.promo__title {
		font-size: 36px;
		max-width: 100%;
		line-height: 33px;
		position: absolute;
		z-index: -1;
	}
	.gallery__col:last-child {
		width: 100%;
	}
	.gallery__search-btn--large {
		height: auto;
		min-height: 70px;
		padding: 20px 15px;
	}
	.gallery__search-btn--large .gallery__col-text {
		font-size: 18px;
		line-height: 24px;
	}
	.gallery__title, .support__title {
    line-height: 50px;
	}
	.main-support__col:last-child {
		flex-direction: column;
	}
}
@media screen and (max-width: 600px) {
  .container, .container-inner, .container-inner-sh {
    max-width: 100vw;
    padding: 0 5px;
  }
  .gallery {
    padding: 20px 0;
  }
  .gallery__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 18px;
  }
  .gallery__row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .gallery__col {
    min-width: unset;
    width: 100%;
    max-width: 400px;
  }
  .gallery__search-btn--large {
    min-width: unset;
    width: 100%;
    height: auto;
    padding: 30px 20px;
    border-radius: 16px;
    background: #20C166;
    color: white;
  }
  .gallery__img-wrap {
    min-width: unset;
    height: 240px;
    border-radius: 16px;
  }
  .gallery__img {
    border-radius: 16px;
  }
  .gallery__col-text, .gallery__search-btn {
    font-size: 18px;
    line-height: 22px;
    color: white;
  }
  .gallery__search-btn {
    background: #20C166;
  }
  .main-support {
    padding: 30px 0;
  }
  .main-support__row {
    gap: 10px;
  }
  .main-support__title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .main-support__text {
    font-size: 14px;
    line-height: 18px;
  }
  .support__btn {
    font-size: 18px;
    min-width: 200px;
    padding: 15px 20px;
    border-radius: 12px;
    background: #20C166;
    color: white;
  }
  .promo {
    padding: 30px 0;
    background-size: cover;
  }
  .promo__title {
    font-size: 22px;
    line-height: 28px;
    max-width: 100%;
  }
}