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

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

.ec-service-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.1);
}

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

.ec-service-hero__container,
.ec-service-intro__container,
.ec-service-text-block__container,
.ec-service-important__container,
.ec-service-categories__container,
.ec-service-projects__container,
.ec-service-cert__container,
.ec-service-other__container,
.ec-service-final-cta__container {
  width: min(100% - var(--ec-container-offset) * 2, var(--ec-container));
  margin-left: auto;
  margin-right: auto;
}

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

.ec-service-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 52px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.ec-service-breadcrumbs a {
  color: rgba(255, 255, 255, .72);
}

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

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

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

.ec-service-hero__eyebrow,
.ec-service-section-label,
.ec-service-final-cta__label {
  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-service-hero__eyebrow::after,
.ec-service-section-label::after,
.ec-service-final-cta__label::after {
  content: "";
  width: 68px;
  height: 1px;
  background: #f26a21;
}

.ec-service-hero__title {
  max-width: 1060px;
  margin: 0;
  color: #fff;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.ec-service-intro,
.ec-service-text-block,
.ec-service-important,
.ec-service-categories,
.ec-service-projects,
.ec-service-cert,
.ec-service-other {
  padding: 82px 0;
  background: #fff;
  color: #080d28;
}

.ec-service-intro {
  padding-bottom: 44px;
}

.ec-service-text-block,
.ec-service-important,
.ec-service-categories,
.ec-service-projects,
.ec-service-cert,
.ec-service-other {
  padding-top: 44px;
}

.ec-service-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 420px;
  gap: 34px;
  align-items: stretch;
}

.ec-service-intro__content {
  padding: 46px 52px;
  border: 1px solid #dfe3ec;
  background: #fff;
}

.ec-service-intro__image {
  min-height: 470px;
  overflow: hidden;
  background: #080d28;
}

.ec-service-intro__image img,
.ec-service-important__image img,
.ec-service-categories__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ec-service-text p,
.ec-service-text-block p,
.ec-service-important p,
.ec-service-categories p,
.ec-service-projects p,
.ec-service-important li,
.ec-service-categories li,
.ec-service-projects li {
  color: #4f586b;
  font-size: 16px;
  line-height: 1.72;
}

.ec-service-btn,
.ec-service-final-cta__btn,
.ec-service-project-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid #f26a21;
  background: #f26a21;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  transition: .25s ease;
}

.ec-service-btn {
  margin-top: 28px;
}

.ec-service-btn:hover,
.ec-service-final-cta__btn:hover,
.ec-service-project-card a:hover {
  background: transparent;
  color: #f26a21;
}

.ec-service-text-block__inner {
  max-width: 100%;
  padding: 50px 58px;
  background: #080d28;
  color: #fff;
}

.ec-service-text-block h2,
.ec-service-important h2,
.ec-service-categories h2,
.ec-service-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-service-text-block h2 {
  color: #fff;
}

.ec-service-text-block h2::after,
.ec-service-important h2::after,
.ec-service-categories h2::after,
.ec-service-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 250px;
  max-width: 100%;
  height: 2px;
  background: #f26a21;
}

.ec-service-text-block p {
  max-width: 1120px;
  color: rgba(255, 255, 255, .76);
}

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

.ec-service-important__image {
  min-height: 640px;
  overflow: hidden;
  background: #080d28;
}

.ec-service-important__content,
.ec-service-categories__content,
.ec-service-projects__text {
  padding: 44px 52px;
  border: 1px solid #dfe3ec;
  background: #fff;
}

.ec-service-important__content {
  min-width: 0;
}

.ec-service-important ul,
.ec-service-categories ul,
.ec-service-categories ol,
.ec-service-projects ul {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding-left: 20px;
}

.ec-service-important a,
.ec-service-categories a {
  color: #f26a21;
}

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

.ec-service-categories__image {
  min-height: 620px;
  overflow: hidden;
  background: #080d28;
}

.ec-service-scroll {
  max-height: 680px;
  overflow-y: auto;
  padding-right: 42px;
  scrollbar-width: thin;
  scrollbar-color: #f26a21 #e5e8ef;
}

.ec-service-scroll::-webkit-scrollbar {
  width: 6px;
}

.ec-service-scroll::-webkit-scrollbar-track {
  background: #e5e8ef;
}

.ec-service-scroll::-webkit-scrollbar-thumb {
  background: #f26a21;
}

.ec-service-projects__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
  gap: 34px;
  align-items: stretch;
}

.ec-service-projects__slider-wrap {
  min-width: 0;
}

.ec-service-projects-slider {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 620px;
  background: #080d28;
}

.ec-service-projects-slider .swiper-slide {
  height: auto;
}

.ec-service-project-card {
  position: relative;
  min-height: 620px;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #080d28;
  color: #fff;
}

.ec-service-project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ec-service-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 13, 40, .08), rgba(8, 13, 40, .94));
}

.ec-service-project-card__content {
  position: relative;
  z-index: 2;
  padding: 42px 42px 86px;
}

.ec-service-project-card__title {
  margin-bottom: 18px;
  color: #fff;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 800;
}

.ec-service-project-card p {
  color: rgba(255, 255, 255, .72);
}

.ec-service-projects__nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  height: 60px;
}

.ec-service-projects__btn {
  border: 0;
  background: #080d28;
  color: #f26a21;
  font-size: 34px;
}

.ec-service-projects__btn:hover {
  background: #f26a21;
  color: #fff;
}

.ec-service-projects__progress {
  align-self: center;
  height: 2px;
  background: rgba(255, 255, 255, .2);
}

.ec-service-projects__progress .swiper-pagination-progressbar-fill {
  background: #f26a21;
}

.ec-service-cert__text {
  max-width: 980px;
  margin: 0 0 34px;
  color: #5d6475;
  font-size: 16px;
  line-height: 1.65;
}

.ec-service-cert__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ec-service-cert-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 18px;
  border: 1px solid #dfe3ec;
  background: #f7f8fb;
  transition: .25s ease;
}

.ec-service-cert-card:hover {
  border-color: #f26a21;
  transform: translateY(-3px);
}

.ec-service-cert-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.ec-service-other__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ec-service-other-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid #dfe3ec;
  background: #fff;
  color: #080d28;
  transition: .25s ease;
}

.ec-service-other-card:hover {
  background: #080d28;
  border-color: #080d28;
  color: #fff;
}

.ec-service-other-card span {
  display: block;
  margin-bottom: 34px;
  color: #f26a21;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.ec-service-other-card div {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.ec-service-other-card small {
  color: #f26a21;
  font-size: 13px;
}

.ec-service-final-cta {
  padding: 0 0 88px;
  background: #fff;
}

.ec-service-final-cta__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: 44px 48px;
  background:
    linear-gradient(90deg, rgba(8, 13, 40, .95), rgba(8, 13, 40, .84)),
    url("../img/control.jpg.webp") center / cover no-repeat;
  color: #fff;
}

.ec-service-final-cta__title {
  color: #fff;
  font-size: 34px;
  line-height: 1.12;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  .ec-service-hero__title {
    font-size: 46px;
  }

  .ec-service-intro__grid,
  .ec-service-important__grid,
  .ec-service-categories__grid,
  .ec-service-projects__grid {
    grid-template-columns: 1fr;
  }

  .ec-service-intro__image,
  .ec-service-important__image,
  .ec-service-categories__image {
    min-height: 420px;
  }

  .ec-service-scroll {
    max-height: none;
    overflow: visible;
    padding-right: 52px;
  }
}

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

  .ec-service-hero__title {
    font-size: 40px;
  }

  .ec-service-intro,
  .ec-service-text-block,
  .ec-service-important,
  .ec-service-categories,
  .ec-service-projects,
  .ec-service-cert,
  .ec-service-other {
    padding: 58px 0;
  }

  .ec-service-intro__image,
  .ec-service-important__image,
  .ec-service-categories__image {
    min-height: 360px;
  }

  .ec-service-cert__grid,
  .ec-service-other__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .ec-service-final-cta__btn {
    width: fit-content;
  }
}

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

  .ec-service-hero__title {
    font-size: 30px;
  }

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

  .ec-service-intro,
  .ec-service-text-block,
  .ec-service-important,
  .ec-service-categories,
  .ec-service-projects,
  .ec-service-cert,
  .ec-service-other {
    padding: 44px 0;
  }

  .ec-service-intro__content,
  .ec-service-important__content,
  .ec-service-categories__content,
  .ec-service-projects__text,
  .ec-service-text-block__inner {
    padding: 28px 22px;
  }

  .ec-service-scroll {
    padding-right: 22px;
  }

  .ec-service-text-block h2,
  .ec-service-important h2,
  .ec-service-categories h2,
  .ec-service-title {
    font-size: 25px;
  }

  .ec-service-intro__image,
  .ec-service-important__image,
  .ec-service-categories__image {
    min-height: 260px;
  }

  .ec-service-projects-slider,
  .ec-service-project-card {
    min-height: 520px;
  }

  .ec-service-project-card__content {
    padding: 28px 22px 82px;
  }

  .ec-service-project-card__title {
    font-size: 21px;
  }

  .ec-service-cert__grid,
  .ec-service-other__grid {
    grid-template-columns: 1fr;
  }

  .ec-service-cert-card {
    min-height: 260px;
  }

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

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

  .ec-service-final-cta__title {
    font-size: 24px;
  }

  .ec-service-final-cta__btn {
    width: 100%;
  }
}
.ec-service-intro--supervision {
  padding-bottom: 44px;
}

.ec-service-intro--supervision .ec-service-intro__grid {
  grid-template-columns: minmax(0, 1.45fr) 420px;
}

.ec-service-intro--supervision .ec-service-text h2 {
  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-service-intro--supervision .ec-service-text h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 250px;
  max-width: 100%;
  height: 2px;
  background: #f26a21;
}

.ec-service-wide-text {
  margin-top: 28px;
  padding: 44px 52px;
  border: 1px solid #dfe3ec;
  background: #f7f8fb;
}

.ec-service-wide-text p {
  max-width: 1180px;
  margin: 0 0 18px;
  color: #4f586b;
  font-size: 16px;
  line-height: 1.72;
}

.ec-service-wide-text p:last-child {
  margin-bottom: 0;
}

.ec-supervision-why,
.ec-supervision-steps {
  padding: 44px 0 82px;
  background: #ffffff;
  color: #080d28;
}

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

.ec-supervision-why__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.ec-supervision-why__lead {
  grid-column: span 1;
  min-height: 250px;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background: #080d28;
  color: #ffffff;
}

.ec-supervision-why__lead p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  line-height: 1.55;
}

.ec-supervision-advantage {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid #dfe3ec;
  background: #ffffff;
  overflow: hidden;
  transition: .25s ease;
}

.ec-supervision-advantage::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(242, 106, 33, .2);
  border-radius: 50%;
  pointer-events: none;
}

.ec-supervision-advantage:hover {
  border-color: #080d28;
  background: #080d28;
}

.ec-supervision-advantage span {
  display: block;
  margin-bottom: 42px;
  color: #f26a21;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.ec-supervision-advantage div {
  margin-bottom: 14px;
  color: #080d28;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  transition: .25s ease;
}

.ec-supervision-advantage p {
  margin: 0;
  color: #5d6475;
  font-size: 14px;
  line-height: 1.55;
  transition: .25s ease;
}

.ec-supervision-advantage:hover div {
  color: #ffffff;
}

.ec-supervision-advantage:hover p {
  color: rgba(255, 255, 255, .68);
}

.ec-supervision-duties {
  margin-top: 18px;
  padding: 42px 48px;
  border: 1px solid #dfe3ec;
  background: #f7f8fb;
}

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

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

.ec-supervision-duties p,
.ec-supervision-duties li {
  color: #4f586b;
  font-size: 16px;
  line-height: 1.7;
}

.ec-supervision-duties ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.ec-service-important--supervision {
  padding-top: 0;
}

.ec-service-important--supervision .ec-service-important__grid {
  grid-template-columns: 380px minmax(0, 1fr);
}

.ec-supervision-steps {
  padding-top: 0;
}

.ec-supervision-steps__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}

.ec-supervision-steps__head p {
  max-width: 620px;
  margin: 0;
  color: #5d6475;
  font-size: 15px;
  line-height: 1.6;
}

.ec-supervision-steps__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 48px;
  padding: 13px 26px;
  border: 1px solid #080d28;
  background: #080d28;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  transition: .25s ease;
}

.ec-supervision-steps__btn:hover {
  border-color: #f26a21;
  background: #f26a21;
  color: #ffffff;
}

.ec-supervision-steps__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ec-supervision-step {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(8, 13, 40, .88), rgba(8, 13, 40, .98)),
    url("../img/2152006087.jpg.webp") center / cover no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.ec-supervision-step:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(8, 13, 40, .88), rgba(8, 13, 40, .98)),
    url("../img/control.jpg.webp") center / cover no-repeat;
}

.ec-supervision-step:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(8, 13, 40, .88), rgba(8, 13, 40, .98)),
    url("../img/26.jpg.webp") center / cover no-repeat;
}

.ec-supervision-step:nth-child(4) {
  background:
    linear-gradient(180deg, rgba(8, 13, 40, .88), rgba(8, 13, 40, .98)),
    url("../img/20241009_141428.jpg.webp") center / cover no-repeat;
}

.ec-supervision-step::before {
  content: "";
  position: absolute;
  right: -72px;
  top: -72px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(242, 106, 33, .34);
  border-radius: 50%;
  pointer-events: none;
}

.ec-supervision-step__num {
  position: absolute;
  left: 28px;
  top: 28px;
  color: #f26a21;
  font-size: 44px;
  line-height: 1;
  font-weight: 800;
}

.ec-supervision-step__title {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 800;
}

.ec-supervision-step p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.55;
}

.ec-service-projects--supervision .ec-service-projects__grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, .88fr);
}

.ec-service-projects--supervision .ec-service-scroll {
  max-height: 680px;
  overflow-y: auto;
}

@media (max-width: 1199px) {
  .ec-service-intro--supervision .ec-service-intro__grid,
  .ec-service-important--supervision .ec-service-important__grid,
  .ec-service-projects--supervision .ec-service-projects__grid {
    grid-template-columns: 1fr;
  }

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

  .ec-supervision-why__lead {
    grid-column: span 2;
    min-height: auto;
  }

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

  .ec-service-projects--supervision .ec-service-scroll {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 991px) {
  .ec-supervision-why,
  .ec-supervision-steps {
    padding: 58px 0;
  }

  .ec-supervision-steps {
    padding-top: 0;
  }

  .ec-supervision-steps__head {
    display: block;
  }

  .ec-supervision-steps__btn {
    margin-top: 22px;
  }
}

@media (max-width: 575px) {
  .ec-service-wide-text,
  .ec-supervision-duties {
    padding: 28px 22px;
  }

  .ec-supervision-why,
  .ec-supervision-steps {
    padding: 44px 0;
  }

  .ec-supervision-why__grid,
  .ec-supervision-steps__grid {
    grid-template-columns: 1fr;
  }

  .ec-supervision-why__lead {
    grid-column: span 1;
  }

  .ec-supervision-advantage,
  .ec-supervision-step {
    min-height: auto;
    padding: 28px 22px;
  }

  .ec-supervision-step {
    min-height: 260px;
  }

  .ec-supervision-duties__title {
    font-size: 24px;
  }

  .ec-supervision-steps__btn {
    width: 100%;
  }
}