.sec1{
	background: -webkit-linear-gradient(to top right,#ff5751,#b53555);
	background: -moz-linear-gradient(to top right,#ff5751,#b53555);
	background: -o-linear-gradient(to top right,#ff5751,#b53555);
	background: linear-gradient(to top right,#ff5751,#b53555);
	padding: 158px 0 258px;
}
.sec1 .inner{
	border-top: 1px solid rgba(255,255,255,0.5);
	border-bottom: 1px solid rgba(255,255,255,0.5);
	width: 1660px;
	opacity: 0;
	-webkit-transition: opacity 1s;
	transition: opacity 1s;
}
.sec1.actived .inner{
	opacity: 1;
}
.sec1 .text-box{
	-webkit-display: flex;
	-webkit-align-items: center;
	-webkit-justify-content: space-between;
	-webkit-flex-direction: row;
	-webkit-flex-wrap: wrap;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 2.85% 0;
}
.sec1 h1{
	font-size: 90px;
	color: #fff;
	opacity: 0.5;
	font-weight: bold;
}
.sec1 h1 span{
	opacity: 0;
	-webkit-animation: showhide 2s linear infinite;
	animation: showhide 2s linear infinite;
}
.sec1 p{
	text-align: right;
	font-size: 30px;
	color: #fff;
	line-height: 1.666;
}



.sec2{
	background-color: #eee;
	padding-top: 10.3%;
}
.sec2 .inner{
	width: 1700px;
}
.sec2 .text-box{
	-webkit-display: flex;
	-webkit-align-items: flex-end;
	-webkit-justify-content: space-between;
	-webkit-flex-direction: row;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	flex-direction: row;
	margin: 0 auto 10.94%;
	width: 1420px;
	max-width: 100%;
}
.sec2 .text-box h3{
    font-family: 'Century Gothic';
    font-size: 120px;
    color: #fd5554;
    font-weight: bold;
	-webkit-transform: translate3d(50%,0,0);
	transform: translate3d(50%,0,0);
	opacity: 0;
	-webkit-transition: transform 1s,opacity 1s;
	transition: transform 1s,opacity 1s;
}
.sec2 .text-box.actived h3{
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	opacity: 1;
}
.sec2 .text-box h5{
	font-size: 42px;
	color: #000;
	font-weight: bold;
	text-align: right;
	margin-bottom: 0.5em;
	-webkit-transform: translate3d(50%,0,0);
	transform: translate3d(50%,0,0);
	opacity: 0;
	-webkit-transition: transform 1s 0.5s,opacity 1s 0.5s;
	transition: transform 1s 0.5s,opacity 1s 0.5s;
}
.sec2 .text-box.actived h5{
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	opacity: 1;
}
.sec2 .text-box h5:last-child{
	margin-bottom: 0;
}
.sec2 .text-box p{
	font-size: 18px;
	color: #6c6e71;
	line-height: 2.278;
	max-width: 31em;
	margin-bottom: 1.2em;
	-webkit-transform: translate3d(50%,0,0);
	transform: translate3d(50%,0,0);
	opacity: 0;
	-webkit-transition: transform 1s 1s,opacity 1s 1s;
	transition: transform 1s 1s,opacity 1s 1s;
}
.sec2 .text-box.actived p{
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	opacity: 1;
}
.sec2 .text-box a{
	font-size: 18px;
	color: #000;
	font-weight: bold;
	display: inline-block;
	-webkit-transform: translate3d(50%,0,0);
	transform: translate3d(50%,0,0);
	opacity: 0;
	-webkit-transition: transform 1s 1s,opacity 1s 1s,color 0.5s;
	transition: transform 1s 1s,opacity 1s 1s,color 0.5s;
}
.sec2 .text-box.actived a{
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	opacity: 1;
}
.sec2 .text-box a:hover{
	color: #fd5554;
}
.sec2 .text-box a .line{
	display: block;
	width: 100%;
	height: 2px;
	margin-top: 0.4em;
	background-color: #000;
}
.sec2 .text-box a .line::before{
	content: "";
	display: block;
	width: 0;
	height: 100%;
	background-color: #fd5554;
	-webkit-transition: width 0.5s;
	transition: width 0.5s;
}
.sec2 .text-box a:hover .line::before{
	width: 100%;
}
.sec2 ul{
	-webkit-display: flex;
	-webkit-align-items: stretch;
	-webkit-justify-content: flex-start;
	-webkit-flex-direction: row;
	-webkit-flex-wrap: wrap;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
}
.sec2 li{
	border: 1px solid #e5e5e5;
	width: 25%;
	-webkit-transform: translate3d(0,25%,0);
	transform: translate3d(0,25%,0);
	opacity: 0;
	-webkit-transition-property: opacity,transform;
	-webkit-transition-duration: 1s,1s;
	transition-property: opacity,transform;
	transition-duration: 1s,1s;
}
.sec2 li:nth-child(2){
	-webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}
.sec2 li:nth-child(3){
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}
.sec2 li:nth-child(4){
	-webkit-transition-delay: 0.75s;
	transition-delay: 0.75s;
}
.sec2 li.actived{
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	opacity: 1;
}
.sec2 li a{
	display: block;
	width: 100%;
	height: 100%;
	background-color: #fff;
	padding: 18.8% 11.765% 76.7%;
	position: relative;
}
.sec2 li h5{
	font-size: 32px;
	line-height: 1.2;
	color: #fd5554;
	font-weight: bold;
	margin-bottom: 18.35%;
	position: relative;
	-webkit-transition: color 0.5s;
	transition: color 0.5s;
}
.sec2 li:hover h5{
	color: #fff;
}
.sec2 li p{
	font-size: 16px;
	color: #6c6e71;
	line-height: 1.875;
	max-width: 18em;
	position: relative;
	-webkit-transition: color 0.5s;
	transition: color 0.5s;
}
.sec2 li:hover p{
	color: rgba(255,255,255,0.7);
}
.sec2 li svg{
	width: 22.4%;
	position: absolute;
	left: 11.765%;
	bottom: 0;
	margin-bottom: 14.12%;
}
.sec2 li a::before{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: -webkit-linear-gradient(to top right,#ff5751,#b53555);
	background: -moz-linear-gradient(to top right,#ff5751,#b53555);
	background: -o-linear-gradient(to top right,#ff5751,#b53555);
	background: linear-gradient(to top right,#ff5751,#b53555);
	content: "";
	opacity: 0;
	-webkit-transition: opacity 0.5s,transform 0.5s;
	transition: opacity 0.5s,transform 0.5s;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}
.sec2 li a:hover::before{
	opacity: 1;
	-webkit-transform: scaleY(1.03);
	transform: scaleY(1.03);
}
.sec2 li .arrow{
	position: absolute;
	right: 7.53%;
	top: 0;
	margin-top: 2.353%;
	width: 4.7%;
	-webkit-transition: opacity 0.5s 0.25s,transform 0.5s 0.25s;
	transition: opacity 0.5s 0.25s,transform 0.5s 0.25s;
	opacity: 0;
	-webkit-transform: translate3d(-50%, 50%, 0);
	transform: translate3d(-50%, 50%, 0);
}
.sec2 li a:hover .arrow{
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
@-webkit-keyframes pictoAnimation_rotate__RtH0O {
	0% {
		-webkit-transform: rotate(0deg) translateZ(0);
		transform: rotate(0deg) translateZ(0)
	}

	to {
		-webkit-transform: rotate(1turn) translateZ(0);
		transform: rotate(1turn) translateZ(0)
	}

}

@keyframes pictoAnimation_rotate__RtH0O {
	0% {
		-webkit-transform: rotate(0deg) translateZ(0);
		transform: rotate(0deg) translateZ(0)
	}

	to {
		-webkit-transform: rotate(1turn) translateZ(0);
		transform: rotate(1turn) translateZ(0)
	}

}

@-webkit-keyframes pictoAnimation_scaleX__I9FA4 {
	0% {
		-webkit-transform: scaleX(0) translateZ(0);
		transform: scaleX(0) translateZ(0)
	}

	50% {
		-webkit-transform: scaleX(1.9) translateZ(0);
		transform: scaleX(1.9) translateZ(0)
	}

	to {
		-webkit-transform: scaleX(0) translateZ(0);
		transform: scaleX(0) translateZ(0)
	}

}

@keyframes pictoAnimation_scaleX__I9FA4 {
	0% {
		-webkit-transform: scaleX(0) translateZ(0);
		transform: scaleX(0) translateZ(0)
	}

	50% {
		-webkit-transform: scaleX(1.9) translateZ(0);
		transform: scaleX(1.9) translateZ(0)
	}

	to {
		-webkit-transform: scaleX(0) translateZ(0);
		transform: scaleX(0) translateZ(0)
	}

}

@-webkit-keyframes pictoAnimation_scaleY__WKCdY {
	0% {
		-webkit-transform: scaleY(0) translateZ(0);
		transform: scaleY(0) translateZ(0)
	}

	50% {
		-webkit-transform: scaleY(1.9) translateZ(0);
		transform: scaleY(1.9) translateZ(0)
	}

	to {
		-webkit-transform: scaleY(0) translateZ(0);
		transform: scaleY(0) translateZ(0)
	}

}

@keyframes pictoAnimation_scaleY__WKCdY {
	0% {
		-webkit-transform: scaleY(0) translateZ(0);
		transform: scaleY(0) translateZ(0)
	}

	50% {
		-webkit-transform: scaleY(1.9) translateZ(0);
		transform: scaleY(1.9) translateZ(0)
	}

	to {
		-webkit-transform: scaleY(0) translateZ(0);
		transform: scaleY(0) translateZ(0)
	}

}

@-webkit-keyframes pictoAnimation_blink__b21wa {
	0% {
		opacity: 1
	}

	8% {
		opacity: 0
	}

	10% {
		opacity: 0
	}

	25% {
		opacity: 1
	}

}

@keyframes pictoAnimation_blink__b21wa {
	0% {
		opacity: 1
	}

	8% {
		opacity: 0
	}

	10% {
		opacity: 0
	}

	25% {
		opacity: 1
	}

}

@-webkit-keyframes pictoAnimation_fade__xQpAg {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0
	}

	70% {
		opacity: 1
	}

}

@keyframes pictoAnimation_fade__xQpAg {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0
	}

	70% {
		opacity: 1
	}

}

.pictoAnimation_pictoAnimation1__fq1Gk path {
	-webkit-animation: pictoAnimation_rotate__RtH0O 5s linear infinite;
	animation: pictoAnimation_rotate__RtH0O 5s linear infinite;
	-webkit-transform-origin: 49% 50%;
	-ms-transform-origin: 49% 50%;
	transform-origin: 49% 50%
}

.pictoAnimation_pictoAnimation1__fq1Gk path:first-child {
	-webkit-animation-duration: 3s;
	animation-duration: 3s
}

.pictoAnimation_pictoAnimation1__fq1Gk path:nth-child(2) {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}

.pictoAnimation_pictoAnimation1__fq1Gk path:nth-child(3) {
	-webkit-animation-duration: 1s;
	animation-duration: 1s
}

.pictoAnimation_pictoAnimation2__aWb18 {
	stroke: #232323;
	animation: pictoAnimation_rotate__RtH0O 40s linear infinite reverse
}

.pictoAnimation_pictoAnimation2__aWb18 circle {
	-webkit-animation: pictoAnimation_fade__xQpAg 1.5s cubic-bezier(.4, .8, .74, 1) infinite;
	animation: pictoAnimation_fade__xQpAg 1.5s cubic-bezier(.4, .8, .74, 1) infinite
}

.pictoAnimation_pictoAnimation2__aWb18 circle:nth-child(2) {
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s
}

.pictoAnimation_pictoAnimation2__aWb18 circle:nth-child(3) {
	-webkit-animation-delay: 1.35s;
	animation-delay: 1.35s
}

.pictoAnimation_pictoAnimation2__aWb18 circle:nth-child(4) {
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s
}

.pictoAnimation_pictoAnimation2__aWb18 circle:nth-child(5) {
	-webkit-animation-delay: 1.05s;
	animation-delay: 1.05s
}

.pictoAnimation_pictoAnimation2__aWb18 circle:nth-child(6) {
	-webkit-animation-delay: .9s;
	animation-delay: .9s
}

.pictoAnimation_pictoAnimation2__aWb18 circle:nth-child(7) {
	-webkit-animation-delay: .75s;
	animation-delay: .75s
}

.pictoAnimation_pictoAnimation2__aWb18 circle:nth-child(8) {
	-webkit-animation-delay: .6s;
	animation-delay: .6s
}

.pictoAnimation_pictoAnimation2__aWb18 circle:nth-child(9) {
	-webkit-animation-delay: .45s;
	animation-delay: .45s
}

.pictoAnimation_pictoAnimation2__aWb18 circle:nth-child(10) {
	-webkit-animation-delay: .3s;
	animation-delay: .3s
}

.pictoAnimation_pictoAnimation2__aWb18 circle:nth-child(11) {
	-webkit-animation-delay: .15s;
	animation-delay: .15s
}

.pictoAnimation_pictoAnimation2__aWb18 circle:nth-child(12) {
	-webkit-animation-delay: 0s;
	animation-delay: 0s
}

.pictoAnimation_pictoAnimation2__aWb18 circle:first-child {
	-webkit-animation: none;
	animation: none
}

.pictoAnimation_pictoAnimation3__zf3KV {
	stroke: #232323;
	-webkit-animation: pictoAnimation_rotate__RtH0O 30s linear infinite;
	animation: pictoAnimation_rotate__RtH0O 30s linear infinite
}

.pictoAnimation_pictoAnimation3__zf3KV circle {
	-webkit-transform-origin: 49% 50%;
	-ms-transform-origin: 49% 50%;
	transform-origin: 49% 50%;
	-webkit-animation: pictoAnimation_blink__b21wa 2s linear infinite;
	animation: pictoAnimation_blink__b21wa 2s linear infinite
}

.pictoAnimation_pictoAnimation3__zf3KV circle:first-child {
	-webkit-animation-delay: 2s;
	animation-delay: 2s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(2) {
	-webkit-animation-delay: 1.9047619048s;
	animation-delay: 1.9047619048s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(3) {
	-webkit-animation-delay: 1.8095238095s;
	animation-delay: 1.8095238095s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(4) {
	-webkit-animation-delay: 1.7142857143s;
	animation-delay: 1.7142857143s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(5) {
	-webkit-animation-delay: 1.619047619s;
	animation-delay: 1.619047619s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(6) {
	-webkit-animation-delay: 1.5238095238s;
	animation-delay: 1.5238095238s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(7) {
	-webkit-animation-delay: 1.4285714286s;
	animation-delay: 1.4285714286s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(8) {
	-webkit-animation-delay: 1.3333333333s;
	animation-delay: 1.3333333333s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(9) {
	-webkit-animation-delay: 1.2380952381s;
	animation-delay: 1.2380952381s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(10) {
	-webkit-animation-delay: 1.1428571429s;
	animation-delay: 1.1428571429s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(11) {
	-webkit-animation-delay: 1.0476190476s;
	animation-delay: 1.0476190476s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(12) {
	-webkit-animation-delay: .9523809524s;
	animation-delay: .9523809524s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(13) {
	-webkit-animation-delay: .8571428571s;
	animation-delay: .8571428571s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(14) {
	-webkit-animation-delay: .7619047619s;
	animation-delay: .7619047619s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(15) {
	-webkit-animation-delay: .6666666667s;
	animation-delay: .6666666667s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(16) {
	-webkit-animation-delay: .5714285714s;
	animation-delay: .5714285714s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(17) {
	-webkit-animation-delay: .4761904762s;
	animation-delay: .4761904762s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(18) {
	-webkit-animation-delay: .380952381s;
	animation-delay: .380952381s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(19) {
	-webkit-animation-delay: .2857142857s;
	animation-delay: .2857142857s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(20) {
	-webkit-animation-delay: .1904761905s;
	animation-delay: .1904761905s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(21) {
	-webkit-animation-delay: .0952380952s;
	animation-delay: .0952380952s
}

.pictoAnimation_pictoAnimation3__zf3KV circle:nth-child(22) {
	-webkit-animation-delay: 0s;
	animation-delay: 0s
}

.pictoAnimation_pictoAnimation4__5B5H2 {
	stroke: #232323;
	-webkit-animation: pictoAnimation_rotate__RtH0O 25s linear infinite;
	animation: pictoAnimation_rotate__RtH0O 25s linear infinite
}

.pictoAnimation_pictoAnimation5__qITuB {
	stroke: #232323;
	-webkit-animation: pictoAnimation_rotate__RtH0O 30s linear infinite;
	animation: pictoAnimation_rotate__RtH0O 30s linear infinite
}

.pictoAnimation_pictoAnimation5__qITuB path {
	-webkit-transform-origin: 49% 50%;
	-ms-transform-origin: 49% 50%;
	transform-origin: 49% 50%
}

.pictoAnimation_pictoAnimation5__qITuB path:nth-child(4) {
	-webkit-animation: pictoAnimation_scaleX__I9FA4 5s cubic-bezier(.77, 0, .175, 1) infinite;
	animation: pictoAnimation_scaleX__I9FA4 5s cubic-bezier(.77, 0, .175, 1) infinite
}

.pictoAnimation_pictoAnimation5__qITuB path:nth-child(6) {
	-webkit-animation: pictoAnimation_scaleY__WKCdY 5s cubic-bezier(.77, 0, .175, 1) 2.5s infinite;
	animation: pictoAnimation_scaleY__WKCdY 5s cubic-bezier(.77, 0, .175, 1) 2.5s infinite
}







.sec3{
	padding: 13.7% 0 4.84375%;
	margin-top: -5.26%;
	background-color: #fff;
}
.sec3 .inner{
	width: 1700px;
}
.sec3 .text-box{
	-webkit-display: flex;
	-webkit-align-items: flex-end;
	-webkit-justify-content: flex-start;
	-webkit-flex-direction: row;
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	flex-direction: row;
	margin: 0 auto 10.94%;
	width: 1420px;
	max-width: 100%;
}
.sec3 .text-box h3{
    font-family: 'Century Gothic';
    font-size: 120px;
    color: #fd5554;
    font-weight: bold;
    margin-right: 6.4%;
	-webkit-transform: translate3d(50%,0,0);
	transform: translate3d(50%,0,0);
	opacity: 0;
	-webkit-transition: transform 1s,opacity 1s;
	transition: transform 1s,opacity 1s;
}
.sec3 .text-box.actived h3{
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	opacity: 1;
}
.sec3 .text-box h5{
	font-size: 42px;
	color: #000;
	font-weight: bold;
	text-align: right;
	margin-bottom: 0.5em;
	-webkit-transform: translate3d(50%,0,0);
	transform: translate3d(50%,0,0);
	opacity: 0;
	-webkit-transition: transform 1s 0.5s,opacity 1s 0.5s;
	transition: transform 1s 0.5s,opacity 1s 0.5s;
}
.sec3 .text-box.actived h5{
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	opacity: 1;
}
.sec3 .text-box h5:last-child{
	margin-bottom: 0;
}
.sec3 li{
	border-left: 1px solid #ccc;
	width: 33.333%;
	display: inline-block;
	vertical-align: top;
	position: relative;
	padding: 0.65% 3.94% 7.65%;
	-webkit-transform: translate3d(0,25%,0);
	transform: translate3d(0,25%,0);
	opacity: 0;
	-webkit-transition-property: opacity,transform;
	-webkit-transition-duration: 1s,1s;
	transition-property: opacity,transform;
	transition-duration: 1s,1s;
}
.sec3 li:nth-child(2){
	-webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}
.sec3 li:nth-child(3){
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}
.sec3 li.actived{
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	opacity: 1;
}
.sec3 li:last-child{
	border-right: 1px solid #ccc;
}
.sec3 li::before{
	content: "";
	position: absolute;
	left: -2px;
	top: 50%;
	width: 3px;
	background-color: #fd5554;
	height: 44.53125%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.sec3 li h5{
	font-size: 32px;
	color: #fd5554;
	font-weight: bold;
	margin-bottom: 7%;
	margin-left: -5.6%;
}
.sec3 li h5 img{
	vertical-align: middle;
	width: 2.0625em;
	margin-right: 0.875em;
}
.sec3 li h5 span{
	vertical-align: middle;
}
.sec3 li p{
	font-size: 18px;
	color: #6c6e71;
	line-height: 2;
}


.sec4 h3{
	font-size: 42px;
	color: #000000;
	font-weight: bold;
	line-height: 1.45;
	-webkit-transform: translate3d(0,50%,0);
	transform: translate3d(0,50%,0);
	opacity: 0;
	-webkit-transition: transform 1s,opacity 1s;
	transition: transform 1s,opacity 1s;
}
.sec4 h3.actived{
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
	opacity: 1;
}
.sec4 .inner{
	width: 1420px;
}
.sec4 .list-box{
	background-color: #eeeeee;
	-webkit-display: flex;
	-webkit-align-items: stretch;
	-webkit-justify-content: flex-start;
	-webkit-flex-direction: row;
	-webkit-flex-wrap: wrap;
	display: flex;
	align-items: stretch;
	justify-content: flex-start;
	flex-direction: row;
	flex-wrap: wrap;
	margin-top: 5.52%;
}
.sec4 .column{
	width: 25%;
	border-right: 1px solid #fff;
	padding: 4.6875% 0 6.5625%;
	-webkit-display: flex;
	-webkit-align-items: center;
	-webkit-justify-content: flex-start;
	-webkit-flex-direction: column;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-direction: column;
}
.sec4 .column:last-child{
	border-right: 0 none;
}
.sec4 ul{
	padding: 0 1.5vw;
}
.sec4 li{
	font-size: 16px;
	margin-bottom: 3.25em;
}
.sec4 li:last-child{
	margin-bottom: 0;
}
.sec4 h5{
	font-size: 1.125em;
	color: #fd5554;
	font-weight: bold;
	margin-bottom: 1.111em;
}
.sec4 p{
	font-size: 1em;
	color: #6c6e71;
	line-height: 1.5;
	margin-bottom: 0.875em;
	padding-left: 2em;
}
.sec4 p:last-child{
	margin-bottom: 0;
}
.sec4 p span{
	margin-left: -2em;
	width: 2em;
	display: inline-block;
}


@media only screen and (max-width:1824px) {
	.sec2 li h5{
		min-height: 2.4em;
	}
}


@media only screen and (max-width:1366px) {
	.sec1 h1{
		font-size: 80px;
	}
	.sec1 p{
		font-size: 20px;
	}


	.sec2 .text-box h3{
	    font-size: 84px;
	}
	.sec2 .text-box h5{
		font-size: 30px;
	}
	.sec2 .text-box p{
		font-size: 16px;
	}
	.sec2 li h5{
		font-size: 24px;
	}
	.sec2 li p{
		font-size: 14px;
	}


	.sec3 .text-box h3{
	    font-size: 84px;
	}
	.sec3 .text-box h5{
		font-size: 30px;
	}
	.sec3 li h5{
		font-size: 24px;
	}
	.sec3 li p{
		font-size: 16px;
	}
	
	.sec4 li{
		font-size: 14px;
	}
}


@media only screen and (max-width:1023px) {
	.sec1{
		padding: 25% 0 30%;
	}
	.sec1 .text-box{
		-webkit-display: block;
		display: block;
		padding: 8% 0;
	}
	.sec1 h1{
		font-size: 2.8125rem;
		margin-bottom: 10%;
	}
	.sec1 p{
		text-align: left;
		font-size: 0.9375rem;
	}


	.sec2 .text-box{
		-webkit-display: block;
		display: block;
	}
	.sec2 .text-box h3{
	    font-size: 3.75rem;
	    margin-bottom: 1rem;
	}
	.sec2 .text-box h5{
		font-size: 1.3125rem;
		text-align: left;
	}
	.sec2 .text-box h5:last-child{
	    margin-bottom: 1rem;
	}
	.sec2 .text-box p{
		font-size: 0.5625rem;
		line-height: 2.278;
		max-width: 100%;
		margin-bottom: 1.2em;
	}
	.sec2 .text-box a{
		font-size: 0.5625rem;
	}
	.sec2 li{
		width: 50%;
	}
	.sec2 li a{
		padding: 18.8% 10% 60%;
	}
	.sec2 li h5{
		font-size: 1rem;
	}
	.sec2 li p{
		font-size: 0.5625rem;
	}



	.sec3{
		padding: 25% 0 10%;
		margin-top: -15%;
	}
	.sec3 .text-box{
		-webkit-display: block;
		display: block;
		margin: 0 auto 10.94%;
	}
	.sec3 .text-box h3{
	    font-size: 3rem;
	    margin-right: 0;
	    margin-bottom: 10%;
	}
	.sec3 .text-box h5{
		font-size: 1.3125rem;
		text-align: left;
	}
	.sec3 li{
		border-left: 0 none;
		border-top: 1px solid #ccc;
		width: 100%;
		display: inline-block;
		padding: 7.65%;
	}
	.sec3 li:last-child{
		border-right: 0 none;
		border-bottom: 1px solid #ccc;
	}
	.sec3 li::before{
		content: "";
		position: absolute;
		left: 50%;
		top: -2px;
		width: 44.53125%;
		height: 3px;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	.sec3 li h5{
		font-size: 1rem;
		margin-left: 0;
	}
	.sec3 li p{
		font-size: 0.5625rem;
	}



	.sec4 h3{
		font-size: 1.3125rem;
	}
	.sec4 .list-box{
		padding: 10% 0 5%;
	}
	.sec4 .column{
		width: 50%;
		padding: 0;
		-webkit-display: block;
		display: block;
	}
	.sec4 .column:nth-child(even){
		border-right: 0 none;
	}
	.sec4 ul{
		padding: 0 4vw;
		margin-bottom: 1.828125rem;
	}
	.sec4 li{
		font-size: 0.5625rem;
	}
}