
:root {
  /* Font*/
  --font-noto: 'NanumSquareNeo', sans-serif;
  --font-mjo: 'HallymMjo', serif;
  --font-eng: 'DM Serif Text', serif;
}

.font-noto {
  font-family: var(--font-noto);
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.font-mjo {
  font-family: var(--font-mjo);
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

.font-eng {
  font-family: var(--font-eng);
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

/* Common */
body * {
  font-family: 'NanumSquareNeo';
}

.wrapper {
  width: 100%;
  margin: 0 auto;
}

#scrollHeight {
  position: fixed;
  bottom: 0.5vw;
  left: 0.5vw;
  width: 70px;
  height: 70px;
  z-index: 99999;
  text-align: center;
  font-size: 20px;
  padding-top: 10px;
  border-radius: 5px;
  color: pink;
}

#topBtn{
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 9999;
	font-size: 50px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
}

#topBtn{
}

#topBtn span{
	font-size: 14px;
	font-weight: bold;
}

@keyframes floatingAnimation2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.viewMore {
  position: relative;
  margin-top: 1.5rem;
  padding: 1.2rem 1.8rem;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
  &:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 4rem;
    background: white;
    width: 4rem;
    height: 4rem;
    transition: all 0.3s ease;
  }

  span {
    position: relative;
    font-size: 20px;
    color: #A5A498;
  }

  a{
		color: #A5A498;
  }

  svg {
    position: relative;
    top: 0;
    margin-left: 1rem;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke: #A5A498;
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
  }
  &:hover:before {
    width: 100%;
    background: white;
  }
  &:hover svg {
    transform: translateX(0);
  }
  &:active {
    transform: scale(0.95);
  }
}


/* header */
/* mobile-navi */
.trigger{
  display: none;
	font-size: 30px;
}

header .mobile-navi {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  width: 100%;
  display: none;
}

header .mobile-navi .btn-mega-navi-close {
  display: none;
}


header .mobile-navi .mega-navi-item {
  color: #555555;
  line-height: 1.8em;
  flex: 1;
}
header .mobile-navi .mega-navi-item .mega-navi-itemWrap a {
  display: block;
  color: #999999;
}
header .mobile-navi .mega-navi-item .mega-navi-itemWrap a:hover {
  text-decoration: underline;
}



header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
	background-color: rgba(255, 255, 255, 0.8);
}

header .wrapper {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right:
}

header .logo {
  height: 60px;
  flex-shrink: 0; 
}

header .logo a img {
  object-fit: cover;
  height: 100%;
}

header .gnb{
	color: black;
	flex-grow: 1; /* 가능한 공간 차지 */
    display: flex; /* 내비게이션 아이템도 Flexbox로 정렬 */
    justify-content: flex-end; /* 오른쪽 정렬 */
	text-align:left;
	margin-right:120px;
}

header .gnb .gnbDepth1 {
  display: flex;
  gap: 80px;
  align-items: center;
}

header .gnb .gnbDepth1 li{
	position: relative;
}

header .gnb .gnbDepth1 li a {
  display: block;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s linear;
}

header .mega-navi {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
	border-top: 1px solid #ddd;
  display: none;
}


header .mega-navi .mega-navi-inner {
	text-align: left;
  display: flex;
	padding: 10px;
	transform: translateX(-15px);
}

header .mega-navi .mega-navi-inner .mega-navi-item {
  line-height: 3;
}

header .mega-navi .mega-navi-inner .mega-navi-item .mega-navi-itemWrap a {
  display: block;
	color: white;
	font-size: 14px;
	text-align: left;
}

header .mega-navi .mega-navi-inner .mega-navi-item .mega-navi-itemWrap a:hover{
	color: #e6a41a;
}

#mega-nav01{
	margin-left: 0;
}
#mega-nav03{
	margin-left: 90px;
}

#mega-nav04{
	margin-left: 74px;
}

#mega-nav05{
	margin-left: 25px;
}
#mega-nav06{
	margin-left: 17px;
}
#mega-nav07{
	margin-left: 74px;
}
#mega-nav08{
	margin-left: 234px;
}

header .logo {
  position: absolute;
  top:10px;
  left:100px;
  z-index: 999;
}

/* header .logo img {
  position: absolute;
  left: 0;
  top: 0;
  background: transparent;
} */

#checkUp{
	position: relative;
}

#checkUp::before{
	content: '프라임비욘드';
	position: absolute;
	width: 100%;
	top: -0.8rem;
	transform: translateX(-50%);
	text-align: center;
	font-size: 14px;
	color: #4AB7B3;
	animation: checkUpTxt 2s ease-in-out infinite forwards;
}

@keyframes checkUpTxt {
  0% {
    transform: translateY(-55%);
  }
  25% {
    transform: translateY(-45%);
  }
  50% {
    transform: translateY(-60%);
  }
  75% {
    transform: translateY(-45%);
  }
  100% {
    transform: translateY(-55%);
  }
}

/* main - visualWrap */

.section .wrapper {width:86% !important;margin:0 auto !important;}

main .visualWrap {
  position: relative;
  width: 100%;
  height: 2000px;
	overflow-x: hidden;
	background: #000;
}

main .scrollWrap{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 40%;
	text-align: center;
	z-index: 5;
}

main .scrollWrap .scrollDwon{
	position: relative;
	width: 16px;
	height: 25px;
	margin: 0 auto;
	border-radius: 2rem;
	border: 2px solid white;
}

main .scrollWrap .scrollDwon:after{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: -0.03rem;
	margin: auto;
	background-color: white;
	width: 5px;
	height: 5px;
	border-radius: 100%;
	-webkit-animation: trackBallSlide 5s linear infinite;
	animation: trackBallSlide 5s linear infinite;
}

main .scrollWrap i{
	margin-top: 5px;
	color: white;
}

main .scrollWrap span{
	color: white;
	display: inline-block;
	margin-top: 15px;
	animation: floatingAnimation2 3s linear infinite;
}

@keyframes trackBallSlide{
	0% {
			opacity: 1;
			transform: scale(1) translateY(-2px);
	}
	6% {
			opacity: 1;
			transform: scale(0.5) translateY(5px);
	}
	14% {
			opacity: 0;
			transform: scale(0.2) translateY(40px);
	}
	15%, 19% {
			opacity: 0;
			transform: scale(0.2) translateY(-2px);
	}
	28%, 29.99% {
			opacity: 1;
			transform: scale(1) translateY(-2px);
	}
	30% {
			opacity: 1;
			transform: scale(1) translateY(-2px);
	}
	36% {
			opacity: 1;
			transform: scale(0.5) translateY(5px);
	}
	44% {
			opacity: 0;
			transform: scale(0.2) translateY(40px);
	}
	45%, 49% {
			opacity: 0;
			transform: scale(0.2) translateY(-2px);
	}
	58%, 59.99% {
			opacity: 1;
			transform: scale(1) translateY(-2px);
	}
	60% {
			opacity: 1;
			transform: scale(1) translateY(-2px);
	}
	66% {
			opacity: 1;
			transform: scale(0.5) translateY(5px);
	}
	74% {
			opacity: 0;
			transform: scale(0.2) translateY(40px);
	}
	75%, 79% {
			opacity: 0;
			transform: scale(0.2) translateY(-2px);
	}
	88%, 100% {
			opacity: 1;
			transform: scale(1) translateY(-2px);
	}
}

main .visualWrap .fixdeBg {
  background: url("../img/woman-3299379.jpg") center / cover no-repeat;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
}

main em {
  font-family: 'HallymMjo', serif;
  color: #e6a41a;
}

main .text {
  color: white;
}

main .text span {
  display: block;
}

main #leftTopText {
  position: absolute;
  left: 7.7rem;
  top: 17rem;
  line-height: 1.5;
}

main .font-eng {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 1px;
}


main #leftTopText .font-mjo {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -2px;
}

main #rightTitleText {
  position: absolute;
  right: 8rem;
  top: 43rem;
	line-height: 1.2;
	text-align: right;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

main #rightTitleText .font-eng{
	font-size: 85px;
}

main #rightDesTitle {
  position: absolute;
  right: 8rem;
  top: 57.2rem;
	line-height: 1.5;
	font-size: 24px;
	text-align: right;
	font-weight: 600;
	text-shadow: 2px 2px 2px gray;

}

main #centerText{
	position: absolute;
	text-align: center;
	top: 66rem;
	left: 0;
	font-size: 80px;
	width: 100%;
	color: rgba(255, 255,255, 0.5);
}

main #centerText em{
	font-size: 120px;
	color: rgba(74, 183, 179, 0.5);
}


/* firstWrap*/
.firstWrap {
  width: 100%;
	overflow-x: hidden;
	position: relative;
	margin-bottom: 5rem;
}

.firstWrap .bgImg{
	height: 1500px;
	background-attachment: fixed;
	background: url("../img/nasa.png") center / contain no-repeat;
	overflow-x: hidden;
	animation: floatingAnimation 5s ease-in-out infinite;
	margin-top: 3rem;
}

@keyframes floatingAnimation {
  0%, 100% {
    transform: translateY(0) skew(1deg);
  }
  50% {
    transform: translateY(-30px) skew(0deg);
  }
}

.bgTextWrap{
	overflow: hidden;
	margin-top: 2rem;
}

.bgTextAni{
  width: 99999px;
  transform: translateX(0px);
  animation: 30s linear 0s infinite normal none running marqueeAni;
}

@keyframes marqueeAni{
	100%{
		transform: translateX(-3000px);
	}
}

.marquee{
	font-family: var(--font-eng);
	font-size: 100px;
	color: #D4CDD5;
	font-weight: 700;
	white-space: nowrap;
	line-height: 1.5;
	margin-right: 30px;
	float: left;
}

.marquee2{
	color: #ebeae0;
}

.scrollingText{
	font-size: 40px;
	position: absolute;
	top: 0;
	left: 0;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.scrollingText p, .scrollingText04 p{
	color: white;
	font-family: var(--font-mjo);
	text-align: center;
	line-height: 1.6;
}

.scrollingText01{
	top: 30rem;
	left: 12rem;
}

.scrollingText02{
	top: 47rem;
	left: 41rem;
}

.scrollingText03{
	top: 64rem;
	left: 70rem;
}

.scrollingText04{
	position: absolute;
	top: 88rem;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 80px;
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}


.scrollingText04 span{
	display: inline-block;
	font-size: 28px;
	font-family: var(--font-mjo);
	transform: translateY(20px);
	color: #e6a41a;
}

.aboutWellaging{
	margin-top: 21rem;
}

.flexCon{
	display: flex;
	gap: 100px;
	align-items: center;
	margin: 7rem auto;
}

.wellagingConImg{
	width: 40%;
	border-radius: 20px;
	overflow: hidden;
}

.wellagingConImg img{
	width: 100%;
	object-fit: cover;
}

.wellagingConTxt{
	width: 50%;
	line-height: 1.6;
}

.flexCon .wellagingConTxt h6{
	font-size: 40px;
	font-weight: bold;
	margin-bottom: 10px;
}

.numTitle{
	font-size: 36px;
}

.wellagingConTxt .num{
	display: inline-block;
	font-size: 60px;
	font-weight: bold;
}


.wellagingConTxt p{
	font-size: 20px;
}

.flexCon:nth-child(even) .wellagingConImg {
  order: 2;
}

.flexCon:nth-child(even){
	text-align: right;
}


/* secondWrap */
.secondWrap{
  width: 100%;
	overflow-x: hidden;
	background-color: #ebeae0;
}

.secondWrap .wrapper{
	position: relative;
	margin: 10rem auto;
}

#circleTxt{
	position: absolute;
	left: 55rem;
	top: -7rem;
	animation: rotateAni 22s linear infinite;
}

@keyframes rotateAni{
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.secondWrap .wrapper .flexCon{
	display: flex;
}

.secondWrap .wrapper .flexCon .flexLeft{
	width: 50%;
	text-align: center;
}

.secondWrap .wrapper .flexCon .flexLeft h5{
	font-size: 55px;
	font-family: var(--font-mjo);
	color: #A5A498;
	margin-bottom: 50px;
	font-weight: bold;
}

.secondWrap .wrapper .flexCon .flexLeft h5 span{
	font-size: 35px;
	font-family: var(--font-mjo);
}

.secondWrap .wrapper .flexCon .flexLeft p{
	line-height: 2;
	color: #A5A498;
	font-size: 20px;
}

.secondWrap .wrapper .flexCon .flexRight img{
	width: 100%;
}

.secondWrap .wrapper .flexCon .flexRight{
	width: 50%;
}

/* thirdWrap */

.thirdWrap{
  width: 100%;
	overflow-x: hidden;
}

.thirdWrap .wrapper{
	overflow-y: hidden;
}

#demos{
	display: flex;
	height: 85vh;
	margin-top: 2.5rem;
}

#demos .owl-theme{
	width: 85%;
}

#demos .owl-theme h4{
	text-align: center;
	font-size: 100px;
}

#demos .owl-carousle-btn{
	width: 15%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-around;
	position: relative;
}

#demos .owl-carousle-btn:after{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 1px;
  background-color: #333;
}


#demos .owl-carousle-btn .buttonWrap{
	margin-left: 50px;	
	position: relative;
}

#demos .owl-carousle-btn .buttonWrap:after{
  content: '';
  position: absolute;
  bottom: -55px;
  left: -30px;
  width: 230px;
	height: 1px;
  background-color: #333;
}

#demos .owl-carousle-btn a{
	font-size: 24px;
	font-weight: bold;
	display: inline-block;
	text-align: left;
}

#demos a.active-button{
	color: red;
}

#owl-0{
	width: 100%;
	position: relative;
}

#owl-0 video{
	width: 100%;
}

#owl-0 .textTitle{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 99;
	text-align: center;
	line-height: 1.6;
	background-color: rgba(255,255,255,0.5);
	padding: 70px;
	border-radius: 20px;
}

#owl-0 .textTitle span{
	color: #e6a41a;
	font-weight: bold;
}

#owl-0 .textTitle h3{
	font-size: 50px;
	font-weight: bold;
	margin-bottom: 30px;
}

#owl-0 .textTitle p{
	font-size: 20px;
}
#demos .owl-theme .item{
	height: 800px;
	display: flex;
	gap: 50px;
}

#demos .owl-theme .item .slideLeft{
	width: 45%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

#demos .owl-theme .item .slideLeft .numDeco{
	font-size: 55px;
	font-weight: bold;
	position: relative;
	align-self: flex-end;
	margin-right: 20px;
}

#demos .owl-theme .item .slideLeft .numDeco:after{
	background: black;
	width: 300%;
	height: 1px;
	content: '';
	position: absolute;
	bottom: -10px;
	right: 0;
	display: block;
}

#demos .owl-theme .item .slideLeft .textCon{
	line-height: 1.6;
}


#demos .owl-theme .item .slideLeft .textCon span{
	letter-spacing: 0.7px;
	color: crimson;
	transform: translatey(5px);
	display: inline-block;
}

#demos .owl-theme .item .slideLeft .textCon h2{
	font-size: 40px;
	margin-bottom: 30px;
	font-weight: bold;
}

#demos .owl-theme .item .slideLeft .textCon p{
	font-size: 18px;
}

#demos .owl-theme .item .slideLeft .textCon p b{
	font-weight: bold;
	font-size: 24px;
}


#demos .owl-theme .item .slideRight{
	width: 55%;
	background-image: url(../img/woman-2197947.jpg);
	background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


#demos .owl-theme .item#owl-1 .slideRight{
	background-image: url(../img/background-316552_1920.jpg);
}

#demos .owl-theme .item#owl-2 .slideRight{
	background-image: url(../img/eecp1-1024x581.png);
	background-size: contain;
}

#demos .owl-theme .item#owl-4 .slideRight{
	background-image: url(../img/KakaoTalk_20240102_091023152_08.jpg);
}

#demos .owl-theme .item#owl-5 .slideRight{
	background-image: url(../img/woman-6174830_1920.jpg);
}

#demos .owl-theme .item#owl-6 .slideRight{
	background-image: url(../img/woman-6174830_1920.jpg);
}

#owl-2 .slideLeft,
#owl-4 .slideLeft{	
	order: 2;
}

#owl-2 .slideRight,
#owl-4 .slideRight{
	order: 1;
}

#demos .owl-theme .item#owl-2 .slideLeft .numDeco,
#demos .owl-theme .item#owl-4 .slideLeft .numDeco{
	align-self: flex-start;
	margin-right: 0;
}

#demos .owl-theme .item#owl-2 .slideLeft .numDeco:after,
#demos .owl-theme .item#owl-4 .slideLeft .numDeco:after{
	bottom: -10px;
	right: -10rem;
}

#demos .owl-theme .item#owl-2 .slideLeft .textCon p,
#demos .owl-theme .item#owl-4 .slideLeft .textCon p{
	font-size: 20px;
	width: 85%;
}

#demos .owl-theme .item#owl-3 .slideLeft .textCon{

}

#demos .owl-theme .item#owl-3 .slideLeft .textCon > div{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	text-align: center;
}

#demos .owl-theme .item#owl-5 .slideLeft .textCon > div{
	flex-direction: column;
}

#demos .owl-theme .item#owl-5 .slideLeft .textCon > div p{
	width: 100%;
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 10px;
	font-size: 20px;
	margin-bottom: 15px;
}

#demos .owl-theme .item#owl-5 .slideLeft .textCon > div p i{
	margin-right: 5px;
}

#demos .owl-theme .item#owl-6 .slideLeft .textCon > div{
	flex-direction: column;
}

#demos .owl-theme .item#owl-6 .slideLeft .textCon > div p{
	width: 100%;
	border: 1px solid #ddd;
	padding: 10px;
	border-radius: 10px;
	font-size: 20px;
	margin-bottom: 15px;
}

#demos .owl-theme .item#owl-6 .slideLeft .textCon > div p i{
	margin-right: 5px;
}


#demos .owl-theme .item#owl-3 .slideLeft .textCon > div p{
	width: 40%;
	border: 1px solid #ddd;
	padding: 20px;
	border-radius: 10px;
	font-size: 16px;
}

#demos .owl-theme .item#owl-3 .slideLeft .textCon > div p i,
#demos .owl-theme .item#owl-5 .slideLeft .textCon > div p i{
	color: rgba(74, 183, 179, 0.5);
}

#demos .owl-theme .item#owl-6 .slideLeft .textCon > div p i{
	color: rgba(74, 183, 179, 0.5);
}

#demos .owl-theme .item#owl-3 .slideLeft .textCon > div p em{
	font-size: 24px;
	color: black;
	margin-bottom: 10px;
	display: inline-block;
}

.fa-droplet{
	transform: translate(-2px, -2px);
}


#section6{
  width: 100%;
	overflow: hidden;
}


#section6 .flexContent{
	width: 100%;
	display: flex;
	height: 90vh;
	margin-top: 7rem;
	border-top: 1px solid #ddd;
	text-align: center;
	position: relative;
}

#section6 .flexContent:after{
	content: '';
	position: absolute;
	left: 50%;
	top: 0;
	width: 1px;
	height: 100%;
	background: #ddd;
}

#section6 .flexContent h4{
	font-size: 38px;
	margin: 20px auto;
}

#section6 .flexContent b{
	font-weight: bold;
}

#section6 .flexContent p{
	font-size: 18px;
	line-height: 1.6;
}

#section6 .flexContent .flexLeft{
	width: 50%;
	line-height: 2.3;
}

#section6 .flexContent .flexLeft p{
	line-height: 2.3;
}

#section6 .flexContent .flexLeft p span{
	background: #F77636;
	padding: 10px;
	border-radius: 50px;
	color: white;
	margin-right: 10px;
}

#section6 .flexContent .flexRight{
	background: url("../img/london-3833039_1920.jpg") center / cover no-repeat;
	width: 50%;
	color: white;
}

#section6 .flexContent .flexRight h4{
	line-height: 2.3;
}

#section6 .flexContent .flexRight a{
	color: white;
	font-size: 18px;
	text-decoration: underline;
}

#section6 .flexContent .flexRight label{
	margin: 15px auto;
}

#section6 .flexContent .flexRight .inputWrap{
	width: 50%;
	display: flex;
	flex-direction: column;
	margin: 50px auto;
}

#section6 .flexContent .flexRight .inputWrap input{
	padding: 20px;
	margin-bottom: 20px;
}

#section6 .flexContent .flexRight .inputWrap input#agreeY{
	padding: 0;
	margin-bottom: 0;
}


input:focus {
  outline: none; /* 포커스 시 기본 아웃라인 제거 */
  border-color: #3498db; /* 포커스 시 테두리 색상 변경 */
  box-shadow: 0 0 5px #3498db; /* 포커스 시 그림자 효과 추가 */
}

button{
	appearance: none;
	-webkit-appearance: none;
	border: none;
}

.btnStyle{
	background: rgba(74, 183, 179, 1);
	padding: 10px;
	color: white;
	cursor: pointer;
	margin-top: 30px;
}

/* footer */
footer{
	background: black;
	line-height: 1.6;
}

footer .flexContent{
	display: flex;
	color: white;
	align-items: center;
	padding: 30px 0px;
}

footer .flexContent .flexLeft{
	width: 70%;
}

footer .flexContent .flexRight{
	text-align: right;
	width: 30%;
}

footer .flexContent .flexRight a{
	color: white;
}

footer .flexRightBottom{
	margin-top: 20px;
}

footer .flexRightBottom a{
	width: 80px;
	display: inline-block;
}

footer .flexRightBottom a img{
	width: 100%;
}

.footLogo{
	width: 150px;
}
.footLogo img{
	width: 100%;
}
.mSub {font-size:13px;display:box;padding:5px 0;text-align:center;}


/* responsive */

@media (max-width: 900px) {
	.wrapper{
		width: 100%;	
	}

	#topBtn{
		display: none;
	}

	.trigger{
		display: block;
	}

 header .mobile-navi {
    display: block;
		z-index: 9999;
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: white;
		text-align: center;
    background-image: url("../img/circleTxt.png");
    background-position: 10rem 40rem;
    background-size: 9rem;
    background-repeat: no-repeat;
  }

  header .mobile-navi .mobile-navi-inner {
    width: 100%;
    margin-top: 6rem;
		padding: 0 20px;
  }

  header .mobile-navi .mobile-navi-item {
    border-bottom: 1px solid #eeeeee;
    padding: 10px 0px;
		margin-bottom: 10px;
		padding-bottom: 10px;
		font-size: 20px;
	}

	header .mobile-navi .mobile-navi-item > a{
		margin-bottom: 10px;
		display: inline-block;
		font-weight: bold;
	}

  header .mobile-navi .mobile-navi-item:last-of-type {
    border-bottom: none;
		margin-bottom: 0;
		padding-bottom: 0;
  }

  header .mobile-navi .btn-mega-navi-close {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    border: none;
    background-color: transparent;
    font-size: 40px;
  }

	.mobile-navi-itemWrap a{
		font-size: 15px;
		display: block;
		line-height: 1.6;
	}


	header .wrapper{
		padding: 0 20px;
		height: 70px;
	}

	header .logo{
		height: 50px;
	}

	header .gnb .gnbDepth1{
		display: none;
	}

	/* visualWrap */
	main .visualWrap {
		height: 100vh;
	}

	main .visualWrap .fixdeBg {
		background-attachment: scroll;
	}

	main .scrollWrap{
		top: 65%;
	}

	main .scrollWrap span{
		font-size: 14px;
	}


	main #leftTopText{
		left: 1.7rem;
    top: 6rem;
	}

	main .font-eng{
		font-size: 16px;
	}

	main #leftTopText .font-mjo{
		font-size: 25px;
	}

	main #rightTitleText{
		right: 1rem;
		top: 41rem;
	}

	main #rightTitleText .font-eng{
		font-size: 37px;
	}

	main #rightDesTitle{
		font-size: 14px;
		top:47rem;
		right: 1rem;
	}

	main #centerText{
		display: none;
	}

	.bgTextWrap{
		margin-top: 0rem;
	}

	.marquee{
		font-size: 40px;
	}

	.firstWrap{
		background: black;
		margin-bottom: 0;
		overflow-x: clip;
	}

	.firstWrap .bgImg{
		height:400px;
		margin-top: 0rem;
		background-size: 80%;
	}

	.scrollingText{
		font-size: 18px;
	}

	.scrollingText01{
		left: 1.5rem;
		top: 29rem;
	}

	.scrollingText02{
		top: 34rem;
		left: 5.5rem;
	}

	.scrollingText03{
		top: 39rem;
		left: 7rem;
	}

	.scrollingText03 p{
		text-align: right;
	}

	.scrollingText04{
		font-size: 30px;
		top: 48rem;
		margin-top: 1rem;
	}

	.scrollingText04 span{
		font-size: 14px;
	}

	.scrollingText04 p{
		margin-top: 0.7rem;
	}

	.aboutWellaging{
		background: white;
		margin-top: 25rem;
	}

	.flexCon{
		flex-direction: column;
		gap: 30px;
		margin: 3rem auto;
	}

	.wellagingConImg{
		width: 90%;
		margin-top: 3rem;
	}

	.wellagingConTxt{
		width: 80%;
	}

	.flexCon .wellagingConTxt h6{
		font-size: 20px;
	}

	.numTitle{
		font-size: 20px;
	}

	.wellagingConTxt .num{
		font-size: 25px;
	}

	.wellagingConTxt p{
		font-size: 16px;
	}

	.flexCon:nth-child(even){
		text-align: left;
	}

	.flexCon:nth-child(even) .wellagingConImg {
		order: 0;
	}

	/* secondWrap */
	.secondWrap .wrapper{
		position: relative;
		margin: 5rem auto;
	}

	#circleTxt{
		left:0.5rem;
		top: -3rem;
		width: 140px;
	}

	#circleTxt img{
		width: 100%;
		object-fit: cover;
	}

	.secondWrap .wrapper .flexCon .flexRight{
		width: 90%;
		order: 0;
	}

	.secondWrap .wrapper .flexCon .flexLeft{
		order: 1;
		width: 90%;
	}
	
	.secondWrap .wrapper .flexCon .flexLeft h5{
		font-size: 28px;
	}

	.secondWrap .wrapper .flexCon .flexLeft h5 span{
		font-size: 20px;
	}

	.secondWrap .wrapper .flexCon .flexLeft p{
		font-size: 16px;
	}

	.viewMore span{
		font-size: 16px;
	}

	.viewMore {
		padding: 0.7rem 1.1rem;
		&:before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			display: block;
			border-radius: 4rem;
			background: white;
			width: 2.5rem;
			height: 2.5rem;
			transition: all 0.3s ease;
			}
		}

		#demos{
			flex-direction: column;
			height: auto;
		}

		#demos .owl-theme{
			width: 100%;
			order: 2;
		}

		#demos .owl-carousle-btn{
			width: 100%;
			order: 1;
			flex-direction: row;
			flex-wrap: wrap;
			gap: 20px;
			margin-bottom: 2rem;
		}

		#demos .owl-carousle-btn .buttonWrap{
			margin-left: 0;
			width: 44%;
			text-align: center;
		}

		#demos .owl-carousle-btn a{
			font-size: 18px;
			text-align: center;
		}

		#demos .owl-carousle-btn:after,
		#demos .owl-carousle-btn .buttonWrap:after {
			width: 0;
		}

		#demos .owl-theme .item{
			width: 100%;
			flex-direction: column;
			flex-wrap: nowrap;
			gap: 10px;
		}

		.owl-carousel.owl-drag .owl-item{
			height: 100%;
			box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05);
		}

		#owl-0 .textTitle{
			padding: 10px;
		}

		#owl-0 .textTitle h3{
			font-size: 28px;
		}

		#owl-0 .textTitle p{
			font-size: 16px;
		}


		#demos .owl-theme .item .slideLeft{
			width: 100%;
			order: 2;
			text-align: center;
		}

		#demos .owl-theme .item .slideRight{
			width: 100%;
			height: 40%;
			order: 1;
		}

		#demos .owl-theme .item .slideLeft .numDeco{
			display: none;
		}

		#demos .owl-theme .item .slideLeft .numDeco:after{
			display: none;
		}

		#demos .owl-theme .item .slideLeft .textCon span{
			font-size: 14px;
		}

		#demos .owl-theme .item .slideLeft .textCon h2{
			font-size: 28px;
		}

		#demos .owl-theme .item .slideLeft .textCon p{
			font-size: 16px;
		}

		#demos .owl-theme .item .slideLeft .textCon p b{
			font-size: 18px;
		}

		#demos .owl-theme .item .slideLeft .textCon{
			margin-top: 1rem;
		}

		#demos .owl-theme .item#owl-2 .slideLeft .textCon p, #demos .owl-theme .item#owl-4 .slideLeft .textCon p{
			margin: 0 auto;
			font-size: 16px;
		}

		#demos .owl-theme .item#owl-3 .slideLeft .textCon{
			width: 100%;
			margin: 0 auto;
		}

		#demos .owl-theme .item#owl-3 .slideLeft .textCon > div p{
			width: 43%
		}

		#demos .owl-theme .item#owl-3 .slideLeft .textCon > div{
			justify-content: space-evenly;
		}

		#demos .owl-theme .item#owl-3 .slideLeft .textCon > div p em{
			font-size: 18px;
		}

		#demos .owl-theme .item#owl-5 .slideLeft .textCon > div p{
			font-size: 16px;
		}

		#demos .owl-theme .item#owl-5 .slideLeft .textCon > div{
			padding: 0 10px;
		}

		#demos .owl-theme .item#owl-6 .slideLeft .textCon > div p{
			font-size: 16px;
		}

		#demos .owl-theme .item#owl-6 .slideLeft .textCon > div{
			padding: 0 10px;
		}

		#section6 .flexContent{
			margin-top: 5rem;
			flex-direction: column;
			height: auto;
		}

		#section6 .flexContent .flexLeft{
			width: 100%;
		}

		#section6 .flexContent .flexRight{
			width: 100%;
			margin-top: 1rem;
		}

		#section6 .flexContent:after{
			display: none;
		}

		#section6 .flexContent h4{
			font-size: 28px;
		}

		#section6 .flexContent p{
			font-size: 15px;
		}

		#section6 .flexContent .flexRight .inputWrap{
			width: 70%;
		}

		footer .flexContent{
			flex-direction: column;
			padding: 20px;
		}

		footer .flexContent .flexLeft{
			width: 100%;
			text-align: center;
			margin-bottom: 1rem;
		}

		footer .flexContent .flexRight{
			width: 100%;
			text-align: center;
		}

		footer .flexRightBottom{
			margin-top: 0.5rem;
		}

		footer .flexRightBottom a{
			width: 50px;
		}

		footer .flexContent .flexLeft p{
			font-size: 13px;
		}

		.flexRightTop a{
			font-size: 13px;
		}

		.footLogo{
			width: 100px;
			position: relative;
			left: 50%;
			transform: translateX(-50%);
		}

}

@media (min-width: 1921px){
	header .mega-navi .mega-navi-inner{
		margin-right: 0;
	}

}


	.mission {font-size:20px;font-weight:bold;}
	.mission_content{font-size:17px;}
	.under5{width:100%;height:20px;background:#f4efeb}
	.t5 {
		font-size:140px !important;
		font-weight:bold !important;
		color : #f3f0eb;
		font-family: "Black Han Sans", sans-serif;
	}
	.t5a{font-size:50px !important;color : #5b5b5b !important;
		font-weight:bold !important;
		margin-top:-30px !important;
	}
	.tx{margin-top:-30px !important;}



	.animated-underline {
	  display: inline-block;
	  position: relative;
	}

	.animated-underline::after {
	  content: '';
	  position: absolute;
	  width: 100%;
	  height: 2px;
	  background-color: #FF5733; /* 원하는 색상으로 변경 */
	  bottom: 0;
	  left: 0;
	  transform: scaleX(0);
	  transform-origin: bottom right;
	  animation: underline-animation 2s ease-out infinite;
	}

	@keyframes underline-animation {
	  0% {
		transform: scaleX(0);
		transform-origin: bottom right;
	  }
	  50% {
		transform: scaleX(1);
		transform-origin: bottom left;
	  }
	  100% {
		transform: scaleX(0);
		transform-origin: bottom left;
	  }
	}

.smallText b{font-weight:bold;color:tomato;}
.highlighter {background: linear-gradient(#ffea00 0 100%); background-position: 0 calc(100% - 2px); background-size: 100% 14px; background-repeat: no-repeat;}
.boxShadow {box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;max-width:400px;font-size:13px;float:left;margin:10px;min-height:270px;min-width:350px;}
.boxShadowa{width:480px !important;max-width:100% !important;min-height:180px !important;}
.boxShadowb{width:350px !important;min-height:180px !important;padding:30px;margin:0 auto;float:left;}
.boxShadowc{width:480px !important;min-height:380px !important;padding:30px;float:left;}
.boxShadow .t{font-weight:bold;color:tomato;font-size:19px;float:left;padding:10px;}
.boxShadow .v{padding:3px;background:tomato;color:#fff;}
.boxShadow .ti{clear:both;text-align:left;padding:15px;line-height:20px;}
.number {
    position: relative;
    background-color: #ff4757;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 5px 11px;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.ceterSection{width:1500px;margin:0 auto;}

.status-circle {
	width: 20px;
	height: 20px;
	padding:2px;
	background-color: #ff6f61;
	color: white;
	font-size: 10px;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

/*눈에 띄는 안내*/
/* 공통 스타일 */
.infoLight {
  font-weight: bold; /* 굵은 텍스트 */
  font-size: 15px !important; /* 조금 더 큰 텍스트 */
  color: white !important; /* 글자색 */
  background-color: #ff5722; /* 강조를 위한 배경색 */
  padding: 20px !important; /* 텍스트 주위 여백 */
  border-radius: 8px; /* 둥근 모서리 */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* 그림자 효과 */
}

/* 애니메이션 효과 */
.infoLight {
  animation: pulse 1.5s infinite; /* 1.5초 간격으로 무한 반복 */
}
