
/*
#####################################################
##	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);
}

/*** 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 {
	display: block;
	width: 130px;
	height: 2px;
	margin-top: .8rem;
	background-color: var(--primary);
}

@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
#####################################################
*/

