/* 랜딩페이지 스타일 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;
}

section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 섹션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: 90vh;
}

.section_1_article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  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: 8px;
  color: #ffffff;
  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;
  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;
}

.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: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
}
.section_text {
  color: #434d62;
  text-align: center;
  font-family: Pretendard;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.84px;
}

@media (min-width: 767px) and (max-width: 1024px) {
  .mobile-br {
    display: none;
  }
  .web-br {
    display: none;
  }
  .tab-br {
    display: inline;
  }

  .section_1 {
    height: 800px;
  }

  .section_1_article {
    gap: 16px;
    padding: 0 40px;
  }

  .section_1_title {
    font-size: 40px;
    letter-spacing: -1.2px;
    margin-top: 0px;
  }

  .section_1_text {
    font-size: 18px;
    letter-spacing: -0.54px;
    margin-top: 24px;
  }

  .btn_container {
    gap: 16px;
    margin-top: 16px;
  }

  .section1_btn {
    width: 180px;
    padding: 18px 0px;
    font-size: 18px;
    letter-spacing: -0.54px;
  }

  .marquee_outer {
    padding: 40px 0;
  }

  .marquee_wrapper {
    gap: 48px;
  }

  .marquee_track {
    gap: 48px;
  }

  .marquee_track img {
    height: 40px;
  }

  .section_title {
    font-size: 20px;
    line-height: 20px;
  }

  .section_text {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: -0.66px;
  }
}

