/* main content */
.main-our-goal {
  position: relative;
  /* overflow: hidden; */
}
.our-goal {
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  padding: 100px 60px 100px;
  margin: auto;
  align-items: center;
  transition: padding 0.3s ease;
}
.our-goal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--dark-blue-1);
  width: 100vw;
  height: 100%;
  background: var(--white);
  pointer-events: none;
  z-index: -1;
}
/* circle */
.our-goal-circle-lower {
  position: absolute;
  top: 650px;
  right: -300px;
  opacity: 1;
  visibility: visible;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 698px;
  height: 700px;
}
.our-goal-circle-lower img {
  width: 100%;
  height: 100%;
  transform: rotate(-5deg);
}
.our-goals-circle-upper {
  position: absolute;
  top: -475px;
  height: 730px;
  width: 650px;
  left: -290px;
  transition: width 0.3s ease, height 0.3s ease, top 0.3s ease, left 0.3s ease;
  pointer-events: none;
  z-index: 0;
} 
.our-goals-circle-upper img {
  width: 100%;
  height: 100%;
}


/* content */
.our-goal .caption-2 {
  display: flex;
  background: var(--blue-2);
  padding: 8px 16px;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  color: var(--blue-1);
  margin-bottom: 16px;
  z-index: 3;
}
.our-goal .h2 {
  max-width: 1240px;
  align-items: center;
  text-align: center;
  padding-bottom: 32px;
  transition: padding-bottom 0.3s ease;
  z-index: 3;
}
.our-goal .h2 span {
  color: var(--blue-1);
}
.our-goal .body-1 {
  text-align: center;
  max-width: 750px;
  padding-bottom: 40px;
  transition: padding-bottom 0.3s ease;
  z-index: 3;
}
.goal-btn {
  padding-bottom: 80px;
  transition: padding-bottom 0.3s ease;
}
.goal-arrow-down {
  width: 41px;
  height: 76px;
  transition: width 0.3s ease, height 0.3s ease, transform 1s ease-in-out;
}

@media (max-width: 767px) {
  .our-goal .h2 {
    padding-bottom: 24px;
  }
  .our-goal .body-1 {
    padding-bottom: 32px;
  }
  .goal-btn {
    padding-bottom: 50px;
  }
  .our-goal {
    padding: 70px 20px 70px;
  }
  .our-goal-circle-lower {
    opacity: 0;
    visibility: hidden;
    width: 0px;
    height: 0px;
  }
  .goal-arrow-down {
    width: 27px;
    height: 50px;
  }
  .our-goals-circle-upper {
    height: 300px;
    width: 300px;
    top: -160px;
    left: -150px;
  }
}
