.hidden {
    visibility: hidden;
    opacity: 0;
}

.intro {
	position: fixed;
	display: grid;
	place-items: center;
	height: 100vh;
	width: 100%;
	background-color: white;
	z-index: 33;
}
.intro__title {
	color: white;
	width: 100%;
	font-size: 80px;
	text-align: center;
	mix-blend-mode: difference;
	z-index: 2;
	word-break: keep-all;
	transform: translateY(40px);
}
.intro__background {
	position: absolute;
	top: 0;
	background-color: black;
	width: 50%;
	height: 100%;
	transform: scaleX(0);
}
.intro__background--left {
	left: 0;
	transform-origin: left center;
}
.intro__background--right {
	left: 50%;
	transform-origin: right center;
}


.sec1 {
	padding: 0;
}
.sec1 .inner {
	min-height: 100vh;
	justify-content: center;
	gap: 100px;
	padding: 120px 0;
	box-sizing: border-box;
}
.sec1 .bg svg path {
	position: relative;
	-webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.sec1.on .bg svg path:nth-child(1) {
	-webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
	animation-delay: .3s;
}
.sec1.on .bg svg path:nth-child(4) {
	-webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
	animation-delay: .3s;
}
.sec1.on .bg svg path:nth-child(2) {
	-webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
	animation-delay: .3s;
}
.sec1.on .bg svg path:nth-child(3) {
	-webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
	animation-delay: .3s;
}
.sec1.on .desc {
	opacity: 1;
}
.sec1 .desc h2 {
	font-size: 32px;
	line-height: 1.3;
	letter-spacing: -0.096px;
	margin-bottom: 30px;
}
.sec1 .desc div {
	font-size: 18px;
	line-height: 1.8;
	letter-spacing: -0.054px;
}


.sec2 {
	overflow: hidden;
}
.sec2 .list_link {
	position: relative;
	display: block;
	width: 100%;
	color: var(--white);
	text-align: left;
	background: url("../images/arrow_bg.svg")no-repeat 100% 50%;
	padding: 50px 0;
	font-size: 43px;
	font-weight: 600;
	letter-spacing: -0.129px;
	border-top: 1px solid rgba(255, 255, 255, 0.70);
	transition: padding 1s;
	box-sizing: border-box;
}
.sec2 .list_link:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 0;
	background: var(--green);
	transition: height .3s;
	z-index: -1;
}
.sec2 .list_link:hover {
	padding-left: 5%;
	background: var(--green);
}
.sec2 .list_link:hover:after {
	height: 100%;
}

.sec2 .content {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	position: relative;
	justify-content: flex-start;
	align-items: center;
}
.sec2 .thumb_img {
	position: absolute;
	pointer-events: none;
	will-change: transform;
	top: -1065px;
	right: 8%;
	width: 500px;
	height: 300px;
	z-index: 3;
	overflow: hidden;
}
.sec2 .thumb_img__img {
	opacity: 0;
	width: 100%;
	height: 100%;
}
.sec2 .list {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
}
.sec2 .list_link {
	color: var(--white);
	white-space: nowrap;
	position: relative;
	display: block;
	width: 100%;
	color: var(--white);
	text-align: left;
	background: url("../images/arrow_bg.svg")no-repeat 100% 50%;
	padding: 50px 0;
	font-size: 43px;
	font-weight: 600;
	letter-spacing: -0.129px;
	border-top: 1px solid rgba(255, 255, 255, 0.70);
}



.sec3 .slide .swiper-container {
	overflow: hidden;
	padding-bottom: 100px;
}
.sec3 .slide .swiper-slide {
	width: auto;
	margin-right: 120px;
}
.sec3 .slide .swiper-slide:last-child {
	margin-right: 0;
}
.sec3 .slide .swiper-slide h4 {
	color: var(--green);
	font-size: 43px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.215px;
	margin-bottom: 10px;
}
.sec3 .slide .swiper-slide ul li {
	font-size: 24px;
	line-height: 1.8;
	letter-spacing: -0.12px;
}
.sec3 .slide .swiper-pagination {
	top: auto;
	bottom: 0;
	height: 5px;
}
.sec3 .slide .swiper-pagination-progressbar {
	background: var(--white);
	border-radius: 100px;
	overflow: hidden;
}
.sec3 .slide .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--key-color);
	border-radius: 100px;
}



.sec4 .slider {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}
.sec4 .slider::before, .sec4 .slider::after {
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    content: "";
    z-index: 2;
}
.sec4 .slider::before {
    left: 0;
    background:linear-gradient(to left, rgba(0,0,0,0), var(--black));
}
.sec4 .slider::after {
    right: 0;
    background:linear-gradient(to right, rgba(0,0,0,0), var(--black));
}
.sec4 .logo-slider {
    display: inline-block;
    animation: logoSlider 30s  infinite linear ;
}
.sec4 .slider2 {
	margin-top: 100px;
}
.sec4 .slider2 .logo-slider {
	animation-direction: reverse;
}
@keyframes logoSlider {
    from{
        transform: translate(0);
    }
    to{
        transform: translate(-100%);
    }
}
@-webkit-keyframes logoSlider {
    from{
        transform: translate(0);
    }
    to{
        transform: translate(-100%);
    }
}
.sec4 .logo-slider img{
    margin: 0 20px;
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
}


.sec5 .flex {
	gap: 100px;
}
.sec5 .info h3.tit {
	margin-bottom: 0;
}
.sec5 .info > div {
	margin-top: 25px;
	color: #888;
	font-size: 18px;
	line-height: 1.5;
	letter-spacing: -0.1px;
}
.sec5 .info > div strong {
	display: block;
	color: var(--white);
	font-weight: 500;
}
.sec5 .info > div strong a {
	color: var(--white);
	text-decoration: none;
}
.sec5 .info .radius_btn {
	position: relative;
	display: inline-block;
	padding: 0 20px;
	height: 35px;
	line-height: 35px;
	border-radius: 50px;
	border: 1px solid var(--white);
	color: var(--white);
	text-align: center;
	font-size: 16px;
	letter-spacing: -0.06px;
	margin-top: 10px;
	transition: all .3s;
}
.sec5 .info .radius_btn svg {
	vertical-align: -3px;
	margin-left: 10px;
}
.sec5 .info .radius_btn:hover {
	background: var(--green);
	border: 1px solid var(--green);
}
.sec5 .map_form {
	flex: 1;
	max-width: 800px;
	height: 436px;
}
.sec5 .map_form .root_daum_roughmap {
	width: 100%;
}
.sec5 .map_form .root_daum_roughmap .wrap_map {
    height: 400px;
}


#detail {
	display: block;
}
#detail .black_bg {
	display: none;
}
#detail.open .black_bg {
	display: block;
}
#detail.open .modal_cont {
	right: 0;
}
#detail .modal_cont {
	top: 0;
	left: auto;
    right: -100%;
    transform: none;
    background: var(--black);
	width: 100%;
	max-width: 100%;
    height: 100%;
	max-height: 100%;
	border-radius: 0;
	transition: right 1s .2s;
}
#detail .close {
	z-index: 2;
	width: 40px;
	height: 40px;
	top: 50px;
	right: 50px;
}
#detail .accordian,
#detail .swiper-container {
	height: 100vh;
	overflow: hidden;
}
#detail .swiper-fade .swiper-slide {
	opacity: 0!important;
}
#detail .swiper-fade .swiper-slide-active {
    opacity: 1 !important;
}
#detail .form {
	height: 100vh;
    overflow-y: auto;
}
#detail .form > div {
	box-sizing: border-box;
}
#detail .form .head {
	position: relative;
    right: -55px;
	width: 40%;
	max-width: 734px;
	background: #0BCF62;
	padding: 80px;
	transition: right 1s .5s;
}
#detail .form .head .img {
	margin-bottom: 30px;
}
#detail .form .head .img img {
	width: 100%;
}
#detail.open .form .head {
	right: 0;
}
#detail .form .head h2 {
	font-size: 43px;
	line-height: 1.3;
	letter-spacing: -0.129px;
	text-transform: capitalize;
}
#detail .form .body {
	flex: 1;
	background: var(--black);
}
#detail .form .body .scroll {
    max-width: 777px;
	overflow: hidden;
    background: var(--black);
	padding: 15vh 50px;
    height: 100%;
    max-height: 100%;
	box-sizing: border-box;
}
#detail .form .body .form_body {
	flex-direction: column;
	gap: 100px;
}
#detail .form .body .title h2 {
	font-size: 43px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.129px;
	margin-bottom: 11px;
}
#detail .form .body .title p {
	font-size: 24px;
	line-height: 1.3;
	letter-spacing: -0.072px;
	text-transform: capitalize;
}
#detail .form .body .info h4 {
	font-size: 24px;
	line-height: 1.3;
	letter-spacing: -0.072px;
	text-transform: capitalize;
	margin-bottom: 30px;
}
#detail .form .body .info p {
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: -0.054px;
	text-transform: capitalize;
	word-break: keep-all;
	gap: 12px;
}
#detail .form .body .info p span {
	font-size: 18px;
	line-height: 1.3;
	letter-spacing: -0.054px;
	text-transform: capitalize;
	word-break: keep-all;
	border-radius: 20px;
	border: 1px solid #FFF;
	padding: 5px 15px;
	box-sizing: border-box;
}
#detail .arrow_box {
	position: absolute;
	bottom: 5%;
	left: 80px;
	gap: 30px;
	box-sizing: border-box;
	z-index: 5;
}
#detail .swiper-button-prev,
#detail .swiper-button-next {
	position: static;
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 100%;
	z-index: 5;
}
#detail .swiper-button-prev:after,
#detail .swiper-button-next:after {
	display: none;
}
#detail .swiper-button-prev {
	background-image: url("../images/slider_button_prev.svg");
}
#detail .swiper-button-next {
	background-image: url("../images/slider_button_next.svg");
}





@media screen and (max-width: 1660px) {
	.sec2 .thumb_img {
		right: 10%;
	}
}
@media screen and (max-width: 1280px) {
	.intro__title {
		font-size: 65px;
	}
	@keyframes textAni {
	  from {
		left: 100%;
	  }
	  to {
		left: calc(100% - 78vw - 1500px);
	  }
	}
	@-webkit-keyframes textAni {
	  from {
		left: 100%;
	  }
	  to {
		left: calc(100% - 78vw - 1500px);
	  }
	}
	
	.sec1 .bg svg {
		width: 415px;
		height: 100%;
	}
	
	.sec3 .slide .swiper-slide {
		width: 28%;
	}
	.sec3 .slide .swiper-slide ul li {
		font-size: 22px;
	}
	.sec5 .flex {
		gap: 30px;
	}
	
	
	#detail .form .head {
		padding-left: 50px;
	}
	#detail .arrow_box {
		left: 50px;
	}
}
@media screen and (max-width: 1024px) {
	.intro__title {
		font-size: 52px;
	}

	.sec1 .bg svg {
		width: 330px;
	}
	.sec1 .desc div {
		font-size: 20px;
	}
	
	.sec2 .list_link {
		font-size: 30px;
		padding: 35px 0;
		background-size: 35px;
	}
	.sec2 .thumb_img {
		display: none;
	}
	
	.sec3 .slide .swiper-slide {
		width: 36%;
	}
	.sec3 .slide .swiper-slide h4 {
		font-size: 36px;
	}
	.sec3 .slide .swiper-slide ul li {
		font-size: 18px;
	}
	
	.sec4 .slider2 {
		margin-top: 60px;
	}
	
	.sec5 .info {
		width: 100%;
	}
	.sec5 .info > div {
		font-size: 16px;
	}
	.sec5 .map_form {
		flex: none;
		width: 100%;
		max-width: 100%;
	}
	
	
	#detail .accordian, 
	#detail .swiper-container, 
	#detail .form {
		height: auto;
	}
	#detail .close {
		top: 25px;
		right: 25px;
	}
	#detail .modal_cont {
		width: 100%;
		overflow-y: auto;
	}
	#detail .form .head {
		right: 0;
		width: 100%;
		max-width: 100%;
		padding: 75px 30px 115px 30px;
	}
	#detail .form .head h2 {
		font-size: 30px;
	}
	#detail .form .body {
		flex: none;
		width: 100%;
	}
	#detail .form .body .scroll {
		overflow-y: visible;
		padding: 50px 30px;
	}
	#detail .form .body .title h2 {
		font-size: 30px;
	}
	#detail .form .body .title p {
		font-size: 18px;
	}
	#detail .form .body .form_body {
		gap: 60px;
	}
	#detail .form .body .info h4 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	#detail .form .body .info p {
		font-size: 14px;
	}
	#detail .form .body .info p span {
		font-size: 14px;
	}
	#detail .arrow_box {
		bottom: auto;
		left: 30px;
		top: calc(100vw - -155px);
		gap: 20px;
	}
	#detail .swiper-button-prev, 
	#detail .swiper-button-next {
		width: 40px;
		height: 40px;
	}
}
@media screen and (max-width: 768px) {
	.intro__title {
		font-size: 42px;
	}
	.sec1 .bg {
		position: relative;
		right: auto;
		text-align: center;
	}
	.sec1 .bg svg {
		width: 100%;
		max-width: 330px;
	}
	.sec1 .desc h2 {
		font-size: 36px;
	}
	.sec1 .desc div {
		font-size: 16px;
	}
	
	
	.sec2 .list_link {
		font-size: 20px;
		padding: 13px 0;
		background-size: 25px;
	}

	
	.sec3 .slide .swiper-slide {
		width: 42%;
		margin-right: 30px;
	}
	.sec3 .slide .swiper-slide h4 {
		font-size: 28px;
	}
	.sec3 .slide .swiper-slide ul li {
		font-size: 16px;
	}
}
@media screen and (max-width: 480px) {
	.intro__title {
		font-size: 32px;
	}
	@keyframes textAni {
	  from {
		left: 100%;
	  }
	  to {
		left: calc(100% - 46vw - 1100px);
	  }
	}
	@-webkit-keyframes textAni {
	  from {
		left: 100%;
	  }
	  to {
		left: calc(100% - 46vw - 1100px);
	  }
	}
	
	.sec3 .slide .swiper-slide {
		width: 70%;
	}
}