@import url('https://fonts.googleapis.com/css?family=Noto+Serif&display=swap');

body,
p {
  font-family: 'Noto Serif';
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.entry-content,
.entry-content p,
#about p {
  font-family: 'Noto Serif';
  color: #424242;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Noto Serif', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.entry-content p em {
  color: #c8ac48;
  display: block;
  border-left: 3px solid #c8ac48;
  padding-left: 15px;
}

.slide_description p,
.hero-slider__description p,
.section_header + p {
  font-family: 'Noto Serif';
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.with_background .entry-content {
  color: #656971;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding: 20px 0;
}

.pagination__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  font-family: 'Noto Serif', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #2b272c;
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination__button:hover {
  color: #2b272c;
  background-color: #f5f5f5;
  border-color: #c8ac48;
  text-decoration: none;
}

.pagination__button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 172, 72, 0.3);
}

.pagination__button--active,
.pagination__button[aria-current='page'] {
  color: #ffffff;
  background-color: #c8ac48;
  border-color: #c8ac48;
  font-weight: 700;
  cursor: default;
}

.pagination__button--active:hover,
.pagination__button[aria-current='page']:hover {
  color: #ffffff;
  background-color: #c8ac48;
  border-color: #c8ac48;
}

.pagination__button--dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  color: #7e7d82;
  background: transparent;
  border: none;
  font-size: 16px;
  cursor: default;
}

.pagination__button--dots:hover {
  background: transparent;
  border-color: transparent;
  color: #7e7d82;
}

@media (max-width: 575.98px) {
  .pagination {
    gap: 6px;
    margin-top: 30px;
  }

  .pagination__button {
    min-width: 38px;
    height: 38px;
    padding: 0 8px;
    font-size: 14px;
  }

  .pagination__button--dots {
    min-width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .pagination {
    gap: 7px;
  }

  .pagination__button {
    min-width: 42px;
    height: 42px;
    font-size: 15px;
  }
}

.entry-content {
  text-align: justify;
  line-height: 25px;
}

.entry-content p {
  margin-bottom: 15px !important;
}

footer {
  padding-top: 15px;
}

#tarify tr td {
  vertical-align: middle;
  padding: 10px;
  font-size: 90%;
}

#tarify tr:nth-child(2n) {
  background: #f0f0f0;
  /* Цвет фона */
}

h3.entry-title {
  line-height: 30px;
}

.site-logo__phone {
  font-size: 16px;
  padding-top: 5px;
  font-weight: 300;
}

#modal_form,
.modal-consultation {
  width: 450px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  box-sizing: border-box;
  overflow-y: auto;
  background-color: #2b272c;
  background-image: url(../img/dark_pattern.png);
  color: #7e7d82;
  border-radius: 3px;
  border: 1px solid #c8ac48;
  position: fixed;
  top: 45%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
  display: none;
  opacity: 0;
  z-index: 99999;
  padding: 20px 20px;
}

#modal_form #modal_close,
.modal-consultation__close {
  width: 21px;
  height: 21px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #c8ac48;
  font-size: 24px;
  line-height: 21px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  display: block;
}

#overlay_modal,
.modal-overlay {
  z-index: 999;
  position: fixed;
  background-color: #000;
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}

.success-modal__close {
  width: 21px;
  height: 21px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #c8ac48;
  font-size: 24px;
  line-height: 21px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  display: block;
}

@media (max-width: 767.98px) {
  #modal_form,
  .modal-consultation {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 24px);
    max-height: calc(100dvh - 24px);
    padding: 18px 14px;
  }

  .modal-consultation .row {
    margin-left: -8px;
    margin-right: -8px;
  }

  .modal-consultation [class*='col-'] {
    padding-left: 8px;
    padding-right: 8px;
  }

  .modal_submit,
  .modal-consultation__submit {
    margin-left: 0;
    text-align: center;
  }

  .modal-consultation__submit .theme_button {
    width: 100%;
    max-width: 280px;
  }

  .success-modal__content {
    padding: 18px 6px 8px;
  }

  .success-modal__icon {
    margin-bottom: 14px;
  }

  .success-modal__icon i {
    font-size: 52px;
  }

  .success-modal__title {
    font-size: 21px;
  }

  .success-modal__text {
    font-size: 15px;
  }

  .success-modal__link {
    width: 100%;
    min-width: 0;
  }
}

.success-modal__content {
  text-align: center;
  padding: 20px 10px;
}

.success-modal__icon {
  margin-bottom: 20px;
}

.success-modal__icon i {
  font-size: 64px;
  color: #c8ac48;
}

.success-modal__title {
  margin-bottom: 16px;
  color: #ffffff;
  font-family: 'Noto Serif', serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
}

.success-modal__text {
  margin-bottom: 24px;
  color: #d7d3cb;
  font-family: 'Noto Serif', serif;
  font-size: 16px;
  line-height: 1.6;
}

.success-modal__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 44px;
  padding: 12px 24px;
  color: #2b272c !important;
  background: linear-gradient(180deg, #d9bf5a 0%, #c8ac48 100%);
  border: 1px solid #c8ac48;
  border-radius: 3px;
  font-family: 'Noto Serif', serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.success-modal__link:hover,
.success-modal__link:focus {
  color: #ffffff !important;
  background: linear-gradient(180deg, #c8ac48 0%, #9d8330 100%);
  border-color: rgba(217, 191, 90, 0.95);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

.g-recaptcha,
.modal-consultation__captcha {
  margin-left: 33px;
  margin-bottom: 20px;
  display: block;
}

.modal_submit,
.modal-consultation__submit {
  margin-left: 100px;
  display: block;
}

.m-t-30 {
  margin-top: 30px !important;
}

.widget-title2 {
  margin-top: 10px;
  color: #2b272c;
  font-family: 'Noto Serif';
  line-height: 1.3;
  font-weight: 400;
  word-break: break-word;
  font-size: 24px;
}

.sf-menu li {
  white-space: normal;
}

.sf-menu > li .mega-menu,
.sf-menu li > ul {
  min-width: 500px;
}

/*.justify{
  text-align: justify;
}*/

.hidden {
  font-size: 0.01px;
}

h1 {
  margin-bottom: 0px;
}

.container-left-half {
  text-align: justify;
}

p.phone {
  font-size: 130%;
}

@media screen and (max-width: 1000px) {
  .h1_main,
  .home-about__title {
    margin-top: -60px;
    padding-left: 80px;
    margin-bottom: 50px;
  }

  #services .teaser,
  .services-section .service-card {
    min-height: 590px;
  }

  .section_padding_bottom_75 > [class*='container'] {
    padding-top: 20px;
  }
}

.justify,
.home-about__text {
  text-align: justify;
}

.intro-layer,
.hero-slider__layer,
.page_footer,
.site-footer,
.page_footer a,
.site-footer a {
  color: #eeeeee !important;
}

.teaser h2,
.service-card__title {
  font-size: 24px;
}

.teaser .media-body h2,
.service-card__title {
  margin-bottom: 10px;
}

.text_white {
  color: #ffffff;
}

.page_footer h2,
.site-footer__tagline {
  font-family: 'Noto Serif', sans-serif;
  font-size: 16px;
  line-height: 27px;
  margin: 5px;
}

.page_footer li a,
.site-footer li a {
  font-family: 'Noto Serif', sans-serif;
  font-size: 15px;
  line-height: 18px;
  margin: 0px;
}

.page_footer li,
.site-footer li {
  color: #7e7d82;
}

#LiveInternet {
  margin-top: 20px;
  margin-top: 10px;
}

.blockquote {
  width: 100%;
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
  margin-left: 40px;
  margin-right: 40px;
}

.blockquote {
  padding: 60px 80px 40px;
  position: relative;
}

.blockquote p {
  font-family: 'Utopia-italic';
  font-size: 35px;
  font-weight: 700px;
  text-align: center;
}

/*blockquote p::before {
    content: "\f095";
    font-family: FontAwesome;
   display: inline-block;
   padding-right: 6px;
   vertical-align: middle;
  font-size: 180px;
 }*/

.blockquote:before {
  position: absolute;
  font-family: 'FontAwesome';
  top: 0;
  content: '\f10d';
  font-size: 200px;
  color: rgba(0, 0, 0, 0.1);
}

.blockquote::after {
  content: '';
  top: 20px;
  left: 50%;
  margin-left: -100px;
  position: absolute;
  border-bottom: 3px solid #bf0024;
  height: 3px;
  width: 200px;
}

.otro-blockquote {
  position: relative;
  margin: 50px auto;
  padding: 1.2em 30px 1.2em 75px;
  color: #555555;
  border-left: 8px solid #c8ac48;
  font-size: 120%;
  line-height: 1.6;
}

.otro-blockquote::before {
  font-family: Arial;
  content: '\201C';
  color: #c8ac48;
  font-size: 4em;
  position: absolute;
  left: 10px;
  top: -10px;
}

.otro-blockquote::after {
  content: '';
}

.otro-blockquote span {
  display: block;
  color: #333333;
  font-style: normal;
  font-weight: bold;
  margin-top: 1em;
}

img#lawyer {
  margin-left: 30px;
  margin-bottom: 10px;
  max-width: 400px;
}

.legal-help {
  position: relative;
  margin-top: -1px;
  padding: 76px 0 68px;
  background-color: #2b272c;
  background-image:
    linear-gradient(
      180deg,
      rgba(18, 16, 19, 0.78),
      rgba(43, 39, 44, 0.96) 34%,
      rgba(31, 28, 32, 0.98)
    ),
    url(../img/dark_pattern.png);
  overflow: hidden;
}

.legal-help:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(200, 172, 72, 0.42),
    transparent
  );
}

.legal-help:after {
  content: '';
  position: absolute;
  top: -140px;
  right: -90px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(200, 172, 72, 0.18);
  border-radius: 50%;
}

.legal-help__panel:before {
  content: '';
  position: absolute;
  bottom: -170px;
  left: -150px;
  width: 320px;
  height: 320px;
  background: rgba(200, 172, 72, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.legal-help__panel {
  position: relative;
  z-index: 1;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: #d7d3cb;
}

.legal-help__header {
  max-width: 840px;
  margin: 0 auto 38px;
  text-align: center;
}

.legal-help__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #c8ac48;
  font-family: 'Noto Serif', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.legal-help__title {
  margin: 0;
  color: #ffffff !important;
  font-size: 34px;
  line-height: 1.28;
}

.legal-help__lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: #d7d3cb;
  font-size: 17px;
  line-height: 1.7;
}

.legal-help__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0 0 36px;
}

.legal-help__steps:before {
  content: '';
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(200, 172, 72, 0.58),
    transparent
  );
}

.legal-help__step {
  position: relative;
  min-height: 250px;
  padding: 88px 22px 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.legal-help__step:hover {
  transform: translateY(-6px);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border-color: rgba(200, 172, 72, 0.45);
}

.legal-help__number {
  position: absolute;
  top: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #2b272c;
  background: #c8ac48;
  border-radius: 50%;
  font-family: 'Noto Serif', serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 0 0 8px rgba(200, 172, 72, 0.12);
}

.legal-help__step-title {
  margin: 0 0 12px;
  color: #ffffff !important;
  font-size: 22px;
  line-height: 1.25;
}

.legal-help__step p {
  margin: 0;
  color: #d7d3cb;
  font-size: 15px;
  line-height: 1.65;
  text-align: left;
}

.legal-help__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-help__footer p {
  max-width: 660px;
  margin: 0;
  color: #d7d3cb;
  font-size: 16px;
  line-height: 1.65;
}

.legal-help__button {
  flex: 0 0 auto;
  margin: 0;
  white-space: nowrap;
}

@media (max-width: 1199.98px) {
  .legal-help__panel {
    padding: 0;
  }

  .legal-help__step {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 991.98px) {
  .legal-help {
    padding: 58px 0 54px;
  }

  .legal-help__title {
    font-size: 29px;
  }

  .legal-help__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-help__steps:before {
    display: none;
  }

  .legal-help__step {
    min-height: 220px;
  }

  .legal-help__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .legal-help {
    padding: 44px 0;
  }

  .legal-help__panel {
    padding: 0;
  }

  .legal-help__header {
    margin-bottom: 26px;
    text-align: left;
  }

  .legal-help__title {
    font-size: 25px;
  }

  .legal-help__lead {
    font-size: 16px;
  }

  .legal-help__steps {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 26px;
  }

  .legal-help__step {
    min-height: auto;
    padding: 78px 18px 22px;
  }

  .legal-help__footer {
    gap: 18px;
    padding-left: 0;
    padding-right: 0;
  }

  .legal-help__button {
    width: 100%;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 479.98px) {
  .legal-help__panel {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }

  .legal-help__title {
    font-size: 22px;
  }

  .legal-help__step-title {
    font-size: 20px;
  }
}

/* Home info section */
.info-section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background-color: #211e22;
  background-image:
    linear-gradient(135deg, rgba(18, 16, 19, 0.96), rgba(43, 39, 44, 0.9)),
    radial-gradient(
      circle at 12% 18%,
      rgba(200, 172, 72, 0.2),
      transparent 30%
    ),
    url(../img/dark_pattern.png);
}

.info-section:before,
.info-section:after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.info-section:before {
  inset: 0;
  background:
    linear-gradient(
        to right,
        transparent,
        rgba(200, 172, 72, 0.22),
        transparent
      )
      top / 100% 1px no-repeat,
    linear-gradient(
        to right,
        transparent,
        rgba(200, 172, 72, 0.16),
        transparent
      )
      bottom / 100% 1px no-repeat;
}

.info-section:after {
  right: -110px;
  bottom: -150px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(200, 172, 72, 0.18);
  border-radius: 50%;
}

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

.info-section__panel {
  position: relative;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 38px;
  align-items: center;
  padding: 42px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.095),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(200, 172, 72, 0.36);
  border-radius: 6px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.045);
}

.info-section__panel:before {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  z-index: -1;
  border: 1px solid rgba(200, 172, 72, 0.16);
}

.info-section__metric {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  padding: 28px 24px;
  color: #2b272c;
  background: linear-gradient(180deg, #d9bf5a 0%, #c8ac48 100%);
  border-radius: 4px;
  text-align: center;
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.info-section__metric-number {
  display: block;
  font-family: 'Noto Serif', serif;
  font-size: 92px;
  font-weight: 700;
  line-height: 0.9;
}

.info-section__metric-label {
  display: block;
  margin-top: 12px;
  color: rgba(43, 39, 44, 0.82);
  font-family: 'Noto Serif', serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.8px;
  line-height: 1.35;
  text-transform: uppercase;
}

.info-section__content {
  min-width: 0;
}

.info-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #c8ac48;
  font-family: 'Noto Serif', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.info-section__eyebrow:before {
  content: '';
  width: 42px;
  height: 1px;
  background: #c8ac48;
}

.info-section__title {
  max-width: 850px;
  margin: 0 0 22px;
  color: #ffffff !important;
  font-size: 34px;
  line-height: 1.28;
  text-align: left;
}

.info-section__text {
  max-width: 880px;
  margin: 0;
  color: #e7e0d2;
  font-size: 17px;
  line-height: 1.75;
  text-align: left;
}

.info-section__button {
  margin-top: 28px;
}

.info-section .info-section__button.consultation-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2b272c !important;
  background: linear-gradient(180deg, #d9bf5a 0%, #c8ac48 100%);
  border: 1px solid #c8ac48;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}

.info-section .info-section__button.consultation-button:hover,
.info-section .info-section__button.consultation-button:focus {
  color: #ffffff !important;
  background: linear-gradient(180deg, #c8ac48 0%, #9d8330 100%);
  border-color: rgba(217, 191, 90, 0.95);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .info-section {
    padding: 64px 0;
  }

  .info-section__panel {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 28px;
    padding: 34px;
  }

  .info-section__metric {
    min-height: 190px;
  }

  .info-section__metric-number {
    font-size: 76px;
  }

  .info-section__title {
    font-size: 29px;
  }
}

@media (max-width: 767.98px) {
  .info-section {
    padding: 48px 0;
  }

  .info-section__panel {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 22px;
  }

  .info-section__panel:before {
    inset: 10px -8px -8px 10px;
  }

  .info-section__metric {
    align-items: center;
    min-height: 0;
    padding: 20px;
  }

  .info-section__title {
    font-size: 25px;
  }

  .info-section__text {
    font-size: 16px;
  }

  .info-section__button {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 479.98px) {
  .info-section__panel {
    margin-left: -5px;
    margin-right: -5px;
    padding: 22px 16px;
  }

  .info-section__metric-number {
    font-size: 64px;
  }

  .info-section__metric-label {
    font-size: 12px;
  }

  .info-section__eyebrow {
    font-size: 12px;
    letter-spacing: 1.4px;
  }

  .info-section__title {
    font-size: 22px;
  }
}

.hidden,
#go,
.consultation-button {
  display: none;
}

p.new_20_let,
.hero-slider__experience {
  font-size: 23px;
  margin-top: -20px;
}

.text-normal-page h2,
.content-page h2 {
  font-size: 20px;
}

.ls {
  color: black;
}

#services .teaser,
.services-section .service-card {
  min-height: 350px;
}

.services-section {
  position: relative;
  overflow: hidden;
  background-color: #1f1c20;
}

.services-section:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 16, 19, 0.88), rgba(43, 39, 44, 0.96)),
    radial-gradient(circle at 12% 8%, rgba(200, 172, 72, 0.16), transparent 28%);
  pointer-events: none;
}

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

.services-section__title {
  margin-bottom: 6px;
}

.services-section .columns_padding_25 {
  display: flex;
  flex-wrap: wrap;
}

.services-section .columns_padding_25 > [class*='col-'] {
  display: flex;
  margin-bottom: 30px;
}

#services .teaser,
.services-section .service-card {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 0;
  padding: 30px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.095),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

#services .teaser:hover,
.services-section .service-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.13),
    rgba(255, 255, 255, 0.052)
  );
  border-color: rgba(200, 172, 72, 0.5);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

.services-section .media-left {
  padding-right: 22px;
}

.services-section .media-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.services-section .service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: #c8ac48;
  background: rgba(200, 172, 72, 0.1);
  border: 1px solid rgba(200, 172, 72, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(200, 172, 72, 0.07);
}

.services-section .service-card__icon i {
  font-size: 30px;
  line-height: 1;
}

.services-section .service-card__title {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.32;
}

.services-section .service-card__title a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.services-section .service-card__title a:hover,
.services-section .service-card__title a:focus {
  color: #c8ac48;
  text-decoration: none;
}

.services-section .service-card p {
  flex: 1 1 auto;
  margin-bottom: 24px;
  color: #d7d3cb;
  font-size: 15px;
  line-height: 1.72;
  text-align: left;
}

.services-section .service-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  padding: 10px 20px;
  color: #2b272c !important;
  background: linear-gradient(180deg, #d9bf5a 0%, #c8ac48 100%);
  border: 1px solid #c8ac48;
  border-radius: 3px;
  font-family: 'Noto Serif', serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.services-section .service-card__button:hover,
.services-section .service-card__button:focus {
  color: #ffffff !important;
  background: linear-gradient(180deg, #c8ac48 0%, #9d8330 100%);
  border-color: rgba(217, 191, 90, 0.95);
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

.services-section .service-card__button:after {
  content: '\f105';
  margin-left: 10px;
  font-family: 'FontAwesome';
  font-weight: normal;
}

@media (max-width: 991.98px) {
  .services-section .columns_padding_25 > [class*='col-'] {
    margin-bottom: 22px;
  }

  #services .teaser,
  .services-section .service-card {
    padding: 24px;
  }

  .services-section .service-card__title {
    font-size: 21px;
  }
}

@media (max-width: 767.98px) {
  .services-section {
    padding-top: 44px;
    padding-bottom: 34px;
  }

  .services-section .columns_padding_25 {
    display: block;
    margin-top: 24px;
  }

  .services-section .columns_padding_25 > [class*='col-'] {
    display: block;
  }

  #services .teaser,
  .services-section .service-card {
    display: block;
    padding: 24px 20px;
  }

  .services-section .media-left {
    display: block;
    padding: 0 0 18px;
  }

  .services-section .media-body {
    display: block;
  }

  .services-section .service-card p {
    margin-bottom: 20px;
  }

  .service-card__button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 479.98px) {
  #services .teaser,
  .services-section .service-card {
    padding: 22px 16px;
  }

  .services-section .service-card__title {
    font-size: 19px;
  }

  .services-section .service-card p {
    font-size: 14px;
  }
}

#why_us,
.advantages-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(43, 39, 44, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(43, 39, 44, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fbfaf7 0%, #f3efe7 100%);
  background-size:
    56px 56px,
    56px 56px,
    auto;
}

.advantages-section:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 18%,
    rgba(200, 172, 72, 0.18),
    rgba(200, 172, 72, 0) 34%
  );
  pointer-events: none;
}

.advantages-section:after {
  content: '§';
  position: absolute;
  right: 7%;
  bottom: 24px;
  color: rgba(200, 172, 72, 0.1);
  font-family: 'Noto Serif', serif;
  font-size: 260px;
  line-height: 1;
  pointer-events: none;
}

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

.advantages-section__title {
  margin-bottom: 40px;
}

.advantages-section__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  row-gap: 30px;
}

.advantages-section__item {
  display: flex;
  margin-bottom: 0 !important;
}

#why_us .teaser,
.advantages-section .teaser {
  min-height: 0;
}

#why_us .advantage-card,
.advantages-section .advantage-card {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 285px;
  padding: 34px 34px 32px 96px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(200, 172, 72, 0.34);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(43, 39, 44, 0.1);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.advantages-section .advantage-card:before {
  content: '';
  position: absolute;
  left: 34px;
  top: 34px;
  width: 38px;
  height: 2px;
  background: #c8ac48;
  box-shadow: 0 8px 0 rgba(200, 172, 72, 0.32);
}

.advantages-section .advantage-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: rgba(200, 172, 72, 0.72);
  box-shadow: 0 22px 48px rgba(43, 39, 44, 0.15);
}

.advantages-section .advantage-card__number {
  position: absolute;
  left: 34px;
  top: 70px;
  color: rgba(200, 172, 72, 0.92);
  font-family: 'Noto Serif', serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.advantages-section .advantage-card .media-body {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.advantages-section .advantage-card__title {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.3;
}

.advantages-section .advantage-card__title a {
  color: #2b272c;
  text-decoration: none;
}

.advantages-section .advantage-card .divider_30_3 {
  margin-top: 0;
  margin-bottom: 18px;
  margin-left: 0;
  margin-right: 0;
}

#why_us .advantage-card p,
.advantages-section .advantage-card p {
  margin-bottom: 0;
  color: #555158;
  font-size: 15px;
  line-height: 1.72;
  text-align: left;
}

@media (max-width: 991.98px) {
  #why_us .advantage-card,
  .advantages-section .advantage-card {
    min-height: 315px;
    padding: 30px 26px 28px 82px;
  }

  .advantages-section .advantage-card__title {
    font-size: 21px;
  }

  .advantages-section .advantage-card:before,
  .advantages-section .advantage-card__number {
    left: 26px;
  }
}

@media (max-width: 767.98px) {
  .advantages-section {
    padding-top: 44px;
    padding-bottom: 34px;
  }

  .advantages-section:before {
    background: radial-gradient(
      circle at 50% 90px,
      rgba(200, 172, 72, 0.16),
      rgba(200, 172, 72, 0) 42%
    );
  }

  .advantages-section:after {
    right: -18px;
    bottom: 8px;
    font-size: 170px;
  }

  .advantages-section__title {
    margin-bottom: 28px;
  }

  #why_us .advantage-card,
  .advantages-section .advantage-card {
    min-height: 0;
    padding: 26px 22px 24px 76px;
  }

  .advantages-section .advantage-card__number {
    top: 62px;
    font-size: 28px;
  }
}

@media (max-width: 479.98px) {
  .advantages-section .advantage-card__title {
    font-size: 20px;
  }

  #why_us .advantage-card,
  .advantages-section .advantage-card {
    padding: 24px 18px 22px;
  }

  .advantages-section .advantage-card:before {
    position: static;
    display: block;
    margin-bottom: 18px;
  }

  .advantages-section .advantage-card__number {
    position: static;
    display: block;
    margin-bottom: 10px;
  }

  #why_us .advantage-card p,
  .advantages-section .advantage-card p {
    font-size: 14px;
  }
}

#reviews,
.reviews-section {
  position: relative;
  overflow: hidden;
  background-color: #f7f4ee;
}

.reviews-section:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 39, 44, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(43, 39, 44, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.45;
  pointer-events: none;
}

.reviews-section:after {
  content: '';
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(200, 172, 72, 0.24),
    rgba(200, 172, 72, 0) 67%
  );
  pointer-events: none;
}

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

.reviews__title {
  margin-bottom: 16px;
}

.reviews__lead {
  max-width: 720px;
  margin: 0 auto 38px;
  color: #555158;
  font-size: 16px;
  line-height: 1.7;
}

.reviews__shell {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 46px 58px 42px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(250, 248, 243, 0.96)
    ),
    url(../img/grey_pattern.png);
  border: 1px solid rgba(200, 172, 72, 0.42);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(43, 39, 44, 0.13);
}

.reviews__shell:before {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(200, 172, 72, 0.22);
  pointer-events: none;
}

.reviews__shell:after {
  content: '';
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, #d9bf5a, #9d8330);
}

.reviews__mark {
  position: absolute;
  top: -34px;
  left: 50px;
  color: rgba(200, 172, 72, 0.2);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 150px;
  line-height: 1;
  pointer-events: none;
}

.reviews__carousel {
  position: relative;
  z-index: 1;
}

.review-card {
  position: relative;
  max-width: 800px;
  min-height: 210px;
  margin: 0 auto;
  padding: 10px 0 8px 62px;
  color: #2b272c;
  border: 0;
  background: transparent;
}

.review-card:before {
  content: '';
  position: absolute;
  top: 14px;
  left: 0;
  width: 34px;
  height: 3px;
  background: #c8ac48;
}

.review-card p {
  margin: 0;
  color: #424242;
  font-size: 20px;
  line-height: 1.72;
  text-align: left;
}

.review-card footer {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  padding-top: 0;
  color: #9d8330;
  background: transparent;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.review-card footer:before {
  content: '';
  width: 34px;
  height: 1px;
  margin-right: 12px;
  background: rgba(157, 131, 48, 0.58);
}

.reviews__carousel.owl-theme .owl-dots {
  margin-top: 26px;
}

.reviews__carousel.owl-theme .owl-dots .owl-dot span {
  width: 26px;
  height: 3px;
  margin: 5px 5px;
  background: rgba(43, 39, 44, 0.2);
  border-radius: 0;
  transition:
    background 0.25s ease,
    width 0.25s ease;
}

.reviews__carousel.owl-theme .owl-dots .owl-dot.active span,
.reviews__carousel.owl-theme .owl-dots .owl-dot:hover span {
  width: 34px;
  background: #c8ac48;
}

@media (max-width: 991.98px) {
  .reviews__shell {
    padding: 40px 40px 36px;
  }

  .review-card {
    min-height: 250px;
    padding-left: 48px;
  }

  .review-card p {
    font-size: 18px;
  }
}

@media (max-width: 767.98px) {
  .reviews-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .reviews__lead {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .reviews__shell {
    padding: 34px 24px 32px;
  }

  .reviews__shell:before {
    top: 12px;
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .reviews__mark {
    top: -22px;
    left: 28px;
    font-size: 108px;
  }

  .review-card {
    min-height: 280px;
    padding: 34px 0 0;
  }

  .review-card:before {
    top: 8px;
    width: 42px;
  }

  .review-card p {
    font-size: 16px;
    line-height: 1.68;
  }

  .review-card footer {
    display: flex;
    align-items: flex-start;
    font-size: 12px;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 479.98px) {
  .reviews__shell {
    padding: 28px 18px 30px;
  }

  .review-card {
    min-height: 330px;
  }

  .review-card p {
    font-size: 15px;
  }

  .reviews__carousel.owl-theme .owl-dots .owl-dot span {
    width: 18px;
    margin-right: 4px;
    margin-left: 4px;
  }

  .reviews__carousel.owl-theme .owl-dots .owl-dot.active span,
  .reviews__carousel.owl-theme .owl-dots .owl-dot:hover span {
    width: 26px;
  }
}

.teaser p {
  text-align: justify;
}

.ls h1,
.ls h2,
.ls h3,
.ls h4,
.ls h5,
.ls h6 {
  color: #424242;
}

.navigation,
.navigation a {
  color: white;
}

.lawyer,
.home-about__image {
  float: right;
}

.lawyer .oleg,
.home-about__image .oleg {
  text-align: center;
  font-size: 20px;
}

.lawyer img,
.home-about__image img {
  margin-left: 50px;
  margin-bottom: 30px;
}

/* Lawyer Card Styles */
.lawyer-card {
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  margin-bottom: 30px;
}

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

.lawyer-card__photo-wrapper {
  position: relative;
  overflow: hidden;
  background: #2b272c;
}

.lawyer-card__photo {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.lawyer-card:hover .lawyer-card__photo {
  filter: grayscale(0%);
}

.lawyer-card__badge {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background: #c8ac48;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.lawyer-card__badge i {
  font-size: 24px;
  color: #ffffff;
}

.lawyer-card__content {
  padding: 25px;
}

.lawyer-card__contact {
  margin-bottom: 20px;
}

.lawyer-card__contact .theme_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 12px 20px;
  color: #2b272c !important;
  background: linear-gradient(180deg, #d9bf5a 0%, #c8ac48 100%);
  border: 1px solid #c8ac48;
  border-radius: 3px;
  font-family: 'Noto Serif', serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  box-shadow:
    0 6px 15px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.lawyer-card__contact .theme_button:hover,
.lawyer-card__contact .theme_button:focus {
  color: #ffffff !important;
  background: linear-gradient(180deg, #c8ac48 0%, #9d8330 100%);
  border-color: rgba(217, 191, 90, 0.95);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

.lawyer-card__contact .theme_button:before {
  content: '\f095';
  margin-right: 10px;
  font-family: 'FontAwesome';
  font-weight: normal;
}

.lawyer-consultation__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  color: #2b272c !important;
  background: linear-gradient(180deg, #d9bf5a 0%, #c8ac48 100%);
  border: 1px solid #c8ac48;
  border-radius: 3px;
  font-family: 'Noto Serif', serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  box-shadow:
    0 6px 15px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.lawyer-consultation__button:hover,
.lawyer-consultation__button:focus {
  color: #ffffff !important;
  background: linear-gradient(180deg, #c8ac48 0%, #9d8330 100%);
  border-color: rgba(217, 191, 90, 0.95);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  text-decoration: none;
}

.lawyer-consultation__button:before {
  content: '\f095';
  margin-right: 10px;
  font-family: 'FontAwesome';
  font-weight: normal;
}

.lawyer-card__name {
  font-family: 'Noto Serif', serif;
  font-size: 22px;
  font-weight: 400;
  color: #2b272c;
  line-height: 1.3;
  margin-bottom: 5px;
}

.lawyer-card__title {
  font-family: 'Noto Serif', serif;
  font-size: 16px;
  color: #c8ac48;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.lawyer-card__divider {
  border: none;
  height: 2px;
  background: linear-gradient(to right, #c8ac48, transparent);
  margin: 15px 0;
}

.lawyer-card__description {
  font-family: 'Noto Serif', serif;
  font-size: 15px;
  line-height: 1.7;
  color: #656971;
  text-align: justify;
}

.lawyer-card__education,
.lawyer-card__specialization {
  margin-bottom: 15px;
}

.lawyer-card__education h4,
.lawyer-card__specialization h4 {
  font-family: 'Noto Serif', serif;
  font-size: 14px;
  font-weight: 600;
  color: #2b272c;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lawyer-card__education h4 i,
.lawyer-card__specialization h4 i {
  color: #c8ac48;
  font-size: 16px;
}

.lawyer-card__education p,
.lawyer-card__specialization p {
  font-family: 'Noto Serif', serif;
  font-size: 14px;
  line-height: 1.6;
  color: #656971;
  margin: 0;
}

.lawyer-card__stats {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.lawyer-card__stat {
  text-align: center;
}

.lawyer-card__stat-value {
  display: block;
  font-family: 'Noto Serif', serif;
  font-size: 28px;
  font-weight: 700;
  color: #c8ac48;
  line-height: 1;
}

.lawyer-card__stat-label {
  display: block;
  font-family: 'Noto Serif', serif;
  font-size: 12px;
  color: #7e7d82;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .lawyer-card {
    max-width: 450px;
    margin: 0 auto 30px;
  }

  #sidebar {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {
  .lawyer-card__content {
    padding: 20px;
  }

  .lawyer-card__name {
    font-size: 20px;
  }

  .lawyer-card__stat-value {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .lawyer-card {
    margin: 0 15px 30px;
  }

  .lawyer-card__badge {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 10px;
  }

  .lawyer-card__badge i {
    font-size: 18px;
  }
}

/* Home about section */
.home-about {
  position: relative;
  overflow: hidden;
}

.home-about:before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(200, 172, 72, 0.12),
      transparent 28%
    ),
    linear-gradient(135deg, rgba(43, 39, 44, 0.06), transparent 42%);
  pointer-events: none;
}

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

.home-about__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 44px;
  align-items: start;
  padding: 42px;
  margin-bottom: 60px;
  background: #ffffff;
  border: 1px solid rgba(200, 172, 72, 0.24);
  box-shadow: 0 22px 65px rgba(43, 39, 44, 0.1);
}

.home-about__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-about__eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.home-about__number {
  margin: 0;
  flex: 0 0 auto;
}

.home-about__kicker {
  color: #c8ac48;
  font-family: 'Noto Serif', serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.6px;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-about__title {
  max-width: 760px;
  margin: 0 0 28px;
  line-height: 1.22;
}

.home-about__lead {
  max-width: 760px;
}

.home-about__text {
  break-inside: avoid;
  margin: 0 0 18px;
}

.home-about__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-self: start;
  min-width: 0;
  background: #2b272c url(../img/dark_pattern.png);
  border: 1px solid rgba(200, 172, 72, 0.44);
  box-shadow:
    0 24px 54px rgba(43, 39, 44, 0.26),
    0 8px 18px rgba(43, 39, 44, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: translateY(-10px);
}

.home-about__visual:before {
  content: '';
  position: absolute;
  inset: 12px -12px -12px 12px;
  z-index: -1;
  border: 1px solid rgba(200, 172, 72, 0.22);
  background: rgba(43, 39, 44, 0.06);
}

.home-about__image {
  position: relative;
  float: none;
  margin: 0;
  min-height: 295px;
  overflow: hidden;
}

.home-about__image:after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(43, 39, 44, 0.08),
    rgba(43, 39, 44, 0.7)
  );
}

.home-about__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 295px;
  object-fit: cover;
  margin: 0;
}

.home-about__principles {
  display: grid;
  gap: 1px;
  background: rgba(200, 172, 72, 0.18);
}

.home-about__principle {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 16px 22px;
  color: #eeeeee;
  background: rgba(43, 39, 44, 0.9);
  font-family: 'Noto Serif', serif;
  font-size: 16px;
  line-height: 1.4;
}

.home-about__principle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border: 1px solid rgba(200, 172, 72, 0.55);
  color: #c8ac48;
}

.home-about__principle-icon i {
  font-size: 21px;
  line-height: 1;
}

@media (max-width: 1199.98px) {
  .home-about__panel {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
    gap: 32px;
    padding: 34px;
  }

  .home-about__lead {
    max-width: none;
  }
}

@media (max-width: 991.98px) {
  .home-about__panel {
    grid-template-columns: 1fr;
  }

  .home-about__title {
    margin-top: 0;
    padding-left: 0;
    margin-bottom: 24px;
  }

  .home-about__visual {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 767.98px) {
  .home-about__panel {
    padding: 24px;
    margin-bottom: 44px;
  }

  .home-about__eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .home-about__title {
    font-size: 27px;
  }

  .home-about__text {
    text-align: left;
  }

  .home-about__image,
  .home-about__image img {
    min-height: 240px;
  }
}

@media (max-width: 479.98px) {
  .home-about__panel {
    padding: 20px 16px;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 36px;
  }

  .home-about__kicker {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .home-about__title {
    font-size: 23px;
  }

  .home-about__principle {
    min-height: 68px;
    padding: 14px 16px;
    font-size: 14px;
  }

  .home-about__principle-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }
}

/* Publications listing */
#publications_caption.publications-hero {
  position: relative;
  overflow: hidden;
  padding: 30px 0 30px;
  background-color: #211e22;
  background-image:
    linear-gradient(135deg, rgba(18, 16, 19, 0.95), rgba(43, 39, 44, 0.9)),
    radial-gradient(
      circle at 14% 18%,
      rgba(200, 172, 72, 0.22),
      transparent 31%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(200, 172, 72, 0.13),
      transparent 27%
    ),
    url(../img/dark_pattern.png) !important;
}

#publications_caption.publications-hero:before {
  content: '';
  position: absolute;
  pointer-events: none;
}

#publications_caption.publications-hero:before {
  inset: 0;
  background:
    linear-gradient(
        to right,
        transparent,
        rgba(200, 172, 72, 0.26),
        transparent
      )
      top / 100% 1px no-repeat,
    linear-gradient(
        to right,
        transparent,
        rgba(200, 172, 72, 0.16),
        transparent
      )
      bottom / 100% 1px no-repeat;
}

#publications_caption.publications-hero:after {
  display: none;
  content: none;
}

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

.publications-hero__content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.publications-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #c8ac48;
  font-family: 'Noto Serif', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.publications-hero__eyebrow:before,
.publications-hero__eyebrow:after {
  content: '';
  width: 42px;
  height: 1px;
  background: rgba(200, 172, 72, 0.78);
}

#publications_caption .publications-hero__title {
  max-width: 920px;
  margin: 0 auto;
  color: #ffffff !important;
  font-size: 38px;
  line-height: 1.24;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
}

#publications_list.publications-section {
  position: relative;
  overflow: hidden;
  background-color: #f7f4ee;
  /* background-image:
    linear-gradient(90deg, rgba(43, 39, 44, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(43, 39, 44, 0.035) 1px, transparent 1px),
    url(../images/background.jpg) !important;
  background-size:
    56px 56px,
    56px 56px,
    cover; */
}

#publications_list.publications-section:before {
  content: '';
  position: absolute;
  top: 84px;
  left: 50%;
  width: 720px;
  height: 720px;
  background: radial-gradient(
    circle,
    rgba(200, 172, 72, 0.13),
    rgba(200, 172, 72, 0) 68%
  );
  transform: translateX(-50%);
  pointer-events: none;
}

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

.publications-section__row {
  margin-right: auto;
  margin-left: auto;
}

.publications-section__cards-wrapper {
  position: relative;
  padding: 32px 36px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow:
    0 20px 60px rgba(43, 39, 44, 0.1),
    0 8px 24px rgba(43, 39, 44, 0.06);
}

.publications-section__cards-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c8ac48, #9d8330, #c8ac48);
  border-radius: 8px 8px 0 0;
}

#article-card__main {
  position: relative;
  margin-bottom: 40px;
  padding: 0;
  overflow: hidden;
  background: linear-gradient(145deg, #2b272c 0%, #3d3840 100%);
  border: 1px solid rgba(200, 172, 72, 0.5);
  border-radius: 8px;
  box-shadow:
    0 20px 50px rgba(43, 39, 44, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

#article-card__main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #d9bf5a, #c8ac48, #9d8330);
}

#article-card__main::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(
    circle,
    rgba(200, 172, 72, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

#article-card__main .article-card__content {
  position: relative;
  z-index: 1;
  padding: 42px 46px 40px 52px;
}

#article-card__main .article-card__body {
  position: relative;
}

#article-card__main .article-card__body::before {
  content: '';
  position: absolute;
  top: -18px;
  left: -24px;
  width: 48px;
  height: 48px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c8ac48' opacity='0.25'%3E%3Cpath d='M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h3.983v10h-9.983z'/%3E%3C/svg%3E")
    no-repeat center;
  background-size: contain;
  opacity: 0.6;
}

#article-card__main .article-card__body,
#article-card__main .article-card__body p {
  color: #e7e0d2;
  font-size: 17px;
  line-height: 1.82;
  text-align: left;
}

#article-card__main .article-card__body p:first-child {
  margin-top: 0;
}

#article-card__main .article-card__body p:last-child {
  margin-bottom: 0;
}

#publications_list .publications-intro {
  display: none;
}

#publications_list .publications-intro.article-card--visible {
  display: block;
  position: relative;
  margin-bottom: 34px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(250, 248, 243, 0.98)
    ),
    url(../img/grey_pattern.png);
  border: 1px solid rgba(200, 172, 72, 0.44);
  box-shadow: 0 24px 60px rgba(43, 39, 44, 0.12);
}

#publications_list .publications-intro:before {
  content: '';
  position: absolute;
  top: 26px;
  bottom: 26px;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, #d9bf5a, #9d8330);
}

#publications_list .publications-intro .article-card__content {
  padding: 40px 44px 36px 52px;
}

#publications_list .publications-intro .article-card__body,
#publications_list .publications-intro .article-card__body p {
  color: #424242;
  font-size: 17px;
  line-height: 1.78;
}

#publications_list .publication-card {
  position: relative;
  margin-bottom: 24px;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(200, 172, 72, 0.22);
  border-radius: 6px;
  box-shadow: 0 12px 32px rgba(43, 39, 44, 0.08);
  transition:
    transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

#publications_list .publication-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #d9bf5a, #c8ac48, #9d8330);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#publications_list .publication-card::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: radial-gradient(
    circle,
    rgba(200, 172, 72, 0.12),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

#publications_list .publication-card:hover {
  transform: translateY(-6px) translateX(2px);
  border-color: rgba(200, 172, 72, 0.6);
  box-shadow:
    0 20px 48px rgba(43, 39, 44, 0.14),
    0 8px 20px rgba(43, 39, 44, 0.08);
}

#publications_list .publication-card:hover::before {
  opacity: 1;
}

#publications_list .publication-card:hover::after {
  opacity: 1;
}

#publications_list .publication-card .article-card__content {
  position: relative;
  z-index: 1;
  padding: 30px 36px 32px 40px;
}

#publications_list .publication-card .article-card__header {
  position: relative;
  margin-bottom: 16px;
}

#publications_list .publication-card .article-card__title {
  position: relative;
  margin: 0;
  font-size: 24px;
  line-height: 1.34;
  text-align: left;
  overflow-wrap: anywhere;
  hyphens: auto;
}

#publications_list .publication-card .article-card__title a {
  position: relative;
  color: #2b272c;
  text-decoration: none;
  transition: color 0.25s ease;
}

#publications_list .publication-card .article-card__title a:hover,
#publications_list .publication-card .article-card__title a:focus {
  color: #9d8330;
  text-decoration: none;
}

#publications_list .publication-card .article-card__title a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c8ac48, #d9bf5a);
  transition: width 0.3s ease;
}

#publications_list .publication-card .article-card__title a:hover::after {
  width: 100%;
}

#publications_list .publication-card .divider_60_2 {
  width: 60px;
  margin-top: 18px;
  margin-bottom: 0;
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #c8ac48, transparent);
}

#publications_list .publication-card .article-card__excerpt {
  position: relative;
  color: #555158;
  font-size: 15px;
  line-height: 1.78;
  text-align: left;
}

#publications_page.article-single {
  background-color: #f7f4ee;
  background-image:
    linear-gradient(90deg, rgba(43, 39, 44, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(43, 39, 44, 0.035) 1px, transparent 1px),
    url(../images/background.jpg) !important;
  background-size:
    56px 56px,
    56px 56px,
    cover;
}

#publications_page .article-card {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(200, 172, 72, 0.3);
  border-radius: 8px;
  box-shadow:
    0 20px 50px rgba(43, 39, 44, 0.1),
    0 8px 24px rgba(43, 39, 44, 0.06);
}

#publications_page .article-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c8ac48, #9d8330, #c8ac48);
}

#publications_page .article-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle at top right,
    rgba(200, 172, 72, 0.08),
    transparent 60%
  );
  pointer-events: none;
}

#publications_page .article-card .article-card__content {
  position: relative;
  z-index: 1;
  padding: 40px 44px 42px;
}

#publications_page .article-card .article-card__header {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(200, 172, 72, 0.2);
}

#publications_page .article-card .article-card__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.28;
  color: #2b272c;
  text-align: left;
  word-break: break-word;
  overflow-wrap: break-word;
}

#publications_page .article-card .divider_60_2 {
  display: none;
}

#publications_page .article-card .article-card__body {
  color: #424242;
  font-size: 16px;
  line-height: 1.82;
}

#publications_page .article-card .article-card__body p {
  margin-bottom: 18px;
}

#publications_page .article-card .article-card__body p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  #publications_page .article-card .article-card__content {
    padding: 32px 34px 36px;
  }

  #publications_page .article-card .article-card__title {
    font-size: 28px;
  }
}

@media (max-width: 767.98px) {
  #publications_page .article-card {
    margin-bottom: 24px;
  }

  #publications_page .article-card .article-card__content {
    padding: 26px 24px 30px;
  }

  #publications_page .article-card .article-card__title {
    font-size: 24px;
  }

  #publications_page .article-card .article-card__header {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  #publications_page .article-card .article-card__body {
    font-size: 15px;
    line-height: 1.76;
  }
}

@media (max-width: 479.98px) {
  #publications_page .article-card {
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 20px;
    border-radius: 6px;
  }

  #publications_page .article-card::before {
    height: 3px;
  }

  #publications_page .article-card .article-card__content {
    padding: 22px 18px 24px;
  }

  #publications_page .article-card .article-card__title {
    font-size: 21px;
  }
}

.publication-card__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding: 10px 20px;
  color: #2b272c;
  font-family: 'Noto Serif', serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  background: linear-gradient(
    145deg,
    rgba(200, 172, 72, 0.12),
    rgba(200, 172, 72, 0.06)
  );
  border: 1px solid rgba(200, 172, 72, 0.35);
  border-radius: 4px;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.publication-card__link::before {
  content: '';
  width: 18px;
  height: 2px;
  margin-right: 12px;
  background: linear-gradient(90deg, #c8ac48, #d9bf5a);
  transition: width 0.25s ease;
}

.publication-card__link::after {
  content: '\f105';
  margin-left: 8px;
  font-family: 'FontAwesome';
  font-weight: normal;
  transition: transform 0.25s ease;
}

.publication-card__link:hover,
.publication-card__link:focus {
  color: #2b272c;
  background: linear-gradient(
    145deg,
    rgba(200, 172, 72, 0.22),
    rgba(200, 172, 72, 0.12)
  );
  border-color: rgba(200, 172, 72, 0.6);
  box-shadow: 0 6px 16px rgba(200, 172, 72, 0.18);
  text-decoration: none;
  transform: translateX(4px);
}

.publication-card__link:hover::before {
  width: 24px;
}

.publication-card__link:hover::after,
.publication-card__link:focus::after {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .publications-section__cards-wrapper {
    padding: 26px 24px;
  }

  #article-card__main .article-card__content {
    padding: 34px 30px 32px 38px;
  }

  #article-card__main .article-card__body,
  #article-card__main .article-card__body p {
    font-size: 16px;
  }

  #article-card__main .article-card__body::before {
    top: -12px;
    left: -16px;
    width: 36px;
    height: 36px;
  }

  #publications_caption.publications-hero {
    padding: 66px 0 60px;
  }

  #publications_caption .publications-hero__title {
    font-size: 32px;
  }

  #publications_list .publication-card .article-card__content {
    padding: 26px 28px 28px 32px;
  }

  #publications_list .publication-card .article-card__title {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  .publications-section__cards-wrapper {
    padding: 20px 18px;
    border-radius: 6px;
  }

  .publications-section__cards-wrapper::before {
    height: 3px;
  }

  #article-card__main {
    margin-bottom: 28px;
    border-radius: 6px;
  }

  #article-card__main::before {
    width: 4px;
  }

  #article-card__main .article-card__content {
    padding: 26px 22px 24px 28px;
  }

  #article-card__main .article-card__body,
  #article-card__main .article-card__body p {
    font-size: 15px;
    line-height: 1.72;
    text-align: left;
  }

  #article-card__main .article-card__body::before {
    top: -10px;
    left: -12px;
    width: 28px;
    height: 28px;
  }

  #publications_caption.publications-hero {
    padding: 0px;
  }

  .publications-hero__content {
    text-align: left;
  }

  .publications-hero__eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 1.5px;
  }

  .publications-hero__eyebrow:before {
    width: 34px;
  }

  .publications-hero__eyebrow:after {
    display: none;
  }

  #publications_caption .publications-hero__title {
    font-size: 27px;
  }

  #publications_list.publications-section {
    padding-top: 48px;
    padding-bottom: 46px;
  }

  #publications_list .publication-card {
    margin-bottom: 16px;
  }

  #publications_list .publication-card .article-card__content {
    padding: 22px 20px 24px 26px;
  }

  #publications_list .publication-card::before {
    width: 3px;
  }

  #publications_list .publication-card .article-card__title {
    font-size: 20px;
  }

  #publications_list .publication-card .article-card__excerpt {
    font-size: 14px;
    line-height: 1.68;
  }

  .publication-card__link {
    margin-top: 16px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .publication-card__link::before {
    width: 14px;
    margin-right: 8px;
  }

  #publications_page .article-card .article-card__title {
    font-size: 20px;
  }
}

@media (max-width: 479.98px) {
  .publications-section__cards-wrapper {
    padding: 16px 14px;
    margin-left: -5px;
    margin-right: -5px;
  }

  #article-card__main {
    margin-bottom: 20px;
    margin-left: -5px;
    margin-right: -5px;
  }

  #article-card__main::before {
    width: 3px;
  }

  #article-card__main .article-card__content {
    padding: 20px 16px 18px 22px;
  }

  #article-card__main .article-card__body::before {
    top: -6px;
    left: -8px;
    width: 22px;
    height: 22px;
  }

  #publications_caption .publications-hero__title {
    font-size: 23px;
  }

  #publications_list .publication-card {
    margin-bottom: 14px;
    margin-left: -5px;
    margin-right: -5px;
  }

  #publications_list .publication-card .article-card__content {
    padding: 18px 14px 20px 20px;
  }

  #publications_list .publication-card::after {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  #publications_list .publication-card .article-card__title {
    font-size: 18px;
  }

  .publication-card__link {
    width: 100%;
    justify-content: center;
    margin-top: 14px;
  }
}

.form__caption {
  margin-bottom: 18px;
  color: white;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
}

#contact-method.contact-form__select {
  height: 46px;
  width: 100%;
  border: 0;
  border-bottom: 2px solid #c8ac48;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding: 11px 30px 11px 0;
  font-size: 16px;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c8ac48' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

#contact-method.contact-form__select:focus {
  outline: none;
  border-bottom-color: #d9bf5a;
  background-color: rgba(255, 255, 255, 0.08);
}

#contact-method.contact-form__select option {
  background-color: #2b272c;
  color: #ffffff;
  padding: 8px;
}

#contact-method.contact-form__select option[value=''] {
  color: #7e7d82;
}

#contact-method.contact-form__select:invalid,
#contact-method.contact-form__select option[value=''][selected] {
  color: #7e7d82;
}

/* Хлебные крошки */
nav.breadcrumb,
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: 'Noto Serif', serif;
  font-size: 14px;
  line-height: 1.5;
}

.breadcrumb > li {
  display: inline;
  color: #7e7d82;
}

.breadcrumb > li + li::before {
  content: '/';
  display: inline;
  margin: 0 8px;
  color: rgba(200, 172, 72, 0.6);
  font-size: 14px;
  line-height: 1;
}

.breadcrumb > li > a,
.breadcrumb > li > a:focus {
  color: #c8ac48;
  text-decoration: none;
  transition: color 0.25s ease;
}

.breadcrumb > li > a:hover {
  color: #d9bf5a;
  text-decoration: none;
}

.breadcrumb > .active,
.breadcrumb > .active > span,
.breadcrumb > .active {
  color: #d7d3cb;
  pointer-events: none;
}

/* Адаптивность */
@media (max-width: 767.98px) {
  nav.breadcrumb,
  .breadcrumb {
    font-size: 13px;
  }

  .breadcrumb > li + li::before {
    margin: 0 6px;
    font-size: 13px;
  }
}

@media (max-width: 479.98px) {
  nav.breadcrumb,
  .breadcrumb {
    font-size: 12px;
  }

  .breadcrumb > li + li::before {
    margin: 0 4px;
    font-size: 12px;
  }
}

#LiveInternet {
  display: none;
}
