/* 랜딩페이지 섹션2 스타일 */

.section_2 {
  background-color: #f6f7fa;
  padding: 160px 0px;
  gap: 80px;
}

.section_2_text {
  margin-top: 4px;
}

.section_2_subtext {
  text-align: center;
  font-family: Pretendard;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 100% */
  letter-spacing: -1.08px;
  background: linear-gradient(90deg, #434d62 0%, #899dc8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section_2_img_container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1396px;
  margin: 0 auto;
  padding: 0 40px;
}

.section_2_img_container > img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

/* 애니메이션 관련련 */
#section_2_text_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s;
}

#section_2_img_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s;
}
/* 모바일 스타일 */

@media (max-width: 767px) {
  .section_2 {
    padding: 100px 0px;
    gap: 48px;
  }

  .section_2_text {
    margin-top: 0px;
  }

  .section_2_subtext {
    font-size: 26px;
    line-height: 1.4;
    letter-spacing: -0.78px;
    word-break: keep-all;
  }

  .section_2_img_container {
    padding: 0 24px;
    width: 100%;
    height: 100%;
    display: flex;
  }
  .section_2_img_container > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* 테블릿 스타일 */
@media (min-width: 767px) and (max-width: 1024px) {
  .mobile-br {
    display: none;
  }
  .web-br {
    display: none;
  }
  .tab-br {
    display: inline;
  }
  .section_2 {
    padding: 100px 0px;
    gap: 64px;
  }

  .section_2_text {
    margin-top: 0px;
  }

  .section_2_subtext {
    font-size: 26px;
    line-height: 1.4;
    letter-spacing: -0.78px;
    word-break: keep-all;
  }

  .section_2_img_container {
    padding: 0 40px;
  }
  .section_2_img_container > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
