/* Подложка для модалки */
.modal.active {
  visibility: visible;
  opacity: 1;
  /* transform: scale(1); */
}

.modal {
  /* display: none; */
  position: fixed;
  z-index: 9999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  background-color: black;
  background-color: rgba(0, 0, 0, 0.4);
  /* transform: scale(0); */
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
}

/* #region Начало Вкладка Технологии */
.none {
  display: none;
}
.bread_crumbs {
  /* font-weight: 300; */
  line-height: 12px;
  letter-spacing: 0em;
  text-align: left;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 25px 0px;
}
.bread_crumbs_arrow {
  height: 20px;
  margin: 0 8px;
}
.technology_new {
  width: 100%;
  padding: 0px 0 0px;
  /* background: grey; */
}
.container {
  padding: 0;
  max-width: 1420px;
  margin: 0 auto;
}
.zagolovok_technology_new {
  color: #000;
  /* font-family: Roboto; */
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  /* line-height: normal; */
  letter-spacing: 1.6px;
  text-align: center;
  margin: 40px 0 70px 0;
}
.technology_item {
  width: 453px;
  height: 250px;
  display: flex;
  background-color: rgb(155, 154, 154);
  border-radius: 25px;
  background: linear-gradient(
    90deg,
    rgba(69, 75, 90, 0.75) 36.64%,
    rgba(69, 75, 90, 0) 100%
  );
  mix-blend-mode: multiply;
}

.technologyes_wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.technology_item {
  width: 453px;
  height: 250px;
  display: flex;
  border-radius: 25px;
  mix-blend-mode: multiply;
  /* margin-bottom: 20px; */
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.technology_item:last-child {
  visibility: hidden;
}
.bg_fundament {
  background: url(../../img/Technology/foundation.jpg);
}
.bg_masonry {
  background-image: url(../../img/Technology/masonry.jpg);
}
.bg_walls {
  background-image: url(../../img/Technology/outside_walls.jpg);
}
.bg_slabs {
  background-image: url(../../img/Technology/slabs.jpg);
}
.bg_roof {
  background-image: url(../../img/Technology/roof.jpg);
}
.bg_finnishing {
  background-image: url(../../img/Technology/finishing.jpg);
}
.bg_water {
  background-image: url(../../img/Technology/water.jpg);
}
.bg_shafts {
  background-image: url(../../img/Technology/shafts.jpg);
}
.bg_windows {
  background-image: url(../../img/Technology/windows.jpg);
}
.bg_light {
  background-image: url(../../img/Technology/light.jpg);
}
.bg_gas {
  background-image: url(../../img/Technology/gas.jpg);
}
.bg_complektacia {
  background-image: url(../../img/Technology/complektacia.jpg);
}
.bg_geologia {
  background-image: url(../../img/Technology/geologia.jpg);
}
.technology_content {
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(69, 75, 90, 0.75) 36.64%,
    rgba(69, 75, 90, 0) 100%
  );
  border-radius: 25px;
  padding: 30px 27px 26px 27px;
}
.technology_content > p {
  color: #fff;
  /* font-family: Roboto; */
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.13px;
  margin: 0 0 25px 0;
}
.technology_content > span {
  color: #fff;
  /* font-family: Roboto; */
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.687%;
  width: 300px;
  height: 83px;
  display: block;
  overflow: hidden;
  margin: 0 0 25px 0px;
}
.open_read_popup {
  width: 94px;
  height: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background: white;
  cursor: pointer;
}
.open_read_popup > span {
  color: black;
  /* font-family: Roboto; */
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.technology_item_popup {
  position: fixed;
  margin: auto;
  background-color: #fff;
  z-index: 99999999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  /* padding: 40px; */
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 400px;
  height: 700px;
  border-radius: 20px;
  overflow: hidden;
}

.technology_item_popup.active {
  visibility: visible;
  opacity: 1;
}
.technology_item_popup_container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.technology_item_popup_img {
  width: 100%;
  display: block;
  height: 220px;
  background-size: cover;
  background-position: top center;
  background-repeat: space;
}
.technology_item_popup_text {
  padding: 20px;
  height: 52vh;
}
.technology_item_popup_text > p {
  font-size: 25px;
  text-align: center;
}
.text_overflow_content {
  display: block;
  height: 350px;
  overflow-y: scroll;
}
@media (max-width: 1420px) {
  .technology_item {
    width: 48%;
  }
  .container {
    padding: 0 20px;
  }
  p.zagolovok_technology_new {
    line-height: 40px;
  }
}
@media (max-width: 800px) {
  .technology_item {
    width: 100%;
    height: 285px;
  }
  .technology_content > span {
    width: 400px;
    height: 120px;
  }
  .technology_item:last-child {
    display: none;
  }
}
@media (max-width: 500px) {
  .technology_item {
    height: 181px;
  }
  .technology_content {
    padding: 15px 26px 27px 20px;
  }
  .technology_content > p {
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    margin: 0 0 18px 0;
  }
  .technology_content > span {
    width: 218px;
    height: 60px;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
  }
  .technologyes_wrapper {
    gap: 20px;
  }
  .open_read_popup {
    width: 68px;
    height: 24px;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    letter-spacing: 0em;
    text-align: left;
  }

  p.zagolovok_technology_new {
    font-size: 23px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.04em;
    text-align: center;
    margin: 28px 0 34px 0;
  }
  .bread_crumbs {
    font-size: 12px;
    font-weight: 300;
    line-height: 12px;
    letter-spacing: 0em;
    text-align: left;
  }
  .bread_crumbs_arrow {
    height: 15px;
    margin: 0 4px;
  }
  .technology_item_popup {
    width: 300px;
    height: calc(100vh - 20%);
  }
  .technology_item_popup_img {
    height: 150px;
  }
  .technology_item_popup_text > p {
    line-height: 30px;
  }
  .technology_item_popup_text > div {
    height: 90%;
    overflow: scroll;
    display: block;
  }
  .technology_item_popup_text {
    padding: 20px;
    padding-top: 0px;
    height: calc(100% - 200px);
  }
}
/*#endregion Конец Вкладка Технологии */

/*#region Начало Вкладка Статьи */
.article_new {
  width: 100%;
  padding: 25px 0 100px;
}
.zagolovok_article_new {
  font-size: 40px;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: 0.04em;
  text-align: center;
}
.arcticle_wrapper {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.article_item {
  width: 453px;
  /* height: 515px; */
}
.article_content {
  position: relative;
}
.article_content > img {
  width: 453px;
  height: 300px;
  border-radius: 15px;
}
.article_content > p {
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: left;
  padding: 0;
  margin: 26px 0 18px 0px;
  height: 56px;
  display: flex;
  align-items: center;
}
.article_text {
  /* width: 425px; */
  height: 95px;
  font-size: 14px;
  font-weight: 300;
  line-height: 19px;
  letter-spacing: 0em;
  text-align: left;
  color: black;
  /* overflow-y: scroll; */
  padding-right: 28px;
  margin: 0;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  border-right: 2px solid #0abc22;
}
/* .article_text::-webkit-scrollbar-track
{
    border-radius: 10px;
    background: #C4DEC8;
}

.article_text::-webkit-scrollbar
{
    width: 3px;
    background-color: #F5F5F5;
}

.article_text::-webkit-scrollbar-thumb
{
    border-radius: 10px;
    background: #0ABC22;
} */
.articles__reeding {
  text-decoration: none;
  width: 121px;
  height: 33px;
  background: #0abc22;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px;
  color: white;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0em;
  margin-top: 26px;
}
.article_fake {
  display: none;
}
@media (max-width: 1420px) {
  .arcticle_wrapper {
    justify-content: space-around;
  }
  .article_fake {
    display: flex;
  }
}
@media (max-width: 1000px) {
  .article_item {
    width: 65%;
  }
  .article_content > img {
    width: 100%;
    height: auto;
  }
  .article_fake {
    display: none;
  }
}
@media (max-width: 800px) {
  .article_item {
    width: 80%;
    margin-bottom: 30px;
  }
}
@media (max-width: 500px) {
  .article_item {
    width: 100%;
  }
  .article_content > img {
    width: 100%;
    height: auto;
  }
}
/*#endregion Конец Вкладка Статьи */

/*#region Начало Вкладка Каталога */
.container_new {
  padding: 0;
  max-width: 1420px;
}
.container_new {
  padding: 0;
  max-width: 1420px;
  margin: 0 auto;
}
.zagolovok_catalog_new {
  font-size: 40px;
  font-weight: 400;
  line-height: 47px;
  letter-spacing: 0.04em;
  text-align: center;
  width: 100%;
}
.categoryTags_wrapper {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}
.categoryTags_link {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f6f6f6;
  padding: 12px 13px;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.04em;
  text-align: left;
  text-decoration: none;
  color: rgba(0, 0, 0, 1);
}
.categoryTags_link:hover {
  background: #ebeaea;
}
.show_all {
  background: #44c054;
  color: white;
  cursor: pointer;
}
.show_all:hover {
  background: #49da5d;
}
.unvisible {
  display: none;
}
.catalog_container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 25px;
}
/* Новый стиль аккордиона */
.accordion {
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #e8e8e8;
  background: white;
  outline: none;
  text-align: left;
  padding: 0px 20px;
  font-size: 18px;
  line-height: 27px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s linear;
  position: relative;
  border-radius: 15px 15px 15px 15px;
  transition: height 0.5s ease-out;
  /* border-bottom: none; */
}
.accordion-content {
  background-color: white;
  border-left: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  /* border-bottom: 1px solid #E8E8E8; */
  border-radius: 0px 0px 15px 15px;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
  margin-bottom: 27px;
}
.accordion:after {
  background: url(../img/arrow-up-green.svg) no-repeat;
  width: 20px;
  height: 20px;
}
.accordion.floor:after {
  content: "";
}
.accordion.feature:after {
  content: "";
}
.accordion.material:after {
  content: "";
}
.accordion.square:after {
  content: "";
}
.accordion.price:after {
  content: "";
}
.accordion.is-open {
  border-radius: 15px 15px 0 0;
  border-bottom: none;
  height: 50px;
  transition: height 0.5s ease-out;
}
.accordion.is-open:after {
  background: url(../img/arrow-up.svg) no-repeat;
}
.accordion.is-open + .accordion-content {
  border-bottom: 1px solid #e8e8e8;
  /* transition: height 0.5s ease-out; */
}
.double_range_slider_box {
  height: 60px;
}
.accordion:hover {
  background-color: #f6f6f6;
}
.checkbox-label input:checked ~ .checkmark {
  background-color: #0abc22;
}

/* FILTER */
.double_range_slider_box {
  position: relative;
  height: 100px;
  background: white;
  display: flex;
  align-items: center;
  border-radius: 20px;
}
.double_range_slider {
  width: 90%;
  height: 10px;
  position: relative;
  background-color: #dddddd;
  border-radius: 20px;
}
.range_track {
  height: 100%;
  position: absolute;
  border-radius: 20px;
  background-color: #44c054;
}
.range-thumb {
  position: absolute;
  width: 100%;
  height: 5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  top: 50%;
  transform: translateY(-50%);
}
.minvalue {
  position: absolute;
  bottom: 10px;
  left: 0;
  border-radius: 1rem;
  color: #333;
  font-size: 12px;
  width: 100px;
  text-align: left;
}
.maxvalue {
  position: absolute;
  top: 10px;
  right: 0;
  border-radius: 1rem;
  color: #333;
  font-size: 12px;
  width: 100px;
  text-align: right;
}
.filter-toggler {
  display: none;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 20px;
  width: 100%;
  height: 50px;
  border: 1px solid #e8e8e8;
  background: white;
  outline: none;
  text-align: left;
  padding: 0px 40%;
  font-size: 18px;
  line-height: 27px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.2s linear;
  border-radius: 15px 15px 15px 15px;
  transition: height 0.5s ease-out;
  box-sizing: border-box;
}
.filter-toggler__title {
  margin: 0;
  font-size: 20px;
  line-height: 20px;
}

.filter-toggler__button {
  padding: 0;
  width: 25px;
  height: 25px;
  background-color: transparent;
  background-image: url(../img/arrow-up-green.svg);
  background-position: 0 0;
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.filter-toggler.is-open .filter-toggler__button {
  background-image: url(../img/arrow-up.svg);
}
.house-filter__form.is-open {
  display: block;
}

.accordion:after {
  content: "";

  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);

  font-size: 18px;
}

.accordion-content {
  background-color: white;
  border-left: 1px solid whitesmoke;
  border-right: 1px solid whitesmoke;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
  width: 100%;
}

.filter-button {
  margin: 3px auto;
  cursor: pointer;
  width: calc(100% + 42px);
  height: 60px;
  border: none;
  background: no-repeat;
  border: 1px solid #0abc22;
  border-radius: 5px;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  color: #000;
  font-weight: 400;
}
.filter-button[type="submit"] {
  background: #44c054;
  color: #fff;
}
button.filter-button > p {
  font-size: 10px;
  padding: 0;
  margin: 0;
}
.filter-button--clear {
  background-color: #fff;
  color: #000;
  transition: all 0.2s ease;
}

.filter-button--clear:hover,
.filter-button--clear:focus {
  background-color: #7b7b7b;
  transition: all 0.2s ease;
  color: white;
}
.houses__cols {
  display: flex;
  justify-content: space-between;
}

.house-filter {
  /* position: -webkit-sticky; */
  position: unset;
  top: 5%;

  width: 20%;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23012C56%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}

.checkmark {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  left: 0;
  height: 15px;
  width: 10px;
  background-color: #fff;
  border-radius: 5px;
  padding: 4px 6px;
  content: url(../img/righ.svg);
  background-size: 10px 17px;
}
.checkbox-label {
  position: relative;
  display: flex;
  margin: 12px 0;
  padding-left: 30px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.checkbox-label input ~ .checkmark {
  background-color: #f2f2f2;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-label .checkmark:after {
  color: white;
}
.checkbox-label .checkmark:after {
  color: white;
  width: 10px;
  height: 20px;
  left: 5px;
  top: 2px;
}
.button--more {
  background-color: white;
  border: 1px solid #012c56;

  color: #012c56;
}
input[type="checkbox"],
input[type="radio"] {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
  cursor: pointer;
}
.filter-button--clear {
  border: 1px solid #7b7b7b;
}
.accordion-content.no-padding {
  width: calc(100% + 40px);
  margin: 0;
}
.range-thumb {
  position: absolute;
  width: 100%;
  height: 5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  top: 50%;
  transform: translateY(-50%);
}
.range-thumb::-webkit-slider-thumb {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background-color: #44c054;
  pointer-events: auto;
  -webkit-appearance: none;
  cursor: pointer;
  margin-bottom: 1px;
}
.range-thumb::-moz-range-thumb {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background-color: #4eaaff;
  pointer-events: auto;
  -moz-appearance: none;
  cursor: pointer;
  margin-top: 30%;
}
/* Конец Новый стиль аккордиона */
/* Начало Список проектов*/
.catalog_new {
  padding: 0 25px;
}
.catalog_new .project-list {
  width: 75%;
}
.catalog_new .project__image-wrap {
  height: 220px;
  border-radius: 15px;
}
.project__title {
  font-size: 17px;
  font-weight: 500;
  line-height: 21px;
  letter-spacing: 0.04em;
  text-decoration: none;
}
.project__title:hover {
  color: #3a3434;
}
.project__title_real_name {
  margin-bottom: 15px;
  color: #444444;
  font-size: 13px;
  font-weight: 400;
}
.project__stats-name,
.project__stats-num {
  font-size: 13px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.04em;
}
.project__options-time-title {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0.04em;
}
.project__options-time-value {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 0.04em;
}
.project__options-price-value,
.project__options-price-value span,
.project__options-price-link {
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0.04em;
}
.catalog_new .button-card {
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
}
.none_padding {
  padding: 0;
}
.gabarity_inputs_block_item {
  display: flex;
  justify-content: space-between;
  width: 170px;
}
.gabarity_inputs_block_item:first-child {
  margin-bottom: 5px;
}
.gabarity_inputs_block_item > input {
  width: 50px;
  border: 1px solid #c3bebe;
  border-radius: 5px;
  outline: none;
}
.catalog_new .button-card > img {
  width: 20px;
  height: 20px;
}
.project__contacts-button {
  min-width: 130px;
}
.project__contacts-text {
  font-size: 13px;
}
.project__stats-pic_size {
  background: url(../img/size.svg) no-repeat;
}
.project__stats-pic_room {
  background: url(../img/rooms.svg) no-repeat;
}
.project__stats-pic_bath {
  background: url(../img/bathroom.svg) no-repeat;
}
.project__stats-pic_bed {
  background: url(../img/bedrooms.svg) no-repeat;
}
.swiper1-button-prev {
  background-image: url(../img/prev_n.svg) !important;
  background-repeat: no-repeat;
  background-size: 18px;
  width: 18px;
  height: 20px;
  left: 12px;
}
.swiper1-button-next {
  background-image: url(../img/play_n.svg) !important;
  background-repeat: no-repeat;
  background-size: 18px;
  width: 18px;
  height: 20px;
  right: 12px;
}
.pagination {
  display: flex;
  justify-content: center;
  margin: 20px 0px;
}
.pagination__item,
.pagination__arrow {
  color: black;
  float: left;
  padding: 3px 8px;
  text-decoration: none;
  transition: background-color 0.3s;
  /* border: 1px solid #ddd; */
}
.pagination__item.active {
  background-color: #4eaaff;
  color: white;
  border-radius: 5px;
}
/*#endregion Конец Список проектов*/
@media (max-width: 1070px) {
  .catalog_new .button-card {
    padding: 10px 10px;
  }
  .project__contacts-text {
    font-size: 12px;
  }
  .project__contacts-wrap {
    gap: 12px;
  }
  .categoryTags_link {
    padding: 8px 9px;
    font-size: 13px;
  }
}
@media (max-width: 820px) {
  .catalog_container {
    flex-wrap: wrap;
  }
  .house-filter {
    width: 100%;
    position: unset;
  }
  .accordion {
    box-sizing: border-box;
  }
  .accordion-content {
    width: calc(100% - 42px);
  }
  .filter-button {
    width: 100%;
  }
  .accordion-content.no-padding {
    width: calc(100% - 42px);
  }
  .catalog_new .project-list {
    width: 100%;
  }
  .catalog_new .project-list__wrapper {
    padding: 0;
  }
  .filter-toggler {
    display: flex;
  }
  .house-filter__form {
    display: none;
    margin-bottom: 20px;
  }
  .catalog_new .project__image-wrap {
    height: 300px;
  }
}
@media (max-width: 666px) {
  .filter-toggler {
    padding: 0px 35%;
  }
  .technology_content > p {
    font-size: 17px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    margin: 0px 0 6px 0;
  }
}
@media (max-width: 500px) {
  .categoryTags_link {
    min-width: 170px;
    width: auto;
    max-width: 300px;
    text-align: center;
  }
  .categoryTags_wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 0;
    flex-wrap: nowrap;
    width: calc(100vw - 40px);
    overflow: auto;
    padding-bottom: 20px;
  }
}

@media (max-width: 458px) {
  .filter-toggler {
    padding: 0px 32%;
  }
}
@media (max-width: 380px) {
  .project__stats-name,
  .project__stats-num {
    font-size: 12px;
  }
  .catalog_new .project__image-wrap {
    height: 230px;
  }
  .project__title {
    font-size: 15px;
  }

  .filter-toggler {
    padding: 0px 28%;
  }
}
/*#endregion Конец Вкладка Каталога */

/*region Готовые дома */
.complited_house .project-list {
  width: 100%;
}
.complited_house .project {
  width: calc(50% - 23px);
}
.complited_house .project__image-wrap {
  height: 300px;
}
.complited_house .project-list__wrapper {
  padding: 0;
}
@media (max-width: 820px) {
  .complited_house .project {
    width: 100%;
  }
  .zagolovok_catalog_new {
    font-size: 29px;
    font-weight: 400;
    line-height: 38px;
    letter-spacing: 0.04em;
    text-align: center;
  }
}
@media (max-width: 820px) {
  .complited_house .project__image-wrap {
    height: 230px;
  }
  .catalog_new {
    padding: 0 20px;
  }
}
@media (max-width: 355px) {
  .project__contacts-wrap {
    gap: 7px;
  }
}
/*#endregion Готовые дома */
.gotoviy_doma_priemyschestva_content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.gotoviy_doma_priemyschestva_content_item {
  width: 21%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}
.gotoviy_doma_priemyschestva_content_item_top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}
.gotoviy_doma_priemyschestva_content_item_top_left {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* display: none; */
}
.gotoviy_doma_priemyschestva_content_item_top_left > img {
  width: 100%;
  height: 100%;
}
.gotoviy_doma_priemyschestva_content_item_top_right {
  font-size: 19px;
  color: #0abc22;
  font-weight: 900;
  display: flex;
  justify-content: center;
  width: 100%;
}
.gotoviy_doma_priemyschestva_content_item_bottom {
  width: 100%;
  text-align: center;
  font-size: 15px;
}
.gotoviy_doma_priemyschestva_content_item_top_left:nth-child(2) {
  width: 100px;
  height: 100px;
}
@media (max-width: 1174px) {
  .gotoviy_doma_priemyschestva_content {
    flex-wrap: wrap;
    gap: 20px;
  }
  .gotoviy_doma_priemyschestva_content_item {
    width: 47%;
  }
}
@media (max-width: 550px) {
  .gotoviy_doma_priemyschestva_content_item {
    width: 100%;
  }
}
