.serviceBox{
    font-family: 'K2D', sans-serif;
    text-align: center;
    padding: 20px 15px 60px;
	background:#ffffff;
}
.serviceBox .service-icon{
    color: #EB1F52;
    background-color: #fff;
    font-size: 50px;
    line-height: 100px;
    height: 100px;
    width: 100px;
    margin: 0 auto 40px;
    border-radius: 50%;
    border: 2px solid #EB1F52;
    display: block;
    transition: all 0.3s;
}
.serviceBox:hover .service-icon{
    border-color: transparent;
    box-shadow: 0 0 10px #fff, 0 -10px 0 10px #EB1F52;
}
.serviceBox .title{
    color: #303030;
    font-size: 20px;
    text-transform: uppercase;
    padding: 0 10px;
    margin-bottom: 15px;
    transition: all 0.3s;
}
.serviceBox:hover .title{ color:#EB1F52; }
.serviceBox .description{
    font-size: 16px;
    text-align: center;
    line-height: 27px;
    margin-bottom: 20px;
}
.serviceBox .read-more{
    color: #fff;
    background: #EB1F52;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: -56px;
    padding: 5px;
    display: block;
    transform: rotateX(-90deg);
    transform-origin: top center;
    -webkit-clip-path: polygon(0 0, 100% 0, 75% 100%, 25% 100%);
    clip-path: polygon(0 0, 100% 0, 75% 100%, 25% 100%);
    transition:all 0.5s;
}
.serviceBox:hover .read-more{
    box-shadow: 0 0 10px #fff inset;
    transform: rotateX(0);
}
.serviceBox .read-more:hover{
    letter-spacing: 2px;
    text-shadow: 0 0 5px #000;
    text-decoration: none;
}
.serviceBox.blue .service-icon{
    color: #34C3EB;
    border-color: #34C3EB;
}
.serviceBox.blue:hover .service-icon{
    border-color: transparent;
    box-shadow:0 0 10px #fff, 0 -10px 0 10px #34C3EB;
}
.serviceBox.blue:hover .title{ color: #34C3EB; }
.serviceBox.blue .read-more{ background: #34C3EB; }
.serviceBox.orange .service-icon{
    color: #FF8214;
    border-color: #FF8214;
}
.serviceBox.orange:hover .service-icon{
    border-color: transparent;
    box-shadow:0 0 10px #fff, 0 -10px 0 10px #FF8214;
}
.serviceBox.orange:hover .title{ color: #FF8214; }
.serviceBox.orange .read-more{ background: #FF8214; }
.serviceBox.green .service-icon{
    color: #8FB900;
    border-color: #8FB900;
}
.serviceBox.green:hover .service-icon{
    border-color: transparent;
    box-shadow:0 0 10px #fff, 0 -10px 0 10px #8FB900;
}
.serviceBox.green:hover .title{ color: #8FB900; }
.serviceBox.green .read-more{ background: #8FB900; }
@media only screen and (max-width:990px){
    .serviceBox{ margin: 0 0 50px; }
}