/* sss 랜딩페이지 seciton3 스타일 코드 */

.section_3 {
  background: #fff;
  padding: 160px 0;
  gap: 80px;
  max-width: 1000px;
  margin: 0 auto;
}
.color_text {
  background: linear-gradient(
    90deg,
    #e64e85 0.77%,
    #e67324 14.74%,
    #c7e640 28.7%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* 섹션 3 아래 박스 부분들 */
.section3_box_container_top {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.section3_box_container_bottom {
  display: flex;
}

/* 박스 스타일 */
.mx_information_box {
  width: 100%;
  width: 448px;
  height: 297px;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.mx_information_box_1 {
  background: rgba(255, 86, 148, 0.1);
  flex: 1;
}

.mx_information_box_2 {
  background: rgba(255, 128, 40, 0.1);
  flex: 1;
}

.mx_information_box_3 {
  width: 100%;
  background: rgba(221, 255, 71, 0.1);
  height: 255px;
}

.mx_box_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  position: relative;
  z-index: 2;
}

.mx_box_title {
  color: #434d62;
  font-family: Pretendard;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: -0.48px;
}

.mx_box_description {
  font-family: Pretendard;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.84px;
}

.mx_information_box_1 .mx_box_description {
  color: #ff5694;
}

.mx_information_box_2 .mx_box_description {
  color: #ff8028;
}

.mx_information_box_3 .mx_box_description {
  color: #b0cb38;
}

.mx_box_icon {
  position: absolute;
  right: -18px;
  bottom: -7px;

  display: flex;
  align-items: center;
  justify-content: center;
}
.mx_box_icon_2 {
  right: -18px;
  bottom: -15px;
}

.mx_info_icon_1 {
  width: 177.5px;
  height: 189.5px;
  flex-shrink: 0;
  aspect-ratio: 177.5/189.5;
}
.mx_info_icon_2 {
  width: 171.5px;
  height: 174px;
  flex-shrink: 0;
  aspect-ratio: 171.5/174;
}
.mx_info_icon_3 {
  width: 226px;
  height: 222px;
  flex-shrink: 0;
  aspect-ratio: 113/111;
}

/* 섹션3 애니메이션용 초기 상태 */
#section_3_text_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s, transform 0.2s;
}


#section3_bottom_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s, transform 0.2s;
}
