.serviceBox{
    background: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    padding: 15px 17px;
    border: 6px solid #ddd;
    border-top-color: #0090d60090d6;
    /* border-bottom-color: #0090d6; */
    border-radius: 29px;
    box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
    position: relative;
}

.serviceBox:before{
    content: '';
    border: 3px dashed #ddd;
    border-radius: 20px;
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 8px;
    right: 8px;
}

.serviceBox .service-icon{
    color: #21BCB8;
    font-size: 50px;
    line-height: 50px;
    margin: 0 0 11px;
}

.serviceBox .title{
    color: #333;
    font-size: 20px;
    font-weight: 600;
    /* text-transform: uppercase; */
    margin: 0 0 7px;
}

.serviceBox .description{
    color: #999;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

.serviceBox.blue{
    border-top-color: #3D729B;
    border-bottom-color: #3D729B;
}
.serviceBox.blue .service-icon{ color: #3D729B; }

.serviceBox.red{
    border-top-color: #ED5543;
    border-bottom-color: #ED5543;
}
.serviceBox.red .service-icon{ color: #ED5543; }

.serviceBox.purple{
    border-top-color: #924963;
    border-bottom-color: #924963;
}
.serviceBox.purple .service-icon{ color: #924963; }

@media only screen and (max-width: 990px){
    .serviceBox{ margin: 0 0 30px; }
}


.buttonDownload {
	display: inline-block;
	position: relative;
	padding: 10px 25px;
  
	background-color: #4CC713;
	color: white;
  
	font-family: sans-serif;
	text-decoration: none;
	font-size: 0.9em;
	text-align: center;
	text-indent: 15px;
}

.buttonDownload:hover {
	background-color: #333;
	color: white;
}

.buttonDownload:before, .buttonDownload:after {
	content: ' ';
	display: block;
	position: absolute;
	left: 15px;
	top: 52%;
}

/* Download box shape  */
.buttonDownload:before {
	width: 10px;
	height: 2px;
	border-style: solid;
	border-width: 0 2px 2px;
}

/* Download arrow shape */
.buttonDownload:after {
	width: 0;
	height: 0;
	margin-left: 3px;
	margin-top: -7px;
  
	border-style: solid;
	border-width: 4px 4px 0 4px;
	border-color: transparent;
	border-top-color: inherit;
	
	animation: downloadArrow 2s linear infinite;
	animation-play-state: paused;
}

.buttonDownload:hover:before {
	border-color: #4CC713;
}

.buttonDownload:hover:after {
	border-top-color: #4CC713;
	animation-play-state: running;
}

/* keyframes for the download icon anim */
@keyframes downloadArrow {
	/* 0% and 0.001% keyframes used as a hackish way of having the button frozen on a nice looking frame by default */
	0% {
		margin-top: -7px;
		opacity: 1;
	}
	
	0.001% {
		margin-top: -15px;
		opacity: 0;
	}
	
	50% {
		opacity: 1;
	}
	
	100% {
		margin-top: 0;
		opacity: 0;
	}
}



.imagebox {
    position: relative;
}

.imagebox .box-wrapper {
    overflow: hidden;
    position: relative;
    margin-right: 5px;
    margin-bottom: 4px;
}

.imagebox .box-header {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: -webkit-linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.7) 100%) repeat-x;
    background: -moz-linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.7) 100%) repeat-x;
    background: -o-linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, 0.7) 100%) repeat-x;
    background: linear-gradient(transparent 0, rgb(0 0 0 / 78%) 100%) repeat-x;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    /* background: linear-gradient(to bottom, rgba(30,87,153,0) 65%,rgb(0 0 0) 100%) !important; */
}

.imagebox .box-header .box-title {
    font-size: 24px;
    margin: 0;
    position: relative;
    font-weight: 600;
}

.imagebox .box-header .box-title:after {
    width: 50px;
    height: 3px;
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    /* background-color: #df4296; */
}

.imagebox .box-header .box-title a {
    color: #ffffff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}

.imagebox .box-header .box-subtitle {
    margin: 5px 0 0 0;
    color: #ffffff;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    position: relative;
}

.imagebox .box-header .box-subtitle:before {
    font-family: "FontAwesome";
    content: "\f0a9";
    display: inline-block;
    margin: 0 6px 0 0;
}

.imagebox .box-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: #ffffff;
    padding: 22px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
    visibility: hidden;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
    filter: alpha(opacity=0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.imagebox .box-content:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(28 72 157 / 76%);
    z-index: -1;
    /* -webkit-opacity: 0.9; */
    -khtml-opacity: 0.9;
    -moz-opacity: 0.9;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=90);
    filter: alpha(opacity=90);
}

.imagebox .box-content .box-button {
    margin-top: 25px;
}

.imagebox:hover .box-header {
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
         -o-transform: translateX(100%);
            transform: translateX(100%);
}

.imagebox:hover .box-content {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
    visibility: visible;
    -webkit-opacity: 1;
     -khtml-opacity: 1;
       -moz-opacity: 1;
            opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
    filter: alpha(opacity=100);
}
.box-desc{
	 margin: 0 0 6px;
	 display: block;
	 line-height: 1.2;
	 font-size: 24px;
	 text-align: center;
	 padding-top: 74px;
	 font-weight: 600;
}
.box-desc a{
     color: #ffffff;
     text-align: center;
}
.box-desc i{
	 color: #ffffff;
	 margin: 0 0 6px;
	 display: block;
	 line-height: 1.2;
	 font-size: 40px;
	 text-align: center;
}

.department {
	border-bottom: 3px solid #ac0e2f;
	border-radius: 0 0 2px 2px;
	margin-bottom: 30px;
	min-height: 380px;
	overflow: hidden;
	position: relative;
}
.department .thumb {
	overflow: hidden;
	position: relative;
}
.department .thumb .round-style {
	background-color: #fbf7f8;
	border-radius: 50%;
	bottom: 12px;
	height: 70px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	width: 70px;
}
.department:hover .thumb .round-style {
	bottom: 76px;
}
.department .department-details {
	background-color: #fbf7f8;
	bottom: -65px;
	padding: 0 15px 20px;
	position: absolute;
	text-align: center;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	width: 100%;
}
.department .department-details h4 {
	color: #ac0e2f;
	font-weight: 700;
	font-size: 24px;
}
.department-details .round-style {
    background: #fbf7f8 none repeat scroll 0 0;
    border-radius: 50%;
    height: 91px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    top: -39px;
    width: 100px;
}
.department:hover .department-details {
	bottom: 0;
}
.department .department-details .icon {
	color: #FA4DAC;
	display: inline-block;
	font-size: 30px;
	position: relative;
	top: -15px;
}
.department .department-details .title {
	margin-bottom: 10px;
	margin-top: 0px;
}
.department .department-details .details {
	font-size: 15px;
	padding-bottom: 8px;
}
.department .department-details a.btn-thm {
	margin-top: 15px;
}
.department:hover .department-details a.btn-thm {
	margin-top: 10px;
}