

/* Start:/local/templates/cesar/components/bitrix/news.list/geography/style.css?177883104312880*/
/* Шаблон bitrix:news.list / geography — карта и всплывающая панель */

/* Карта «География»: сдвиг всего SVG вправо (геометрия в viewBox смещена влево — path не трогаем). */
.geography .ru-map {
  width: 100%;
  overflow-x: visible;
  overflow-y: visible;
}

@media screen and (max-width: 991px) {
  /*
    Центрирование: SVG шире контейнера и выровнен flex’ом — лишняя ширина уходит влево/вправо поровну.
    Раньше width:100% + translateX и origin ≠ center визуально уводили карту влево.
  */
  .geography .ru-map {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    overflow-x: visible;
    overflow-y: visible;
  }

  .geography .ru-map_svg {
    flex-shrink: 0;
    display: block;
    width: 108%;
    max-width: none;
    height: auto;
    margin-left: 0;
    margin-right: 0;
    transform: translateX(clamp(6px, 1.5vw, 20px)) scale(1.08);
    transform-origin: center center;
  }
}

@media screen and (max-width: 576px) {
  .geography .ru-map_svg {
    width: 114%;
    transform: translateX(clamp(4px, 1vw, 14px)) scale(1);
    transform-origin: center center;
  }
}

.ru-map_content_list a,
.ru-map_content_list span {
  cursor: auto;
}

/* Панель карты: не вылезать за экран по высоте; скролл у списка, заголовок округа закреплён сверху. */
.ru-map_content {
  box-sizing: border-box;
  /* Иначе flex + Swiper дают min-content ширину по всей ленте слайдов и «разъезжается» панель */
  max-width: min(960px, calc(100vw - 24px));
  min-width: 0;
}

.ru-map_content.show {
  max-height: min(40vh, calc(50dvh - 24px));
  width: min(650px, calc(100vw - 24px));
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Скролл у всей панели .ru-map_content.show — список не обрезается снизу экрана. */
/* Контекст .ru-map_content — выше специфичность, чем grid из style.min.css */
.ru-map_content .ru-map_content_list {
  display: block;
  overflow-x: hidden;
  min-width: 0;
  max-width: 100%;
}

.ru-map_content_title {
  min-width: 0;
  max-width: 100%;
}

.ru-map_show-more {
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-width: 100%;
  flex: 1 1 auto;
  gap: 10px;
}

.ru-map_show-more_btn {
  display: none;
  margin: 0 auto;
  font-size: 14px;
  border: 0;
  border-bottom: 1px dashed #5b5d68;
  background: transparent;
  color: var(--cspat-primary-black);
  font-weight: 700;
  padding: 0 0 8px;
  line-height: 1;
  cursor: pointer;
  width: fit-content;
}

.ru-map_show-more_btn:not([hidden]) {
  display: block;
}

.ru-map_content .ru-map_content_list.ru-map_content_list--collapsed {
  display: none !important;
}

/*
  Десктоп: column-wrap flex вместо grid/multicol — колонки заполняются сверху вниз, затем
  следующая колонка справа; высота строк не общая (одна «Москва» не тянет пустоту).
  Число колонок зависит от max-height и ширины карточки группы.
*/
@media screen and (min-width: 769px) {
  .ru-map_content .ru-map_content_list {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    gap: 8px 14px;
    max-height: min(72vh, calc(100dvh - 200px));
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    box-sizing: border-box;
  }

  /* Не трогаем группы внутри JS-колонок (swiper / hscroll) — им нужна полная ширина столбца */
  .ru-map_content
    .ru-map_content_list:not(.ru-map_content_list--m-swiper):not(
      .ru-map_content_list--m-hscroll
    )
    .ru-map_group {
    width: clamp(128px, 15vw, 172px);
    flex: 0 0 auto;
    margin-bottom: 0;
    gap: 4px;
    box-sizing: border-box;
  }

  .ru-map_content .ru-map_content_list .ru-map_group_cities {
    gap: 3px;
  }
}

/*
  JS: несколько вертикальных колонок + горизонтальный скролл или Swiper.
  Общие правила для всех ширин (перебивают десктопный flex-wrap у .ru-map_content_list).
*/
.ru-map_content .ru-map_content_list.ru-map_content_list--m-hscroll {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: 18px;
  max-height: min(60vh, calc(100dvh - 120px));
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-column-count: unset !important;
  column-count: unset !important;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  position: relative;
  scrollbar-width: none;
}

.ru-map_content
  .ru-map_content_list.ru-map_content_list--m-hscroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.ru-map_content .ru-map_content_list.ru-map_content_list--m-swiper {
  display: block !important;
  flex-direction: unset;
  flex-wrap: unset;
  align-items: unset;
  gap: unset;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  max-height: min(60vh, calc(100dvh - 120px));
  overflow: hidden;
  -webkit-column-count: unset !important;
  column-count: unset !important;
  padding-bottom: 0;
  position: relative;
  scrollbar-width: none;
}

.ru-map_content
  .ru-map_content_list.ru-map_content_list--m-swiper
  .ru-map_content_swiper {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  max-height: min(60vh, calc(100dvh - 120px));
  overflow: hidden;
  box-sizing: border-box;
}

.ru-map_content
  .ru-map_content_list.ru-map_content_list--m-swiper
  .swiper-wrapper {
  align-items: stretch;
}

.ru-map_content
  .ru-map_content_list.ru-map_content_list--m-swiper
  .ru-map_slide {
  display: flex;
  flex-direction: column;
  height: auto;
  box-sizing: border-box;
  max-width: 100%;
}

.ru-map_content
  .ru-map_content_list.ru-map_content_list--m-swiper
  .ru-map_slide
  > .ru-map_content_col {
  max-width: 100%;
}

.ru-map_content > .ru-map_mobile_nav:not([hidden]),
.ru-map_show-more .ru-map_mobile_nav:not([hidden]) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.ru-map_content > .ru-map_mobile_nav:not([hidden]) {
  margin-bottom: 8px;
}

.ru-map_show-more .ru-map_mobile_nav:not([hidden]) {
  margin-bottom: 0;
}

.ru-map_content_list.ru-map_content_list--m-hscroll .ru-map_content_col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 min(78vw, 160px);
  width: min(78vw, 272px);
  max-width: min(78vw, 272px);
  max-height: min(60vh, calc(100dvh - 120px));
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #ffc724 rgba(0, 0, 0, 0.06);
  padding: 0 8px 0 4px;
}

.ru-map_content_list.ru-map_content_list--m-swiper .ru-map_content_col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 0 1 auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  max-height: min(60vh, calc(100dvh - 120px));
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: #ffc724 rgba(0, 0, 0, 0.06);
  /* Воздух у края столбца + место под тонкий скроллбар, без наезда на соседний слайд */
  padding: 0 8px 0 4px;
}

/* Группы в вертикальных колонках: на всю ширину столбца, перенос длинных названий областей */
.ru-map_content
  .ru-map_content_list.ru-map_content_list--m-swiper
  .ru-map_group,
.ru-map_content
  .ru-map_content_list.ru-map_content_list--m-hscroll
  .ru-map_group {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 0;
  flex-shrink: 0;
  box-sizing: border-box;
}

.ru-map_content
  .ru-map_content_list.ru-map_content_list--m-swiper
  .ru-map_group_heading,
.ru-map_content
  .ru-map_content_list.ru-map_content_list--m-swiper
  .ru-map_group_heading_link,
.ru-map_content
  .ru-map_content_list.ru-map_content_list--m-hscroll
  .ru-map_group_heading,
.ru-map_content
  .ru-map_content_list.ru-map_content_list--m-hscroll
  .ru-map_group_heading_link {
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: manual;
}

.ru-map_content_list.ru-map_content_list--m-hscroll
  .ru-map_content_col::-webkit-scrollbar,
.ru-map_content_list.ru-map_content_list--m-swiper
  .ru-map_content_col::-webkit-scrollbar {
  width: 2px;
}

.ru-map_content_list.ru-map_content_list--m-hscroll
  .ru-map_content_col::-webkit-scrollbar-track,
.ru-map_content_list.ru-map_content_list--m-swiper
  .ru-map_content_col::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 3px;
}

.ru-map_content_list.ru-map_content_list--m-hscroll
  .ru-map_content_col::-webkit-scrollbar-thumb,
.ru-map_content_list.ru-map_content_list--m-swiper
  .ru-map_content_col::-webkit-scrollbar-thumb {
  background-color: #ffc724;
  border-radius: 3px;
}

.ru-map_content_list.ru-map_content_list--m-single {
  max-height: none;
  overflow: visible;
}

.ru-map_content_list.ru-map_content_list--m-single .ru-map_group:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 769px) {
  .ru-map_content .ru-map_content_list.ru-map_content_list--m-hscroll,
  .ru-map_content .ru-map_content_list.ru-map_content_list--m-swiper,
  .ru-map_content
    .ru-map_content_list.ru-map_content_list--m-swiper
    .ru-map_content_swiper,
  .ru-map_content_list.ru-map_content_list--m-hscroll .ru-map_content_col,
  .ru-map_content_list.ru-map_content_list--m-swiper .ru-map_content_col {
    max-height: min(72vh, calc(100dvh - 200px));
  }

  .ru-map_content_list.ru-map_content_list--m-hscroll .ru-map_content_col {
    flex: 0 0 clamp(168px, 16vw, 220px);
    width: clamp(168px, 16vw, 260px);
    max-width: clamp(168px, 16vw, 300px);
  }
}

.ru-map_group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 14px;
}

.ru-map_group_heading {
  font-size: 14px;
  font-weight: 700;
  color: var(--cspat-primary-black);
  line-height: var(--cspat-line-height);
}

.ru-map_group_heading_link {
  display: block;
  text-decoration: none;
  color: var(--cspat-primary-black);
}

.ru-map_group_heading_link:hover {
  text-decoration: underline;
}

.ru-map_group_cities {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ru-map_content_list .ru-map_group_cities a,
.ru-map_content_list .ru-map_group_cities span {
  font-weight: 400;
}

.ru-map_content_list .ru-map_group_cities .ru-map_city--capital {
  font-weight: 700;
}

.ru-map_content_list .ru-map_group_heading_link {
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  /* Панель не шире вьюпорта — иначе translate(-50%) уводит левый край за экран */
  .ru-map_content {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
  }

  .ru-map_content.show {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    max-height: min(86vh, calc(100dvh - 16px));
  }

  .ru-map_content .ru-map_content_list {
    display: block;
    flex-direction: unset;
    flex-wrap: nowrap;
    align-content: unset;
    align-items: unset;
    max-height: none;
    overflow-x: hidden;
    overflow-y: visible;
    gap: unset;
    -webkit-column-count: 1;
    column-count: 1;
    -webkit-column-gap: 0;
    column-gap: 0;
  }

  .ru-map_content .ru-map_content_list .ru-map_group {
    width: auto;
    flex: unset;
  }

  /* --m-hscroll / --m-swiper / навигация: общие стили выше (вне этого media). */

  .ru-map_content_list a,
  .ru-map_content_list span {
    font-size: 13px;
  }

  .ru-map_group_heading,
  .ru-map_group_heading_link {
    font-size: 12px;
  }

  .geography .title_text p {
    text-align: center;
  }
}

/* End */


/* Start:/local/templates/cesar/components/bitrix/news.list/they_trust_us/styles.css?17788310434162*/
.clients_slider.swiper.clients_mobile {
  display: none;
}

.clients_desktop_slider {
  display: block;
  /* Под фон секции; при необходимости переопределите на .clients */
  --clients-slider-edge: #f1f1f1;
  --clients-slider-fade-width: clamp(40px, 7vw, 96px);
  position: relative;
  isolation: isolate;
}

.clients_desktop_slider::before,
.clients_desktop_slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--clients-slider-fade-width);
  z-index: 3;
  pointer-events: none;
}

.clients_desktop_slider::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--clients-slider-edge) 0%,
    color-mix(in srgb, var(--clients-slider-edge) 18%, transparent) 55%,
    transparent 100%
  );
}

.clients_desktop_slider::after {
  right: 0;
  background: linear-gradient(
    to left,
    var(--clients-slider-edge) 0%,
    color-mix(in srgb, var(--clients-slider-edge) 18%, transparent) 55%,
    transparent 100%
  );
}

/* Safari <16.2 без color-mix — мягкий двухстопный градиент */
@supports not (background: color-mix(in srgb, red, blue)) {
  .clients_desktop_slider::before {
    background: linear-gradient(
      to right,
      var(--clients-slider-edge),
      transparent
    );
  }
  .clients_desktop_slider::after {
    background: linear-gradient(
      to left,
      var(--clients-slider-edge),
      transparent
    );
  }
}

.clients_items.clients_desktop {
  display: none;
}

.clients_actions.clients_desktop {
  display: none;
}

.clients_container.clients-expanded .clients_desktop_slider {
  display: none;
}

.clients_container.clients-expanded .clients_items.clients_desktop {
  display: grid;
}

.clients_container.clients-expanded .clients_actions.clients_desktop {
  display: flex;
}

.clients_desktop_slider .swiper-pagination {
  margin-top: 24px;
}

.clients_desktop_slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

@media (max-width: 478px) {
  .clients_desktop {
    display: none !important;
  }
  .clients_slider.swiper.clients_mobile {
    display: block;
    --clients-slider-edge: #fcfcfc;
    --clients-slider-fade-width: clamp(28px, 10vw, 56px);
    position: relative;
    isolation: isolate;
  }

  .clients_slider.swiper.clients_mobile::before,
  .clients_slider.swiper.clients_mobile::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: var(--clients-slider-fade-width);
    z-index: 3;
    pointer-events: none;
  }

  .clients_slider.swiper.clients_mobile::before {
    left: 0;
    background: linear-gradient(
      to right,
      var(--clients-slider-edge) 0%,
      color-mix(in srgb, var(--clients-slider-edge) 18%, transparent) 55%,
      transparent 100%
    );
  }

  .clients_slider.swiper.clients_mobile::after {
    right: 0;
    background: linear-gradient(
      to left,
      var(--clients-slider-edge) 0%,
      color-mix(in srgb, var(--clients-slider-edge) 18%, transparent) 55%,
      transparent 100%
    );
  }

  @supports not (background: color-mix(in srgb, red, blue)) {
    .clients_slider.swiper.clients_mobile::before {
      background: linear-gradient(
        to right,
        var(--clients-slider-edge),
        transparent
      );
    }
    .clients_slider.swiper.clients_mobile::after {
      background: linear-gradient(
        to left,
        var(--clients-slider-edge),
        transparent
      );
    }
  }
}

.clients_container .title_actions {
  justify-content: center;
  align-items: center;
}

.clients_container .title_actions .btn-third {
  color: var(--cspat-primary-black);
  text-align: center;
  font-family: "Onest";
  font-style: normal;
  font-weight: 700;
  line-height: var(--cspat-line-height);
  text-transform: uppercase;
  padding: 12px 20px;
  transition: all 0.3s ease;
}

.clients_container .clients_title,
.clients_container .title_text {
  justify-content: center;
  align-items: center;
  width: 100%;
  color: var(--cspat-primary-black);
  text-align: center;
  font-family: "Onest";
}

.clients_container .title_text p {
  color: var(--cspat-primary-black);
}

/* End */


/* Start:/local/templates/cesar/components/bitrix/news.list/more_reviews/style.css?17788310436064*/
.reviews_container .title-section {
  width: 100%;
  justify-content: center;
  align-items: center;
}

.reviews_container .title_text {
  text-align: center;
}

.reviews_container .title_text p {
  color: var(--cspat-primary-black);
}

.reviews_container_actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.reviews_container .btn-third {
  color: var(--cspat-primary-black);
  padding: 12px 19px;
  font-size: clamp(12px, 3vw, 14px);
  border-radius: 8px;
}
.reviews .swiper_nav-prev {
  left: -32px;
}

.reviews .swiper_nav-next {
  right: -32px;
}

.reviews_item_name {
  color: var(--cspat-primary-black);
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 700;
  line-height: var(--cspat-line-height);
}

.reviews_item_logo {
  max-width: 300px;
  height: 61px;
  object-fit: scale-down;
}

/* Одна высота слайдов Swiper: нижний ряд (кнопка + цифры) всегда у низа карточки */
.reviews .swiper-slide.reviews_item {
  align-self: stretch;
  grid-template-rows: 1fr;
  align-items: stretch;
}

.reviews .reviews_item_content {
  min-height: 0;
  height: 100%;
}

.reviews .reviews_swiper .swiper-pagination.hero-redesign_pagination {
  position: static;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.reviews .hero-redesign_pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  margin: 0;
  background: #c8cad4;
  opacity: 1;
  transition:
    width 0.3s ease,
    background 0.3s ease;
}

.reviews .hero-redesign_pagination .swiper-pagination-bullet-active {
  width: 16px;
  background: #5b5d68;
}

.reviews_item_more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: auto;
  flex-shrink: 0;
  color: var(--cspat-primary-black);
}
.reviews_item_more .btn-third {
  padding: 12px 10px;
  font-size: 12px;
  white-space: nowrap;
}

.reviews_item_more .details {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.reviews_item_more .details li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.reviews_item_number {
  color: var(--cspat-primary-red);
  text-align: center;
  font-family: "Onest";
  font-size: clamp(14px, 3vw, 20px);
  font-style: normal;
  font-weight: 700;
  line-height: var(--cspat-line-height);
  text-transform: uppercase;
}

.reviews_item_text {
  color: var(--cspat-primary-black);
  leading-trim: both;
  font-family: "Onest";
  font-size: var(--cspat-text-size);
  font-style: normal;
  font-weight: 600;
  line-height: var(--cspat-line-height);
}

.reviews_item_content .reviews_item_text p {
  color: var(--cspat-primary-black);
  font-style: normal;
  font-weight: 400;
}

.reviews_item_profile {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 24px;
}
.reviews_item_profile_text {
  color: var(--cspat-primary-black);
  font-family: "Onest";
  font-size: clamp(12px, 3vw, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: var(--cspat-line-height);
  text-align: left;
}
@media screen and (min-width: 768px) {
  .reviews_item_name {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
}

@media only screen and (min-width: 991px) and (max-width: 1700px) {
  .reviews_items.container {
    padding: 0 50px;
  }
  .reviews .swiper_nav-prev {
    left: 4px;
  }
  .reviews .swiper_nav-next {
    right: 4px;
  }
}

@media only screen and (max-width: 480px) {
  .reviews_container .reviews_mobile_nav.cspat-mobile-swiper-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
  }

  .reviews .reviews_items .swiper_nav {
    display: none;
  }

  .reviews .swiper-slide.reviews_item {
    grid-template-columns: 1fr;
    padding: 24px 20px 32px;
    border: 1px solid #d0d2dc;
    border-radius: 8px;
    gap: 16px;
  }

  .reviews .reviews_item_content {
    gap: 16px;
  }

  .reviews_item_logo {
    max-width: 140px;
    height: 68px;
    width: 100%;
    object-fit: contain;
  }

  .reviews_item_profile {
    gap: 10px;
  }

  .reviews_item_head {
    gap: 4px;
  }

  .reviews_item_name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    font-size: 16px;
    font-weight: 700;
    line-height: var(--cspat-line-height);
  }

  .reviews_item_position {
    font-size: 12px;
    font-weight: 600;
    line-height: var(--cspat-line-height);
  }

  .reviews_item_stars.stars {
    display: flex;
    gap: 4px;
  }

  .reviews_item_stars.stars .stars_item {
    width: 12px;
    height: 12px;
  }

  .reviews_item_text {
    font-size: 14px;
    line-height: var(--cspat-line-height);
  }

  .reviews_item_more {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
  }

  .reviews_item_more .btn-third {
    padding: 10px 16px 10px;
  }

  .reviews_item_more .details {
    gap: 20px;
  }

  .reviews_item_more .details li {
    gap: 6px;
    align-items: flex-end;
  }

  .reviews_item_number {
    font-size: 16px;
    line-height: var(--cspat-line-height);
  }

  .reviews_item_more .reviews_item_text {
    font-size: 14px;
    font-weight: var(--cspat-text-font-weight);
    line-height: var(--cspat-line-height);
  }

  .reviews_items.container {
    padding: 0;
  }

  .reviews_item:nth-child(1) {
    margin-left: 20px;
  }
}

/* End */


/* Start:/local/templates/cesar/components/bitrix/news.list/faq_picture/style.css?1778831043339*/
.btn-second.faq_content_btn {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: var(--cspat-line-height);
  padding: 15.5px 24px;
}

@media only screen and (max-width: 768px) {
  .btn-second.faq_content_btn {
    font-size: 14px;
    padding: 12px 16px;
  }
}

/* End */
/* /local/templates/cesar/components/bitrix/news.list/geography/style.css?177883104312880 */
/* /local/templates/cesar/components/bitrix/news.list/they_trust_us/styles.css?17788310434162 */
/* /local/templates/cesar/components/bitrix/news.list/more_reviews/style.css?17788310436064 */
/* /local/templates/cesar/components/bitrix/news.list/faq_picture/style.css?1778831043339 */
