/*//////////////////////////////// sec-1 ////////////////////////////////*/
.sec-1 {
	position: relative;
	width: 100%;
	height: 780px;
	height: 100vh;
	margin: 0 auto;
	overflow: hidden;
	z-index: 2;
}
.sec-1 .background {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.sec-1 .background video {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.sec-1 .bg-video {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sec-1 .bg-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100vw;
  height: 56.25vw;      /* 16:9 */
  min-width: 177.78vh;  /* 세로 화면 대응 */
  min-height: 100vh;

  border: 0;
  outline: 0;
  pointer-events: none;
}

.sec-1 .text {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 1280px;
	margin: auto;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 2;
}
.sec-1 .text h1 {
	font-size: 70px;
	font-weight: 700;
	color: var(--white-color);
	line-height: 1.1;
	letter-spacing: -0.03em;
	filter: blur(10px);
    opacity: 0;
	transform: translateY(20px);
    transition: all 1s ease;
}
.sec-1 .text h1 span {
	display: inline-block;
	color: #64aaf8;
}
.sec-1 .text p {
	margin: 20px 0 50px;
	font-size: var(--font-title);
	font-weight: 500;
	color: var(--white-color);
	line-height: 1.2;
	word-break: keep-all;
	filter: blur(10px);
    opacity: 0;
	transform: translateY(20px);
    transition: all 1s ease 0.3s;
}
.sec-1 .text .btn-wrap {
	justify-content: center;
	gap: 15px;
	filter: blur(10px);
    opacity: 0;
	transform: translateY(20px);
    transition: all 1s ease 0.5s;
}
.sec-1 .sec1-left-bottom-btn {
	display:none;
	position: absolute;
    bottom: 35px;
	/* top: calc(100% - 70px); */
	left: 15px;
	z-index: 1;
}
.sec-1 .text .btn-wrap a,
.sec-7 .go-btn,
.sec-1 .sec1-left-bottom-btn a {
	display: inline-block;
	width: 210px;
	height: 62px;
	line-height: 62px;
	font-size: var(--font-title);
	color: var(--white-color);
	text-align: center;
	background: var(--primary-h-color);
	border-radius: 8px;
	transition: all .3s ease;
	cursor: pointer;
}
.sec-1 .text .btn-wrap a:first-child {
	background: var(--white-color);
	color: var(--black-color);
}
.sec-1 .text .btn-wrap a:hover {
	background: var(--primary-color);
}
.sec-1 .text .btn-wrap a:first-child:hover {
	background: #f1f1f1;
}
.sec-1 .text.on h1, .sec-1 .text.on p, .sec-1 .text.on .btn-wrap {
	filter: blur(0);
    opacity: 1;
	transform: translateY(0px);
}

.sec-1 .sec1-left-bottom-btn a {
	display: flex; 
	justify-content: center; 
	align-items: center;
	background: #018efe;
	line-height: initial;
	height: 72px; 
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.sec-1 .sec1-left-bottom-btn a {
  animation: blink 1.5s infinite; /* 1초 간격으로 무한 반복 */
}

.sec-1 .sec1-left-bottom-btn > a > div {
	display: flex;
    flex-direction: row;
}

.sec-1 .sec1-left-bottom-btn > a > div > span+span {
	display: flex;
    align-items: center;
    margin-left: 10px;
}

.sec-1 .dim {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, #000000, #000000);
	transform: translate(-50%, -50%);
	opacity: 0.25;
}
.sec-1 .scroll-wrap {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
}
.sec-1 .scroll {
	position: relative;
	padding-top: 50px;
	font-size: 15px;
	letter-spacing: 0.5px;
	color: var(--white-color);
}
.sec-1 .scroll span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 22px;
	height: 22px;
	margin-left: -12px;
	border-left: 2px solid var(--white-color);
	border-bottom: 2px solid var(--white-color);
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: sdb 2s infinite;
	animation: scr 2s infinite;
	opacity: 0;
	box-sizing: border-box;
}
.sec-1 .scroll span:nth-of-type(1) {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}
.sec-1 .scroll span:nth-of-type(2) {
	top: 11px;
	-webkit-animation-delay: .15s;
	animation-delay: .15s;
}
.sec-1 .scroll span:nth-of-type(3) {
	top: 22px;
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
}
@-webkit-keyframes scr {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes scr {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
/*//////////////////////////////// sec-1 ////////////////////////////////*/



/*//////////////////////////////// sec-2 ////////////////////////////////*/
.sec-2 {
	position: relative;
	margin: 30px auto 0;
	padding: 0 50px;
	max-width: 960px;
	height: 206px;
	border-radius: 10px;
	background: #2e09ea url("../img/main/banner01-bg.png") no-repeat center right / cover;
	overflow: hidden;
}
.sec-2 a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
}
.sec-2 .text {
	font-size: var(--font-contitle2);
	font-weight: 400;
	color: var(--white-color);
	line-height: 1.2;
	letter-spacing: -0.03em;
}
.sec-2 .text strong {
	font-weight: 600;
	text-decoration: underline;
}
.sec-2 .img {
	position: absolute;
	top: 50%;
	right: 50px;
	transform: translateY(-50%);
}
/*
.you-btn {
	display: flex;
    align-items: center;
    justify-content: center;
	gap: 8px;
	max-width: 200px;
	margin: 100px auto 0;
	padding: 15px 20px;
	font-size: var(--font-title);
	background: #f1f1f1;
	border-radius: 50px;
}
*/
/*//////////////////////////////// sec-2 ////////////////////////////////*/



/*//////////////////////////////// sec-3 ////////////////////////////////*/
.section {
	padding: 150px 0;
}
.sec-title {
	font-size: var(--font-contitle1);
	line-height: 1.1;
	letter-spacing: -0.05em;
	text-align: center;
	filter: blur(10px);
    opacity: 0;
	transform: translateY(20px);
    transition: all 1s ease;
}
.sec-title strong {
	display: block;
}
.sec-text {
	margin-top: 20px;
	font-size: var(--font-title);
	font-weight: 400;
	color: var(--gray500-color);
	text-align: center;
	line-height: 1.4;
	filter: blur(10px);
    opacity: 0;
	transform: translateY(20px);
    transition: all 1s ease 0.5s;
}
.sec-title.on, .sec-text.on {
	filter: blur(0);
    opacity: 1;
	transform: translateY(0px);
}
.sec-3 {
	position: relative;
	background: var(--white-color);
	z-index: 2;
}
.count-wrap {
	justify-content: center;
	margin-top: 70px;
}
.count-wrap li {
	flex-direction: column;
	width: 33.33%;
}
.count-wrap li span {
	display: block;
	margin: 35px 0 30px;
	font-size: var(--font-title);
	text-align: center;
}
.count {
	font-size: var(--font-contitle2);
	font-weight: 500;
	color: var(--primary-color);
}
.count strong {
	font-size: 44px;
	font-weight: 700;
}
/*//////////////////////////////// sec-3 ////////////////////////////////*/



/*//////////////////////////////// sec-10 ////////////////////////////////*/
.sec-10.section {
	position: relative;
	padding: 50px 0;
	background: var(--primary-color);
	z-index: 2;
}
.sec-10 .sec-in {
	display: flex;
    align-items: center;
}
.sec-10 .floatLeft, .sec-10 .floatRight {
	width: 50%;
}
.sec-10 .floatRight {
	position: relative;
	overflow: hidden;
}
.sec-10 .sec-title, .sec-10 .sec-text {
	text-align: left;
	color: var(--white-color);
}
.sec-10 .go-btn {
	display: inline-block;
	margin-top: 35px;
    width: 210px;
    height: 62px;
    line-height: 62px;
    font-size: var(--font-title);
	font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    background: var(--white-color);
    border-radius: 8px;
    transition: all .3s ease;
    cursor: pointer;
}
.sec-10 .sec-title img {
	display: inline-block;
	margin-top: -35px;
}
.sec-10 .go-btn:hover {
    background: #edf2f7;
}
.sec-10 .floatRight > .img-wrap {
	width: 578px;
	position: absolute;
	top: 50%;
	left: 46%;
	transform: translate(-50%, -50%);
}
.sec-10 .floatRight .swiper-slide {
    display: flex;
	justify-content: center;
}
.sec-10 .at-wrap {
    width: 100%;
	position: absolute;
	bottom: 0;
}
.sec-10 .animated-title {
	position: relative;
	width: 100%;
	max-width:100%;
	height: auto;
	padding: 80px 0;
	font-size: 150px;
	font-weight: 900;
	color: #0b76ee;
	letter-spacing: 2px;
	overflow-x: hidden;
	overflow-y: hidden;
}
.sec-10 .animated-title .track {
	position: absolute;
	top: 0;
	white-space: nowrap;
	will-change: transform;
	animation: marquee 60s linear infinite;
}
@keyframes marquee {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
/*//////////////////////////////// sec-10 ////////////////////////////////*/



/*//////////////////////////////// sec-4 ////////////////////////////////*/
.sec-4.section {
	position: relative;
	padding: 0;
	background: #f5f7fa;
	overflow: hidden;
	z-index: 2;
}
.sec-4 .top {
	position: relative;
	width: 100%;
	padding: 150px 0 80px;
	background: #f5f7fa;
	z-index: 2;
}
.sec-4-2.section {
	position: relative;
	padding-top: 0;
	background: #f5f7fa;
}
.obj-line {
	position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #cddbea;
	z-index: 1;
}
.obj-truck {
    position: absolute;
    left: 8px;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translate(0, -20rem);
    z-index: 1;
}
.sec-4-2 .content.on .obj-truck {
    position: fixed;
}
.sec-4-2 .service-list > div.flex {
	padding: 60px 0;
	justify-content: space-between;
	align-items: baseline;
}
.sec-4-2 .service-list > div.flex:first-child {
	padding-top: 0;
}
.sec-4-2 .service-list > div.flex > div {
	width: 50%;
}
.sec-4-2 .service-list > div.flex:nth-child(odd) > .img {
	text-align: center;
}
.sec-4-2 .service-list > div.flex:nth-child(even) .text {
	padding-left: 100px;
}
.sec-4-2 .service-list > div .text {
    opacity: 0;
	transform: translateY(20px);
    transition: all 0.6s ease 0.8s;
}
.sec-4-2 .service-list > div .img {
    opacity: 0;
	transform: translateY(20px);
    transition: all 0.6s ease 0.8s;
}
.sec-4-2 .service-list > div .text strong {
	display: block;
	font-size: var(--font-contitle2);
	font-weight: 800;
}
.sec-4-2 .service-list > div .text > span {
	display: block;
	margin: 16px 0 10px;
	font-size: var(--font-header2);
	font-weight: 600;
	color: var(--primary-color);
}
.sec-4-2 .service-list > div .text p {
	font-size: var(--font-subtitle1);
	line-height: 1.2;
	color: var(--gray500-color);
}
.sec-4-2 .service-list > div .text p span {
	display: block;
}
.sec-4-2 .content.on > div .text  {
	filter: blur(0px);
    opacity: 1;
	transform: translateY(0px);
}
.sec-4-2 .content.on > div .img  {
	filter: blur(0px);
    opacity: 1;
	transform: translateY(0px);
}
.sec-4-2 .content.on div.flex:nth-child(1) .text {
	transition-delay: 0.8s;
}
.sec-4-2 .content.on div.flex:nth-child(1) .img {
	transition-delay: 1.2s;
}
.sec-4-2 .content.on div.flex:nth-child(2) .text {
	transition-delay: 2.2s;
}
.sec-4-2 .content.on div.flex:nth-child(2) .img {
	transition-delay: 1.8s;
}
.sec-4-2 .content.on div.flex:nth-child(3) .text {
	transition-delay: 3.8s;
}
.sec-4-2 .content.on div.flex:nth-child(3) .img {
	transition-delay: 4.2s;
}
.sec-4-2 .content.on div.flex:nth-child(4) .text {
	transition-delay: 5.2s;
}
.sec-4-2 .content.on div.flex:nth-child(4) .img {
	transition-delay: 4.8s;
}
.sec-4-2 .content.on div.flex:nth-child(5) .text {
	transition-delay: 5.8s;
}
.sec-4-2 .content.on div.flex:nth-child(5) .img {
	transition-delay: 6.2s;
}
/*//////////////////////////////// sec-4 ////////////////////////////////*/



/*//////////////////////////////// sec-5 ////////////////////////////////*/
.sec-5.section {
	position: relative;
	padding: 0;
	background: var(--primary-color);
	z-index: 2;
	overflow: hidden;
}
.sec-5 .sec-in {
	position: relative;
	height: 408px;
}
.sec-5 .sec-title, .sec-5 .sec-text {
	position: relative;
	text-align: left;
	color: var(--white-color);
	z-index: 2;
}
.sec-5 .img {
	position: absolute;
	top: 0;
	right: -100px;
}
.sec-5 .img img.mobile {
	display: none;
}
/*//////////////////////////////// sec-5 ////////////////////////////////*/




/*//////////////////////////////// sec-6 ////////////////////////////////*/
.sec-6 {
	position: relative;
	background: var(--white-color);
	z-index: 2;
}
.sec-6 .sec-title strong {
	display: inline;
}
.sec-6 .review {
	display: block;
	margin: 35px 0 40px;
	text-align: center;
}
.sec-6 .review .flex {
	gap: 10px;
	align-items: baseline;
	justify-content: center;
}
.sec-6 .review small {
	font-size: var(--font-subtitle1);
}
.sec-6 .review strong {
	font-size: var(--font-contitle);
	color: var(--primary-color);
}
.sec-6 .review img {
	width: 230px;
}
.review-list .swiper-slide {
	padding: 40px 30px;
	background: #e4eef9;
	border-radius: 20px;
}
.review-list .swiper-slide strong {
	font-size: var(--font-header2);
	font-weight: 700;
	color: var(--primary-color);
}
.review-list .swiper-slide ul {
	gap: 5px;
	margin: 15px 0 25px;
}
.review-list .swiper-slide li {
	padding: 5px;
	font-size: var(--font-body3);
	color: var(--white-color);
	text-align: center;
	background: #7190b3;
	border-radius: 5px
} 
.review-list .swiper-slide p {
	min-height: 200px;
	font-size: var(--font-subtitle1);
	line-height: 1.4;
	word-break: keep-all;
} 
.review-list .swiper-slide span {
	display: block;
	width: 100%;
	font-size: var(--font-subtitle1);
	text-align: right;
	color: var(--gray500-color);
} 
/*//////////////////////////////// sec-6 ////////////////////////////////*/



/*//////////////////////////////// sec-11 ////////////////////////////////*/
.sec-11 {
	position: relative;
	margin-bottom: 150px;
	background: var(--black-color);
	z-index: 2;
}
.sec-11 .sec-title {
	color: var(--white-color);
}
.sec-11 .sec-title strong {
	color: var(--primary-color);
}
.sec-11 .sec-text {
	margin-bottom: 35px;
	color: var(--white-color);
}
.sec-11 .sec-text span {
	display: block;
}
/*//////////////////////////////// sec-11 ////////////////////////////////*/



/*//////////////////////////////// sec-7 ////////////////////////////////*/
.sec-7 {
	position: relative;
	width: 90%;
	margin: auto;
	height: 720px;
	border-radius: 20px;
	overflow: hidden;
	z-index: 2;
}
.sec-7 .sec-in {
	position: relative;
	z-index: 2;
}
.sec-7 .sec-title {
	margin-bottom: 35px;
	text-align: left;
	color: var(--white-color);
}
.sec-7 .go-btn {
	background: var(--primary-color);
}
.sec-7 .go-btn:hover {
	background: var(--primary-h-color);
}
.sec-7 .bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 720px;
	background: url("../img/main/banner03.png") no-repeat center / cover;
	transform: translate(-50%, -50%) scale(1.1);
	transition: all .5s ease-in;
}
.sec-7 .bg.on {
	transform: translate(-50%, -50%) scale(1);
}
.sec-7 .go-btn.on {
	filter: blur(0px);
    opacity: 1;
	transform: translateY(0px);
}
/*//////////////////////////////// sec-7 ////////////////////////////////*/



/*//////////////////////////////// sec-8 ////////////////////////////////*/
.sec-8.section {
	position: relative;
	padding: 80px 0 0;
	background: var(--white-color);
	z-index: 2;
}
.sec-8 .sec-in {
	height: 300px;
	background: url("../img/main/banner04-bg.png") no-repeat center / cover;
	border-radius: 20px;
	overflow: hidden;
}
.sec-8 .sec-in > a {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0 80px;
}
.sec-8 .text p {
	font-size: var(--font-header2);
	opacity: 0.8;
}
.sec-8 .text strong {
	display: block;
	margin: 14px 0 28px;
	font-size: var(--font-contitle2);
	line-height: 1.2;
}
.sec-8 .text img {
	transform: translateX(0);
	transition: all .3s ease-in;
}
.sec-8 .sec-in > a:hover .text img {
	transform: translateX(20px);
}
.sec-8 .sec-in > a > .img {
	position: absolute;
	top: 0;
	right: 80px;
}
.sec-8 .sec-in > a > .img img.mobile {
	display: none;
}
/*//////////////////////////////// sec-8 ////////////////////////////////*/



/*//////////////////////////////// sec-9 ////////////////////////////////*/
.sec-9.section {
    position: relative;
	padding: 80px 0;
	background: var(--white-color);
    z-index: 2;
}
/*//////////////////////////////// sec-9 ////////////////////////////////*/

/*//////////////////////////////// sec-13 ////////////////////////////////*/
.sec-13 {
	position: relative;
	background: var(--primary-color);
	z-index: 2;
}

.sec-13 .sec-title strong {
	display: block;	
}
.sec-13 .swiper div {
	margin-top: 15px;
	font-size: var(--font-header2);
	font-weight: 600;
	text-align: center;
}

.sec-13 .sec-con {
	position: relative;	
}
.sec-13 .mySwiper { overflow: hidden; }

.sec-13 .swiperBtn {
    position: absolute;
    top: 50%;
    margin: 0;
    transform: translateY(-50%);
    z-index: 101;
    width: 50px;
    height: 50px;
    background-size: cover;
    background-position: 0 0;
    background-repeat: no-repeat;
    cursor: pointer;
}

.sec-13 .swiperBtn.swiperBtnPrev { left:-25px; background-image:url("../img/btn_prev.png"); }
.sec-13 .swiperBtn.swiperBtnNext { right:-25px; background-image:url("../img/btn_next.png"); }

.sec-13 .swiperPagination { text-align: center; margin-top: 30px; }
.sec-13 .swiperPagination span { margin: 0 7px; }
.sec-13 .swiper-pagination-bullet {
	width:10px;
	height:10px;
}
.sec-13 .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background:#fff;
}

.sec-13 .swiper-slide { width:300px; height:470px;  }
.sec-13 .swiper-slide img { border: 5px solid #333838; height: 100%; }
/*//////////////////////////////// sec-13 ////////////////////////////////*/


@media all and (max-width:1281px){
	.section {padding: 130px 0;}
	.sec-in {width: 90%;}
	.sec-1 {height: 710px; height: 100vh;}
	.sec-1 .text {width: 90%;}
	.sec-1 .text h1 {font-size: 64px;}
	.sec-1 .text .btn-wrap a, .sec-7 .go-btn, .sec-10 .go-btn {width: 190px; height: 56px; line-height: 56px;}
	.count-wrap li img {width: 180px;}
	.count-wrap li span {margin: 30px 0 25px;}
	.sec-4 .top {padding: 130px 0 50px;}
	.sec-4-2 .service-list > div.flex img {width: 380px;}
	.sec-5 .sec-in, .sec-5 .img img {height: 350px;}
	.sec-6 .review {margin: 30px 0 35px;}
	.sec-6 .review img {width: 210px;}
	.sec-7, .sec-7 .bg {height: 560px;}
	.sec-8.section {padding: 50px 0 0;}
	.sec-8 .sec-in {height: 270px;}
	.sec-8 .text strong {margin: 10px 0 25px;}
	.sec-8 .text img {width: 50px;}
	.sec-9.section {padding: 50px 0;}

	.sec-10 .floatLeft {width: 40%;}
	.sec-10 .floatRight {width: 60%;}
	.sec-10 .floatRight .swiper-slide img {width: 419px;}
	.sec-10 .floatRight > .img-wrap {width: 508px;}
	.sec-10 .animated-title {padding: 58px 0; font-size: 110px;}

	.sec-11 {margin-bottom: 130px;}
}

@media all and (max-width:1025px){
	.section {padding: 110px 0;}
	.sec-1 .text h1 {font-size: 58px;}
	.sec-1 .text p {margin-bottom: 40px;}
	.sec-1 .text .btn-wrap a, .sec-7 .go-btn, .sec-10 .go-btn {width: 170px; height: 54px; line-height: 54px;}
	.sec-2 {max-width: 80%; padding: 0 30px; height: 190px;}
	.sec-2 .img img {width: 180px;}
	.count-wrap li img {width: 140px;}
	.count-wrap li span {margin: 20px 0 15px;}
	.count strong {font-size: 38px;}
	.sec-4 .top {padding: 110px 0 50px;}
	.obj-truck {left: 6px; transform: translate(0, -16rem);}
	.obj-truck img {width: 46px;}
	.sec-5 .sec-in, .sec-5 .img img {height: 280px;}
	.sec-5 .img {right: -150px;}
	.review-list .swiper-slide {padding: 30px 20px;}
	.review-list .swiper-slide ul {margin: 15px 0 20px;}
	.review-list .swiper-slide p {min-height: 170px;}
	.sec-7, .sec-7 .bg {height: 460px;}
	.sec-8 .sec-in > a {padding: 0 50px;}
	.sec-8 .sec-in > a > .img {right: 50px;}
	.sec-8 .sec-in > a > .img img {width: 334px;}
	.sec-8 .text img {width: 44px;}

	.sec-10 .floatRight .swiper-slide img {width: 350px;}
	.sec-10 .floatRight > .img-wrap {width: 408px;}

	.sec-11 {margin-bottom: 110px;}
}

@media all and (max-width:877px){
	.section {padding: 100px 0;}
	.sec-text {margin-top: 15px;}
	.sec-1 .text h1 {font-size: 50px;}
	.sec-1 .text p {margin: 15px 0 35px;}
	.sec-1 .text .btn-wrap {gap: 10px;}
	.sec-1 .text .btn-wrap a, .sec-7 .go-btn, .sec-10 .go-btn {width: 160px; height: 50px; line-height: 50px;}
	.sec-2 {padding-top: 40px; height: 220px;}
	.sec-2 a {display: block;}
	.sec-2 .img {top: inherit; transform: inherit; bottom: 0;}
	.sec-2 .img img {width: 150px;}
	.count-wrap {margin-top: 40px;}
	.count-wrap li img {width: 106px;}
	.count-wrap li span {margin: 15px 0 12px;}
	.count strong {font-size: 30px;}	
	.sec-4 .sec-text {padding: 0 30px;}
	.sec-4 .top {padding-top: 100px;}
	.sec-4-2 .service-list > div.flex {align-items: center;}
	.sec-4-2 .service-list > div.flex:nth-child(even) .text {padding-left: 30px;}
	.sec-4-2 .service-list > div .text > span {margin: 12px 0 5px;}
	.obj-truck {left: 6px; transform: translate(0, -16rem);}
	.obj-truck img {width: 38px;}
	.sec-5 .img {top: inherit; bottom: 0;}
	.sec-5 .img img {display: none;}
	.sec-5 .img img.mobile {display: block; height: 250px;}
	.sec-6 .review {margin: 20px 0 35px;}
	.sec-6 .review strong {font-size: 36px;}
	.sec-6 .review img {width: 160px;}
	.sec-7, .sec-7 .bg {height: 360px;}
	.sec-7 .sec-title {margin-bottom: 20px;}
	.sec-8.section {padding: 30px 0 0;}
	.sec-8 .sec-in > a {padding: 0 30px;}
	.sec-8 .sec-in > a > .img img {display: none;}
	.sec-8 .sec-in > a > .img img.mobile {display: block; width: 200px;}
	.sec-8 .sec-in > a > .img {top: inherit; bottom: 0; right: 0;}

	.sec-10.section {padding: 80px 0 30px;}
	.sec-10 .sec-in {flex-direction: column;}
	.sec-10 .floatLeft, .sec-10 .floatRight {width: 100%; float: none;}
	.sec-10 .sec-title img {width: 38px;}
	.sec-10 .go-btn {margin: 25px 0 30px;}
	.sec-10 .animated-title {padding: 48px 0; font-size: 90px;}

	.sec-11 {margin-bottom: 100px;}
	.sec-11 .sec-text {margin-bottom: 25px;}
}

@media all and (max-width:641px){
	.section {padding: 80px 0;}
	.sec-1 {height: 540px; height: 100vh;}
	.sec-1 .text h1 {font-size: 40px;}
	.sec-1 .text .btn-wrap a, .sec-7 .go-btn, .sec-10 .go-btn {width: 140px; height: 44px; line-height: 44px;}
	.sec-1 .sec1-left-bottom-btn { display:block; }
	.sec-1 .sec1-left-bottom-btn a { width: 120px; height: 45px; font-size:14px;  }
	.sec-1 .text .btn-wrap a:first-child img {width: 16px;}
	.count-wrap {flex-direction: column; gap: 30px;}
	.count-wrap li {width: 100%;}
	.count-wrap li img {width: 130px;}
	.sec-4 .top {padding: 80px 0 30px;}
	.sec-4-2 .service-list > div.flex {flex-direction: column; gap: 30px;}
	.sec-4-2 .service-list > div.flex:nth-child(odd) {flex-direction: column-reverse;}
	.sec-4-2 .service-list > div.flex > div {width: 100%; text-align: center;}
	.sec-4-2 .service-list > div.flex:nth-child(even) .text {padding-left: 0;}
	.obj-truck {width: auto; left: 28px;}
	.obj-line {left: 40px;}
	.sec-4-2 .service-list > div.flex {padding: 30px 0;}
	.sec-4-2 .service-list > div.flex img {width: 340px;}
	.sec-4-2 .content.on div.flex:nth-child(1) .text {transition-delay: 0.8s;}
	.sec-4-2 .content.on div.flex:nth-child(1) .img {transition-delay: 0.8s;}
	.sec-4-2 .content.on div.flex:nth-child(2) .text {transition-delay: 1.8s;}
	.sec-4-2 .content.on div.flex:nth-child(2) .img {transition-delay: 1.8s;}
	.sec-4-2 .content.on div.flex:nth-child(3) .text {transition-delay: 2.8s;}
	.sec-4-2 .content.on div.flex:nth-child(3) .img {transition-delay: 2.8s;}
	.sec-4-2 .content.on div.flex:nth-child(4) .text {transition-delay: 3.8s;}
	.sec-4-2 .content.on div.flex:nth-child(4) .img {transition-delay: 3.8s;}
	.sec-4-2 .content.on div.flex:nth-child(5) .text {transition-delay: 4.8s;}
	.sec-4-2 .content.on div.flex:nth-child(5) .img {transition-delay: 4.8s;}
	.sec-5 .img img.mobile {height: 250px;}
	.sec-7, .sec-7 .bg {height: 310px;}
	.sec-7 .sec-title {margin-bottom: 14px;}
	.sec-8 .sec-in {height: 200px;}
	.sec-8 .text strong {position: relative; margin: 8px 0 15px; z-index: 2;}
	.sec-8 .text img {width: 38px;}
	.sec-8 .sec-in > a > .img img.mobile {width: 140px;}
	.sec-9.section {padding: 30px 0;}
	
	.sec-10 .floatRight {overflow: inherit;}
	.sec-10 .floatRight .swiper-slide img {width: auto; max-width: 340px; margin-left: 30px;}
	.sec-10 .floatRight > .img-wrap {width: 100%; max-width: 398px; left: 50%;}
	.sec-10 .animated-title {padding: 38px 0; font-size: 70px;}

	.sec-11 {margin-bottom: 80px;}

	.sec-13 .swiperBtn.swiperBtnPrev { left:-10px; }
	.sec-13 .swiperBtn.swiperBtnNext { right:-10px; }
}

@media all and (max-width:481px){
	.sec-text {margin-top: 10px;}
	.sec-1 {height: 480px; height: 100vh;}
	.sec-1 .text {top: 46%;}
	.sec-1 .text h1 {font-size: 34px;}
	.sec-1 .text p {margin: 10px 0 20px;}
	.sec-2 {max-width: 90%; height: 200px; padding: 30px 20px;}
	.sec-2 .text {font-size: 20px;}
	.sec-2 .img img {width: 130px;}
	.obj-truck {width: auto; left: 18px;}
	.obj-line {left: 30px;}
	.sec-5 .sec-in {height: 250px;}
	.sec-5 .img img.mobile {height: 200px;}
	.sec-5 .sec-text {width: 70%;}
	.review-list .swiper-slide p {min-height: 150px;}

	.sec-11 .sec-text {margin-bottom: 20px;}
	.sec-11 .sec-text span {display: inline;}
}