/*Services*/

section.services .container-fluid {
	padding: 0;
}

section.services .row {
	max-width: 100%;
}

.services-item {
	display: flex;
	background-size: cover;
	height: 29em;
	position: relative;
	flex-direction: column;
	padding: 50px 75px 20px 25px;
	justify-content: flex-end;
}

.services-item::before {
	content: "";
	display: block;
	width: 100%;
	height: 59%;
	position: absolute;
	left: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 124, 194, 0.00) 0%, #007CC2 100%);
}

.services-item > * {
	display: block;
	position: relative;
	z-index: 1;
	color: #FFF;
/*	text-transform: capitalize;*/
}

.services-item svg {
	position: absolute;
	top: 25px;
	left: 25px;
}

.services-item .excerpt {
	margin-top: 25px;
	min-height: 82px;
}

.services-item::after {
	content: "";
	width: 32px;
	height: 9px;
	background: #007CC2;
	position: absolute;
	top: 34px;
	z-index: 1;
	left: 45px;
}

.services .row > .col-md-4:nth-child(2) .services-item::after  {
	background: #C6006F;;
}

.services .row > .col-md-4:nth-child(2)  .services-item::before {
	background: linear-gradient(180deg, rgba(198, 0, 111, 0.00) 0%, #C6006F 100%);
}

.services .row > .col-md-4:nth-child(3) .services-item::after  {
	background: #492F92;
}	

.services .row > .col-md-4:nth-child(3)  .services-item::before {
	background: linear-gradient(180deg, rgba(73, 47, 146, 0.00) 0%, #492F92 100%);
}

.services-item > span {
	display: flex;
	flex-direction: column;
}

@media (max-width: 1440px){
	.services-item > span {
		min-height: 195px;
	}
}

@media (max-width: 1220px){
	.services-item > span {
		min-height: 222px;
	}
}

@media (max-width: 480px){
	.services-item {
		height: 22em;
		padding: 50px 25px 20px 25px;
		text-align: center;
	}

	.services-item .excerpt {
		margin-top: 10px;
		height: auto;
	}

	
}