/* 랜딩페이지 스타일 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;
}

/* 헤더스타일 끝 */

/* 섹션1 스타일 */
.section_1 {
  width: 100%;

  background-image: url("/img/rx_landing/section1_back.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* height: 100vh; */
  height: 1080px;
}

.section_1_article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  /* 기본적으로 모든 요소 사이에 20px의 간격을 줌 */
  gap: 20px;
}
.section_1_title {
  margin-top: 8px;
  color: rgba(240, 242, 247, 0.6);
  text-align: center;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -1.68px;

  line-height: 1.4;
}

.title_text_white {
  color: #fff;
}

.section_1_text {
  margin-top: 44px;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -0.72px;
}

/* 버튼 부분 */
.btn_container {
  margin-top: 20px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.section1_btn {
  /* 버튼 기본 스타일 제거 */
  border: none;
  outline: none;
  background: none;
  box-shadow: none;

  cursor: pointer;
  padding: 20px 0px;
  width: 205px;
  /* height: 60px; */
  flex-shrink: 0;
  border-radius: 8px;
  background: #f6f7fa;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);

  /* 버튼 속 글자 스타일  */
  color: #313743;
  text-align: center;
  font-family: Pretendard;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 100% */
  letter-spacing: -0.6px;
}

.free_btn {
  background: linear-gradient(90deg, #313743 0%, #434d62 100%);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  color: #fff;
}
/* 무료로 시작하기 버튼 */
.free_btn:hover {
  background: linear-gradient(
    90deg,
    rgba(49, 55, 67, 0.5) 0%,
    rgba(67, 77, 98, 0.5) 100%
  );
}
/* 도입 문의하기 버튼 */
.contact_btn:hover {
  background: #d5d9e1;
}

/* ===== 로고 무한 슬라이드 ===== */
.marquee_inner {
  width: 100%;
  overflow: hidden;
  background: #fff;
  padding: 56px 0;
  position: relative;
}

.wrap {
  display: flex;
  gap: 56px;
  align-items: center;
  min-width: max-content;
  will-change: transform;
}

.wrap img {
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* 로고 애니메이션 관련련 */

.marquee_outer {
  overflow: hidden;
  width: 100%;
  padding: 50px 0;
}
.marquee_wrapper {
  display: flex;
  white-space: nowrap;
  will-change: transform;
  gap: 60px;
}
.marquee_track {
  display: flex;
  white-space: nowrap;
  gap: 60px;
}
.marquee_track img {
  display: inline-block;
}

/* 랜딩페이지 섹션 2,3,4 스티일 css 코드 */
/* 겹치는 스타일 부분 */
.section_text_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 24px;
}
.section_title {
  color: #313743;
  text-align: center;
  font-family: Poppins;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 100% */
}
.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.4;
}
