.greeting-cont {
  margin-bottom: 80px;
}
.greeting-title {
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 32px;
  position: relative;
  word-break: keep-all;
  font-size: 32px;
  line-height: 40px;
}
.greeting-title::before {
  position: absolute;
  content: "";
  left: -20px;
  top: -24px;
  width: 56px;
  height: 56px;
  border-radius: 100px;
  background-color: #7fbc03;
  opacity: 0.4;
  z-index: -1;
}
.greeting-txt {
  margin-bottom: 24px;
  padding-left: 12px;
}
.greeting-txt p {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 30px;
  word-break: keep-all;
}
.greeting-cont .ceo {
  display: flex;
  gap: 12px;
  align-items: center;
  padding-left: 12px;
}
.greeting-cont .ceo span {
  font-size: 18px;
  font-weight: 700;
}
.greeting-cont .ceo img {
}

@media (max-width: 768px) {
  .greeting-title {
    margin-left: 24px;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .greeting-cont .ceo {
    flex-direction: column;
  }
  .greeting-txt p {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 24px;
    word-break: keep-all;
  }
}

.ani.ani-1,
.ani.ani-2,
.ani.ani-3 {
  animation: slideup 1s ease;
  opacity: 0;
  animation-fill-mode: forwards;
}
.ani.ani-2 {
  animation-delay: 0.5s;
}
.ani.ani-3 {
  animation-delay: 1s;
}

@keyframes slideup {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 100;
    transform: translateY(0);
  }
}
