/* 기본 리셋 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
  text-decoration: none;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Pretendard Variable", Pretendard, -apple-system,
    BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI",
    "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
html,body{
  word-break: keep-all;
}
ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

/* common */
.fw700 {
  font-weight: 700;
}

.center-box{
  position: relative;
  width: 1400px;
  margin: 0 auto;
}

/* NAV BAR */
.navbar {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1500px;
  margin: 0 auto;
  height: 64px;
  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 메뉴 */
.nav-menu {
  display: flex;
  gap: 24px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
}

.btn-login{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  padding: 12px 20px;
  background-color: #ff5b22;
  border-radius: 60px;
  box-sizing: border-box;
}

.btn-login p{
  margin-right: 10px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.btn-login img{
  display: block;
  width: 18px;
  height: 18px;
}

.btn-inquiry{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 54px;
  background-color: #ff5b22;
  border-radius: 5px;
  box-sizing: border-box;
}

.btn-inquiry p{
  margin-right: 12px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

/* First SECTION */
.first {
  display: flex;
  align-items: center;
  min-height: 50vh;
  position: relative;
  background-color: #FAFAFA;
}

/* .first-content {
  text-align: center;
  position: absolute; 
  left: 50%;
  top: 65%;
  transform: translate(-50%, -50%);
  z-index: 2;
} */

/* .first-content2 {
  position: absolute;
  left: 70%;
  top: 60%;
  transform: translateY(-50%);
  z-index: 1;
} */

.first-content {
  margin: 0 auto;
  text-align: center;
  z-index: 2;
}
.first-content2 {
  display: block;
  position: absolute;
  right: 50%;
  top: 22%;
  width: 251px;
  /* height: 250px; */
  margin-right: -620px;
  z-index: 1;
}

.first-content2 img {
  display: block;
  width: 100%;
  height: 100%;
}

.first-content .btn {
  margin-top: 6%;
  display: flex;
  justify-content: center;
  /* 가운데 정렬 */
}

.first-title1 {
  color: #ff5b22;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -1px;
}

.first-title2 {
  line-height: 135%;
  font-size: 4rem;
}

.first-content span {
  color: #ff5b22;
}

.floating-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-box {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 95px;
  padding: 0 60px;
  background-color: #ff5b22;
  border-radius: 0.7rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  /* ⭐ 양쪽 끝 */
  z-index: 9999;
  /* padding-left: 1rem;
  padding-right: 1rem; */
}

/* .floating-box img {
  height: auto;
  width: 70%;
  position: static;
} */

.floating-text {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  padding: 0;
}
.floating-text img{
  display: block;
  width: 174px;
}
.floating-text p{
  display: block;
  margin-left: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1.9rem;
}

.floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14rem;
  height: 3.8rem;
  /* padding: 18px 30px; */
  background-color: #fff;
  border-radius: 5px;
  box-sizing: border-box;
}
.floating-btn p{
  margin-right: 12px;
  color: #f35b1f;
  font-weight: 700;
  font-size: 1.5rem;
}
.floating-btn img{
  display: block;
  width: 24px;
  height: 24px;
}

/* Second SECTION */
.second {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #FAFAFA;
}

.second-content img {
  max-width: 100%;
  height: auto;
}

.floating-box button {
  float: right;
  right: 3%;
  position: relative;
  right: 20px;
}

button {
  border: none;
  outline: none;
  background: none;
}

/* Third SECTION */
.third {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #eff9fb;
}

.third-content {
  display: flex;
  padding-top: 80px;
  padding-bottom: 20px;
  align-items: center;
}

.third-content b {
  font-size: 1.5rem;
}

/* Fourth SECTION */
.fourth {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #eff9fb;
  padding-bottom: 80px;
}

.fourth-content {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  display: flex;
  justify-content: center;
}

.fourth-content img {
  width: 30%;
  max-width: 100%;
  height: auto;
}

/* fifth SECTION */
.fifth {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fifth-content {
  padding: 7% 20px 3rem;
}

.fifth-content img {
  max-width: 100%;
  height: auto;
}
.fifth-content span{
  font-weight: 300;
}

.fifth-content b,
.fifth-content span {
  font-size: 2.7rem;
  line-height: 140%;
}

.sixth {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sixth-content {
  width: 80%;
  position: relative;
  height: auto;
  padding-bottom: 7%;
  padding-left: 20px;
  padding-right: 20px;
}

/* ===== 슬라이드 뷰포트 ===== */
.viewport {
  width: 100%;
  position: relative;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sixth-slider-viewport {
  width: 100%;
  overflow: hidden; /* 🔥 옆 슬라이드 안 보이게 */
}

/* ===== 슬라이드 트랙 ===== */
.track {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateX(0px);
  will-change: transform;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100%;
}
/* ===== 카드 ===== */
.sixth-card {
  position: relative;
  width: 100%;
  height: 640px;
  border-radius: 18px;
  overflow: hidden;
  flex: 0 0 auto;
  /* background-color: #FAFAFA; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  /* padding-top: 50px; */
}

.sixth-slideCard {
  flex: 0 0 auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
  /* padding-top: 140px; */
}

.sixth-card-text {
  margin-bottom: 1.5rem;
  color: #5d5d5d;
  text-align: center;
  transform: translateZ(0);
}

.sixth-card-text b {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
}

.sixth-card-text span {
  font-size: 1.3rem;
  line-height: 1.4;
}

.sixth-slideCard img {
  width: 80%;
  height: auto;
}

/* ===== 버튼 (PNG 전체 이미지) ===== */
.arrowButton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border: 0;
  padding: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  z-index: 10;
}

.arrowButton.left {
  left: 10px;
  background-image: url("../images/3_slidePreviousbutton.png");
}

.arrowButton.right {
  right: 10px;
  background-image: url("../images/3_slideNextbutton.png");
}

.seventh {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fafafa;
}

.seventh-content {
  padding: 7%;
}

.seventh-content img {
  max-width: 100%;
  height: auto;
}

.seventh-content b,
.seventh-content span {
  color: #212121;
  font-size: 2.7rem;
  line-height: 1.4;
}

.seventh-content span,
.eighth-content span{
  font-weight: 300;
}

.seventh-container {
  padding: 3rem;
  background-color: #ffffff;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0.7rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  margin-top: 50px;
}

.seventh-container p,
.seventh-container b {
  font-size: 0.9rem;
}

.seventh-container img {
  margin-top: 1rem;
}

.seventh-container2 {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  margin-top: 3rem;
}

.seventh-container2 img {
  max-width: 100%;
  height: auto;
}

.seventh-section-image-container {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.seventh-section-image-container p{
  padding: 10px 20px;
  color: #0C2B31;
  font-size: 1.4rem;
  font-weight: 700;
  border: 1px solid #ddd;
  box-sizing: border-box;
  border-radius: 50px;
}

.seventh-section-image-container img {
  display: block;
}

.eighth {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffffff;
}

.eighth-content {
  padding: 7%;
}

.eighth-content img {
  max-width: 100%;
  height: auto;
}

.eighth-content b,
.eighth-content span {
  color: #212121;
  font-size: 2.7rem;
  line-height: 1.4;
}

.sub_title {
  margin-top:3.2rem;
}

.eighth-content .sub_title p,
.eighth-content .sub_title b {
  color: #5D5D5D;
  font-size: 1.3rem;
  line-height: 1.4;
}

.eighth-content img {
  margin-top: 2rem;
}

.nineth {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nineth-content {
  width: 100%;
  position: relative;
}
/* ===== 회색 라운드 배경 ===== */
.stage {
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: #f6f7fb;
  padding: 48px 64px;
  overflow: hidden;
}

/* ===== 슬라이드 뷰포트 ===== */
.viewport2 {
  position: relative;
  height: 360px;
  overflow: visible;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== 슬라이드 트랙 ===== */
.track2 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) translateX(0px);
  display: flex;
  will-change: transform;
}
/* ===== 카드 ===== */
.nineth-card {
  position: relative;
  width: 428px;
  height: 378px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  flex: 0 0 auto;

  transform: scale(0.88);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nineth-card img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%);
  width: 78%;
  height: 78%;
  object-fit: contain;
  z-index: 1;
}

.nineth-card-title {
  position: absolute;
  bottom: 20px; /* 아래쪽에 텍스트 */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2; /* ⭐ 이미지 위 */
  color: #111;
  font-size: 1.25rem;
  font-weight: 600;
}

/* 활성 카드 */
.nineth-card.active {
  background: #fef8f5;
  transform: scale(1);
  opacity: 1;
  z-index: 3;
}

.nineth-card.active .nineth-card-title {
  color: #f35b1f;
}

/* 좌우 카드 겹침 */
.nineth-card.prev {
  z-index: 2;
}
.nineth-card.next {
  z-index: 2;
}

/* ===== 버튼 (PNG 전체 이미지) ===== */
.arrowButton2 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border: 0;
  padding: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer;
  z-index: 10;
}

.arrowButton2.left {
  left: calc(50% - clamp(140px, 35vw, 250px));
  background-image: url("../images/3_slidePreviousbutton.png");
}

.arrowButton2.right {
  right: calc(50% - clamp(140px, 35vw, 250px));
  background-image: url("../images/3_slideNextbutton.png");
}

.tenth {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffffff;
}

.tenth-content {
  padding: 7% 50px;
}

.tenth-content .tenth-tit{
  margin-bottom: 60px;
}


.tenth-container {
  margin: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}

.tenth-container .title{
  text-align: left;
}
.tenth-container .img-box{
  width: 80%;
  max-width: 644px;
}

.tenth-container img {
  width: 100%;
  /* max-width: 80%; */
  height: auto;
  display: block;
}

.tenth-title {
  margin: 3rem;
  display: flex;
  align-items: center;
}

.tenth-container p,
.tenth-container b {
  font-size: 2rem;
  line-height: 1.4;
  letter-spacing: -1px;
}

.tenth-container span {
  color: #5d5d5d;
  font-size: 1.4rem;
  line-height: 1.4;
}

.eleventh {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fafafa;
}

.eleventh-content {
  padding: 5%;
  gap: 1.5rem;
  align-items: center;
}

.eleventh-container {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.eleventh-container img {
  width: 22%;
  /* 4개 기준 */
  max-width: 100%;
  height: auto;
}

.eleventh p,
.eleventh b {
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: -1px;
}

.eleventh span {
  color: #5d5d5d;
  font-size: 1.4rem;
  letter-spacing: -1px;
}

.twelfth {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffffff;
}

.twelfth-content {
  width: 1400px;
  padding: 5% 0;
}

.twelfth-container img {
  max-width: 80%;
  height: auto;
}

.twelfth-container {
  margin: 0 8rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.twelfth-container .title{
  text-align: left;
  line-height: 1.4;
}

.twelfth-title {
  margin: 3rem;
  display: flex;
  align-items: center;
}

.twelfth-container p,
.twelfth-container b {
  font-size: 2.5rem;
}

.twelfth-container span {
  font-size: 1.4rem;
}
.twelfth .title p{
  color: #212121;
}
.twelfth .title span{
  color: #5d5d5d;
}

.thirteenth {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffffff;
}

.thirteenth-content {
  width: 1400px;
  background-color: #fafafa;
}

.thirteenth-container img {
  max-width: 80%;
  height: auto;
}

.thirteenth-container {
  margin: 3rem 0;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.thirteenth-title {
  margin: 3rem;
  display: flex;
  align-items: center;
}

.thirteenth-container .title{
  text-align: left;
}

.thirteenth-container p,
.thirteenth-container b {
  color: #212121;
  font-size: 2.5rem;
  line-height: 1.4;
}

.thirteenth-container span {
  color: #5d5d5d;
  font-size: 1.3rem;
  line-height: 1.4;
}

.fourteenth {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffffff;
}

.fourteenth-content {
  width: 75%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fourteenth-container {
  margin: 3rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.fourteenth-container img {
  width: 100%;
}

.fifteenth {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #ffffff;
}

.fifteenth-content{
  width: 73%;
}

.fifteenth-container {
  padding: 0 0 0 80px;
  margin: 4.7rem auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fifteenth-container img {
  height: auto;
}

.fifteenth-title {
  margin: 3rem;
  display: flex;
  align-items: center;
  text-align: left;
}

.fifteenth-container p,
.fifteenth-container b {
  font-size: 2.5rem;
  text-align: left;
  line-height: 1.4;
}

.fifteenth-container span {
  color: #5d5d5d;
  font-size: 1.3rem;
  display: block;
  text-align: left;
  margin-top: 23px;
  line-height: 1.4;
}
.fifteenth-container span b{
  font-size: 1.3rem;
}

.sixteenth {
  display: flex;
  justify-content: center;
  background-color: #fafafa;
}

.sixteenth-content {
  width: 60%;
  padding: 7% 20px;
}

.sixteenth-content img {
  margin: 0 auto;
  display: block;
}

.sixteenth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16%;
  padding: 3rem;
  background-color: #ffffff;
  position: relative;
  border-radius: 0.7rem;
  border: 1px solid #ddd;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); */
}

.sixteenth-title {
  margin: 3rem;
  display: flex;
  align-items: center;
}

.sixteenth-container p,
.sixteenth-container b {
  font-size: 1.5rem;
}

.sixteenth-container span {
  color: #5d5d5d;
  font-size: 0.9rem;
}

.sixteenth-container img {
  width: 80%;
  margin-right: 0;
}

.seventeenth {
  background-color: #fafafa;
}

.seventeenth-content {
  width: 60%;
  padding-bottom: 7%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  gap: 50px;
}

.seventeenth-left,
.seventeenth-right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem;
  background-color: #ffffff;
  position: relative;
  border-radius: 0.7rem;
  border: 1px solid #ddd;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); */
  flex-direction: column;
  gap: 30px;
}

.seventeenth-img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.seventeenth-img img {
  width: 100%;
  object-fit: contain;
  display: block;
}

.seventeenth p,
.seventeenth b {
  font-size: 1.5rem;
  text-align: center;
}

.seventeenth span {
  color: #5d5d5d;
  font-size: 0.9rem;
  display: block;
  text-align: center;
}

.footer {
  width: 100%;
  background-color: #ffffff;
}

.footer-inner {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;

  padding: 3rem 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left p {
  margin: 0.3rem 0;
  font-size: 0.8rem;
}

.footer-right {
  display: flex;
  gap: 1.5rem;
}

.footer-left span {
  font-size: 0.8rem;
  color:gray;
}

.policy {
  margin:2.5rem 0 2.2rem 0;
}
.policy a {
  color:black;
  margin-right:20px;
}

.policy a:last-child {
  margin-right:0;
}

.section-faq{
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fef8f5;
}
.section-faq .faq-content{
  /* display: flex; */
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  margin: 7.5rem 0;
}

.faq-content .title{
  margin-bottom: 2.5rem;
  color: #212121;
  font-weight: 300;
  font-size: 2.7rem;
  line-height: 140%;
  letter-spacing: -1px;
}

.faq-slides {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
}

.faq-slides .faq-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.viewportFaq {
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.trackFaq {
  display: flex;
  align-items: center;
  will-change: transform;
}

.faq-card {
  flex: 0 0 816px; /* 기준 카드 폭 */
  /* width: 640px; */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s ease, opacity 0.45s ease;
  transform: scale(0.78);
  opacity: 0.35;
  position: relative;
}

.faq-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 가운데 */
.faq-card.active {
  transform: scale(1);
  opacity: 1;
  z-index: 3;
}

/* 양옆 */
.faq-card.prevFaq,
.faq-card.nextFaq {
  transform: scale(0.82);
  opacity: 0.65;
  z-index: 2;
}

/* 나머지 카드 */
.faq-card:not(.active):not(.prevFaq):not(.nextFaq) {
  transform: scale(0.72);
  opacity: 0.2;
  z-index: 1;
}

.faq-content .arrowButton2.right{
  right: calc(50% - clamp(140px, 35vw, 446px));
}
.faq-content .arrowButton2.left{
  left: calc(50% - clamp(140px, 35vw, 446px));
}

/* 타겟 */
.section-rec{
  padding:  0 5%;
}
.rec-content{
  margin: 8.3rem 0;
}
.rec-content .title{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  text-align: center;
}

.rec-content .title span{
  color: #212121;
  font-size: 2.7rem;
  letter-spacing: -1px;
}

.rec-list{
  display: flex;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
}
.rec-list img{
  display: block;
  width: 100%;
}
.rec-txt1{
  margin: 1.3rem 0 5rem;
  text-align: center;
  color: #5D5D5D;
  font-size: 1.4rem;
}
.rec-txt2{
  color: #212121;
  font-size: 2.7rem;
  text-align: center;
  line-height: 1.5;
  letter-spacing: -1px;
  font-weight: 300;
}
.rec-txt2 b{
  font-weight: 700;
}
.section-video{
  padding: 6rem 4%;
  background-color: #fef8f5;
}
.video-content .title{
  color: #212121;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -1px;
}
.video-wrap{
  max-width: 1400px;
  /* height: 788px; */
  margin: 0 auto;
  aspect-ratio: 16/9;
}

.video-wrap iframe{
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

@media (max-width: 1370px){
  .rec-list{
    flex-wrap: wrap;
    gap: 2rem 0;
    justify-content: center;
    width: 60%;
  }
  .rec-txt1{
    font-size: 15px;
  }
  .rec-txt2{
    font-size: 20px;
  }
  /* .video-wrap{
    width: 80%;
    height: auto;
    margin: 0 auto;
  } */
}
@media (max-width:1440px){
  .fifteenth-content{
    width: 100%;
  }
}
@media (max-width:1200px){
  .first-content2{
    top: 28%;
  }
}

@media (max-width:1024px) {  
  .first-title1{
    font-size: 1.5rem;
  }
  .first-title2 {
      font-size: 3rem;
  }
  .first-content2{
    width: 200px;
    margin-right: -470px;
  }

  .video-content .title{
    font-size: 2rem;
  }
  .rec-content .title span{
    font-size: 2rem;
  }
  .faq-content .title{
    font-size: 2rem;
  }
  .fifth-content b,
  .fifth-content span {
    font-size: 2rem;
  }
  .sixth-card-text b{
    font-size: 1rem;
  }
  .sixth-card-text span{
    font-size: 1rem;
  }

  .seventh-content b,
  .seventh-content span {
    font-size: 2rem;
  }

  .seventh-section-image-container p{
    font-size: 1rem;
  }
  .tenth-container p,
  .tenth-container b,
  .twelfth-container p, 
  .twelfth-container b,
  .thirteenth-container p, 
  .thirteenth-container b {
    font-size: 1.5rem;
  }
  .tenth-container span,
  .twelfth .title span,
  .thirteenth-container span{
    font-size: 1rem;
  }
  .tenth-container img{
    width: 80%;
  }
}



@media (max-width:880px){
  .floating-text img{
    width: 8rem
  }
  .floating-text p{
    font-size: 1.2rem;
  }
}

/* 📱 모바일 반응형 */
@media (max-width: 768px) {

  .logo img{
    width:90%;
  }
  .btn-login{
    width: 126px;
    padding: 10px 20px;
  }

  /* .nav-menu img {
    width:90%;
    max-width: 100%;
    height: auto;
  } */

  .nav-menu.active {
    display: flex;
  }
  .first{
    min-height: 30vh;
  }

  .first-content {
    margin: 220px auto 40px;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .first-content .btn img {
    max-width: 100%;
    /* 화면 좁을 때 더 줄임 */
  }

  .first-content2{
    top: 0;
    margin-right: -100px;
  }

  .first-title1 {
    font-size: 1rem;
  }

  .first-title2 {
    font-size: 1.4rem;
  }

  .fourth-content {
    flex-direction: column;
  }

  .fourth-content img {
    width: 90%;
    max-width: 320px;
    /* 선택 */
    /* margin-bottom: 1rem; */
  }

  .fifth-content b,
  .fifth-content span {
    font-size: 1rem;
  }

  .fifth-content {
    padding: 7% 20px 0;
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  
  .sixth-card{
    height:500px;
  }

  .sixth-card-text{
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .sixth-card-text b {
    font-size: 0.7rem;
  }

  .sixth-card-text span {
    font-size: 0.7rem;
  }

  .seventh-container{
    word-break: keep-all;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .seventh-container2 {
    flex-direction: column;
  }

  .seventh-containter2 img {
    width: 90%;
    max-width: 320px;
    /* 선택 */
    margin-bottom: 1.5rem;
  }

  .seventh-container2 p {
    margin-top: 1.5rem;
  }

  .seventh-content b,
  .seventh-content span {
    font-size: 1rem;
  }

  .seventh-content {
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .seventh-container p,
  .seventh-container b {
    font-size: 0.6rem;
  }

  .eighth-content b,
  .eighth-content span {
    font-size: 1rem;
  }

  .eighth-content{
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .eighth-content .sub_title p,
  .eighth-content .sub_title b {
    font-size: 0.6rem;
  }

  .eighth-content img {
    max-width: 320px;
}

  .nineth-card-title {
    font-size: 0.7rem;
  }

  .tenth-container {
    gap: 0px;
  }

  .tenth-container,
  .tenth-content {
    flex-direction: column;
    text-align: center;
  }
  .tenth-container .title{
    text-align: center;
  }

  .tenth-container > div {
    width: 100%;
  }

  .tenth-content img {
    /* max-width: 320px; */
    margin-bottom: 1.5rem;
  }

  .tenth-container p,
  .tenth-container b {
    font-size: 1rem;
  }

  .tenth-container span {
    font-size: 0.6rem;
  }

  .eleventh-container {
    flex-direction: column;
  }

  .eleventh-container img {
    width: 100%;
    max-width: 320px;
    margin-bottom: 1.5rem;
  }

  .eleventh p,
  .eleventh b {
    font-size: 1rem;
  }

  .eleventh span {
    font-size: 0.6rem;
  }

  .twelfth-container {
    margin-right: 0;
    flex-direction: column;
    text-align: center;
  }

  .twelfth-container > div {
    width: 100%;
  }

  .twelfth-container .title{
    text-align: center;
  }

  .twelfth-container p,
  .twelfth-container b {
    font-size: 1rem;
  }

  .twelfth-container span {
    font-size: 0.6rem;
  }
  
  .twelfth-container img {
    max-width: 320px;
  }

  .thirteenth-container {
    flex-direction: column;
    text-align: center;
  }

  .thirteenth-container > div {
    width: 100%;
    text-align: center !important;
  }

  .thirteenth-container p,
  .thirteenth-container b {
    font-size: 1rem;
  }

  .thirteenth-container span {
    font-size: 0.6rem;
  }
 
  .thirteenth-content {
    width: 100%;
  }
  .fourteenth-container {
    flex-direction: column;
  }

  .fourteenth-content {
    width: 100%;
  }

  .fourteenth-container img {
    max-width: 320px;
  }

  .fifteenth-container p,
  .fifteenth-container b {
    font-size: 1rem;
    text-align: center;
  }

  .fifteenth-container span {
    text-align: center;
    font-size: 0.6rem;
  }
  .fifteenth-container span b {
    font-size: 0.6rem;
  }

  .fifteenth-container {
    word-break: keep-all;
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }

  .fifteenth-container img {
    width: 90%;
    max-width: 320px;
    /* 선택 */
    margin-bottom: 1.5rem;
  }

  .sixteenth-container,
  .sixteenth-content {
    flex-direction: column;
    width: 100%;
  }

  .seventeenth-left,
  .seventeenth-right {
    width: 100%;
  }

  .sixteenth-container img{
    width: 80%;
    max-width: 320px;
    margin-bottom: 1.5rem;
  }

  .sixteenth-content img {
    width: 100%;
    max-width: 320px;
    margin-bottom: 1.5rem;
  }

  .sixteenth-container p,
  .sixteenth-container b {
    font-size: 1rem;
  }

  .sixteenth-container span {
    font-size: 0.6rem;
  }

  .seventeenth-content {
    flex-direction: column;
    width: 100%;
  }

  .seventeenth-leftImg img,
  .seventeenth-rightImg img {
    width: 100%;
    max-width: 320px;
    /* 선택 */
    margin-bottom: 1.5rem;
  }

  .seventeenth-content p,
  .seventeenth-content b {
    font-size: 1rem;
  }

  .seventeenth-content span {
    font-size: 0.6rem;
  }

  .sixth-slideCard img {
    width: 40%;
    max-width: 800px;
    height: auto;
  }

  .nineth-card {
    width: 320px;
    height: 220px;
  }

  .floating-box{
    height:50px;
    padding: 0 15px;
  }
  .floating-btn{
    width: 10rem;
    height: 2.5rem;
  }
  .floating-btn p{
    font-size: 1rem;
  }
  .section-faq .faq-content{
    margin: 5.5rem 0;
  }

  .faq-card{
    flex: 0 0 35rem;
  }

  .rec-content .title{
    flex-wrap: wrap;
  }

  .video-content .title{
    font-size: 1.5rem;
  }
  
}

@media (max-width: 425px){
  /* .floating-box img {
    height: auto;
    width: 100%;
    position: static;
  } */

  /* .floating-btn {
    width: 40%;
    float: right;
  } */
  .floating-text p{
    display: none;
  }

  .third-content {
    flex-direction: column;
    align-items: center; /* 가운데 정렬 */
  }

  .third-content b {
    margin-top: 8px;
  }
  .faq-card{
    flex: 0 0 20rem;
  }

  .floating-btn {
    width: 8rem;
    height: 2rem;
  }
  .floating-btn p{
    font-size: 0.8rem;
  }
  .floating-btn img{
    width: 20px;
    height: 20px;
  }

  .floating-text img {
    width: 6rem;
  }

  .video-content .title{
    font-size: 1.2rem;
  }
  .rec-content{
    margin: 6rem 0;
  }
  .faq-content .title{
    font-size: 1.5rem;
  }
}


/* animation */
.bounce {
  animation:bounce 2.4s ease-in-out infinite ;
  transition: transform 1s, opacity 1s;
  opacity: 0;
}
@keyframes bounce{
  0% {transform:translateY(0); opacity: 1;}
  25% {transform:translateY(12px); opacity: 1;}
  50% {transform:translateY(0); opacity: 1;}
  75% {transform:translateY(6px); opacity: 1;}
  100% {transform:translateY(0); opacity: 1;}
}

.move-right{transform: translateX(0px);animation: arrow 5s 2.2s infinite;z-index: 10;}

@keyframes arrow {
  0%,20%,40%,60%,80%,100% {transform: translateX(0px);}
  10%,30%,50%,70%,90% {transform: translateX(5px);}
}

.updown {
  animation:movUpDown 0.8s cubic-bezier(.5, 0, 1, 1) forwards ;
  transition: transform 1s, opacity 1s;
  opacity: 0;
}
@keyframes movUpDown{
  0% {transform:translateY(24px);}
  100% {transform:translateY(0); opacity: 1;}
}