/* Home Service block start */
#pst_serviceblock {
    margin:0 0 30px;
}
#pst_serviceblock .pst-service-title {    
    font-size: 24px;
    font-weight: 400;
    text-transform: capitalize;
    display: block;
    color: #000000;
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

#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:#999999;    text-transform: capitalize;}
#pst_serviceblock  .pst-image-block{
	display:inline-block;
	vertical-align:top;
    margin: 0 15px 10px  0;	
}
#pst_serviceblock  .service-right{
	display:inline-block;
	vertical-align:top;
    text-align: left;
}
.pst-service-wrapper ul{margin:0;}
#pst_serviceblock .pst-service-item-inner{
	text-align:center;
}
#pst_serviceblock .pst-service-wrapper {
	overflow: hidden;
	border-top: 1px solid #e6e6e6;
}
#pst_serviceblock .pst-service-item{
    padding: 20px 0;
    border-width: 0 1px 0 0;
    border-style: solid;
    border-color: #e6e6e6;
    margin: 30px 0 0;
}
#pst_serviceblock .pst-service-item:last-child {
    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{
	background-position: center;
    background-repeat: no-repeat;
    height: 50px;
    background-size: 45px;
    padding: 0 30px;
    display: 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');
	background-size: 51px;
    background-position: center;
}
#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: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);
  }
}
#pst_serviceblock .pst-service-item:hover .pst-service-title{
	color:#999999;
}
#pst_serviceblock .pst-service-item:hover .pst-service-desc{
	color:#000000;
}
@media (max-width: 991px){
	#pst_serviceblock  .pst-image-block{
		display:inline-block;
		float:none;
		margin:0 0 10px;
	}
	#pst_serviceblock{margin: 50px 0;}

}
@media (max-width: 767px){
	#pst_serviceblock{margin: 0 0 60px 0;}
	#pst_serviceblock  .pst-image-block{
		display:block;
	}
	#pst_serviceblock .pst-service-left {text-align:center;width:100%;margin:10px 0;}
	#pst_serviceblock .pst-service-right{overflow:visible;}
	#pst_serviceblock .pst-service-wrapper{overflow:hidden;    border: none;}
	#pst_serviceblock .service-right {
		text-align: center;
	}
	#pst_serviceblock .pst-service-item {
		border-width: 1px;
		border-style: solid;
	}
	#pst_serviceblock .pst-service-item:last-child {
		border: 1px solid #e6e6e6;
	}
	#pst_serviceblock .pst-service-item:first-child{
		margin-top:0;
	}
}
  
/* Home Service block end */