/* main css */
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}


.floating {
	position: fixed;
	bottom: 50px;
	right: 110px;
	z-index: 999;
	transform: scale(0.8) rotate(-35deg);
	opacity: 0;
	animation: floating ease-in-out .8s 3s forwards;
}
.floating > img {
	transition: .3s;
}
@keyframes floating {
	0% {
		transform: scale(0.8) rotate(-35deg);
		opacity: 0;
	}
	40% {
		transform: scale(1.1) rotate(20deg);
		opacity: 1;
	}
	70% {
		transform: scale(1) rotate(-5deg);
		opacity: 1;
	}
	100% {
		transform: scale(1) rotate(0);
		opacity: 1;
	}
}


.swiper-container {
	overflow: hidden;
	/*height:calc(100vh - 100px);*/
}
.section_01 .swiper-container {
	position: relative;
	width: 100vw;
	height: 100vh;
}

.swiper-slide {
	position: relative;
	overflow: hidden;
	/*height: calc(var(--vh));*/
	min-height: 720px;
}

.swiper-slide .bg_wrap {
	position: relative;
	width: 100vw;
	/*height:calc(100vh - 100px);*/
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 3;
}
.swiper-slide .bg {
	position: relative;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.swiper_main_slider .swiper-slide.swiper-slide-active .bg {
	animation: zoomOut 4.8s .2s ease both;
}

@keyframes zoomOut {
	from {
		transform:scale3d(1.08, 1.08, 1.08);
	}

	to {
		transform:scale3d(1, 1, 1);
	}
}

.swiper_main_slider .swiper-slide.first .bg {
	background-image:url('../img/main/main_slider01_bg.jpg?new');
	background-size:cover;
	background-position: top;
}

.swiper_main_slider .swiper-slide.second .bg {
	background-image:url('../img/main/main_slider02_bg.jpg?new');
	background-size:cover;
	background-position: center -50px;
}
.main_text01 {
	position: absolute;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 15px;
	top: calc(50% - 150px);
	left: calc(50% - 155px);
	transform: translate(-50%, -50%);
	z-index: 10;
}
.swiper_main_slider .swiper-slide.first.swiper-slide-active .main_text01_01 {
	width: 534px;
	height: 69px;
	clip-path: inset(0 100% 0 0);
	animation: reveal 1.1s .5s ease-out forwards;
}
@keyframes reveal {
	to {
		clip-path: inset(0 0 0 0);
	}
}
.main_text01_02 {
	position: absolute;
	top: -25px;
	right: -40px;
	opacity: 0;
	transform: scale(0.7);
}
.swiper_main_slider .swiper-slide.first.swiper-slide-active .main_text01_02 {
	animation: main_text01_02 ease-in-out .5s 1.5s forwards;
}
@keyframes main_text01_02 {
	0% {
		opacity: 0;
		transform: scale(0.7);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.main_text01_03 {
	padding-right: 10px;
	opacity: 0;
	transform: translateY(40px);
}
.swiper_main_slider .swiper-slide.first.swiper-slide-active .main_text01_03 {
	animation: main_text01_03 ease-in-out .8s 2.2s forwards;
}
@keyframes main_text01_03 {
	from {
		transform: translateY(40px);
		opacity: 0;
	}
	to {
		transform: translateY(0px);
		opacity: 1;
	}
}

.main_text02 {
	position: absolute;
	top: calc(50% - 280px);
	left: calc(50% + 250px);
	transform: translate(-50%, -50%) scale(1.4);
	z-index: 10;
	opacity: 0;
}
.swiper_main_slider .swiper-slide.second.swiper-slide-active .main_text02 {
	animation: main_text02 ease-in-out 1s 1s forwards;
}
@keyframes main_text02 {
	from {
		transform: translate(-50%, -50%) scale(1.4);
		opacity: 0;
	}
	to {
		transform: translate(-50%, -50%) scale(1);
		opacity: 1;
	}
}


.section_01 .swiper-pagination {
	left: unset !important;
	right: 600px;
	width: 15px;
	top: 35%;
	flex-direction:column;
	justify-content:center;
	transform:translateY(-50%);
	height: auto;
	display: none !important;
}

.section_01 .swiper-pagination-bullet {
	display: block;
	opacity: 1 !important;
	width: 35px !important;
	height: 35px !important;
	border: 1px solid rgba(42, 61, 73, 0.56);
	background-color: rgba(255, 255, 255, 0) !important;
	position: relative;
	transition: .3s;
}
.section_01 .swiper-pagination-bullet:nth-child(1) {
	margin-bottom: 42px;
}

.section_01 .swiper-pagination-bullet::before {
	position: absolute;
	display: inline-block;
	font-size: 12px;
	color: #2a3d49;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: .3s;
}
.section_01 .swiper-pagination-bullet::after {
	content: '';
	position: absolute;
	display: inline-block;
	background-color: rgba(42, 61, 73, 0.32);
	width: 1px;
	height: 22px;
	left: 50%;
	transform: translateX(-50%);
	transition: .3s;
}
.section_01 .swiper-pagination-bullet:nth-child(1)::before {
	content: '01';
}
.section_01 .swiper-pagination-bullet:nth-child(2)::before {
	content: '02';
}
.section_01 .swiper-pagination-bullet:nth-child(1)::after {
	bottom: -22px;
}
.section_01 .swiper-pagination-bullet:nth-child(2)::after {
	top: -22px;
}
.section_01 .swiper-pagination-bullet:hover, .section_01 .swiper-pagination-bullet-active {
	opacity: 1 !important;
	border: 1px solid rgb(42, 61, 73) !important;
	background-color: rgb(42, 61, 73) !important;
}
.section_01 .swiper-pagination-bullet:hover::before, .section_01 .swiper-pagination-bullet-active::before {
	color: #fff !important;
}
.section_01 .swiper-pagination-bullet:hover::after, .section_01 .swiper-pagination-bullet-active::after {
	background-color: rgb(42, 61, 73) !important;
}
#fp-nav ul li a.active span, #fp-nav ul li:hover a.active span, .fp-slidesNav ul li a.active span, .fp-slidesNav ul li:hover a.active span {
	color: rgba(255, 255, 255, 0) !important;
}
#fp-nav {
	display: none !important;
	right: unset !important;
	left: 50px !important;
	top: calc(50% + 80px) !important;
}
#fp-nav ul li {
	margin: 15px 0 !important;
}
#fp-nav ul li a span, .fp-slidesNav ul li a span {
	background-color: rgba(255, 255, 255, 0) !important;
}
#fp-nav ul li a:last-child {
	display: none !important;
}
#fp-nav ul li:nth-child(1) a {
	background-image: url("../img/main/main_pagenation01.png");
	width: 37px;
	height: 12px;
}
#fp-nav ul li:nth-child(1) a.active {
	background-image: url("../img/main/main_pagenation01_on.png");
	width: 63px;
	height: 13px;
}
#fp-nav ul li:nth-child(2) a {
	background-image: url("../img/main/main_pagenation02.png");
	width: 85px;
	height: 12px;
}
#fp-nav ul li:nth-child(2) a.active {
	background-image: url("../img/main/main_pagenation02_on.png");
	width: 113px;
	height: 13px;
}
#fp-nav ul li a:hover, .fp-slidesNav ul li a:hover {
	color: rgba(0, 0, 0, 0) !important;
}


.main_section01_slide01_icon, .main_section01_slide02_icon {
	position:absolute;
	z-index: 100;
	opacity: 0;
}
.main_section01_slide01_icon {
	bottom: -50px;
	left: -50px;
	transform: translateX(-50px);
}
.main_section01_slide01_icon.on {
	animation: main_section01_slide01_icon ease-in-out .7s .1s forwards;
}
@keyframes main_section01_slide01_icon {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0px);
	}
}
.main_section01_slide02_icon {
	bottom: -10px;
	left: 0px;
	transform: translateX(50px);
}
.main_section01_slide02_icon.on {
	animation: main_section01_slide02_icon ease-in-out .7s .1s forwards;
}
@keyframes main_section01_slide02_icon {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0px);
	}
}


@keyframes fadeInUp {
	from {
		margin-top: 60px;
		opacity: 0;
		visibility:hidden;
	}

	to {
		margin-top: 0;
		opacity: 1;
		visibility:visible;
	}
}

@keyframes fadeInLeftA {
	from {
		margin-left: -30px;
		opacity: 0;
		visibility:hidden;
	}

	to {
		margin-top: 0;
		opacity: 1;
		visibility:visible;
	}
}

.swiper_main_slider .second.swiper-slide-active .text__box {
	animation: s1__slider02__t__ani 1.2s 1s ease-in-out both;
}

@keyframes s1__slider02__t__ani {
	from {
		clip:rect(0,0,214px,0);
		opacity: 0;
		visibility:hidden;
	}

	to {
		clip:rect(0,900px,214px,0);
		opacity: 1;
		visibility:visible;
	}
}

.section_02 {
	min-height: 720px;
	width: 100vw;
	height: 100vh;
}
.sec02 {
	display: flex;
	width: 100%;
	height: 100%;
}
.sec02_01 {
	width: 41vw;
	height: 100vh;
	background-color: #00a6af;
	display: flex;
	justify-content: center;
	align-items: center;
}
.sec02_02 {
	width: 59vw;
	height: 100vh;
	background-image: url("../img/main/sec02_bg.jpg");
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}
.sec02_item01 {
	opacity: 0;
	transform: translateX(40px);
}
.section_02.active .sec02_item01 {
	animation: sec02_item01 ease-in-out .8s .3s forwards;
}
@keyframes sec02_item01 {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0px);
	}
}
.sec02_item02 {
	opacity: 0;
	transform: translateX(-40px);
}
.section_02.active .sec02_item02 {
	animation: sec02_item02 ease-in-out .8s .3s forwards;
}
@keyframes sec02_item02 {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0px);
	}
}



















.section_03 .row {
	position:relative;
	height: calc(var(--vh));
	min-height: 960px;
	padding: 0;
	min-width: 1600px;
}

.section_03 .bg {
	position:absolute;
	background-image: url('../img/main/sec03_bg.jpg?new');
	background-position: 100% center;
	background-size: cover;
	width: 100%;
	height: 100%;
	right: 0;
	bottom: 0;
	z-index: 2;
}



.section_03 .title {
	position:absolute;
	left: 450px;
	top: calc(50% - 200px);
	transform:translateY(-50%);
	z-index: 6;
}

.section_03 .title .title_text {
	font-family:'Montserrat-Medium';
	font-size: 55px;
	letter-spacing: -1px;
	color: #e73137;
}

.section_03 .title .title_text b {
	font-family:'Montserrat-ExtraBold';
}

.section_03.active .title_logo {
	animation: s1_slider_ani01 .5s .3s ease both;
}

.section_03.active .title_text {
	animation: fadeInLeft 1s .5s ease both;
}

@keyframes fadeInLeft {
	from {
		margin-left: -30px;
		opacity: 0;
		visibility:hidden;
	}

	to {
		margin-left: 0;
		opacity: 1;
		visibility:visible;
	}
}

.section_03 .swiper-container {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 100px;
	height: calc(100vh - 100px);
	overflow: hidden;
	z-index: 4;
	min-width: 1680px;
}

.section_03.active .swiper-container {
	animation: s2_swiper_ani 1.2s 1s ease-in-out both;
}

@keyframes s2_swiper_ani {
	from {
		opacity: 0;
		visibility:hidden;
		transform: translateY(40px);
	}

	to {
		opacity: 1;
		visibility:visible;
		transform: translateY(0px);
	}
}

.section_03 .swiper-slide {
	height: calc(100vh - 100px);
}

.section_03 .swiper-slide .img_box {
	position:absolute;
	display: flex;
	align-items:center;
	justify-content: space-between;
	width: 550px;
	height: 644px;
	top: calc(50% - 40px);
	left: calc(50% + 600px);
	transform:translateY(-50%) translateX(-50%);
	overflow: hidden;
}




.section_03 .swiper-slide.swiper-slide-active .img_box .lt_img {
	animation: s2_slider_lt_img_ani .7s .3s ease both;
}

@keyframes s2_slider_lt_img_ani {
	0% {
		transform: translateX(50px);
		opacity: 0;
		visibility:hidden;
	}

	100% {
		transform: translateX(0px);
		opacity: 1;
		visibility:visible;
	}
}



.section_03 .swiper-slide .img_box_pre {
	position:absolute;
	display: flex;
	align-items:center;
	justify-content: space-between;
	width: 258px;
	height: 626px;
	bottom: 0;
	left: calc(50% - 730px);
	transform: translateX(-50%);
	overflow: hidden;
}


.section_03 .swiper-slide.swiper-slide-active .img_box_pre .lt_img {
	animation: s2_slider_lt_img_ani .7s .3s ease both;
}

@keyframes s2_slider_lt_img_ani {
	0% {
		transform: translateX(50px);
		opacity: 0;
		visibility:hidden;
	}

	100% {
		transform: translateX(0px);
		opacity: 1;
		visibility:visible;
	}
}




.section_03 .swiper-slide .text_box {
	position:absolute;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	left: calc(50% - 410px);
	top: 60%;
	transform:translateY( -50%);
	z-index: 10;
}

.section_03 .swiper-slide.swiper-slide-active .text_box .number {
	animation: s2_slider_number_ani .7s .5s ease both;
}

@keyframes s2_slider_number_ani {
	0% {
		transform: translateY(20px);
		opacity: 0;
		visibility:hidden;
	}

	100% {
		transform: translateY(0px);
		opacity: 1;
		visibility:visible;
	}
}

.section_03 .swiper-slide .text_box .text_zone {
	margin-top: -25px;
	font-size: 21px;
	font-family:'NotoSansKR-Light';
	color: #000;
}

.section_03 .swiper-slide .text_box .text_zone b {
	font-size: 23px;
	font-family:'NotoSansKR-Regular';
	letter-spacing: -1px;
}

.section_03 .swiper-slide .text_box .text_zone span {
	font-size: 14px;
}

.section_03 .swiper-slide .text_box .text_zone .fs {
	font-size: 16px;
}

.section_03 .swiper-slide.swiper-slide-active .text_box .text_zone {
	animation: fadeIn .7s .9s ease both;
}

.section_03 .page_number {
	position:absolute;
	left: calc(50% - 195px);
	right: auto;
	width: 210px;
	font-size: 18px;
	bottom: 18%;
	font-family:'Montserrat-SemiBold';
	display:flex;
	justify-content:space-between;
	z-index: 10;
	color: #000;
}

.section_03 .page_number .num {
	font-family:'Montserrat-Bold';
}

.section_03 .swiper-pagination-progressbar {
	position:absolute;
	left: calc(50% - 160px);
	right: auto;
	width: 134px;
	height: 2px;
	top: auto;
	bottom: 20%;
	z-index: 20;
	background-color:#e8e7e7;
}

.section_03 .swiper-pagination-progressbar span {
	background-color:#000 !important;
}

.section_03 .owl-nav {
	position:absolute;
	left: calc(50% + 60px);
	bottom: 16.5%;
	display:flex;
	z-index: 20;
}

.section_03 .owl-nav [class*=owl-] {
	display:inline-block;
	background-image:url('../img/main/section02_slider_arrow.png?new') !important;
	background-position:0 center;
	width: 40px;
	height: 40px;
	cursor:pointer;
	margin: 0 5px;
}

.section_03 .owl-nav .owl-next {
	background-position:100% center !important;
}

























.top_btn {
	display: none;
}