.section__servicehero {
  padding-bottom: 100px;
  padding-top: 190px;
  position: relative;
}
.section__servicehero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-black-60);
  z-index: 1;
}
.section__servicehero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 30%, rgba(0, 0, 0, 0.4) 0, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
  z-index: 2;
}
.section__servicehero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section__servicehero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.section__servicehero__container {
  height: 100%;
}
.section__servicehero__body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  gap: 20px;
}
.section__servicehero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
}
.section__servicehero__title {
  max-width: 850px;
}
.section__servicehero__text {
  font-size: var(--font-size-20);
  line-height: 1.4;
  color: var(--color-white);
}
.section__servicehero__text span {
  font-weight: 700;
}
.section__hero__benefits {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.section__hero_benefit {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: var(--color-black-80);
}
.section__hero_benefit__img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}
.section__hero_benefit__text {
  font-weight: 600;
  font-size: var(--font-size-20);
  line-height: 1.4;
  color: var(--color-white);
}
.section__hero__awards {
  display: flex;
  align-items: center;
  gap: 36px;
}
.section__hero__awards__text {
  font-weight: 600;
  font-size: var(--font-size-24);
  line-height: 1.2;
  color: var(--color-white);
}
.section__hero__awards__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.section__hero__awards__img {
  width: 65px;
  height: 65px;
  object-fit: cover;
}
@media (max-width: 1280px) {
  .section__servicehero {
    padding-top: 164px;
  }
  .section__servicehero__text {
    font-size: var(--font-size-18);
  }
  .section__hero__benefits {
    gap: 12px;
  }
  .section__hero_benefit {
    padding: 12px;
    gap: 12px;
  }
  .section__hero_benefit__img {
    width: 40px;
    height: 40px;
  }
  .section__hero_benefit__text {
    font-size: var(--font-size-18);
  }
  .section__hero__awards__text {
    font-size: var(--font-size-22);
  }
  .section__hero__awards__items {
    gap: 8px;
  }
  .section__hero__awards__img {
    width: 56px;
    height: 56px;
  }
}
@media (max-width: 992px) {
  .section__servicehero {
    padding-top: 144px;
    padding-bottom: 48px;
  }
  .section__hero__awards {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .section__hero__awards__text {
    font-size: var(--font-size-20);
  }
  .section__hero__awards__img {
    width: 64px;
    height: 64px;
  }
}
@media (max-width: 560px) {
  .section__servicehero__text {
    font-size: var(--font-size-17);
  }
  .section__hero__benefits {
    gap: 8px;
  }
  .section__hero_benefit__text {
    font-size: var(--font-size-17);
  }
  .section__hero__awards__img {
    width: 56px;
    height: 56px;
  }
}
