.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: calc(90% - 26px);
  overflow: auto;
  padding-bottom: 10px;
  margin-bottom: -10px;
}
.breadcrumbs-container {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem 1.875rem;
}
.breadcrumbs-container .return {
  display: inline-flex;
}
.breadcrumbs-container .return:hover svg path {
  stroke: var(--primary-white);
}
.breadcrumbs-item {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.breadcrumbs-item:not([href]) {
  cursor: default;
}
.breadcrumbs-item[href]:hover {
  font-weight: 400;
}
.breadcrumbs .separator {
  cursor: default;
}

.technologies-template .content-container {
  padding-top: var(--header-height);
}
.technologies-template .content-container header {
  width: min(90%, 816px);
  margin: 0 auto;
  margin-bottom: 3.063rem;
  padding-top: 48px;
}
.technologies-template .content-container header .title {
  margin-bottom: 0.8157894737em;
}
.technologies-template .content-container > .content {
  width: var(--container-width);
  margin: 0 auto;
  padding-bottom: 160px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.technologies-template .content-container > .content .rows {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.technologies-template .content-container > .content .rows-item {
  display: flex;
  justify-content: flex-start;
  gap: 2rem 7.6%;
}
.technologies-template .content-container > .content .rows-item:nth-child(even) {
  flex-direction: row-reverse;
}
.technologies-template .content-container > .content .rows-item:nth-child(even) .content {
  flex-direction: row-reverse;
}
.technologies-template .content-container > .content .rows-item .picture {
  width: 49.12%;
  aspect-ratio: 896/400;
  position: relative;
}
.technologies-template .content-container > .content .rows-item .picture picture {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}
.technologies-template .content-container > .content .rows-item .picture picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.technologies-template .content-container > .content .rows-item .content {
  flex: 1 1 35%;
  display: flex;
  justify-content: flex-start;
}
.technologies-template .content-container > .content .rows-item .content .inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1.25rem;
  width: min(100%, 500px);
}
.technologies-template .content-container > .content .rows-item .content .inner p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: -0.16px;
}
@media screen and (max-width: 767px) {
  .technologies-template .content-container > .content .rows-item {
    flex-direction: column !important;
  }
  .technologies-template .content-container > .content .rows-item .picture,
  .technologies-template .content-container > .content .rows-item .content,
  .technologies-template .content-container > .content .rows-item .content .inner {
    width: 100%;
  }
}
.technologies-template .content-container > .content .return-block {
  display: flex;
  justify-content: center;
  align-items: center;
}
