/* 랜딩페이지 스타일 css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR",
    -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto,
    "Helvetica Neue", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}

/* 헤더 스타일 */
header {
  width: 100%;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 80px;
}
section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header_logo {
  color: #fff;
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px; /* 100% */
}

.header_link {
  color: #fff;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  letter-spacing: -0.54px;
}

/* 헤더스타일 끝 */



/* 푸터 스타일 */

footer {
  width: 100%;
  padding: 80px 120px;
  background-color: #000000;
  color: #ffffff;
}

.footer_container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
}

.footer_top_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer_social_media_container {
  display: flex;
  align-items: center;
  gap: 56px;
}

.footer_menu_text {
  color: #75777d;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
}

.footer_mid_container {
  display: flex;
  flex-direction: column;
  gap: 6px;

  /* 글자 */
  color: #f6f7fa;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px; /* 100% */
  letter-spacing: -0.42px;
}

.office_name_sub {
  color: #7b818d;
  font-size: 10px;
  font-weight: 500;
  line-height: 10px; /* 100% */
  letter-spacing: -0.3px;
}

.footer_bottom_container {
  padding-top: 10px;
  color: #f6f7fa;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px; /* 100% */
  letter-spacing: -0.42px;
  line-height: 2;
}




/* 겹치는 스타일 부분 */
.section_text_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 24px;
}
.section_title {
  color: #0058ff;
  text-align: center;
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 100% */
  letter-spacing: 0.48px;
}
.section_text {
  color: #434d62;
  text-align: center;
  font-family: Pretendard;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 100% */
  letter-spacing: -0.84px;
  line-height: 1.5;
}

.section_sub_title {
  color: #313743;
  text-align: center;
  font-family: Pretendard;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.4; /* 100% */
  letter-spacing: -1.08px;
  padding-top: 16px;
}

.section_subtext {
  color: #434d62;
  text-align: center;
  font-family: Pretendard;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6; /* 100% */
  letter-spacing: -0.78px;
  padding-top: 16px;
}
