body{
	background-color: #FFEFEB;
}

#footer,.section{
	position: relative;
}

.return{
	position: fixed;
	right: 2.24%;
	top: 2.24vw;
	z-index: 51;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.75s;
	width: 3.25em;
	height: 3.25em;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: rgba(255,255,255,0.85);
	box-shadow: -0.625em 0.625em 2.375em rgba(0, 0, 0, 0.1);
}
.return.active{
	opacity: 1;
	pointer-events: auto;
}
.return svg{
	width: 54%;
	fill: #333;
	transition: fill 0.5s;
}
.return:hover svg{
	fill: var(--theme-color);
}
.return span{
	position: absolute;
	right: 150%;
	top: 50%;
	transform: translateY(-50%);
	background-color: #fff;
	color: #999;
	display: block;
	padding: 1em;
	font-size: 0.875em;
	white-space: nowrap;
	border-radius: 0.5em;
	opacity: 0;
	transition: opacity 0.5s;
	pointer-events: none;
	box-shadow: -0.625em 0.625em 2.375em rgba(0, 0, 0, 0.1);
}
.return:hover span{
	opacity: 1;
	pointer-events: auto;
}

.sec1{
	padding: 15.3125% 0 10.4%;
	background: linear-gradient(to bottom, #FF3129 20% ,#FFEFEB);
}
.sec1 .inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
}
.sec1 .left-part{
	color: #fff;
	transition: transform 0.75s,opacity 0.75s;
	opacity: 0;
	transform: translate(0,20vh);
}
.sec1 .left-part.actived{
	transform: translate(0,0);
	opacity: 1;
}
.sec1 .left-part h3{
	font-size: 3.75em;
	line-height: 1.333;
	margin-bottom: 0.125em;
}
.sec1 .left-part h5{
	font-size: 1.125em;
	line-height: 2.11;
	margin-bottom: 2em;
}
.sec1 .left-part p{
	font-size: 1.125em;
	line-height: 2.11;
}
.sec1 .right-part{
	flex-shrink: 0;
	background-color: #fff;
	border-radius: 0.9375em;
	text-align: center;
	width: 13.125em;
	color: #000;
	padding: 2.5em 0 2em;
	margin-left: 10%;
}
.sec1.noright .right-part{
	display: none;
}
.sec1 .right-part h4 i{
	margin-right: 0.5em;
	display: inline-block;
	vertical-align: middle;
	width: 0.25em;
	height: 0.25em;
	background-color: #000;
	border-radius: 50%;
}
.sec1 .right-part h4 span{
	width: 1.5em;
	height: 1.5em;
	background-color: var(--theme-color);
	border-radius: 50%;
	vertical-align: middle;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: 0.5em;
}
.sec1 .right-part h4 svg{
	fill: #fff;
	width: 50%;
}
.sec1 .right-part h5{
	font-size: 2.5em;
	margin: 0.4em 0;
}
.sec1 .right-part h5 b{
	font-size: 1.2em;
}
.sec1 .right-part ul{
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-direction: row;
	margin: 0 2em;
}
.sec1 .right-part li{
	width: 1.125em;
	border-radius: 0.5625em;
	background-color: var(--theme-color);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.75s;
}
.sec1 .right-part.actived li{
	transform: scaleY(1);
}
.sec1 .right-part li:nth-child(1){
	height: 2em;
	opacity: 0.1;
	transition-delay: 0.6s;
}
.sec1 .right-part li:nth-child(2){
	height: 2.875em;
	opacity: 0.2;
	transition-delay: 0.8s;
}
.sec1 .right-part li:nth-child(3){
	height: 4em;
	opacity: 0.4;
	transition-delay: 1s;
}
.sec1 .right-part li:nth-child(4){
	height: 4.75em;
	opacity: 0.6;
	transition-delay: 1.2s;
}
.sec1 .right-part li:nth-child(5){
	height: 6em;
	transition-delay: 1.4s;
}


.sec2{
	margin-bottom: 15%;
	position: sticky;
	top: 0;
}
.sec2 .inner{
	border-radius: 0.9375em;
	overflow: hidden;
	box-shadow: 0px 0px 0px 1px rgba(29, 29, 32, 0.06), 0px 1.25em 1.5em -0.3125em rgba(0, 0, 0, 0.1), 0px 0.5em 0.625em -0.375em rgba(0, 0, 0, 0.1);
	background-size: cover;
	height: 100vh;
	position: relative;
	max-width: 100%;
	transition: width 0.75s,border-radius 0.75s;
}
.sec2.fixed .inner{
	width: 100%;
	border-radius: 0;
}
.sec2 .inner::before{
	content: "";
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: background 0.75s;
}
.sec2.fixed .inner::before{
	background: rgba(0,0,0,0.9);
}
.sec2 a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--theme-color);
	padding: 0 1em;
	height: 2.25em;
	border-radius: 1.125em;
	color: #fff;
	font-weight: 500;
	position: absolute;
	left: 3em;
	top: 2.5em;
}
.sec2 a i{
	display: block;
	width: 0.5em;
	height: 0.5em;
	background-color: #fff;
	margin-right: 0.5em;
	border-radius: 50%;
}
.sec2 ul{
	position: absolute;
	left: 2em;
	bottom: 2em;
	right: 2em;
	border-radius: 0.5em;
	background-color: #fff;
	padding: 1.5em 1.75em;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: row;
}
.sec2 li{
	font-size: 0.75em;
	color: #161A26;
	margin-right: 3.5em;
}
.sec2 li:last-child{
	margin-right: 0;
}
.sec2 li i{
	display: inline-block;
	vertical-align: middle;
	border-radius: 50%;
	background-color: rgba(255,49,41,0.2);
	padding: 0.42em;
}
.sec2 li i::before{
	content: "";
	border-radius: 50%;
	background-color: var(--theme-color);
	width: 0.5em;
	height: 0.5em;
	display: block;
}
.sec2 li b{
	font-weight: normal;
	margin: 0 1em;
	vertical-align: middle;
}
.sec2 li span{
	opacity: 0.5;
	vertical-align: middle;
}


.sec3{
	padding: 2em 0;
}
.sec3 ul{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
}
.sec3 li{
	border-radius: 0.9375em;
	margin-bottom: 3em;
	width: 48%;
	overflow: hidden;
	transition: transform 0.75s,opacity 0.75s;
	opacity: 0;
	transform: translate(0,20vh);
}
.sec3 li.actived{
	transform: translate(0,0);
	opacity: 1;
}
.sec3 li.all{
	width: 100%;
}
.sec3 li img{
	width: 100%;
}


.sec4{
	padding: 2em 0 5em;
	text-align: center;
}
.sec4 h3{
	margin-top: 1.633em;
	font-size: 3.75em;
	color: #fff;
	line-height: 1.333;
	transform: translateY(20vh);
	opacity: 0;
	transition: transform 0.75s,opacity 0.75s;
}
.sec4 h3.actived{
	transform: translateY(0);
	opacity: 1;
}
.sec4 h3 span{
	color: var(--theme-color);
}



.sec5{
	padding: 5em 0 10em;
}
.sec5 .swiper{
	overflow: visible;
	transform: translateY(20vh);
	opacity: 0;
	transition: transform 0.75s,opacity 0.75s;
}
.sec5.actived .swiper{
	transform: translateY(0);
	opacity: 1;
}
.sec5 .swiper-slide .img-box{
	overflow: hidden;
	position: relative;
	margin-bottom: 1.75em;
	border-radius: 0.625em;
}
.sec5 .swiper-slide .img-box::before{
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(255, 49, 41, 0) 0%, #FF3129 100%);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.5s;
}
.sec5 .swiper-slide .img-box img{
	transition: transform 0.75s;
}
.sec5 .swiper-slide h4{
	line-height: 1.333;
	font-size: 1.5em;
	position: absolute;
	right: 2em;
	left: 2em;
	bottom: 3.5em;
	color: #fff;
	z-index: 2;
	transform: translateY(20vh);
	opacity: 0;
	transition: transform 0.75s,opacity 0.75s;
	white-space: pre-wrap;
}
.sec5 .swiper-slide .text-box{
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	flex-direction: row;
}
.sec5 .swiper-slide h5{
	font-size: 1.25em;
	color: #fff;
	margin-right: 1em;
}
.sec5 .swiper-slide p{
	font-style: 0.875em;
	color: #838383;
	margin-right: 1em;
}
.sec5 .swiper-slide h5:last-child,.sec5 .swiper-slide p:last-child{
	margin-right: 0;
}
.sec5 .swiper-prev,.sec5 .swiper-next{
	width: 2em;
	position: absolute;
	top: 50%;
	margin-top: -1em;
	fill: var(--theme-color);
	cursor: pointer;
	z-index: 1;
}
.sec5 .swiper-prev{
	transform: rotate(180deg);
	right: 100%;
	margin-right: 5%;
}
.sec5 .swiper-next{
	left: 100%;
	margin-left: 5%;
}

@media only screen and (min-width:1025px){
	.sec5 .swiper-slide:hover .img-box::before{
		opacity: 1;
	}
	.sec5 .swiper-slide:hover .img-box img{
		transform: scale(1.1);
	}
	.sec5 .swiper-slide:hover h4{
		transform: translateY(0);
		opacity: 1;
	}
	.sec5 .swiper-slide:hover h5{
		color: var(--theme-color);
	}
}
@media only screen and (max-width:1024px){

	.return{
		font-size: 1.25em;
		top: calc(6.5em + 2.24vw);
	}

	.sec1{
		padding: 30% 0 10.4%;
	}
	.sec1 .inner{
		display: block;
	}
	.sec1 .left-part h3{
		font-size: 2.4em;
	}
	.sec1 .left-part h5{
		font-size: 1.2em;
	}
	.sec1 .left-part p{
		font-size: 1.2em;
	}
	.sec1 .right-part{
		display: none;
	}


	.sec2{
		margin-bottom: 30%;
		top: 6.5em;
	}
	.sec2 .inner{
		height: calc(100vh - 6.5em);
		width: 92%;
	}
	.sec2 a{
		font-size: 1.2em;
	}
	.sec2 ul{
		display: block;
	}
	.sec2 li{
		font-size: 1.2em;
		margin-right: 0;
		margin-bottom: 1em;
		padding-left: 2.34em;
	}
	.sec2 li:last-child{
		margin-bottom: 0;
	}
	.sec2 li i{
		margin-left: -2.34em;
	}

	.sec3 li{
		width: 100%;
	}


	.sec4 h3{
		font-size: 2.4em;
	}

	.sec5 .swiper-prev,.sec5 .swiper-next{
		display: none;
	}
}