/*
 * Theme Name: Start-Site 2.5
 * Description: Ultra-minimal WordPress starter theme. Optimized for converting html-layouts to websites. Also is a good start for SPA, creating unique projects.
 * Theme URI:   https://start-site.by
 * Author:      ULADZIMIR KONOVALOVE
 * Author URI:  https://start-site.by
*/

/*
Theme Name: Custom Theme
Author: Your Name
Version: 1.0
*/



/*popupo*/
.another {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.popup-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgb(123 123 123 / 82%);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.popup-box {
    background: #48523A;
    padding: 60px;
    max-width: 500px;
    color: #fff;
    width: 90%;
    position: relative;
    
}
.popup-close {
position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
}
span.wpcf7-list-item.first.last {
    font-size: 11px;
}
.title_form {
    font-size: 30px;
    margin-bottom: 20px;

    text-align: center;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    display: inline-block;
    padding: 20px 50px;
    background-color: #ffffff00;
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-family: 'CenturyGothic';
    transition: background-color 0.3s ease;
    outline: 0px;
    border: 1px solid #fff;
    font-weight: 100;
    width: 100%;
    font-size: 15px;
    cursor: pointer;
}
.wpcf7-response-output {
    margin-top: 0px;
    color: #d1a04a;
    text-align: center;
    position: absolute;
    bottom: -34px;
    font-size: 11px;
}
.screen-reader-response {
    display: none;
}
span.wpcf7-list-item.first.last label {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

label .wpcf7-form-control {
    width: 100%;
    
    height: 45px;
    border: 1px solid var(--site-main-color);
    background: #0000001c;
    font-family: 'CenturyGothic';
    padding: 12px 11px;
    margin: 5px 0px 0px;
    color: #fff;
}
.title_form_label input {
    width: 100%;
    
    height: 60px;
    border: 1px solid #fff;
    background: #00000000;
    font-family: 'CenturyGothic';
    padding: 12px 11px;
    margin: 5px 0px 0px;
    color: #fff;
}
.title_form_label {
    margin: 20px 0px;
}
.title_form_label_check{
  margin: 0px 0px 10px;
}
span.wpcf7-not-valid-tip {
    font-size: 10px;
    color: #c00505;
}
label .wpcf7-form-control:focus-visible {
    outline: 0px solid #123;
    border: 1px solid var(--site-main-color);
}













.blagmain .other_page h1.project-title {
    font-size: 60px;
}
/* меню */

/* Обертка мобильного меню */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%; /* можешь уменьшить */
    max-width: 460px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 9999;
    display: flex;
    align-items: flex-end; /* меню прижато вниз */
}

/* Внутренний блок (ниже) */
.mobile-menu-inner {
    width: 100%;
    padding: 20px;
    padding-bottom: 40px; /* удобно нажимать */
}

/* Элемент списка */
.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    margin-bottom: 18px;
}

.mobile-menu-list a {
    font-size: 20px;
    text-decoration: none;
    color: #000;
}

/* Активное состояние */
.mobile-menu.active {
    transform: translateX(0);
}

/* Чтобы кнопка была выше меню */
.menu-toggle {
    position: relative;
    z-index: 10000;
}




/* Портфолио */

.project-block.portpholio_main .project-left.line-right {
    width: 50%;
    max-width: none;
}



.portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.gallery-item {
    width: calc(25% - 15px); /* 4 в ряд */

    aspect-ratio: 1 / 1; /* квадрат */
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    cursor: pointer;
    transition: transform .3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}




/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.85);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  background: transparent;
  border: none;
}











/* СЕТКА */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
}

/* КАРТОЧКА */
.portfolio-item {
    position: relative;
    height: 475px;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

/* ФОН (thumbnail) */
.portfolio-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

/* ТЁМНОЕ ЗАТЕМНЕНИЕ */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg, 
        rgba(0, 0, 0, 0.60) 0%, 
        rgba(0, 0, 0, 0.60) 100%
    );
    transition: opacity 0.5s ease;
}

/* ТЕКСТ */
.portfolio-title {
    position: absolute;
    bottom: 30px;
    left: 26px;
    right: 26px;
    color: #fff;
    font-size: 26px;
    font-family: 'CenturyGothic', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.25;
    transition: opacity 0.5s ease;
    z-index: 3;
}

/* ХОВЕР ЭФФЕКТ */
.portfolio-item:hover .portfolio-overlay {
    opacity: 0;
}

.portfolio-item:hover .portfolio-title {
    opacity: 0;
}

.portfolio-item:hover .portfolio-bg {
    transform: scale(1.05);
}





/*концепция*/

.tokeds .analysis-right {
    flex: 1 1 50%;
}

.tokeds .analysis-left {
    flex: 1 1 50%;
}

/*перепланировака квартир */
.analysis-title-sub.pereplan_new_style {
    padding: 22px 0px 0px 30px;
}
.analysis-step-text p {
    padding: 10px 0px; 
	color: #616161;
    /* font-size: 22px; */
}

.analysis-step-text ul {
    font-size: 22px;color: #616161;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px 0px;
}
.pereplan_new_style ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.pereplan_main .texh_new .prom_zdania .step_page_inzh {
    gap: 130px;
    height: 100%;
    display: flex;
    justify-content: space-between;
}
.pereplan_new_style {
	color: #646464;
    position: relative;
    font-size: 22px;
}
.analysis-step-sublist.pere_nopad {
    padding-left: 0px;
}

/*Общественные здания */
.prom_zdania p {
    font-size: 18px;
}

.steps-header.new_steps {
    flex-direction: row;
    align-items: center;
}

.steps-header.new_steps h2 {
    width: 50%;
}

.steps-header.new_steps p {
    width: 50%;
    padding: 20px 0px 0px;
}

/*Общественные здания коноце */

/*Техническая модернизация*/
.analysis-result-block.news_st_tech {
    gap: 120px;
}

.news_st_tech ol li::before {
    color: #fff;
}

.news_st_tech .result-text {
    max-width: 100%;
    display: flex;
    gap: 37px;
    flex-direction: column;
}

.news_st_tech ol {
    gap: 37px;
    display: flex;
    flex-direction: column;
}

.texh_new .prom_zdania h3 p {
    font-size: 25px;
}

.texh_new .prom_zdania .step_page_inzh {
    gap: 100px;
}


/*Техническая модернизация конец*/



/*Коттеджи*/
.project-right video {
    height: 100%;
}
.steps-header.full_height {
    height: 100%;
}

.full_height .analysis-image-wrapper {
    height: 100%;
}
p.analysis-subtitle.color_gray {
    color: #646464;
}
.full_height .analysis-image-wrapper img {
    height: 100%;
    /* width: auto; */
    object-fit: cover;
    background-position: left;
}
/*Коттеджи конец*/



.padding-with-line {
    padding-bottom: 70px;
    border-bottom: 1px solid #48523A;
}
.line-bottom {
	 border-bottom: 1px solid #48523A;
}
.line-top {
	 border-top: 1px solid #48523A;
}
.line-left {
	 border-left: 1px solid #48523A;
}
.line-right {
	 border-right: 1px solid #48523A;
}

.line_all{
	 border: 1px solid #48523A;
}
/* Обычный */
@font-face {
  font-family: 'CenturyGothic';
  src: url('fonts/centurygothic.woff2') format('woff2'),
       url('fonts/centurygothic.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Жирный */
@font-face {
  font-family: 'CenturyGothic';
  src: url('fonts/centurygothic_bold.woff2') format('woff2'),
       url('fonts/centurygothic_bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

/* ====== RESET ====== */

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

html, body {
  width: 100%;
  height: 100%;
  font-family: "CenturyGothic", sans-serif;
  color: #111;
  background: #EBE7DC;
}

/* ====== CONTAINERS ====== */
.container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 30px;
font-family: 'CenturyGothic';
}

.container-fluid {
  width: 100%;
  padding: 0 0px;
}
.container-fluid-second {
  width: 100%;
/*  padding: 0 30px; */
}
/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-weight: normal; 
font-family: 'CenturyGothic';
}

h1 { font-size: 51px; line-height: 1.2; }
h2 { font-size: 50px; line-height: 1.2; text-transform: uppercase; color:#48523A;}
h3 { font-size: 25px; line-height: 1.3; color:#616161; 
    padding-top: 30px;
    padding-bottom: 20px; }
h4 { font-size: 22px; line-height: 1.4; }
h5 { font-size: 18px; line-height: 1.4; }
h6 { font-size: 16px; line-height: 1.5; }
h3.step-title p {
    font-size: 23px;
    color: #fff;
}
.perepl_list .analysis-step-number {
    font-size: 50px;
    padding: 0px;
    color: #48523A;
}
p {
  font-size: 22px;
  line-height: 1.2;
}
h3 p {
    font-size: 23px;
    line-height: 1.3;
}
/* ====== LINKS ====== */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ====== IMG ====== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ====== LISTS ====== */
ul, ol {
  list-style: none;
}

/* ====== BASIC UTILITIES ====== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }




/* ====== HEADER BASE ====== */
ul#primary-menu {
    display: flex;
    gap: 120px;
    justify-content: space-between;
    width: 100%;
    max-width: 700px;
}
header {
  position: relative;
  width: 100%;
  background: transparent;
  z-index: 10;
}
#primary-menu li::before {
    content: none;
}
#primary-menu li {
    padding: 0px;
    margin: 0px;
}
.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
/*   max-width: 1860px; */
  margin: 24px auto;
}

/* ====== LOGO ====== */
.header-logo {
  position: relative;
    max-width: 223px;
    width: 100%;
}

.header-logo img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}


/* ====== NAVIGATION ====== */
.header-nav {
  display: flex;
  gap: 60px;
/*   margin-left: 350px; */
}

.header-nav a {
  color: #363636;
  font-size: 20px;
  font-family: "CenturyGothic", sans-serif;
  font-weight: 400;
  text-decoration: underline;
  transition: 0.3s;
}

.header-nav a:hover {
  color: #48523A;
  text-decoration: none;
}

/* ====== RIGHT BLOCK (phones + button) ====== */
.header-icons {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* ====== GREEN BUTTON "Расчет стоимости" ====== */
.header-callback {
  position: relative;
}

.header-callback .callback-link {
  background: #48523A;
  color: #fff;
  border: none;
  font-size: 20px;
  font-family: "CenturyGothic", sans-serif;
  font-weight: 400;
  line-height: 20px;
  padding: 20px 40px;
  cursor: pointer;
  transition: 0.3s;
}

.header-callback .callback-link:hover {
  background: #3a442f;
}

/* ====== PHONE BLOCK ====== */
.header-phone {
  display: flex;
  flex-direction: column;
  color: #48523A;
  font-size: 30px;
  font-family: "CenturyGothic", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: underline;
}

.header-phone__link {
  color: inherit;
  text-decoration: underline;
}

.header-phone__link:hover {
  text-decoration: none;
}

.header-callback button {
    display: flex;
    gap: 25px;
    padding: 34px 0 34px;
}


/* ГЛАВНАЯ */
.container-home {
    max-width: 1920px;
    margin: 0 auto;
}
.container-fluid-second {
  background-color: #48523A;
  color: #E1DACA;
  font-family: "CenturyGothic", sans-serif;
}

.project-block {
  display: flex;
  flex-wrap: nowrap; /* чтобы не переносились */
/*   gap: 2rem; */
  align-items: stretch;
  justify-content: space-between;
/*   padding: 4rem 2rem; */
}

.project-left {
/* flex: 0 0 33%; */
    padding: 20px 30px 50px 30px;
    display: flex;
    flex-direction: column;    justify-content: space-between;
    max-width: 644px;
    width: 100%;
}



.project-title {
  font-size: 45px;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
/*   margin-bottom: 2rem; */
}

.project-buttons {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

button {
width: 100%;
  background: transparent;
  color: #E1DACA;
  border: 1px solid #E1DACA;
  font-size: 25px;
    font-family: 'CenturyGothic';
    max-width: 500px;
line-height: 1;
  padding: 13px 0 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.project-buttons button:hover  {
  background: #E1DACA;
  color: #48523A;
}
.slider-arrows button {
    border: none;
max-width: 58px;
    padding: 0px;
}
.second-section-main {
    display: flex;
    gap: 12px;
    flex-direction: column;
}
.accent {
    border-color: #fff;
    color: #fff;
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
}
.project-right {
/*   flex: 0 0 66%; */
/*   aspect-ratio: 4 / 3; например 4:3 */
  overflow: hidden;
}

.project-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-buttons.project-buttons-main {
    gap: 30px;
}


/* Главная */






/* вторая секция */

.second-section {
  width: 100%;
}

.second-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;    padding: 25px 30px;
}

.section-label {
  font-family: "CenturyGothic", sans-serif;
  font-weight: 400;
  font-size: 30px;
  color: #646464;
  line-height: 30px;
}

.section-title {
  font-family: "CenturyGothic", sans-serif;
  font-weight: 400;
  font-size: 49px;
  color: #48523A;
  text-transform: uppercase;
    max-width: 735px;
}

.second-section-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1920px;
    flex-wrap: nowrap;
    gap: 30px;
}

.services-image {
  flex: 1 1 60%;
  max-width: 1280px;
  height: auto;
  border-right: 1px solid #48523A;
  object-fit: cover;
    width: 66%;

}

.services-info {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 300px;
padding: 30px 0px;
    justify-content: space-between;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-number {
  font-family: "CenturyGothic", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #646464;
  flex-shrink: 0;
padding: 3px 0px 0px 0px;
}

.service-text {
  font-family: "CenturyGothic", sans-serif;
  font-weight: 400;
  font-size: 25px;
  color: #3D3D3D;
  line-height: 1.2;
  word-wrap: break-word;
  flex: 1;
max-width: 535px;
}
.container-home-second {
    width: 100%;
}
/* Инженереные сети */
.step_page_inzh {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 35px;
}

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

.analysis-step {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.analysis-step-number {
    color: #646464;
  font-size: 20px;
padding-top: 2px;
}

.analysis-step-title {
    font-weight: 600;
}
.new_sub_item p {
    color: #646464;
    position: relative;
}
.analysis_main_fl {
    display: flex;
    flex-direction: row;
    font-size: 25px;
    color: #646464;
    gap: 30px;
}
.analysis-step-sublist {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 63px;
}

.analysis-step-subitem {
    color: #646464;
    position: relative;
    padding-left: 30px;
    font-size: 22px;
}

.analysis-step-subitem::before {
    content: "";
    width: 13px;
    height: 13px;
    background-color: #48523A;
    position: absolute;
    left: 0;
    top: 7px;
}
/* промышленные здание */
.steps-wrapper ul li::before {
    background-color: #ffffff;
    width: 10px;
    height: 10px;
}
.prom_zdania .step_page_inzh {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 35px;
    flex-direction: column;
}
.prom_zdania.step-item {
    gap: 35px;
}
.prom_zdania h3 p {
    font-size: 28px;
}
.prom_zdania li {
    font-size: 18px;
}
/* ДРУГИЕ СТРАЦНИЫЫЫ */
.steps-header h2 {
    padding: 20px 30px 0px;
}
section.container-fluid-second.other_page {
    background: #ebe7dc00;
}
.breadcrumbs_main {
    color: #363636;
}

.breadcrumbs_main p {
    font-size: 15px;
}
.project_other_page {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.other_page h1.project-title {
    color: #48523A;
    font-size: 65px;
}

/*ШАГИ 1-2-3-4-5*/
.steps-header p {
    color: #48523A;
    padding: 0px 30px 0px;
}
p.step-text {
    font-size: 18px;
}
.steps-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.steps-header {
  display: flex;
  flex-direction: column;
  gap: 30px;

}
h2.analysis-title {
    padding: 22px 0px 0px 30px;
}
.steps-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.step-item {
  background: #48523A;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 70px;    padding: 30px;
  flex: 1 1 calc((100% - 80px) / 5);
}
.step_not_main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.step-number {
  width: 52px;
  height: 52px;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.extra-image {
  display: none;
}

.extra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Мобильный блок скрываем на ПК */
.steps-mobile {
  display: none;
}

/* ПРОМ ЗДАНИЯ ШАГИ */
/* Основной блок шагов */
.prom_zd_main .steps-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* Основные шаги (1-5) */
.prom_zd_main .step-item {
    background: #48523A;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 35px;
    padding: 30px;
    flex: 1 1 calc((100% - 100px)/5); /* 5 элементов в ряд */
    min-width: 0; /* чтобы flex корректно сжимался */
}

/* Блок внизу + картинки (6-8) */
.prom_zd_main .step-item.extra-image {
    flex: 3 1 38.6%; /* занимает всю ширину */
    display: flex;
    gap: 20px;
    padding: 0;
}

.prom_zd_main .step-item.extra-image img {
    flex: 1 1 0; /* растягиваем картинки равномерно */
    width: 100%;
    height: 100%;
    object-fit: cover;
}







.step-item.step-7.extra-image, .step-item.step-8.extra-image {
    padding: 0px;
}



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



.analysis-section {
    width: 100%;
}

.analysis-container {
display: flex;
    align-items: stretch;
    justify-content: space-between;
/*     flex-wrap: wrap; */
}

/* ЛЕВАЯ КОЛОНКА */
.analysis-left {
    flex: 1 1 33%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: space-between;
}
.custom-ol ol {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-size: 25px;
}
.analysis-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ПРАВАЯ КОЛОНКА */
.analysis-right {
    flex: 1 1 66%;
    display: flex;
    flex-direction: column;
    gap: 40px;justify-content: space-between;
}

/* Что включает */
.analysis-include-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
	padding: 20px 30px 30px 30px;
}

.include-title {
    font-size: 25px;
    color: #48523A;
}
.steps-header p {
    font-size: 25px;
}
/* Списки */
ol {
    list-style: none;
    counter-reset: step;
    padding-left: 0; /* убираем отступы браузера */
}

ol li {
    counter-increment: step;
    display: flex;
       max-width: 1050px;
    gap: 30px;
}

ol li::before {
    content: "/" counter(step, decimal-leading-zero);
    color: #646464;
    flex-shrink: 0;
padding: 4px 0px 0px 0px;    font-size: 20px;

}

/* Сбрасываем стандартные маркеры */
ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

/* Стиль обычного списка */
ul li {
    position: relative;
    padding-left: 22px; /* отступ под квадрат */
    margin-bottom: 10px;font-size: 22px;
}

/* Квадрат перед li */
ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px; /* выравнивание по вертикали */
    width: 13px;
    height: 13px;
    background-color: #48523A;
    display: block;
}
.footer-address.project-desc {
    max-width: 280px;
}




/* Благоустройство общественных территорий, микрорайонов  и парков */

.steps-header.new_steps div {
    width: 50%;
}
.steps-header.new_steps .blag_next p {
    width: 100%;
}
/*  КОНЕЦ Благоустройство общественных территорий, микрорайонов  и парков */

























/* ПК версия */
.include-list-pc {
    display: block;
}

.include-list-mob {
    display: none;
}



/* ПК/мобилка */
.mob-version {
    display: none;
}

/* РЕЗУЛЬТАТ */
.analysis-result-block {
    background: #48523A;
    color: white;
    padding: 23px 29px 55px;
    display: flex;
    gap: 30px;
    flex-direction: row;
    align-items: flex-start;
}

.result-title {
    font-size: 30px;
    flex: 0 0 auto;
}

.result-text {
    font-size: 25px;
    max-width: 700px;
}







/* третий блок главной  */

/* --- Стили только для стрелок и слайдера --- */

.slider {
  width: 100%;
}

.slider .slide-item {
/*   width: 330px;
  height: 409px; */
    width: 500px;
    height: 620px;

  position: relative;
  margin-right: 20px;
}

.slider-arrows {
  display: flex;
  gap: 15px;
}

.slider-prev svg,
.slider-next svg {
/*   background: none; */
/*   border: none;
  width: 38px;
  height: 38px;
  font-size: 26px;
  line-height: 36px;
  text-align: center;
  color: #48523A;
  font-family: "CenturyGothic"; */
  cursor: pointer;
    background: #48523a00;
transition: all 0.3s;
}

.slider-prev:hover,
.slider-next:hover {
/*   background: #48523A; */
/*   color: #fff; */
}
button.slider-prev:hover svg {
    background: #48523a1f;
transition: all 0.3s;
}
button.slider-next:hover svg {
    background: #48523a1f;

transition: all 0.3s;
}
/* карточки */
.slider .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  outline: 1px solid #48523A;
}

.slider .slide-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, rgba(30, 30, 30, 0) 0%, #1E1E1E 100%);
}

.slider .slide-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(61, 61, 61, 0.6);
  border: 1px solid white;
  backdrop-filter: blur(2px);
  padding: 8px 22px;
  font-size: 17px;
  color: #fff;
  font-family: "CenturyGothic";
}

.slider .slide-title {
  position: absolute;
    bottom: 30px;
    left: 35px;
  font-size: 30px;
  font-family: "CenturyGothic";
  color: #fff;
}


/* четверный блок главной */
.contact-info button.open-popup.callback-link {
    font-size: 25px;
    padding: 30px 70px;
}
.fl_col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
button.accent.portfolio_button {
    padding: 27px 80px 27px;
    width: auto;
    font-size: 20px;
}
button.project-prev, button.project-next {
    border: none;
    max-width: 58px;
    padding: 0px;
}
/* обёртка слайдера */


/* контейнер Flickity */
.second_slider .project-slider {
  position: relative;
}

/* один слайд */
.second_slider .project-slide {
  display: flex;
  width: 100%;
  height: 770px;
}
.project_desc_main, .project_desc_main p {
    font-size: 22px;
    color: hsl(0deg 0% 100% / 80%);
}
/* левая колонка */
.second_slider .project-slide-left {
  width: 640px;
  background: #48523A;
  color: #EBE7DC;
  padding: 37px 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
    flex: 1 1 33%;
}

/* текст */
.second_slider .project-title {
  font-size: 35px;
  line-height: 38px;
  text-transform: uppercase;
/*   margin-bottom: 30px; */
}


/* линия */
.second_slider .project-line {
  width: 340px;
  height: 75px;
  border: 1px solid white;
  margin: 30px 0;
}

/* картинка справа */
.second_slider .project-slide-right {
  flex: 1;
  height: 100%;
    flex: 1 1 66%;
}

.second_slider .project-slide-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}






/* КНОПКА НА ДРУГИХ СТРАНИЦАХ */
.padding-with-line.another_pudding {
    padding: 35px 0px;
}



.container-home.knopka_na_stranicah {
    display: flex;
    justify-content: center;
}


.container-home.knopka_na_stranicah .header-callback button {
    max-width: 1170px !important;
    width: 100% !important;
    width: 1170px !important;
    justify-content: center;
padding: 30px 40px;
}


/* ГАЛЕРЕЯ НА СТРАНЦИАХ */
/* ol.flickity-page-dots {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
 */
  .carousel {
    max-width: 100%;
  }

  .carousel-cell {
    width: 500px;
    height: 370px;
    margin-right: 10px;
    overflow: hidden;
  }

  .carousel-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }






/* стрелки */
.second_slider .project-arrows {
  display: flex;
  gap: 14px;
}

/* .second_slider .project-prev,
.second_slider .project-next {
  width: 60px;
  height: 60px;
  border: 1px solid white;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.second_slider .project-prev::before,
.second_slider .project-next::before {
  content: "";
  width: 14px;
  height: 14px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

.second_slider .project-prev::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.second_slider .project-next::before {
  transform: translate(-50%, -50%) rotate(-135deg);
} */


/* ====== Подвал ====== */
.footer-contact-block {
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1920px;
  width: 100%;
/*   gap: 20px; */
}

.contact-map {
  flex: 1 1 60%;
  min-height: 400px;
}

.contact-info {
  flex: 1 1 35%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
justify-content: space-between;
    padding: 20px 25px;
    align-items: flex-start;
}

.contact-title {
  font-size: 55px;
  font-family: 'CenturyGothic', sans-serif;
  text-transform: uppercase;
  line-height: 60px;
  color: #48523A;

}

.project-desc {
    display: flex;
    flex-direction: column;
    /* gap: 15px; */
    font-family: 'CenturyGothic', sans-serif;
    justify-content: space-between;
    height: 100%;font-size: 22px;
}

.project-desc div > div:first-child {
  font-size: 20px;
  opacity: 0.8;
}

.project-desc div > div:last-child {
  font-size: 30px;
  line-height: 34.5px;
max-width: 403px;
}
.fl_cont {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.footer-bottom {
    width: 100%;
    background: #48523A;
    color: white;
    padding: 30px 50px;
}

.footer-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    justify-content: space-between;
}


.footer-logo img {
  width: 322px;
  height: auto;
}
.footer_fl {
    display: flex;
    gap: 115px;
}


.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials .social-icon {
  width: 68px;
  height: 68px;
  background: #EBE7DC;
  position: relative;
}

.footer-bottom-row {
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-rights, .footer-privacy a {
  font-size: 15px;
  line-height: 16.5px;
}

.footer-privacy a {
  text-decoration: underline;
  color: white;
}

.footer-menu {
  display: flex;
  gap: 20px;
}

.footer-menu a {
  font-size: 20px;
  line-height: 22px;
  text-decoration: underline;
  color: white;
}
.foot_fl_main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
/* Другие странциы */
.include-title.ano_ti_style {
    font-weight: 600;
    color: #646464;
}






/* ====== HAMBURGER ====== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #363636;
}

.hamburger-icon {
  width: 30px;
  height: 30px;
}


/* УПРАВЛЕНИЕ ВИДИМОСТЬЮ +++++++++++++++ */
.service-item-mobile { display: none; }






.second_slider ul li::before {
    background: #fff;
}

/* --- БРЕЙКПОИНТ 1440-1024 --- */
@media (max-width: 1700px)  {
.container-home.knopka_na_stranicah .header-callback button {
    max-width: 1170px !important;
    width: 100% !important;
    justify-content: center;
    padding: 20px 40px;
}
.contact-title {
    font-size: 39px;
}

h2, h2.section-title {
    font-size: 40px;
}
.other_page h1.project-title, .blagmain .other_page h1.project-title {
    font-size: 55px;
}
ul#primary-menu {
    gap: 50px;
}
.contact-info button.open-popup.callback-link {
    font-size: 24px;
}
.prom_zdania h3 p {
    font-size: 25px;
}
.prom_zdania li {
    font-size: 16px;
}
}

@media (max-width: 1500px)  { 
.project-right video {
    height: 100%;
    width: 100%;        margin-bottom: -5px;
}
.services-info {
    min-width: auto;
}
.project-title, .other_page h1.project-title {
    font-size: 33px;
}
    h2, h2.section-title {
        font-size: 32px;
    }
.section-title {

    width: 100%;
}
.slider .slide-item {
    width: 330px;
    height: 410px;
}
p {
    font-size: 18px;
}
.service-number {

    font-size: 14px;
}
.contact-info button.open-popup.callback-link {
    font-size: 22px;
    padding: 25px 40px;
}
.contact-title {
    font-size: 32px;
}
.project-desc div > div:last-child {
    font-size: 22px;
    line-height: 34.5px;
    max-width: 293px;
}
.project-desc div > div:first-child {
    font-size: 18px;
}
.header-phone {
    font-size: 24px;
}
.header-callback .callback-link {
    font-size: 16px;
}
.header-nav a {
    color: #363636;
    font-size: 18px;
    font-family: "CenturyGothic", sans-serif;
    font-weight: 400;
    text-decoration: underline;
    transition: 0.3s;
}
ul#primary-menu {
    gap: 30px;
}

.header-logo {
    max-width: 180px;
}

.project-buttons {
    gap: 12px;
}
button {
    font-size: 18px;
    max-width: 360px;
    padding: 10px 0 12px;
}
.project-buttons.project-buttons-main {
    gap: 20px;
}
.header-callback button {
    gap: 25px;
    padding: 20px 0 20px;
    max-width: 420px;
}
.project-left {
    /* flex: 0 0 33%; */
    padding: 20px 30px 30px 30px;

    width: 33%;
}
.project-right {
    width: 67%;
}
.services-info {
    gap: 15px;
}
.second_slider .project-title {
    font-size: 25px;
    line-height: 32px;
}
.project_desc_main, .project_desc_main p, ul li {
    font-size: 16px;
}
button.accent.portfolio_button {
    padding: 17px 30px 17px;
    font-size: 14px;
}
.project-desc {

    font-size: 18px;
}
.footer-rights, .footer-privacy a {
    font-size: 12px;
}
.footer-menu a {
    font-size: 14px;
    line-height: 15px;
}
.footer-address.project-desc {
    max-width: 170px;
}
    .other_page h1.project-title,  {
        font-size: 45px;
    }
	.blagmain .other_page h1.project-title {
font-size: 35px;
}
.steps-header p {
    font-size: 20px;
}

.custom-ol li {
    font-size: 18px;
}
ol li::before {
    padding: 0px 0px 0px 0px;
    font-size: 16px;
}

.result-title {
    font-size: 22px;
}
.result-text {
    font-size: 18px;
}
}
/* конец 1500 */


@media (max-width: 1300px)  {
    .other_page h1.project-title {
        font-size: 37px;
    }
	.blagmain .other_page h1.project-title{
		font-size: 30px;
	}
 }
@media (max-width: 1240px)  {
   
	.header-callback .callback-link {

    padding: 20px 25px;
}
	button.open-popup.callback-link svg {
    width: 50px;
}
	    .project-title {
        font-size: 29px;
    }
p {
        font-size: 16px;
    }
.second-section-content {
    gap: 15px;
}
.services-info {
    padding: 15px 0px;
}
    .service-number {
        font-size: 12px;
    }
.footer_fl {
    gap: 55px;
}
}
@media (max-width: 1150px)  {    .other_page h1.project-title {
        font-size: 24px;
    }

}

/* --- БРЕЙКПОИНТ 1440-1024 --- */
@media (max-width: 1440px) and (min-width: 1024px) {
    .prom_zd_main .step-item {
        flex: 1 1 calc((100% - 60px)/3); /* 4 шага в ряд */
    }
	.step-item.step-8.extra-image, .step-item.step-7.extra-image {
		display:none;
	}




}
/* ====== RESPONSIVE ====== */
@media (max-width: 1200px) {
    .contact-info button.open-popup.callback-link {
        font-size: 18px;
    }
  .header-nav {
    gap: 30px;
  }

  .header-phone {
    font-size: 22px;
  }
}
@media (max-width: 1154px) {
	
	section.hero-section .header-callback {
    display: none;
}

    .section-title {

        max-width: 525px;
    }


}

/* --- БРЕЙКПОИНТ 1024-768 --- */
@media (max-width: 1024px) and (min-width: 768px) {
    .prom_zd_main .step-item {
        flex: 1 1 calc((100% - 40px)/2); /* 2 шага в ряд */
    }
}

@media  (min-width: 769px) {

}
/* --- БРЕЙКПОИНТ 1440-1024 --- */
@media (max-width: 1440px) and (min-width: 1024px) {

  .step-item:nth-child(-n+3) {
    flex: 1 1 calc((100% - 60px) / 4);
  }

  .step-item:nth-child(5),
  .extra-image {
/*     flex: 1 1 0; */
  }

  .extra-image {
    display: flex;
        padding: 0px;
  }
}


/* Адаптив */
@media (max-width: 1024px) {
  .footer-bottom {
    padding: 20px 30px;
  }
  .footer-logo img {
    width: 200px;
  }
  .footer-menu a {
    font-size: 16px;
  }
  .footer-socials .social-icon {
    width: 50px;
    height: 50px;
  }
  .steps-wrapper {
/*     display: none; */
flex-direction: column;
  }

  .steps-mobile {
/*     display: flex;
    flex-direction: column;
    gap: 20px; */
  }

  .step-mobile-item {
    background: #48523A;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}




@media (max-width: 992px) {
  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
        width: 70px;
        padding: 15px 0 15px;
  }

  .header-phone {
    font-size: 20px;
  }
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



.class_pc_off {
display:none;
}

/* Мобильный breakpoint */
@media (max-width: 900px) {
    .include-list-pc {
/*         display: none; */
    }
    .include-list-mob {
/*         display: block; */
    }
    .analysis-container {
        flex-direction: column;
    }
    .analysis-result-block {
        flex-direction: column;
    padding: 25px 30px 25px;
    gap: 20px;
    }
    .pc-version {
        display: none;
    }
    .mob-version {
        display: flex;
    }
}


h3.step-title.inzh_page {
    padding: 20px 0px;
}
.mobile_class {
	display:none;
}

/* --- АДАПТИВ ДО 768px --- */
@media (max-width: 768px) {
.texh_new .prom_zdania .step_page_inzh {
    gap: 20px;
}
.steps-wrapper.prom_zd_main.texh_new h3.step-title.inzh_page {
    max-width: 230px;
}
.main_per_kv .analysis-left.line-right.line-left {
    display: none;
}
.steps-header.new_steps div {
    width: 100%;
}
    h2, h2.section-title {
        font-size: 20px;
    }
.section-label {

    font-size: 18px;
}
.menu-toggle {
        order: 3;
    }
  .contact-wrapper {
           flex-direction: column-reverse;
  }
  .contact-map, .contact-info {
    flex: 1 1 100%;
    min-height: 300px;
  }
  .contact-title {
    font-size: 40px;
    line-height: 44px;
  }
  .project-desc div > div:last-child {
    font-size: 24px;
    line-height: 28px;
  }

  .second-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .slider-arrows {
display: none;
  }

  .slider-prev,
  .slider-next {
    width: 32px;
    height: 32px;
    font-size: 20px;
    line-height: 30px;
  }

  /* карточка */
  .slider .slide-item {
    width: 250px;
    height: 330px;
    margin-right: 12px;
  }

  .slider .slide-item img {
    height: 100%;
  }

  .slider .slide-gradient {
    height: 100px;
  }

  .slider .slide-tag {
    padding: 4px 8px;
    font-size: 10px;
    right: 8px;
    top: 8px;
  }

  .slider .slide-title {
    font-size: 16px;
    bottom: 15px;
    left: 15px;
  }
    .second_slider .project-title {
        font-size: 18px;
        line-height: 24px;
    }
.project-slide {
    flex-direction: column-reverse;
    justify-content: flex-end;
}
.second_slider .project-slide-right {

    max-height: 310px;
}
.second_slider .project-slide-left {
    width: 100%;
    padding: 20px 20px;
    flex: auto;
}

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .footer-menu {
    flex-wrap: wrap;
    gap: 10px;
  }


    .service-item-pc { display: none; }
    .service-item-mobile { display: block; }
    .prom_zd_main .steps-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .prom_zd_main .step-item.extra-image {
        display: none; /* скрываем картинки на мобильных */
    }
    .second-section-header, .second-section-content {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
  .section-title {
 
  }
  .services-image, .services-info {
flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
        border: 0px;
  }
  .services-info {
    align-items: self-start;
  }
  .service-item {
    justify-content: center;
    text-align: center;
  }
.service-text {

    text-align: left;
}
    .project-right.hom_right {
        display: none;
    }

    .project-left {
        width: 100%;
        max-width: none;height: 100%;
    }

section.container-fluid-second.image_black {
    background-image: url(/wp-content/uploads/2025/11/foto.jpg);
    background-color: rgba(0, 0, 0, 0.74);
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
        height: 80vh;
}
.padding-with-line.black_back {
    padding: 0px;
}
.container-home.home_height_oneh {
    height: 100%;
}


.footer-contact-block {
    flex-direction: column;
}
    .services-info {
        padding: 0px 20px 20px;
    }
.padding-with-line {
    padding-bottom: 30px;
}







    .other_page h1.project-title, .blagmain .other_page h1.project-title {
        font-size: 26px;
    }


/*СТраницы 768*/

.pereplan_main .texh_new .prom_zdania .step_page_inzh {
    gap: 20px;
}
.texh_new .prom_zdania h3 p {
    font-size: 22px;
}
.breadcrumbs_main p {
    font-size: 12px;
}
    .project-right {
        width: 100%;
    }
    .project-block {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
.steps-header.new_steps {
    flex-direction: column;
    align-items: self-start;
}
.steps-header.new_steps h2 {
    width: 100%;
}
.steps-header.new_steps p {
    width: 100%;
    padding: 0px 30px 0px;
}
.steps-header p {
    font-size: 16px;
}
.prom_zd_main .step-item {
    gap: 10px;align-items: flex-start;
}
h3.step-title.inzh_page {
    padding-top: 0px;
    padding-bottom: 0px;
max-width: 250px;

}
.prom_zdania .step_page_inzh {
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    flex-direction: row;
    display: flex;
}

    .prom_zdania h3 p {
        font-size: 22px;
    }

.analysis-step-number {
    font-size: 14px;
    padding-top: 0px;
}
.analysis-steps-wrapper {
    gap: 20px;
}
.analysis-step-sublist {
    gap: 10px;
    padding-left: 52px;
}
.analysis-step-subitem::before {

    top: 3px;
}
.include-title {
    font-size: 19px;
}

.custom-ol ol {
    gap: 10px;
}
    .custom-ol li {
        font-size: 16px;
    }
    ol li::before {
        padding: 1px 0px 0px 0px;
        font-size: 14px;
    }
.analysis-right {
    gap: 0px;
}
.step-item {

    flex-direction: row;
    gap: 10px;
    padding: 30px;
    flex: 1 1 calc((100% - 80px) / 5);
    align-items: center;
    justify-content: space-between;
}
.step-text.inzh_page.text_inzh {
    text-align: right;
}

.analysis-step-title p {
    font-size: 18px;
}
.analysis-step-subitem {
    font-size: 16px;
}
.container-home.knopka_na_stranicah .header-callback button {
    max-width: 1170px !important;
    width: 100% !important;
    justify-content: center;
    padding: 20px 40px;
}
.carousel-cell {
    width: 360px;
    height: 260px;
}
.analysis-result-block.news_st_tech {
    gap: 20px;
}



.class_pc_off {
display:block;
    height: 85vh;
    background-size: cover;
    background-size: cover;
    background-position: 50% 20%;        margin-top: 20px;
}
	.analysis-left.delete_image_all {
    display: none;
}
.analysis-step-title {
    font-size: 18px;
}
.analysis-step {
    gap: 10px;
}
.inzh_main_page .step-item {
 flex-direction: column;
    display: flex;
    align-items: center;
}
.inzh_main_page .step-text.inzh_page.text_inzh {
    text-align: center;
    width: 100%;
}
.padding-with-line.other_style.for_a_mobile .analysis-left.line-right.line-left {
    display: none;
}
h3 {
    font-size: 19px;
}
}
/*768 конец*/


@media (max-width: 600px) {
    .contact-title {
        font-size: 20px;
        line-height: 24px;
    }
    .project-desc div > div:first-child {
        font-size: 15px;
    }
    .project-desc div > div:last-child {
        font-size: 18px;
        line-height: 24px;
    }
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-item {
        height: 350px;
    }
    .portfolio-title {
        font-size: 20px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
    .footer_fl {
        gap: 25px;
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    .footer-row {
        align-items: center;
    }
    .footer-address.project-desc {
        max-width: none;
        width: 100%;
        display: flex;
        align-items: center;text-align:center;
    }
    .project-desc {
        gap: 30px;
    }
}



@media (max-width: 576px) {
    button {
        max-width: 100%;
    }
.breadcrumbs_main p {
    font-size: 12px;
}
.mobile_class {
	display:block;
         order: 3;
        width: 50px;
        display: flex;
        height: 50px;
        align-items: center;
        justify-content: center;
}

.mobile_class_main {
    order: 2;
    display: flex;
    align-items: center;
}
  .head {
    gap: 10px;
justify-content: space-between;
  }

  .header-logo {
    order: 1;
  }

  .header-icons {
display: none;
  }
}









