/*
Theme Name: Igor
Description: Простая и легкая тема WordPress
Version: 1.0
Author: Igor Kamenev
*/

@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap');
 /* новости Архивы */
#news-container, #projects-container, #services-container {
	display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    align-items: center;
}

.news_right {
    padding: 0px 58px;
    margin-left: 30px;
    background: #fff;
}

.main_articles_holder
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

.article-main-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
}

.new-card, .services-card {
    position: relative;
    width: 100%;
    border-radius: 8px; /* скругление углов */
    overflow: hidden; /* обрезаем содержимое по границам карточки */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* легкая тень */
    transition: transform 0.3s ease; /* анимация при наведении */
    height: 306px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
}

.new-main-card {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tags-wrapper {
        display: flex;
        position: absolute;
        right: 25px;
        top: 25px;
}

.tags-wrapper .tag {
    background: #ffffff12;
    backdrop-filter: blur(2px);
    border: 1px #9f9f9f4f solid;
    border-radius: 50px;
    padding: 4px 10px;
    font-size: 10px;
    text-transform: uppercase;
}

.tags-wrapper-simple {
    margin-bottom: 5px;
}

.tags-wrapper .tag {
    margin-left: 8px;
    margin-bottom: 8px;
}

.news-card-right_date {
    font-size: 12px;
    font-weight: 100;
    color: #9299ad;
    margin: 10px 0px 7px;
}

.tags-wrapper-simple .tag-simple {
    text-transform: uppercase;
    font-size: 13px;
}

.tags-wrapper-simple .tag-simple {
    margin-left: 8px;
    margin-bottom: 8px;
}

.news-card-right {
    border-bottom: 1px #f0f0f0 solid;
    position: relative;
    margin: 32px 0px;
}

.news-card-right_arrow {
    position: absolute;
    right: -40px;
    top: -1px;
    transform: rotate(-45deg);
    opacity: .1;
}

.news-card-right h3 {
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
}

.work_steps {
    position: relative;
}

.work_steps::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://zmpn.ru/wp-content/uploads/2025/08/silos.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain; /* или cover */
    opacity: 0.3; /* полупрозрачность */
    pointer-events: none; /* чтобы не мешал кликам */
    z-index: -1; /* за контентом */
}

.category-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: 1px solid #ffffff14;
    background: #fff;
    background: #ffffff12;
    backdrop-filter: blur(2px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.5s ease;
}

.category-arrow svg {
    width: 24px;
    height: 24px;
    transition: all 0.5s ease;
    color: #fff;
}

.new-card:hover .category-arrow {
    transform: scale(1.2);
    border: 1px solid #ffffff14;
}

.new-card:hover .category-arrow svg {
    color: white;
    transform: scale(1.2);
    transform: rotate(-45deg);
}

.new-card:hover, .project-card:hover, .services-card:hover {
    transform: translateY(-3px); /* эффект поднятия при наведении */
}

.card-with-overlay {
    display: block;
    text-decoration: none;
    color: white;
}

.image-container {
    position: relative;
    height: 350px;
	border-radius: 40px;
}

.image-container img {
	width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover; /* заполнение области с сохранением пропорций */
}

.text-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); /* градиент для читаемости текста */
}

.text-overlay h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 500;
}

.news_date {
    font-size: 12px;
    opacity: 0.6;
}

.text-overlay p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

/* Блок FAQ */
.faq-section {
    margin-bottom: 80px;
}

.faq-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid #efefef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ccc;
}

.faq-question {
    padding: 20px 60px 20px 24px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #666;
}

.faq-item.active .faq-icon {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer > div {
    padding: 0 24px 20px;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Кукисы окно */
#cookie_note {
    display: none;
    position: fixed;
    bottom: 50px;
    right: 100px;
    max-width: 90%;
       padding: 15px 25px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 .5rem 1.5rem 0 rgba(0, 0, 0, .059);
	    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}

    #cookie_note.showed{
        display: flex;
			align-items: center;
    }

#cookie_note p
{
	margin-bottom: 15px;
    margin-right: 10px;
}

#cookie_note a
{
	margin-right: 15px;	
}

.cookie_accept.regular_button {
    margin-top: 0px;
    background-color: #455869;
    border-radius: 12px;
    padding: 12px 35px 12px 35px;
    color: #fff;
    border: none;
}

.cookie_accept.regular_button:hover {
	background-color: #fff;
	color: #455869;
	border: 1px solid #455869; 
}

/* Страница Сингл */
.container-single {
    width: 100%;
    max-width: 1400px;
    padding: 0 4rem;
    margin: 0 auto;
    margin-bottom: 60px;
}

/* Новости Сингл */
.single-new {
    max-width: 900px;
    margin: 0 auto;
}

.breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.category_hero .breadcrumbs, .category_hero .breadcrumbs a {
    color: #fff;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.new-anons {
    font-size: 14px;
    font-weight: 100;
    color: #919191;
    font-style: italic;
    border-left: 2px #ccc solid;
    padding-left: 25px;
    margin-bottom: 40px;
}

.new-content {
    margin-bottom: 100px;
}

.new-holder {
    margin-top: 60px;
}

.new-img h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #222;
    font-weight: bold;
}

.new-svg img {
    width: 100%;
    border-radius: 12px; /* скругление углов */
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.new-description {
    margin-top: 20px;
}

.new-description em {
    font-style: italic;
    color: #555;
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
}

.new-description p {
    margin-bottom: 15px;
}

/* Стиль для даты и категории как на скриншоте */
.news-meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Статьи Архивы */
#articles-container {
	display: block;
}
.articles-list {
	padding: 40px;
}
.article-card {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee; /* горизонтальная линия */
    padding: 20px 0;
    text-decoration: none;
    color: inherit;
}
.article-image {
    height: 250px;
}

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

.article-content {
    flex: 1;
    overflow: hidden;
    padding-left: 43px;
    padding-right: 90px;
}

.service_date {
    opacity: 0.25;
    margin-bottom: 10px;
    margin-top: 10px;
    font-size: 14px;
}

.tags-wrapper {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.article-content h3 {
    margin: 0;
    font-size: 18px;
    margin-bottom: 10px;
}

.article-content p {
    margin: 5px 0 0;
    font-size: 16px;
    color: #666;
}

.article-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    width: 100%;
}


/* Хлебные крошки */
.breadcrumbs {
    margin-bottom: 30px;
    font-size: 14px;
    color: #666;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #000;
    text-decoration: underline;
}

/* Блок с изображением и заголовком */
.project-img {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.project-img h1 {
    font-size: 28px;
    margin: 0 0 15px 0;
    color: #222;
    flex: 1;
}

.project-svg {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.project-svg img {
    width: 100%;
    height: auto;
    display: block;
}

.project-svg em {
    display: block;
    margin-top: 15px;
    font-style: italic;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

/* Блок с описанием */
.project-description {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
	text-align: justify;
}

.project-description p {
    margin-bottom: 15px;
}

/*  */
.new-description {
    /* Наследует базовые стили редактора */
    font-family: inherit;
    line-height: 1.6;
}

.new-description p {
    margin: 0 0 1em;
}

.new-description strong, 
.new-description b {
    font-weight: bold;
}

.new-description em, 
.new-description i {
    font-style: italic;
}

.new-description ul, 
.new-description ol {
    margin: 0 0 1em 1.5em;
    padding: 0;
    list-style-position: outside;
}

.new-description a {
    color: #0066cc;
    text-decoration: underline;
}
/*  */

.prod_volume_holder {
    display: flex;
    flex-wrap: wrap;
}

/* Ленивая загрузка */
.loading-spinner {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

html, body
{
    font-family: "Geologica", sans-serif;
    font-weight: 200;
    color: #000;
    height: 100%;
    width: 100%;
    margin: 0px;
}

a
{
    text-decoration: none;
    cursor: pointer;
    color: #000;
}

.container {
    width: 100%;
    max-width: 1400px;
    padding: 0 4rem;
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.header-logo a {
    display: block;
}

.header-logo img {
    max-height: 60px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.header-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.header.transparent .header-menu a {
    color: #fff;
}

.header-menu a:hover {
    color: #007cba;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.header.transparent .header-phone {
    color: #fff;
}

.search-btn, .calc-btn {
    padding: 10px 20px;
    border: 2px solid #007cba;
    background: transparent;
    color: #007cba;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
}

.calc-btn {
    background: #007cba;
    color: #fff;
}

.search-btn:hover, .calc-btn:hover {
    background: #005a87;
    color: #fff;
    border-color: #005a87;
}

.footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    margin-top: 50px;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

.main-navigation .main-menu
{
        -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.main-menu .menu-item
{
    list-style: none;
    margin-right: 16px;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
}

#header-search
{
    display: none;
}

#site-header.transparent
{
    background: transparent;
}

#site-header
{
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
}

.gost-item {
        display: flex;
        align-items: center;
        padding: 20px;
        background-color: #F3F5F8;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        margin-bottom: 15px;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gost-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.download svg {
    height: 11px;
    margin-right: 3px;
}

.category_hero .download svg, #main_slider .download svg {
    fill: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.project-card {
    background: #F3F5F8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-categories {
    width: 100%;
}

.footer-category-grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.project-info {
    padding: 0 30px 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 32px;
}

.project-info .label {
    font-size: 14px;
    font-weight: 100;
    color: #9299ad;
}

.project-place, .project-volume {
    font-size: 14px;
    font-weight: 200;
}

.project-name {
    font-weight: 400;
    margin-top: 0px;
    margin-bottom: 0px;
    min-height: 46px;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.wrapper-loader {
    margin: 30px 0px;
    text-align: center;
}

.underline_dashed {
    font-size: 14px;
    font-weight: 100;
    color: #9299ad;
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.underline_dashed::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #9299ad61;
    transition: background-color 0.2s ease;
}

.document-icon {
    margin-right: 20px;
    font-size: 36px;
    width: 50px;
    text-align: center;
}

.document-info h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.document-info p
{
    font-size: 14px;
    font-weight: 100;
    color: #9299ad;
    margin: 10px 0px;
}

.document-meta {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.document-size {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid #e0e0e0;
}

.document-download {
    color: #9299ad;
    text-decoration: none;
    font-weight: 100;
    position: relative;
    transition: color 0.2s ease;
}

.document-download:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #9299ad61;
    transition: background-color 0.2s ease;
}

.document-download:first-child {
    margin-right: 10px;
}


.site-header.transparent .pbutton 
{
    color: #fff;
}

#order-calc-background
{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(255 255 255);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 10;
}

#order-calc-background.active
{
    visibility: visible;
    opacity: 1;
}

#order-calc-window {
    display: flex;
    align-items: center;
    height: 100%;
}

#order-calc-window .container {
    position: relative;
}

#close-calc-window {
    display: flex;
    position: absolute;
    right: 64px;
    top: 23px;
    border: 1px #d2d2d2 solid;
    border-radius: 50px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
}

.site-logo {
    display: flex;
    align-items: center;
    font-size: 11px;
    font-weight: 300;
    max-width: 250px;
}

.site-logo a {
    display: block;
    width: 58px;
    height: 40px;
    margin-right: 10px;
}

#map_on_contact {
    height: 720px;
    width: 100vw;
    margin-top: 50px;
}

#map_contact_holder {
    max-width: 430px;
    margin-top: -520px;
    margin-bottom: 200px;
    backdrop-filter: blur(8px);
    background: #162029;
    border-radius: 10px;
    padding: 40px;
    border: 1px #ffffff12 solid;
    color: #Fff;
    margin-left: calc(50vw - 700px);
}

.map_big_phone {
    color: #fff;
    font-size: 30px;
    display: block;
    margin: 30px 0px;
}

.ymaps3x0--main-engine-container {
    -ms-filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .5;
}

.map_addr_popup {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    font-size: 14px;
    font-weight: 100;
    text-align: center;
    display: none;
    min-width: 246px;
    z-index: 1000 !important;
    cursor: default;
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
}

.close_map_block {
    position: absolute;
    top: 0px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}

.map_addr_popup .map_buttons {
    padding-top: 25px;
    padding-bottom: 10px;
}

.map_button {
    background: #455869;
    color: #fff;
    border-radius: 50px;
    display: inline-block;
    width: 180px;
    padding: 5px;
    margin-bottom: 10px;
}

.contact_header {
    text-transform: uppercase;
    font-weight: 500;
    border-left: 2px #455869 solid;
    padding-left: 15px;
    line-height: 1;
    margin-bottom: 23px;
}

.contact_item svg {
    height: 14px;
    margin-right: 9px;
    fill: #919191;
}

.mt60 {
    margin-top: 60px;
}

.contact_button {
    margin-top: 20px;
    display: inline-block;
}

.contact_button svg {
    fill: #fff;
}

.contact_item {
    font-size: 14px;
    font-weight: 100;
    margin-bottom: 10px;
}

.contact_item span {
    color: #919191;
}

.socials {
    display: flex;
    margin-top: 20px;
}
.socials .social {
    color: #ffffff63;
    border-radius: 50%;
    margin-right: 5px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px #ffffff24 solid;
}

.map_marker {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 100;
    cursor: pointer;
    left: -25px;
    top: -25px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    padding: 10px;
}

.map_marker img {
    border-radius: 10px;
    position: relative;
    z-index: 101;
    max-width: 43px;
    margin-left: 5px;
}

.map_contacts h3 {
    font-size: 32px;
    font-weight: 100;
    margin-top: 0px;
}

.map_mail {
    color: #fff;
    font-size: 16px;
    display: block;
    text-decoration: underline !important;
}

#main_slider .outline, .category_hero .outline {
    background: #ffffff12;
    position: relative;
}

.slide-counter {
    position: absolute;
    bottom: calc(30vh - 60px);
    right: calc(50vw - 700px);
    color: #fff;
    opacity: .3;
    display: flex;
    align-items: center;  
}

#total {
    font-size: 25px;  
}

#current {
    font-size: 45px;
}

#divider {
    padding: 0px 14px;
}

.splide__arrows.splide__arrows--ttb {
    position: absolute;
    bottom: 30vh;
    left: calc(50vw - 700px);
}

.splide__arrow {
    width: 60px !important;
    height: 60px !important;
    background: #ffffff12 !important;
    backdrop-filter: blur(2px);
    border: 1px #ffffff4f solid !important;
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
}

.splide__arrow--prev svg {
    transform: rotate(-180deg) !important;
}

.splide__arrow--next svg {
    transform: rotate(-0deg) !important;
}

.splide__arrow svg {
    fill: #fff !important;
}

.splide__arrow--prev {
    border-radius: 30px 0px 0px 30px !important;
    top: 0em !important;
    left: 0em !important;
    transform: unset !important;
    border-right: none !important;
}

.splide__arrow--next {
    border-radius: 0px 30px 30px 0px !important;
    bottom: -60px !important;
    left: 90px !important;
    top: auto !important;
    border-left: none !important;
}

#main_slider .outline::before, .category_hero .outline::before{
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    backdrop-filter: blur(2px);
    z-index: -1;
}

.site-header.transparent .pbutton {
    background: #ffffff12;
    backdrop-filter: blur(2px);
}

.site-header.transparent .site-logo img {
    opacity: 0;
}

.site-header.transparent .site-logo {
    color: #fff;
}

.site-header.transparent .site-logo a {
    background-image: url('https://zmpn.ru/wp-content/uploads/2025/08/logo_main_white.png');
    background-size: cover;
    background-position: center;
}

.site-header.transparent .main-menu .menu-item a, .site-header.transparent .header-phone a, .site-header.transparent .header_desc_city 
{
    color: #fff;
}

.site-header.transparent .search-toggle svg, .site-header.transparent .header_desc_city svg
{
    fill: #fff;
}

.header_desc_city {
    font-size: 14px;
    font-weight: 100;
    cursor: pointer;
}

.header_desc_city svg {
    margin-bottom: -4px;
}

.header_desc_city span {
    border-bottom: 1px dashed;
}

.site-header.transparent .header_desc_city span {
    border-color: #ffffff6e;
}

.search-toggle
{height: 20px;}

.button
{
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 50px;
    cursor: pointer;
}

.shadow {
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
}

.light-shadow {
    -webkit-box-shadow: 0px 0px 8px 0px rgba(126, 126, 126, 0.09);
    -moz-box-shadow: 0px 0px 8px 0px rgba(126, 126, 126, 0.09);
    box-shadow: 0px 0px 8px 0px rgba(126, 126, 126, 0.09);
}

.big_slide_buttons .button:first-of-type
{
    margin-right: 16px;
}

.outline
{
    border: 1px #ffffff4f solid;
    color: #fff;
    padding: 12px 20px;
}

.reg
{
    background: #455869;
    color: #fff;
    padding: 12px 20px;
    display: inline-block;
}

/* слайдер на главной */
.big_slide
{
	width: 100vw;
	height: 100vh;
	background-size: cover;
	background-position:center;
	display: flex;
  align-items: center;
}

.big_slide_name
{
	color: #fff;
	font-size: 44px;
	line-height: 1.2;
	margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 500;
}

.slider_content
{
	z-index: 1;
    margin-top: -30vh;
}

.big_slide:before {
    content: "";
	width: 100vw;
	height: 100vh;
    background: #000;
    opacity: 0.6;
    position: absolute;
    z-index: 0;
}

.big_slide_desc
{
	color: #fff;
	font-size: 15px;
	margin-bottom: 30px;
	width: 90%
}

.splide__pagination {
    position: absolute;
    right: calc(50vw - 700px) !important;
    margin-top: -30vh !important;
}

/* Анимация текста */
.big_slide_name {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.big_slide_name.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Анимация увеличения фона */
.big_slide {
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease;
}

.big_slide.active {
    animation: zoomBackground 20s ease-in-out infinite alternate;
}

@keyframes zoomBackground {
    0% { background-size: 100% auto; }
    100% { background-size: 120% auto; }
}

/* Дополнительные анимации для описания и кнопок */
.big_slide_desc, .big_slide_buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.big_slide_desc.animate { 
    opacity: 1; 
    transform: translateY(0);
    transition-delay: 0.2s;
}

.big_slide_buttons.animate { 
    opacity: 1; 
    transform: translateY(0);
    transition-delay: 0.4s;
}

.splide__pagination__page.is-active::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    inset:-2px;
    border-radius: 50%;
    border:2px solid #fff;
    animation: prixClipFix 8s infinite linear;
  }

  @keyframes prixClipFix {
      0%   {clip-path:polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)}
      25%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)}
      50%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)}
      75%  {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 100%)}
      100% {clip-path:polygon(50% 50%,0 0,100% 0,100% 100%,0 100%,0 0)}
  }

.splide__pagination__page
{
    background: #ffffff1c !important;
	width: 10px !important;
	height: 10px !important;
	margin: 10px !important;
}

.site-footer
{
    background: #162029;
    color: #fff;
    position: relative;
    border-radius: 30px 30px 0px 0px;
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://zmpn.ru/wp-content/uploads/2025/07/rez.jpg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
    border-radius: 30px 30px 0px 0px;
}

.footer-content
{
    display: flex;
    justify-content: space-between;
    padding: 30px 0px;
    border-bottom: 1px #767b7f24 solid;
}

.footer-links {
    display: contents;
}

.footer-bottom
{
    display: flex;
    justify-content: space-between;
    color: #767b7f;
    font-size: 13px;
    padding: 15px 0px;
}

.footer-links a
{
  color: #767b7f;
  border-bottom: 1px #767b7f3b solid;
}

.footer-links a:hover
{
  color: #fff;  
}

.footer-copyright p
{
    margin: 0px;
}

.footer-column:last-of-type
{
    max-width: 300px;
}

.footer-column h4
{
    text-transform: uppercase;
    font-weight: 500;
    border-left: 2px #fff solid;
    padding-left: 15px;
    line-height: 1;
}

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

.footer-content ul li a
{
    color: #767b7f;
    font-size: 13px;
    border-bottom: 1px #767b7f3b solid;
    text-transform: none;    
}

.footer-content ul li:hover a {
    color: #fff;
}

.single_contact {
    color: #fff;
    font-size: 13px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
}

.single_contact svg {
    height: 14px;
    margin-right: 9px;
    fill: #767b7f;
}

.rekviz_holder {
    max-width: 300px;
}

.footer-column .main-menu li {
    margin-bottom: 14px;
}

.single_rekviz {
    font-size: 13px;
    margin-bottom: 14px;
}

.rekviz_type {
    color: #767b7f;
}

.steps-grid, .adv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.advantages {
    background: #162029;
    padding: 60px 0px;
}

.advantages .section_header {
    color: #fff;
}

.advantages .section_header:before {
    background: #293744;
}

.advantages .section_header:after {
    background: #293744;    
}

.adv-block {
    border: 1px #293744 solid;
    padding: 20px 40px;
    border-radius: 30px;
}

.adv-block p {
    font-size: 14px;
    font-weight: 100;
    color: #58636e;
    margin: 10px 0px;
}

.adv-block h4 {
    color: #fff;
    font-weight: 300;
    margin: 10px 0px;
}

.adv-image img {
    height: 80px;
    filter: drop-shadow(2px 4px 6px black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
    align-items: center;
}

.product-item {
    border: 1px solid #F3F5F8;
    background-color: #F3F5F8;
    border-radius: 30px;
    padding: 0px 30px;
    height: 100%;
}

.product-item .button {
    display: inline-block;
    margin-bottom: 30px;
}

.product-item h3 {
    margin-bottom: 10px;
    font-weight: 400;
}
.product-item .price {
    font-size: 22px;
    font-weight: 300;
    margin-top: 15px;
    margin-bottom: 15px;
    display: block;
}

.pbutton {
    border: 1px #9f9f9f4f solid;
    color: #000000;
    padding: 12px 20px;
}

.product-item .price_small {
    font-size: 14px;
}

.product_chars {
    display: flex; 
    background: #fcfcfc;
    padding: 6px 12px;
    border-radius: 10px;
    align-items: center;
    margin-top: 15px;
    justify-content: space-between;   
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    text-transform: uppercase;
    align-items: center;
}

.breadcrumb_separator {
    padding: 0px 11px;
    font-size: 8px;
}

.category_hero {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.page_hero {
    min-height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    background: #F3F5F8;
    margin-top: 80px;
}

.page_hero .breadcrumbs {
    margin-bottom: 10px;
}

.page_hero_header {
    text-transform: uppercase;
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 0px;
}

.category_hero a {
    color: #fff;
}

.category_hero_content {
    z-index: 1;
}

.hero_content_wrapper {
    padding-bottom: 13px;
}

.category_hero_header {
    text-transform: uppercase;
    font-size: 40px;
    margin-bottom: 40px;
}

.materials-accordion {
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

.materials-title {
    padding: 15px 20px;
    margin: 0;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    font-size: 18px;
    font-weight: 600;
}

.accordion-item {
    margin-bottom: 10px;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    padding: 15px 20px;
    background: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

.accordion-header:hover {
    background: #f8f9fa;
}

.accordion-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: #666;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-header {
    background: #e9ecf1;
    border-radius: 10px 10px 0px 0px;
}

.accordion-content {
    background: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
}

.accordion-body {
    padding: 20px;
    color: #666;
    line-height: 1.6;
}

.accordion-body p {
    margin: 0 0 15px 0;
}

.accordion-body p:last-child {
    margin-bottom: 0;
}

.material-image {
    margin: 15px 0;
}

.material-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.material-properties {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 4px;
    margin-top: 15px;
}

/* Города */

.city_background {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

.header_city {
    padding-bottom: 4px;
}

.footer-contacts a {
    color: #FFF
}

#city_choose_button
{
	cursor: pointer;
	text-decoration: none !important;
}

#close_city {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #fff;
    line-height: 1;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.city_window {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 999;
    border-radius: 10px;
	  width: 700px;
		height: 700px;
    max-width: 90vw;
	  max-height: 100vh;
		padding: 20px;
}

#major-cities
{
	flex-direction: row !important;
	margin: 10px 0px;
}

#city-search
{

	border-radius: 50px;
	border: none;
	background: #efefef;
	width: 90% !important;
}

#city-search::placeholder
{
	color: #767676;
}

#major-cities li
{
	min-width: unset !important;
	margin-right: 14px;
	list-style-type: none
}

#major-cities li a
{
	font-weight: 600;
	font-size: 20px;	
	
}


 #major-cities.city-list {    
	 display: flex;
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 8px 24px;
    margin-bottom: 20px;
	
    flex-wrap: wrap;
    justify-content: flex-start;
}


.city-list a {
  font-size: 17px;
  color: #000;
  text-decoration: none;
}

.city-list a:hover {
  text-decoration: underline;
}
		#city-search {
			width: 100%;
		}
		.city-list a {
			color: #000;
			font-size: 17px;
			
		}
  #all-cities {
	 display: flex;
	 flex-wrap: wrap;
     overflow: auto;
	 
  }

  #all-cities .city-group {
    break-inside: avoid;
    margin-bottom: 20px;
		
  }

  .city-letter {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    margin: 10px 0 5px;
    display: block;
  }

  .city-listing {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .city-listing li {
    padding: 4px 0;
    cursor: pointer;
  }

  .city-listing li:hover {
    background: #f0f0f0;
  }

#all-cities {
    height: 490px !important;
}
.city_window ul {
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
	  display: flex;
    flex-direction: column;
}
.city_window ul li
{
 min-width: 200px;
}

#city_toggler {
    background-color: #3984db;
    color: #fff;
    padding: 10px 20px;
    border-radius: 3px;
    width: 123px;
    display: block;
    margin: 30px auto 0px;
}

.city_cloud
{
	text-align: center;
	padding-top: 50px;
	padding-bottom: 50px
}

.city_cloud ul
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	list-style: none;
	padding-left: 0px
}

.city_cloud ul li
{
	background-color: #ccc;
	color: #e9e9e9;
	padding: 5px 15px;
	margin: 5px;
	border-radius: 4px;
}

.accordion-content {
    background: #fff;
    overflow: hidden;
    border-radius: 0px 0px 10px 10px;
}

.all_gost {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.single_gost {
    border: 1px #9f9f9f4f solid;
    color: #000000;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.all_volumes {
    display: flex;
    flex-wrap: wrap;    
}

.single_volume {
    border: 1px #9f9f9f4f solid;
    color: #000000;
    padding: 12px 20px;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 50px;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Плавная анимация для иконки */
.accordion-icon svg {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon svg {
    transform: rotate(180deg);
}

/* Анимация для заголовка */
.accordion-header {
    position: relative;
    transition: all 0.3s ease;
}

.background_section {
    background: #F3F5F8;
    padding: 60px 0px;
}

.cat_img_section {
    position: relative;
}

.cat_img_section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: var(--cat-img-section-bg-image);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.1;
    z-index: -1;
}

.product-info {
    flex: 0 0 35%;
    padding-right: 60px;
}

.product-img img {
    max-width: 100%;
}

.product-info .product-price {
    font-size: 26px;
    font-weight: 300;
    margin-top: 50px;
    margin-bottom: 35px;
    display: block;
}

.product-price .price_small {
    font-size: 18px;
}

.product-info h1 {
    text-transform: uppercase;
    font-size: 38px;
    margin-top: 65px;
}

.breadcrumb_section {
    padding: 92px 0px 60px;
}

.fast_order {
    border-radius: 30px;
    padding: 20px 30px 10px;
    background-color: #F3F5F8;
    position: sticky;
    top: 140px;
}

.fast_order .po_desc {
    font-size: 14px;
    font-weight: 100;
    color: #919191;
    margin-bottom: 20px;
}

.fast_order input {
    max-width: 248px;
}

.product_navigation {
    margin: 60px 0px;
    padding: 15PX 0px;
    position: sticky;
    top: 65px;
    z-index: 3;
    background: #FFF;
}

.tour_navigation_holder {
    display: flex;
    justify-content: space-between;
}

.tour_navigation_holder span {
    font-size: 14px;
    font-weight: 100;
    color: #919191;
}

.product_navigation_link {
    color: #455869;
    font-size: 14px;
    border-bottom: 1px dashed;
}

.product_block {
    margin-bottom: 100px;
}

.quality-control-container 
{ 
	max-width: 1000px; 
	margin: 0 auto; 
	padding: 30px; 
	background: #f9f9f9; 
	border-radius: 8px; 
	box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
	color: #333; 
} 
.quality-header 
{ 
	text-align: center; 
	margin-bottom: 0px; 
	padding-bottom: 20px; 
} 
.quality-header h2 
{ 
	color: #2c3e50; 
	font-size: 28px;
	margin-bottom: 10px; 
} 
.quality-tagline 
{ 
	font-size: 18px; 
	color: #555; 
	font-weight: 300; 
} 
.quality-methods 
{ 
	display: flex; 
	flex-direction: column; 
	gap: 25px; 
	margin-bottom: 40px; 
} 
.method-item 
{ 
	display: flex; 
	background: white; 
	border-radius: 6px; 
	padding: 20px; 
	box-shadow: 0 2px 6px rgba(0,0,0,0.08); 
	transition: transform 0.2s ease, box-shadow 0.2s ease; 
} 
.method-item:hover 
{ 
	transform: translateY(-3px); 
	box-shadow: 0 4px 12px rgba(0,0,0,0.12); 
} 
.method-icon 
{ 
	flex: 0 0 80px; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	background: #f0f4f8; 
	border-radius: 50%; 
	width: 80px; 
	height: 80px; 
	margin-right: 20px; 
} 
.method-icon img 
{ 
	width: 45px; 
	height: 45px; 
} 
.method-details 
{ 
	flex: 1; 
} 
.method-details h3 
{ 
	color: #2c3e50; 
	margin-top: 0; 
	margin-bottom: 10px; 
	font-size: 18px; 
} 
.method-details p 
{ 
	margin: 0; 
	line-height: 1.6; 
	color: #555; 
} 
.quality-standards 
{ 
	background: white; 
	border-radius: 6px; 
	padding: 25px; 
	margin-bottom: 30px; 
	box-shadow: 0 2px 6px rgba(0,0,0,0.08); 
} 
.quality-standards h3 { 
	color: #2c3e50;
	margin-top: 0; 
	margin-bottom: 15px; 
	font-size: 20px; 
} 
.standards-list 
{ 
	list-style-type: none; 
	padding: 0; margin: 0; 
} 
.standards-list li 
{ 
	padding: 10px 0; 
	border-bottom: 1px solid #eee;
	display: flex; 
	align-items: center; 
} 
.standards-list li:last-child { 
	border-bottom: none; 
} 
.standard-code 
{ 
	font-weight: bold; 
	color: #3498db; 
	margin-right: 10px; 
	min-width: 180px; 
	display: inline-block; 
} 
.quality-certificate 
{ 
	display: flex; 
	background: #e8f4fc; 
	border-radius: 6px; 
	padding: 25px; 
	margin-bottom: 30px; 
} 
.certificate-icon 
{ 
	flex: 0 0 100px; 
	display: flex; 
	align-items: center; 
	justify-content: center;
	margin-right: 20px;
}

.certificate-icon img {
    width: 80px;
    height: 80px;
}

.certificate-content {
    flex: 1;
}

.certificate-content h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 20px;
}

.certificate-content ul {
    margin: 0;
    padding-left: 20px;
}

.certificate-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.quality-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.quality-guarantee {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
}

.product_block .single_uf, .product_block  .single_st {
    background: #455869;
}

.product-chars {
    max-width: 400px;
    border-radius: 30px;
    padding: 20px 30px 40px;
    background-color: #F3F5F8;
}

.product_block .projects-grid {
    grid-template-columns: repeat(3, 1fr);
}

html {
    scroll-behavior: smooth;
}

.product_block {
    scroll-margin-top: 130px;
}

.product_single_char {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
    border-bottom: 1px #ccc dashed;
}

.product_content_left {
    flex: 0 0 70%;
}

.product_content_right {
    padding-left: 80px;
}

.product-info .categories span {
    color: #919191;
}

.image_section {
    padding: 100px 0px;
    position: relative;
    background-size: cover;
    background-position: center;    
}

.image_section .container {
    z-index: 1;
    position: relative;
}

.single_uf, .single_st {
    background: #ffffff33;
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    margin-right: 10px;
    margin-bottom: 10px;
}

.image_section .section_header {
    color: #fff;
}

.image_section .section_header:before, .image_section .section_header:after {
    background: rgb(255 255 255 / 29%);
}

.image_section:before {
    content: "";
    background: #000;
    opacity: 0.6;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}

.flex_holder {
    display: flex;
}

.space-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.arrow_button svg {
    width: 12px;
    height: 12px;
    margin-left: 3px;
    transform: rotate(-45deg);
    margin-bottom: -1px;
}

.col2 {
    flex: 0 0 48%;
    max-width: 48%;
}

.col3 {
    flex: 0 0 32%;
    max-width: 32%;
}

.padding1 {
    padding: 0px 1%;
}

.pr4 {
    padding-right: 4%;
}

.pr2 {
    padding-right: 2%;
}

.cf7_holder h3 {
    margin-bottom: 0px;
    margin-top: 10px;
    margin-left: 10px;
    font-weight: 400;
}

.cf7_holder span {
    max-width: 100%;
}

.cf7_holder span {
    width: 100%;
    display: flex;
}

.input_wrapper {
    display: flow-root;
}

input, select {
    width: 100%;
    background: #fff;
    color: #7a7a7a;
    border-radius: 50px;
    border: none;
    height: 43px;
    font-size: 16px;
    font-weight: 300;
    font-family: "Geologica", sans-serif;
    padding: 0px 20px;
}

input:focus-visible, select:focus-visible, input:focus, select:focus, textarea:focus, textarea:focus-visible {
    border: 1px rgba(0, 0, 0, 0.15) solid;
    outline: none !important;
}

textarea {
    width: 100%;
    border: navajowhite;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    border: none;
    font-size: 16px;
    font-weight: 300;
    font-family: "Geologica", sans-serif;
    padding: 20px;
    height: 69px;
}

/* Скрываем оригинальный чекбокс */
.wpcf7-acceptance input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }
  
  /* Создаем кастомный чекбокс */
  .wpcf7-acceptance .wpcf7-list-item-label {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.4;
    color: #666;
  }
  
  /* Квадратик чекбокса */
  .wpcf7-acceptance .wpcf7-list-item-label:before {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid #ccc;
    border-radius: 2px;
    background: #fff;
    transition: all 0.2s ease;
  }

  .wpcf7-submit {
    background: #455869;
    color: #fff;
    padding: 12px 20px;
    display: block;
    width: auto;
  }
  
  /* Галочка */
  .wpcf7-acceptance .wpcf7-list-item-label:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 6px;
    width: 8px;
    height: 4px;
    border: 1px solid #fff;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    opacity: 0;
    transition: all 0.2s ease;
  }
  
  /* Состояние при наведении */
  .wpcf7-acceptance .wpcf7-list-item-label:hover:before {
    border-color: #999;
    background: #f8f8f8;
  }
  
  /* Состояние когда чекбокс отмечен */
  .wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label:before {
    background: #777;
    border-color: #777;
  }
  
  .wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
    opacity: 1;
  }
  
  /* Состояние фокуса */
  .wpcf7-acceptance input[type="checkbox"]:focus + .wpcf7-list-item-label:before {
    box-shadow: 0 0 0 2px rgba(119, 119, 119, 0.2);
    outline: none;
  }
  
  /* Стили для ссылки */
  .wpcf7-acceptance .wpcf7-list-item-label a {
    color: #555;
    text-decoration: underline;
    transition: color 0.2s ease;
    margin-left: 4px;
  }
  
  .wpcf7-acceptance .wpcf7-list-item-label a:hover {
    color: #333;
  }

.cf7_holder {
    background: #F3F5F8;
    padding: 40px;
    border-radius: 20px;
}

.flex_holder .news_left {
    flex: 0 0 70%;
} 

.flex_holder .material {
    flex: 0 0 60%;
}

.flex_holder .uf {
    flex: 0 0 47%;
    padding-right: 80px;
}

.flex_holder .gost {
    padding-left: 60px;
}

.accordion-item.active .accordion-header::after {
    width: 100%;
}

.category_hero:before {
    content: "";
    width: 100%;
    min-height: 400px;
    background: #000;
    opacity: 0.6;
    position: absolute;
    z-index: 0;
}

.char-item {
    display: flex;
    align-items: flex-end;
}

.char-item:not(:last-of-type) {
    border-right: 1px #f1f1f1 solid;
    padding-right: 6px;
}

.char-label {
    color: #919191;
}

.char-content {
    font-size: 11px;
    margin-left: 6px;
}

.char-icon img {
    height: 17px;
}

.product-categories {
    font-size: 14px;
    font-weight: 100;
    color: #919191;
    display: flex    ;
    flex-wrap: wrap;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
    align-items: center;
}

.category-card {
    border: 1px #2329361c solid;
    border-radius: 30px;
    padding: 0px 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.category-card:hover {
    background: #2B353A;
    color: #EADDBB;
    transform: scale(1.02);
    -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
}

.category-card:hover .category-count, .category-card:hover .category-title {
    color: #EADDBB;
}

.category-card:hover .category-svg svg .cls-1 {
    fill: #EADDBB;
}

.category-card .category-title {
    margin-top: 30px;
    margin-bottom: 5px;
    font-weight: 400;
}

.category-card .category-count {
    font-size: 14px;
    font-weight: 100;
    color: #919191;
}

.category-svg svg {
    height: 160px;
    padding: 20px;
}

.step_block {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 30px;
    position: relative;
}

.step-duration {
    position: absolute;
    top: 40px;
    right: 40px;
    border: 1px #ccc solid;
    border-radius: 50px;
    font-size: 12px;
    padding: 5px 10px;
    color: #919191;
}

.scheme_number {
    font-size: 60px;
    font-weight: 700;
    text-stroke: 1px #4f4f4f;
    color: #f8f9fa;
    -webkit-text-stroke: 1px #4f4f4f;
}

.step_block h4 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
}

.step_block p {
    font-size: 15px;
}

.step_block.active, .step_block:hover {
    background: #2B353A;
    color: #EADDBB;
    transform: scale(1.02);
}

.step_block:hover
{
    transition: all 0.3s ease;
}

.step_block.active .scheme_number, .step_block:hover .scheme_number {
    color: #EADDBB;
    -webkit-text-stroke: 1px #EADDBB;
}

.step_block.active .step-duration, .step_block:hover .step-duration {
    border: 1px #EADDBB solid;
    color: #EADDBB;
}

.section_header {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 600;
    padding-left: 120px;
    position: relative;
    cursor: pointer;
    margin-bottom: 40px;
}

.section_header:before {
    content: "";
    display: block;
    box-sizing: border-box;
    width: 80px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    top: 18px;
    left: 0;
    position: absolute;
    transform-origin: left center;
    transition: transform 0.1s ease;
}

.section_header:hover:before {
    transform: scaleX(0);
}

.content-section {
    margin-top: 100px;
    margin-bottom: 100px;
}

.section_header:after {
    content: "";
    display: block;
    box-sizing: border-box;
    width: 80px;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    top: 18px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.8s ease 0.1s; /* задержка 0.1s */
}

.main-navigation a:after {
	display: block;
	position: absolute;
	left: 0;
	width: 0;
	height: 1px; 
	background-color: #232936;
	content: "";
	transition: width 0.3s ease-out;
	margin-top: 2px;
}

.transparent .main-navigation a:after {
    background-color: #fff;
}

.main-navigation a:hover:after {
	width: 100%;
}

.main-navigation a {
    display: inline-block;
}

.section_header:hover:after {
    transform: scaleX(1);
}

@media screen and (min-width: 676px) {
    #mobile-menu, #mobile-menu-toggle, .header_mobile, .offcanvas-menu {
        display: none;
    }
}

@media screen and (max-width: 676px) {
    #cookie_note {
        flex-direction: column;
        left: 50%;
        transform: translate(-50%, 0%);
        width: 80%;
        padding: 15px;
        bottom: 30px;
    }
    
    #cookie_note a {
        margin-right: 0px;
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    #cookie_note p {
        margin-right: 0px;
        margin-top: 0px;
        font-size: 13px;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .accordion-header {
        padding: 12px 15px;
    }
    
    .accordion-body {
        padding: 15px;
    }
    
    .materials-title {
        padding: 12px 15px;
        font-size: 16px;
    }

    .categories-grid, .steps-grid, .adv-grid, .projects-grid, .main_articles_holder, .footer-category-grid-list, .products-grid, .product_block .projects-grid, #news-container, #projects-container, #services-container {
        grid-template-columns: repeat(1, 1fr);
    }
    .footer-content, .footer-bottom {
        flex-wrap: wrap;
    }
    .site-header {
        display: none;
    }
    .flex_holder {
        flex-wrap: wrap;
    }
    .container {
        max-width: calc(100% - 2rem);
    }
    #main-carousel {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }
    
    #main-carousel .splide__track {
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    #main-carousel .splide__list {
        width: 100% !important;
    }
    
    #main-carousel .splide__slide {
        width: 100% !important;
        max-width: 100vw !important;
    }
    .container {
        padding: 0 1rem;
    }
    .section_header {
        padding-left: 40px;
    }
    .section_header:before, .section_header:after {
        width: 30px;
    }
    .big_slide_name {
        font-size: 33px;
    }
    .footer-content {
        flex-direction: column;
    }
    .flex_holder .news_left, .flex_holder .col2, .flex_holder .col3, .flex_holder .material, .product_content_left {
        flex: 0 0 100%;
    }
    .flex_holder .uf {
        padding-right: 0px;
    }
    .flex_holder .gost {
        padding-left: 0px;
    }
    .col2, .col3 {
        max-width: 100%;
    }
    .offcanvas-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        z-index: 9;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        overflow-y: auto;
        padding: 30px;
    }
    #close-offcanvas-menu {
        display: flex;
        position: absolute;
        right: 100px;
        top: 35px;
        border: 1px #d2d2d2 solid;
        border-radius: 50px;
        width: 42px;
        height: 42px;
        align-items: center;
        justify-content: center;
        z-index: 10;
        cursor: pointer;
    }
    .offcanvas-menu.active {
        transform: translateX(0);
    }
    .offcanvas-menu .order-calc-btn {
        display: inline-block;
    }
    .offcanvas-menu .header-phone {
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .header_mobile {
        display: flex;
        justify-content: space-between;
        padding: 15px;
        align-items: center;
        z-index: 1;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
    }
    .mobile-menu-list {
        padding: 0px;
        list-style: none;
        margin: 30px;
    }
    .mobile-menu-list li {
        text-transform: uppercase;
        font-weight: 400;
        font-size: 14px;
        margin-bottom: 20px;
    }
    html #wpadminbar {
        display: none;
    }
        .big_slide {
            background-size: cover;
            min-height: 100vh; /* Гарантируем минимальную высоту */
        }
        
        @keyframes zoomBackground {
            0% { background-size: cover; }
            100% { background-size: 110% 110%; } /* Меньшее увеличение для мобильных */
        }
    .news_right {
        display: none;
    }
    #order-calc-window {
        height: auto;
    }
    #order-calc-background {
        overflow: auto;
    }
    #close-calc-window {
        right: 30px;
        top: 30px;
    }
    .wpcf7-submit {
        margin: 0 auto;
    }
    .wpcf7-acceptance .wpcf7-list-item-label {
        display: block;
    }
    .new-main-card {
        aspect-ratio: 1.5 / 1;
    }
    .new-main-card h3 {
        font-size: 18px;
    }
    .news_section .pbutton {
        margin: 20px 0px;
    }
    .news_section h2 {
        margin-bottom: 0px;
    }
    .footer-bottom {
        justify-content: flex-start;
    }
    .breadcrumb_section {
        padding: 20px 0px;
    }
    .product-info h1 {
        margin-top: 0px;
    }
    .product-info .product-price {
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .product-info {
        flex: 0 0 100%;
        padding-right: 0px;
        margin-bottom: 50px;
    }
    .tour_navigation_holder, .tour_navigation_holder span {
        display: block;
    }
    .product_content_right {
        display: none;
    }
    .quality-control-container {
        padding: 0px;
    }
    .quality-content {
        max-width: calc(100% - 20px);
        left: 10px;
        position: relative;
    }
    .quality-tagline {
        font-size: 14px;
        padding-top: 20px;
    }
    .standards-list li {
        flex-wrap: wrap;
    }
    .standard-code {
        margin-bottom: 10px;
        margin-top: 10px;
    }   
    .quality-certificate {
        flex-direction: column;
    }
    .page_hero {
        min-height: 122px;
    }
    .page_hero .breadcrumbs {
        margin-bottom: 0px;
    }
    .page_hero_header {
        margin-top: 0px;
    }
    .hero_content_wrapper {
        padding-bottom: 0px;
    }
    .content-section {
        margin-top: 60px;
        margin-bottom: 60px;
    }
    .page_hero_header {
        font-size: 31px;
    }
    .single-new {
        padding: 0 1rem;
    }
    #map_contact_holder {
        width: 60%;
        margin-left: 10%;
        margin-top: -680px;
    }
    .map_contacts h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .map_big_phone {
        font-size: 24px;
        margin: 8px 0px;
    }
    .article-card a {
        flex-direction: column;
    }
    .article-content {
        display: block;
        max-width: 100%;
        padding: 0px;
    }
    .article-image {
        width: 100%;
    }
    .project-img {
        flex-direction: column;
    }
    .project-svg {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
    .project-info {
        padding: 0px;
    }
    #main-carousel {
        height: calc(100vh - 70px) !important;
    }
    .slider_content {
        margin-top: 0px;
        padding-left: 30px !important;
    }
    .big_slide_desc {
        margin-bottom: 50px;
        margin-top: 30px;
    }
    .splide__arrow--next {
        bottom: 0px !important;
    }
    .splide__arrow--prev {
        transform: translateY(-50%) !important;
        bottom: 0px !important;
        top: unset !important;
        left: 31px !important;
    }
    .site-main {
        padding-top: 70px;
    }
    .page_hero {
        margin-top: 0px;
    }
}