@charset "UTF-8";


/*
    font-family: 'Roboto', sans-serif;
    font-family: 'Oswald', sans-serif;
    font-family: 'Anton', sans-serif;
 */


@import url('https://fonts.googleapis.com/css?family=Anton|Oswald:300,400,500|Roboto:300,300i,400,400i,500,500i,700,700i&display=swap');



/*== ESTILOS GENERALES ==*/
* {
	margin: 0;
	padding: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	height: 100vh;
	background: #fff;
	font-family: 'Roboto', sans-serif;
	font-size: 1.25em;
	-webkit-text-size-adjust: 1.25em;
	-ms-text-size-adjust: 1.25em;
	line-height: 1.5;
	font-weight: 300;
	text-align: center;
}
h1,h2,h3,h4 {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 400;
	margin-top: 0;
	margin-bottom: 1.5em;
}
p {
	text-align: justify;
	line-height: 1.4;
	margin-bottom: 2em;
}
p:last-child {
	margin-bottom: 0;
}
img {
	display: block;
	width: 100%;
	border: 0;
}
span.melvick {
	text-transform: uppercase;
	font-weight: 500;
	font-family: 'Oswald', sans-serif;
}
.wraper {
	width: 100%;
	height: 100%;
}
/*== BARRA DE NAVEGACION ==*/
.navbar {
	position: fixed;
	top: 0;
	width: 100%;
	padding: 0 5%;
	height: 50px;
	background-color: rgba(0,112,120,1);
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 5;
	-webkit-box-shadow: 0 2px 4px 0 rgba(0,0,0,.4);
	-moz-box-shadow: 0 2px 4px 0 rgba(0,0,0,.4);
	box-shadow: 0 2px 4px 0 rgba(0,0,0,.4);
}
.navbar .logotipo {
	/*outline: thin solid yellow;*/
	margin-right: 1em;
	display: flex;
	align-items: center;
}
.navbar .logotipo img {
	width: 40px;
	margin-right: 12px;
}
.navbar .logotipo span {
	color: #fff;
	font-family: 'Anton', sans-serif;
	font-size: 26px;
}
.navbar ul {
	flex: 1;
	/*outline: thin solid yellow;*/
	margin: 0 auto;
	list-style: none;
	display: flex;
	justify-content: flex-end;
}
.navbar ul li {
	margin: 0;
}
.navbar ul li a {
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 400;
	padding: 0 25px;
	line-height: 50px;
	color: #fff;
	-webkit-transition: background .3s ease-in-out;
	-moz-transition: background .3s ease-in-out;
	-ms-transition: background .3s ease-in-out;
	-o-transition: background .3s ease-in-out;
	transition: background .3s ease-in-out;
}
.navbar ul li a:hover {
	color: rgb(185,233,238);
	background:rgba(0,0,0,.5);
}
/*== ESTILOS SECCIONES ==*/
section {
	width: 100%;
	padding: 6em 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	scroll-snap-align: center;
}
section.upper p {
	font-size: 2.5rem;
	text-align: center;
}
section.primero {
	height: 100vh;
	position: relative;
	overflow: hidden;
	background: url(../images/bg.jpg) no-repeat 95% 95%;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
}
section.primero .contenedor {
	flex: none;
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
section.primero .lateral {
	width: 300px;
}
section.primero p {
	color: #fff;
	font-size: 3.25vw;
	font-weight: 300;
	text-align: left;
	background-color: rgba(0,0,0,.6);
	padding: 14px 1em;
}
section.segundo {
	background: #DCDFE2;
}
section.segundo img {
	width: 100%;
	border: 0;
	-webkit-box-shadow: 0 0 4px 1px rgba(0,0,0,.2);
	-moz-box-shadow: 0 0 4px 1px rgba(0,0,0,.2);
	box-shadow: 0 0 4px 1px rgba(0,0,0,.2);
}
section.tercero {
	background: url(../images/servicios.jpg) no-repeat center center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}
section.cuarto {
	background: #fff;
}
section.quinto {
	background: url(../images/cctvfondo.jpg) no-repeat center right;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}
section.quinto ul {
	/*outline: thin solid coral;*/
	margin: 0 auto;
	text-align: left;
	padding-left: 1.25em;
}
section.quinto li {
	margin-bottom: .5em;
}
section.quinto li:last-child {
	margin-bottom: 0;
}
.contenedor	{
	/*outline: thin solid red;*/
	position: relative;
	margin: 0 auto;
	width: 90%;
	max-width: 1300px;
}
.dos-columnas {
	/*outline: thin solid aqua;*/
	display: flex;
	justify-content: space-between;
}
.dos-columnas .columna {
	/*outline: thin solid lightblue;*/
	width: 45%;
}
.dos-columnas .columna .valor {
	text-align: left;
	padding-left: 1.125em;
}
.dos-columnas .columna .valor li {
	margin-bottom: 2.5em;
}
.dos-columnas .columna .valor li:last-child {
	margin-bottom: 0;
}
.tres-columnas {
	/*outline: thin solid aqua;*/
	margin-bottom: 3.5em;
	display: flex;
	justify-content: space-between;
}
.tres-columnas .columna {
	width: 30%;
	background: #fff;
	-webkit-box-shadow: 0 0 5px 1px rgba(0,0,0,.35);
	-moz-box-shadow: 0 0 5px 1px rgba(0,0,0,.35);
	box-shadow: 0 0 5px 1px rgba(0,0,0,.35);
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.tres-columnas .columna:hover {
	-webkit-box-shadow: 0 0 10px 6px rgba(0,0,0,.75);
	-moz-box-shadow: 0 0 10px 6px rgba(0,0,0,.75);
	box-shadow: 0 0 10px 6px rgba(0,0,0,.75);
}
.tres-columnas .columna h4 {
	color: #000;
	margin-top: 1.25em;
}
.tres-columnas .columna p {
	color: #333;
	padding: 0 1em 1em 1em;
	text-align: center;
}
.bloque {
	/*outline: thin solid blue;*/
	margin-bottom: 2.75em;
}
.bloque:last-child {
	margin-bottom: 0;
}
.bloque h4 {
	text-align: left;
}
.bloque ul {
	text-align: left;
	padding-left: 1.15em;
}
.bloque ul li {
	margin-bottom: .35em;
}
.bloque ul li:last-child {
	margin-bottom: 0;
}
.contacto {
	text-align: left;
	list-style: none;
	padding-left: 0;
}
.contacto li {
	display: flex;
	margin-bottom: 30px;
}
.contacto li p {
	text-align: left;
}
.contacto li span {
	margin-right: 12px;
	color: rgb(0,112,120);
	margin-top: 5px;
}
.contacto li a {
	color: #000;
	text-decoration: none;
}
/* === ESTILOS FORMULARIO === */
#caja_container {
	/*outline: thin solid crimson;*/
	width:95%;
}
input,
select,
textarea {
	margin:10px 0 10px 0;
	padding: 10px;
	font-family: sans-serif;
	font-size: 18px;
	background-color: rgba(255,255,255,1);
	color: #555;
	border: none;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
	-webkit-box-shadow: 0 0 2px 1px rgba(0,0,0,.4);
	-moz-box-shadow: 0 0 2px 1px rgba(0,0,0,.4);
	-ms-box-shadow: 0 0 2px 1px rgba(0,0,0,.4);
	box-shadow: 0 0 2px 1px rgba(0,0,0,.4);
}
input,
select {
	width: 100%;
}
select option.pares {
	background-color: #e9e9e9;
}
textarea {
	width: 100%;
	min-height: 150px;
	max-height: 320px;
	max-width: 100%;
}
.botonesform {
	width: 47%;
	max-width: 240px;
	background-color: #353535;
	color: #fff;
	padding: 10px 5px;
	margin-top: 1em;

	-webkit-transition: background .3s ease-in-out;
	-moz-transition: background .3s ease-in-out;
	-ms-transition: background .3s ease-in-out;
	-o-transition: background .3s ease-in-out;
	transition: background .3s ease-in-out;
}
.botonesform:hover {
	background-color: rgb(0,112,120);
	cursor: pointer;
}
/* ========================== */
.trabajo {
	background: rgb(0,112,120);
	padding: 1.15em;
	color: #fff;
	text-align: center;
}
.trabajo p {
	text-align: center;
}
.trabajo a {
	color: #fff;
}


/*== ESTILOS PIEDESITIO ==*/
footer {
	width: 100%;
	padding: 4.5rem 0;
	background: #5D6770;
	color: #fff;
	font-size: 16px;
}
footer p {
	text-align: center;
}
footer .under {
	display: flex;
	justify-content: center;
	list-style: none;
}
footer .under li {
	padding: 0 1em;
	border-right: 1px solid #fff;
}
footer .under li:last-child {
	border-right: 0;
}
footer .under li a {
	text-decoration: none;
	color: #fff;
}
footer .under li a:hover {
	color: #6BC3CC;
}
footer .under li a span {
	padding-right: 5px;
	margin-top: 5px;
}
/* ====================
	ESTILOS SCROLL
==================== */
.scrolltop {
	background-color: rgb(0,112,120);
	background-image: url(../images/arrowa.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size:75% 75%;
	
	top: auto;
	left: auto;
	right: 0px;
	bottom: 55px;
	display: none;
	width: 40px;
	height: 40px;
	overflow: hidden;
	position: fixed;
	z-index: 990;

	-webkit-border-radius: 5%;
	-moz-border-radius: 5%;
	border-radius: 5%;
	
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-ms-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.scrolltop:hover {
	background-color: #333;
}



/* =======================
	RESPONSIVE MEDIA
======================= */

/* ====== 960PX GRID ====== */
@media (max-width: 960px) {
	
}
/* ====== 960PX GRID ====== */


/* ====== 768PX GRID ====== */
@media (max-width: 768px) {
	.navbar {
		padding: 15px 5% 0 5%;
		height: 100px;
		background-color: rgba(0,112,120,.85);
		flex-direction: column;
		justify-content: center;
		-webkit-box-shadow: 0 0 0 0 rgba(0,0,0,0);
		-moz-box-shadow: 0 0 0 0 rgba(0,0,0,0);
		box-shadow: 0 0 0 0 rgba(0,0,0,0);
	}
	.navbar .logotipo {
		margin-right: 0;
		margin-bottom: 15px;
		display: flex;
		align-items: center;
	}
	.navbar ul {
		flex: none;
		margin: 0 auto;
		width: 100%;
		justify-content: space-between;
	}
	.navbar ul li a {
		font-size: 14px;
		padding: 0 15px;
		line-height: 30px;
	}
	section.primero .lateral {
		width: 240px;
	}
	.tres-columnas {
		flex-direction: column;
		justify-content: center;
	}
	.tres-columnas .columna {
		width: 100%;
		margin-bottom: 2.5em;
	}
	.tres-columnas .columna:last-child {
		margin-bottom: 0;
	}
	footer .under {
		flex-direction: column;
	}
	footer .under li {
		padding: 0 1em;
		border-right: 1px solid #fff;
	}
}
/* ====== 768PX GRID ====== */


/* ====== 640PX GRID ====== */
@media (max-width: 640px) {
	p {
		text-align: left;
		margin-bottom: 1.75em;
	}
	section {
		padding: 4.5em 0;
	}
	section.primero .lateral {
		width: 210px;
	}
	section.upper p {
		font-size: 1.75rem;
		text-align: center;
	}
	section.primero .contenedor {
		margin-top: 60px;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	section.primero p {
		margin-top: 2em;
		font-size: 5vw;
		padding: 1em 1em;
	}
	.dos-columnas {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.dos-columnas .columna {
		width: 100%;
		margin-bottom: 2.5em;
	}
	.dos-columnas .columna:last-child {
		margin-bottom: 0;
	}
	footer {
		padding: 3em 0;
	}
}
/* ====== 640PX GRID ====== */


/* ====== 480PX GRID ====== */
@media (max-width: 480px) {
	.navbar {
		padding: 15px 5% 0 5%;
		height: 70px;
		flex-direction: column;
		justify-content: center;
	}
	.navbar ul {
		display: none;
	}
	section.primero {
		background: url(../images/bg640px.jpg) no-repeat 50% 50%;
	}
	section.primero p {
		font-size: 7vw;
	}
	section.upper p {
		font-size: 1.5rem;
		text-align: center;
	}
	footer {
		padding: 2em 0;
	}
}
/* ====== 480PX GRID ====== */