html,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

a {
    color: #005596;
    text-decoration-skip-ink: none;
}

h3 h2,
h2 a {
    margin-top: 10px;
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: normal;
    color: #398200;
    line-height: 22px;
}

h2 {
    margin-top: 10px;
    margin-bottom: 18px;
    font-size: 25px;
    font-weight: normal;
    color: #398200;
    line-height: 22px;
}

h3 {
    margin-top: 20px;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: normal;
    color: #398200;
    line-height: 22px;
}

a:hover {
    text-decoration: none;
}

sup {
    font-size: 75%;
}

html {
    height: 100%;
}

html,
body {
    padding: 0;
    margin: 0;
    position: relative;
}

body {
	font-family: 'Inter', sans-serif;
	color:#3a3a3a;
	line-height: 1.4;
	background:#f6f6f6;
    font-size: 100%;
}

/* основной контейнер с легкой боковой воздушностью */
.container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Шапка — полностью повторяет настроение: черный с акцентами */
.top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 20px 0 16px;
}
.phones_item{
	display:flex;
}
.phones_item a{
	color:#3a3a3a;
	font-weight:400;
	text-decoration: none;
}
a:hover{
	opacity:0.7;
}
.phones_item a span {
    font-size: 13px;
    position: relative;
    top: -4px;
	font-weight:600;
}
.font_span{
	font-size: 13px;
    position: relative;
    top: 0px;
	left:5px;
	color:#3a3a3a;
	font-weight:600;
}
a.font_span{
	font-size: 13px;
    position: relative;
    top: -5px;
	bottom: -5px;
	left: 5px;
	font-weight:600;
	color:#0fa317;
	text-decoration: underline;
}
a.font_span:hover{
	text-decoration:none;
}

.phones { font-size: 20px; }

.contacts_soc{
	display:flex;
	flex-direction: column;
}
.contacts_soc_item{
	display:flex;
	gap:20px;
	align-items: center;
	width:100%;
}
.mail{
	color:#3a3a3a;
	font-weight:600;
}
.flex_socseti{
	display:flex;
	gap:5px;
	align-items: center;
	margin-top:3px;
}
.flex_socseti img{
	height:28px;
	width:28px;
}
.flex_socseti img.telega{
	height:24px;
	width:24px;
}
.menu_head{
	display:flex;
	gap:30px;
	align-items: center;
	justify-content: space-between;
	width:100%;
}
.menu_head a{
	color:#3a3a3a;
	font-weight:600;
	text-decoration: none;
}
.menu_head a:hover{
	color:#0fa317;
	opacity:1;
}
/* Блок поиска: flex-контейнер, обводка (бордер) */
.search-wrapper {
	display: flex;
	align-items: center;
	width: 150px;            /* фиксированная ширина 400px как требуется */
	max-width: 100%;
	background-color: #fff;
	border: 1px solid #0fa317;   /* обводка цвет #0fa317 */
	border-radius: 8px;          
	border-radius: 8px;   /* слева большой радиус, справа небольшой */
	transition: box-shadow 0.2s, border-color 0.2s;
}

/* Поле ввода: убираем стандартные бордеры, фон прозрачный, растягивается */
.search-input {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	padding: 5px;   /* левый отступ больше из-за радиуса */
	font-size: 14px;
	font-weight: 450;
	color: #0fa317;
	width: 100%;
	letter-spacing: -0.2px;
}

.search-input::placeholder {
	color: #0fa317;
	font-weight: 400;
	font-size: 0.95rem;
	transition: opacity 0.2s;
}

.search-input:focus::placeholder {
	opacity: 0.6;
}

/* Кнопка-иконка лупы. Справа, кликабельна, фон приятный при ховере */
.search-button {
	background: transparent;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3px 14px 3px 2px;
	margin: 0;
	transition: transform 0.15s ease, opacity 0.2s;
	border-radius: 0 14px 14px 0;  /* чтобы при наведении подсветка не выходила за углы */
}

.search-button:hover {
	transform: scale(1.02);
	opacity: 0.85;
}

.search-button:active {
	transform: scale(0.96);
}

/* SVG иконка лупы цветом #0fa317 (как обводка) */
.search-icon {
	width: 22px;
	height: 22px;
	display: block;
	stroke: #0fa317;
	stroke-width: 2.2;
	fill: none;
	transition: stroke 0.2s;
}

/* При ховере на кнопке можно делать чуть темнее, но сохраняем стиль */
.search-button:hover .search-icon {
	stroke: #0c8a13;
}
.name_pay{
	font-size:16px;
	font-weight:600px;
	color:#0fa317;
	margin-bottom:2px;
	text-align: center;
	text-transform: uppercase;
}
.pay_f{
	display: flex;
	justify-content: center;
	gap: 5px;
    margin: 0 0 5px 0;
}
.pay_f img{
	width: auto;
    height: 18px;
}
.section_menu{
	margin-top:30px;
	width:100%;
}
/* ========== МОБИЛЬНАЯ ВЕРСИЯ ========== */
/* Кнопка бургера (скрыта на десктопе) */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #3a3a3a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Анимация крестика */
.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Оверлей для затемнения фона */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Мобильное меню */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100%;
    background-color: #fff;
    z-index: 1000;
    padding: 40px 20px 30px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    display: block;
    right: 0;
}

.mobile-menu .menu_head_mobile {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mobile-menu .menu_head_mobile a {
    color: #3a3a3a;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu .menu_head_mobile a:hover {
    color: #0fa317;
}

.mobile-menu .mobile-contacts {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.mobile-menu .mobile-contacts a {
    display: block;
    color: #3a3a3a;
    text-decoration: none;
    padding: 8px 0;
}

/* ========== МЕДИА-ЗАПРОСЫ ========== */
@media (max-width: 992px) {
    .top-bar {
        position: relative;
    }
    
    /* Скрываем ненужные блоки на мобилке */
    .contacts_soc:first-of-type .contacts_soc_item:first-child .flex_socseti,
    .contacts_soc:first-of-type .menu_head,
    .contacts_soc:last-of-type .to-order .name_pay,
    .contacts_soc:last-of-type .pay_f span:first-child,
    .contacts_soc:last-of-type .pay_f span:last-child {
        display: none;
    }
    
    /* Упрощаем блок оплаты */
    .contacts_soc:last-of-type .to-order {
        margin-bottom: 0;
    }
    
    .contacts_soc:last-of-type .pay_f {
        justify-content: flex-start;
    }
    
    .contacts_soc:last-of-type .pay_f span:nth-child(2) img {
        height: 24px;
        width: auto;
    }
    
    /* Показываем бургер */
    .burger-menu {
        display: flex;
    }
    
    /* Скрываем основную навигацию */
    .section_menu {
        display: none;
    }
    
    /* Скрываем меню в правом блоке */
    .contacts_soc .menu_head {
        display: none;
    }
    
    /* Уменьшаем поиск */
    .search-wrapper {
        width: 120px;
    }
    
    .phones {
        font-size: 16px;
    }
    
    .phones_item a span {
        font-size: 11px;
        top: -2px;
    }
    
    .font_span {
        font-size: 10px;
        left: 3px;
    }
    
    a.font_span {
        white-space: nowrap;
        font-size: 10px;
        bottom: -3px;
        left: 3px;
    }

    a.font_span.popup-open {
        top: -7px;
        font-size: 10px;
    }
    
    .logo img {
        max-width: 150px;
        height: auto;
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .logo {
        flex-shrink: 0;
    }
    
    .logo img {
        max-width: 120px;
    }
    
    /* Полностью скрываем соцсети и почту на очень маленьких */
    .contacts_soc:first-of-type .contacts_soc_item:first-child .mail {
        display: none;
    }
    
    .contacts_soc:first-of-type .contacts_soc_item:first-child {
        justify-content: flex-end;
    }
    
    .phones {
        font-size: 14px;
    }
    
    .phones_item {
        flex-direction: column;
        text-align: center;
    }
    
    .phones_item a span {
        font-size: 10px;
    }
    
    
    .search-wrapper {
        width: 100px;
    }
    
    .search-input::placeholder {
        font-size: 0.8rem;
    }
    
    .search-button {
        padding: 3px 8px 3px 2px;
    }
    
    .search-icon {
        width: 18px;
        height: 18px;
    }
	.contacts_soc{
		display:none;
	}
	
}

@media (max-width: 576px) {
    
    .logo img {
        max-width: 100px;
    }
    
    .phones_item a {
        font-size: 14px;
    }
    
    .phones_item a span {
        font-size: 10px;
    }
    
    .search-wrapper {
        width: 80px;
    }
    
    .search-input {
        padding: 3px;
        font-size: 11px;
    }
    
    .search-input::placeholder {
        font-size: 0.7rem;
    }
    
    .search-button {
        padding: 2px 5px 2px 2px;
    }
    
    .search-icon {
        width: 15px;
        height: 15px;
    }
    
    .contacts_soc:last-of-type .pay_f img {
        height: 18px;
    }
}






.section{
	padding-top:60px;
	width: 100%;
    margin-bottom: 0px;
}
.slick_banner_item,
.banner-item-2026 {
	border:1px solid #0fa317;
	padding:35px;
	border-radius:30px;
	background-position:right;
	background-size:600px;
	background-repeat: no-repeat;
	min-height:303px;
	background-color:#fff;
}
.slick-list{
	padding-bottom:5px;
}
.banner_content{
	max-width:800px;
	width:100%;
}
.banner_name{
	font-size:38px;
	font-weight:600;
	line-height:110%;
	margin-bottom:30px;
}
.banner_name span{
	display:block;
	color:#0fa317;
}
.banner_text{
	font-size:20px;
	line-height:140%;
	font-weight:500;
}
.banner_green{
	font-size:18px;
	line-height:110%;
	font-weight:600;
	color: #0fa317;
	margin-top:-15px;
	margin-bottom:15px;
}
.banner_btn{
	display:flex;
	gap:20px;
	margin-top:30px;
}
.btn{
	padding:10px 20px;
	display:flex;
	justify-content: center;
	align-items: center;
	border:1px solid #0fa317;
	background:#0fa317;
	color:#fff;
	font-size:18px;
	text-decoration:none;
	border-radius:20px;
}
.bnt_white{
	background:#fff;
	color:#0fa317;
}

.slick_banner .slick-dots {
	bottom: -40px;         /* отступ от слайдов */
	list-style: none;
	display: flex !important;
	justify-content: center;
	gap: 12px;
	padding: 0;
	margin: 20px 0 0;
}

/* Общий стиль для li кнопок */
.slick_banner .slick-dots li {
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
}

/* Кнопка точки */
.slick_banner .slick-dots li button {
	width: 14px;
	height: 14px;
	padding: 0;
	border-radius: 50%;
	background: #ffffff;          /* внутри белый */
	border: 2px solid #0fa317;    /* обводка #0fa317 */
	transition: all 0.2s ease;
	cursor: pointer;
	font-size: 0;
	line-height: 0;
	display: block;
	box-sizing: border-box;
}

/* Убираем стандартный контент «•» у button */
.slick_banner .slick-dots li button:before {
	content: none;  /* полностью отключаем стандартные точки Slick */
	display: none;
}
.slick_banner .slick-dots li button {
	background: #ffffff;
	border: 2px solid #0fa317;
	width: 14px;
	height: 14px;
	transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.1s;
}

/* анимация при наведении на точку */
.slick_banner .slick-dots li button:hover {
	transform: scale(1.3);
	background: #eaffea;
}

/* Активная точка — зеленая заливка (премиальная) + эффект */
.slick_banner .slick-dots li.slick-active button {
	background: #0fa317;
	border: 2px solid #0fa317;
	transform: scale(1.2);
	box-shadow: 0 0 6px rgba(15, 163, 23, 0.5);
}
.head_h2{
	display:flex;
	gap:20px;
	width:100%;
	justify-content: space-between;
	align-items: center;
	margin-bottom:25px;
}
.head_h2 h2{
	font-size:30px;
	font-weight:600;
	line-height:110%;
	color: #3a3a3a;
	margin:0;
}
.head_h2 a{
	font-size:16px;
	line-height:110%;
	text-decoration:none;
	color: #3a3a3a;
}
.head_h2 a span{
	color:#0fa317;
	font-size:20px;
}


 /* КОНТЕЙНЕР ГАЛЕРЕИ — ЭФИРНЫЙ, СОВРЕМЕННЫЙ */
.video_section {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
}

/* КАРТОЧКА ВИДЕО — ЭЛЕГАНТНАЯ, С ПЛАВНЫМИ ТЕНЯМИ */
.video_item {
	width: calc(14% - 14px);
	min-width: 10px;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	background: rgba(20, 25, 35, 0.6);
	backdrop-filter: blur(2px);
	box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
	transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
	cursor: pointer;
}

.video_item:hover {
	transform: translateY(-5px) scale(1.02);
	box-shadow: 0 28px 40px -15px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* СТИЛИ ДЛЯ ВИДЕО — ПОЛНОЕ ПОКРЫТИЕ, БЕЗ ИСКАЖЕНИЙ */
.video_item video {
	width: 100%;
	height: 260px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
	background: #00000022;
}

.video_item:hover video {
	transform: scale(1.03);
}

/* === ОСНОВНОЙ ЭЛЕМЕНТ: ИМЯ С БЛЮРОМ ВНИЗУ === */
.video_name {
	position: absolute;
	bottom: 10px;
	left: 10px;
	width:fit-content;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	padding: 8px;
	font-weight: 600;
	font-size: 1rem;
	color: #ffffff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
	transition: all 0.3s;
	z-index: 2;
	font-family: inherit;
	border-radius:6px;
    text-transform: uppercase;
}

/* Стилизация текста внутри блюра */
.video_name span {
	display: inline-block;
	background: rgba(0, 0, 0, 0.4);
	padding: 0.2rem 0.6rem;
	border-radius: 40px;
	font-size: 0.75rem;
	letter-spacing: 0.3px;
	backdrop-filter: blur(4px);
	margin-left: 0.5rem;
}

/* === НОВАЯ ЦЕНТРАЛЬНАЯ КНОПКА PLAY (абсолютно по центру видео) === */
.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 64px;
	height: 64px;
	background: rgba(0, 0, 0, 0.65);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all 0.25s ease;
	border: 1.5px solid rgba(255, 255, 255, 0.5);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Треугольник play (чистый CSS для лучшей совместимости) */
.play-button::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 0 12px 20px;
	border-color: transparent transparent transparent #ffffff;
	margin-left: 5px;
	filter: drop-shadow(0 1px 1px rgba(0,0,0,0.3));
}

/* Ховер эффект на кнопку */
.play-button:hover {
	background: rgba(255, 255, 255, 0.25);
	backdrop-filter: blur(16px);
	transform: translate(-50%, -50%) scale(1.08);
	border-color: rgba(255, 255, 255, 0.9);
}

.play-button:hover::after {
	border-left-color: #ffffff;
}

/* Скрываем кнопку, когда видео проигрывается */
.video_item.playing .play-button {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.2s ease, visibility 0.2s;
}

/* При наведении на карточку, если видео на паузе — можно показать кнопку ярче */
.video_item:hover .play-button:not(.hidden-permanent) {
	background: rgba(0, 0, 0, 0.75);
	border-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 1024px) {
	.video_item{
		width:calc(33.333% - 15px);
	}
}
/* Адаптивность размера кнопки */
@media (max-width: 700px) {
	.play-button {
		width: 52px;
		height: 52px;
	}
	.play-button::after {
		border-width: 10px 0 10px 16px;
	}
	.video_item video {
		height: 260px;
	}
	.video_item{
		width:100%;
	}
}

@media (max-width: 480px) {
	.play-button {
		width: 48px;
		height: 48px;
	}
	.play-button::after {
		border-width: 9px 0 9px 14px;
	}
}

/* Адаптивность: при уменьшении экрана карточки красиво переносятся */
@media (max-width: 1100px) {
	.video_item {
		flex: 1 1 calc(33.33% - 20px);
		min-width: 220px;
	}
}

@media (max-width: 700px) {
	.video_item {
		flex: 1 1 calc(50% - 15px);
		min-width: 160px;
	}
	.video_name {
		padding: 0.6rem 0.8rem;
		font-size: 0.85rem;
	}
}

@media (max-width: 480px) {
	.video_item {
		flex: 1 1 100%;
	}
	.video_name {
		font-size: 0.95rem;
		padding: 0.7rem 1rem;
	}
}



/* Блок преимуществ — сетка 4 колонки */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 40px 0 20px;
    width: 100%;
}

/* Карточка преимущества */
.feature-card {
    flex: 1 1 calc(20% - 24px);
    min-width: 180px;
    background: #ffffff;
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(15, 163, 23, 0.12);
}

/* Ховер эффект как на других карточках сайта */
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px -10px rgba(0, 0, 0, 0.12);
    border-color: rgba(15, 163, 23, 0.3);
}

/* Иконка (или группа иконок) */
.feature-icon {
    margin-bottom: 10px;
    font-size: 24px;
    color: #0fa317;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    transition: transform 0.2s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.02);
}

/* Отдельно для звезд рейтинга — цвет зеленый + промежутки */
.feature-icon i.fa-star,
.feature-icon i.fas.fa-star {
    color: #0fa317;
    font-size: 22px;
    letter-spacing: 2px;
}

/* Заголовок h4 внутри карточки */
.feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #3a3a3a;
    margin: 0;
    line-height: 1.3;
    transition: color 0.2s;
}

.feature-card:hover h4 {
    color: #0fa317;
}

/* Адаптивность: планшеты и мобильные */
@media (max-width: 900px) {
    .feature-card {
        flex: 1 1 calc(50% - 24px);
        min-width: 160px;
        padding: 22px 12px;
    }
    .feature-icon {
        font-size: 32px;
    }
    .feature-icon i.fa-star,
    .feature-icon i.fas.fa-star {
        font-size: 24px;
    }
    .feature-card h4 {
        font-size: 16px;
    }
}

@media (max-width: 550px) {
    .features-grid {
        gap: 16px;
    }
    .feature-card {
        flex: 1 1 100%;
        padding: 20px 16px;
    }
    .feature-icon {
        font-size: 38px;
    }
    .feature-card h4 {
        font-size: 17px;
    }
}

/* Основной контейнер сетки услуг */
.new-main {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 40px 0 0px; /* увеличен нижний отступ, чтобы подменю не обрезалось */
    width: 100%;
}

/* Карточка услуги */
.block-4.service-box {
    flex: 1 1 calc(25% - 24px);
    min-width: 220px;
    background: #ffffff;
    border-radius: 24px;
    overflow: visible;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(15, 163, 23, 0.1);
    position: relative;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

.block-4.service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(15, 163, 23, 0.3);
    z-index: 100; /* поднимаем карточку при ховере */
}

/* Блок с изображением */
.item-img-new {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 24px 24px 0 0;
}

.item-img-new a {
    display: block;
    width: 100%;
}

.item-img-new img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.block-4.service-box:hover .item-img-new img {
    transform: scale(1.05);
}

/* Заголовок с иконкой и текстом */
.mt-10.title {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 16px 16px;
    background: #ffffff;
    border-radius: 0 0 24px 24px;
}

/* Иконка (blocnot) */
.blocnot {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(15, 163, 23, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blocnot img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.block-4.service-box:hover .blocnot {
    background: rgba(15, 163, 23, 0.15);
    transform: scale(1.02);
}

/* Текст ссылки заголовка */
.title div:last-child {
    flex: 1;
}

.title div:last-child a {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    line-height: 1.35;
    display: inline-block;
    transition: color 0.2s ease;
    text-transform: none;
}

.title div:last-child a:hover {
    color: #0fa317;
}

/* ========== ВСПЛЫВАЮЩЕЕ ПОДМЕНЮ — ВСЕГДА СНИЗУ ========== */
.new-menuitem {
    position: absolute;
    top: 100%; /* всегда снизу */
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(15, 163, 23, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 1000;
    overflow: visible;
    margin-top: 8px;
}

/* Стрелочка сверху (треугольник, указывает на карточку) */
.new-menuitem::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
    z-index: 1001;
}

.new-menuitem::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(15, 163, 23, 0.2);
    z-index: 999;
}

/* При наведении на карточку — показываем подменю */
.block-4.service-box:hover .new-menuitem {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.new-menuitem.open {
    display: block;
    height: auto !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (hover: none) {
    .block-4.service-box:hover .new-menuitem:not(.open) {
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
    }
}

/* Контент внутри подменю — с прокруткой */
.new-menuitem > div {
    padding: 15px;
    max-height: 350px;
    overflow-y: auto;
    border-radius: 20px;
	background:#fff;
    scrollbar-width: thin;
}

/* Кастомизация скроллбара */
.new-menuitem > div::-webkit-scrollbar {
    width: 5px;
}

.new-menuitem > div::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.new-menuitem > div::-webkit-scrollbar-thumb {
    background: #0fa317;
    border-radius: 10px;
}

/* Список подменю — адаптивная сетка */
.ul-men-n {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ul-men-n li {
    margin: 0;
    padding: 0;
    break-inside: avoid;
}

.ul-men-n li a {
    font-size: 13px;
    color: #4a4a4a;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    padding: 5px 0;
    position: relative;
    white-space: normal;
    word-break: break-word;
}

.ul-men-n li a:hover {
    color: #0fa317;
    transform: translateX(3px);
}

/* Декоративный элемент */
.ul-men-n li a::before {
    content: "•";
    margin-right: 8px;
    color: #0fa317;
    opacity: 0.7;
    font-size: 14px;
    font-weight: bold;
}

/* Для пустых подменю */
.new-menuitem:empty,
.new-menuitem > div:empty {
    display: none;
}

/* Если подменю очень длинное — увеличиваем z-index и даём больше места */
.new-main {
    overflow: visible;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Адаптивность сетки подменю */
@media (max-width: 1200px) {
    .ul-men-n {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .ul-men-n {
        grid-template-columns: 1fr;
    }
    .new-menuitem > div {
        max-height: 300px;
    }
}

@media (max-width: 1100px) {
    .block-4.service-box {
        flex: 1 1 calc(33.33% - 24px);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .new-main {
        gap: 16px;
        margin-bottom: 60px;
    }
    .block-4.service-box {
        flex: 1 1 calc(50% - 16px);
        min-width: 160px;
    }
    .item-img-new img {
        height: 150px;
    }
    .mt-10.title {
        padding: 12px;
    }
    .blocnot {
        width: 40px;
        height: 40px;
    }
    .blocnot img {
        width: 22px;
        height: 22px;
    }
    .title div:last-child a {
        font-size: 14px;
    }
    .new-menuitem {
        position: fixed;
        top: auto;
        bottom: 20px;
        left: 20px;
        right: 20px;
        transform: translateY(20px);
        margin-top: 0;
    }
    .new-menuitem::before,
    .new-menuitem::after {
        display: none;
    }
    .block-4.service-box:hover .new-menuitem {
        transform: translateY(0);
    }
    .ul-men-n {
        grid-template-columns: 1fr;
        max-height: 50vh;
    }
}

@media (max-width: 480px) {
    .block-4.service-box {
        flex: 1 1 100%;
    }
    .item-img-new img {
        height: 180px;
    }
    .new-menuitem > div {
        padding: 12px;
        max-height: 60vh;
    }
    .ul-men-n li a {
        font-size: 12px;
    }
}

/* Дополнительно: для последних карточек в ряду — корректируем позиционирование */
.new-main .block-4.service-box:last-child:nth-child(3),
.new-main .block-4.service-box:last-child:nth-child(4) {
    margin-bottom: 0;
}

/* Блок новостей — современная сетка */
.news_list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    position: unset;
}

/* Карточка новости */
.news_list_item {
    width: calc(33.333% - 46px);
    background: #ffffff;
    border-radius: 16px;
    padding: 15px;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(15, 163, 23, 0.08);
    position: relative;
    display: flex;
    flex-direction: column;
}

.news_list_item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
    border-color: rgba(15, 163, 23, 0.2);
}

/* Шапка новости: дата + заголовок */
.news_item_header {
    display: block;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(15, 163, 23, 0.15);
}

/* Дата */
.news_item_header br {
    display: none;
}

.news_item_header {
    font-size: 14px;
    font-weight: 500;
    color: #0fa317;
    letter-spacing: 0.3px;
    position: relative;
}

/* Заголовок ссылки */
.news_item_header a {
    font-size: 18px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    line-height: 1.4;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.2s ease;
}

.news_item_header a:hover {
    color: #0fa317;
}

/* Текст новости */
.news_list_item p {
    font-size: 14px;
    line-height: 1.55;
    color: #5a5a5a;
    margin: 0 0 20px 0;
    flex: 1;
}

/* Ссылка "подробнее" */
.more_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #0fa317;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.more_link img {
    width: 10px;
    height: 10px;
    transition: transform 0.2s ease;
    opacity: 0.8;
}

.more_link:hover {
    color: #0c8a13;
    gap: 12px;
}

.more_link:hover img {
    transform: translateX(4px);
    opacity: 1;
}

/* Альтернативный вариант без картинки (через CSS) */
.more_link::after {
    display: none;
}

/* Для карточек с разной высотой — выравнивание */
.news_list_item {
    display: flex;
    flex-direction: column;
}

/* Адаптивность */
@media (max-width: 1000px) {
    .news_list_item {
        flex: 1 1 calc(50% - 28px);
        min-width: 240px;
    }
}

@media (max-width: 700px) {
    .news_list {
        gap: 20px;
    }
    .news_list_item {
        flex: 1 1 100%;
        padding: 20px;
    }
    .news_item_header a {
        font-size: 16px;
    }
    .news_list_item p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .news_list {
        gap: 16px;
        margin: 30px 0;
    }
    .news_list_item {
        padding: 18px;
    }
    .news_item_header a {
        font-size: 15px;
    }
}

/* Блок контактов — современный стиль */
.flex_contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 0px 0 50px;
    background: transparent;
}

/* Левая часть — форма заказа */
.order_gv {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 32px;
    padding: 32px 36px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 163, 23, 0.1);
    transition: all 0.35s ease;
}

.order_gv:hover {
    box-shadow: 0 16px 35px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(15, 163, 23, 0.2);
}

.order_gv h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 16px 0;
    line-height: 1.3;
    position: relative;
    display: inline-block;
    text-align: left;
}

.order_gv h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #0fa317;
    border-radius: 3px;
}

.order_gv_descr {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.5;
    margin: 20px 0 16px 0;
    text-align: left;
}

.order_gv_descr:first-of-type {
    margin-top: 24px;
}

/* Контейнер ссылок */
.order_gv_links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 20px 0 24px 0;
    max-width: unset;
}

/* Стиль каждой ссылки */
.order_gv_link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f5f7f5;
    border-radius: 60px;
    font-size: 15px;
    font-weight: 500;
    color: #2c2c2c;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid transparent;
    width: auto;
    height: auto;
    line-height: unset;
    position: unset;
    margin: 0px;
    text-transform: none;
}

.order_gv_link:hover {
    background: #ffffff;
    border-color: #0fa317;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(15, 163, 23, 0.12);
    color: #0fa317;
}

/* Иконки для ссылок */
.order_gv_links_mail::before,
.order_gv_links_tel::before,
.order_gv_links_tg::before,
.order_gv_links_home::before {
    font-size: 16px;
    color: #0fa317;
    background-image: unset;
    position: unset;
    width: auto;
    height: auto;
}

.order_gv_links_tel::before {
    content: "📞";
}
.order_gv_links_tg::before {
    content: "💬";
}
.order_gv_links_home::before {
    content: "📍";
}
.order_gv_links_mail::before {
    content: "✉";
}

/* Кнопка (если понадобится) */
.order_gv_black_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #0fa317;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.order_gv_black_btn:hover {
    background: #0c8a13;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 163, 23, 0.25);
}

/* Правая часть — карта */
.map_titul {
    flex: 1;
    min-width: 380px;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 163, 23, 0.1);
    transition: all 0.35s ease;
    position: relative;
}

.map_titul:hover {
    box-shadow: 0 16px 35px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(15, 163, 23, 0.2);
}

/* Контейнер карты */
#YMapsID {
    width: 100%;
    height: 100%;
    min-height: 380px;
    background: #eef2ee;
}

/* Адаптивность */
@media (max-width: 1000px) {
    .flex_contacts {
        flex-direction: column;
        gap: 30px;
    }
    
    .order_gv {
        padding: 28px 30px;
        width: auto;
    }
    
    .order_gv h2 {
        font-size: 24px;
    }
    
    .order_gv_links {
        gap: 12px;
    }
    
    .order_gv_link {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .map_titul {
        min-width: auto;
    }
    
    #YMapsID {
        min-height: 350px;
    }
}

@media (max-width: 600px) {
    .flex_contacts {
        gap: 24px;
        margin: 30px 0;
    }
    
    .order_gv {
        padding: 22px 20px;
        width: auto;
    }
    
    .order_gv h2 {
        font-size: 22px;
    }
    
    .order_gv_descr {
        font-size: 14px;
    }
    
    .order_gv_links {
        flex-direction: column;
        width: 100%;
    }
    
    .order_gv_link {
        justify-content: center;
        width: auto;
        display: flex;
    }
    
    .map_titul {
        border-radius: 24px;
    }
    
    #YMapsID {
        min-height: 280px;
    }
}

/* Дополнительные улучшения для карты */
.map_titul iframe,
.map_titul .YMaps {
    border-radius: 32px;
}

/* Стиль для адреса в балуне карты */
.YMaps-b-balloon-content {
    font-family: 'Inter', sans-serif !important;
    font-size: 13px !important;
    color: #2c2c2c !important;
}

.YMaps-b-balloon-content b {
    color: #0fa317 !important;
}

/* Блок оферты — дисклеймер в стиле сайта */
.offerta {
    max-width: 100%;
    margin: 10px auto 30px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f8f9f8 0%, #f0f2f0 100%);
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #7a7a7a;
    text-align: center;
    letter-spacing: 0.2px;
    border: 1px solid rgba(15, 163, 23, 0.12);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(0px);
}



/* Ховер эффект */
.offerta:hover {
    background: #ffffff;
    border-color: rgba(15, 163, 23, 0.25);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .offerta {
        padding: 12px 18px;
        margin: 30px auto 20px;
        font-size: 11px;
        line-height: 1.45;
    }
    
    .offerta::before,
    .offerta::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .offerta {
        padding: 10px 16px;
        margin: 25px auto 15px;
        font-size: 10px;
        border-radius: 16px;
    }
}

footer{
	width:100%;
}

/* Footer — яркий, современный дизайн */
footer {
    background: linear-gradient(135deg, #e8f3e8 0%, #d4e8d4 100%);
    margin-top: 60px;
    padding: 50px 0 20px;
    border-top: 3px solid #0fa317;
    box-shadow: 0 -5px 20px rgba(15, 163, 23, 0.08);
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Сетка футера — 4 колонки */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

/* Заголовки колонок */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c5a2c;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0fa317;
    border-radius: 2px;
}

/* Меню футера */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-menu li a {
    font-size: 14px;
    color: #3a3a3a;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: #0fa317;
    transform: translateX(4px);
}

/* Контакты */
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    gap: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: #3a3a3a;
}

.contact-icon {
    font-size: 16px;
    min-width: 24px;
    color: #0fa317;
}

.contact-text {
    color: #3a3a3a;
}

.contact-phones a {
    color: #3a3a3a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-phones a:hover {
    color: #0fa317;
}

.contact-item a {
    color: #3a3a3a;
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: #0fa317;
}

/* QR блок */
.footer-qr {
    text-align: center;
    margin-bottom: 25px;
    background: white;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.footer-qr:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 163, 23, 0.12);
}

.qr-image {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
}

.qr-text {
    font-size: 11px;
    color: #5a5a5a;
    line-height: 1.3;
}

/* Копирайт блок */
.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-copyright p {
    font-size: 12px;
    font-weight: 600;
    color: #2c5a2c;
    margin: 0 0 5px 0;
}

.footer-copyright a {
    font-size: 11px;
    color: #5a5a5a;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-copyright a:hover {
    color: #0fa317;
}

/* Нижняя строка */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(15, 163, 23, 0.2);
}

.footer-bottom p {
    font-size: 11px;
    color: #6a6a6a;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 1000px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 2fr 2fr;
        gap: 10px;
    }
	.contact-item{
		gap:0;
	}
    
    .footer-qr {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        text-align: left;
        padding: 12px 20px;
    }
    
    .qr-image {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
    }
    
    .footer-title::after {
        width: 50px;
    }
	.section{
		padding-top:30px;
        width: auto;
	}
	.banner{
		margin-top:-20px;
	}
	.banner_name{
		font-size:27px;
		margin-bottom:10px;
		
	}
	.banner_name br{
		display:none;
	}
	.banner_text{
		margin-bottom:10px;
		font-size: 17px;
		line-height: 123%;
		
	}
	.banner_green{
		margin-top:10px;		
	}
	.slick_banner_item,
    .banner-item-2026 {
		padding: 20px;
        background-size: cover;
		position: relative;
		overflow: hidden;
	}
	.banner_content ul{
		margin:5px 0;
	}
	.banner_btn{
		flex-wrap:wrap;
		gap:10px;
	}
	.btn{
		width:100%;
	}
	.banner_content{
		position: relative;
	}
	.head_h2{
		flex-wrap:wrap;
	}
	.head_h2 h2 {
		font-size: 20px;
		font-weight: 600;
		line-height: 110%;
		color: #3a3a3a;
		margin: 0;
	}
	.video_section .slick-slide {
		margin: 0 4px;
	}
	.video_item{
		box-shadow: 0 10px 17px -18px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
	}
}

@media (max-width: 400px) {
    .footer-qr {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
	
}

/* Хлебные крошки — современный стиль */
.bl-bread_crumbs {
    background: transparent;
    padding: 10px 0;
    margin-bottom: 0px;
    border-bottom: 1px solid rgba(15, 163, 23, 0.1);
	border-top: 1px solid rgba(15, 163, 23, 0.1);
	margin-top:30px;
}

.cont-bread_crumbs {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 0px;
}

.cont-bread_crumbs p {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
}

/* Ссылки */
.cont-bread_crumbs a {
    color: #5a5a5a;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 13px;
    display: inline-block;
}

.cont-bread_crumbs a:hover {
    color: #0fa317;
    text-decoration: underline;
}

/* Текущая страница (активный элемент) */
.cont-bread_crumbs b span {
    color: #0fa317;
    font-weight: 600;
    font-size: 13px;
}

/* Разделители */
.cont-bread_crumbs span {
    color: #c0c0c0;
    font-size: 12px;
    margin: 0 2px;
}

/* Стиль для b (обертки активного элемента) */
.cont-bread_crumbs b {
    font-weight: normal;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Адаптивность */
@media (max-width: 768px) {
    .bl-bread_crumbs {
        padding: 10px 0;
        margin-bottom: 5px;
		margin-top:0;
    }
    .section_vnutr {
		padding-top: 13px;
	}
    .cont-bread_crumbs p {
        font-size: 11px;
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .cont-bread_crumbs a,
    .cont-bread_crumbs b span {
        font-size: 11px;
    }
    
    .cont-bread_crumbs span {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .bl-bread_crumbs {
        padding: 10px 0;
        margin-bottom: 10px;
    }
    
    .cont-bread_crumbs p {
        gap: 5px;
    }
}
.section_vnutr{
	padding-top:25px;
}
h1 {
    font-size: 28px;
    color: #666666;
    font-weight: normal;
    line-height: 28px;
    padding-bottom: 23px;
}
/* Промо-оффер блок — современный стиль */
.promo-offer {
    background: linear-gradient(135deg, #f0f7f0 0%, #e8f0e8 100%);
    border-radius: 16px;
    padding: 25px;
    margin: 10px 0 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 163, 23, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.promo-offer:hover {
    box-shadow: 0 12px 35px rgba(15, 163, 23, 0.1);
    border-color: rgba(15, 163, 23, 0.25);
}

/* Декоративный элемент */
.promo-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(15, 163, 23, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.promo-offer::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -30px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(15, 163, 23, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Текст внутри промо */
.promo-offer > div {
    position: relative;
    z-index: 2;
}

.promo-offer > div {
    font-size: 20px;
    font-weight: 500;
    color: #2c2c2c;
    line-height: 1.4;
}

/* Список преимуществ */
.list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.list li {
    font-size: 16px;
    color: #3a3a3a;
    padding-left: 28px;
    position: relative;
    line-height: 1.4;
    min-width: 200px;
}

.list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #0fa317;
    font-weight: bold;
    font-size: 18px;
}

/* Ссылки в тексте */
.promo-offer a:not(.button) {
    color: #0fa317;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-bottom: 1px dashed rgba(15, 163, 23, 0.3);
}

.promo-offer a:not(.button):hover {
    color: #0c8a13;
    border-bottom-color: #0fa317;
}

/* Контейнер для кнопок */
.promo-offer br + br {
    display: none;
}

.promo-offer > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Блок с кнопками */
.promo-offer > div > br {
    display: none;
}

/* Группа кнопок */
.promo-offer > div > a.button:first-of-type,
.promo-offer > div > a.button:nth-of-type(2) {
    display: inline-flex;
    width: auto;
    align-self: flex-start;
}

/* Контейнер для ссылок телефона, чата, формы */
.promo-offer > div > a:not(.button) {
    display: inline-block;
    margin: 0 2px;
}

/* Группа кнопок в ряд */
.promo-offer > div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promo-offer > div > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

/* Стилизация текста перед кнопками */
.promo-offer > div > div:first-child {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
}

/* Альтернативная группировка кнопок */
.promo-offer .button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

/* Использование ваших существующих стилей кнопок */
.promo-offer .button {
    padding: 12px 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #0fa317;
    background: #0fa317;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.promo-offer .button:hover {
    background: #0c8a13;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(15, 163, 23, 0.25);
}

.promo-offer .button.bnt_white {
    background: #fff;
    color: #0fa317;
}

.promo-offer .button.bnt_white:hover {
    background: #f0f7f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(15, 163, 23, 0.15);
}

/* Адаптивность */
@media (max-width: 900px) {
    .promo-offer {
        padding: 30px 32px;
    }
    
    .promo-offer > div > div:first-child {
        font-size: 18px;
    }
    
    .list li {
        font-size: 14px;
        flex: 1 1 100%;
    }
    
    .promo-offer .button {
        padding: 10px 24px;
        font-size: 15px;
    }
}

@media (max-width: 600px) {
    .promo-offer {
        padding: 24px 20px;
        border-radius: 24px;
    }
    
    .promo-offer > div > div:first-child {
        font-size: 16px;
    }
    
    .list {
        gap: 12px;
    }
    
    .list li {
        font-size: 13px;
        padding-left: 24px;
    }
    
    .list li::before {
        font-size: 16px;
    }
    
    .promo-offer .button {
        padding: 8px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    
    .promo-offer .button-group {
        flex-direction: column;
    }
    
    .promo-offer > div > a:not(.button) {
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .promo-offer {
        padding: 20px 16px;
    }
    
    .promo-offer > div > div:first-child {
        font-size: 15px;
    }
    
    .promo-offer > div > a:not(.button) {
        white-space: normal;
        display: inline-block;
        margin: 3px 0;
    }
}

/* Блок карточек товаров — современная сетка */
.new-main.new-main-center {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
    margin: 40px 0;
    width: 100%;
}

/* Карточка товара */
.new-main-center .block-4.service-box {
    flex: 1 1 calc(25% - 28px);
    min-width: 220px;
    max-width: 280px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 163, 23, 0.1);
    position: relative;
}

.new-main-center .block-4.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(15, 163, 23, 0.15);
    border-color: rgba(15, 163, 23, 0.3);
}

/* Блок с изображением */
.new-main-center .item-img-new {
    width: 100%;
    overflow: visible;
    position: relative;
    background: #f5f7f5;
}

.new-main-center .item-img-new a {
    display: block;
    width: 100%;
}

.new-main-center .item-img-new img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.new-main-center .block-4.service-box:hover .item-img-new img {
    transform: scale(1.05);
}

/* Заголовок карточки */
.new-main-center .mt-10.title {
    padding: 16px 14px 18px;
    text-align: center;
    background: #ffffff;
}

.new-main-center .mt-10.title a {
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    line-height: 1.35;
    display: inline-block;
    transition: color 0.2s ease;
}

.new-main-center .mt-10.title a:hover {
    color: #0fa317;
}

/* Адаптивность */
@media (max-width: 1100px) {
    .new-main-center .block-4.service-box {
        flex: 1 1 calc(33.33% - 28px);
        min-width: 200px;
    }
}

@media (max-width: 800px) {
    .new-main-center {
        gap: 20px;
    }
    
    .new-main-center .block-4.service-box {
        flex: 1 1 calc(50% - 20px);
        min-width: 170px;
    }
    
    .new-main-center .item-img-new img {
        height: 170px;
    }
    
    .new-main-center .mt-10.title {
        padding: 12px 10px 14px;
    }
    
    .new-main-center .mt-10.title a {
        font-size: 13px;
    }
}

@media (max-width: 550px) {
    .new-main-center {
        gap: 16px;
        margin: 30px 0;
    }
    
    .new-main-center .block-4.service-box {
        flex: 1 1 calc(50% - 16px);
        min-width: 140px;
    }
    
    .new-main-center .item-img-new img {
        height: 140px;
    }
    
    .new-main-center .mt-10.title {
        padding: 10px 8px 12px;
    }
    
    .new-main-center .mt-10.title a {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .new-main-center .block-4.service-box {
        flex: 1 1 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .new-main-center .item-img-new img {
        height: 180px;
    }
}

/* Эффект появления карточек (опционально) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new-main-center .block-4.service-box {
    animation: fadeInUp 0.4s ease forwards;
    opacity: 0;
}

.new-main-center .block-4.service-box:nth-child(1) { animation-delay: 0.05s; }
.new-main-center .block-4.service-box:nth-child(2) { animation-delay: 0.1s; }
.new-main-center .block-4.service-box:nth-child(3) { animation-delay: 0.15s; }
.new-main-center .block-4.service-box:nth-child(4) { animation-delay: 0.2s; }
.new-main-center .block-4.service-box:nth-child(5) { animation-delay: 0.25s; }
.new-main-center .block-4.service-box:nth-child(6) { animation-delay: 0.3s; }

/* Компактный вариант */
.new-main.new-main-center {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 35px 0;
}

.new-main-center .block-4.service-box {
    flex: 1 1 calc(25% - 24px);
    min-width: 210px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #eee;
}

.new-main-center .block-4.service-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.1);
    border-color: #0fa317;
}

.new-main-center .item-img-new img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s;
}

.new-main-center .block-4.service-box:hover .item-img-new img {
    transform: scale(1.03);
}

.new-main-center .mt-10.title {
    padding: 14px 12px;
    text-align: center;
}

.new-main-center .mt-10.title a {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
}

.new-main-center .mt-10.title a:hover {
    color: #0fa317;
}

@media (max-width: 1000px) {
    .new-main-center .block-4.service-box {
        flex: 1 1 calc(33.33% - 24px);
    }
}

@media (max-width: 700px) {
    .new-main-center .block-4.service-box {
        flex: 1 1 calc(50% - 20px);
    }
    .new-main-center .item-img-new img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .new-main-center .block-4.service-box {
        flex: 1 1 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Форма обратной связи — современный стиль */
.feedback.feedback_calc {
    background: linear-gradient(135deg, #f8faf8 0%, #eef3ee 100%);
    border-radius: 20px;
    padding: 20px;
    margin: 0px 0;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 163, 23, 0.12);
    transition: all 0.3s ease;
}

.feedback.feedback_calc:hover {
    box-shadow: 0 12px 35px rgba(15, 163, 23, 0.08);
    border-color: rgba(15, 163, 23, 0.2);
}

.feedback.feedback_calc h2 {
    font-size: 22px;
    font-weight: 600;
    color: #2c5a2c;
    margin: 0 0 10px 0;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.feedback.feedback_calc h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0fa317;
    border-radius: 3px;
}

/* Поля формы */
.nc_item {
    margin-bottom: 10px;
}

.nc_title {
    font-size: 14px;
    font-weight: 500;
    color: #3a3a3a;
    margin-bottom: 4px;
}

.nc_value input,
.nc_value textarea {
    width: 100%;
    padding: 7px 18px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #2c2c2c;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 16px;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.nc_value input:focus,
.nc_value textarea:focus {
    outline: none;
    border-color: #0fa317;
    box-shadow: 0 0 0 3px rgba(15, 163, 23, 0.1);
}

.nc_value textarea {
    resize: vertical;
    min-height: 50px;
}

/* Поле телефона с выбором кода */
.country-code-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.country-code-trigger:hover {
    border-color: #0fa317;
}

.country-flag {
    font-size: 14px;
    font-weight: 500;
}

.country-code {
    font-size: 14px;
    color: #3a3a3a;
}

.country-arrow {
    font-size: 10px;
    color: #999;
}



/* Чекбокс согласия */
.feedback.feedback_calc > form > div > div:last-of-type {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
}

.input-approved {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #0fa317;
}

.policy {
    font-size: 12px;
    color: #6a6a6a;
    margin: 0;
    line-height: 1.4;
}

.policy a {
    color: #0fa317;
    text-decoration: none;
    transition: color 0.2s;
}

.policy a:hover {
    color: #0c8a13;
    text-decoration: underline;
}

/* Кнопка отправки */
.nc_submit {
    text-align: center;
    margin-top: 30px;
}

.nc_submit input[type="submit"] {
    background: #0fa317;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.25s ease;
    width: auto;
    min-width: 200px;
    text-shadow: unset;
}

.nc_submit input[type="submit"]:hover {
    background: #0c8a13;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 163, 23, 0.25);
}

.nc_submit input[type="submit"]:disabled {
    background: #aaa;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Скрытые поля */
.nc_full > div[style="display: none;"] {
    display: none !important;
}

/* Выпадающий список стран */
.country-dropdown-wrap {
    position: relative;
}

.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 250px;
    overflow-y: auto;
    width: 200px;
    display: none;
}

.country-dropdown.active {
    display: block;
}

.country-list {
    padding: 8px 0;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.country-item:hover {
    background: rgba(15, 163, 23, 0.08);
}

.country-item .country-flag {
    font-weight: 600;
    width: 30px;
}

.country-item .country-name {
    flex: 1;
    font-size: 13px;
    color: #3a3a3a;
}

.country-item .country-code {
    font-size: 13px;
    color: #888;
}

/* Адаптивность */
@media (max-width: 768px) {
    .feedback.feedback_calc {
        padding: 28px 24px;
        margin: 30px 0;
        border-radius: 24px;
    }
    
    .feedback.feedback_calc h2 {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .nc_value input,
    .nc_value textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .nc_submit input[type="submit"] {
        padding: 12px 32px;
        font-size: 15px;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .feedback.feedback_calc {
        padding: 20px 16px;
        border-radius: 20px;
    }
    
    .feedback.feedback_calc h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .nc_title {
        font-size: 13px;
    }
    
    .nc_value input,
    .nc_value textarea {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 14px;
    }
    
    .nc_submit input[type="submit"] {
        padding: 10px 28px;
        font-size: 14px;
        min-width: 160px;
        width: 100%;
    }
    
    .feedback.feedback_calc > form > div > div:last-of-type {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .policy {
        font-size: 11px;
    }
}

/* Сообщение об успешной отправке */
.nc_mail_from_site .nc_ok {
    background: #0fa317;
    color: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    font-size: 16px;
}

.nc_mail_from_site .nc_error {
    background: #dc3545;
    color: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    font-size: 14px;
}

.calculation-holder {
    margin-bottom: 20px;
    max-width: 720px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    background: #666;
    -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.24);
    -moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.24);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.24);
    width: -webkit-fill-available;
    height: 100%;
}

.calculation-holder .calculation {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    color: #fff;
    padding: 22px 22px 20px 18px;
    /*background: linear-gradient(to bottom, rgba(255,255,255,0.17) 0%,rgba(0,0,0,0.17) 100%);*/
    background: url(/images/cont-examples_bg.jpg) repeat-x 0 0 #b5c2cb;
}

.calculation .title {
    font-size: 18px;
    line-height: 20px;
    margin: 0 0 15px;
}

.calculation .column {
    float: left;
    width: 220px;
}

.calculation .price-table {
    margin: 0 0 0 249px;
}

.calculation .price-table1 {
    margin: 0 0 0 249px;
}

.calculation .control-group {
    padding: 0 0 12px;
}

.calculation .control-title {
    font-size: 14px;
    line-height: 17px;
    padding: 0 0 11px;
}

.calculation select {
    background: #fff;
    border: 1px solid #e5e5e5;
    height: 30px;
    padding: 5px 5px;
    -webkit-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    width: 100%;
}

.vnim {
    color: #ffa500;
}

.spin {
    color: #ff8c00;
}

.spin-img {
    color: rgb(255, 140, 0);
    width: 187px;
    height: 140px;
}

.img-igr {
    width: 152px;
}

.price-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.price-table1 table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.price-table table th {
    text-align: left;
    color: #eaeaea;
    font: 12px/14px Arial, Helvetica, sans-serif;
    padding: 1px 2px 3px;
    width: 33.333%;
}

.price-table1 table td {
    font-weight: bold;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 5px 3px;
    border-top: 1px solid #fff;
}

.price-table1 table th {
    text-align: left;
    color: #eaeaea;
    font: 12px/14px Arial, Helvetica, sans-serif;
    padding: 1px 2px 3px;
    width: 33.333%;
}

.price-table table td {
    font-weight: bold;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 5px 3px;
    border-top: 1px solid #fff;
}

.table-description {
    color: #fff;
    font-size: 12px;
    line-height: 15px;
    padding-top: 16px;
    float: right;
    width: 63%;
}

.first-t {
    margin-left: 0px!important;
}

.inner-txt_content h1 {
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
    color: #666666;
    font-weight: normal;
    line-height: 28px;
    padding-bottom: 23px;
}

.cf {
    zoom: 1;
}

.dropdown1 {
    display: none!important;
}
.calculation__feedback{
	display:flex;
	gap:20px;
}
.nc_value{
	display:flex;
	gap:10px;
}

/* Таблица с условиями — современный стиль */
.prod_circulation {
    width: 100%;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-collapse: collapse;
}

.prod_circulation td {
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #3a3a3a;
    vertical-align: top;
}

.prod_circulation td:first-child {
    font-weight: 500;
    background-color: #fafbfa;
    width: 35%;
}

.prod_circulation td:last-child {
    color: #2c5a2c;
    font-weight: 500;
}

.table_row1 td {
    background: linear-gradient(135deg, #e8f3e8 0%, #d4e8d4 100%);
    font-weight: 600;
    font-size: 16px;
    color: #2c5a2c;
    border-bottom: 1px solid rgba(15, 163, 23, 0.2);
}

.table_row1 td:first-child,
.table_row1 td:last-child {
    background: linear-gradient(135deg, #e8f3e8 0%, #d4e8d4 100%);
}

/* Стили для заголовков h2 */
h2 {
    font-size: 26px;
    font-weight: 600;
    color: #2c5a2c;
    margin: 40px 0 20px 0;
    position: relative;
    padding-bottom: 12px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #0fa317;
    border-radius: 3px;
}

/* Стили для параграфов */
p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 20px;
}

/* Стили для обычных списков */
.section_all ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.section_all ul li {
    margin: 0;
    padding: 0;
}

.section_all ul li a {
    display: inline-block;
    padding: 8px 20px;
    background: #f0f2f0;
    border-radius: 40px;
    font-size: 14px;
    color: #3a3a3a;
    text-decoration: none;
    transition: all 0.25s ease;
}

.section_all ul li a:hover {
    background: #0fa317;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(15, 163, 23, 0.2);
}

/* Блок с цветными квадратами */
.flex_vizitka {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    margin: 30px 0;
}

.kvadrat_cvet {
    text-align: center;
    width: 100px;
    transition: transform 0.2s ease;
}

.kvadrat_cvet:hover {
    transform: translateY(-4px);
}

.kvadrat_cvet a {
    text-decoration: none;
    display: block;
}

.bg_cvet {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin: 0 auto 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.kvadrat_cvet:hover .bg_cvet {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transform: scale(1.02);
}

.kvadrat_cvet span {
    font-size: 12px;
    color: #4a4a4a;
    transition: color 0.2s ease;
}

.kvadrat_cvet:hover span {
    color: #0fa317;
}

/* Цвета квадратов */
.bg_cvet.yellow { background: #FFD700; }
.bg_cvet.serebro { background: linear-gradient(135deg, #E0E0E0, #C0C0C0); }
.bg_cvet.orange { background: #FF8C00; }
.bg_cvet.pink { background: #FF69B4; }
.bg_cvet.brown { background: #8B4513; }
.bg_cvet.green { background: #32CD32; }
.bg_cvet.blue { background: #4169E1; }
.bg_cvet.red { background: #FF4444; }
.bg_cvet.black { background: #222222; }
.bg_cvet.white { background: #F5F5F5; border: 1px solid #ddd; }

/* Адаптивность */
@media (max-width: 900px) {
    .prod_circulation td {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .prod_circulation td:first-child {
        width: 40%;
    }
    
    h2 {
        font-size: 22px;
        margin: 30px 0 15px 0;
    }
    
    p {
        font-size: 14px;
        line-height: 1.5;
    }
    
   .section_all  ul li a {
        padding: 6px 16px;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .prod_circulation {
        border-radius: 20px;
    }
    
    .prod_circulation td {
        padding: 10px 12px;
        font-size: 12px;
        display: block;
        width: 100%;
    }
    
    .prod_circulation td:first-child {
        width: 100%;
        font-weight: 600;
        background: #f0f2f0;
    }
    
    .prod_circulation tr {
        display: block;
        border-bottom: 1px solid #eee;
    }
    
    .table_row1 td {
        display: block;
        text-align: center;
    }
    
    h2 {
        font-size: 20px;
    }
    
    h2::after {
        width: 50px;
    }
    
    p {
        font-size: 13px;
    }
    
    .flex_vizitka {
        gap: 15px;
        justify-content: center;
    }
    
    .kvadrat_cvet {
        width: 80px;
    }
    
    .bg_cvet {
        width: 65px;
        height: 65px;
        border-radius: 16px;
    }
    
    .kvadrat_cvet span {
        font-size: 11px;
    }
    
    .section_all  ul {
        gap: 8px;
    }
    
    .section_all  ul li a {
        padding: 5px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .flex_vizitka {
        gap: 12px;
    }
    
    .kvadrat_cvet {
        width: 70px;
    }
    
    .bg_cvet {
        width: 55px;
        height: 55px;
        border-radius: 14px;
    }
}

/* Ссылки в тексте */
p a {
    color: #0fa317;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

p a:hover {
    color: #0c8a13;
    text-decoration: underline;
}


/* Блок форма + карта */
.feedback__map {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px 0;
    background: transparent;
}

/* Левая часть — форма обратной связи */
.feedback__map .feedback {
    flex: 1.2;
    min-width: 320px;
    background: linear-gradient(135deg, #f8faf8 0%, #eef3ee 100%);
    border-radius: 32px;
    padding: 36px 40px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 163, 23, 0.12);
    transition: all 0.3s ease;
}

.feedback__map .feedback:hover {
    box-shadow: 0 12px 35px rgba(15, 163, 23, 0.08);
    border-color: rgba(15, 163, 23, 0.2);
}

/* Заголовок формы */
.feedback__map .feedback h3 {
    font-size: 26px;
    font-weight: 600;
    color: #2c5a2c;
    margin: 0 0 28px 0;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.feedback__map .feedback h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #0fa317;
    border-radius: 3px;
}

/* Поля формы */
.feedback__map .nc_item {
    margin-bottom: 22px;
}

.feedback__map .nc_title {
    font-size: 14px;
    font-weight: 500;
    color: #3a3a3a;
    margin-bottom: 8px;
}

.feedback__map .nc_value input,
.feedback__map .nc_value textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #2c2c2c;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.feedback__map .nc_value input:focus,
.feedback__map .nc_value textarea:focus {
    outline: none;
    border-color: #0fa317;
    box-shadow: 0 0 0 3px rgba(15, 163, 23, 0.1);
}

.feedback__map .nc_value textarea {
    resize: vertical;
    min-height: 100px;
}

/* Поле файл */
.feedback__map .nc_value input[type="file"] {
    padding: 10px 14px;
    background: #ffffff;
}

.feedback__map .nc_value input[type="file"]::file-selector-button {
    background: #0fa317;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
    margin-right: 12px;
}

.feedback__map .nc_value input[type="file"]::file-selector-button:hover {
    background: #0c8a13;
}

/* Поле телефона */
.country-code-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.country-code-trigger:hover {
    border-color: #0fa317;
}

.country-flag {
    font-size: 14px;
    font-weight: 500;
}

.country-code {
    font-size: 14px;
    color: #3a3a3a;
}

.country-arrow {
    font-size: 10px;
    color: #999;
}



/* Описание полей */
.nc_description {
    font-size: 12px;
    color: #888;
    margin: -10px 0 15px 0;
    text-align: right;
}

/* Чекбокс согласия */
.feedback__map .feedback > form > div > div:last-of-type {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 20px 0;
}

.input-approved {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #0fa317;
}

.policy {
    font-size: 12px;
    color: #6a6a6a;
    margin: 0;
    line-height: 1.4;
}

.policy a {
    color: #0fa317;
    text-decoration: none;
    transition: color 0.2s;
}

.policy a:hover {
    color: #0c8a13;
    text-decoration: underline;
}

/* Кнопка отправки */
.feedback__map .nc_submit {
    text-align: center;
    margin-top: 25px;
}

.feedback__map .nc_submit input[type="submit"] {
    background: #0fa317;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.25s ease;
    width: auto;
    min-width: 200px;
}

.feedback__map .nc_submit input[type="submit"]:hover {
    background: #0c8a13;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 163, 23, 0.25);
}

.feedback__map .nc_submit input[type="submit"]:disabled {
    background: #aaa;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Правая часть — карта */
.map-right {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 163, 23, 0.12);
    transition: all 0.3s ease;
    position: relative;
}

.map-right:hover {
    box-shadow: 0 12px 35px rgba(15, 163, 23, 0.08);
    border-color: rgba(15, 163, 23, 0.2);
}

.map-right iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    border: none;
}

/* Адаптивность */
@media (max-width: 1000px) {
    .feedback__map {
        flex-direction: column;
        gap: 30px;
    }
    
    .feedback__map .feedback {
        padding: 28px 30px;
    }
    
    .map-right iframe {
        min-height: 380px;
    }
}

@media (max-width: 768px) {
    .feedback__map {
        margin: 35px 0;
        gap: 24px;
    }
    
    .feedback__map .feedback {
        padding: 24px 24px;
        border-radius: 28px;
    }
    
    .feedback__map .feedback h3 {
        font-size: 22px;
        margin-bottom: 22px;
    }
    
    .feedback__map .nc_value input,
    .feedback__map .nc_value textarea {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 14px;
    }
    
    .feedback__map .nc_submit input[type="submit"] {
        padding: 12px 32px;
        font-size: 15px;
        min-width: 180px;
    }
    
    .map-right {
        border-radius: 28px;
    }
    
    .map-right iframe {
        min-height: 320px;
    }
	.calculation__feedback{
		flex-wrap:wrap;
	}
	    .calculation__feedback {
        min-height: auto;
        flex-wrap: wrap;
		gap:10px;
    }
	    .total-calc {
        display: flex;
        flex-wrap: wrap;
    }
	    .calculation .column {
        float: left;
        width: 100%;
    }
	    .price-table {
        width: 100%;
        margin: 0 !important;
        padding-top: 10px;
    }
	.feedback.feedback_calc{
		margin-top:0;
	}
	.section_all{
		padding-top:0;
	}
}

@media (max-width: 480px) {
    .feedback__map {
        margin: 25px 0;
        gap: 20px;
    }
    
    .feedback__map .feedback {
        padding: 20px 16px;
        border-radius: 24px;
    }
    
    .feedback__map .feedback h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .feedback__map .nc_title {
        font-size: 13px;
    }
    
    .feedback__map .nc_value input,
    .feedback__map .nc_value textarea {
        padding: 10px 14px;
        font-size: 13px;
        border-radius: 12px;
    }
    
    .feedback__map .nc_submit input[type="submit"] {
        padding: 10px 28px;
        font-size: 14px;
        min-width: 160px;
        width: 100%;
    }
    
    .feedback__map .feedback > form > div > div:last-of-type {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .policy {
        font-size: 11px;
    }
    
    .map-right iframe {
        min-height: 280px;
    }
    
    .nc_description {
        font-size: 11px;
        margin: -5px 0 12px 0;
    }
}

/* Сообщение об успешной отправке */
.nc_mail_from_site .nc_ok {
    background: #0fa317;
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    font-size: 16px;
}

.nc_mail_from_site .nc_error {
    background: #dc3545;
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    font-size: 14px;
}

/* Скрытые поля */
.nc_full > div[style="display: none;"] {
    display: none !important;
}
@media (max-width: 768px) {
    .new-menuitem {
        display: none; /* скрываем блоки по умолчанию на мобильных */
    }
    
    /* Опционально: анимация появления */
    .new-menuitem {
        transition: all 0.3s ease;
    }
	.promo-offer{
		margin-top:5px;
	}
	h1{
		padding-bottom:15px;
	}
	.section_vnutr h1{
		margin-top:-10px;
	}
}
@media (max-width: 480px) {
    .feedback__map .feedback {
        padding: 20px 16px;
        border-radius: 24px;
        flex: none;
        min-width: 1px;
    }
	@media (max-width: 480px) {
    .feedback__map .feedback {
        padding: 20px 16px;
        border-radius: 24px;
        flex: none;
        min-width: 1px;
    }
	.promo-offer .button{
		width:auto;
	}
}
/* На десктопе блоки видны всегда (или как вам нужно) */
@media (min-width: 769px) {
    .new-menuitem {
        display: block; /* или то, что вам нужно по дизайну */
    }
	
}
/* Стили стрелок */
.slick-prev,
.slick-next {
    width: 36px !important;
    height: 36px !important;
    background: white !important;
    border-radius: 50% !important;
    z-index: 20 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
	display:flex;
	justify-content: center;
	align-items: center;
}

.slick-prev:before,
.slick-next:before {
    font-size: 20px !important;
    color: black !important;
    opacity: 1 !important;
	content:"";
	display:block;
	width:20px;
	height:20px;
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.334 4.667 6 8l3.334 3.333' stroke='%230fa317' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.slick-next:before{
	background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.666 4.667 10 8l-3.334 3.333' stroke='%230fa317' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.slick-prev {
    left: 0 !important;
}

.slick-next {
    right: 0 !important;
}

@media (max-width: 768px) {
    .slick-prev,
    .slick-next {
        width: 30px !important;
        height: 30px !important;
    }
    .slick-prev:before,
    .slick-next:before {
        font-size: 18px !important;
    }
    .slick-prev {
        left: -5px !important;
    }
    .slick-next {
        right: -5px !important;
    }

}
/* ========== ИСПРАВЛЕНИЕ ДЛЯ ПОСЛЕДНЕГО СЛАЙДА ========== */
@media (max-width: 767.98px) {
    .video_section.slick-initialized {
        overflow: visible !important;
    }
    
    .video_section .slick-list {
        margin: 0 -5px !important;  /* Компенсируем отступы слайдов */
    }
    
    .video_section .slick-track {
        display: flex !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    .video_section .slick-slide {
        height: auto !important;
        margin: 0 5px !important;
        float: left !important;
    }
    
    /* Гарантия, что все слайды видны */
    .video_section .slick-list {
        padding: 0 !important;
    }
    
    /* Принудительная ширина для контейнера слайдера */
    .video_section.slick-initialized {
        width: 100% !important;
        max-width: 100% !important;
  }
}

/* Для очень маленьких экранов */
@media (max-width: 576px) {
    .video_section .slick-slide {
        margin: 0 3px !important;
    }
    
    .video_section .slick-list {
        margin: 0 -3px !important;
    }
}

.video_fancybox {
    padding: 0 !important;
    width: auto;
    height: auto;
    overflow: visible;
    line-height: 0;
    background: transparent !important;
}

.video_fancybox video {
    display: block;
    width: auto;
    height: auto;
    max-width: 90vw;
    max-height: 80vh;
}

.popup-window {
    border: 1px solid #0fa317;
}
