@charset "utf-8";
/*
 * Copyright inpleworks, Co.
*/

/* 스크롤 다운 마우스 */
.slider-section .down-scroll {
	z-index: 9;
	position: absolute;
	left: calc(50% - 20px);
	bottom: 20px;
	width: 40px;
	height: 40px;
	text-align: center;
	border: none;
    outline: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}
.slider-section .down-scroll .mouse {		
	position: relative;
	width: 22px;
	height: 38px;
	border-radius: 100px;
	background: #4e5559 linear-gradient(transparent 0%, transparent 50%, #ffffff 50%, #ffffff 100%);
	background-size: 100% 200%;
	-webkit-animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
	animation: colorSlide 5s linear infinite, nudgeMouse 5s ease-out infinite;
}
.slider-section .down-scroll .mouse:before, 
.slider-section .down-scroll .mouse:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.slider-section .down-scroll .mouse:before {
	width: 20px;
	height: 36px;
	background-color: #000;
	border-radius: 100px;
}
.slider-section .down-scroll .mouse:after {
	background-color: #ffffff;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	-webkit-animation: trackBallSlide 5s linear infinite;
	animation: trackBallSlide 5s linear infinite;
}
@-webkit-keyframes colorSlide {
0% {
	background-position: 0% 100%;
}
20% {
	background-position: 0% 0%;
}
21% {
	background-color: #4e5559;
}
29.99% {
	background-color: #ffffff;
	background-position: 0% 0%;
}
30% {
	background-color: #4e5559;
	background-position: 0% 100%;
}
50% {
	background-position: 0% 0%;
}
51% {
	background-color: #4e5559;
}
59% {
	background-color: #ffffff;
	background-position: 0% 0%;
}
60% {
	background-color: #4e5559;
	background-position: 0% 100%;
}
80% {
	background-position: 0% 0%;
}
81% {
	background-color: #4e5559;
}
90%, 100% {
	background-color: #ffffff;
}
}  
@keyframes colorSlide {
0% {
	background-position: 0% 100%;
}
20% {
	background-position: 0% 0%;
}
21% {
	background-color: #4e5559;
}
29.99% {
	background-color: #ffffff;
	background-position: 0% 0%;
}
30% {
	background-color: #4e5559;
	background-position: 0% 100%;
}
50% {
	background-position: 0% 0%;
}
51% {
	background-color: #4e5559;
}
59% {
	background-color: #ffffff;
	background-position: 0% 0%;
}
60% {
	background-color: #4e5559;
	background-position: 0% 100%;
}
80% {
	background-position: 0% 0%;
}
81% {
	background-color: #4e5559;
}
90%, 100% {
	background-color: #ffffff;
}
}
@-webkit-keyframes trackBallSlide {
0% {
	opacity: 1;
	transform: scale(1) translateY(-10px);
}
6% {
	opacity: 1;
	transform: scale(0.9) translateY(5px);
}
14% {
	opacity: 0;
	transform: scale(0.4) translateY(20px);
}
15%, 19% {
	opacity: 0;
	transform: scale(0.4) translateY(-10px);
}
28%, 29.99% {
	opacity: 1;
	transform: scale(1) translateY(-10px);
}
30% {
	opacity: 1;
	transform: scale(1) translateY(-10px);
}
36% {
	opacity: 1;
	transform: scale(0.9) translateY(5px);
}
44% {
	opacity: 0;
	transform: scale(0.4) translateY(20px);
}
45%, 49% {
	opacity: 0;
	transform: scale(0.4) translateY(-10px);
}
58%, 59.99% {
	opacity: 1;
	transform: scale(1) translateY(-10px);
}
60% {
	opacity: 1;
	transform: scale(1) translateY(-10px);
}
66% {
	opacity: 1;
	transform: scale(0.9) translateY(5px);
}
74% {
	opacity: 0;
	transform: scale(0.4) translateY(20px);
}
75%, 79% {
	opacity: 0;
	transform: scale(0.4) translateY(-10px);
}
88%, 100% {
	opacity: 1;
	transform: scale(1) translateY(-10px);
}
}
@keyframes trackBallSlide {
0% {
	opacity: 1;
	transform: scale(1) translateY(-10px);
}
6% {
	opacity: 1;
	transform: scale(0.9) translateY(5px);
}
14% {
	opacity: 0;
	transform: scale(0.4) translateY(42px);
}
15%, 19% {
	opacity: 0;
	transform: scale(0.4) translateY(-10px);
}
28%, 29.99% {
	opacity: 1;
	transform: scale(1) translateY(-10px);
}
30% {
	opacity: 1;
	transform: scale(1) translateY(-10px);
}
36% {
	opacity: 1;
	transform: scale(0.9) translateY(5px);
}
44% {
	opacity: 0;
	transform: scale(0.4) translateY(20px);
}
45%, 49% {
	opacity: 0;
	transform: scale(0.4) translateY(-10px);
}
58%, 59.99% {
	opacity: 1;
	transform: scale(1) translateY(-10px);
}
60% {
	opacity: 1;
	transform: scale(1) translateY(-10px);
}
66% {
	opacity: 1;
	transform: scale(0.9) translateY(5px);
}
74% {
	opacity: 0;
	transform: scale(0.4) translateY(20px);
}
75%, 79% {
	opacity: 0;
	transform: scale(0.4) translateY(-10px);
}
88%, 100% {
	opacity: 1;
	transform: scale(1) translateY(-10px);
}
}
@-webkit-keyframes nudgeMouse {
0% {
	transform: translateY(0);
}
20% {
	transform: translateY(8px);
}
30% {
	transform: translateY(0);
}
50% {
	transform: translateY(8px);
}
60% {
	transform: translateY(0);
}
80% {
	transform: translateY(8px);
}
90% {
	transform: translateY(0);
}
}
@keyframes nudgeMouse {
0% {
	transform: translateY(0);
}
20% {
	transform: translateY(8px);
}
30% {
	transform: translateY(0);
}
50% {
	transform: translateY(8px);
}
60% {
	transform: translateY(0);
}
80% {
	transform: translateY(8px);
}
90% {
	transform: translateY(0);
}
}


/* SLIDER 
---------------------------------------------------------------------------- */
.slider-section {
	position: relative;
}
.xet-swiper-wrp {
	width: 100%;    
	padding: 0;
	overflow: hidden;
	position: relative;
	background-color: #1b1b1b;
}
.xet-swiper-wrp .swiper-slide {
	overflow: hidden;
	-webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform,-webkit-transform;
}
/* Image */
.xet-swiper-wrp .swiper-images {
	position: relative;
	width: 100%;
	height: 600px;
	overflow: hidden;
}
.xet-swiper-wrp .swiper-images .slide-bgimg {    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

/* Live + Captions */
.xet-swiper-wrp .live-caption-wrp {
	z-index: 3;
	position: absolute;
	top: 60px;
	left: 0;
	right: 0;
	bottom: 60px;
}
.xet-swiper-wrp .live-caption-wrp>div {
	display: flex;
	align-items: center;
	height: 100%;
}
.xet-swiper-wrp .live-caption-wrp .video-container {
	background: url(../../../img/loader.gif) no-repeat center center #000;
	box-shadow: 5px 5px 15px rgba(0,0,0,0.30);
}
/* Captions */
.xet-swiper-wrp .swiper-captions {}
.xet-swiper-wrp .swiper-captions .swiper-caption {
	display: flex;
	align-items: center;
	justify-content: center;
	word-break: keep-all;
	padding: 0 20px;
	height: 100%;
	color: #fff;
}

/* Title */
.xet-swiper-wrp .swiper-captions h1 {
	font-size: 28px;
}
.xet-swiper-wrp .swiper-captions h1>span {
    display: block;
    opacity: 0;
    transform: translate3d(0,-100%,0);
    transition: opacity,transform .4s ease-out;
    transition-duration: .4s;
    -webkit-transform: translate3d(0,-100%,0);
    -moz-transform: translate3d(0,-100%,0);
    -ms-transform: translate3d(0,-100%,0);
    -o-transform: translate3d(0,-100%,0);
}
.xet-swiper-wrp .swiper-captions .swiper-slide-active h1>span, 
.xet-swiper-wrp .swiper-captions .swiper-slide-duplicate-active h1>span {
    opacity: 1;
    transform: translate3d(0,0%,0);
    transition-delay: .5s !important;
}
/*
.xet-swiper-wrp .swiper-captions  .js-text-wave {
	opacity: 0;
	font-size: 28px;
	transition: all .1s cubic-bezier(.72,.16,.345,.875);
}
.xet-swiper-wrp .swiper-captions .js-text-wave div {
    display: inline-block;
    overflow: hidden;
}
.xet-swiper-wrp .swiper-captions .js-text-wave.complete {
    opacity: 1;
}
.xet-swiper-wrp .swiper-captions .js-text-wave div span {
    display: inline-block;
    transform: translate3d(0,100%,0);
    transition: transform 1s cubic-bezier(.19,1,.22,1);
}
.xet-swiper-wrp .swiper-captions .swiper-slide-active .js-text-wave div span, 
.xet-swiper-wrp .swiper-captions .swiper-slide-duplicate-active .js-text-wave div span {
    transform: translate3d(0,0,0);
}
*/
/* SubTitle */
.xet-swiper-wrp .swiper-captions .swiper-slide h5 {
	margin-top: 20px;
	font-size: 14px;
	font-weight: 400;
}
.xet-swiper-wrp .swiper-captions .swiper-slide h5>span {
	display: block;
    opacity: 0;
    transform: translate3d(0,100%,0);
    transition: opacity,transform .4s ease-out;
    transition-duration: .4s;
}
.xet-swiper-wrp .swiper-captions .swiper-slide-active h5>span, 
.xet-swiper-wrp .swiper-captions .swiper-slide-duplicate-active h5>span {
    opacity: 1;
    transform: translate3d(0,0%,0);
    transition-delay: .5s !important;
}

/* More button */
.xet-swiper-wrp .swiper-captions .swiper-slide .xet-more {
	display: none;
	opacity: 0;
    transform: translate3d(0,100%,0);
    transition: opacity,transform .4s ease-out;
    transition-duration: .4s;
}
.xet-swiper-wrp .swiper-captions .swiper-slide-active .xet-more, 
.xet-swiper-wrp .swiper-captions .swiper-slide-duplicate-active .xet-more {
    opacity: 1;
    transform: translate3d(0,0%,0);
    transition-delay: .9s !important;
}
.xet-swiper-wrp .swiper-captions .swiper-slide .xet-more .xet-btn {
	min-width: auto;
}

.xet-swiper-wrp .swiper-captions .swiper-slide .xet-more .xet-btn.estimate {
	padding-left: 48px;
    background: url(../../../img/icon-message.svg) no-repeat 24px center;
    background-size: 24px 24px;
}
.xet-swiper-wrp .swiper-captions .swiper-slide .xet-more .xet-btn.call {
	padding-left: 48px;
    background: url(../../../img/icon-call.svg) no-repeat 24px center;
    background-size: 24px 24px;
}
/*---------------------------------------------------------------------------- */



/* 공통 
---------------------------------------------------------------------------- */
.intro-section {
	overflow: hidden;
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: #fff;
}
.intro-section h1 {
	font-size: 28px;
	text-align: center;
}
.intro-section h1>.thin {
	display: block;
	font-size: 80%;
}

.intro-section .item .desc h4 {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 700;
}
.intro-section .item .desc p {
	font-size: 14px;
}
/*---------------------------------------------------------------------------- */



/* Service 
---------------------------------------------------------------------------- */
.intro-section.seriveWrp {
	background-color:#f7f7f9;
}
.intro-section.seriveWrp .item {
	display: block;
	position: relative;
	min-height: 120px;
	padding: 20px;
	margin-bottom: 20px;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0px 0px 16px rgba(0,0,0,0.10);
}
.intro-section.seriveWrp .item .moreBtnWrp {
	display: none;
}
.intro-section.seriveWrp .item .icon {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 40px;
}
.intro-section.seriveWrp .item .icon.service-icon3 {
	width: 48px;
}
.intro-section.seriveWrp .item .icon img {}
.intro-section.seriveWrp .item .desc {
	color: #707070;
}
.intro-section.seriveWrp .item .desc h4 {
	word-break: keep-all;
	color: #004295;
}
.intro-section.seriveWrp .item .desc h4>i {
	float: right;
}
.intro-section.seriveWrp .item .desc p {
	padding-right: 70px;
}

/* Process 
---------------------------------------------------------------------------- */
.intro-section.processWrp {
	position: relative;
	background-color: #e8ebf0;
}
.intro-section.processWrp .item-container {
	padding: 40px 0 0;
}
.intro-section.processWrp .item-container .item {
	position: relative;
	height: 300px;
	padding: 60px 20px 20px;
	text-align: left;
	border-radius: 8px;
	background-color: #fff;
	color: #707070;
	box-shadow: 0px 0px 16px rgba(0,0,0,0.1);
	transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}
.intro-section.processWrp .item-container .item>h1 {
	font-family: 'Roboto';
	font-weight: 900;
	font-size: 72px;
	position: absolute;
	top: -42px;
	left: 15px;
	color: #3b3b3b;
	text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}
.intro-section.processWrp .item-container .item>h1:after {
	z-index: 0;
	content: "";
	position: absolute;
	left: 15px;
	bottom: 19px;
	width: 200%;
	height: 2px;
	background-color: #1b1b1b;
}
.intro-section.processWrp .item-container .item>h4 {
	margin-bottom: 20px;
	color: #1b1b1b;
}

/* Swiper */
.intro-section.processWrp .swiper-container {
	overflow: visible;
	padding-bottom: 64px;
}
.intro-section.processWrp .item-container .swiper-slide-active .item,
.intro-section.processWrp .item-container .swiper-slide-active .item>h1,
.intro-section.processWrp .item-container .swiper-slide-active .item>h4 {
	color: #004295;
}
.intro-section.processWrp .item-container .swiper-slide-active .item>h1:after,
.intro-section.processWrp .item-container .swiper-slide-active .item ul.ul-list>li:after {
	background-color: #004295;
}
.intro-section.processWrp .item-container .swiper-button-next,
.intro-section.processWrp .item-container .swiper-button-prev {
	z-index: 15;;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	top: auto;
	bottom: 0px;
	background-size: 36px 36px;
	background-color: #ababab;
	background-repeat: no-repeat;
	background-position: center;
}
.intro-section.processWrp .item-container .swiper-button-next {
	right: 20px;
	background-image: url(../../../img/arrow-right.svg);
}
.intro-section.processWrp .item-container .swiper-button-prev {
	left: 20px;
	background-image: url(../../../img/arrow-left.svg);
}
.intro-section.processWrp .item-container .swiper-button-next:after, 
.intro-section.processWrp .item-container .swiper-button-prev:after {
	display: none;
}

.intro-section.processWrp .item-container .swiper-pagination {
	bottom: 15px;
}
.intro-section.processWrp .item-container .swiper-pagination-bullet {
	width: 30px;
	height: 4px;
	border-radius: 0;
	margin: 0;
}
.intro-section.processWrp .item-container .swiper-pagination-bullet-active {
	background-color: #0090FF
}


/* slick */
.intro-section.processWrp .item-container .slick-current .item,
.intro-section.processWrp .item-container .slick-current .item>h1,
.intro-section.processWrp .item-container .slick-current .item>h4 {
	color: #004295;
}
.intro-section.processWrp .item-container .slick-current .item>h1:after,
.intro-section.processWrp .item-container .slick-current .item ul.ul-list>li:after {
	background-color: #004295;
}
/* slick */
.intro-section.processWrp .item-container .slick-list {
	overflow: visible;
	margin-bottom: 20px;
}
.intro-section.processWrp .item-container .slick-list .slick-slide {
	padding: 0 10px;
}

.intro-section.processWrp .process-slick-custom {
	position: relative;
	height: 50px;
}
.intro-section.processWrp .process-slick-custom .slick-button-next,
.intro-section.processWrp .process-slick-custom .slick-button-prev {
	position: absolute;
	bottom: 0px;
	z-index: 15;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	background-size: 36px 36px;
	background-color: #ababab;
	background-repeat: no-repeat;
	background-position: center;
}
.intro-section.processWrp .process-slick-custom .slick-button-next {
	right: 20px;
	background-image: url(../../../img/arrow-right.svg);
}
.intro-section.processWrp .process-slick-custom .slick-button-prev {
	left: 20px;
	background-image: url(../../../img/arrow-left.svg);
}

/*---------------------------------------------------------------------------- */



/* Info 
---------------------------------------------------------------------------- */
.intro-section.infoWrp {
	text-align: left;
	background-color: #004295;
	color: #fff;
}
.intro-section.infoWrp h1 {}
.intro-section.infoWrp .number>strong {
	font-size: 36px;
	font-weight: 700;
}
.intro-section.infoWrp .item {
	padding: 32px;
	border-radius: 8px;
	box-shadow: 0px 0px 16px rgba(0,0,0,0.1);
	border: 1px solid #0050b3;
}
.intro-section.infoWrp .icon {
	float: left;
	margin-right: 32px;
	width: 68px;
}
.intro-section.infoWrp .icon img {}
.intro-section.infoWrp .desc {
	display: flex;
	align-items: center;
	text-align: left;
	color: #fff;
}
/*---------------------------------------------------------------------------- */



/* Reference */
.intro-section.referenceWrp {
	background-color: #F1F6FD;
}
/*---------------------------------------------------------------------------- */



/* News */
.intro-section.newsWrp {
	background-color: #e8ebf0;
}
/*---------------------------------------------------------------------------- */



/* Partner */
.intro-section.partnerWrp {
	background-color: #f5f5f5;
}
.intro-section.partnerWrp .partner-tab {
	display: flex;
	justify-content: center;
	text-align: center;
}
.intro-section.partnerWrp .partner-tab li {
	position: relative;
	cursor: pointer;
	margin: 0 10px;
	font-size: 16px;
	font-weight: 700;
}
.intro-section.partnerWrp .partner-tab li.active {
	color: #0090FF;
}
.intro-section.partnerWrp .partner-tab li.active:after {
	content: "";
	position: absolute;
	bottom: 0;
	width: calc(100% + 0px);
	height: 2px;
	background-color: #0090FF;
}
.intro-section.partnerWrp .partner-tab li.active:nth-child(1):after {
	right: 0;
}
.intro-section.partnerWrp .partner-tab li.active:nth-child(2):after {
	left: 0;
}
.intro-section.partnerWrp .tab-content {
	height: 0;
	opacity: 0;
	visibility: hidden;
}
.intro-section.partnerWrp .tab-content.active {
	height: auto;
	opacity: 1;
	visibility: visible;
}

/*---------------------------------------------------------------------------- */



/*---------------------------------------------------------------------------- */
/* Responsive 
/*---------------------------------------------------------------------------- */

/* 가로모드 
---------------------------------------------------------------------------- */
@media (max-width: 767px) and (orientation:landscape) {
	.xet-swiper-wrp .swiper-images {}
} 

/* XXS 
---------------------------------------------------------------------------- */
@media (max-width: 320px) {
	.xet-swiper-wrp .swiper-images {}
}

/* XS 
---------------------------------------------------------------------------- */
@media (max-width: 575px) {
	
}
/* SM 
---------------------------------------------------------------------------- */
@media (min-width: 576px) {
	/* Slider */
	.xet-swiper-wrp .swiper-images {
		height: 660px;
	}

	/* Service */
	.intro-section.seriveWrp .item {
		height: 140px;
	}
}

/* MD
---------------------------------------------------------------------------- */
@media (min-width: 768px) {
	/* Slider */
	.xet-swiper-wrp .swiper-images {
		height: 500px;
	}
	.xet-swiper-wrp .swiper-captions .swiper-caption {
		padding: 0;
	}
	/* Slider More button */
	.xet-swiper-wrp .swiper-captions .swiper-slide .xet-more {
		display: block;
	}
	.xet-swiper-wrp .swiper-captions .swiper-slide .xet-more .xet-btn.estimate {
		margin-right: 8px;
	}

	/* 공통 */
	.intro-section {
		padding-top: 80px;
		padding-bottom: 80px;
	}	

	/* Service */
	.intro-section.seriveWrp .desc {
		height: auto;
	}


	/* Process */
	.intro-section.processWrp .item-container .item {
		height: 260px;
	}
	

	.intro-section.infoWrp .icon {}
}

/* LG 
---------------------------------------------------------------------------- */
@media (min-width: 992px) {
	/* Slider */
	.xet-swiper-wrp .swiper-images {
		height: 600px;
	}
	.xet-swiper-wrp .swiper-captions h1 {
		font-size: 32px;
	}
	.xet-swiper-wrp .live-caption-wrp {
		top: 80px;
	}

	/* 공통 */
	.intro-section {
		padding-top: 100px;
		padding-bottom: 100px;
		text-align: center;
	}
	.intro-section h1 {
		font-size: 36px;
	}
	.intro-section .item .desc h4 {
		font-size: 20px;
	}

	/* Service */
	.intro-section.seriveWrp .item {
		height: 260px;
		padding: 20px;
		margin-bottom: 0;
	}
	.intro-section.seriveWrp .item .icon {
		position: relative;
		right: auto;
		bottom: auto;
		width: auto;
		margin-bottom: 20px;
	}
	.intro-section.seriveWrp .item .icon.service-icon3 {
		width: auto;
	}
	.intro-section.seriveWrp .item .icon img {
		height: 50px;
	}
	.intro-section.seriveWrp .item .desc h4>i {
		display: none;
	}
	.intro-section.seriveWrp .item .desc p {
		padding: 0;
	}
	.intro-section.seriveWrp .item:hover {
		box-shadow: 0px 0px 12px rgba(0,66,149,0.3);
	}

	/* Process */
	.intro-section.processWrp .item-container .item {
		padding: 60px 30px 20px;
	}
	.intro-section.processWrp .item-container .item>h1 {
		left: 20px;
	}

	.intro-section.processWrp .item-container .slick-list .slick-slide {
		padding: 0 15px;
	}


	/* Info */
	.intro-section.infoWrp .number>strong {
		font-size: 42px;
	}

	/* Partner */
	.intro-section.partnerWrp .partner-tab {
		text-align: center;
	}
	.intro-section.partnerWrp .partner-tab li {
		margin: 0 0 0 30px;
	}
	.intro-section.partnerWrp .partner-tab li.active:after {
		width: calc(100% + 0px);
	}
	.intro-section.partnerWrp .partner-tab li.active:nth-child(2):after {
		left: auto;
		right: 0;
	}
	


}

/* XL 
---------------------------------------------------------------------------- */
@media (min-width: 1200px) {

	/* Siler */
	.xet-swiper-wrp .swiper-captions h1 {
		font-size: 36px;
	}
	.xet-swiper-wrp .swiper-captions .swiper-caption {
		padding-right: 100px;
	}
	.xet-swiper-wrp .swiper-captions .swiper-slide h5 {
		font-size: 16px;
	}

	/* 공통 */
	.intro-section {
		padding-top: 120px;
		padding-bottom: 120px;
	}
	
	/* Service */
	.intro-section.seriveWrp .desc {
		padding: 0;
	}

	
}

/* XXL 
---------------------------------------------------------------------------- */
@media (min-width: 1400px) {

	/* Siler */
	.xet-swiper-wrp .swiper-images {
		height: 700px;
	}
	.xet-swiper-wrp .swiper-captions .swiper-caption {
		padding-right: 180px;
	}
	  
	.intro-section {
		text-align: center;
		padding-top: 140px;
		padding-bottom: 140px;
	}
	
	/* Process */
	.intro-section.processWrp .item-container .slick-list .slick-slide {
		padding: 0 20px;
	}
	

}