.intro {
  position: relative;
  width: 100%;
  padding: clamp(2rem, 8vw, 4rem) clamp(1.25rem, 4vw, 2rem);
  background: url("../images/intro/background.png") no-repeat left center / auto 100%;
}

.intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  width: 75%;
  height: 100%;
  background: linear-gradient(90deg, rgba(38, 51, 149, 0) 0%, rgba(32, 102, 177, 0.58) 85.67%);
  border-radius: 0 350px 350px 0;
  pointer-events: none;
  z-index: 0;
}

.intro__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 61rem;
  margin: 0 auto;
  text-align: center;
}

.intro__deco {
  position: absolute;
  width: clamp(3rem, 10vw, 5.5rem);
  height: auto;
  opacity: 0.35;
  filter: brightness(0.3);
  pointer-events: none;
  user-select: none;
}

.intro__deco--tl {
  top: -3%;
  left: 10%;
  min-width: 3rem;
  transform: translate(-40%, -30%) rotate(-15deg);
}

.intro__deco--tr {
  top: 5%;
  right: 15%;
  width: clamp(2.25rem, 7vw, 4rem);
  transform: translate(40%, -30%) rotate(15deg);
}

.intro__deco--bl {
  bottom: 15%;
  left: 30%;
  width: clamp(6rem, 7vw, 7rem);
  transform: translate(-40%, 30%) rotate(-12deg);
}

.intro__deco--br {
  bottom: 20%;
  right: 30%;
  transform: translate(40%, 30%) rotate(12deg);
}

.intro__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}

.intro__line {
  display: block;
  border: none;
  margin: 0;
  padding: 0;
}

.intro__line--top {
  width: min(7.5rem, 40%);
  height: 2px;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(90deg, #2066b1 0%, #63c0ae 45.67%, #75c4ec 99.99%);
}

.intro__body {
  margin: 0 0 clamp(4rem, 10vw, 10rem);
  font-size: clamp(0.875rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.9;
  color: #99A1AF;
}

.intro__body p {
  margin: 0 0 1em;
}

.intro__body p:last-child {
  margin-bottom: 0;
}

.intro__line--bottom {
  width: min(100%, 15rem);
  height: 2px;
  margin-inline: auto;
  margin-block: clamp(2rem, 5vw, 3rem);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    #63c0ae 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

@media (max-width: 768px) {
  .intro {
    background: none;
  }

  .intro::before {
    width: 78%;
  }

  .intro__body br {
    display: none;
  }

  .intro__deco--tl {
    top: -5%;
    left: 5%;
  }
  
  .intro__deco--tr {
    right: 5%;
  }
  
  .intro__deco--bl {
    bottom: 15%;
    left: 10%;
  }
  
  .intro__deco--br {
    bottom: 10%;
    right: 10%;
  }
}