@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@500;600;700;800;900&family=Roboto:wght@300;400;500&display=swap");
a {
  text-decoration: none;
}

ul, ol {
  padding: 0;
  margin: 0;
}

ul li, ol li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: 0 !important;
  outline-color: transparent !important;
  outline-width: 0 !important;
  outline-style: none !important;
  -webkit-box-shadow: 0 0 0 0 rgba(0, 123, 255, 0) !important;
  box-shadow: 0 0 0 0 rgba(0, 123, 255, 0) !important;
}

.shadow-1 {
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.bg-light {
  background-color: rgba(255, 255, 255, 0) !important;
}

.color-red-1 {
  color: #da251d;
}

.color-dark-3 {
  color: #333333;
}

h1,
h2 {
  font-family: "Roboto Slab", serif;
}

a {
  -webkit-transition: 0.3s !important;
  transition: 0.3s !important;
}

body {
  font-family: "Roboto", sans-serif;
}


.header {
  background-color: #5f9e2b;
  background-image: url("../background-img/slide-2.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
}

.header__bg {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 991px) {
  .header__bg {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  }
  body {
    padding-top: 64px !important;
  }
  .header__bg .container {
    padding: 0.6rem 0.75rem;
  }
  .header__bg .row {
    align-items: center;
    margin: 0 -0.35rem;
    flex-wrap: wrap;
  }
  .header__bg .row > [class^="col"] {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
  }
  /* Мобильная первая строка: логотип | поиск | бургер — всегда в один ряд */
  .header-mobile-first-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 100%;
    width: 100%;
    gap: 0.5rem;
    padding: 0 0.35rem;
    min-height: 52px;
    box-sizing: border-box;
  }
  .header-mobile-first-row__logo {
    flex-shrink: 0;
  }
  .header-mobile-first-row__search {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header-mobile-first-row__burger {
    flex-shrink: 0;
  }
  /* Логотип — удобная кликабельная область на мобильном */
  .header-mobile-logo-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 4px 0;
    -webkit-tap-highlight-color: transparent;
    border-radius: 0.5rem;
    transition: opacity 0.2s ease;
  }
  .header-mobile-logo-link:hover {
    opacity: 0.9;
  }
  .header-mobile-logo-link:active {
    opacity: 0.85;
  }
  .header-mobile-first-row .logotip {
    max-width: 120px;
  }
  .header-mobile-search-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.85rem;
    min-height: 42px;
    margin: 0;
    font-size: 0.95rem;
    color: #5f9e2b;
    background: rgba(95, 158, 43, 0.1);
    border: 1px solid rgba(95, 158, 43, 0.3);
    border-radius: 0.5rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s, border-color 0.2s;
    font-family: inherit;
  }
  .header-mobile-search-trigger:hover {
    background: rgba(95, 158, 43, 0.18);
    border-color: rgba(95, 158, 43, 0.5);
  }
  .header-mobile-search-trigger i {
    font-size: 1rem;
  }
  /* Выпадающая строка поиска — поверх контента, шапка по высоте не меняется */
  .header-mobile-search-dropdown {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 0.75rem;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: max-height 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
  }
  .header-mobile-search-dropdown.is-open {
    max-height: 80px;
  }
  .header-mobile-search-dropdown .header-mobile-search-form {
    padding: 0.5rem 0 0.6rem;
  }
  .header-mobile-search-dropdown .input-group {
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(95, 158, 43, 0.3);
    background: rgba(255, 255, 255, 0.6);
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  }
  .header-mobile-search-dropdown .input-group:focus-within {
    border-color: #5f9e2b;
    -webkit-box-shadow: 0 0 0 2px rgba(95, 158, 43, 0.2);
    box-shadow: 0 0 0 2px rgba(95, 158, 43, 0.2);
  }
  .header-mobile-search-dropdown .form-control {
    border: 0;
    padding: 0.55rem 0.75rem;
    font-size: 1rem;
    min-height: 44px;
  }
  .header-mobile-search-dropdown .form-control:focus {
    box-shadow: none;
  }
  .header-mobile-search-dropdown .header-mobile-search-btn {
    padding: 0 1rem;
    min-width: 48px;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
  }
  /* Поиск открыт — отступ body не меняем, шапка одной высоты */
  /* Кнопка бургер-меню — крупная и отзывчивая */
  .header-mobile-toggler {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 0.5rem;
    flex-shrink: 0;
    border: 1px solid rgba(95, 158, 43, 0.3) !important;
    background: rgba(95, 158, 43, 0.08) !important;
    color: #5f9e2b !important;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.2s, border-color 0.2s, transform 0.1s;
  }
  .header-mobile-toggler:hover {
    background: rgba(95, 158, 43, 0.15) !important;
    border-color: rgba(95, 158, 43, 0.5) !important;
  }
  .header-mobile-toggler:active {
    transform: scale(0.96);
  }
  .header-mobile-toggler[aria-expanded="true"] {
    background: rgba(95, 158, 43, 0.18) !important;
    border-color: #5f9e2b !important;
  }
  /* Иконка бургера — стандартная, цвет под шапку */
  .header-mobile-toggler .navbar-toggler-icon {
    width: 1.25em;
    height: 1.25em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%235f9e2b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  /* Панель выпадающего меню — навигация */
  .header-mobile-panel {
    margin-top: 0.6rem;
    margin-left: -0.35rem;
    margin-right: -0.35rem;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(95, 158, 43, 0.15);
    background: linear-gradient(to bottom, rgba(95, 158, 43, 0.04), transparent);
    border-radius: 0 0 0.75rem 0.75rem;
    -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  }
  .header-mobile-panel-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .header-mobile-nav-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0.75rem 1rem 0.75rem 1rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: #3d3d3a;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    -webkit-tap-highlight-color: rgba(95, 158, 43, 0.12);
    transition: color 0.2s, background-color 0.2s, padding-left 0.2s;
  }
  .header-mobile-nav-link:last-child {
    border-bottom: 0;
  }
  .header-mobile-nav-link:hover,
  .header-mobile-nav-link:focus {
    color: #5f9e2b;
    background-color: rgba(95, 158, 43, 0.06);
    padding-left: 1.25rem;
  }
  .header-mobile-nav-link:active {
    background-color: rgba(95, 158, 43, 0.12);
  }
  .header-mobile-nav-icon {
    width: 1.25rem;
    margin-right: 0.75rem;
    color: #5f9e2b;
    opacity: 0.9;
    flex-shrink: 0;
  }
  .header-mobile-nav-link:hover .header-mobile-nav-icon,
  .header-mobile-nav-link:focus .header-mobile-nav-icon {
    opacity: 1;
  }
}
.inform {
  color: #3d3d3a;
  font-size: 0.87rem;
}

.inform__work-time {
  display: block;
  font-weight: 500;
  line-height: 21px;
  text-transform: uppercase;
}

.inform__clock-time {
  display: block;
  line-height: 21px;
  font-weight: 300;
}

.inform__day-off {
  line-height: 21px;
  text-transform: uppercase;
}

.inform__day-of-week {
  line-height: 21px;
  font-weight: 300;
}

.location {
  font-size: 0.87rem;
  color: #444444;
}

.location__city {
  display: block;
  font-weight: 500;
  line-height: 21px;
}

.location__street {
  display: block;
  font-weight: 300;
  line-height: 21px;
}

.location__phone {
  display: block;
  font-weight: 700;
  line-height: 21px;
}

.location .fa-vk,
.location .fa-telegram-plane,
.location .fa-whatsapp {
  font-size: 1.3rem;
  color: #3a7e66;
}

.location .fa-whatsapp {
  margin-left: 6px;
}

@media (max-width: 991px) {
  .logotip {
    width: auto;
    max-width: 120px;
  }
}
.location .btn-primary {
  background-color: #49b28d !important;
  border-color: #5ddbae !important;
}

.navi {
  width: 100%;
}

.navi__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #49b28d;
  border-width: 2px !important;
  padding-top: 0.8rem;
  padding-bottom: 0.3rem;
}

@media screen and (max-width: 991px) {
  .navi__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: none;
  }
}
.navi__link {
  font-size: 18px;
  font-weight: 500;
  color: #3d3d3a;
}

@media screen and (max-width: 991px) {
  .navi__link {
    font-size: 1.3rem;
  }
}
.navi__link:hover {
  color: rgba(95, 158, 43, 0.8);
}

.navbar-light .navbar-toggler {
  color: #5f9e2b;
  border-color: #5f9e2b;
}

.navbar-light .navbar-toggler:hover {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.bgr-white-3 {
  background-color: rgba(255, 255, 255, 0.8);
}

.bgr-green-2 {
  background-color: #49b28d;
}

@media screen and (max-width: 991px) {
  .prew {
    min-height: calc(100vh + 72px);
    padding-top: 72px;
  }
}
@media screen and (min-width: 992px) {
  .prew {
    min-height: calc(100vh - 172px);
  }
}
.prew__anons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (max-width: 991px) {
  .prew__anons {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 30px;
  }
}
@media screen and (min-width: 992px) {
  .prew__anons {
    padding-top: 122px;
  }
}
.prew__btn {
  background-color: #49b28d;
  line-height: 22px;
  padding: 1rem 2.2rem;
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-radius: 3px;
}

.prew__btn:hover {
  background-color: #44a381;
  color: #f3f0f0 !important;
}

@media screen and (max-width: 991px) {
  .prew__btn {
    font-size: 0.9rem;
    padding: 0.9rem 2rem;
  }
}
.prew__title-h1 {
  font-size: clamp(22px, 5vw, 63px);
  line-height: 60px;
  text-transform: uppercase;
  font-weight: 700;
  background-color: rgba(255, 42, 42, 0.7098039216);
  padding: 0.4rem 2rem 0.6rem 2rem;
}

.prew__title-h2 {
  margin-top: 0.6rem;
  font-size: clamp(20px, 5vw, 30px);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1.2;
  background-color: rgba(255, 42, 42, 0.7098039216);
  padding: 0 2rem 0.3rem 2rem;
}

.prew__block {
  -ms-flex-item-align: end;
  align-self: flex-end;
  padding-bottom: 1rem;
}

.prew__items {
  padding: 1.3rem 0.4rem 1rem 2rem;
  height: 100%;
}

/* Единый стиль для всех 4 блоков на главном экране */
.prew__items--unified {
  background-color: rgba(255, 255, 255, 0.92);
  color: #2d3e2d;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.prew__items--unified .prew__text-1,
.prew__items--unified .prew__text-2 {
  color: #2d3e2d;
}

.prew__items--accent {
  background-color: #49b28d !important;
  box-shadow: 0 4px 16px rgba(73, 178, 141, 0.4);
}

.prew__items--accent .prew__text-1,
.prew__items--accent .prew__text-2 {
  color: #fff !important;
}

.prew__text-1 {
  display: block;
  padding-top: 0.3rem;
  font-weight: 700;
}

@media (max-width: 767px) {
  .prew__text-1 {
    font-size: calc(21px + 11.9 * (100vw - 320px) / 1400);
  }
}
@media (min-width: 767px) {
  .prew__text-1 {
    font-size: calc(21px + 0.5vw);
  }
}
.prew__text-2 {
  display: block;
  font-size: 0.75rem;
}

.project__wrapper {
  padding: 4rem 0;
}

.project__wrapper-cat {
  padding: 1rem 0;
}

.project__up-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .project__up-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.project__title {
  color: #414141;
  font-size: 32px;
}

@media (max-width: 991px) {
  .project__title {
    text-align: center;
  }
}
.project__text {
  color: #414141;
  font-size: clamp(15px, 2vw, 16px) !important;
}

.project__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

a.dropdown-item.sz-btn {
  padding: 4px 6px;
}

button#dropdownMenuButton1,
button#dropdownMenuButton2,
button#dropdownMenuButton3,
button#dropdownMenuButton4 {
  background-color: #49b28d;
  border-color: #3ddba3;
}

ul.dropdown-menu.dropdown-menu-dark.bg-ul {
  background-color: rgba(52, 58, 64, 0.9294117647) !important;
}

.h3-card {
  font-size: 1.2em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.h3-card:hover {
  color: #f09c00;
}

.white-text {
  color: #fff;
}

.size-card {
  font-size: 14px;
}

.elegant-color {
  background-color: #2e2e2e !important;
}

.hr-light {
  border-top: 1px solid #fff;
}

/* News list cards */
.news-section .news-card {
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.news-section .news-card:hover {
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-2px);
}
.news-card__img-link {
  display: block;
  overflow: hidden;
}
.news-card__img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.news-card:hover .news-card__img {
  transform: scale(1.03);
}
.news-card__placeholder {
  height: 180px;
  min-height: 180px;
}
.news-card__title a:hover {
  color: #5f9e2b !important;
}
.news-card__more {
  color: #5f9e2b;
}

/* News detail */
.news-detail__title {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.3;
}
.news-detail__content {
  line-height: 1.7;
}
.news-sidebar .news-sidebar__item:last-child {
  border-bottom: none !important;
}
.news-sidebar .news-sidebar__item a:hover {
  color: #5f9e2b !important;
}

.call-phone {
  background-color: #636262;
  background-image: url(../background-img/bg-phone.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 6rem 0;
  -webkit-filter: grayscale(80%);
          filter: grayscale(80%);
}

.phone-btn > .btn {
  padding: 0.52rem 2rem !important;
  font-size: 1rem;
  border-radius: 0 !important;
}

.phone__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.3019607843);
  border-right: 1px solid #aeaeae;
  border-radius: 0.125rem;
  padding: 0.8em 1em 0.4em 1.1em;
}

.phone__icon::before {
  content: url(../background-img/vector.svg);
  position: relative;
}

@media screen and (min-width: 576px) {
  .call__cntr {
    text-align: left;
  }
}
.phone-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.call__phone {
  background-color: rgba(255, 255, 255, 0.3019607843);
  color: white;
}

.btn-outline-secondary {
  color: #edf3f8;
  border-color: #dce0e2;
}

.btn-outline-secondary:hover {
  background-color: #e67c20;
  border-color: #6c757d;
}

.phone-block.form-control {
  border: 1px solid #868686 !important;
  border-radius: 0 !important;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
  appearance: auto !important;
}

.ph input#af_phone {
  border-radius: 0;
  border: 1px solid #868686 !important;
}

.ph input#af_phone::-webkit-input-placeholder {
  color: #fff;
  font-weight: 300;
}

.ph input#af_phone:-ms-input-placeholder {
  color: #fff;
  font-weight: 300;
}

.ph input#af_phone::-ms-input-placeholder {
  color: #fff;
  font-weight: 300;
}

.ph input#af_phone::-moz-placeholder {
  color: #fff;
  font-weight: 300;
}

.ph input#af_phone::placeholder {
  color: #fff;
  font-weight: 300;
}

.sft-2 {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7490196078);
}

.sft-2:hover {
  color: #da251d;
}

.image {
  background-image: url(../img/map-ofis.png);
  background-repeat: no-repeat;
  background-position: center;
  /* background-size: cover; */
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.bgr-white {
  background-color: white;
  z-index: 100;
}

.myicon {
  border-radius: 1.5rem;
}

.text-left {
  text-align: left !important;
}

.about .fa-house-user,
.about .fa-sign,
.about .fa-houzz,
.about .fa-warehouse {
  font-size: 3rem;
  color: #dc3545;
}

.font p {
  color: #363636;
  font-size: 0.8rem;
}

.unique-color-dark {
  background-color: #1c2331 !important;
  padding-top: 2rem;
}

footer a,
footer p,
footer h6 {
  color: #e1e1e1;
}

footer.page-footer .footer-copyright {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.6);
  background-color: rgba(0, 0, 0, 0.2);
}

.info-color {
  background-color: #00bbff !important;
}

hr {
  opacity: 1;
}

.breadcrumb-bg {
  background-color: #666666;
  padding: 10px 0 !important;
  font-size: 0.87rem;
  margin: 0 !important;
  -webkit-box-shadow: 0px 5px 5px -2px rgba(34, 60, 80, 0.6);
  box-shadow: 0px 5px 5px -2px rgba(34, 60, 80, 0.6);
}
.breadcrumb-bg .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  margin-right: 1rem;
  padding: 0.25rem 0;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.2s;
}
.back-button:hover {
  color: #ffffff !important;
  opacity: 0.9;
}
.back-button i {
  font-size: 0.85rem;
}

/* Блок новостей на главной — без своего фона, единый с градиентом страницы */
.news-block-home {
  position: relative;
  padding: 3rem 0 4rem;
  background: transparent;
  overflow: visible;
}
.news-block-home__wrapper {
  padding: 2rem 0 2.5rem;
  position: relative;
  z-index: 1;
}
.news-block-home__header {
  flex-direction: column !important;
  align-items: flex-start !important;
  margin-bottom: 1.5rem !important;
}
.news-block-home__title {
  position: relative;
  padding-bottom: 0.6rem;
  margin-bottom: 0.25rem;
  font-size: 2rem;
  font-weight: 700;
  color: #2d3e2d !important;
}
.news-block-home__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #49b28d, #5f9e2b);
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(73, 178, 141, 0.35);
}
.news-block-home__title i {
  color: #49b28d;
  font-size: 1.1em;
}
.news-block-home__subtitle {
  font-size: 0.9rem !important;
  letter-spacing: 0.02em;
}
.news-block-home__btn {
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(73, 178, 141, 0.4);
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.news-block-home__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(73, 178, 141, 0.5);
  background-color: #349b76 !important;
  border-color: #349b76 !important;
  color: #fff;
}
@media (max-width: 991px) {
  .news-block-home__header {
    align-items: center !important;
  }
  .news-block-home__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .news-block-home__subtitle {
    text-align: center;
  }
}

/* Карточки новостей на главной */
.news-card-home {
  border-radius: 14px;
  overflow: hidden;
  background-color: #2f2f2f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/* Обёртка фото без отступов */
.news-card-home > a:first-child {
  display: block;
  margin: 0;
  padding: 0;
  line-height: 0;
  overflow: hidden;
}
.news-card-home .card-img-top {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}
.news-card-home:focus,
.news-card-home:focus-visible,
.news-card-home a:focus,
.news-card-home a:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
.news-card-home .card-body {
  background-color: #2f2f2f;
}
.news-card-home__title {
  color: #ffffff !important;
  transition: color 0.2s;
}
.news-card-home__title:hover {
  color: #f09c00 !important;
}
.news-card-home__desc {
  color: #e0e0e0 !important;
}
.news-card-home__footer {
  border-color: rgba(255, 255, 255, 0.18) !important;
}
.news-card-home__date {
  color: #e8e8e8 !important;
}
/* Цена в карточках: читаемо на тёмном фоне (главная, подборка по новостям) */
.news-card-home .news-card-home__date,
.news-card-home .news-card-home__date .text-muted,
.news-card-home--product .news-card-home__date,
.news-card-home--product .news-card-home__date .text-muted {
  color: #b0b0b0 !important;
}
.news-card-home .news-card-home__date .text-decoration-line-through,
.news-card-home--product .news-card-home__date .text-decoration-line-through {
  color: #888 !important;
  font-weight: 500;
}
.news-card-home .news-card-home__date .text-danger,
.news-card-home--product .news-card-home__date .text-danger {
  color: #2ed573 !important;
  font-weight: 700;
}
.news-card-home .news-card-home__date .badge.bg-danger,
.news-card-home--product .news-card-home__date .badge.bg-danger {
  background-color: #e74c3c !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.7rem;
}
.news-card-home .news-card-home__date .badge.bg-success,
.news-card-home--product .news-card-home__date .badge.bg-success {
  background-color: #27ae60 !important;
  color: #fff !important;
}

/* Цена в тёмных карточках каталога, поиска, тегов (.elegant-color) */
.card-body.elegant-color .size-card,
.card-body.elegant-color .size-card span {
  color: #e8e8e8 !important;
}
.card-body.elegant-color .text-muted,
.card-body.elegant-color .size-card .text-muted {
  color: #888 !important;
}
.card-body.elegant-color .text-decoration-line-through,
.card-body.elegant-color .size-card .text-decoration-line-through {
  color: #999 !important;
  font-weight: 500;
}
.card-body.elegant-color .text-danger,
.card-body.elegant-color .size-card .text-danger,
.card-body.elegant-color span.text-danger.fw-bold {
  color: #2ed573 !important;
  font-weight: 700;
}
.card-body.elegant-color .badge.bg-danger,
.card-body.elegant-color .size-card .badge.bg-danger {
  background-color: #e74c3c !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.7rem;
}

.news-card-home__placeholder {
  height: 220px;
  background: linear-gradient(135deg, #414141 0%, #2f2f2f 100%);
}

/* Карточки домов (как на главной): фиксированная высота фото 200px */
.news-card-home--product .card-img-top {
  height: 200px;
  object-fit: cover;
}
.news-card-home--product .news-card-home__placeholder {
  height: 200px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #c9c8c8 !important;
}

ol.breadcrumb {
  margin: 0 !important;
}

.btn-default {
  background-color: #49b28d;
  color: #fff;
}

.btn-default:hover {
  color: #fff;
  background-color: #349b76;
}

.my-table1 > :not(caption) > * > * {
  padding: 0.9rem 0.5rem !important;
}

nav > .nav.nav-tabs {
  border: none;
  color: #fff !important;
  background: #1c2331;
  border-radius: 0;
}

.qq {
  border: none;
  padding: 18px 25px;
  color: #fff;
  background: #1c2331;
  border-radius: 0;
}

.qq:hover,
.qq:focus {
  border: none;
  background: #e74c3c;
  color: #fff;
  border-radius: 0;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}

.tab-content {
  background: #fdfdfd;
  line-height: 25px;
  border: 1px solid #ddd;
  border-top: 5px solid #e74c3c;
  border-bottom: 5px solid #e74c3c;
}

.fa-image {
  color: #212529 !important;
}

.lightzoom {
  padding: 10px !important;
}

.adop {
  margin-top: 4rem;
  margin-bottom: 3rem;
}

.form-cont input {
  border: none;
  border-bottom: 1px solid #ced4da;
  height: auto;
  padding: 0.6rem 0 0.4rem 0;
  margin: 0 0 1rem 0;
}

.form-cont p {
  margin-bottom: 3px;
  color: #6d6c6c;
}

.form-cont .fa-map-marker-alt,
.form-cont .fa-vk,
.form-cont .fa-phone {
  color: #49b28d;
}

.form-cont a {
  color: #6d6c6c;
}

.btn-primary {
  background-color: #49b28d !important;
  border: none;
}

.btn-primary:hover {
  color: #fff;
  background-color: #349b76 !important;
}

@media (max-width: 991px) {
  .indent-up {
    margin-top: 3rem !important;
  }
}
@media (max-width: 991px) {
  .indent-up-2 {
    margin-top: 5rem !important;
  }
}
.stepper__list {
  margin: 60px 0 20px 0;
  position: relative;
}

.stepper__list:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  margin-left: -1px;
  background-color: #49b28d;
}

@media screen and (max-width: 993px) {
  .stepper__list:before {
    left: 0;
  }
}
.stepper__item {
  width: 50%;
  padding: 16px 40px 16px 0;
  position: relative;
}

@media screen and (max-width: 993px) {
  .stepper__item {
    width: 100%;
  }
}
.stepper__item:nth-child(even) {
  margin-left: 50%;
  padding: 16px 0 16px 40px;
}

@media screen and (max-width: 993px) {
  .stepper__item:nth-child(even) {
    margin: 0;
    padding: 16px 0 16px 24px;
  }
}
.stepper__item_first:before {
  content: "";
  position: absolute;
  right: -8px;
  top: 1.7rem;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #49b28d;
  background-color: #fff;
}

@media screen and (max-width: 993px) {
  .stepper__item_first:before {
    left: -8px;
  }
}
@media screen and (max-width: 576px) {
  .stepper__item_first:before {
    top: 1.5rem;
  }
}
.stepper__item_second::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 1.7rem;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #49b28d;
  background-color: #fff;
}

@media screen and (max-width: 576px) {
  .stepper__item_second::before {
    top: 1.5rem;
  }
}
.stepper__title {
  color: #212529;
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 50px;
  margin-bottom: 0.8rem;
}

@media screen and (max-width: 576px) {
  .stepper__title {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 576px) {
  .stepper__title {
    line-height: 1.3;
  }
}
.stepper__title_h3 {
  text-align: right;
}

@media screen and (max-width: 993px) {
  .stepper__title_h3 {
    text-align: left;
    padding-left: 24px;
  }
}
.stepper__text {
  color: #6d6c6c;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1rem;
}

@media screen and (max-width: 576px) {
  .stepper__text {
    font-size: 1rem;
  }
}
.stepper__text_p {
  text-align: right;
}

@media screen and (max-width: 993px) {
  .stepper__text_p {
    text-align: left;
    padding-left: 24px;
  }
}
.h2-responsive {
  font-size: 145%;
}

@media (min-width: 576px) {
  .h2-responsive {
    font-size: 140%;
  }
}
@media (min-width: 768px) {
  .h2-responsive {
    font-size: 170%;
  }
}
@media (min-width: 992px) {
  .h2-responsive {
    font-size: 170%;
  }
}
@media (min-width: 1200px) {
  .h2-responsive {
    font-size: 200%;
  }
}
.h3-responsive {
  font-size: 135%;
}

@media (min-width: 576px) {
  .h3-responsive {
    font-size: 125%;
  }
}
@media (min-width: 768px) {
  .h3-responsive {
    font-size: 140%;
  }
}
@media (min-width: 992px) {
  .h3-responsive {
    font-size: 140%;
  }
}
@media (min-width: 1200px) {
  .h3-responsive {
    font-size: 170%;
  }
}
.ul ul {
  margin-top: 0;
  margin-bottom: 1rem;
  display: block;
  list-style-type: disc;
  -webkit-margin-before: 1em;
  margin-block-start: 1em;
  -webkit-margin-after: 1em;
  margin-block-end: 1em;
  -webkit-margin-start: 0px;
  margin-inline-start: 0px;
  -webkit-margin-end: 0px;
  margin-inline-end: 0px;
  -webkit-padding-start: 40px;
  padding-inline-start: 40px;
}

@media (max-width: 576px) {
  .ul ul {
    -webkit-padding-start: 20px;
    padding-inline-start: 20px;
  }
}
.ul li {
  list-style-type: disc;
}

ul hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(96, 96, 96, 0.1882352941) !important;
  background-color: rgba(96, 96, 96, 0.1882352941) !important;
}

.pagination .page-item .page-link {
  font-size: 0.9rem;
  color: #212529;
  background-color: transparent;
  border: 0;
  outline: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #49b28d !important;
  border-radius: 0.125rem;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.forms__vs-2 {
  visibility: hidden;
}

.forms__vs {
  opacity: 0;
}

.vop.accordion {
  --bs-accordion-active-bg: #1c2331;
  --bs-accordion-color: color: #414141;
  --bs-accordion-active-color: #d6d6d6;
}

.vop.button.accordion-button {
  color: #349b76 !important;
}

/* ===== РАЗДЕЛ ОТЗЫВОВ ===== */
.reviews-section {
  padding: 3rem 0 4rem;
  background: transparent;
}

.review-card {
  background: #2f2f2f;
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14), 0 1px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #49b28d, #5f9e2b);
  border-radius: 16px 16px 0 0;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.review-card__quote {
  font-size: 1.6rem;
  color: #49b28d;
  opacity: 0.45;
  margin-bottom: 0.6rem;
  line-height: 1;
}

.review-card__stars {
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: #f4c430;
  letter-spacing: 0.1em;
}

.review-card__text {
  color: #d8d8d8;
  font-size: 0.92rem;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.review-card__footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #49b28d, #5f9e2b);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.review-card__avatar--2 { background: linear-gradient(135deg, #5f9e2b, #3a7a1a); }
.review-card__avatar--3 { background: linear-gradient(135deg, #2980b9, #1a5276); }
.review-card__avatar--4 { background: linear-gradient(135deg, #8e44ad, #6c3483); }
.review-card__avatar--5 { background: linear-gradient(135deg, #e67e22, #ca6f1e); }
.review-card__avatar--6 { background: linear-gradient(135deg, #c0392b, #922b21); }

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.review-card__name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #f0f0f0;
}

.review-card__meta {
  font-size: 0.78rem;
  color: #888;
}

/* Итоговый рейтинг */
.reviews-summary {
  display: flex;
  justify-content: center;
}

.reviews-summary__inner {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, #49b28d18, #5f9e2b12);
  border: 1px solid rgba(73, 178, 141, 0.25);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  box-shadow: 0 2px 12px rgba(73, 178, 141, 0.08);
}

.reviews-summary__score {
  font-family: "Roboto Slab", serif;
  font-size: 3rem;
  font-weight: 800;
  color: #49b28d;
  line-height: 1;
}

.reviews-summary__stars {
  font-size: 1rem;
  color: #f4c430;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.reviews-summary__label {
  font-size: 0.85rem;
  color: #aaa;
  margin-bottom: 0.2rem;
}

.reviews-summary__count {
  font-size: 0.82rem;
  font-weight: 600;
  color: #5f9e2b;
}

@media (max-width: 576px) {
  .reviews-summary__inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
  }
  .reviews-summary__score {
    font-size: 2.5rem;
  }
}
/* ===== /РАЗДЕЛ ОТЗЫВОВ ===== */

.logo-img {
  width: 220px;
  height: auto;
}

@media (max-width: 991px) {
  .logo-img {
    width: 100px !important;
    max-height: 44px;
    height: auto;
    object-fit: contain;
  }
}
/* ===== ВЫПАДАЮЩИЙ ПУНКТ НАВИГАЦИИ ===== */
.navi__link--has-dropdown {
  display: flex;
  align-items: center;
  gap: 5px;
}
.navi__link--has-dropdown::after {
  border: none !important;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f078";
  font-size: 0.6em;
  margin-left: 2px;
  vertical-align: middle;
  transition: transform 0.22s ease;
}
.navi__link--has-dropdown[aria-expanded="true"]::after {
  transform: rotate(180deg);
}
.navi__custom-dropdown {
  border-radius: 14px !important;
  border-top: 4px solid #49b28d !important;
  min-width: 320px;
  padding: 8px 0;
  animation: navDropIn 0.18s ease;
}
@keyframes navDropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.navi__custom-dropdown__item {
  display: flex !important;
  align-items: center !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #555 !important;
  padding: 14px 22px !important;
  transition: background 0.15s, color 0.15s;
  width: 100%;
  letter-spacing: 0.01em;
}
.navi__custom-dropdown__item:hover,
.navi__custom-dropdown__item:focus {
  background: #f0faf5 !important;
  color: #49b28d !important;
}
.navi__dd-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  font-size: 20px;
  margin-right: 14px;
  flex-shrink: 0;
}
.navi__dd-icon--star  { background: #fff8e1; }
.navi__dd-icon--news  { background: #e8f5e9; }
/* ===== /ВЫПАДАЮЩИЙ ПУНКТ НАВИГАЦИИ ===== */
