/*****  SERVICIOS  *****/
#services { background-color: #fff; }

.title-section {
	text-align: center;
	width: fit-content;
	margin: 0 auto;
}

.description-section {
	text-align: center;
	width: 70%;
	margin: 15px auto 0;
	font-size: 18px;
	line-height: 22px;
	color: #343A40;
}

#services > div {
	width: 90%;
	margin: 0 auto;
	padding: 50px 0;
}

#list-services, #list-services-procedures {
	width: 90%;
	margin: 0 auto;
	height: auto;
	text-align: center;
	padding: 0 0 40px !important;
}

.service {
	display: inline-block;
	vertical-align: top;
	width: 350px;
	height: auto;
	background-color: #F4F8FB;
	position: relative;
	margin: 10px 7px;
	border-radius: 7px;
	overflow: hidden;
}

.image-service{
	width: 100%;
	height: 200px;
	overflow: hidden;
}

.image-service > div{
	background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	transition: all 0.3s ease;
	width: 100%;
	height: 100%;
	/*filter: blur(1px);*/
}

.service:hover { box-shadow: 0 0 5px 5px #e1ebf2; }

.service:hover .image-service > div{
	-ms-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
	filter: blur(0px);
}

.text-service {
	text-align: center;
	font-size: 16px;
	padding: 20px 0 10px;
	height: 190px;
	line-height: 20px;
}

.text-service > h3{
	width: 90%;
	margin: 0 auto;
	margin-top: 1em;
	margin-bottom: 1em;
	color: #005CA2;
	font-size: 20px;
}

.text-service > p, .text-service > ul {
	width: 85%;
	margin: 0 auto;
	margin-top: 1em;
	margin-bottom: 1em;
	color: #343A40;
	font-size: 15px;
}

.text-service > ul{
	text-align: left;
	margin: 0 auto;
    width: fit-content;
}

.icon-service {
	width: 70px;
	height: 70px;
	position: absolute;
	top: 150px;
	background-color: #263238;
	border-radius: 80px;
	left: 5%;
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
}

.service:hover .icon-service { left: 80%; background-color: #005CA2; }

.service:hover .text-service > h3 { color: #00A6C7; }

/*.service:hover .icon-service img{
	filter: brightness(0) saturate(100%) invert(28%) sepia(27%) saturate(473%) hue-rotate(243deg) brightness(99%) contrast(86%);
}*/

.icon-service > div{
	/*height: 65px;*/
    margin: 0 auto;
}

.icon-service > div > img, .icon-service > a > img {
	width: 55%;
    margin-left: 1px;
    margin-top: 4px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(271deg) brightness(108%) contrast(101%);
}

.service-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 16px;
	box-sizing: border-box;
	background: #e8f4fa;
	color: #005CA2;
	font-size: 14px;
	text-align: center;
}

.service-icon-placeholder {
	display: block;
	padding: 8px;
	color: #fff;
	font-size: 10px;
	line-height: 1.2;
	text-align: center;
}

/***** FIN SERVICIOS  *****/


@media only screen and (max-width: 599px) {
	.service-description {
		text-align: center;
		height: auto;
		padding-bottom: 30px;
	}
	
	.title-service{
		padding-top: 30px !important;
	}

	.service {
		width: 100%;
	}
	
	.text-service > h3{
		font-size: 20px;
	}
	
	.text-service {
		font-size: 16px;
		height: auto;
		padding-bottom: 10px;
		text-align: center;
		padding-top: 25px;
	}

	.image-service > div{
		filter: blur(0px);
	}
}


@media only screen and (min-width: 600px) and (max-width: 767px){
	.service {
		width: 100%;
		margin: 10px 3px;
	}
	
	.text-service > h3{
		font-size: 20px;
	}
	
	.text-service{
		font-size: 16px;
		height: auto;
		padding-bottom: 10px;
		text-align: center;
		padding-top: 25px;
	}

	.image-service > div{
		filter: blur(0px);
	}
}


@media only screen and (min-width: 768px) and (max-width: 991px){
	.service {
		width: 330px;
	}

	.text-service{
		height: auto;
		min-height: 260px;
	}
}