body {
	overflow: hidden;
}
.fp-watermark, .view-fp-mobile {
    display: none;
}
#container {
	padding-top: 0!important;
}


#section0 .text_form {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  justify-content: center;
  text-align: center;
}
#section0.active .text_form p {
	position: relative;
	font-size: 32px;
	width: fit-content;
	font-weight: 500;
	color: transparent;
	margin: 0 auto;
	animation: tex_reveal 0.5s ease forwards;
	animation-delay: 1s;
}
#section0.active .text_form p span {
	animation-delay: 0.5s;
}
#section0.active .text_form h1 {
  display: block;
  width: fit-content;
  font-size: 64px;
  position: relative;
  color: transparent;
  animation: tex_reveal_name 0.5s ease forwards;
  animation-delay: 2s;
  margin: 0 auto;
}
#section0.active .text_form h1 span {
	animation-delay: 1.5s;
}
#section0.active .text_form span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: crimson;
  animation: text_reveal_box 1s ease;
}
@keyframes text_reveal_box {
  50% {
    width: 100%;
    left: 0;
  }
  100% {
    width: 0;
    left: 100%;
  }
}
@keyframes tex_reveal {
  100% {
    color: var(--black);
  }
}
@keyframes tex_reveal_name {
  100% {
    color: crimson;
  }
}



#section1 .video {
    position: relative;
    height: calc(var(--vh, 1vh) * 100);
}
#section1 .video video {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 1;
	object-fit: cover;
}
#section1 .video .box {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	z-index: 2;
	color: var(--white);
	text-align: center;
}
#section1 .video .box p {
	margin-top: 10px;
	font-size: 32px;
	font-weight: 500;
}
#section1 .video .box h4 {
	font-size: 64px;
	font-weight: 900;
}



#section2 {
	justify-content: flex-start;
}
#section2 .grid4 {
	padding-bottom: 70px;
}
#section2 .grid4 > div {
	position: relative;
	flex: 1;
	transition: all 1s ease-in-out;
	height: calc(var(--vh, 1vh) * 100 - 70px);
	overflow: hidden;
}
#section2 .grid4 > div:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.35);
	opacity: 1;
	transition: all 1s ease-in-out;
}
#section2 .grid4 > div img {
	position: relative;
	width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    object-fit: cover;
}
#section2 .grid4 > div .box {
	position: absolute;
	bottom: 50px;
	left: 0;
	width: 100%;
	text-align: center;
	color: var(--white);
	transform: scale(1);
	z-index: 1;
	transition: all .5s .3s ease-in-out;
	padding: 0 10px;
    box-sizing: border-box;
}
#section2 .grid4 > div .box h4 {
	font-size: 64px;
	font-weight: 900;
}
#section2 .grid4 > div .box p {
	font-size: 36px;
	margin-top: 5px;
}
#section2 .grid4 > div .box p a {
	display: inline-block;
	color: var(--white);
	padding: 8px 10px;
	border: 1px solid var(--white);
	border-radius: 7px;
	transition: all .5s .3s ease-in-out;
}
#section2 .grid4 > div:hover {
	flex-grow: 2;
}
#section2 .grid4 > div:hover:after {
	opacity: 0;
}
#section2 .grid4 > div:hover .box {
	color: var(--black);
	transform: scale(1.2);
}
#section2 .grid4 > div:hover .box p a {
	color: var(--black);
	border: 1px solid var(--black);
}
#section2 .swiper-slide {
	height: calc(var(--vh, 1vh) * 100);
}
#section2 .swiper-slide img {
	position: relative;
	width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    object-fit: cover;
}
#section2 .swiper-slide .box {
	position: absolute;
	bottom: 100px;
	left: 0;
	width: 100%;
	text-align: center;
	transform: scale(1);
	z-index: 1;
	transition: all .5s .3s ease-in-out;
	padding: 0 10px;
    box-sizing: border-box;
}
#section2 .swiper-slide .box h4 {
	font-size: 40px;
	font-weight: 900;
}
#section2 .swiper-slide .box p {
	font-size: 30px;
	font-weight: 700;
}
#section2 .swiper-pagination {
	bottom: 80px;
}
#section2 .swiper-pagination-bullet-active {
	background: var(--white);
}



#section3 {
	text-align: center;
	overflow: hidden;
}
#section3 .box h2 {
	font-size: 96px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
}
#section3 .box p {
	margin-top: 30px;
	font-size: 48px;
	font-weight: 500;
}
#section3 .box a {
	display: block;
	width: 303px;
	height: 85px;
	line-height: 85px;
	border-radius: 7px;
	font-size: 36px;
	font-weight: 700;
	text-transform: uppercase;
	margin: 100px auto 74px;
}


#section4 {
	background: var(--black);
}
#section4 .title {
	padding-top: 90px;
	margin-bottom: 60px;
}
#section4 .title h2 {
	font-size: 96px;
	font-weight: 800;
	color: var(--white);
	text-transform: uppercase;
	line-height: 1;
	margin-bottom: 20px;
}
#section4 .title h2 span {
	color: var(--red);
}
#section4 .title p {
	color: var(--white);
	font-size: 32px;
	font-weight: 500;
}
#section4 .list {
	padding: 0 120px 74px;
	gap: 20px;
}
#section4 .list > div {
	position: relative;
	flex: 1;
	transition: all .5s ease-in-out;
	height: calc(var(--vh, 1vh) * 100 - 225px);
	max-height: 468px;
	overflow: hidden;
}
#section4 .list > div:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 1;
	transition: all 1s ease-in-out;
}
#section4 .list > div img {
	position: relative;
    height: 100%;
    width: auto;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    object-fit: cover;
}
#section4 .list > div .box {
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 100%;
	text-align: center;
	color: var(--white);
	transform: scale(1);
	opacity: 0;
	z-index: 1;
	transition: all .2s .3s ease-in-out;
}
#section4 .list > div .box h4 {
	font-size: 24px;
	font-weight: 700;
}
#section4 .list > div .box a {
	display: block;
	width: 95px;
	height: 31px;
	line-height: 28px;
	font-size: 12px;
	font-weight: 700;
	border-radius: 7px;
	border: 2px solid var(--white);
	color: var(--white);
	margin: 10px auto 0;
	text-transform: uppercase;
	box-sizing: border-box;
}
#section4 .list > div:hover {
	flex-grow: 2;
}
#section4 .list > div:hover:after {
	background: rgba(0, 0, 0, 0.1);
}
#section4 .list > div:hover .box {
	opacity: 1;
}
#section4 .swiper-slide {
	width: 50%;
}
#section4 .swiper-slide:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	opacity: 1;
	transition: all 1s ease-in-out;
}
#section4 .swiper-slide .box {
	position: absolute;
	bottom: 30px;
	left: 0;
	width: 100%;
	text-align: center;
	color: var(--white);
	transform: scale(1);
	z-index: 1;
	transition: all .2s .3s ease-in-out;
}
#section4 .swiper-slide .box a {
	display: block;
	width: 95px;
	height: 31px;
	line-height: 28px;
	font-size: 12px;
	font-weight: 700;
	border-radius: 7px;
	border: 2px solid var(--white);
	color: var(--white);
	margin: 10px auto 0;
	text-transform: uppercase;
	box-sizing: border-box;
}
#section4 .swiper-container {
	padding-bottom: 25px;
}
#section4 .swiper-pagination {
	bottom: 0;
}
#section4 .swiper-pagination-bullet {
	background: var(--white);
}
#section4 .swiper-pagination-bullet-active {
	background: var(--white);
}




#section5 .info {
	padding: 100px 60px 0 100px;
	gap: 0 100px;
	margin-bottom: 74px;
	box-sizing: border-box;
}
#section5 .info .box {
	flex: 1;
}
#section5 .info .box > div {
	padding: 30px 0;
	margin-bottom: 30px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.50);
}
#section5 .info .box > div h4 {
	font-size: 32px;
	font-weight: 700;
	text-transform: uppercase;
}
#section5 .info .box .contact .tel {
	color: var(--red);
	font-size: 48px;
	font-weight: 600;
}
#section5 .info .box .contact a {
	color: var(--yellow);
	font-size: 32px;
	font-weight: 500;
	border-bottom: 2px solid var(--yellow);
}
#section5 .info .box .address p {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.4;
	margin-top: 10px;
	text-transform: uppercase;
}
#section5 .info .box .util > div {
	gap: 20px;
}
#section5 .info .box .util > div a {
	font-size: 14px;
	font-weight: 600;
}
#section5 .info .box .desc p {
	font-size: 16px;
	text-transform: uppercase;
	padding: 5px 0;
}
#section5 .info .map {
	flex: 1;
	position: relative;
	height: calc(var(--vh, 1vh) * 100);
}
#section5 .info .map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


#section6 .intro_txt {
    color: var(--red);
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 96px;
}
#section6 .img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#section6 .img img {
	width: 100%;
	height: 100%;
	clip-path: circle(0);
    object-fit: cover;
}
#section6.ani_active .img img {
    clip-path: circle(100%);
    transition: all 2s cubic-bezier( 0.66, 0.01, 0, 1.01 ) .4s;
}
#section6 .box {
    position: absolute;
    text-align: center;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}
#section6 .box h3 {
	font-size: 96px;
	font-weight: 700;
	margin-bottom: 30px;
	text-transform: uppercase;
}
#section6 .box a {
	display: inline-block;
	font-size: 36px;
	font-weight: 700;
	padding: 20px 40px;
	border-radius: 7px;
}




@media screen and (max-width: 1440px) {
	#section2 .grid4 > div .box h4 {
		font-size: 36px;
	}
	#section2 .grid4 > div .box p {
		font-size: 30px;
	}
	
	#section3 .box h2 {
		font-size: 75px;
	}
	#section3 .box p {
		font-size: 40px;
	}
	#section3 .box a {
		width: 280px;
		height: 80px;
		line-height: 80px;
		font-size: 30px;
	}
	
	#section4 .title {
		margin-bottom: 40px;
	}
	#section4 .title h2 {
		font-size: 70px;
	}
	#section4 .title p {
		font-size: 28px;
	}
	#section4 .list {
		padding: 0 70px 74px;
	}
	
	
	#section5 .info {
		padding: 115px 40px 0 80px;
		gap: 0 50px;
	}
	#section5 .info .box > div {
		padding: 20px 0;
		margin-bottom: 20px;
	}
	#section5 .info .box > div h4 {
		font-size: 28px;
	}
	#section5 .info .box .contact .tel {
		font-size: 40px;
	}
	#section5 .info .box .contact a {
		font-size: 28px;
	}
	#section5 .info .box .address p {
		font-size: 28px;
	}
	
	
	#section6 .intro_txt {
		font-size: 70px;
	}
	#section6 .box h3 {
		font-size: 70px;
	}
	#section6 .box a {
		font-size: 26px;
		padding: 15px 35px;
	}
}
@media screen and (max-width: 1024px) {
	#section0.active .text_form p {
		font-size: 24px;
	}
	#section0.active .text_form h1 {
		font-size: 50px;
	}
	
	#section1 .video .box h4 {
		font-size: 46px;
	}
	#section1 .video .box p {
		font-size: 28px;
	}
	
	#section4 .title {
		padding-top: 0;
	}
}
@media screen and (max-width: 768px) {
	#section0 .text_form {
		padding-right: 10px;
	}
	#section0.active .text_form p {
		font-size: 4vw;
	}
	#section0.active .text_form h1 {
		font-size: 7vw;
	}
	
	
	#section1 .video .box {
		padding: 0 10px;
		box-sizing: border-box;
	}
	#section1 .video .box h4 {
		font-size: 8vw;
	}
	#section1 .video .box p {
		font-size: 5vw;
	}
	
	
	#section2 .swiper-slide .box h4 {
		font-size: 10vw;
	}
	#section2 .swiper-slide .box p {
		font-size: 9vw;
	}
	
	
	#section3 .box h2 {
		font-size: 12vw;
	}
	#section3 .box p {
		font-size: 7vw;
	}
	#section3 .box a {
		display: inline-block;
		width: auto;
		height: auto;
		line-height: 1;
		font-size: 7vw;
		padding: 20px;
		margin: 15% auto 70px;
	}
	
	
	#section4 .title h2 {
		font-size: 10vw;
	}
	#section4 .title p {
		font-size: 5vw;
	}
	
	
	#section5 .info {
		padding: 65px 20px 0 20px;
		gap: 10px;
	}
	#section5 .info .box {
		flex: none;
		width: 100%;
	}
	#section5 .info .box > div {
		padding: 15px 0;
		margin-bottom: 0;
	}
	#section5 .info .box > div h4 {
		font-size: 20px;
	}
	#section5 .info .box .contact .tel {
		font-size: 26px;
	}
	#section5 .info .box .contact a {
		font-size: 20px;
	}
	#section5 .info .box .address p {
		font-size: 20px;
	}
	#section5 .info .box .desc p {
		font-size: 14px;
	}
	#section5 .info .map {
		flex: none;
		width: 100%;
		height: 350px;
		margin-bottom: 54px;
	}
	
	
	#section6 .intro_txt {
		font-size: 10vw;
	}
	#section6 .box h3 {
		font-size: 6vw;
	}
	#section6 .box a {
		font-size: 2.5vw;
	}
}
@media screen and (max-width: 480px) {
	#section6 .intro_txt {
		font-size: 18px;
	}
	#section6 .box h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}
	#section6 .box a {
		font-size: 12px;
		padding: 10px 25px;
	}
}