/* Home Service block start */

#pst_serviceblock {
	clear: both;
	padding: 0;
	margin-bottom: 40px;
	overflow: hidden;
}

#pst_serviceblock .pst-service-title {
	font-size: 14px;
    text-transform: uppercase;
    line-height: 24px;
    font-weight: 600;
    color: #3d3d3d;
    display: block;
    margin-bottom: 5px;
	transition-duration: 300ms;
    -webkit-transition-duration: 300ms;
    -moz-transition-duration: 300ms;
    -ms-transition-duration: 300ms;
    -o-transition-duration: 300ms;
}

#pst_serviceblock .pst-service-left {
	float: left;
	margin-top: 15px;
	width: 40%;
}

#pst_serviceblock .pst-service-right {
	overflow: hidden;
}

#pst_serviceblock .pst-service-desc {
	color: #808080;
	font-size: 13px;
}

#pst_serviceblock .pst-image-block {
	display: inline-block;
	vertical-align: top;
	margin: 0 0 10px 0;
}

#pst_serviceblock .pst-image-block:hover {}

#pst_serviceblock .service-right {
	display: inline-block;
	vertical-align: top;
	text-align: left;
	margin: 10px 0 0 0;
}

#pst_serviceblock ul {
	margin: 0 -15px;
}

#pst_serviceblock li.pst-service-item {
	padding: 0 15px;
}

#pst_serviceblock .pst-service-item-inner {
	padding: 21px;
	text-align: center;
	background-color: #F7F7F7;
}

#pst_serviceblock .pst-service-wrapper {
	overflow: hidden;
	/*border-width: 1px 0 1px 0;
	border-style: solid;
	border-color: #eee;*/
}

#pst_serviceblock .pst-service-item-inner:nth-child(4) {
	border: none;
}

#pst_serviceblock .pst-service-item:hover img {
	-webkit-transform: scale(1.3);
	-moz-transform: scale(1.3);
	-ms-transform: scale(1.3);
	-o-transform: scale(1.3);
	transform: scale(1.3);
	-webkit-transition-duration: 200ms;
	-moz-transition-duration: 200ms;
	-ms-transition-duration: 200ms;
	-o-transition-duration: 200ms;
	transition-duration: 200ms;
}

#pst_serviceblock .pst-service-item img {
	-webkit-transition-duration: 200ms;
	-moz-transition-duration: 200ms;
	-ms-transition-duration: 200ms;
	-o-transition-duration: 200ms;
	transition-duration: 200ms;
}

#pst_serviceblock .pst-service-item .pst-image-icon {
	position: relative;
	background-repeat: no-repeat;
	background-size: 46px;
	background-position: center;
	width: 50px;
	height: 50px;
	line-height: 50px;
	display: inline-block;
	vertical-align: top;
	margin: 10px 10px 0 0;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
}

#pst_serviceblock .pst-service-item:hover .pst-image-block {
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}

#pst_serviceblock .pst-service-item:hover .pst-image-icon {
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
}

#pst_serviceblock .pst-service-item:nth-child(1) .pst-image-icon {
	background-image: url('../img/service-1.svg');
}

#pst_serviceblock .pst-service-item:nth-child(1):hover .pst-image-icon {
	background-image: url('../img/service-1-hover.svg');
}

#pst_serviceblock .pst-service-item:nth-child(2) .pst-image-icon {
	background-image: url('../img/service-2.svg');
	
}

#pst_serviceblock .pst-service-item:nth-child(2):hover .pst-image-icon {
	background-image: url('../img/service-2-hover.svg');
}

#pst_serviceblock .pst-service-item:nth-child(3) .pst-image-icon {
	background-image: url('../img/service-3.svg');
}

#pst_serviceblock .pst-service-item:nth-child(3):hover .pst-image-icon {
	background-image: url('../img/service-3-hover.svg');
}

#pst_serviceblock .pst-service-item:nth-child(4) .pst-image-icon {
	background-image: url('../img/service-4.svg');
}

#pst_serviceblock .pst-service-item:nth-child(4):hover .pst-image-icon {
	background-image: url('../img/service-4-hover.svg');
}

#pst_serviceblock .pst-service-item:hover .pst-image-icon {

	animation-duration: 1s;
	animation-timing-function: linear;
	animation-name: "bounceIn";
	webkit-animation-duration: 1s;
	-webkit-animation-timing-function: linear;
	-webkit-animation-name: "bounceIn";
	-moz-animation-duration: 1s;
	-moz-animation-timing-function: linear;
	-moz-animation-name: "bounceIn";
}

@keyframes bounceIn {
	from,
	20%,
	40%,
	60%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
	}
	0% {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		transform: scale3d(.9, .9, .9);
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		transform: scale3d(.97, .97, .97);
	}
	to {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}

@media (max-width: 1499px) {
	#pst_serviceblock .pst-service-item-inner {
		text-align: center;
	}
	#pst_serviceblock .pst-image-block {
		display: block;
	}
	#pst_serviceblock .service-right {
		text-align: center;
	}
	#pst_serviceblock .pst-service-title {
		font-size: 16px;
	}
}

@media (max-width: 1299px) {
	#pst_serviceblock .pst-service-item-inner {
		padding: 10px;
	}
	#pst_serviceblock .pst-service-desc {
		font-size: 12px;
	}
}

@media (max-width: 991px) {
	#pst_serviceblock li.pst-service-item {
		margin-bottom: 30px;
	}
	#pst_serviceblock .pst-service-item-inner {
		padding: 30px;
		clear: both;
	}
	#pst_serviceblock .service-right {
		display: block;
	}
	#pst_serviceblock {
		overflow: hidden;
	}
	#pst_serviceblock .pst-service-item .pst-image-icon {
		margin: 0;
	}
}

@media (max-width: 767px) {
	#pst_serviceblock ul {
		margin: 0;
	}
	#pst_serviceblock li.pst-service-item {
		padding: 0;
		width: 100%;
	}
}


/* Home Service block end */