* {
	box-sizing: border-box;
	scroll-behavior: smooth;
}
html,
body {
	background-color: #f5f6fa;
}
body {
	padding: 0;
	margin: 0;
	font-family: sans-serif;
}
form input {
	width: 100%;
}

a {
	text-decoration: none;
}
h2 {
	font-size: 50px;
	font-weight: 500;
	color: #333;
	span {
		color: #0d5529;
	}
}

.container {
	max-width: 1200px;
	padding: 0 20px;
	margin: 0 auto;
}
.btn {
	padding: 18px;
	border-radius: 10px;
	color: #0d4222;
	width: max-content;
}
.btn-white {
	background-color: #fff;
}

/* Navbar Styles */
.navbar {
	background: linear-gradient(to right, #147c3d, #0a2d41);
	color: white;
	position: relative;
}

.navbar-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
}

.logo {
	display: flex;
	flex-direction: column;
	img {
		width: 90%;
	}
}

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

.nav-links li {
	margin-left: 30px;
}

.nav-links a {
	color: white;
	font-size: 16px;
	position: relative;
	padding-bottom: 5px;
}

.nav-links a:hover::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: white;
	bottom: -5px;
	left: 0;
}

.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 100;
}

.hamburger span {
	width: 30px;
	height: 3px;
	background-color: white;
	margin: 3px 0;
	transition: 0.3s;
	border-radius: 2px;
}

/* Mobile menu */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 70%;
	height: 100%;
	background-color: #0a2d41;
	z-index: 99;
	transition: 0.5s;
	padding: 80px 20px 20px;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-menu li {
	margin: 20px 0;
}

.mobile-menu a {
	color: white;
	font-size: 18px;
	display: block;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 98;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Media Queries */
@media (max-width: 992px) {
	.nav-links {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.vertical-line {
		display: none;
	}

	.navbar {
		background: #147c3d;
	}
}

/* Hero Section Styles */
.hero {
	padding: 60px 0;
	background-color: #fff;
	position: relative;
	overflow: hidden;
}

.hero-container {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.hero-content {
	flex: 1;
	max-width: 600px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.hero-title-wrapper {
	margin-bottom: 100px;
}
.hero-intro {
	font-size: 18px;
	color: #555;
	margin-bottom: 20px;
	line-height: 1.5;
}

.hero-title {
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 30px;
	line-height: 1.1;
}

.hero-title-main {
	color: #147c3d;
	display: block;
	margin-bottom: 10px;
}

.hero-title-sub {
	color: #000;
	display: block;
}

.hero-description {
	font-size: 20px;
	color: #333;
	margin-bottom: 40px;
	line-height: 1.5;
}

.hero-button {
	display: inline-block;
	background-color: #0d4222;
	color: white;
	font-size: 18px;
	font-weight: 600;
	padding: 15px 30px;
	border-radius: 8px;
	transition: background-color 0.3s ease;
}

.hero-button:hover {
	background-color: #0e6230;
}

.hero-image {
	flex: 1;
	max-width: 650px;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 16px;
	background-color: #147c3d;
}
.mobile {
	display: none;
}

/* Media queries for responsiveness */
@media (max-width: 992px) {
	.hero-container {
		flex-direction: column;
		gap: 20px;
	}

	.hero-description {
		margin-bottom: 0;
	}
	.mobile {
		display: block;
		text-align: center;
		padding: 20px 0;
		margin-top: 40px;
	}

	.desc {
		display: none;
	}
	.hero-content {
		max-width: 100%;
		text-align: enter;
	}

	.hero-image {
		max-width: 100%;
	}

	.hero-title {
		font-size: 40px;
	}
	.hero-title-wrapper {
		margin-bottom: 0;
	}
}

@media (max-width: 576px) {
	.hero {
		padding: 40px 0;
	}

	.hero-title {
		font-size: 32px;
	}

	.hero-intro {
		font-size: 16px;
	}

	.hero-description {
		font-size: 18px;
	}
}

.section-two {
	p {
		margin: 0;
		color: #fff;
		line-height: 130%;
		font-weight: 300;
		font-size: 18px;
	}
	.st-content-flex {
		display: flex;
		gap: 22px;
		div {
			flex: 0 1 50%;
			img {
				width: 100%;
			}
		}
	}
	.st-content-text {
		padding: 50px 27px;
		gap: 30px;
		border-radius: 20px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		background: linear-gradient(to bottom, #147c3d, #0a2d41);
	}

	.st-content-bottom {
		margin-top: 22px;
		border-radius: 10px;
		padding: 34px 40px;
		display: grid;
		gap: 30px;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		justify-content: space-between;
		background: linear-gradient(to left, #147c3d, #0a2d41);
		flex-wrap: wrap;
		h4 {
			margin: 0 0 10px 0;
			font-size: 40px;
			font-weight: 500;
			color: #fff;
		}
		/* div {
			flex: 0 1 20%;
		} */
	}
}
.section-three {
	padding: 50px 0;
	.section-three-title {
		display: flex;
		gap: 20px;
		justify-content: space-between;
		align-items: center;
		h2 {
			flex: 0 1 50%;
			margin: 0;
		}
		h4 {
			flex: 0 1 30%;
			font-size: 18px;
			font-weight: 300;
			line-height: 130%;
		}
	}
	.section-three__flex {
		display: flex;
		gap: 20px;
		justify-content: space-between;
		img {
			flex: 0 1 100%;
		}
	}
}
.section-four {
	.section-four-wrapper {
		padding: 100px 60px;
		border-radius: 20px;
		background-image: url('../img/bg-form-1.png');
		background-position: center;
		background-repeat: no-repeat;
		background-size: cover;
	}
	h2 {
		color: #fff;
		margin: 0%;
	}
	h4 {
		color: #fff;
		font-size: 24px;
		font-weight: 300;
	}
	.tablet {
		display: none;
	}
	.section-four__flex {
		display: flex;
		gap: 25px;
	}
	.form-wrapper {
		border-radius: 20px;
		background-color: rgba(255, 255, 255, 0.1);
		padding: 14px;
		backdrop-filter: blur(5px);
		form {
			display: flex;
			gap: 11px;
			flex-direction: column;
			background-color: #fff;
			border-radius: 20px;
			padding: 38px 32px 19px;
			h5 {
				font-size: 25px;
				font-weight: 500;
				margin: 0;
			}
			input {
				background: #f2f2f2;
				border: none;
				border-radius: 5px;
				padding: 22px 18px;
			}
			.btn-form {
				border: none;
				width: 100%;
				background: linear-gradient(to right, #147c3d, #0a2d41);
				color: #fff;
				transition: 0.2s;
				cursor: pointer;
			}
			.btn-form:hover {
				transform: scale(103%);
			}
		}
	}
}
.section-six {
	.sup-h2 {
		padding: 10px;
		font-size: 15px;
		border-radius: 5px;
		color: #fff;
		background-color: #109143;
		width: max-content;
		margin-bottom: 20px;
	}
	.section-six-wrapper {
		padding: 100px 60px;
		border-radius: 20px;
		background-image: url('../img/sf-bg.jpg');
		background-repeat: no-repeat;
		background-size: cover;
	}
	h2 {
		color: #fff;
		margin: 0%;
	}
	h4 {
		color: #fff;
		font-size: 24px;
		font-weight: 300;
	}
	.tablet {
		display: none;
	}
	.section-six__flex {
		display: flex;
		gap: 25px;
	}
	.section-six__content {
		flex: 0 1 50%;
	}
	.nbk-image {
		flex: 0 1 50%;
		img {
			width: 100%;
			border-radius: 20px;
		}
		.nbk-m {
			display: none;
		}
	}
	.btn-six {
		margin-top: 36px;
		display: block;
	}
	/* Стили для списка с зелеными кружками */
	.chargeback-conditions {
		list-style: none;
		padding: 0;
		margin-top: 25px;
	}

	.chargeback-conditions li {
		position: relative;
		padding-left: 26px;
		margin-bottom: 15px;
		color: #fff;
		font-size: 18px;
		font-weight: 300;
		line-height: 1.4;
	}

	.chargeback-conditions li:before {
		content: '';
		position: absolute;
		left: 0;
		top: 4px;
		width: 16px;
		height: 16px;
		background-color: #27ae60;
		border-radius: 50%;
	}
	.m {
		display: none;
	}
}

@media (max-width: 992px) {
	h2 {
		font-size: 30px;
	}
	p {
		font-size: 16px;
	}
	.section-two {
		.st-content-flex {
			flex-direction: column;
			align-items: center;
		}
		.st-content-bottom {
			grid-template-columns: 1fr 1fr;
			h4 {
				font-size: 25px;
			}
			p {
				font-size: 12px;
			}
		}
	}
	.section-three {
		.section-three-title {
			h4 {
				flex: 0 1 50%;
			}
		}
		.section-three__flex {
			flex-wrap: wrap;
			img {
				width: 100%;
				max-width: 182px;
			}
		}
	}
	.section-four {
		.section-four__content {
			flex: 0 1 45%;
		}
		.main-h2 {
			display: none;
		}
		.section-four-wrapper {
			padding: 57px 25px;
		}
		.tablet {
			display: block;
			font-size: 43px;
			margin-bottom: 20px;
		}
		.form-wrapper {
			form {
				padding: 27px 22px 13px;
			}
		}
	}
	.section-six {
		.main-h2 {
			display: none;
		}
		.section-six-wrapper {
			padding: 57px 25px;
		}
		.tablet {
			display: block;
			font-size: 43px;
			margin-bottom: 20px;
		}
	}
}

@media (max-width: 670px) {
	.section-three {
		.section-three-title {
			flex-direction: column;
			gap: 0;
		}
		.section-three__flex {
			justify-content: center;

			img {
				max-width: 105px;
			}
		}
	}
	.section-four {
		.section-four__flex {
			flex-direction: column;
		}
		.section-four__content {
			flex: 0 1 auto;
		}
		.main-h2 {
			display: block;
		}
		.section-four-wrapper {
			padding: 45px 17px;
		}
		.tablet {
			display: none;
		}
		.form-wrapper {
			padding: 10px;
			form {
				h5 {
					font-size: 18px;
				}
			}
		}
	}
	.section-six {
		.d {
			display: none;
		}
		.m {
			display: block;
		}
		.section-six__flex {
			flex-direction: column;
			gap: 0;
		}
		.section-six__content {
			padding: 0 17px 45px;
			flex: 0 1 auto;
		}
		.main-h2 {
			display: block;
		}
		.section-six-wrapper {
			padding: 0;
		}
		.tablet {
			display: none;
		}
		.section-six__content {
			order: 1;
		}
		.btn-six {
			width: 100%;
			text-align: center;
		}
		.nbk-image {
			.nbk-d {
				display: none;
			}
			.nbk-m {
				display: block;
			}
		}
	}
}
/* Стили для секции "О проекте" */
.section-about {
	padding: 70px 0;
	background-color: #fff;
}

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

.about-title {
	flex: 0 0 30%;
}
.about-title h2 {
	font-size: 50px;
	font-weight: 500;
	color: #333;
	margin: 0 0 20px 0;
}

.about-title h2 span {
	color: #0d5529;
}

.about-intro {
	margin-bottom: 30px;
	border-bottom: 1px solid #e0e0e0;
	padding-bottom: 30px;
}

.about-intro p {
	font-size: 18px;
	line-height: 1.6;
	color: #333;
	margin: 0;
}

.about-content {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.about-item {
	display: flex;
	border-bottom: 1px solid #e0e0e0;
	padding: 30px 0;
}
.about-header {
	display: flex;
	gap: 20px;
	flex: 0 0 40%;
}

.about-item-number {
	font-size: 24px;
	font-weight: 700;
	color: #147c3d;
}

.about-item-title {
	padding-right: 20px;
}

.about-item-title h3 {
	font-size: 22px;
	font-weight: 500;
	color: #333;
	margin: 0;
	line-height: 1.3;
}

.about-item-text {
	flex: 1;
}

.about-item-text p {
	font-size: 16px;
	line-height: 1.5;
	color: #555;
	margin: 0 0 15px 0;
}

.about-item-text p:last-child {
	margin-bottom: 0;
}

/* Адаптивные стили */
@media (max-width: 992px) {
	.about-item {
		gap: 20px;
	}
	.about-item-number {
	}
	.about-wrapper {
		flex-direction: column;
		gap: 10px;
	}
	.about-item-title {
		padding-right: 0;
	}

	.about-intro {
		max-width: 100%;
	}
}

@media (max-width: 576px) {
	.section-about {
		padding: 40px 0;
	}

	.about-title h2 {
		font-size: 36px;
	}
	.about-item {
		flex-direction: column;
	}

	.about-item-number {
		font-size: 20px;
	}

	.about-item-title h3 {
		font-size: 18px;
	}

	.about-intro p,
	.about-item-text p {
		font-size: 14px;
	}
}

/* Стили для секции "Кураторы программы" */
.curators-section {
	padding: 70px 0;
}

.curators-wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.curators-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	align-items: center;
	gap: 30px;
}

.curators-title {
	font-weight: 500;
	color: #333;
	margin: 0;
	flex: 0 1 50%;
}

.curators-quote {
	flex: 0 1 50%;
}

.curators-quote p {
	font-size: 18px;
	line-height: 1.6;
	color: #333;
	margin: 0;
}

.curators-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.curator-card {
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	background-color: #f5f6fa;
}

.curator-image {
	width: 100%;
	height: 310px;
	aspect-ratio: 1;
	overflow: hidden;
}

.curator-image img {
	width: 100%;
	height: 350px;
	object-fit: cover;
}

.curator-info {
	padding: 20px 20px 20px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.curator-name {
	font-size: 20px;
	font-weight: 500;
	color: #0d5529;
	margin: 0;
	line-height: 1.3;
}

.curator-position {
	font-size: 14px;
	line-height: 1.4;
	color: #666;
	margin: 0;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1200px) {
	.curators-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 992px) {
	.curators-header {
		flex-direction: column;
		gap: 20px;
	}

	.curators-quote {
		flex: 0 1 100%;
	}

	.curators-quote p {
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.curators-section {
		padding: 40px 0;
	}

	.curators-grid {
		grid-template-columns: 1fr;
	}

	.curator-name {
		font-size: 18px;
	}

	.curator-position {
		font-size: 13px;
	}
}

/* Стили для секции "Процесс возврата средств" */
.process-section {
	padding: 70px 0;
	background-color: #fff;
}

.process-wrapper {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.process-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
}

.process-title {
	font-size: 50px;
	font-weight: 500;
	color: #333;
	margin: 0;
	flex: 0 1 50%;
}

.process-description {
	flex: 0 1 50%;
	align-self: center;
}

.process-description p {
	font-size: 18px;
	line-height: 1.6;
	color: #333;
	margin: 0;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.process-card {
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 50px;
	padding: 30px;
	height: 380px;
	position: relative;
}

.process-card-white {
	background-color: #fff;
	color: #333;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.process-card-blue {
	background: linear-gradient(to bottom, #0745b1, #0a2d41);
	color: #fff;
}

.process-card-green {
	background-color: #147c3d;
	color: #fff;
}

.process-card-dark-green {
	background: linear-gradient(to top, #147c3d, #0a2d41);
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

.process-number {
	width: 100%;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
}

.process-content {
	font-size: 20px;
	line-height: 1.5;
}

.process-content p {
	margin: 0;
}

.process-card-button {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: auto;
}

.btn-apply {
	width: 100%;
	display: inline-block;
	background-color: #fff;
	color: #1a4336;
	font-size: 18px;
	font-weight: 500;
	padding: 15px 30px;
	border-radius: 10px;
	text-align: center;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	text-decoration: none;
}

.btn-apply:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Медиа-запросы для адаптивности */
@media (max-width: 1200px) {
	.process-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.process-card {
		height: 300px;
	}
}

@media (max-width: 992px) {
	.process-title {
		font-size: 36px;
	}
}

@media (max-width: 650px) {
	.process-header {
		flex-direction: column;
		gap: 20px;
	}
}
@media (max-width: 576px) {
	.process-section {
		padding: 40px 0;
	}

	.process-grid {
		grid-template-columns: 1fr;
	}

	.process-card {
		height: auto;
		min-height: 200px;
	}

	.process-content {
		font-size: 18px;
	}
}

/* Стили для секции с документами */
.section-documents {
	padding: 70px 0;
	background-color: #f5f6fa;
}

.documents-main-title {
	font-size: 61px;
	font-weight: 500;
	color: #333;
	margin-bottom: 40px;
	text-align: left;
	line-height: 1.2;
}

.documents-main-title span {
	color: #0d5529;
}

.documents-wrapper {
	display: flex;
	gap: 40px;
}

.documents-info {
	flex: 0 1 50%;
	display: flex;
	gap: 20px;
	flex-direction: column;
	justify-content: space-between;
	background: linear-gradient(to top, #0a2d41, #0d572a);
	border-radius: 20px;
	padding: 30px;
	color: white;
}

.documents-legal {
	flex: 0 1 50%;
	background: linear-gradient(to bottom, #eeeeee, #c2c2c2);

	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.documents-info p {
	font-size: 18px;
	line-height: 1.5;
	margin: 0;
}

.documents-quote {
	border-left: 3px solid white;
	padding-left: 20px;
	margin-top: 30px;
}

.documents-quote p {
	font-style: italic;
}

.documents-legal h3 {
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #333;
}

.documents-list {
	list-style: none;
	padding: 0;
	margin-bottom: 30px;
}

.documents-list li {
	position: relative;
	padding-left: 20px;
	margin: 0;
	font-size: 16px;
	line-height: 1.5;
	color: #333;
}

.documents-list li:before {
	content: '•';
	position: absolute;
	left: 0;
	color: #147c3d;
}

.pdf-container {
	margin-top: 30px;
}

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

.pdf-item {
	flex: 1;
	border-radius: 10px;
	padding: 15px;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.pdf-item:hover {
	background: #e9e9e9;
	transform: translateY(-5px);
}

.pdf-icon {
	margin-bottom: 10px;
}

.pdf-icon img {
	width: 70px;
	height: auto;
}

.pdf-title {
	font-size: 14px;
	line-height: 1.3;
	color: #333;
}

/* Модальное окно для PDF */
.pdf-modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
}

.pdf-modal-content {
	position: relative;
	margin: 5% auto;
	width: 80%;
	height: 80%;
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
}

.pdf-close {
	position: absolute;
	right: 20px;
	top: 15px;
	color: #333;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	z-index: 1001;
}

.pdf-viewer {
	width: 100%;
	height: 100%;
}

.pdf-viewer iframe {
	border: none;
}

/* Адаптивные стили */
@media (max-width: 992px) {
	.documents-wrapper {
		flex-direction: column;
	}

	.documents-info,
	.documents-legal {
		flex: 0 1 100%;
		padding: 15px;
	}

	.documents-main-title {
		font-size: 32px;
	}
}

@media (max-width: 768px) {
	.pdf-files {
		gap: 0;
	}
	.pdf-item {
		padding: 10px;
	}
	.pdf-title {
		font-size: 10px;
	}
	.pdf-icon img {
		max-width: 70px;
		width: 100%;
	}

	.pdf-modal-content {
		width: 90%;
		height: 70%;
	}
}

@media (max-width: 576px) {
	.section-documents {
		padding: 40px 0;
	}

	.documents-legal {
		padding: 20px;
	}

	.documents-main-title {
		font-size: 26px;
	}

	.documents-info p,
	.documents-list li {
		font-size: 14px;
	}
}
#pdf-container {
	width: 100%;
	height: 100%;
	overflow: auto;
	-webkit-overflow-scrolling: touch; /* Для плавной прокрутки на iOS */
}

/* Стили только для мобильных устройств */
@media (max-width: 768px) {
	.pdf-modal-content {
		margin: 10% auto;
	}

	#pdf-container {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

.section-blog {
	padding: 70px 0;
	background-color: #f5f6fa;
}

.blog-title {
	margin-bottom: 40px;
}

.blog-title h2 {
	font-size: 50px;
	font-weight: 500;
	color: #333;
	margin: 0;
}

.blog-title h2 span {
	color: #0d5529;
}

.blog-posts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.blog-post {
	cursor: pointer;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.blog-post:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-post-image {
	width: 100%;
	height: 220px;
	overflow: hidden;
}

.blog-post-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-post:hover .blog-post-image img {
	transform: scale(1.05);
}

.blog-post-title {
	padding: 20px 20px 10px;
	color: #0d5529;
	font-size: 22px;
	font-weight: 500;
	margin: 0;
	line-height: 1.3;
}

.blog-post-link {
	display: block;
	padding: 0 20px 20px;
	color: #000;
	text-decoration: underline;
	font-size: 16px;
	font-weight: 400;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 992px) {
	.blog-posts {
		grid-template-columns: repeat(2, 1fr);
	}

	.blog-title h2 {
		font-size: 40px;
	}
}

@media (max-width: 670px) {
	.blog-posts {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.blog-title h2 {
		font-size: 30px;
	}

	.blog-post-image {
		height: 200px;
	}
}

/* Стили для футера */
.footer {
	background: linear-gradient(to top, #0a2d41, #147c3d);
	padding: 80px 0;
	color: #fff;
}

.footer-wrapper {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.footer-info {
	flex: 0 1 45%;
}

.footer-title {
	font-size: 50px;
	font-weight: 500;
	margin: 0 0 20px 0;
	line-height: 1.2;
	color: #fff;
}
.footer-title-mob {
	display: none;
}

.footer-title span {
	color: #fff;
}

.footer-subtitle {
	font-size: 18px;
	margin: 0 0 40px 0;
	line-height: 1.5;
	font-weight: 300;
}
.footer-subtitle-mob {
	display: none;
}

.footer-contacts {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.contact-item p {
	margin: 0;
	font-size: 16px;
	color: #fff;
	line-height: 1.4;
	font-weight: 300;
}

.footer-form-wrapper {
	flex: 0 1 50%;
}

.form-container {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 14px;
	backdrop-filter: blur(5px);
}

.form-container form {
	display: flex;
	flex-direction: column;
	gap: 11px;
	background-color: #fff;
	border-radius: 20px;
	padding: 38px 32px 30px;
}

.form-container h5 {
	font-size: 22px;
	font-weight: 500;
	color: #333;
	margin: 0 0 15px 0;
	text-align: center;
}

.form-container input {
	background: #f2f2f2;
	border: none;
	border-radius: 5px;
	padding: 18px 16px;
	font-size: 16px;
}

.btn-form {
	border: none;
	width: 100%;
	background: linear-gradient(to right, #147c3d, #0a2d41);
	color: #fff;
	transition: 0.2s;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	padding: 16px;
	margin-top: 10px;
}

.btn-form:hover {
	transform: scale(1.03);
}

/* Медиа-запросы для адаптивности */
@media (max-width: 992px) {
	.footer {
		padding: 50px 0;
	}

	.form-container form {
		padding: 38px 20px 30px;
	}

	.footer-form-wrapper {
		flex: 0 1 100%;
	}
	.footer-form-wrapper {
		margin: 0 10px;
	}
	.footer-title-mob {
		display: block;
		text-align: center;
	}
	.footer-title-desc {
		display: none;
	}
}

@media (max-width: 576px) {
	.footer {
		padding: 40px 0;
	}
	.footer-wrapper {
		flex-direction: column;
	}
	.footer-info {
		order: 1;
	}

	.footer-title {
		font-size: 28px;
	}

	.footer-subtitle {
		font-size: 16px;
		margin-bottom: 30px;
	}
	.footer-title-mob {
		text-align: left;
	}
	.footer-subtitle-mob {
		display: block;
	}
	.footer-subtitle-desc {
		display: none;
	}
	.contact-item p {
		font-size: 14px;
	}

	.form-container {
		padding: 10px;
	}

	.form-container form {
		padding: 25px 20px 20px;
	}

	.form-container h5 {
		font-size: 18px;
	}

	.form-container input {
		padding: 14px 12px;
	}
}

/* Стили для нижнего блока футера */
.under-footer {
	padding-top: 40px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 40px;
}

.under-footer-content {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.footer-logo-section {
	flex: 0 1 50%;
}

.footer-logo {
	margin-bottom: 15px;
}

.footer-logo img {
	width: 150px;
	height: auto;
}

.footer-description {
	font-size: 14px;
	line-height: 1.5;
	max-width: 300px;
	color: #fff;
	margin: 0;
	opacity: 0.8;
}

.footer-links-section {
	flex: 0 1 70%;
	display: flex;
	gap: 40px;
	justify-content: flex-end;
}

.footer-column {
	flex: 0 1 40%;
}

.footer-heading {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	margin: 0 0 20px 0;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links a {
	color: #fff;
	font-size: 14px;
	opacity: 0.8;
	transition: opacity 0.3s ease;
	text-decoration: none;
}

.footer-links a:hover {
	opacity: 1;
	text-decoration: underline;
}

.footer-bottom {
	text-align: center;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
	margin: 0;
	font-size: 14px;
	color: #fff;
	opacity: 0.7;
}

/* Адаптивные стили для мобильных устройств */
@media (max-width: 992px) {
	.under-footer-content {
		flex-direction: column;
		gap: 30px;
	}

	.footer-logo-section {
		flex: 0 1 100%;
		text-align: center;
	}

	.footer-links-section {
		flex: 0 1 100%;
		justify-content: space-between;
	}
}

@media (max-width: 576px) {
	.footer-links-section {
		flex-direction: column;
		gap: 30px;
	}

	.footer-column {
		flex: 0 1 100%;
	}

	.footer-heading {
		margin-bottom: 15px;
	}

	.footer-links li {
		margin-bottom: 10px;
	}
}

.popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index: 1000;
	overflow: auto;
}

.popup-content {
	position: relative;
	width: 100%;
	max-width: 550px;
	margin: 50px auto;
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	animation: popup-fade 0.3s ease-in-out;
}

@keyframes popup-fade {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 24px;
	color: white;
	background-color: rgba(0, 0, 0, 0.3);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	z-index: 1001;
}

.popup-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.popup-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.popup-form-container {
	background: linear-gradient(to top, #0d5529, #0a2d41);
	padding: 25px 20px;
	color: white;
}

.popup-form-container h2 {
	text-align: center;
	font-size: 24px;
	margin: 0 0 20px 0;
	color: #fff;
	font-weight: 500;
	line-height: 1.3;
}

#popup-form,
#leadform {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

#popup-form input,
#leadform input {
	padding: 15px;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	background-color: white;
}

.popup-btn {
	padding: 15px;
	background-color: #147c3d;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	margin-top: 5px;
	transition: background-color 0.3s;
}

.popup-btn:hover {
	background-color: #0d5529;
}

/* Responsive adjustments */
@media (max-width: 600px) {
	.popup-content {
		width: 90%;
		margin: 30px auto;
	}

	.popup-form-container h2 {
		font-size: 20px;
	}

	.popup-image {
		height: 200px;
	}
}
.iti--separate-dial-code.iti--show-flags .iti__selected-dial-code {
color: #000 !important;
  
}
}