
/*
#####################################################
##	Estilos Generales
#####################################################
*/


/**** FUENTES ****/

@font-face {
	font-family: Gotham;
	src:url(../fonts/Gotham-Book.otf) format("truetype");
	font-weight:300;
	font-style:normal
}
@font-face {
	font-family: Gotham-bold;
	src:url(../fonts/Gotham-Bold.otf) format("truetype");
	font-weight:400;
	font-style:normal
}
@font-face {
	font-family: Gotham-black;
	src:url(../fonts/GothamBlack.otf) format("truetype");
	font-weight:400;
	font-style:normal
}



body {
	background: var(--white);
	color: var(--body);
	font-family: Gotham;
	overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
	font-family: Gotham-black;
}

.font-family-primary {
	font-family: Gotham;
}
.font-family-secundary {
	font-family: Gotham-bold;
}
.font-family-tertiary {
	font-family: Gotham-black;
}

button:focus {
	outline: none;
}


a {
	transition: all .6s ease;
	color: var(--body);
}

.default_cta {
	background-color: var(--primary);
	font-weight: bold;
	color: #ffffff;
	padding: .6rem 2rem;
	border: 2px solid var(--primary);
	transition: .1s ease-in-out all;
	text-decoration: underline;
}

.default_cta:hover {
	background-color: #ffffff;
	color: var(--body);
}

/*** Página predeterminada ***/

.contenedor-pagina--predeterminada p {
	display: block;
	width: 100%;
}


/*** Inputs Generales ***/

input:focus {
	outline: none;
}

input[type=submit] {
	cursor: pointer;
}

input[type=submit]:disabled {
	opacity: .8;
}

input[type=checkbox] {
	border: 1px solid #ACACB7;
    width: 15px;
    height: 15px;
	border-radius: 4px;
	position: relative;
}

input[type=checkbox]:checked:after {
	content: "";
    display: block;
    width: 7px;
    height: 14px;
    border: solid var(--primary);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    bottom: 8px;
	left: 6px;
	top: -4px;
}

input[type=radio] {
	border: 1px solid #A2A2A2;
    width: 15px;
    height: 15px;
	border-radius: 50%;
	position: relative;
}

input[type=radio]:checked:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: var(--primary);
	position: absolute;
}


.borde-titulo,
.borde-titulo-dos {
	display: block;
	width: 130px;
	height: 2px;
	margin-top: .8rem;
	background-color: var(--primary);
}

@media screen and (min-width: 992px) {
	.borde-titulo-dos {
		margin-left: auto;
	}
}

@media (min-width: 992px) {
	.borde-titulo {
		height: 3px;
		margin-top: 1.5rem;
	}	
}

/*
#####################################################
##	FIN Estilos Generales
#####################################################
*/


/*
#####################################################
##	BLOQUE EMPRESAS POLÍGONO
#####################################################
*/


.poligono-empresas-card {
	overflow: hidden;
	border-radius: 6px;
	position: relative;
	display: flex;
	display: -ms-flexbox;
	align-items: center;
	justify-content: center;
	height: fit-content;
	height: -webkit-fill-available;
	height: 245px;
}

@media (min-width: 992px) {
	.poligono-empresas-card {
		height: 400px;
	}	
}

@media (min-width: 1400px) {
	.poligono-empresas-card {
		height: 500px;
	}	
}

.poligono-empresas-card:hover .poligono-empresas-card-fondo {
	background: rgb(0,0,0);
	background: linear-gradient(160deg, rgba(0,0,0,0.8) 98%, rgba(0,0,0,0.3) 72%, rgba(0,0,0,0) 17%);
	transition: .1s ease-in-out all;
}

.poligono-empresas-card-fondo {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 500;
	background: rgb(0,0,0);
	background: linear-gradient(160deg, rgba(0,0,0,0.8) 17%, rgba(0,0,0,0.3) 72%, rgba(0,0,0,0) 98%);
	transition: .1s ease-in-out all;
}

.poligono-empresas-card-texto {
	position: absolute;
	z-index: 1000;
	width: 85%;
	top: 40px;
}

@media (min-width: 992px) {
	.poligono-empresas-card-texto {
		top: 130px;
		width: 70%;
	}
}

.poligono-empresas-dexcripcion--contenedor p {
	color: #ffffff;
	font-size: 14px;
}

@media (min-width: 992px) {
	.poligono-empresas-dexcripcion--contenedor p {
		font-size: 16px;
	}
}

.contenedor-pacelas-mapas--card {
	border: 1px solid var(--light);
	opacity: 1;
	transition: .2s all ease-in-out;
}

.contenedor-pacelas-mapas--card:hover {
	opacity: .6;
	transition: .2s all ease-in-out;
}


/*
#####################################################
##	FIN BLOQUE EMPRESAS POLÍGONO
#####################################################
*/


/*
#####################################################
##	START CARROUSEL HOME
#####################################################
*/


.row .col_image {
	margin-bottom: .5rem;
	width: 100%;
	border: 4px solid #ffffff;
	transition: .5s ease-in-out all;
	position: relative;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-direction: row;
	-ms-flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	overflow: hidden;
}

@media screen and (min-width: 768px) {
	.row .col_image {
		margin-bottom: 1rem;
	}
}

.row .col_image .picante_icono {
	width: 30px;
	height: 30px;
	background-color: var(--secondary);
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-direction: row;
	-ms-flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 5px;
	right: 5px;
	border-radius: 50%;
	overflow: hidden;
	padding: .2rem;
	z-index: 100;
}

.row .col_image .picante_icono img {
	width: 100%;
	height: auto;
}

.row .col_image .col_image__next,
.row .col_image .col_image__previous {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 0;
	background-color: rgb(227 187 41 / 30%);
	color: #ffffff;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	font-size: 16px;
	z-index: 100;
	display: none;
}

.row .col_image .col_image__next i {
	margin-right: -2px;
}

.row .col_image .col_image__previous i {
	margin-left: -2px;
}

.row .col_image .col_image__next {
	right: 5px;
}

.row .col_image .col_image__previous {
	left: 5px;
}

.row:nth-child(2n) .col_image {
	transform: translateX(-250%);
}

@media screen and (min-width: 768px) {
	.row .col_image {
		width: 100%;
		margin-bottom: 0;
	}

	.row:nth-child(2n) .col_image {
		margin-right: 0;
		margin-left: 10%;
	}
}

.row .col_image img {
	width: 100%;
	height: auto;
}

.col_image__img {
	transition: .6s ease-in-out all;
}

.contenedor_info__carrousel p {
	width: 100%;
	text-align: center;
}
@media screen and (min-width: 992px) {
	.contenedor_info__carrousel p {
		text-align: right;
	}
}

/*
#####################################################
##	END CARROUSEL HOME
#####################################################
*/


/*
#####################################################
##	START COMPANIES GROUP
#####################################################
*/

.contenedor_empresas_grupo .nombre_empresas_grupo {
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	flex-direction: column;
	-ms-flex-direction: column;
	justify-content: center;
	align-items: center;
}

.contenedor_empresas_grupo .nombre_empresas_grupo .titulo_empresa {
	font-family: Gotham-bold;
	font-size: 20px;
}

@media screen and (min-width: 768px) {
	.contenedor_empresas_grupo .nombre_empresas_grupo .titulo_empresa {
		font-size: 26px;
	}
}

@media screen and (min-width: 992px) {
	.contenedor_empresas_grupo .nombre_empresas_grupo .titulo_empresa {
		font-size: 36px;
	}
}

.contenedor_empresas_grupo .nombre_empresas_grupo .localizacion_empresa {
	font-weight: bold;
	display: block;
	margin: .5rem 0;
}
.contenedor_empresas_grupo .nombre_empresas_grupo .web_empresa a {
	color: var(--primary);
	text-decoration: underline;
}

.contenedor_empresas_grupo .nombre_empresas_grupo img {
	width: 200px;
	height: auto;
}

@media screen and (min-width: 998px) {
	.contenedor_empresas_grupo .nombre_empresas_grupo img {
		width: auto;
		height: 150px;
	}
}


/*
#####################################################
## END COMPANIES GROUP
#####################################################
*/


/*
#####################################################
##	START FORM HOME
#####################################################
*/

.contenedor_form_contact__home {
	background-color: #333333;
}

.linea-titulo-contacto {
	height: 3px;
	width: 130px;
	background-color: var(--primary);
	display: block;
}
.contenedor-form-contacto--home form p input {
	background-color: transparent;
}

.contenedor-form-contacto--home form p input[type="text"],
.contenedor-form-contacto--home form p input[type="tel"],
.contenedor-form-contacto--home form p input[type="email"] {
	padding: .5rem 1.5rem;
	border: 1px solid #ffffff;
	border-radius: 6px;
	color: #ffffff;
	font-size: 16px;
	width: 100%;
}

.contenedor-form-contacto--home form p label {
	color: #ffffff;
	font-weight: bold;
}

.contenedor-form-contacto--home form p input::placeholder {
	font-size: 16px;
	color: #ffffff;
}

.contenedor-form-contacto--home form p textarea {
	padding: .5rem 1.5rem;
	border: 1px solid #ffffff;
	border-radius: 6px;
	background-color: transparent;
	color: #ffffff;
	font-size: 16px;
	height: 150px;
	max-height: 200px;
	width: 100%;
}

.contenedor-form-contacto--home form p textarea::placeholder {
	font-size: 16px;
	color: #ffffff;
}

.contenedor-form-contacto--home .contacto--formulario-campos_checkPrivacidad .wpcf7-list-item {
	margin: 0 !important;
}

.contenedor-form-contacto--home .contacto--formulario-campos_checkPrivacidad .wpcf7-list-item label {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.contenedor-form-contacto--home .contacto--formulario-campos_checkPrivacidad {
	font-size: 14px;
}

.contenedor-form-contacto--home .contacto--formulario-campos_checkPrivacidad input {
	margin-right: .5rem;
}

.contenedor-form-contacto--home .contacto--formulario-campos_checkPrivacidad a {
	color: #ffffff;
	text-decoration: underline;
}

.contenedor-form-contacto--home form p input[type="submit"] {
	background-color: #ffffff;
	color: #ffffff;
	padding: .5rem 2.5rem;
	border: 1px solid #ffffff;
	border-radius: 6px;
	color: var(--primary);
	font-weight: bold;
}

.contenedor-form-contacto--home form p input[type="submit"]:hover {
	background-color: transparent;
	color: var(--body);
}

/*
#####################################################
##	END HOME FORM
#####################################################
*/

.img_border__radious {
	border-radius: 8px;
	overflow: hidden;
}

/*
#####################################################
##	START BLOG
#####################################################
*/

.contenedor_img_content_blog {
	display: flex;
	display: -ms-flexbox;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 250px;
	overflow: hidden;
}

@media screen and (min-width: 992px) {
	.contenedor_img_content_blog {
		height: 350px;
	}
}

.contenedor_img_content_blog img {
	width: 100%;
	height: auto;
	position: absolute;
}

.contenedor_text_single_post p {
	margin-bottom: .8rem;
}

.contenedor_text_single_post img {
	width: 100%;
	height: auto;
}

/*
#####################################################
##	END BLOG
#####################################################
*/