.ec-about-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #080d28;
  color: #ffffff;
}

.ec-about-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.ec-about-hero__bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(.12);
}

.ec-about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(8, 13, 40, .95) 0%, rgba(8, 13, 40, .72) 44%, rgba(8, 13, 40, .3) 100%),
    linear-gradient(180deg, rgba(8, 13, 40, .28) 0%, rgba(8, 13, 40, .96) 100%);
}

.ec-about-hero__container,
.ec-about-intro__container,
.ec-about-numbers__container,
.ec-about-approach__container,
.ec-about-cta__container {
  width: min(100% - var(--ec-container-offset) * 2, var(--ec-container));
  margin-left: auto;
  margin-right: auto;
}

.ec-about-hero__container {
  position: relative;
  z-index: 3;
  padding: 42px 0 72px;
}

.ec-about-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.2;
}

.ec-about-breadcrumbs a {
  color: rgba(255, 255, 255, .72);
  transition: .25s ease;
}

.ec-about-breadcrumbs a:hover {
  color: #f26a21;
}

.ec-about-breadcrumbs span.active {
  color: #ffffff;
}

.ec-about-breadcrumbs a::after {
  content: "/";
  margin-left: 11px;
  color: rgba(255, 255, 255, .35);
}

.ec-about-hero__content {
  max-width: 900px;
}

.ec-about-hero__eyebrow,
.ec-about-intro__label,
.ec-about-approach__label,
.ec-about-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  color: #f26a21;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ec-about-hero__eyebrow::after,
.ec-about-intro__label::after,
.ec-about-approach__label::after,
.ec-about-cta__label::after {
  content: "";
  width: 72px;
  height: 1px;
  background: #f26a21;
}

.ec-about-hero__title {
  position: relative;
  display: inline-block;
  margin: 0 0 24px;
  padding-bottom: 12px;
  color: #ffffff;
  font-size: 62px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.ec-about-hero__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #f26a21;
}

.ec-about-hero__text {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.62;
}

.ec-about-intro {
  padding: 82px 0 44px;
  background: #ffffff;
  color: #080d28;
}

.ec-about-intro__grid {
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(0, 1.22fr);
  gap: 46px;
  align-items: start;
}

.ec-about-intro__heading {
  position: sticky;
  top: 110px;
  padding: 38px 34px;
  background: #080d28;
  color: #ffffff;
  overflow: hidden;
}

.ec-about-intro__heading::after {
  content: "";
  position: absolute;
  right: -92px;
  bottom: -92px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(242, 106, 33, .28);
  border-radius: 50%;
}

.ec-about-intro__title {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.ec-about-intro__title span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, .62);
  font-size: 22px;
  line-height: 1.34;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.ec-about-intro__text {
  padding: 42px 48px;
  border: 1px solid #dfe3ec;
  background: #ffffff;
}

.ec-about-intro__text p {
  max-width: 920px;
  margin: 0 0 20px;
  color: #4f586b;
  font-size: 17px;
  line-height: 1.72;
}

.ec-about-intro__text p:last-child {
  margin-bottom: 0;
}

.ec-about-numbers {
  padding: 0 0 44px;
  background: #ffffff;
}

.ec-about-numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ec-about-number {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 22px;
  background: #080d28;
  color: #ffffff;
  text-align: center;
}

.ec-about-number__value {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 46px;
  line-height: 1;
  font-weight: 800;
}

.ec-about-number__line {
  width: 58px;
  height: 2px;
  margin: 0 auto 14px;
  background: #f26a21;
}

.ec-about-number__label {
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.35;
  text-transform: uppercase;
}

.ec-about-approach {
  padding: 44px 0 82px;
  background: #ffffff;
  color: #080d28;
}

.ec-about-approach__grid {
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.ec-about-approach__media {
  min-height: 600px;
  overflow: hidden;
  background: #080d28;
}

.ec-about-approach__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ec-about-approach__content {
  padding: 46px 52px;
  border: 1px solid #dfe3ec;
  background: #ffffff;
}

.ec-about-approach__title {
  position: relative;
  margin: 0 0 28px;
  padding-bottom: 18px;
  color: #080d28;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.ec-about-approach__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 250px;
  max-width: 100%;
  height: 2px;
  background: #f26a21;
}

.ec-about-approach__content p {
  max-width: 900px;
  margin: 0 0 30px;
  color: #4f586b;
  font-size: 16px;
  line-height: 1.72;
}

.ec-about-approach__items {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.ec-about-approach-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 16px 18px;
  border: 1px solid #dfe3ec;
  color: #080d28;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 650;
}

.ec-about-approach-item span {
  color: #f26a21;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
}

.ec-about-approach__btn,
.ec-about-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid #080d28;
  background: #080d28;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  transition: .25s ease;
}

.ec-about-approach__btn:hover {
  border-color: #f26a21;
  background: #f26a21;
  color: #ffffff;
}

.ec-about-cta {
  padding: 0 0 88px;
  background: #ffffff;
}

.ec-about-cta__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 42px 46px;
  background:
    linear-gradient(90deg, rgba(8, 13, 40, .94), rgba(8, 13, 40, .84)),
    url("../img/control.jpg.webp") center / cover no-repeat;
  color: #ffffff;
}

.ec-about-cta__title {
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;
  text-transform: uppercase;
}

.ec-about-cta__text {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
  line-height: 1.6;
}

.ec-about-cta__btn {
  border-color: #f26a21;
  background: #f26a21;
  white-space: nowrap;
}

.ec-about-cta__btn:hover {
  background: transparent;
  color: #ffffff;
}

@media (max-width: 1199px) {
  .ec-about-intro__grid {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 34px;
  }

  .ec-about-approach__grid {
    grid-template-columns: 380px minmax(0, 1fr);
  }

  .ec-about-intro__title {
    font-size: 34px;
  }
}

@media (max-width: 991px) {
  .ec-about-hero {
    min-height: 420px;
  }

  .ec-about-hero__container {
    padding: 34px 0 58px;
  }

  .ec-about-hero__title {
    font-size: 46px;
  }

  .ec-about-intro {
    padding: 58px 0 34px;
  }

  .ec-about-intro__grid,
  .ec-about-approach__grid {
    grid-template-columns: 1fr;
  }

  .ec-about-intro__heading {
    position: relative;
    top: auto;
  }

  .ec-about-numbers {
    padding-bottom: 34px;
  }

  .ec-about-numbers__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ec-about-approach {
    padding: 34px 0 58px;
  }

  .ec-about-approach__media {
    min-height: 360px;
  }

  .ec-about-cta {
    padding-bottom: 58px;
  }

  .ec-about-cta__container {
    grid-template-columns: 1fr;
  }

  .ec-about-cta__btn {
    width: fit-content;
  }
}

@media (max-width: 575px) {
  .ec-about-hero {
    min-height: 390px;
  }

  .ec-about-breadcrumbs {
    margin-bottom: 34px;
    font-size: 12px;
  }

  .ec-about-hero__title {
    font-size: 34px;
  }

  .ec-about-hero__text {
    font-size: 15px;
  }

  .ec-about-intro {
    padding: 44px 0 28px;
  }

  .ec-about-intro__heading,
  .ec-about-intro__text,
  .ec-about-approach__content {
    padding: 28px 22px;
  }

  .ec-about-intro__title {
    font-size: 28px;
  }

  .ec-about-intro__title span {
    font-size: 18px;
  }

  .ec-about-intro__text p {
    font-size: 15px;
  }

  .ec-about-numbers {
    padding-bottom: 28px;
  }

  .ec-about-numbers__grid {
    grid-template-columns: 1fr;
  }

  .ec-about-number {
    min-height: 140px;
  }

  .ec-about-approach {
    padding: 28px 0 44px;
  }

  .ec-about-approach__media {
    min-height: 260px;
  }

  .ec-about-approach__title {
    font-size: 25px;
  }

  .ec-about-approach__title::after {
    width: 170px;
  }

  .ec-about-approach-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .ec-about-approach__btn {
    width: 100%;
  }

  .ec-about-cta {
    padding-bottom: 44px;
  }

  .ec-about-cta__container {
    padding: 30px 22px;
  }

  .ec-about-cta__title {
    font-size: 22px;
  }

  .ec-about-cta__btn {
    width: 100%;
  }
}
.ec-about-mission {
  padding: 44px 0;
  background: #ffffff;
  color: #080d28;
}

.ec-about-mission__container {
  width: min(100% - var(--ec-container-offset) * 2, var(--ec-container));
  margin-left: auto;
  margin-right: auto;
}

.ec-about-mission__grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 28px;
  align-items: stretch;
}

.ec-about-mission__column {
  display: grid;
  gap: 28px;
}

.ec-about-mission-card,
.ec-about-values-card {
  position: relative;
  padding: 42px 46px;
  border: 1px solid #dfe3ec;
  background: #ffffff;
  overflow: hidden;
}

.ec-about-mission-card::after,
.ec-about-values-card::after {
  content: "";
  position: absolute;
  right: -88px;
  top: -88px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(242, 106, 33, .16);
  border-radius: 50%;
  pointer-events: none;
}

.ec-about-mission-card--dark {
  background: #080d28;
  color: #ffffff;
  border-color: #080d28;
}

.ec-about-mission-card__label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: #f26a21;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ec-about-mission-card__label::after {
  content: "";
  width: 64px;
  height: 1px;
  background: #f26a21;
}

.ec-about-mission-card h2,
.ec-about-values-card h2,
.ec-about-mission-card .h2,
.ec-about-values-card .h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  padding-bottom: 18px;
  color: #080d28;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.ec-about-mission-card h2::after,
.ec-about-values-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 220px;
  max-width: 100%;
  height: 2px;
  background: #f26a21;
}

.ec-about-mission-card--dark h2,
.ec-about-mission-card--dark .h2 {
  color: #ffffff;
}

.ec-about-mission-card p {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0;
  color: #4f586b;
  font-size: 16px;
  line-height: 1.72;
}

.ec-about-mission-card--dark p {
  color: rgba(255, 255, 255, .74);
}

.ec-about-value {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 26px;
  padding: 24px 0;
  border-top: 1px solid #dfe3ec;
}

.ec-about-value:first-of-type {
  padding-top: 4px;
  border-top: 0;
}

.ec-about-value:last-child {
  padding-bottom: 0;
}

.ec-about-value__title {
  color: #080d28;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 800;
}

.ec-about-value p {
  margin: 0;
  color: #4f586b;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 991px) {
  .ec-about-mission {
    padding: 34px 0;
  }

  .ec-about-mission__grid {
    grid-template-columns: 1fr;
  }

  .ec-about-value {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 575px) {
  .ec-about-mission {
    padding: 28px 0;
  }

  .ec-about-mission__grid,
  .ec-about-mission__column {
    gap: 16px;
  }

  .ec-about-mission-card,
  .ec-about-values-card {
    padding: 28px 22px;
  }

  .ec-about-mission-card h2,
  .ec-about-values-card h2 {
    font-size: 25px;
  }

  .ec-about-mission-card h2::after,
  .ec-about-values-card h2::after {
    width: 170px;
  }

  .ec-about-value__title {
    font-size: 16px;
  }
}