

/* Start:/local/components/company/history.list/templates/main/style.css?17733081874976*/
.history {
  padding-left: 215px;
  position: relative;
}

.history__timeline {
  position: fixed;
  left: calc(50% - 641px);
  top: 130px;
  bottom: 20px;
  width: 195px;
}
.history__timeline .breadcrumbs {
  padding-left: 0;
  padding-right: 0;
  margin-top: 0;
}
.history__timeline .breadcrumbs .wrapper {
  padding-left: 0;
  padding-right: 0;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-bottom: 30px;
}
.timeline::before {
  content: "";
  position: absolute;
  width: 1px;
  top: 12px;
  left: 12px;
  height: 100%;
  background-color: var(--border-gray);
}

.timeline__item {
  padding: 4px;
  padding-left: 36px;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s;
  width: 100%;
  color: var(--txt-gray---dark);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  position: relative;
}
.timeline__item::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 4px;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  background: var(--gray-bg2);
}

.timeline__item.active {
  font-size: 16px;
  line-height: 125%;
  color: var(--secondary);
}
.timeline__item.active::before {
  background: var(--secondary);
}

.history__content {
  width: 539px;
  padding-left: 20px;
  padding-top: 30px;
  margin-top: 28px;
  border-left: 1px solid var(--border-gray);
  position: relative;
}
.history__content::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
  background: var(--border-gray);
}

.content__item {
  scroll-margin-top: 120px;
  margin-bottom: 25px;
}
.content__item h1,
.content__item h2 {
  font-weight: 500;
  font-size: 34px;
  color: var(--txt-txt-dark);
  margin-bottom: 25px;
}
.content__item p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  color: var(--txt-txt-dark);
  text-align: justify;
  hyphens: auto;
}

.history__images {
  position: fixed;
  right: calc(50% - 641px);
  top: 130px;
  height: 410px;
  width: 410px;
}

.images__item {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.images__item.active {
  opacity: 1;
}

#historyImages.in-footer {
  position: absolute !important;
  bottom: 0px;
  top: auto;
}

#historyTimeline.in-footer {
  position: absolute !important;
  bottom: 0px;
  top: auto;
}

.images__item_mobile {
  display: none;
}

.theme-dark .timeline::before {
  background-color: var(--white-20-percent);
}
.theme-dark .timeline__item {
  color: var(--txt-gray---dark);
}
.theme-dark .timeline__item::before {
  background: var(--deep-very-dark-blue);
}
.theme-dark .timeline__item.active {
  color: var(--secondary2);
}
.theme-dark .timeline__item.active::before {
  background: var(--secondary2);
}
.theme-dark .history__content {
  border-left-color: var(--white-20-percent);
}
.theme-dark .history__content::before {
  background: var(--white-20-percent);
}
.theme-dark .content__item h1,
.theme-dark .content__item h2 {
  color: var(--white);
}
.theme-dark .content__item p {
  color: var(--white);
}
.theme-dark .history__timeline {
  background-color: var(--deep-dark-blue);
}

@media (max-width: 1300px) {
  .history__timeline {
    left: 1.5%;
  }
  .history__images {
    right: 1.5%;
  }
}
@media (max-width: 1200px) {
  .history {
    padding-left: 198px;
  }
  .history__content {
    padding-left: 10px;
    padding-top: 15px;
  }
  .history__images {
    display: none;
  }
  .images__item_mobile {
    display: block;
  }
  .images__item_mobile img {
    max-width: 100%;
    width: 100%;
    border-radius: 12px;
  }
}
@media (max-width: 767px) {
  .history {
    padding-left: 0;
  }
  .history-breadcrumbs__mobile {
    display: block;
  }
  .history__content {
    width: 100%;
    padding-left: 0;
    border: none;
  }
  .history__timeline {
    background-color: #fff;
    bottom: 0;
    top: auto;
    z-index: 2;
    width: 100%;
    left: 0;
    border-top: 1px solid var(--border-gray);
    padding: 20px 20px 35px 20px;
  }
  .history__timeline .breadcrumbs {
    display: none;
  }
  .timeline {
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .timeline::before {
    display: none;
  }
  .timeline::-webkit-scrollbar {
    display: none;
  }
  .timeline__item {
    flex: 0 0 calc(50% - 8px);
    min-width: calc(50% - 8px);
  }
  .timeline__item::before {
    top: 50%;
    transform: translateY(-50%);
  }
  .theme-dark .history__timeline {
    background-color: var(--deep-dark-blue);
    border-top-color: var(--white-20-percent);
  }
}
@media (min-width: 768px) {
  .history-breadcrumbs__mobile {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */
/* End */


/* Start:/local/components/common/breadcrumbs/templates/main/style.css?1773411268814*/
.breadcrumbs {
  display: flex;
  align-items: center;
  line-height: 40px;
  margin-top: 2px;
  margin-bottom: 20px;
  gap: 15px;
  flex-wrap: wrap;
}
.breadcrumbs .wrapper {
  padding-left: 0;
  padding-right: 0;
}

.breadcrumbs .breadcrumbs__item,
.breadcrumbs span {
  color: var(--txt-gray);
}

.breadcrumbs .divider {
  margin: 0 10px;
}

.breadcrumbs .breadcrumbs__item {
  display: inline-block;
  font-weight: 200;
  font-size: 14px;
  line-height: 114%;
}

.breadcrumbs span.breadcrumbs_active {
  color: var(--primary);
}

.theme-dark .breadcrumbs span.breadcrumbs_active {
  color: var(--secondary2);
}

@media (min-width: 768px) {
  .breadcrumbs {
    margin-top: 12px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1366px) {
  .breadcrumbs {
    margin-top: 14px;
    margin-bottom: 40px;
  }
}

/* End */
/* /local/components/company/history.list/templates/main/style.css?17733081874976 */
/* /local/components/common/breadcrumbs/templates/main/style.css?1773411268814 */
