/* 랜딩페이지 모바일 css */
html,
body {
  overflow-x: hidden;
}
.scroll_icon {
  display: none;
}
/* 모바일만 줄바꿈 되는 스타일일 */
.mobile-br {
  display: none;
}
.mobile-br::after {
  content: "\A";
  white-space: pre;
}

/* 데스크탑 줄바꿈 스타일 */
.web-br {
  display: inline;
}
.web-br::after {
  content: "\A";
  white-space: pre;
}

/* 테블릿 줄바꿈 스타일 */
.tab-br {
  display: none;
}
.tab-br::after {
  content: "\A";
  white-space: pre;
}

/* 모바일 스타일 */
@media (max-width: 767px) {
  .header_logo{
    font-size: 24px !important;
  }
  .mobile-br {
    display: inline;
  }
  .web-br {
    display: none;
  }
  .tab-br {
    display: none;
  }

  .section_1 {
    background-image: url("/img/rx_landing/mo_section1_back.png");
    height: 90vh;
    position: relative;
    background-position: inherit;
  }

  .section_1_article {
    height: 100%;
    gap: 20px;
  }
  .section_1_article > img {
    width: 33px;
  }

  .section_1_title {
    margin-top: 0px;
    font-size: 28px;
    letter-spacing: -0.84px;
    line-height: 1.5;

    word-break: keep-all;
  }
  .section_1_text {

    margin-top: 12px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: -0.48px;
    word-break: keep-all;
 
  }

  .btn_container {
    margin-top: 20px;
    gap: 16px;
    width: 100%;
    padding: 0 48px;
    display: flex;
    justify-content: center;
  }

  .section1_btn {
    padding: 16px 20px;
    width: 100%;
    flex-shrink: 0;
    border-radius: 4px;
    background: #f6f7fa;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);

    color: #313743;
    text-align: center;
    font-family: Pretendard;
    font-size: 16px;
    line-height: 16px; /* 100% */
    letter-spacing: -0.48px;
    width: 138px;
  }

  .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;
  }

  .scroll_icon {
    display: block;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    filter: drop-shadow(0px 0px 50px rgba(0, 0, 0, 0.25));
  }

  .marquee_outer {
    padding: 28px 0;
  }
  .marquee_wrapper {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    gap: 20px;
  }
  .marquee_track {
    display: flex;
    white-space: nowrap;
    gap: 20px;
  }
  .marquee_track img {
    display: inline-block;
    width: auto;
    height: 20px;
  }

  .section_text_container {
    gap: 24px;
  }
  .section_title {
    font-size: 16px;

  }

  .section_text {
    font-size: 18px;
    letter-spacing: -0.54px;
    line-height: 1.5;
 
    word-break: keep-all;
  }
}

/* 테블릿 스타일 */
@media (min-width: 767px) and (max-width: 1024px) {
  .mobile-br {
    display: none;
  }
  .web-br {
    display: none;
  }
  .tab-br {
    display: inline;
  }

  .section_1 {
    background-image: url("/img/rx_landing/tab_section1_back.png");
    height: 90vh;
  }

  .section_1_article {
    gap: 24px;
  }
  .section_1_article > img {
    width: 40px;
  }

  .section_1_title {
    margin-top: 0px;
    font-size: 40px;
    letter-spacing: -1.2px;
    line-height: 1.5;

    word-break: keep-all;
  }
  .section_1_text {

    padding: 8px 0px 12px;
    margin-top: 0px;
    font-size: 22px;
    letter-spacing: -0.66px;
    word-break: keep-all;
    line-height: 1.5;


  }

  .btn_container {
    margin-top: 0px;
    padding-top: 16px;
    gap: 16px;
  }

  .section1_btn {
    padding: 20px 20px;
    width: 100%;
    font-size: 20px;
    letter-spacing: -0.6px;
    width: 205px;
  }

  .scroll_icon {
    display: none;
  }

  .marquee_outer {
    padding: 40px 0;
  }
  .marquee_wrapper {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    gap: 40px;
  }
  .marquee_track {
    display: flex;
    white-space: nowrap;
    gap: 40px;
  }
  .marquee_track img {
    display: inline-block;
    width: auto;
    height: 32px;
  }

  .section_text_container {
    gap: 24px;
  }
  .section_title {
    font-size: 20px;
  }

  .section_text {
    word-break: keep-all;
    font-size: 20px;
    line-height: 1.5;
  }
}
