body {
  margin: 0;
  padding: 0;
}
/* Section 1 - hero */
.hero {
  position: relative;
  background-image: url("../../assets/IMG4.jpg");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  box-shadow: 0 7px 12px rgba(0, 0, 0, 0.3);
  justify-content: center;
}

.hero h1 {
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.6;
}

.intro {
  margin-top: 70px;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  margin: 0 auto;
  color: #111;
}
.colorful-text {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 3px;
  position: relative;
  display: inline-block;
  padding: 0 28px;
  color: #111;
}
.colorful-text::before,
.colorful-text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 140px;
  background: linear-gradient(
    -90deg,
    #ef6248,
    #828620 20%,
    #22b633 30%,
    #24a7b8 50%,
    #2b19b9 60%,
    #d90dba 80%,
    red
  );
}

.colorful-text::before {
  left: -150px;
}

.colorful-text::after {
  right: -150px;
}

.intro h3 {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #111;
}
.intro p {
  line-height: 1.8;
  margin-top: 40px;
  font-size: 1rem !important;
  color: #111 !important;
  font-weight: 200 !important;
}

.triangle-left {
  position: absolute;
  top: 0;
  left: -170px !important;
  width: 150px;
  height: auto;
  z-index: 0;
}

.intro h2,
.intro h3,
.intro p {
  position: relative;
  z-index: 1;
  color: #111;
}
.shape-0 {
  top: 90px;
  left: 80px;
  width: 30px;
  height: 30px;
  background-color: rgba(121, 111, 255, 0.6);
  animation-delay: 0s;
}

.bottom-line {
  width: 150px;
  height: 1px;
  margin: 25px auto 10px;
  background: linear-gradient(
    -90deg,
    #ef6248,
    #828620 20%,
    #22b633 30%,
    #24a7b8 50%,
    #2b19b9 60%,
    #d90dba 80%,
    red
  );
}
