    /*Fade Hover Effect*/
/*
    .hover-fade a {
      display: block;
      position: relative;
      overflow: hidden;
      background-color: #333;
    }
    .hover-fade img {
      width: 100%;
      height: auto;
      -webkit-transition: all 0.5s ease-in-out;
      -moz-transition: all 0.5s ease-in-out;
      -o-transition: all 0.5s ease-in-out;
      -ms-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
    }
    .hover-fade:hover img {
      -webkit-transform: scale(1.2);
      -moz-transform: scale(1.2);
      -o-transform: scale(1.2);
      -ms-transform: scale(1.2);
      transform: scale(1.2);
      -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0.5)";
      filter: alpha(opacity=0.5);
      opacity: 0.5;
    }
*/

.serviceBox{
    background: #FFF;
/*    font-family: 'Lato', sans-serif;*/
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition:all 0.3s ease 0s;
}

.serviceBox{ box-shadow: 0 0 5px #c7c7c7; }
.serviceBox:hover{ box-shadow: 0 0 5px #DA4155; }

.serviceBox .service-icon{
    color: #fff;
    font-size: 50px;
    width: 120px;
    height: 120px;
    line-height: 120px;
    margin: 0 auto 40px;
    display: block;
    position: relative;
    z-index: 1;
}

.serviceBox .service-icon:before{
    content: "";
    background: linear-gradient(to right,#EE4758 49%,#DA4155 50%);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 0 5px #fff inset;
    border: 5px solid #DA4155;
    border-right: none;
    border-top: none;
    transform:rotate(45deg);
    position: absolute;
    top:0;
    left: 0;
    z-index: -1;
    transition: all 0.5s ease 0s;
}

.serviceBox:hover .service-icon:before{ transform: rotate(315deg); }

.serviceBox .title{
    color: #DA4155;
	font-size:36px;
	letter-spacing: .1em;
/*    font-weight: 600;*/
    margin: 0 0 10px;
    transition: all 0.3s ease 0s;
}

.serviceBox:hover .title{ letter-spacing: 1px; }

.serviceBox .description{
    color: #6f6f6f;
    font-size: 14px;
    line-height: 27px;
}

.serviceBox.orange:hover{ box-shadow: 0 0 5px #E87C2C; }

.serviceBox.orange .service-icon:before{
    background: linear-gradient(to right,#F68E2F 49%, #E87C2C 50%);
    border-color: #E87C2C;
}

.serviceBox.orange .title{ color: #E87C2C; }

.serviceBox.blue:hover{ box-shadow: 0 0 5px #0AAEAD; }

.serviceBox.blue .service-icon:before{
    background: linear-gradient(to right,#3CC0CC 49%, #0AAEAD 50%);
    border-color: #0AAEAD;
}

.serviceBox.blue .title{ color: #0AAEAD; }

.serviceBox.gray:hover{ box-shadow: 0 0 5px #37485C; }

.serviceBox.gray .service-icon:before{
    background: linear-gradient(to right,#3C506B 49%, #37485C 50%);
    border-color: #37485C;
}

.serviceBox.gray .title{ color: #37485C; }

@media only screen and (max-width:990px){
    .serviceBox{ margin: 0 0 30px; }
}
