/*----глобальные стили----*/
    html, body {
      margin: 0;
      padding: 0;
    }

    html{
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body{
      font-family: 'Open Sans', sans-serif;
      background: #F9F9F9;
      min-height: 100%;
      display: grid;
      grid-template-rows: auto 1fr auto;
      position: relative;
      overflow-x: hidden;
    }

    ul,li {
      margin: 0px;
      padding: 0px;
      
    }

    h1,h2,h3,h4,p{
      margin: 0px;
      font-weight: normal;
    }

    .wrapper{
      font-family: 'Open Sans', sans-serif;
      min-height: 100%;
      display: grid !important;
      grid-template-rows: auto 1fr auto;
      position: relative;
      width: 100%;
    }

    .upper{
      text-transform: uppercase;
    }

/*----шрифты----*/

@font-face {
  font-family: "Montserrat-800";
  src: 
    url("Montserrat-ExtraBold.woff2") format("woff2"),
    url("Montserrat-ExtraBold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
  font-family: "Montserrat-700";
  src: 
    url("Montserrat-Bold.woff2") format("woff2"),
    url("Montserrat-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
  font-family: "Montserrat-600";
  src: 
  url("Montserrat-SemiBold.woff2") format("woff2"),
    url("Montserrat-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
}

@font-face {
  font-family: "Montserrat-500";
  src: 
    url("Montserrat-Medium.woff2") format("woff2"),
    url("Montserrat-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
}

@font-face {
  font-family: "Montserrat-400";
  src: 
   url("Montserrat-Regular.woff2") format("woff2"),
    url("Montserrat-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
  font-family: "Montserrat-300";
  src: 
    url("Montserrat-Light.woff2") format("woff2"),
    url("Montserrat-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
}

@keyframes opacity {
  0% { opacity: 0; },
  100% { opacity: 1; }; 
}



@-webkit-keyframes color_change {
  0% { color: rgba(255, 255, 255, 1) },
  100% { color: rgba(239, 25, 35, 1); };
}

@-moz-keyframes color_change {
  0% { color: rgba(32, 47, 54, 1); },
  100% { color: rgba(239, 25, 35, 1); };
}

@-ms-keyframes color_change {
  0% { color: rgba(32, 47, 54, 1); },
  100% { color: rgba(239, 25, 35, 1); };
}

@-o-keyframes color_change {
  0% { color: rgba(32, 47, 54, 1); },
  100% { color: rgba(239, 25, 35, 1); };
}

@keyframes color_change {
  0% { color: rgba(32, 47, 54, 1); },
  100% { color: rgba(239, 25, 35, 1); };
}

@keyframes blink {
  0%, 100% {opacity: 1;}
  50% {opacity: 0;}
}


@keyframes glowing {
  0% { background-color: rgba(37, 210, 102, 1); opacity: 0.07;}
  25% { background-color: rgba(37, 210, 102, 1); opacity: 0.5;}
  50% { background-color: rgba(37, 210, 102, 1); opacity: 1;}
  75% { background-color: rgba(37, 210, 102, 1); opacity: 0.5;}
  100% { background-color: rgba(37, 210, 102, 1); opacity: 0.07;}
}

/*----------!!!------------ГЛАВНАЯ СТРАНИЦА----------!!!-----------------*/

/*----------------------СТИЛИ---------------------------*/

.main__container{
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-left: 62px;
  padding-right: 62px;
}

.full__container{
  max-width: 8000px;
  width: 100%;
  position: relative;
}


/*----------------------ШАПКА ---------------------------*/

header{
  background: #252525;
  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.15);

  width: 100%;
  
  
}

.header_content{
  max-width: 1840px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-top: 8px;
  padding-bottom: 10px;
}

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

.header_content_uppart_search_form{
  display: flex;
  max-width: 636px;
  width: 100%;
  border: 2px solid rgba(255, 119, 53, 1);
  border-radius: 8px;
  background: rgba(255, 119, 53, 1);
}

.header_content_uppart_search_container{
  border-radius: 6px;
}

.header_content_uppart_search_container input{
  border: 0px;
  outline: none;
  height: 100%;
  width: 494px;
  padding-left: 15px;
  height: 49px;
  border-radius: 6px;
  font-family: "Montserrat-400", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: rgba(160, 163, 165, 1);
}

.header_content_uppart_search_btn{
  background: transparent;
  border: 0px;
  outline: none;
  cursor: pointer;
  width: 56px;
}

.header_content_uppart_rightpart {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  column-gap: 20px;
}

.header_content_uppart_contacts{
  display: flex;
  flex-direction: column;
  margin-left: 93px;
}

.header_content_uppart_contacts a:nth-child(1){
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
}

.header_content_uppart_contacts a:nth-child(2){
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.063rem;
  text-decoration: none;
  color: rgba(255, 119, 53, 1);
  display: flex;
  column-gap: 6px;
  align-items: center;
}

.it__know {
	display: grid;
 	 grid-template-columns: 1fr 2fr;
	gap: 20px;
}

.header_content_uppart_contacts > a:nth-child(2) > img:nth-child(1) {
  height: 10px;
}

.header_content_uppart_getconsult{
    background: #EF7A37;
    font-family: "Montserrat-600", sans-serif;
    font-size: 1.25rem;
    line-height: 26px;
    text-decoration: none;
    color: #fff;
    border: 0px;
    border-radius: 5px;
    padding-left: 20px;
    padding-right: 20px;
    cursor: pointer;
    padding-top: 5px;
    padding-bottom: 5px;
}

.header_content_uppart_calcbtn{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 40px;
  border-radius: 5px;
  background: linear-gradient(136.01deg, #FF9924 0.85%, #FF5A0A 99.15%);
  text-decoration: none;
  cursor: pointer; 
}

.header_content_uppart_messengers{
  display: flex;
  max-width: 173px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.header_content_uppart_basket{
  background: transparent;
  border: 0px;
  position: relative;
  cursor: pointer;
}

.header_content_uppart_basket_count{
  position: absolute;
  top: -5px;
  right: 0;
  font-family: "Montserrat-600", sans-serif;
  font-size: 0.625rem;
  line-height: 20px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 119, 53, 1);
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header_content_downpart_nav_list{
  display: flex;
  justify-content: space-between;
  max-width: 1210px;
  width: 100%;
  margin: 0 auto;
  list-style-type: none;
  align-items: center;
}

.header_content_downpart_nav_list_item a{
   font-family: "Montserrat-500", sans-serif;
  font-size: 1rem;
  line-height: 30px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  display: flex;
  column-gap: 10px;
}

.header_content_downpart_nav_list_item_wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 0px;
  outline: none;
}


.header_content_downpart_nav_list_item:hover{
  position: relative;
}

.header_content_downpart_nav_list_item::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: rgba(255, 119, 53, 1);
  width: 0;
  transition: 0.3s;
}

.header_content_downpart_nav_list_item:hover:after {
  width: 100%;
}


.wrapper > header:nth-child(1) {
  margin-bottom: -1px;
}





.header_content_downpart_nav {
    list-style-type: none; /* Убираем маркеры списка */
    padding: 0;
    margin: 0;
}

.header_content_downpart_nav_list_item {
    position: relative; /* Для позиционирования выпадающего меню */
}

.dropdown_menu {
    display: none; /* Скрываем выпадающее меню по умолчанию */
    position: absolute; /* Позиционируем относительно родителя */
    top: 100%; /* Сдвигаем вниз под родительский элемент */
    left: 0;
    background-color:#252525;
    border: 1px solid #252525;
    z-index: 1000; /* Устанавливаем уровень отображения выше других элементов */
    width: 224px;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 4px;
    padding-bottom: 15px;
    list-style-type: none;
}

.dropdown_menu li > a{
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 1);
  padding-top: 17px;


}

.dropdown_menu li:hover a{
   color: rgba(255, 119, 53, 1);
}

/* Показываем выпадающее меню при наведении на родительский элемент */
.header_content_downpart_nav_list_item:hover .dropdown_menu {
    display: block;
}

.dropdown_menu img{
  display: none;
}

.dropdown_menu > li:hover img{
  display: block;
}

.dropdown_menu > li > a{
   font-family: "Montserrat-500", sans-serif;
  font-size: 1rem;
  line-height: 15px;
  color: rgba(255, 255, 255, 1);
  display: flex;
  justify-content: space-between;
}

.dropdown_menu > li:last-child a{
  border-bottom: 0;
}






/*----------------------ПЕРВЫЙ ЭКРАН---------------------------*/

.firstsec_mainpage{
  background: url(/wp-content/uploads/2025/04/firstsec_mainpage_background.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 500px;
  display: flex;
  align-items: center;
}

.firstsec_mainpage.fsec {
	display: flex;
    justify-content: center;
}

.firstsec_mainpage_content{
  display: flex;
  padding-left: 195px;  
  column-gap: 44px;
}

.fsec .firstsec_mainpage_content {
	padding-left: unset; 
}

.firstsec_mainpage_content_rightpart{
  display: flex;
  flex-direction: column;
  row-gap: 45px;
}

.firstsec_mainpage_content_rightpart h1{
  font-family: "Montserrat-600", sans-serif;
  font-size: 3.438rem;
  line-height: 64px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  max-width: 1274px;
}

.fsec .firstsec_mainpage_content_rightpart h1 {
  font-size: 2.475rem;
  color: #EF7A37;
}

.fsec .firstsec_mainpage_content_rightpart p {
	color: #525252;
	font-family: "Montserrat-500", sans-serif;
}

.fsec__subtitle {
	font-size: 1.5rem;
    color: #252525 !important;
	line-height: 1.5;
	max-width: 560px;
}

.firstsec_mainpage_content_rightpart a{
  font-family: "Montserrat-600", sans-serif;
    font-size: 1.3rem;
    line-height: 26px;
    text-decoration: none;
    color: #fff;
    display: flex;
    column-gap: 10px;
    align-items: center;
    background: #EF7A37;
    border-radius: 5px;
    max-width: 251px;
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
    justify-content: center;
}

.fsec .firstsec_mainpage_content_rightpart a p {
	color: #fff;
	text-transform: uppercase;
}

.fsec .firstsec_mainpage_content_rightpart a {
	max-width: 348px;
	font-size: 1.05rem;
}


.firstsec_mainpage_content_leftpart > img:nth-child(1) {
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.firstsec_mainpage_content {
  align-items: baseline;
}

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

.firstsec_image_right{
  position: absolute;
  right: 100px;
  bottom: 0;
}

.firstsec_mainpage{
  position: relative;
}

.firstsec_mainpage_content_leftpart > img:nth-child(1) {
  margin-top: 0px;
  padding-top: 0px;
  margin-bottom: -50px;
}



/*----------------------СЕКЦИЯ ИНЖЕНЕРНЫЕ СИСТЕМЫ---------------------------*/

.engineeringsystemssec_mainpage{
  padding-top: 50px;
}

.engineeringsystemssec_mainpage_content_header{
  margin: 0 auto;
  margin-bottom: 50px;
}

.engineeringsystemssec_mainpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.25rem;
  line-height: 46px;
  text-decoration: none;
  color: #333;
}

.engineeringsystemssec_mainpage_content_header_line{
  margin-top: 25px;
  margin-bottom: 25px;
  height: 3px;
  background: rgba(255, 119, 53, 1);
  max-width: 166px;
  width: 100%;
}

.engineeringsystemssec_mainpage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 30px;
  text-decoration: none;
  color: #525252;
  max-width: 820px;	
}




.engineeringsystemssec_mainpage_content_list{
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  margin-bottom: 30px;
}

.engineeringsystemssec_mainpage_content_list_item{
  display: grid;
    grid-template-columns: 1.8fr 2fr;
  column-gap: 67px;
  background: #fff;
  border-radius: 9px; 
  height: 100%;
  align-items: center;
	    box-shadow: 0px 0px 10px #00000010;
}

.engineeringsystemssec_mainpage_content_list_item h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.875rem;
  line-height: 26px;
  text-decoration: none;
  color: rgba(255, 119, 53, 1);
  margin-bottom: 36px;
}

.engineeringsystemssec_mainpage_content_list_item p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 31px;
  text-decoration: none;
     color: #525252;
  margin-bottom: 36px;
}



.engineeringsystemssec_mainpage_content_list_item_title a {
  display: flex;
  column-gap: 10px;
  align-items: center;
  background: #EF7A37;
  border-radius: 5px;
  max-width: 254px;
  padding: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  border: 0px;
  outline: none;
  cursor: pointer;
  padding-top: 6px;
    padding-bottom: 6px;
}

.engineeringsystemssec_mainpage_content_list_item_title > a > p {
  font-family: "Montserrat-600", sans-serif;
    font-size: 1.2rem;
    line-height: 26px;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
    margin-bottom: 0;
}


.engineeringsystemssec_mainpage_content_list_item > img:nth-child(1){
  height: 300px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
}










.wrap {
  width: 100vw;
  margin: auto;
}

.items-wrap {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 20px;
}

.items-wrap:before,
.items-wrap:after {
  content: "";
  height: 100%;
  top: 0;
  width: 10%;
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.items-wrap:before {
  left: 0;
}
.items-wrap:after {
  right: 0;
  
}
.items {
  flex-shrink: 0;
  display: flex;
  gap: 30px;
  counter-reset: item;
  justify-content: space-around;
  min-width: 100%;
}
.item {
  flex: 0 0 auto;
  counter-increment: item;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.1s ease-in-out;
  overflow: hidden;
  position: relative;
  max-width: 226px;
  width: 100%;
  max-height: 153px;
  padding: 20px;
  border-radius: 10px;
  background: #EDEDED;
  text-decoration: none;
  font-family: "Montserrat-600", sans-serif;
  font-size: 0.875rem;
  text-decoration: none;
  color: rgba(13, 18, 23, 1);
}

.item:hover {
  background: rgba(255, 255, 255, 1);
}

.marquee {
  animation: scroll 40s linear infinite;
}
.reverce {
  animation-direction: reverse;
}
.items-wrap:hover .marquee {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 20px));
  }
}

.item:hover {
  cursor: pointer;
}

.engineeringsystemssec_mainpage_line{
  padding-top: 70px;
  padding-bottom: 70px;
}




/*----------------------СЕКЦИЯ КАК МЫ РАБОТАЕМ---------------------------*/


.whywork_mainpage{
  padding-top: 50px;
  padding-bottom: 50px;
}

.whywork_mainpage_content_header{
  margin: 0 auto;
  margin-bottom: 60px;
}

.whywork_mainpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 2.063rem;
  line-height: 38px;
  text-decoration: none;
  color: #333;
}

.whywork_mainpage_content_header_line{
  margin-top: 25px;
  margin-bottom: 25px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 166px;
  width: 100%;
}

.whywork_mainpage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 24px;
  text-decoration: none;
  color: #525252;
}

.worksec_mainpage_content_main_container:nth-child(2) {
  padding-top: 40px;
}









.worksec_mainpage_content_main{
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 16px;
}


.worksec_mainpage_content_main_item_count{
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  font-family: "Montserrat-500", sans-serif;
  font-size: 2.5rem;
  line-height: 49px;
  text-decoration: none;
  color: rgba(255, 119, 53, 1);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: -25px;
}

.worksec_mainpage_content_main_item_count p{
  padding-left: 28px;
  margin-top: -5px;
}

.worksec_mainpage_content_main_item{
  max-width: 434px;
  width: 100%;
  display: flex;
  column-gap: 25px;
}

.worksec_mainpage_content_main_item_rightpart h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.75rem;
  text-decoration: none;
  color: #333;
  margin-top: 5px;
}

.worksec_mainpage_content_main_item_rightpart > p:nth-child(3){
  font-family: "Montserrat-400", sans-serif;
  font-size: 1.5rem;
  line-height: 25px;
  text-decoration: none;
  color: #525252;
  margin-top: 20px;
}

.worksec_mainpage_content_main_line{
  height: 2px;
  background: rgba(255, 119, 53, 1);
  width: 100vw;
}


.worksec_mainpage_content_main_container:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) > img:nth-child(1) {
  transform: rotate(180deg);
}

.worksec_mainpage_content_main_container:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) > img:nth-child(1) {
  transform: rotate(180deg);
}

.worksec_mainpage_content_main_line {
  margin-top: -12px;
}

.worksec_mainpage_content_downpart > div:nth-child(1) {
  margin-top: -9px;
}

.worksec_mainpage_content_main_container:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
  padding-top: 0px;
}

.worksec_mainpage_content_main_container:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(2) {
  padding-top: 26px;
}

.worksec_mainpage_content_main_container:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(2) {
  padding-top: 26px;
}

.worksec_mainpage_content_downpart{
  margin-bottom: 42px;
}




.worksec_mainpage_content_main_item_rightpart > p:nth-child(3) {
  margin-bottom: 48px;
}

.worksec_mainpage_content_main_item {
  align-content: flex-end;
}

.worksec_mainpage_content_main_item > div:nth-child(1) {
  height: 326px;
  align-self: last baseline;
}

.worksec_mainpage_content_main_container:nth-child(1) > div:nth-child(1) > div:nth-child(1) > div:nth-child(1) {
  align-self: flex-start;
}

.worksec_mainpage_content_main_container:nth-child(1) > div:nth-child(1) > div:nth-child(2) > div:nth-child(1) {
  align-self: flex-start;
}

.worksec_mainpage_content_main_item {
  height: 320px;
}

.worksec_mainpage_content_main_line {
  margin-top: -8px;
}

.worksec_mainpage_content_main_container:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > img:nth-child(1) {
  transform: rotate(180deg);
}

.worksec_mainpage_content_main_container:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(2) {
  padding-top: 26px;
}

.worksec_mainpage_content_main_container:nth-child(1) > div:nth-child(1) > div:nth-child(3) > div:nth-child(1) > img:nth-child(1) {
margin-top: 7px;
}




/*----------------------СЕКЦИЯ РАССЧИТАЙТЕ СТОИМОСТЬ---------------------------*/


.calcpricesec_mainpage{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: -2px;
  margin-bottom: -2px;
  position: relative;
}

.bg__calc {
	background: #EDEDED;
}

.calcpricesec_mainpage_content{
  position: relative; /* Устанавливаем относительное позиционирование для контента внутри блока */
  z-index: 2; /* Устанавливаем z-index выше псевдоэлемента, чтобы текст был виден */
}

.calcpricesec_mainpage_content_header{
  margin: 0 auto;
  margin-bottom: 60px;
}

.calcpricesec_mainpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 2.063rem;
  line-height: 38px;
  text-decoration: none;
  color: #333;
}

.calcpricesec_mainpage_content_header_line{
  margin-top: 25px;
  margin-bottom: 25px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 166px;
  width: 100%;
}

.calcpricesec_mainpage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 24px;
  text-decoration: none;
  color: #525252;
}



.tabs {
    display: flex;
    cursor: pointer;
	background: #f9f9f9;
	border-radius: 8px;
	justify-content: space-between;
	padding-left: 62px;
    padding-right: 62px;
}

.tab {
    padding: 14px 20px;
    background-color: transparent;
    border-radius: 8px 8px 0px 0px;
    font-family: "Montserrat-600", sans-serif;
    font-size: 1.4rem;
    line-height: 30px;
    text-decoration: none;
    color: #333;
}




.tab.active {
    border-bottom: none; /* Убираем нижнюю границу у активного таба */
    color: rgba(255, 119, 53, 1);
}

.tab-content {
    padding: 50px 0;
    background: #EDEDED;
    border-radius: 0px 8px 8px 8px;
}

.content {
    display: none; /* Скрываем все содержимое по умолчанию */
}

.content.active {
    display: block; /* Показываем только активное содержимое */
}

input[type=number]::-webkit-inner-spin-button,
  input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
    outline: none !important;
}

 input[type=number]:focus {
            outline: none; /* Убираем обводку */
        }

/* Убираем стрелки в Firefox */
  input[type=number] {
    -moz-appearance: textfield; /* Убираем стрелки в Firefox */
}

.tab-content_square{
  display: flex;
  column-gap: 17px;
  align-items: center;
  margin-bottom: 50px;
}

.tab-content_square p{
    font-family: "Montserrat-600", sans-serif;
    font-size: 1.125rem;
    line-height: 21px;
    text-decoration: none;
    color: #333333;
}

.tab-content_square b{
    font-family: "Montserrat-600", sans-serif;
    font-size: 1.125rem;
    line-height: 21px;
    text-decoration: none;
    color: rgba(255, 119, 53, 1);
}

.tab-content_square input{
    width: 66px;
    font-family: "Montserrat-500", sans-serif;
    font-size: 1.125rem;
    line-height: 11px;
    text-decoration: none;
    color: rgba(13, 18, 23, 1);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 7px;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.tab-content_list{
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}



.tab-content_list_item{
  background: #f9f9f9;
  border-radius: 8px;
  padding-top: 20px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 50px;
}

.tab-content_list_item_main{
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.tab-content_list_item_header{
  display: flex;
  column-gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.tab-content_list_item_header h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.5rem;
  line-height: 26px;
  text-decoration: none;
  color: rgba(255, 119, 53, 1);
}

.tab-content_list_item_filter{
  margin-top: 56px;
  max-width: 302px;
  width: 100%;
}





.calcpricesec_input input{
  width: 33px;
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.063rem;
  line-height: 11px;
  text-decoration: none;
  color: #333333;
  border: 0px;
  padding: 0px;
  text-align: center;
  margin-left: 7px;
  margin-right: 7px;
  background: transparent;
}

input {outline:none;}

.calcpricesec_input{
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
}

.calcpricesec__item-minus{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px !important;
  height: 40px;
  background: rgba(75, 94, 113, 1);
  border: 0px;
  cursor: pointer;
  padding: 0px;
  border-radius: 7px;
}

.calcpricesec__item-plus{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px !important;
  height: 40px;
  background: rgba(75, 94, 113, 1);
  border: 0px;
  cursor: pointer;
  padding: 0px;
  outline: none;
  border: 0px;
  border-radius: 7px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type='number'] {
    -moz-appearance: textfield;
}



.calcpricesec__item-plus {
  z-index: 100;
}

.calcpricesec__item-plus > svg:nth-child(1) {
  z-index: -1;
}

.calcpricesec__item-minus {
  z-index: 100;
}

.calcpricesec__item-minus > svg:nth-child(1) {
  z-index: -1;
}


.calcpricesec_input{
  max-width: 132px;
  width: 100%;
  background: transparent;
  border-radius: 8px;
  margin-top: 0px;
}

.tab-content_list_item_filter_count b{
   font-family: "Montserrat-600", sans-serif;
  font-size: 1.125rem;
  line-height: 21px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 17px;
  display: flex;
}


.tab-content_list_item_filter b{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.125rem;
  line-height: 21px;
  text-decoration: none;
  color: #333333;
  margin-bottom: 17px;
  display: flex;
}









.demoCustomCheckbox {
    display: none;
}

.demoCustomCheckbox + label {
    position: relative;
    padding-left: 40px;
    height: 1.5em;
    display: flex;
    align-items: center;
    color: #000;
    cursor: pointer;
    user-select: none;
}

.demoCustomCheckbox + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1.4em;
    height: 1.4em;
    border: 1px solid #ccc;
    border-radius: 3px;
    border: 1px solid rgba(195, 198, 202, 1);
    background: #ffffff;
}

.demoCustomCheckbox:checked + label::before {
    background: transparent;
    background-image: url('/wp-content/uploads/2025/04/checkbox_ok.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.tab-content_list_item_filter > label {
  font-family: "Montserrat-500", sans-serif;
  font-size: 1rem;
  line-height: 21px;
  text-decoration: none;
  color: #333333;
  margin-bottom: 17px;
}

.tab-content_list_item_filter_checkboxes{
  display: flex;
  flex-direction: column;
}

.tab-content_list_item:nth-child(2) > div:nth-child(2) {
  justify-content: flex-start;
  column-gap: 60px;
}






.my-form {
  --_clr-primary: #666;
  --_clr-hover: #f33195;
  --_clr-checked: #127acf;
  row-gap: 17px;
}
.my-form > div {
  --_clr-current: var(--_clr-primary);

  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.my-form > div + div {
  margin-block-start: 0.5rem;
}
.my-form label {
  cursor: pointer;
  color: var(--_clr-current);
  transition: color 150ms ease-in-out;
  padding-left: 10px;
  font-family: "Montserrat-500", sans-serif;
  font-size: 1rem;
  color: #333333;
  line-height: 11px;
}

/* styled radio */
.my-form input[type="radio"] {
  appearance: none;
  outline: none;
  width: 1.5rem;
  height: 1.5rem;
  aspect-ratio: 1;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 1);
  border: 1px solid var(--_clr-current);
  border-radius: 50%;
  display: grid;
  place-content: center;
  cursor: pointer;
  position: relative;
}
.my-form input[type="radio"]::after {
  content: "";
  position: absolute;
  inset: 0.25rem;
  opacity: 0;
  scale: 0;
  transition:
    opacity 150ms ease-in-out,
    scale 150ms ease-in-out;
  background-color: rgba(33, 40, 50, 1);
  border-radius: inherit;
}

.my-form label:hover,
.my-form input[type="radio"]:focus-visible,
.my-form input[type="radio"]:focus-visible + label,
.my-form input[type="radio"]:hover,
.my-form input[type="radio"]:hover + label {
  --_clr-current: rgba(255, 90, 10, 1);
}
.my-form input[type="radio"]:focus-visible::after,
.my-form input[type="radio"]:hover::after {
  opacity: 0.5;
  scale: 1;
  background-color: rgba(255, 90, 10, 1);
}

.my-form input[type="radio"]:checked + label:not(:hover),
.my-form input[type="radio"]:checked:not(:hover) {
  --_clr-current: rgba(255, 255, 255, 1);
}
.my-form input[type="radio"]:checked::after {
  opacity: 1;
  scale: 1;
}






.my-form {
  display: flex;
  column-gap: 10px;
  flex-direction: column;
  max-width: 290px;
  width: 100%;
}

.my-form > div + div {
  margin-block-start: 0;
}

.my-form input[type="radio"] {
  margin: 0;
}


.tab-content_list_item_project b{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.125rem;
  line-height: 21px;
  text-decoration: none;
  color: #333333;
  margin-bottom: 17px;
  display: flex;
}




.my-form-file-upload {
    position: relative;
    display: inline-block;
    border-radius: 5px;
    margin-left: 15px;
}

.file-input2 {
    display: none; /* Скрываем стандартный input типа file */
}

.file-label2 {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px !important;
    padding-right: 20px;
    background: linear-gradient(136.01deg, #4E5B65 0.85%, #15151B 99.15%);

    display: flex;
    column-gap: 10px;
    align-items: center;
    color: rgba(132, 132, 132, 1); /* Цвет текста */
    cursor: pointer; /* Указатель при наведении */
    border: none; /* Убираем рамку */
    border-radius: 5px; /* Скругляем углы */
}


#fileInput2 {
  display: none;
}

.file-label2 {
  display: flex;
}

.file-label2 > p:nth-child(2) {
  font-family: "Montserrat-600", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 1);
  line-height: 26px;
  border: none !important;
  white-space: nowrap;
}


.calcpricesec_mainpage_form_btn{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: linear-gradient(136.01deg, #FF9924 0.85%, #FF5A0A 99.15%);
  padding-top: 10px;
  padding-bottom: 10px;
  column-gap: 10px;
  border: 0px;
  max-width: 298px;
  width: 100%;
  cursor: pointer;
}

.calcpricesec_mainpage_form_btn p{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1rem;
  color: rgba(13, 18, 23, 1);
  line-height: 26px;
}


.content > p:nth-child(1) {
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.125rem;
  line-height: 21px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
}


.calcpricesec_mainpage_form_total{
  max-width: 660px;
  width: 100%;
  border-radius: 8px;
  background: rgba(223, 227, 231, 1);
  padding: 35px;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: 33px;
  display: flex;
  column-gap: 25px;
  justify-content: space-between;
  align-items: flex-start;
}

.calcpricesec_mainpage_form_total_title {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.calcpricesec_mainpage_form_total_title p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 30px;
  text-decoration: none;
  color: rgba(0, 0, 0, 1);
}

.calcpricesec_mainpage_form_total_title b{
  font-family: "Montserrat-700", sans-serif;
  font-size: 1.25rem;
  line-height: 30px;
  text-decoration: none;
  color: rgba(0, 0, 0, 1);
}

.calcpricesec_mainpage_form_total > img:nth-child(1) {
  margin-top: -15px;
}



/*----------------------СЕКЦИЯ НАШИ РАБОТЫ---------------------------*/

.ourworkssec_mainpage{
  padding-bottom: 100px;
}

.ourworkssec_mainpage_content_header{
  margin: 0 auto;
  margin-bottom: 50px;
}

.ourworkssec_mainpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 2.063rem;
  line-height: 38px;
  text-decoration: none;
  color: #333;
}

.ourworkssec_mainpage_content_header_line{
  margin-top: 25px;
  margin-bottom: 25px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 100px;
  width: 100%;
}

.ourworkssec_mainpage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 24px;
  text-decoration: none;
  color: #525252;
}








.tabs_ourworkssec_mainpage {
    display: flex;
    cursor: pointer;
}

.tab_ourworkssec_mainpage {
    padding: 14px 20px;
    background-color: transparent;
    border-radius: 8px 8px 0px 0px;
    font-family: "Montserrat-500", sans-serif;
    font-size: 1.5rem;
    line-height: 30px;
    text-decoration: none;
    color: #525252;
}


.tab_ourworkssec_mainpage.active {
    box-shadow: 0px 0px 10px #00000010;
    border-bottom: none; /* Убираем нижнюю границу у активного таба */
    color: rgba(255, 119, 53, 1);
}

.tab-content_ourworkssec_mainpage {
    padding: 50px;
    border-radius: 0px 8px 8px 8px;
}

.content_ourworkssec_mainpage {
    display: none; /* Скрываем все содержимое по умолчанию */
}

.content_ourworkssec_mainpage.active {
    display: block; /* Показываем только активное содержимое */
}




.ourworkssec_mainpage_content_list_item{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  background: rgba(255, 255, 255, 1);
  max-width: 430px;
  width: 100%;
  border-radius: 15px;
}

.ourworkssec_mainpage_content_list_item_uppart > img:nth-child(1) {
  margin-top: -1px;
  width: 430px;
  border-radius: 8px;
  height: 325px;
  object-fit: cover;
}

.ourworkssec_mainpage_content_list_item_uppart_title{
  padding-left: 20px;
  padding-right: 20px;
}

.ourworkssec_mainpage_content_list_item_uppart_title h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.45rem;
  line-height: 1.3;
  text-decoration: none;
  color: rgba(13, 18, 23, 1);
  margin-bottom: 31px;
  margin-top: 25px;
}

.ourworkssec_mainpage_content_list_item_uppart_title > ul{
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 7px;
}

.ourworkssec_mainpage_content_list_item_uppart_title > ul > li, .ourworkssec_mainpage_content_list_item_uppart_title > p {
  font-family: "Montserrat-500", sans-serif;
  font-size: 1rem;
  line-height: 19px;
  text-decoration: none;
  color: rgba(33, 40, 50, 1);
}

.ourworkssec_mainpage_content_list_item_uppart_title > p a {
  color: #EF7A37;	
}


.ourworkssec_mainpage_content_list_item_downpart_list{
  margin-bottom: 20px;
}

.ourworkssec_mainpage_content_list_item_downpart{
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 25px;
  margin-top: 35px;	
}

.ourworkssec_mainpage_content_list_item_downpart_list_item b{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.125rem;
  line-height: 44px;
  text-decoration: none;
  color: rgba(255, 119, 53, 1);
}

.ourworkssec_mainpage_content_list_item_downpart_list_item p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.125rem;
  line-height: 44px;
  text-decoration: none;
  color: rgba(33, 40, 50, 1);
  margin-right: 5px;
}

.ourworkssec_mainpage_content_list_item_downpart_list_item{
  display: flex;
}

.ourworkssec_mainpage_content_list_item_downpart_list_item img{
  margin-right: 10px;
}


.ourworkssec_mainpage_content_list_item_downpart a {
  display: flex;
  column-gap: 10px;
  align-items: center;
  background: #EF7A37;
  border-radius: 5px;
  max-width: 149px;
  padding: 0;
  padding-top: 0px;
  padding-bottom: 0px;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  border: 0px;
  outline: none;
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0 auto;
  margin-bottom: 10px;
}

.ourworkssec_mainpage_content_list_item_downpart > a > p {
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.2rem;
  line-height: 26px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  margin-bottom: 0;
}

.ourworkssec_mainpage_content_list{
  display: grid;
  justify-content: center;
  gap: 30px;
  grid-template-columns: repeat(4, 1fr);
}




/*----------------------СЕКЦИЯ КТО МЫ И ЧЕМ ЗАНИМАЕМСЯ---------------------------*/


.whatarewedoingsec_mainpage{
  background: #efefef;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
  margin-top: -2px;
  margin-bottom: -2px;
  position: relative;
}

.whatarewedoingsec_mainpage > img:nth-child(1){
  position: absolute;
  top: 100px;
  right: 95px;
	    opacity: 0.5;
}

.whatarewedoingsec_mainpage_content_header{
  margin: 0 auto;
}

.whatarewedoingsec_mainpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 2.063rem;
  line-height: 38px;
  text-decoration: none;
  color: #333;
}

.whatarewedoingsec_mainpage_content_header_line{
  margin-top: 25px;
  margin-bottom: 40px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 100px;
  width: 100%;
}

.whatarewedoingsec_mainpage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 24px;
  text-decoration: none;
  max-width: 740px;
  width: 100%;
  margin-bottom: 25px;
}

.whatarewedoingsec_mainpage_content_header b{
  font-family: "Montserrat-700", sans-serif;
  font-size: 1.5rem;
  line-height: 24px;
  text-decoration: none;
}

.whatarewedoingsec_mainpage_content_list{
  display: flex;
  justify-content: center;
  column-gap: 20px;
  padding-top: 100px;
  z-index: 10;
  position: relative;
}

.whatarewedoingsec_mainpage_content_list_item{
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  padding-left: 27px;
  padding-right: 17px;
  padding-bottom: 30px;
  max-width: 241px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  height: 435px;
}

.whatarewedoingsec_mainpage_content_list_item img{
  max-width: 121px;
  margin: 0 auto;
  height: 110px;
}

.whatarewedoingsec_mainpage_content_list_item h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.375rem;
  line-height: 21px;
  text-decoration: none;
  color: #333;
  margin-top: 30px;
  margin-bottom: 40px;
}

.whatarewedoingsec_mainpage_content_list_item p{
  font-family: "Montserrat-400", sans-serif;
  font-size: 1.125rem;
  line-height: 21px;
  text-decoration: none;
  color: #525252;
  max-width: 241px;
}

.whatarewedoingsec_mainpage_content_header > p:nth-child(4) {
  margin-bottom: 0;
}

.whatarewedoingsec_mainpage_content_header > p:nth-child(3) > img:nth-child(1) {
  margin-left: 5px;
  margin-right: 5px;
}

.whatarewedoingsec_mainpage_content_header > p:nth-child(3) {
  max-width: 640px;
}

/*----------------------СЕКЦИЯ ПРИМЕРЫ МОНТАЖА---------------------------*/

.examplessec_mainpage{
  padding-top: 50px;
  padding-bottom: 100px; 
}

.examplessec_mainpage_content_header{
  margin: 0 auto;
}

.examplessec_mainpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.95rem;
  line-height: 38px;
  text-decoration: none;
  color: #333;
  padding-top: 50px;
}

.examplessec_mainpage_content_header_line{
  margin-top: 25px;
  margin-bottom: 40px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 100px;
  width: 100%;
}

.examplessec_mainpage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 24px;
  text-decoration: none;
  color: #525252;
  max-width: 880px;
  width: 100%;
  margin-bottom: 50px;
}


.examplessec_mainpage_gallery{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 10px;
  row-gap: 10px;
  max-width: 1784px;
  width: 100%;
  margin: 0 auto;
}

.examplessec_mainpage_gallery_item > img{
 width: 100%;
 height: 100%;
  object-fit: cover;
  border-radius: 8px;
}


/*----------------------СЕКЦИЯ НУЖЕН НАДЕЖНЫЙ БИЗНЕС ПАРТНЕР---------------------------*/

.businesspartnersec_mainpage{
  background: #f2f2f2;
  padding-top: 50px;
  padding-bottom: 65px; 
}

.businesspartnersec_mainpage_content_header{
  margin: 0 auto;
}

.businesspartnersec_mainpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.95rem;
  line-height: 38px;
  text-decoration: none;
  color: #333;
  padding-top: 15px;
}

.businesspartnersec_mainpage_content_header_line{
  margin-top: 25px;
  margin-bottom: 40px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 100px;
  width: 100%;
}

.businesspartnersec_mainpage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 30px;
  text-decoration: none;
  color: #525252;
  max-width: 1015px;
  width: 100%;
  margin-bottom: 50px;
}

.businesspartnersec_mainpage_content_advantages{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.businesspartnersec_mainpage_content_advantages_leftpart_list h4{
   font-family: "Montserrat-700", sans-serif;
  font-size: 2rem;
  line-height: 39px;
  text-decoration: none;
  color: #333;
  margin-bottom: 10px;
}

.businesspartnersec_mainpage_content_advantages_leftpart_list{
  display: flex;
  flex-direction: column;
}

.businesspartnersec_mainpage_content_advantages_leftpart_list_item{
  display: flex;
  column-gap: 20px;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.businesspartnersec_mainpage_content_advantages_leftpart_list_item img{
  width: 30px;
  height: 30px;
}

.businesspartnersec_mainpage_content_advantages_leftpart_list_item p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.438rem;
  line-height: 39px;
  text-decoration: none;
  color: #525252;
}

.businesspartnersec_mainpage_content_advantages_rightpart_gendir_title{
  background: rgba(13, 18, 23, 0.8);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 15px;
  max-width: 225px;
  max-height: 90px;


  z-index: 2;
  position: relative;
  align-self: end;
  margin: 0 auto;
  margin-bottom: 13px;
}

.businesspartnersec_mainpage_content_advantages_rightpart_gendir h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.25rem;
  line-height: 24px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 10px;
}

.businesspartnersec_mainpage_content_advantages_rightpart_gendir p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 0.938rem;
  line-height: 18px;
  text-decoration: none;
  color: rgba(223, 227, 231, 1);
}

.businesspartnersec_mainpage_content_advantages_rightpart_gendir {
  position: relative;
  width: 320px;
  display: flex;
}

.businesspartnersec_mainpage_content_advantages_rightpart_gendir > img:nth-child(1) {
  position: absolute;
  bottom: 0;
}





.businesspartnersec_mainpage_content_advantages_rightpart{
  display: flex;
}

.businesspartnersec_mainpage_content_advantages_rightpart_partners{
  background: rgba(13, 18, 23, 1);
  border-radius: 8px 8px 0px 0px;
  padding: 30px;
  max-width: 370px;
  width: 100%;
}

.businesspartnersec_mainpage_content_advantages_rightpart_partners h4{
  margin-bottom: 25px;
  font-family: "Montserrat-600", sans-serif;
  font-size: 2rem;
  line-height: 39px;
  text-decoration: none;
  color: rgba(223, 227, 231, 1);
}

.businesspartnersec_mainpage_content_advantages_rightpart_partners h4{
  margin-bottom: 35px;
  font-family: "Montserrat-600", sans-serif;
  font-size: 2rem;
  line-height: 39px;
  text-decoration: none;
  color: rgba(223, 227, 231, 1);
}

.businesspartnersec_mainpage_content_advantages_rightpart_partners_list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  row-gap: 50px;
}


.businesspartnersec_mainpage_content_form_inputs button {
  display: flex;
  column-gap: 10px;
  align-items: center;
  background: #EF7A37;
  border-radius: 5px;
  max-width: 370px;
  padding: 0;
  padding-top: 0px;
  padding-bottom: 0px;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-decoration: none;
  border: 0px;
  outline: none;
  cursor: pointer;
  padding-top: 11px;
  padding-bottom: 12px;
}

.businesspartnersec_mainpage_content_form_container{
  background: rgba(223, 227, 231, 1);
  border-radius: 8px;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 25px;
  padding-right: 25px;
  margin-top: -5px;
  z-index: 2;
  position: relative;
}

.businesspartnersec_mainpage_content_form h4{
  font-family: "Montserrat-400", sans-serif;
  font-size: 1.438rem;
  line-height: 28px;
  text-decoration: none;
  color: rgba(13, 18, 23, 1);
  padding-bottom: 25px;
}

.businesspartnersec_mainpage_content_form b{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.438rem;
  line-height: 28px;
  text-decoration: none;
  color: rgba(13, 18, 23, 1);
}

.businesspartnersec_mainpage_content_form_line{
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 100px;
  width: 100%;
  margin-bottom: 30px;
}

.businesspartnersec_mainpage_content_form_inputs{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.businesspartnersec_mainpage_content_form_inputs input{
  display: flex;
  padding-top: 17px;
  padding-bottom: 17px;
  line-height: 17px;
  padding-left: 32px;
  padding-right: 32px;
  font-family: "Montserrat-500", sans-serif;
  font-size: 0.938rem;
  text-decoration: none;
  color: rgba(89, 89, 89, 1);
  border: 1px solid rgba(212, 218, 227, 1);
  max-width: 304px;
  width: 100%;
  border-radius: 5px;
}



.businesspartnersec_mainpage_content_form_inputs > button > p {
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.3rem;
  line-height: 27px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  margin-bottom: 0;
}


/*----------------------СЕКЦИЯ УЗЕЛ ВВОДА ВОДОСНАБЖЕНИЯ---------------------------*/


.knotsec_mainpage{
  padding-top: 50px;
  padding-bottom: 143px; 
}

.knotsec_mainpage_content_header{
  margin: 0 auto;
}

.knotsec_mainpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.95rem;
  line-height: 38px;
  text-decoration: none;
  color: #333;
  padding-top: 50px;
}

.knotsec_mainpage_content_header_line{
  margin-top: 25px;
  margin-bottom: 40px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 100px;
  width: 100%;
}

.knotsec_mainpage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 30px;
  text-decoration: none;
  color: #525252;
  margin-bottom: 50px;
}


.knotsec_mainpage_content_scheme{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 748px;
  margin: 0 auto;
}

.knotsec_mainpage_content_scheme a{
  position: absolute;
}


.knotsec_mainpage_content_scheme > a:nth-child(2) {
  top: 120px;
  left: 52%;
}

.knotsec_mainpage_content_scheme > a:nth-child(3) {
  top: 190px;
  left: 74%;
}

.knotsec_mainpage_content_scheme > a:nth-child(4) {
  top: 267px;
  left: 88%;
}

.knotsec_mainpage_content_scheme > a:nth-child(5) {
  top: 400px;
  left: 91%;
}

.knotsec_mainpage_content_scheme > a:nth-child(6) {
  top: 480px;
  left: 75%;
}

.knotsec_mainpage_content_scheme > a:nth-child(7) {
  top: 215px;
  left: 26%;
}

.knotsec_mainpage_content_scheme > a:nth-child(8) {
  top: 274px;
  left: 16%;
}

.knotsec_mainpage_content_scheme > a:nth-child(9) {
  top: 414px;
  left: 11%;
}

.knotsec_mainpage_content_scheme > a:nth-child(10) {
  top: 540px;
  left: 6%;
}

.knotsec_mainpage_content_scheme > a:nth-child(11) {
  top: 700px;
  left: 0%;
}

.knotsec_mainpage_content_scheme > a:nth-child(12) {
  top: 900px;
  left: 14%;
}

.knotsec_mainpage_content_scheme > a:nth-child(13) {
  top: 659px;
  left: 49%;
}

.knotsec_mainpage_content_scheme > a:nth-child(14) {
  top: 715px;
  left: 35%;
}

.knotsec_mainpage_content_scheme > a:nth-child(15) {
  top: 805px;
  left: 45%;
}

.knotsec_mainpage_content_scheme > a:nth-child(16) {
  top: 795px;
  left: 60%;
}

.knotsec_mainpage_content_scheme > a:nth-child(17) {
  top: 705px;
  left: 69%;
}

.knotsec_mainpage_content_scheme > a:nth-child(18) {
  top: 646px;
  left: 94%;
}

.knotsec_mainpage_content_scheme > a:nth-child(19) {
  top: 840px;
  left: 94%;
}





/*----------------------СЕКЦИЯ КОНТАКТЫ ИНФО---------------------------*/

.contactsinfosec_mainpage{
  padding-top: 65px;
  padding-bottom: 50px; 
}

.contactsinfosec_mainpage_content_header{
  margin: 0 auto;
}

.contactsinfosec_mainpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.95rem;
  line-height: 38px;
  text-decoration: none;
  color: #333;
}

.contactsinfosec_mainpage_content_header_line{
  margin-top: 25px;
  margin-bottom: 25px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 258px;
  width: 100%;
}

.contactsinfosec_mainpage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 30px;
  text-decoration: none;
  color: #525252;
  margin-bottom: 50px;
}

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

.yandexmap_mainpage {
  height: 673px;
  width: 681px;
}



.contactssec_mainpage_content_main_links h4 {
  font-size: 1.5rem !important;
  line-height: 26px !important;
  margin-bottom: 20px !important;
}

.contactssec_mainpage_content_main_location h4 {
  font-size: 1.5rem !important;
  line-height: 26px !important;
  margin-bottom: 20px !important;
}

.contactssec_mainpage_content_main_pay h4 {
  font-size: 1.5rem !important;
  line-height: 26px !important;
  margin-bottom: 20px !important;
}

.firstsec_contactspage_content_main_links_messengers{
  display: flex;
  flex-direction: column;
}

.firstsec_contactspage_content_main_links_messengers.l__message {
	 flex-direction: row;
}

.firstsec_contactspage_content_main_links_messengers_container{
  display: flex;
  column-gap: 18px;
  align-items: center;
}

.firstsec_contactspage_content_main_links_messengers h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.5rem !important;
  line-height: 26px !important;
  margin-bottom: 20px !important;
  color: #333;
}


.contactssec_mainpage_content_main_links {
  margin-bottom: 60px;
}

.contactssec_mainpage_content_main_links_messengers{
  align-items: unset !important;
  margin-top: 59px !important;
  padding-top: 0 !important;
}

.contactssec_mainpage_content_main_pay {
  margin-top: 59px !important;
}

.contactssec_mainpage_content_main_pay_copy {
  margin: 0 !important;
}







/*-------------------------МОДАЛКА3-------------------------------*/

.container_modal3{
  max-width: 400px;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 35px;
  padding-bottom: 60px;
  background: rgba(255, 255, 255, 1);
  box-shadow: -6px 6px 50px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  border-radius: 8px;
}

.container_modal3 h2{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.875rem;
  color: rgba(11, 18, 25, 1);
  line-height: 40px;
  text-decoration: none;
  margin-bottom: 26px;
}

.container_modal3 p:nth-child(4){
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  color: rgba(33, 40, 50, 1);
  line-height: 20px;
  text-decoration: none;
  margin-bottom: 26px;
}

.container_modal3 b{
  font-family: "Montserrat-300", sans-serif;
  font-size: 0.938rem;
  color: rgba(255, 119, 53, 1);
  line-height: 18px;
  text-decoration: none;
}

.container_modal3 p:nth-child(5){
  font-family: "Montserrat-400", sans-serif;
  font-size: 0.938rem;
  color: rgba(132, 132, 132, 1);
  line-height: 18px;
  text-decoration: none;
  margin-bottom: 26px;
}


.custom-checkbox3 {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.custom-checkbox3 input[type="checkbox"] {
    display: none; /* Скрываем стандартный чекбокс */
}

.custom-checkbox3 label {
    padding-left: 30px; /* Отступ для текста */
    position: relative;
    font-family: "Montserrat-400", sans-serif;
    font-size: 0.813rem;
    line-height: 21px;
    color: rgba(105, 109, 112, 1);
    cursor: pointer;
}

.custom-checkbox3 label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px; /* Ширина кастомного чекбокса */
    height: 24px; /* Высота кастомного чекбокса */
    border: 1px solid rgba(33, 40, 50, 1); /* Цвет рамки */
    background-color: white; /* Цвет фона */
    border-radius: 3px;
}

.custom-checkbox3 input[type="checkbox"]:checked + label::before {
    background-color: rgba(33, 40, 50, 1); /* Цвет фона при отметке */
}

.custom-checkbox3 input[type="checkbox"]:checked + label::after {
    content: '✔'; /* Галочка при отметке */
    position: absolute;
    left: 7px;
    top: 1px;
    color: white; /* Цвет галочки */
}

.custom-checkbox3 input[type="checkbox"]:checked + label::after {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-checkbox3 > label:nth-child(2) {
  margin-left: 0px;
}

.custom-checkbox3 > label:nth-child(2) > p:nth-child(1) {
  margin-left: 34px;
  margin-top: -19px;
}

#container_modal3 > form:nth-child(6) > div:nth-child(4) > p:nth-child(1) {
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  line-height: 19px;
  color: rgba(33, 40, 50, 1);
}


#container_modal3 > form:nth-child(6) > div:nth-child(3) > p:nth-child(1) {
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  color: rgba(33, 40, 50, 1);
  line-height: 19px;
}


.container_modal3 {
  padding-top: 35px;
}

#container_modal3 > p:nth-child(3) {
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  color: rgba(33, 40, 50, 1);
  line-height: 20px;
  text-decoration: none;
  margin-bottom: 26px;
}

form.modal_order_form:nth-child(5) > div:nth-child(3) > p:nth-child(1) {
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  color: rgba(33, 40, 50, 1);
  line-height: 19px;
}























/*----------------------ФУТЕР---------------------------*/

footer{
  background: #252525;
  overflow: hidden;
}



.footer_content_uppart{
  background: rgba(11, 18, 25, 1);
}

.footer_content_uppart_title{
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  padding-top: 31px;
  padding-bottom: 31px;
  margin: 0 auto;
  align-items: center;

}

.footer_content_uppart p{
  font-family: "Montserrat-400", sans-serif;
  font-size: 1.25rem;
  line-height: 25px;
  color: rgba(255, 255, 255, 1);
}

.footer_content_uppart a{
  font-family: "Montserrat-600", sans-serif;
  font-size: 0.938rem;
  line-height: 25px;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  background: rgba(255, 119, 53, 1);
  border-radius: 5px;
  padding-top: 15px;
  padding-bottom: 15px;
  max-width: 121px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_content_downpart{
  position: relative;
}

.footer_content_downpart_container{
  max-width: 1707px;
  width: 100%;
  margin: 0 auto;
  padding-top: 44px;
  padding-bottom: 51px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_content_downpart_container_upbtn{
  position: absolute;
  right: 97px;
  top: 0;
  z-index: 100;
}

.footer_content_downpart_logo{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}

.footer_content_downpart_logo_title{
  max-width: 161px;
  display: flex;
  flex-direction: column;
  row-gap: 2px;
  width: 100%;
  margin-top: 56px;
}

.footer_content_downpart_logo_title h4{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1rem;
  line-height: 18px;
  color: rgba(255, 255, 255, 1);
}

.footer_content_downpart_logo_title p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 0.75rem;
  line-height: 18px;
  color: rgba(156, 156, 156, 1);
}

.footer_content_downpart_navmenu{
  display: flex;
  column-gap: 45px;
	    z-index: 2;
}

.footer_content_downpart_navmenu_list{
  display: flex;
  flex-direction: column;
  list-style-type: none;
  row-gap: 18px;
}





.footer_content_downpart_navmenu_list_item a{
  font-family: "Montserrat-400", sans-serif;
  font-size: 1.125rem;
  line-height: 18px;
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  padding-bottom: 5px;
}

.footer_content_downpart_navmenu_list_item a:hover{
  position: relative;
}

.footer_content_downpart_navmenu_list_item a::after {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: rgba(255, 119, 53, 1);
  width: 0;
  transition: 0.3s;
}

.footer_content_downpart_navmenu_list_item a:hover:after {
  width: 100%;
}

.footer_content_downpart_subscribe{
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.footer_content_downpart_subscribe h4{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.375rem;
  line-height: 27px;
  color: rgba(255, 255, 255, 1);
}

.footer_content_downpart_subscribe_form{
  display: flex;
  column-gap: 15px;
}

.footer_content_downpart_subscribe_form input{
  max-width: 287px;
  width: 100%;
  padding-top: 4px;
  padding-bottom: 4px;
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.063rem;
  line-height: 26px;
  color: rgba(99, 99, 99, 1);
  padding-left: 25px;
  outline: none;
  border: 0;
  border-radius: 4px;
  display: flex;
}

.footer_content_downpart_subscribe_form button{
  background: #EF7A37;
  border: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
}

.footer_content_downpart_contacts{
  position: relative;
}

.footer_content_downpart_contacts h4{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.375rem;
  line-height: 27px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 16px;
}

.footer_content_downpart_contacts > a:nth-child(2){
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.875rem;
  line-height: 23px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 16px;
  text-decoration: none;
  margin-bottom: 27px;
  display: flex;
}

.footer_content_downpart_contacts > a:nth-child(3){
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 14px;
  color: rgba(255, 121, 45, 1);
  text-decoration: none;
  margin-bottom: 29px;
  display: flex;
  column-gap: 10px;
  align-items: center;
}

.footer_content_downpart_contacts_container{
  display: flex;
  align-items: center;
  column-gap: 56px;
  padding-right: 97px;
}

.footer_content_downpart_contacts_container > a:nth-child(1){
  font-family: "Montserrat-500", sans-serif;
  font-size: 1rem;
  color: rgba(27, 27, 27, 1);
  text-decoration: none;
  background: #EF7A37;
  max-width: 145px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 30px;
  padding-right: 30px;
}

.footer_content_downpart_contacts_container_messengers{
  display: flex;
  align-items: center;
  width: 179px;
  column-gap: 16px;
  justify-content: space-between;
}

.footer_image{
  position: absolute;
  top: 1px;
  right: 79px;
	z-index: 1;
}


.footer_content_downpart_contacts > a:nth-child(2) {
  z-index: 10;
  position: relative;
}

.footer_content_downpart_contacts > a:nth-child(3) {
  z-index: 10;
}

.footer_content_downpart_contacts_container > a:nth-child(1) {
  z-index: 10;
  position: relative;
}

.footer_content_downpart_contacts_container_messengers {
  z-index: 10;
  position: relative;
}





















































/*-----------!!!--------------СТРАНИЦА КОНТАКТЫ-------!!!-----------------------*/

.contactssec_mainpage{
  padding-top: 65px;
  padding-bottom: 100px;
}

.contactssec_mainpage_content_header{
  margin: 0 auto;
  margin-bottom: 50px;
}

.contactssec_mainpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 2.063rem;
  line-height: 38px;
  text-decoration: none;
  color: #333;
}

.contactssec_mainpage_content_header_line{
  margin-top: 23px;
  margin-bottom: 50px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 256px;
  width: 100%;
}

.contactssec_mainpage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.438rem;
  line-height: 28px;
  text-decoration: none;
  color: rgba(89, 89, 89, 1);
  max-width: 1074px;
  width: 100%;
}

.contactssec_mainpage_main{
  display: flex;
  flex-direction: column;
}

.firstsec_contactspage{
  padding-top: 5px;
}

.firstsec_contactspage_content_header{
  margin: 0 auto;
}

.firstsec_contactspage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 2.75rem;
  line-height: 46px;
  text-decoration: none;
  color: #333;
}

.firstsec_contactspage_content_header_line{
  margin-top: 25px;
  margin-bottom: 25px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 166px;
  width: 100%;
}

.firstsec_contactspage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 24px;
  text-decoration: none;
  color: #525252;
}



.firstsec_contactspage_content_main{
  display: flex;
  justify-content: space-between;
  max-width: 1248px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 100px;
  column-gap: 22px;
  margin-top: 100px;
}

.firstsec_contactspage_content_main_links{
  max-width: 408px;
  width: 100%;
}

.firstsec_contactspage_content_main_location{
  max-width: 408px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.firstsec_contactspage_content_main_pay{
  max-width: 408px;
  width: 100%;
}


.firstsec_contactspage_content_main_links h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 2.063rem;
  line-height: 38px;
  color: #333;
  text-decoration: none;
  margin-bottom: 50px;
}

.firstsec_contactspage_content_main_links_item{
  display: flex;
  column-gap: 13px;
  align-items: center;
}

.firstsec_contactspage_content_main_links_item {
  margin-bottom: 20px;
}

.firstsec_contactspage_content_main_links_item > a{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  color: #525252;
  text-decoration: none;
  line-height: 24px;
}

.firstsec_contactspage_content_main_links_item > p{
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  line-height: 32px;
  color: rgba(0, 0, 0, 1);
  text-decoration: none;
}

.firstsec_contactspage_content_main_links_item > img{
  width: 24px;
  height: 24px;
}

.firstsec_contactspage_content_main_links_messengers{
  display: flex;
  max-width: 215px;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 15px;
}

.firstsec_contactspage_content_main_links_item:nth-child(3) > a:nth-child(3) {
  color: rgba(255, 119, 53, 1);
  text-decoration: underline;
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.125rem;
}

.firstsec_contactspage_content_main_location h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 2.063rem;
  line-height: 38px;
  color: #333;
  text-decoration: none;
  margin-bottom: 50px;
}

.firstsec_contactspage_content_main_location_item{
  display: flex;
  column-gap: 13px;
  align-items: flex-start;
}

.firstsec_contactspage_content_main_location_item > a{
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  line-height: 32px;
  color: #525252;
  text-decoration: none;
}

.firstsec_contactspage_content_main_location_item > p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 23px;
  color: #525252;
  text-decoration: none;
}


.firstsec_contactspage_content_main_location_item:nth-child(2) > p:nth-child(2) {
  margin-bottom: 20px;
}


.firstsec_contactspage_content_main_pay h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 2.063rem;
  line-height: 38px;
  color: #333;
  text-decoration: none;
  margin-bottom: 50px;
}

.firstsec_contactspage_content_main_pay_item{
  display: flex;
  column-gap: 13px;
  align-items: flex-start;
}

.firstsec_contactspage_content_main_pay_item > a{
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  line-height: 32px;
  color: rgba(0, 0, 0, 1);
  text-decoration: none;
}

.firstsec_contactspage_content_main_pay_item > p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 23px;
  color: #525252;
  text-decoration: none;
  margin-bottom: 20px;
}


.firstsec_contactspage_content_main_pay_copy{
  max-width: 234px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  background: linear-gradient(136.01deg, #4E5B65 0.85%, #15151B 99.15%);
  border: 0;
  border-radius: 5px;
  font-family: "Montserrat-600", sans-serif;
  font-size: 1rem;
  line-height: 26px;
  color: rgba(255, 255, 255, 1);
  cursor: pointer;
  margin: 0 auto;
}


.formsec_secondpage{
  margin-bottom: -2px;
  margin-top: -2px;
}

.yandexmap {
  height: 673px;
}


[class*="ymaps-2"][class*="-ground-pane"] {
    filter: grayscale(1);
}

/*----------------------СЕКЦИЯ ОБРАТНАЯ СВЯЗЬ---------------------------*/

.formsec_mainpage{
  background: url(/wp-content/uploads/2025/04/formsec_mainpage_background.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.formsec_mainpage_content{
  padding-top: 95px;
  padding-bottom: 95px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.formsec_mainpage_content_header{
  margin: 0 auto;
  margin-bottom: 25px;
  max-width: 854px;
  width: 100%;
}

.formsec_mainpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 2.063rem;
  line-height: 38px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
}

.formsec_mainpage_content_header_line{
  margin-top: 15px;
  margin-bottom: 15px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 100px;
  width: 100%;
}

.formsec_mainpage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1rem;
  line-height: 24px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
}

.formsec_mainpage_image{
  position: absolute;
  top: 0;
  left: 0;
}

.formsec_mainpage_content_form_container{
  width: 100%;
}

.formsec_mainpage_content_form_container_form{
  display: flex;
  justify-content: center;
  column-gap: 16px;
}

.formsec_mainpage_content_form_container_form > input{
  max-width: 190px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 32px;
  padding-right: 52px;
  border-radius: 5px;
  border: 0px;
  outline: none;
}

.formsec_mainpage_content_form_container_form > input::placeholder {
  font-family: "Montserrat-500", sans-serif;
  font-size: 0.938rem;
  line-height: 18px;
  text-decoration: none;
  color: rgba(132, 132, 132, 1);
}

.formsec_mainpage_content_form_container_form button {
  display: flex;
  column-gap: 10px;
  align-items: center;
  background: rgba(255, 119, 53, 1);
  border-radius: 5px;
  max-width: 271px;
  width: 100%;
  text-decoration: none;
  justify-content: center;
  border: 0px;
  outline: none;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 54px;
  padding-right: 54px;
  cursor: pointer;
}

.formsec_mainpage_content_form_container_form button > p{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.3rem;
  line-height: 26px;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}







/*-----------!!!--------------СТРАНИЦА ВАКАНСИИ-------!!!-----------------------*/

.firstsec_vacancypage{
  padding-top: 5px;
  background: #F9F9F9;
}

.firstsec_vacancypage_content {
  
}

.firstsec_vacancypage_content_header{
  margin: 0 auto;
  margin-bottom: 50px;
}

.firstsec_vacancypage_content_header_links{
  display: flex;
  column-gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.firstsec_vacancypage_content_header_links a{
  font-family: "Montserrat-400", sans-serif;
  font-size: 0.875rem;
  line-height: 26px;
  text-decoration: none;
  color: #525252;
}


.firstsec_vacancypage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 2.75rem;
  line-height: 46px;
  text-decoration: none;
  color: #333333;
}

.firstsec_vacancypage_content_header_line{
  margin-top: 25px;
  margin-bottom: 25px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 166px;
  width: 100%;
}

.firstsec_vacancypage_content_main{
  margin-top: 50px;
  margin-bottom: 10rem;	
}


.firstsec_vacancypage_content_main_leftpart_container{
  background: rgba(245, 247, 248, 1);
  border-radius: 8px;
  padding-top: 35px;
  padding-bottom: 35px;
  padding-left: 25px;
  padding-right: 25px;
  
}

.firstsec_vacancypage_content_main_leftpart_container h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.5rem;
  line-height: 26px;
  text-decoration: none;
  color: rgba(32, 47, 54, 1);
}

.vac__bottom {
	display: flex;
    justify-content: space-between;
    align-items: end;
}

.firstsec_vacancypage_content_main_leftpart_line{
  margin-top: 9px;
  margin-bottom: 32px;
  background: rgba(255, 119, 53, 1);
  height: 3px;
  width: 50px;
}

.firstsec_vacancypage_content_main_leftpart_links{
  display: flex;
  flex-direction: column;
  row-gap: 17px;
  max-width: 335px;
  width: 100%;
}

.firstsec_vacancypage_content_main_leftpart_links a{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1rem;
  line-height: 11px;
  text-decoration: none;
  color: rgba(33, 40, 50, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(204, 204, 204, 1);
}

.firstsec_vacancypage_content_main_leftpart_links img{
  display: none;
}

.firstsec_vacancypage_content_main_leftpart_links > a:hover img{
  display: block;
  height: 11px;
}

.firstsec_vacancypage_content_main_leftpart_links > a:hover{
  color: rgba(255, 119, 53, 1);
}

.firstsec_vacancypage_content_main_rightpart_list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 80px;
}

.firstsec_vacancypage_content_main_rightpart_list_item{
  display: flex;
  flex-direction: column;
  padding-top: 33px;
  padding-bottom: 33px;
  padding-left: 15px;
  padding-right: 15px;
  box-shadow: 0px 0px 10px #00000010;
  border-radius: 8px;
}

.firstsec_vacancypage_content_main_rightpart_list_item_header_leftpart h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 2.063rem;
  line-height: 38px;
  text-decoration: none;
  color: #333;
  max-width: 490px;
}



.firstsec_vacancypage_content_main_rightpart_list_item_header_leftpart{
  display: flex;
  column-gap: 15px;
  align-items: center;
}

.firstsec_vacancypage_content_main_rightpart_list_item_header_rightpart{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.firstsec_vacancypage_content_main_rightpart_list_item_header_rightpart p{
   font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 26px;
  text-decoration: none;
  color: rgba(75, 94, 113, 1);
  letter-spacing: -1px;

  font-family: "Montserrat-400", sans-serif;
  color: #525252;
}

.firstsec_vacancypage_content_main_rightpart_list_item_header_rightpart b{
   font-family: "Montserrat-600", sans-serif;
  font-size: 1.25rem;
  line-height: 26px;
  text-decoration: none;
  color: rgba(255, 119, 53, 1);
}

.firstsec_vacancypage_content_main_rightpart_list_item_list{
  margin-top: 20px;
  padding-left: 20px;
  margin-bottom: 20px;
}

.firstsec_vacancypage_content_main_rightpart_list_item_list li{
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  line-height: 22px;
  text-decoration: none;
  color: #525252;
}

.firstsec_vacancypage_content_main_rightpart_list_item_btn {
  max-width: 134px;
  width: 100%;
  display: flex;
  text-decoration:  none;
  justify-content: center;
  border: 0px;
  outline: none;
  padding: 5px 32px;
  cursor: pointer;
  column-gap: 10px;
  align-items: center;
  background: #EF7A37;
  border-radius: 5px;
}

.firstsec_vacancypage_content_main_rightpart_list_item_btn {
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.2rem;
  line-height: 26px;
  text-decoration: none;
 color: #fff;
  white-space: nowrap;
  align-self: flex-end;
}

.sobes_vacancypage{
  padding-top: 100px;
  padding-bottom: 50px;
  background: #F9F9F9;
}

.sobes_vacancypage_content{
  background: url(/wp-content/uploads/2025/04/sobes_vacancypage_background.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 48px;
  padding-bottom: 63px;
  border-radius: 12px;
}

.sobes_vacancypage_content_container{
  margin: 0 auto;
  max-width: 880px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  align-items: center;
}

.sobes_vacancypage_content_container h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 4rem;
  line-height: 51px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  max-width: 460px;
}

.sobes_vacancypage_content_container_title h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.25rem;
  line-height: 24px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 15px;
}

.sobes_vacancypage_content_container_title a{
  max-width: 367px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 17px;
  padding-bottom: 17px;
  background: linear-gradient(136.01deg, #4E5B65 0.85%, #15151B 99.15%);
  border: 0;
  border-radius: 5px;
  font-family: "Montserrat-600", sans-serif;
  font-size: 1rem;
  line-height: 26px;
  color: rgba(255, 255, 255, 1);
  cursor: pointer;
  text-decoration: none;
  column-gap: 10px;
}










/*-----------!!!--------------СТРАНИЦА БАЗА ЗНАНИЙ-------!!!-----------------------*/

.firstsec_basepage {
  padding-top: 5px;
}

.firstsec_basepage_content_header{
  margin-bottom: 25px;
}

.firstsec_newspage_content_main{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.firstsec_newspage_content_main_item{
  border-radius: 8px;
  overflow: hidden;
  max-width: 380px;
  width: 100%;
  box-shadow: 0px 0px 10px #00000010;
}

.firstsec_newspage_content_main_item_container{
  padding-left: 15px;
  padding-right: 15px;
}




.firstsec_newspage_content_main_leftpart_container {
  max-height: 227px;

}

.firstsec_newspage_content_main_item_date{
  display: flex;
  align-items: center;
  column-gap: 7px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.firstsec_newspage_content_main_item_date p{
  font-family: "Montserrat-400", sans-serif;
  font-size: 0.875rem;
  line-height: 21px;
  text-decoration: none;
  color: rgba(11, 18, 25, 0.4) !important;
  margin-bottom: 0 !important;
}

.firstsec_newspage_content_main_item_container h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 0.875rem;
  line-height: 21px;
  text-decoration: none;
  color: #252525
  margin-bottom: 15px;
}

.firstsec_newspage_content_main_item_date p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 0.875rem;
  line-height: 21px;
  text-decoration: none;
  color: #525252 !important;
  margin-bottom: 25px;
  max-height: 149px;
}

.limited-text {
    display: -webkit-box; /* Используем flexbox для ограничения строк */
    -webkit-box-orient: vertical; /* Указываем направление */
    -webkit-line-clamp: 7; /* Ограничиваем до 7 строк */
    overflow: hidden; /* Скрываем переполнение */
    text-overflow: ellipsis; /* Добавляем многоточие */
    line-height: 21px; /* Высота строки (можно настроить) */
    font-family: "Montserrat-500", sans-serif;
    font-size: 0.875rem;
    line-height: 21px;
    text-decoration: none;
    color: #525252 !important;
    margin-bottom: 25px;
    max-height: 149px;
}

.limited-header {
    display: -webkit-box; /* Используем flexbox для ограничения строк */
    -webkit-box-orient: vertical; /* Указываем направление */
    -webkit-line-clamp: 3; /* Ограничиваем до 7 строк */
    overflow: hidden; /* Скрываем переполнение */
    text-overflow: ellipsis; /* Добавляем многоточие */
    line-height: 21px; /* Высота строки (можно настроить) */
}

.firstsec_newspage_content_main_item_container a{
  font-family: "Montserrat-400", sans-serif;
  font-size: 1.2rem;
  line-height: 28px;
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
  padding-top: 6px;
  padding-bottom: 6px;
  max-width: 95px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: rgba(255, 119, 53, 1);
  margin-bottom: 15px;
}

.firstsec_newspage_content_main_item > img:nth-child(1) {
  border-radius: 8px 8px 0px 0px;
  width: 100%;
  max-height: 223px;
    object-fit: cover;	
}

.blogsec_blogsecblogpage_navbar{
  display: flex;
  column-gap: 6px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
   margin-bottom: 110px;
  margin-top: 30px;
}

.blogsec_blogsecblogpage_navbar a{
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  line-height: 28px;
  text-decoration: none;
  color: #fff;
  background: #252525;
  text-decoration: none;
  border-radius: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blogsec_blogsecblogpage_navbar a:last-child > img{
  transform: rotate(180deg);
}

.blogsec_blogsecblogpage_navbar_active{
  background: rgba(255, 119, 53, 1) !important;
  color: rgba(255, 255, 255, 1) !important;
}






/*-----------!!!--------------СТРАНИЦА БАЗА ЗНАНИЙ ЗАПИСЬ-------!!!-----------------------*/

.firstsec_newsitempage{
  padding-top: 5px;
  padding-bottom: 100px;
  margin: 0;
}

.firstsec_baseitempage_content_header{
  margin-bottom: 25px;
}

.firstsec_newsitempage_content_main_leftpart {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}

.firstsec_baseitempage_content_main{
  margin-top: 0;
}

.firstsec_newsitempage_content_main_rightpart_container{
  padding: 30px;
  
}

.firstsec_newsitempage_content_main_rightpart{
 box-shadow: 0px 0px 10px #00000010;
  border-radius: 8px;
}

.firstsec_newsitempage_content_main_rightpart > img:nth-child(1) {
  border-radius: 8px 8px 0px 0px;
  width: 100%;
  height: 511px;
  object-fit: cover;
}

.firstsec_newsitempage_content_main_rightpart_container:nth-child(2) > div:nth-child(1) {
  margin-top: 0;
}

.firstsec_newsitempage_content_main_rightpart_container > p:nth-child(2) {
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  line-height: 22px;
  text-decoration: none;
  color: #FFF !important;
  margin-top: 30px;
}

.firstsec_newsitempage_content_main_rightpart_container_images{
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 30px;
}

.firstsec_newsitempage_content_main_rightpart_container_images img{
  border-radius: 8px;
  max-width: 358px;
  height: 276px;
  object-fit: cover;
}

.firstsec_newsitempage_content_main_rightpart_container h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.125rem;
  line-height: 21px;
  text-decoration: none;
  color: rgba(11, 18, 25, 1);
  margin-top: 30px;
  margin-bottom: 10px;
}

.firstsec_newsitempage_content_main_rightpart_container p{
   font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  line-height: 22px;
  text-decoration: none;
  color: rgba(138, 147, 162, 1) !important;
}

.firstsec_newsitempage_content_main_rightpart_container_list {
  padding-left: 15px;
}

.firstsec_baseitempage_content_main_rightpart_title ul > li{
   font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  line-height: 22px;
  text-decoration: none;
}

.firstsec_baseitempage_content_main_rightpart_title{
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.firstsec_baseitempage_content_main_rightpart_title h4{
   font-family: "Montserrat-600", sans-serif;
  font-size: 1.5rem;
  line-height: 26px;
  text-decoration: none;
  color: #333 !important;
}

.firstsec_baseitempage_content_main_rightpart_title p{
   font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  line-height: 22px;
  text-decoration: none;
  color: #525252 !important;
}


.firstsec_baseitempage_content_main_rightpart_title li {
    font-family: "Montserrat-400", sans-serif;
    font-size: 1rem;
    line-height: 22px;
    text-decoration: none;
}

.firstsec_baseitempage_content_main_item_date{
  margin-bottom: 0;
}

.firstsec_baseitempage_content_main_rightpart_title > ul{
  list-style-type: none;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding-bottom: 25px;
}

.firstsec_baseitempage_content_main_rightpart_title b{
   font-family: "Montserrat-600", sans-serif;
  font-size: 1.125rem;
  line-height: 21px;
  text-decoration: none;
  color: rgba(255, 119, 53, 1) ;
	    display: block;
}

.firstsec_baseitempage_content_main_rightpart_title > ul > li > p{
  padding-left: 16px;
}






/*-------------------------!!! СТРАНИЦА НОВОСТИ !!!-------------------------------*/

.firstsec_newspage_content_main_leftpart_container_fix{
  max-height: 270px;
}


.firstsec_newspage_content_main_item_date_fix{
  margin-bottom: 30px;
}


.firstsec_newsitempage_content_main_rightpart_title h4 {
  color: rgba(255, 119, 53, 1) !important;
}























































/*-------------------------МОДАЛКА-------------------------------*/

.micromodal-slide {
  display: none;
}


.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

.modal {
  font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.container_modal{
  max-width: 400px;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 35px;
  padding-bottom: 60px;
  background: rgba(255, 255, 255, 1);
  box-shadow: -6px 6px 50px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  border-radius: 8px;
}

.container_modal_close{
  position: absolute;
  right: 23px;
  top: 23px;
  cursor: pointer;
}

.container_modal_logo{
  margin: 0 auto;
  display: flex;
  width: 100%;
  justify-content: center;
  align-content: center;
  margin-bottom: 26px;
}

.container_modal h2{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.875rem;
  color: rgba(11, 18, 25, 1);
  line-height: 40px;
  text-decoration: none;
  margin-bottom: 26px;
}

.container_modal p:nth-child(4){
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  color: rgba(33, 40, 50, 1);
  line-height: 20px;
  text-decoration: none;
  margin-bottom: 26px;
}

.container_modal b{
  font-family: "Montserrat-300", sans-serif;
  font-size: 0.938rem;
  color: rgba(255, 119, 53, 1);
  line-height: 18px;
  text-decoration: none;
}

.container_modal p:nth-child(5){
  font-family: "Montserrat-400", sans-serif;
  font-size: 0.938rem;
  color: rgba(132, 132, 132, 1);
  line-height: 18px;
  text-decoration: none;
  margin-bottom: 26px;
}

.modal_order_form{
  display: flex;
  flex-direction: column;
  width: 100%;
  row-gap: 26px;

}

.modal_order_form input{
  padding-top: 19px;
  padding-bottom: 19px;
  padding-left: 23px;
  padding-right: 23px;
  font-family: "Montserrat-400", sans-serif;
  font-size: 0.938rem;
  color: #000;
  line-height: 18px;
  border: 0px;
  outline: none;
  display: flex;
  background: rgba(245, 247, 250, 1);
  border-radius: 5px;
  width: calc(100% - 46px);
}

.modal_order_form_input_container{
  position: relative;
}

.modal_order_form_input_container img{
  position: absolute;
  right: 23px;
  top: 21px;
}

.modal_order_form button {
  display: flex;
  column-gap: 10px;
  align-items: center;
  background: linear-gradient(136.01deg, #FF9924 0.85%, #FF5A0A 99.15%);
  border-radius: 5px;
  text-decoration: none;
  justify-content: center;
  border: 0px;
  outline: none;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 54px;
  padding-right: 54px;
  cursor: pointer;
}

.modal_order_form button > p {
  font-family: "Montserrat-600", sans-serif;
    font-size: 1.2rem;
    line-height: 26px;
    text-decoration: none;
    color: #fff;
    white-space: nowrap;
}


.custom-checkbox {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    display: none; /* Скрываем стандартный чекбокс */
}

.custom-checkbox label {
    padding-left: 30px; /* Отступ для текста */
    position: relative;
    font-family: "Montserrat-400", sans-serif;
    font-size: 0.813rem;
    line-height: 21px;
    color: rgba(105, 109, 112, 1);
    cursor: pointer;
}

.custom-checkbox label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px; /* Ширина кастомного чекбокса */
    height: 24px; /* Высота кастомного чекбокса */
    border: 1px solid rgba(33, 40, 50, 1); /* Цвет рамки */
    background-color: white; /* Цвет фона */
    border-radius: 3px;
}

.custom-checkbox input[type="checkbox"]:checked + label::before {
    background-color: rgba(33, 40, 50, 1); /* Цвет фона при отметке */
}

.custom-checkbox input[type="checkbox"]:checked + label::after {
    content: '✔'; /* Галочка при отметке */
    position: absolute;
    left: 7px;
    top: 1px;
    color: white; /* Цвет галочки */
}

.custom-checkbox input[type="checkbox"]:checked + label::after {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-checkbox > label:nth-child(2) {
  margin-left: 0px;
}

.custom-checkbox > label:nth-child(2) > p:nth-child(1) {
  margin-left: 34px;
  margin-top: -19px;
}



/*-------------------------МОДАЛКА2-------------------------------*/

.container_modal2{
  max-width: 400px;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 35px;
  padding-bottom: 60px;
  background: rgba(255, 255, 255, 1);
  box-shadow: -6px 6px 50px 0px rgba(0, 0, 0, 0.06);
  position: relative;
  border-radius: 8px;
}

.container_modal2 h2{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.875rem;
  color: rgba(11, 18, 25, 1);
  line-height: 40px;
  text-decoration: none;
  margin-bottom: 26px;
}

.container_modal2 p:nth-child(4){
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  color: rgba(33, 40, 50, 1);
  line-height: 20px;
  text-decoration: none;
  margin-bottom: 26px;
}

.container_modal2 b{
  font-family: "Montserrat-300", sans-serif;
  font-size: 0.938rem;
  color: rgba(255, 119, 53, 1);
  line-height: 18px;
  text-decoration: none;
}

.container_modal2 p:nth-child(5){
  font-family: "Montserrat-400", sans-serif;
  font-size: 0.938rem;
  color: rgba(132, 132, 132, 1);
  line-height: 18px;
  text-decoration: none;
  margin-bottom: 26px;
}



.file-upload {
    position: relative;
    display: inline-block;
    font-family: "Montserrat-500", sans-serif;
    font-size: 0.938rem;
    color: rgba(132, 132, 132, 1);
    line-height: 18px;
    border: 1px solid rgba(223, 227, 231, 1);
    border-radius: 5px;
}

.file-input {
    display: none; /* Скрываем стандартный input типа file */
}

.file-label {
    padding-top: 19px;
    padding-bottom: 19px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: rgba(245, 247, 250, 1);
    
    color: rgba(132, 132, 132, 1); /* Цвет текста */
    cursor: pointer; /* Указатель при наведении */
    border: none; /* Убираем рамку */
    border-radius: 4px; /* Скругляем углы */
}


#fileInput {
  display: none;
}

.file-label {
  display: flex;
}

.file-upload {
  margin-top: 26px;
}


.custom-checkbox2 {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.custom-checkbox2 input[type="checkbox"] {
    display: none; /* Скрываем стандартный чекбокс */
}

.custom-checkbox2 label {
    padding-left: 30px; /* Отступ для текста */
    position: relative;
    font-family: "Montserrat-400", sans-serif;
    font-size: 0.813rem;
    line-height: 21px;
    color: rgba(105, 109, 112, 1);
    cursor: pointer;
}

.custom-checkbox2 label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px; /* Ширина кастомного чекбокса */
    height: 24px; /* Высота кастомного чекбокса */
    border: 1px solid rgba(33, 40, 50, 1); /* Цвет рамки */
    background-color: white; /* Цвет фона */
    border-radius: 3px;
}

.custom-checkbox2 input[type="checkbox"]:checked + label::before {
    background-color: rgba(33, 40, 50, 1); /* Цвет фона при отметке */
}

.custom-checkbox2 input[type="checkbox"]:checked + label::after {
    content: '✔'; /* Галочка при отметке */
    position: absolute;
    left: 7px;
    top: 1px;
    color: white; /* Цвет галочки */
}

.custom-checkbox2 input[type="checkbox"]:checked + label::after {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-checkbox2 > label:nth-child(2) {
  margin-left: 0px;
}

.custom-checkbox2 > label:nth-child(2) > p:nth-child(1) {
  margin-left: 34px;
  margin-top: -19px;
}

#container_modal2 > form:nth-child(6) > div:nth-child(4) > p:nth-child(1) {
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  line-height: 19px;
  color: rgba(33, 40, 50, 1);
}


#container_modal2 > form:nth-child(6) > div:nth-child(3) > p:nth-child(1) {
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  color: rgba(33, 40, 50, 1);
  line-height: 19px;
}












.container_modal2 {
  padding-top: 74px;
}

#container_modal2 > p:nth-child(3) {
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  color: rgba(33, 40, 50, 1);
  line-height: 20px;
  text-decoration: none;
  margin-bottom: 26px;
}

form.modal_order_form:nth-child(5) > div:nth-child(3) > p:nth-child(1) {
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  color: rgba(33, 40, 50, 1);
  line-height: 19px;
}



/*-------------------------!!! СТРАНИЦА ЦЕНЫ !!!-------------------------------*/



.tab-content_pricessec_pricespage > #ourworkssec_mainpage_content-1 > div:nth-child(1) {
  padding-left: 20px;
  padding-right: 20px;
  width: calc(100vw - 40px);
}


.firstsec_pricespage {
  padding-top: 5px;
}

.firstsec_pricespage_content_header{
  margin-bottom: 0px;
}

.firstsec_pricespage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 24px;
  text-decoration: none;
  color: #525252;
  margin-bottom: 25px;
}

.tab-content_pricessec_pricespage{
  padding-top: 0;
  padding-bottom: 50px;
}

.pricessec_pricespage_content_list h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.5rem;
  line-height: 26px;
  text-decoration: none;
  color: #333;
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
  border: 0;
}


.pricessec_pricespage_content_list_table_header{
  display: grid;
  grid-template-columns: 4fr 1fr 1fr 1fr 1fr;
  background: rgba(223, 227, 231, 1);
  border-radius: 8px 8px 0px 0px;
  border-bottom: 1px solid rgba(138, 147, 162, 1);
}

.pricessec_pricespage_content_list_table_header h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1rem;
  line-height: 21px;
  text-decoration: none;
  color: rgba(13, 18, 23, 1);
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-right: 1px solid rgba(138, 147, 162, 1);
  justify-content: center;
  text-align: center;
}

.pricessec_pricespage_content_list_table_header h4:first-child{
  text-align: left;
}

.pricessec_pricespage_content_list_table_header h4:last-child{
  border-right: 0;
}

.pricessec_pricespage_content_list_table_container{
  max-width: 925px;
  width: 100%;
}

.tab-content_pricessec_pricespage_firsttable{
  display: flex;
  column-gap: 30px;
  margin-bottom: 50px;
  border-radius: 8px;
}

.pricessec_pricespage_content_list_table{
  border-radius: 8px;
  border: 1px solid rgba(91, 91, 91, 1);
}

.pricessec_pricespage_content_list_table_main{
  display: flex;
  flex-direction: column;
}

.pricessec_pricespage_content_list_table_main_item{
  display: grid;
  grid-template-columns: 4fr 1fr 1fr 1fr 1fr;
  background: rgba(255, 255, 255, 1);
  align-items: center;
  border-bottom: 1px solid rgba(138, 147, 162, 1);
}


.pricessec_pricespage_content_list_table_main_item p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 0.875rem;
  line-height: 18px;
  text-decoration: none;
  color: rgba(13, 18, 23, 1);
  padding-left: 12px;
  padding-right: 12px;
  border-right: 1px solid rgba(138, 147, 162, 1);
  height: calc(100% - 20px);
  align-items: center;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  justify-content: center;
  text-align: center;
}

.pricessec_pricespage_content_list_table_main_item:last-child{
  border-radius: 0px 0px 8px 8px;
}

.pricessec_pricespage_content_list_table_main_item p:first-child{
  justify-content: flex-start;
  text-align: left;
}

.pricessec_pricespage_content_list_table_main_item p:last-child{
  border-right: 0;
}

.pricessec_pricespage_input{
  border-right: 1px solid rgba(138, 147, 162, 1);
  border-radius: 0;
  max-width: unset;
  width: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricessec_pricespage_input input {
  width: 33px;
  font-family: "Montserrat-500", sans-serif;
  font-size: 0.875rem;
  line-height: 11px;
  text-decoration: none;
  color: rgba(13, 18, 23, 1);
  border: 0px;
  padding: 0px;
  text-align: center;
  margin-left: 7px;
  margin-right: 7px;
  background: transparent;
}

.pricessec_pricespage_input-minus {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px !important;
  height: 25px;
  background: rgba(243, 244, 245, 1);
  border: 0px;
  cursor: pointer;
  padding: 0px;
  border-radius: 7px;
}


.pricessec_pricespage_input-plus {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px !important;
  height: 25px;
  background: rgba(243, 244, 245, 1);
  border: 0px;
  cursor: pointer;
  padding: 0px;
  border-radius: 7px;
}

.tab-content_pricessec_pricespage_firsttable:last-child{
  margin-bottom: 0;
}

.custom-checkbox4 {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.custom-checkbox4 input[type="checkbox"] {
    display: none; /* Скрываем стандартный чекбокс */
}

.custom-checkbox4 label {
    padding-left: 30px; /* Отступ для текста */
    position: relative;
    font-family: "Montserrat-400", sans-serif;
    font-size: 0.813rem;
    line-height: 21px;
    color: rgba(105, 109, 112, 1);
    cursor: pointer;
}

.custom-checkbox4 label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 24px; /* Ширина кастомного чекбокса */
    height: 24px; /* Высота кастомного чекбокса */
    border: 1px solid rgba(33, 40, 50, 1); /* Цвет рамки */
    background-color: white; /* Цвет фона */
    border-radius: 3px;
}

.custom-checkbox4 input[type="checkbox"]:checked + label::before {
    background-color: rgba(33, 40, 50, 1); /* Цвет фона при отметке */
}

.custom-checkbox4 input[type="checkbox"]:checked + label::after {
    content: '✔'; /* Галочка при отметке */
    position: absolute;
    left: 7px;
    top: 1px;
    color: white; /* Цвет галочки */
}

.custom-checkbox4 input[type="checkbox"]:checked + label::after {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-checkbox4 > label:nth-child(2) {
  margin-left: 0px;
}

.custom-checkbox4 > label:nth-child(2) > p:nth-child(1) {
  margin-left: 34px;
  margin-top: -19px;
}


.tab-content_pricessec_pricespage_total{
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 35px;
  padding-bottom: 20px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 8px;
  background: rgba(245, 247, 248, 1);
  margin-top: 66px;
  align-items: center;
}

.tab-content_pricessec_pricespage_total p{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.125rem;
  line-height: 21px;
  text-decoration: none;
  color: rgba(32, 47, 54, 1);
}

.tab-content_pricessec_pricespage_total b{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.5rem;
  line-height: 26px;
  text-decoration: none;
  color: rgba(13, 18, 23, 1);
  margin-top: 9px;
}

.tab-content_pricessec_pricespage_total a{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: linear-gradient(136.01deg, #FF9924 0.85%, #FF5A0A 99.15%);
  padding-top: 10px;
  padding-bottom: 10px;
  column-gap: 10px;
  border: 0px;
  max-width: 298px;
  width: 100%;
  cursor: pointer;
  margin-top: 15px;
  margin-bottom: 15px;
  text-decoration: none;
}

.tab-content_pricessec_pricespage_total > a > p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.063rem;
  color: rgba(13, 18, 23, 1);
  line-height: 26px;
}

.custom-checkbox4 p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 0.813rem;
  line-height: 21px;
  text-decoration: none;
  color: rgba(105, 109, 112, 1);
}










.calcpricesec_pricepage {
  padding-top: 100px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.whatarewedoingsec_pricespage_content_list > .whatarewedoingsec_mainpage_content_list_item {
  background: rgba(255, 255, 255, 1);
}

.whatarewedoingsec_pricespage_content_list > .whatarewedoingsec_mainpage_content_list_item h4 {
  color: rgba(13, 18, 23, 1);
}

.whatarewedoingsec_pricespage_content_list > .whatarewedoingsec_mainpage_content_list_item p {
  color: rgba(33, 40, 50, 1);
}



/*-------------------------!!! СТРАНИЦА О НАС !!!-------------------------------*/

.about__wrapper {
	display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 130px;
	margin-top: 80px;
	margin-bottom: 50px;
}

.about__wrapper-item h2 {
	margin-bottom: 28px;
    color: #525252;
    font-family: 'Montserrat-500';
    font-size: 20px;
    line-height: 24px;
}


.about__wrapper-item h3 {
	color: #FF7735;
	font-size: 19px;
	font-family: 'Montserrat-600';
	text-transform: uppercase;
	line-height: 25px;
}

.relative {
	position: relative;
}


.relative .firstsec_image_right {
	right: 316px;
}

#about__years {
	background: #252525;
	padding-top: 50px;
}

#about__years .firstsec_image_right {
	left: 0;
	right: unset;
}

.about__years-item h2 {
	font-size: 33px;
	font-family: 'Montserrat-600';
	text-transform: uppercase;
	color: #FFF;
	line-height: 38px;
}

.about__years-items {
	margin-top: 60px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 50px;
}

.about__years-itemd {
	color: #fff;
	font-family: 'Montserrat-400';
	font-size: 16px;
	line-height: 22px;
}




.stats-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 19px;
  margin-top: 80px;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  border-left: 1px solid #FF7735;
  padding-left: 25px;
}



.stat-number {
  font-size: 37px;
  font-family: 'Montserrat-600';	
  font-weight: bold;
  color: #ff6a00;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 18px;
  color: #ccc;
  font-family: 'Montserrat-400';	
}


#about__results {
	position: relative;
    background: url(/wp-content/uploads/2025/04/czifry.jpg) center center / cover no-repeat;
    background-position: center center;
	padding: 65px 0;
}


#about__results h2 {
	font-size: 33px;
	font-family: 'Montserrat-600';
	text-transform: uppercase;
	color: #FFF;
	line-height: 38px;
}

#about__people {
	padding-top: 50px;
}

#about__people h2 {
	font-size: 33px;
	font-family: 'Montserrat-600';
	text-transform: uppercase;
	color: #333;
	line-height: 38px;
}

.about__people-subtext {
	color: #525252;
	font-size: 18px;
	line-height: 24px;
	font-family: 'Montserrat-500';
}

.team-grid {
	margin-top: 40px;
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	text-align: center;
	margin-bottom: 100px;
}

.team-card img {
	margin-bottom: 25px;
}

.team-info h3 {
	font-size: 22px;
	font-family: 'Montserrat-600';
	color: #333;
	margin-bottom: 8px;
}

.team-info p {
	color: #525252;
	font-size: 18px;
	font-family: 'Montserrat-400';
	max-width: 250px;
    margin: auto;
}


#about__docs {
	padding-bottom: 150px;
}

#about__docs h2 {
	font-size: 33px;
	font-family: 'Montserrat-600';
	text-transform: uppercase;
	color: #333;
	line-height: 38px;
}

  .slick-slide {
    padding: 10px;
  }

  .slick-prev:before,
  .slick-next:before {
    color: black;
    font-size: 30px;
  }


.slider-container {
    max-width: 95vw;
	width: 100%;
    margin: 50px auto;
  }

.sl img {
	margin: 0 auto;
}


.slick-slide.sl {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px; 
  box-sizing: border-box;
}

.slick-slide.sl img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain; 
}

.slick-slide.sl {
display: flex !important;
align-items: center !important;
justify-content: center !important;
}

.slider-container .slick-prev:before,
.slider-container .slick-next:before {
  color: #252525;
  font-size: 30px; 
  opacity: 1; 
}

.slider-container .slick-prev,
.slider-container .slick-next {
  background: none;
  border: none;
  border-radius: 0;
  width: auto;
  height: auto;
}

/*-------------------------!!! СТРАНИЦА НАШИ ПРОЕКТЫ !!!-------------------------------*/

.sort-container {
  display: flex;
  align-items: center;
  gap: 10px; 
  padding: 10px;
  color: #fff; 
	font-family: 'Montserrat-400';
}


.sort-container label {
  font-size: 14px;
  font-weight: bold;
	font-family: 'Montserrat-400';
	color: #525252;
}

.sort-container select {
  appearance: none; 
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #fff; 
  border: 1px solid #ccc;
  border-radius: 5px; 
  padding: 8px 30px 8px 10px;
  font-size: 14px;
  color: #333; 
  width: 250px; 
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
	font-family: 'Montserrat-400';
}

.sort-container select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23333' width='18px' height='18px'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); 
  background-repeat: no-repeat;
  background-position: right 10px center; 
}


.sort-container select:hover {
  border-color: #999; 
}


.sort-container select:focus {
  outline: none;
  border-color: #666;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.c__padding .content_ourworkssec_mainpage {
	padding-top: 30px;
}

.project__card-wrapper {
	margin-top: 42px;
}

.project__card-item {
	display: flex;
   box-shadow: 0 0 10px #00000010; 
	border-radius: 13px;
	margin-bottom: 100px;
}


.project__card-item:last-child {
	margin-bottom: 50px;
}

.project__card-el:nth-child(2) {
	padding: 35px 58px;
}

.project__card-el h3 {
	font-family: 'Montserrat-600';
	font-size: 28px;
	margin-bottom: 12px;
}


.project__card-el p {
	font-family: 'Montserrat-600';
	font-size: 14px;
	margin-bottom: 15px;
}

.card__desc-all p {
	font-family: 'Montserrat-500';
    font-size: 16px;
    line-height: 1.5;
}

.card__desc-all p a {
	color: #FF7735;
}

.project__card-el ul li {
	font-family: 'Montserrat-500';
	font-size: 16px;
	margin-bottom: 8px;
}

.project__card-el p.pr__el {
	font-size: 18px;
	font-family: 'Montserrat-500';
}


.product-details {
	padding-left: 20px;
}

.project__card-icons {
	margin-top: 15px;
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
	margin-bottom: 25px;
}

.project__card-el img {
	height: 100%;
	object-fit: cover;
	max-width: 570px;
}

.project__card-icon {
	display: flex;
    column-gap: 20px;
	align-items: center;
}

.project__card-icon svg {
	width: 26px;
}

.project__card-ic p {
	margin-bottom: 0;
}

.project__card-icon p {
	margin-bottom: 0;
}

.project__card-ic span {
	font-weight: bold;
	font-size: 16px;
	font-family: 'Montserrat-700';
	line-height: 18px;
	color: #FF7735;
}

.project__card-btn {
	display: flex;
    justify-content: space-between;
	max-width: 453px;
    width: 100%;
	align-items: center;
}

.project__card-btnel a {
	background: #FF7735;
	color: #fff;
    font-family: 'Montserrat-600';
    font-size: 16px;
	padding: 12px 50px;
	border-radius: 5px;
	line-height: 28px;
}

.project__card-btnel p {
	margin-bottom: 0;
}

.project__card-btnel span {
	color: #FF7735;
	font-size: 28px;
	font-family: "Montserrat-600", sans-serif;
}











/*-----------------------!!! СТРАНИЦА МОНТАЖ КВАРТИР !!!-------------------------------*/


.firstsec_mainpage {
  background: url(../img/firstsec_montajpage_background.png);
  background-repeat: repeat;
  background-size: auto;
  background-repeat: no-repeat;
  background-size: cover;
}

.fsec {
	background: #fff;
}

.firstsec_montajpage_content {
  padding-left: 50px;
}

.firstsec_montajpage_content_rightpart {
  row-gap: 16px;
}

.firstsec_montajpage_content_rightpart > p:nth-child(2) {
  font-family: "Montserrat-400", sans-serif;
  font-size: 1.563rem;
  line-height: 38px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 15px;
}

.firstsec_montajpage_content_rightpart a {
  max-width: 325px;
}



.whywesec_montajpage{
  position: relative;
  overflow: hidden;
}

.whywesec_montajpage_image{
  opacity: 0.3;
  position: absolute;
  right: -50px;
  top: -290px;
}

.whywesec_montajpage_content_header{
  margin: 0 auto;
}

.whywesec_montajpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.95rem;
  line-height: 38px;
  text-decoration: none;
  color: #333;
  padding-top: 100px;
}

.whywesec_montajpage_content_header_line{
  margin-top: 25px;
  margin-bottom: 40px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 100px;
  width: 100%;
}

.whywesec_montajpage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 24px;
  text-decoration: none;
  color: rgba(223, 227, 231, 1);
  max-width: 880px;
  width: 100%;
  margin-bottom: 50px;
}

.whywesec_montajpage_content_list{
  display: flex;
  justify-content: space-around;
  column-gap: 20px;
  align-self: center;
  max-width: 1812px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 100px;
}

.whywesec_montajpage_content_list_item{
  background: rgba(255, 255, 255, 1);
  border-radius: 8px;
  display: flex;
  align-self: center;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 27px;
  padding-right: 17px;
  max-width: 302px;
  width: 100%;
  height: 317px;
	box-shadow: 0px 0px 10px #00000010;

}

.whywesec_montajpage_content_list_item img{
  width: 110px;
  height: 110px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.whywesec_montajpage_content_list_item h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.625rem;
  line-height: 1.3;
  text-decoration: none;
  color: rgba(13, 18, 23, 1);
  text-align: center;
  margin-bottom: 25px;
  height: 59px;
}

.whywesec_montajpage_content_list_item p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  text-decoration: none;
  color: rgba(13, 18, 23, 1);
  margin-top: 19px;
}

.whywesec_montajpage_content_list_item_line{
  width: 114px;
  background: rgba(255, 119, 53, 1);
  height: 2px;
  margin: 0 auto;
}


.whatinputsec_montajpage{
  position: relative;
  overflow: hidden;
}

.whatinputsec_montajpage_content_header{
  margin: 0 auto;
}

.whatinputsec_montajpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.95rem;
  line-height: 38px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  padding-top: 50px;
}

.whatinputsec_montajpage_content_header_line{
  margin-top: 25px;
  margin-bottom: 50px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 100px;
  width: 100%;
}

.whatinputsec_montajpage_content_list{
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
}

.whatinputsec_montajpage_content_list_item{
  display: flex;
  flex-direction: column;
  max-width: 373px;
  width: 100%;
}

.whatinputsec_montajpage_content_list_item_header{
  display: flex;
  column-gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.whatinputsec_montajpage_content_list_item_header h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.5rem;
  line-height: 26px;
  text-decoration: none;
  color: #333;
}

.whatinputsec_montajpage_content_list_item p{
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  line-height: 22px;
  text-decoration: none;
  color: #525252;
}

.whatinputsec_montajpage_item{
  position: absolute;
  left: 0;
  bottom: -300px;
}


.calcpricesec_montajpage_content_header{
  padding-top: 50px;
}

.content_calc_montajpage{
  display: block !important;
}

.calcpricesec_mainpage_form_total_title_video_header{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.4rem;
  line-height: 26px;
  text-decoration: none;
  color: rgba(0, 0, 0, 1);
}

.calcpricesec_mainpage_form_total_title_video_header{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.4rem;
  line-height: 26px;
  text-decoration: none;
  color: rgba(0, 0, 0, 1);
  margin: 0 auto;
}

.calcpricesec_mainpage_form_total_title_video{
  width: 755px;
  height: 427px;
  border-radius: 8px;
}

.calcpricesec_montajpage_form_total {
  max-width: 660px;
  width: 100%;
  max-width: unset;
  width: auto;
}

.calcpricesec_mainpage_form_total_title > iframe:nth-child(2) {
  border-radius: 8px;
  margin-top: 20px;
}

.calcpricesec_mainpage_form_total_title_video_header {
  max-width: 940px;
}

.calcpricesec_mainpage_form_total_title {
  align-items: center;
  width: 100%;
}


.calcpricesec_mainpage {
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}




/*-----------------------!!! СТРАНИЦА МОНТАЖ ДОМОВ !!!-------------------------------*/



.firstsec_montajdomovpage{
  background: url(../img/firstsec_montajdomovpage_background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.firstsec_montajpage_content_fix > a:nth-child(3) {
  max-width: 254px !important;
}

.examplessec_mainpage_gallery_montajdomovpage{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.examplessec_mainpage_gallery_montajdomovpage > .examplessec_mainpage_gallery_item > img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

.whatinputsec_montajpage_content_header p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 24px;
  text-decoration: none;
  color: #525252;
  margin-bottom: 50px;
}

.whatinputsec_montajpage_content_header > ul > li{
  font-family: "Montserrat-400", sans-serif;
  font-size: 1rem;
  line-height: 22px;
  text-decoration: none;
  color: #525252;
}

.whatinputsec_montajpage_content_header > ul {
  padding-left: 16px;
  padding-top: 10px;
  margin-bottom: 30px;
}

.whatinputsec_montajpage_content_header > b{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.5rem;
  line-height: 26px;
  text-decoration: none;
  color: rgba(255, 119, 53, 1);
}

.whatinputsec_montajpage_content h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.95rem;
  line-height: 38px;
  text-decoration: none;
  color: #333;
  padding-top: 50px;
  padding-bottom: 25px;
}

.tab-content_list_item_main_montajdomov{
  justify-content: flex-start;
  column-gap: 60px;
}

.moreexamplessec_mainpage_content > .examplessec_mainpage_content_header >  .examplessec_mainpage_content_header_line{
  margin-bottom: 50px;
}

.moreexamplessec_gallery_montajdomovpage > .examplessec_mainpage_gallery_item > img {
  width: 100%;
  height: 286px;
  object-fit: cover;
  border-radius: 8px;
}



.moreexamplessec_mainpage{
  padding-bottom: 50px;
  padding-top: 0;
}

.examples_workssec_montajdomovpage_content_header{
  margin: 0 auto;
}

.examples_workssec_montajdomovpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.95rem;
  line-height: 38px;
  text-decoration: none;
  color: #333;
  padding-top: 50px;
}

.examples_workssec_montajdomovpage_content_header_line{
  margin-top: 25px;
  margin-bottom: 40px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 100px;
  width: 100%;
}

.tab_examples_workssec_montajdomovpage {
    padding-top: 28px;
    padding-bottom: 28px;
    padding-left: 20px;
    padding-right: 20px;
    background-color: rgba(187, 197, 208, 1);
    border-radius: 10px 10px 10px 10px;
    font-family: "Montserrat-600", sans-serif;
    font-size: 0.875rem;
    line-height: 17px;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    text-align: center;
}


.tab_examples_workssec_montajdomovpage.active {
    background-color: rgba(255, 255, 255, 1);
    border-bottom: none; /* Убираем нижнюю границу у активного таба */
    color: rgba(13, 18, 23, 1);
}

 .content_examples_workssec_montajdomovpage {
    margin-top: 100px;
}

.tabs_examples_workssec_montajdomovpage {
  column-gap: 30px;
}


.content_examples_workssec_montajdomovpage{
  background: rgba(13, 18, 23, 1);
  border-radius: 8px;
  padding: 25px;
  padding-bottom: 50px;
}

.content_examples_workssec_montajdomovpage_item{
  display: flex !important;
  column-gap: 60px;
}

.item_wrap_content_examples_workssec_montajdomovpage_item_rightpart{
  background: linear-gradient(136.01deg, #FF9924 0.85%, #FF5A0A 99.15%);
  border-radius: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: "Montserrat-600", sans-serif;
  font-size: 1rem;
  line-height: 26px;
  text-decoration: none;
  color: rgba(13, 18, 23, 1);
  display: flex;
  column-gap: 10px;
  align-items: center;
}

.items_wrap_content_examples{
  gap: 0;
  column-gap: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.content_examples_workssec_montajdomovpage_item_rightpart h3{
   font-family: "Montserrat-600", sans-serif;
  font-size: 2.063rem;
  line-height: 38px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  padding-bottom: 16px;
  border-bottom: 4px solid rgba(255, 119, 53, 1);
  margin-bottom: 50px;
}

.content_examples_workssec_montajdomovpage_item_rightpart_list{
  display: flex;
  align-items: center;
  column-gap: 25px;
}

.content_examples_workssec_montajdomovpage_item_rightpart_list_item{
  display: flex;
  align-items: center;
  padding-right: 25px;
  border-right: 1px solid rgba(255, 255, 255, 1);
  height: 44px;
}

.content_examples_workssec_montajdomovpage_item_rightpart_list_item p{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.125rem;
  line-height: 44px;
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  
}

.content_examples_workssec_montajdomovpage_item_rightpart_list_item b{
  font-family: "Montserrat-700", sans-serif;
  font-size: 1rem;
  line-height: 44px;
  text-decoration: none;
  color: rgba(255, 119, 53, 1);
}

.content_examples_workssec_montajdomovpage_item_rightpart_list_item > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 5px;
  padding-left: 15px;
}

.content_examples_workssec_montajdomovpage_item_rightpart_list_item p {
  line-height: 0;
  line-height: 18px;
}

.content_examples_workssec_montajdomovpage_item_rightpart_list_item b {
  line-height: 18px;
}



















/*-----------------------!!! СТРАНИЦА ПРОЕКТИРОВАНИЕ ДОМОВ !!!-------------------------------*/
.firstsec_proektdomovpage {
  background: url(../img/firstsec_proektdomovpage_background.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-size: cover;
}

.firstsec_proektdomovpage_content_fix a {
  max-width: 460px;
}





.calcpricesec_proektdomovpage_form_total {
  max-width: 603px;
  padding-left: 100px;
  padding-right: 100px;
}

.calcpricesec_proektdomovpage_form_total > div:nth-child(1) > ul > li {
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.125rem;
  line-height: 30px;
  text-decoration: none;
  color: rgba(0, 0, 0, 1);
}

.calcpricesec_proektdomovpage_form_total > div:nth-child(1) > ul {
  list-style-type: none;
}

.calcpricesec_proektdomovpage_form_total > div:nth-child(1) > h3 {
  margin: 0;
  text-align: left;
  width: 100%;
}

.calcpricesec_proektdomovpage_form_total > div:nth-child(1) {
  row-gap: 37px;
}

.examples_workssec_montajdomovpage_content_header p {
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 24px;
  text-decoration: none;
  color: #525252;
}

.examples_workssec_proektdomovpage_content_header{
  padding-bottom: 50px;
}

.tabs_examples_workssec_proektdomovpage > .tab_examples_workssec_montajdomovpage {
  max-width: 126px;
  width: 100%;
}

.content_examples_workssec_montajdomovpage_item_rightpart ul > li {
  font-family: "Montserrat-400", sans-serif;
  font-size: 1.125rem;
  line-height: 24px;
  text-decoration: none;
  color: rgba(223, 227, 231, 1);
  padding-left: 18px;
}

.content_examples_workssec_montajdomovpage_item_rightpart ul {
  padding-left: 18px;
  padding-bottom: 50px;
}


.content_examples_workssec_montajdomovpage_item_leftpart > img:nth-child(1) {
  width: 399px;
  height: 282px;
  object-fit: cover;
}


.whatinputsec_projectpage{
  position: relative;
  overflow: hidden;
}

.whatinputsec_projectpage_content_header{
  margin: 0 auto;
}

.whatinputsec_projectpage_content_header h3{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.95rem;
  line-height: 38px;
  text-decoration: none;
  color: #333;
  padding-top: 50px;
}

.whatinputsec_projectpage_content_header_line{
  margin-top: 25px;
  margin-bottom: 50px;
  height: 5px;
  background: rgba(255, 119, 53, 1);
  max-width: 100px;
  width: 100%;
}

.whatinputsec_projectpage_content_header p {
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 24px;
  text-decoration: none;
  color: #525252;
  margin-bottom: 50px;
  padding-top: 30px;
}

.whatinputsec_projectpage_content_list{
  display: flex;
  column-gap: 30px;
  justify-content: center;
  margin-bottom: 30px;
}

.whatinputsec_projectpage_content_list_item{
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 1);
  border-radius: 15px;
  overflow: hidden;
  max-width: 282px;
  width: 100%;
	box-shadow: 0px 0px 10px #00000010;
}

.whatinputsec_projectpage_content_list_item_container{
  padding-top: 25px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 25px;
}

.whatinputsec_projectpage_content_list_item_container h4{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.125rem;
  line-height: 24px;
  text-decoration: none;
  color: rgba(13, 18, 23, 1);
  margin-bottom: 30px;
  max-width: 215px;
}

.whatinputsec_projectpage_content b{
  font-family: "Montserrat-600", sans-serif;
  font-size: 1.5rem;
  line-height: 26px;
  text-decoration: none;
  color: rgba(255, 119, 53, 1);
}


/*-----------------------!!! СТРАНИЦА ПРОЕКТИРОВАНИЕ КВАРТИР !!!-------------------------------*/

.firstsec_proektkvartirpage{
  background: url(../img/firstsec_proektkvartirpage_background.png);
  background-size: auto;
  background-repeat: no-repeat;
  background-size: cover;
}

.whatinputsec_projectpage_content_header ul{
  padding-left: 24px;
  margin-bottom: 30px;
}

.whatinputsec_projectpage_content_header > ul > li{
  font-family: "Montserrat-500", sans-serif;
  font-size: 1.25rem;
  line-height: 24px;
  text-decoration: none;
  color: rgba(223, 227, 231, 1);
}


.tab_examples_workssec_plankvartirpage{
  max-width: unset !important;
  width: auto !important;
}


.tab__list-empty {
	font-family: "Montserrat-500", sans-serif;
    font-size: 0.875rem;
    line-height: 24px;
    color: #525252;
	margin-top: 27px;
}



@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.photo__modal {
	position: absolute;
    width: 35px;
    height: 31px !important;
    bottom: 0;
    right: 7px;
	z-index: 9999999;
}

.zoom__img {
	position: absolute;
    width: 35px;
    height: 31px !important;
    bottom: 0;
    right: 7px;
}


.project__card-el img:first-child {
	position: relative;
}

.project__card-el:first-child {
	position: relative;
}

.project__card-readmore {
	text-decoration: none;
}




.tab-content_list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: 88px;
    row-gap: 0;            
}

.tab-content_square{
    grid-column: 1 / -1;
	    background: #f9f9f9;
}