.demo{ background: #f6fcfd; }
.serviceBox{
    margin: 15% 0;
    padding: 30px;
    background: rgb(255, 255, 255);
    border: 1px solid #eee;
    border-bottom-color: #428ef8;
    text-align: center;
    position: relative;
    transition: all 0.5s ease 0s;
    height: 270px;
}
.serviceBox:hover{ border: 1px solid #428ef8; cursor: pointer; }
.serviceBox:before,
.serviceBox:after{
    content: "";
    width: 70%;
    height: 5px;
    background: #428ef8;
    opacity: 0;
    position: absolute;
    top: -3px;
    left: 35%;
    transform: translateX(-50%);
    transition: all 0.5s ease 0s;
}
.serviceBox:hover:before,
.serviceBox:hover:after{
    opacity: 1;
    left: 50%;
}
.serviceBox:after{
    top: auto;
    bottom: -3px;
}
.serviceBox .service-icon{
    width: 65px;
    height: 65px;
    line-height: 65px;
    border-radius: 50%;
    background: #428ef8;
    margin: 0 auto 20px;
    font-size: 36px;
    color: #fff;
}
.serviceBox .title{
    font-size: 20px;
    font-weight: bold;
    color: #252525;
    margin: 0 0 10px 0;
    transition: all 0.5s ease 0s;
}
.serviceBox:hover .title{ opacity: 0; }
.serviceBox .description{
    font-size: 14px;
    color: #7a7a7a;
    line-height: 23px;
    margin: 12% 0;
    transition: all 0.5s ease 0s;
    white-space: pre-line;
    text-align: justify;
}
.serviceBox:hover .description{
    margin-top: -20px;
    padding-bottom: 20px;
}
@media only screen and (max-width:990px){
    .serviceBox{ margin: 10% 0px;}
}

.btn{
    border: none;
    border-radius: 0;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    margin-top: 25%;
}
.btn:hover{
    color: #fff;
}
.btn:before,
.btn:after{
    content: "";
    position: absolute;
    transition: all 0.25s ease 0s;
}
.btn.btn-lg:before,
.btn.btn-lg:after{
    width: 24px;
    height: 24px;
}
.btn:before{
    top: -5px;
    right: -5px;
}
.btn:after{
    bottom: -5px;
    left: -5px;
}
.btn:hover:before,
.btn:hover:after{
    width: 100%;
    height: 100%;
}
.btn.blue{
    background: #428ef8;
}
.btn.blue:before{
    border-top: 2px solid #428ef8;
    border-right: 2px solid #428ef8;
}
.btn.blue:after{
    border-bottom: 2px solid #428ef8;
    border-left: 2px solid #428ef8;
}
#into{
    padding-bottom: 45px;
}
@media only screen and (max-width: 767px){
    .btn{ margin-top: 0%; margin-bottom: 30px;}
}