/*****  SERVICIOS  *****/
#services{
	background-color: white;
    background-image: linear-gradient(rgba(29, 29, 29, 0), rgba(29, 29, 29, 0)), url(../img/banners/services.jpg);
    background-size: cover;
    background-attachment: fixed;
	background-position: center;
}

#services .title{
	font-size: 55px !important;
}

#services .subtitle{
	font-size: 35px !important;
	color: #B17B1B;
}

.title-section{
	text-align: center;
	padding-top: 50px !important;
	margin-bottom: 20px !important;
	width: fit-content;
	margin: 0 auto;
}

.description-section{
	text-align: center;
	/*width: 60%;*/
    margin: 0 auto;
    font-size: 18px;
	margin-top: 15px;
}

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

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

.service{
	display: inline-block;
	vertical-align: top;
	width: 360px;
	height: auto;
	background-color: white;
	position: relative;
	margin: 10px 10px;
	border-radius: 7px;
	overflow: hidden;
	padding-bottom: 15px;
}

/*.service:hover{
	background-color: #F8E1DB;
}*/

.image-service{
	width: 100%;
    height: 250px;
	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: 0px 0px 5px 5px #efeded;
	-webkit-box-shadow: 0px 0px 5px 5px #efeded;
}*/

.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: 14px;
    line-height: 20px;
    padding-top: 25px;
    height: 62px;
	overflow: hidden;
	transition: all 0.3s ease;
}

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

/*.service:hover .text-service > h3{
	color: #73563d;
}*/

.text-service > p{
	width: 85%;
	margin: 0 auto;
	margin-top: 1em;
	margin-bottom: 1em;
	color: black;
}

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

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

.service:hover .icon-service{
	/*left: 80%;*/
	background-color: #B17B1B;
	border-radius: 10px;
}

.service:hover .text-service{
	height: auto;
}

/*.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{
	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%);
}

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

/*  ACORDEÓN  */
.text-service .positioning-accordions{
	width: 85%;
    margin: 0 auto;
}

/*.acordeon__contenedor{
	margin: 25px 0px;
}*/

.acordeon__titulo {
    /*color: #2041e2; */
    /* background: #f9f9f9; */
    line-height: 25px;
    /* padding: 0 1em; */
    font-size: 15px;
    margin: 0;
    border-bottom: 1px solid #a68365;
    /* box-shadow: 0 -1px 0 0 #000 inset; */
    /* text-shadow: 1px 1px #000; */
    cursor: pointer;
    font-weight: bold;
    /* text-transform: uppercase; */
    /* letter-spacing: 1px; */
    background-repeat: no-repeat !important;
    text-align: left;
	position: relative;
}

.acordeon__titulo:not(.open):hover{
    /*filter: drop-shadow(2px 4px 6px black);*/
	background-color: #fff2e7;
}

.acordeon__titulo > div{
	/*background: linear-gradient(to right, rgba(14, 5, 111,0) 27%, rgba(14, 5, 111,1) 47%);*/
	width: 100%;
	height: 100%;
}

.acordeon__titulo label{
    cursor: pointer;
}

.acordeon__contenido {
	display: none;
    margin: 0;
    text-align: justify;
    font-size: 15px;
    background: #fff2e7;
    padding: 1px 10px 1px 10px;
}

.acordeon__contenido li{
	margin: 10px 0px;
}

.toggle-icon{
	position: absolute;
    top: 1px;
    right: 15px;
    font-size: 23px;
    transform: rotate(-90deg);
	font-weight: 100;
}

.toggle-icon:before{
	content: "\2039";
}

.acordeon__titulo.open span.toggle-icon:before {
    content: "\203A";
}

.open{
	background-color: #a68365;
	color: white;
}
/*  FIN ACORDEÓN  */


@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%;
		margin: 10px 0px;
	}
	
	.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: 400px;
	}
}
