/* sss 랜딩페이지 seciton6 스타일 코드 */
.section_6 {
  background: #f6f7fa;
  padding: 160px 0px;
  gap: 80px;
}

.section_6_subtitle {
  color: #313743;
  font-family: Pretendard;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3; /* 100% */
  letter-spacing: -1.08px;
  text-align: left;
}

.section_6_text_container {
  width: 100%;
  max-width: 1436px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
}
.section_6_text {
  text-align: left !important;
  align-items: flex-start !important;
}
/* 섹션 5 애니메이션용 초기 상태 */
/* #section_6_text_container,
#section_6_tab_container {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.2s, transform 0.2s;
} */

.section_6_tab_container {
  /* width: 100%;
  max-width: 1300px;
  margin: 0 auto; */
  display: flex;
  /* align-items: flex-start; */
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 1436px;
  margin: 0 auto;
}
.tab_box {
  display: flex;
  align-items: center;
  gap: 16px;
    width: 100%;
}
/* 탭 버튼 스타일 */
.section6_tab {
  padding: 16px 24px;
  border-radius: 8px;
  background: #e0e6f2;
  border: none;
  cursor: pointer;

  /* 버튼 속 글자  */
  color: #434d62;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 20px; /* 100% */
  letter-spacing: -0.6px;
}
.section6_tab:hover {
  background: #c5d0e6;
}
.section6_tab:active {
  color: #ffffff;
  background: #0058ff;
}
.section6_tab.active {
  color: #fff;
  background: #0058ff;
}

/* 탭 컨텐츠 부분 */
.section_6_tab_content {
  width: 100%;
  display: flex;
  justify-content: center; /* 수평 가운데 */
  align-items: center; /* 수직 가운데 */
}
.section_6_tab_content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}