

/* Start:/local/templates/invest/components/bitrix/breadcrumb/breadcrumb/style.css?1773241478893*/
ul.breadcrumbs__list {
    display: ruby;
    ruby-align: space-between;  
    font-size: 16px;
    line-height: 120%;
}

.breadcrumbs__item,
a.breadcrumbs__link {
    color: #a3a3a5;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.breadcrumbs__item:not(.breadcrumbs__current-page) {
    flex-shrink: 0;
    white-space: nowrap;
}

a.breadcrumbs__link:hover {
    color: var(--content-text-primary);
}

.breadcrumbs__current-page {
    color: var(--content-text-primary);
    min-width: 0;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}

.mobile-page-breadcrumbs {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    ul.breadcrumbs__list {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        font-size: 14px;
    }

    .breadcrumbs__item:not(.breadcrumbs__current-page) {
        white-space: nowrap;
    }
}
/* End */


/* Start:/local/templates/invest/components/bitrix/news.list/card-content/style.css?17724419485140*/
.page-breadcrumbs {
  padding-top: 60px;
}

.list-content__items {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin: 30px 0 60px;
}

.list-content__item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.list-content__item-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 520px;
  flex-shrink: 0;
}

.list-content__slider-wrapper {
  width: 100%;
}

.list-content__slider {
  width: 100%;
  height: 390px;
  margin-bottom: 10px;
  position: relative;
}

.list-content__slider-main-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.list-content__slider .swiper-button-next,
.list-content__slider .swiper-button-prev {
  background: var(--content-btn-slider-opacity);
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.list-content__slider .swiper-button-next:after,
.list-content__slider .swiper-button-prev:after {
  font-size: 16px;
}

.list-content__item-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.list-content__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.list-content__title {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--content-text-primary);
}

.list-content__logo {
  height: 40px;
  max-width: 150px;
  flex-shrink: 0;
}

.list-content__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.list-content__text-wrap {
  position: relative;
}

.list-content__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.list-content__text--collapsible {
  position: relative;
  max-height: 320px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.list-content__text--collapsible::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    to top,
    var(--backgrounds-bg-primary) 15%,
    transparent 100%
  );
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.list-content__text-wrap--truncated
  .list-content__text--collapsible:not(.list-content__text--expanded)::after {
  opacity: 1;
}

.list-content__text--collapsible.list-content__text--expanded {
  max-height: none;
}

.list-content__text-toggle {
  display: flex;
  gap: 5px;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--content-text-primary);
  cursor: pointer;
  transition: opacity 0.2s;
  margin-top: 20px;
}

.list-content__text-toggle:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  mask-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.6673 6L8.00065 10L3.33398 6" stroke="%23363739" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" /></svg>');
  background-color: var(--content-text-primary);
  transition: transform 0.3s ease;
}

.list-content__text-wrap:has(.list-content__text--expanded)
  .list-content__text-toggle::after {
  transform: rotate(180deg);
}

.list-content__text-toggle:hover,
.list-content__text-toggle:hover:after {
  opacity: 0.8;
}

.list-content__text-toggle[hidden] {
  display: none;
}

.list-content__text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #363739;
  margin: 0;
}

.list-content__buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.list-content__slider-thumbs {
  width: 100%;
  height: 100px;
}

.list-content__slider-thumbs .swiper-wrapper {
  align-items: center;
}

.list-content__slider-thumbs .swiper-slide {
  width: 95px;
  height: 95px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.list-content__slider-thumbs .swiper-slide-thumb-active {
  opacity: 1;
}

.list-content__slider-thumbs .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.list-content__slider-thumbs .swiper-slide-thumb-active img {
  border-color: var(--content-text-primary);
}

@media (max-width: 1024px) {
  .list-content__item {
    flex-direction: column;
  }

  .list-content__item-right {
    display: contents;
  }

  .list-content__header {
    order: -1;
  }

  .list-content__item-left {
    width: 100%;
    order: 0;
  }

  .list-content__slider {
    height: 300px;
  }

  .list-content__slider-thumbs {
    height: 80px;
  }

  .list-content__slider-thumbs .swiper-slide {
    width: 80px;
    height: 80px;
  }

  .list-content__slider-thumbs .swiper-slide img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 767px) {
  .list-content__header {
    align-items: flex-start;
    flex-direction: column;
  }
  .list-content__buttons {
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .list-content__title {
    font-size: 28px;
  }
  .list-content__text {
    font-size: 16px;
  }
  .list-content__text--collapsible {
    max-height: 325px;
  }
  .list-content__items {
    gap: 80px;
  }
}

/* End */
/* /local/templates/invest/components/bitrix/breadcrumb/breadcrumb/style.css?1773241478893 */
/* /local/templates/invest/components/bitrix/news.list/card-content/style.css?17724419485140 */
