*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

ul,
ol,
li {
	list-style: none;
}

img {
	vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: inherit;
	font-size: inherit;
}

html,
body {
	height: 100%;
	line-height: 1;
}

body {
	font-family: Montserrat;
	font-size: 12px;
	color: #616161;

}
/*  */

/* ------------------ */
.wrapper {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

/* ------------------ */
.main {
	flex: 1 1 auto;
}

[class*="__container"] {
	max-width: 1087px;
	margin: 0px auto;
	padding: 0px 15px;
}

/* PC */
@media (max-width: 1087px) {
	[class*="__container"] {
		max-width: 970px;
	}
}

/* TABLET */
@media (max-width: 991.98px) {
	[class*="__container"] {
		max-width: 750px;
	}
}

/* MOBILE */
@media (max-width: 767.98px) {
	[class*="__container"] {
		max-width: none;
	}
}

/* MOBILE SMALL */
@media (max-width: 479.98px) {}

.header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 50;
}

.header__container {
	display: flex;
	min-height: 114px;
	align-items: center;
}

.header__logo {
	position: relative;
	z-index: 5;
}

.header__menu {
	flex: 1 1 auto;
}

.header__button {
	position: relative;
	z-index: 5;
	flex: 0 0 252px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

/* --------------------------- */
.menu {
	display: flex;
	justify-content: flex-end;
}





.menu__list {
	display: flex;
}

.menu__item {
	margin: 0px 40px 0px 0px;
}

.menu__link {
	font-family: Raleway;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 10px;
	line-height: 1.2;
	color: #000;
	letter-spacing: 1px;
}

.menu__link:hover {
	text-decoration: underline;
}

@media (max-width: 991.98px) {
	.header__container {
		min-height: 80px;
	}

	.header__button {
		flex: 0 0 170px;
	}

	.menu__item {
		margin: 0px 30px 0px 0px;
	}
}

@media (max-width: 767.98px) {
	.menu__body {
		position: fixed;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		overflow: auto;
		background-color: #fff;
		padding: 90px 15px 30px 15px;
		transition: left 0.3s ease 0s;



	}
}

.header:target .menu__body {
	left: 0;
}

.header:target .menu__body:before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	height: 80px;
	width: 100%;
	background-color: #fff;
}

.menu__list {
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.menu__item {
	margin: 0px 0px 25px 0px;
}

.menu__item:last-child {
	margin-bottom: 0;
}

.menu__link {
	/* color: #fff; */
	font-size: 20px;
}

@media (max-width: 479.98px) {
	.header__logo {
		flex: 0 0 40px;
		overflow: hidden;
	}
}

/* --------------------------- */
.button {
	display: inline-block;
	font-family: Raleway;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 10px;
	line-height: 1.2;
	letter-spacing: 1px;
	color: #fcfdfe;
	padding: 14px 30px;
	border-radius: 5px;
	background-color: #ec5863;
	transition: background-color 0.3s ease 0s;
}

.button:hover {
	background-color: #f37a82;
}

.button_blue {
	/* background-color: #4285f4; */
	border-radius: 0px 50px;
}

.button_blue:hover {
	/* background-color: #70a3f7; */
}

/* --------------------------- */
.close-icon-menu,
.icon-menu {
	display: none;
}

@media (max-width: 767.98px) {
	.icon-menu {
		display: flex;
		position: relative;
		flex: 0 0 30px;
		height: 18px;
		flex-direction: column;
		justify-content: space-between;
		margin: 0px 0px 0px 20px;
	}

	.icon-menu::before,
	.icon-menu::after {
		content: "";
		background-color: #000;
		height: 2px;
	}

	.icon-menu span {
		height: 2px;
		background-color: #000;
	}

	.close-icon-menu {
		flex: 0 0 30px;
		height: 30px;
		position: relative;
		margin: 0px 0px 0px 20px;
	}

	.close-icon-menu::before,
	.close-icon-menu::after {
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		background-color: #000;
		height: 2px;
	}

	.close-icon-menu::before {
		transform: rotate(45deg);
	}

	.close-icon-menu::after {
		transform: rotate(-45deg);
	}

	.header:target .icon-menu {
		display: none;
	}

	.header:target .close-icon-menu {
		display: flex;
	}
}

/* ============================================================================= */
.block-text {}

.block-text_center {
	text-align: center;
}

.block-text__title {
	font-weight: 700;
	font-size: 42px;
	line-height: 126%;
	color: #000;

}

.block-text__title_center {
	display: flex;
	justify-content: center;
}

.block-text__title:not(:last-child) {
	margin: 0px 0px 12px 0px;
	/* display: flex;
    justify-content: center; */
	/* padding-left: 20px; */
}

.block-text__title span {
	color: #00000085;
}

.block-text__title_blue span {
	color: #fafbfd;
}
.weri-s{
	padding-left: 20px;
}
.block-text__text {
	line-height: 138.5%;
	font-size: 17px;
}

.block-text__text_mw {
	max-width: 620px;
	margin: 0px auto;
	max-width: 620px;
	margin: 0px auto;
	/* color: black; */
	font-family: Arial, sans-serif;
	font-size: 16px;
}

.block-text__text:not(:last-child) {
	margin: 0px 0px 24px 0px;
	font-size: 15px;
}

.block-text__button {}

@media (max-width: 767.98px) {
	.block-text__title {
		font-size: 34px;
		display: grid;
		justify-items: end;
	}
}

/* ============================================================================= */
/*  */


.get-started {
	background-color: #90bea49e;
}

.get-started__container {
	padding: 105px 15px 50px 15px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	position: relative;
}

.get-started__container::before {
	content: "";
	position: absolute;
	width: 100vw;
	height: 100%;
	right: 267px;
	top: 0;
	transform: translate(100%, 0px);
	border-radius: 30px 0px 0px 30px;
	background-color: #2f6c3f33;
}

.get-started__content {
	flex: 0 1 48%;
	padding: 0px 20px;
}

.get-started__block-text {
	max-width: 410px;
}

.get-started__video {
	flex: 1 1 100%;
	padding: 60px 0px 0px 20px;
	margin-top: 20px;
}

.get-started__image {
	flex: 0 1 52%;
	position: relative;
	z-index: 2;
}

.get-started__image img {
	max-width: 100%;
}

.video-get-started {
	display: inline-flex;
	align-items: center;
}

.video-get-started__icon {
	flex: 0 0 44px;
}

.video-get-started__body {
	padding: 0px 0px 0px 12px;
}

.video-get-started__title {
	color: #b0b0b0;
	font-size: 13px;
	line-height: 126%;
	letter-spacing: 1.5px;
}

.video-get-started__title:not(:last-child) {
	margin: 0px 0px 5px 0px;
}

.video-get-started__text {
	text-transform: uppercase;
	font-size: 9px;
	color: #000;
	line-height: 126%;
	letter-spacing: 2px;
}

@media (max-width: 991.98px) {
	.get-started__container::before {
		right: 185px;
		border-radius: 20px 0px 0px 20px;
	}
}

@media (max-width: 767.98px) {
	.get-started__container {
		padding: 0px 15px 30px 15px;
	}

	.get-started__container::before {
		display: none;
	}

	.get-started__block-text {
		max-width: none;
		margin-bottom: 20px;
	}

	.get-started__content {
		flex: 1 1 100%;
		padding: 0;
	}

	.get-started__image {
		flex: 1 1 100%;
		text-align: center;
		/* padding: 30px 0; */
	}

	.get-started__video {
		padding: 0;
	}
}

/* ============================================ */
.stay-safe {
	padding: 80px 0;
}

.stay-safe__container {
	display: flex;
	align-items: center;
}

.stay-safe__media {
	flex: 0 1 50%;
}

.stay-safe__content {
	flex: 0 1 50%;
}

.stay-safe__block-text {}

.media-stay-safe {
	width: 373px;
	padding: 56px 0px 27px 0px;
	text-align: center;
	position: relative;
}

.media-stay-safe__image {
	display: inline-block;
	box-shadow: 2px 4px 32px rgba(0, 0, 0, 0.12);
	border-radius: 16px;
	position: relative;
	width: 90.5%;
}

.media-stay-safe__image img {
	position: relative;
	z-index: 5;
	max-width: 100%;
	border-radius: 20px;
}

.media-stay-safe__image::after {
	content: "";
	position: absolute;
	bottom: -12px;
	left: 12px;
	width: 206px;
	height: 27px;
	z-index: 2;
	background: rgba(240, 240, 240, 0.49);
	border-radius: 16px;
}

.media-stay-safe__item {
	position: absolute;
	background-color: #2f6c3f;
	border-radius: 60px 0px 30px 71px;
	width: 77px;
	height: 77px;

}

.media-stay-safe__item_1 {
	top: 0;
	left: 0;
	width: 147px;
	height: 147px;
}

.media-stay-safe__item_2 {
	bottom: 0;
	left: 33px;
}

.media-stay-safe__item_3 {
	bottom: 107px;
	right: 34px;
}

@media (max-width: 991.98px) {
	.stay-safe {
		padding: 40px 0;
	}
}

@media (min-width: 991.98px) {
	.stay-safe__media {
		padding: 0px 0px 0px 47px;
	}
}

@media (max-width: 767.98px) {
	.stay-safe {
		padding: 30px 0;
	}

	.stay-safe__container {
		flex-direction: column-reverse;
	}

	.stay-safe__content {
		margin: 0px 0px 30px 0px;
	}

	.stay-safe__container_obert {
		flex-direction: column;
		display: flex;
	}
}

@media (max-width: 479.98px) {
	.media-stay-safe {
		/* width: 290px; */
	}
}

/* ========================================================================= */

.experts {
	background-color:#90bea49e;
	/* padding: 103px 0px 116px 0px; */
}

.experts__container {}

.experts__statistics {}

.experts__block-text {
	max-width: 400px;
}

.statistics-experts {
	max-width: 655px;
	margin: 0px auto;
	position: relative;
}

.experts__body {
	display: flex;
	align-items: center;
}

.experts__content {
	flex: 0 1 50%;
	padding: 0px 20px 0px 0px;
}

.experts__video {
	flex: 0 1 50%;
	padding: 0px 0px 30% 0px;
	position: relative;
	box-shadow: 0px 4px 18px rgba(88, 126, 236, 0.18);
	border-radius: 8px;
	overflow: hidden;
}

.experts__video iframe {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}

@media (max-width: 767.98px) {
	.experts {
		padding: 80px 0px 30px 0px;
	}

	.experts__body {
		align-items: stretch;
		flex-direction: column;
	}

	.experts__video {
		padding: 0px 0px 58% 0px;
	}

	.experts__content {
		padding: 0;
		margin: 0px 0px 30px 0px;
	}
}

.statistics-experts__body {
	background-color: #fff;
	box-shadow: 0px 2px 24px rgba(88, 126, 236, 0.15);
	border-radius: 16px;
	position: relative;
	z-index: 2;
	margin: 0px 0px 80px 0px;
}

.statistics-experts__decor {
	position: absolute;
	background-color: #ec5863;
	border-radius: 30px;
}

.statistics-experts__decor_1 {
	width: 65px;
	height: 65px;
	transform: rotate(-30deg);
	bottom: -21px;
	left: -21px;
	border-radius: 16px;
}

.statistics-experts__decor_2 {
	width: 97px;
	height: 97px;
	right: 50%;
	top: -40px;
	transform: rotate(30deg);
}

.statistics-experts__decor_3 {
	width: 128px;
	height: 128px;
	right: -55px;
	top: 0px;
	transform: rotate(-30deg);
}

.body-statistics-experts {
	padding: 25px 80px;
	display: flex;
	justify-content: space-evenly;

}

.body-statistics-experts__item {
	flex: 0 1 25%;
	text-align: center;
}

.body-statistics-experts__item:last-child {
	/* flex: 0 1 50%; */
}

.body-statistics-experts__value {
	font-weight: 700;
	display: flex;
	font-size: 36px;
	line-height: 1.2;
	letter-spacing: 1px;
	color: #2f6c3f;
	/* margin-bottom: 5px; */
	font-size: 50px;
	font-weight: 700;
}

.body-statistics-experts__text {
	font-weight: bold;
	font-size: 11px;
	line-height: 1.8;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #000000;
}

@media (max-width: 767.98px) {
	.statistics-experts__body {
		margin: 0px 0px 50px 0px;
	}

	.body-statistics-experts {
		padding: 25px;
	}
}

@media (max-width: 479.98px) {
	.body-statistics-experts {
		flex-direction: column;
	}

	.body-statistics-experts__item:not(:last-child) {
		margin: 0px 0px 15px 0px;
		display: flex;
		flex-direction: column;
		align-items: center;

	}

	.body-statistics-experts__value {

		display: flex;
		justify-content: center;
	}
}

/* ==================================================================== */

.healthcare {
	padding: 80px 0px 30px 0px;
}

.healthcare__container {}

.healthcare__block-text {
	margin: 0px 0px 45px 0px;
}

.healthcare__items {
	display: flex;
	/* gap: 72px; */
}

.healthcare__column {
	position: relative;
	padding: 0px 36px;
	flex: 0 1 33.333%;
}

.healthcare__item {}

.item-healthcare {
	height: 100%;
	position: relative;
	z-index: 2;
	background: #ffffff;
	box-shadow: 0px 4px 18px #2f6c3f;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 35px 17px;
}

.item-healthcare__icon {
	margin: 0px 0px 58px 0px;
}

.item-healthcare__title {
	font-weight: 700;
	font-size: 16px;
	line-height: 138.5%;
	color: #000;
	margin: 0px 0px 4px 0px;
}

.item-healthcare__text {
	line-height: 138.5%;
	font-size: 16px;
}


@media (max-width: 1087px) {
	.healthcare__column {
		padding: 0px 15px;
	}
}

@media (max-width: 991.98px) {
	.healthcare {
		padding: 30px 0px 120px 0px;
	}

	.healthcare__items {
		flex-direction: column;
	}

	.healthcare__column:not(:last-child) {
		margin: 0px 0px 25px 0px;
	}
}

/* =========================================================== */

.footer {
	padding: 45px 0;
	background-color: #2f6c3f33;
}

.footer__container {}

.footer__items {
	display: flex;
	column-gap: 50px;
	row-gap: 20px;
	justify-content: center;
	align-items: center;
}

.footer__item {}

@media (max-width: 500px) {
	.footer {
		padding: 30px 0;
	}

	.footer__items {
		flex-direction: column;
	}
}

/* ---------  лічилтник */
.page {}

.page__section {
	padding: 1px;
}

.page__section:nth-child(1) {
	background-color: #90bea49e;
}

.page__section:nth-child(2) {
	background-color: #794f45;
}

.page__container {
	/* max-width: 1070px; */
	margin: 0 auto;
}

.page__title {
	font-weight: 700;
	font-size: 40px;
	margin-bottom: 60px;
}

.page__row {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.page__counter {
	flex: 0 1 33.333%;
	font-size: 60px;
	font-weight: 700;
	color: #333;
}

.form {
	max-width: 18.75rem;
	margin: 0 auto;
	display: grid;
	gap: 0.9375rem;
}

.form__input {
	background-color: #e6e6e6;
	width: 100%;
	padding: 0.625rem;
	height: 2.5rem;
	color: black;
	font-size: 18px;
	border-radius: 4px;
	transition: all 0.5s ease 0s;
}

textarea.form__input {
	height: 6.25rem;
	color: black;
}


.form__button {
	
	display: inline-block;
	font-family: Raleway;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 10px;
	line-height: 1.2;
	letter-spacing: 1px;
	color: #fcfdfe;
	padding: 14px 30px;
	border-radius: 5px;
	background-color: #ec5863;
	transition: background-color 0.3s ease 0s;
}

.form__button:hover {
	background-color: rgba(54, 50, 50, 0.7);
}

.bacrtec {
	background-color: #90bea4;
	border-bottom: 1px solid #90bea4;
	border-top: 1px solid #90bea4;
}

.store_verh {
	padding-top: 0px;

}

.ttrer {
	white-space: nowrap;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	color: black;
	font-family: "BravoRGRegular";
	font-size: 50px;
	text-transform: uppercase;
}

.why {

	padding-bottom: 90px;
}

.marg_c {
	margin-right: -17px;
}

.reter_heder {
	margin: 0;
}
/* Контейнер для відео */
video-container {
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	height: auto;
}

.video-container::after {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 59%);
	top: 0;
	left: 0;
	/* z-index: 2; */
	border-radius: 100px 0;

}

/* Стилі для відео */
.video-container video {
	width: 100%;
	height: auto;
	z-index: 1;
	border-radius: 100px 0;
}

.video-container .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

/* Текст поверх відео */
.overlay-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-size: calc(18px + 0.5vw);
	font-weight: bold;
	text-align: center;
	text-shadow: 2px 2px 6px rgb(0, 0, 8);
	z-index: 2;
	width: 90%;
}

@media (max-width: 768px) {
	.overlay-text {
		font-size: calc(16px + 2vw);
		/* Менший текст */
	}
}
@media (max-width: 480px) {
	.overlay-text {
		font-size: calc(14px + 1vw);
		line-height: 33px;
	}
}
/* Загальні стилі */
body {
	margin: 0;
	font-family: Arial, sans-serif;

}

header {
	background-color: #90bea49e;
	padding: 15px;
	/* height: 75px; */
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 9;
}

.navbar .logo a {
	color: white;
	text-decoration: none;
	font-size: 24px;
}

.nav-links {
	list-style: none;
	display: flex;
	margin: 0;
	padding: 0;
}

.nav-links li {
	margin: 0 15px;
}

.nav-links a {
	color: white;
	text-decoration: none;
	font-size: 18px;
	padding: 8px;
}

.nav-links a:hover {
	background-color: #2f6c3f;
	border-radius: 4px;
}

/* Стилі для кнопки меню */
.menu-toggle {
	display: none;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
}

.menu-toggle .bar {
	width: 30px;
	height: 3px;
	background-color: #000;
	transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
	.nav-links {
		display: none;
		flex-direction: column;
		width: 100%;
		position: absolute;
		top: 96px;
		left: 0;
		background-color: white;
		padding: 20px;
		opacity: 0;
		transform: translateY(-20px);
		transition: all 0.3s ease;
	}
	.nav-links.active {
		display: flex;
		opacity: 1;
		border-radius: 100px 0 0;
	}

	.nav-links li {
		margin: 7px 0;
		text-align: center;
	}

	.nav-links a {
		color: #333;
	}

	.menu-toggle {
		display: flex;
	}
	/* Анімація для кнопки гамбургера -> хрестик */
	.menu-toggle.active .bar:nth-child(1) {
		transform: rotate(45deg);
		position: relative;
		top: 8px;
	}

	.menu-toggle.active .bar:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.active .bar:nth-child(3) {
		transform: rotate(-45deg);
		position: relative;
		top: -8px;
	}
}

.menu__link {
}

/* Вміст модального вікна */
.modal-content {
	background-color: #333;
	padding: 20px;
	border-radius: 10px;
}

/* Анімація для показу модального вікна */
.show {
	display: block;
	opacity: 1;
}
/*   */

.form {
	background-color: #90bea49e;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 400px;
}

.form__input {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.form__button {
	width: 100%;
	padding: 10px;
	background-color: #2f6c3f;
	color: #ffffff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}
.form__button:hover {
	background-color: #616161;
}
/* Стилі для модального вікна */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.3s, visibility 0.3s;
	z-index: 9999;
}

.modal--visible {
	visibility: visible;
	opacity: 1;
}
.modal-content {
	background-color: #ffffff;
	padding: 20px;
	border-radius: 8px;
	text-align: center;
	width: 90%;
	max-width: 400px;
}
.win_color {
	color: #000;

}
.block-text__text a {
	color: #616161;
}

.footer__info {

	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Стилі для кнопки повернення до верху */
.back-to-top {
	position: fixed;
	bottom: 135px;
	right: 20px;
	background-color: #2f6c3f;
	color: #fff;
	border: none;
	border-radius: 17px 0;
	width: 50px;
	height: 50px;
	font-size: 24px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9;
}

.back-to-top:hover {
	background-color: #00000085;
}
/* карта */
.map-container {
	position: relative;
	width: 100%;
	max-width: 600px;     /* обмеження ширини на ПК */
	height: 0;
	padding-bottom: 40%;  /* менша висота (висота = 40% від ширини) */
	margin: 20px auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	border-radius: 12px;
	overflow: hidden;
  }
  
  .map-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	border-radius: 12px;
  }
  
  /* Адаптація для мобільних: висота більше */
  @media (max-width: 600px) {
	.map-container {
	  padding-bottom: 56.25%; /* висота 16:9 для мобільних */
	}
  }
  
  
/* карта */

  .telegram-circle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #2f6c3f;
    border-radius: 0 17px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
  }

  .telegram-circle:hover {
    width: auto;
	border-radius: 0 17px;;
  }

  .telegram-circle span {
    display: none;
    margin-left: 10px;
    white-space: nowrap;
    font-size: 16px;
    color: white;
  }

  .telegram-circle:hover span {
    display: inline;
  }

  .telegram-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
  
  }
  .telegram-icon-cet{
width: 50px;
height: 50px;
  }
  .tele-ctn{
display: flex;
justify-content: flex-end;
  }
  .vidstup-1{
	margin: 20px 0 20px 0;
  }
/*  */
.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 16px;
  }
  
  .gallery img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 14px;
	cursor: pointer;
	transition: .3s ease;
  }
  
  .gallery img:hover {
	transform: scale(1.05);
  }
  
  /* Lightbox */
  .lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,.9);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 9999;
  }
  
  .lightbox img {
	max-width: 90vw;
	max-height: 90vh;
	border-radius: 14px;
  }
  
  .close {
	position: absolute;
	top: 25px;
	right: 35px;
	font-size: 40px;
	color: #fff;
	cursor: pointer;
  }
  
  .arrow {
	position: absolute;
	top: 50%;
	font-size: 64px;
	color: #fff;
	cursor: pointer;
	user-select: none;
	transform: translateY(-50%);
  }
  
  .arrow.left { left: 30px; }
  .arrow.right { right: 30px; }
  
  /* ❌ Заборона скролу фону */
  body.no-scroll {
	overflow: hidden;
  }
  
  /* 📱 АДАПТАЦІЯ */
  @media (max-width: 768px) {
	.gallery {
	  grid-template-columns: repeat(2, 1fr);
	  gap: 10px;
	}
  
	.gallery img {
	  height: 140px;
	  border-radius: 10px;
	}
  
	.arrow {
	  font-size: 52px;
	  padding: 15px;
	}
  
	.arrow.left { left: 10px; }
	.arrow.right { right: 10px; }
  
	.close {
	  top: 15px;
	  right: 20px;
	  font-size: 34px;
	}
  }
  
  @media (max-width: 420px) {
	.gallery img {
	  height: 120px;
	}
  }
  /* tel */
  .call-button {
	position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: #2f6c3f;
	background: #2f6c3f;
	color: #fff;
	font-size: 24px;
	border-radius: 10px 10px 10px 10px;
    width: 50px;
    height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	animation: pulse 1.5s infinite;
	z-index: 9;
  }
  
  .call-button:hover {
	background:  0 4px 6px rgba(0, 0, 0, 0.1);;
  }
  
  /* Анімація миготіння */
  @keyframes pulse {
	0% {
	  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
	}
	70% {
	  box-shadow: 0 0 0 20px rgba(46, 204, 113, 0);
	}
	100% {
	  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
	}
  }