.lp-page--sectors3{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #fff;
}

#sectors3-page{
  flex: 1 0 auto;
}

.lp-page--sectors3 .lp-header{
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(0,0,0,.05);
}

.lp-sectorsHero2{
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #f7f7f7;
  background-image: url("../../../images/sector/hero/1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.lp-sectorsHero2__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.lp-sectorsHero2::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to left,
    rgba(255,255,255,.18) 0%,
    rgba(255,255,255,.08) 42%,
    rgba(255,255,255,0) 100%
  );
}

html[dir="ltr"] .lp-sectorsHero2::before{
  background: linear-gradient(
    to right,
    rgba(255,255,255,.18) 0%,
    rgba(255,255,255,.08) 42%,
    rgba(255,255,255,0) 100%
  );
}

.lp-sectorsHero2__graphics{
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  color: var(--lp-accent);
}

.lp-sectorsHero2 .lp-lines{
  position: absolute;
  width: min(760px, calc(92vw - (var(--lp-lines-edge-pad) * 2)));
  height: auto;
  opacity: .95;
}

.lp-sectorsHero2 .lp-lines--topStart{
  top: calc(var(--lp-header-h) + 26px);
  inset-inline-start: var(--lp-lines-edge-pad);
}

.lp-sectorsHero2 .lp-lines--bottomEnd{
  bottom: 26px;
  inset-inline-end: var(--lp-lines-edge-pad);
}

.lp-sectorsHero2 .lp-lines .lp-line{
  stroke: currentColor;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  will-change: stroke-dashoffset, opacity;
}

.lp-sectorsHero2 .lp-lines .lp-line--w10{ stroke-width: 6; }
.lp-sectorsHero2 .lp-lines .lp-line--w4 { stroke-width: 4; }
.lp-sectorsHero2 .lp-lines .lp-line--w1 { stroke-width: 1; }

.lp-sectorsHero2__inner{
  position: relative;
  z-index: 3;

  max-width: var(--lp-container);
  margin-inline: auto;
  padding-inline: var(--lp-page-pad);
  padding-top: calc(var(--lp-header-h) + 48px);
  padding-bottom: 80px;

  min-height: 100vh;
}

@media (max-width: 900px){
  .lp-sectorsHero2 .lp-lines{
    width: min(640px, calc(96vw - (var(--lp-lines-edge-pad) * 2)));
    opacity: .9;
  }

  .lp-sectorsHero2 .lp-lines--topStart{
    top: calc(var(--lp-header-h) + 18px);
  }
}

@media (max-width: 650px){
  .lp-sectorsHero2{
    background-position: center center;
  }

  .lp-sectorsHero2__video{
    object-position: center center;
  }
}

body.lp-page--sectors3 #sectors-hero-2 .lp-sectorsHero2__inner{
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.lp-page--sectors3 #sectors-hero-2 .lp-sectorsHero2__head{
  text-align: center;
}

body.lp-page--sectors3 #sectors-hero-2 .lp-sectorsHero2__title{
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 4.8vw, 70px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

body.lp-page--sectors3 #sectors-hero-2 .lp-sectorsHero2__titleAccent{
  position: relative;
  display: inline-block;
  isolation: isolate;
  padding-inline: .12em;
  color: #fff;
}

body.lp-page--sectors3 #sectors-hero-2 .lp-sectorsHero2__titleAccent::before{
  content: "";
  position: absolute;
  inset-inline: -0.06em;
  height: .34em;
  bottom: .08em;
  background: var(--lp-accent);
  border-radius: 10px;
  z-index: -1;
}