@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@font-face {
    font-family: "roboto_black";
    src: url('../assets/fonts/Roboto-Black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "roboto_regular";
    src: url('../assets/fonts/Roboto-Regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

:root {
    --color-verde-claro: #368185;
    --color-verde-medio: #005354;
    --color-verde-fuerte: #002431;
    --color-blanco: #f2f2f2;
    --color-rojo: #8e0a16;
    --color-azul: #007bff;

	/* Para la marquesina de marcas */
	--marquee-width: 1600px;
	--marquee-height: 20vh;
	/* --marquee-elements: 12; */ /* defined with JavaScript */
	--marquee-elements-displayed: 6;
	--marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
	--marquee-animation-duration: calc(var(--marquee-elements) * 1.5s);
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	font-size: 10px;
    font-family: "roboto_regular",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
	line-height: 1.5;
	scroll-behavior: smooth;
    scroll-padding-top: 60px; /* Para evitar que el navbar cubra el contenido al dar clic en una opcion del menu */
}

body {
	overflow-x: hidden;
}

h1, h2, h3 {
    font-family: "roboto_black",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    line-height: 1.1;
}

a {
	text-decoration: none;
}

.container {
	min-height: 100vh;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}

.carousel {
	margin: 4rem 4rem 0rem 4rem;
	max-width: 1600px;
	cursor: grab;
}
.carousel p {
	padding: 2rem;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.owl-carousel {
	padding: 2rem;
}
.owl-carousel .owl-item {
	display: flex;
	align-items: center;
	justify-content: center;

}
.owl-carousel .owl-item img {
	max-height: 410px;
	border-radius: 5px;
}

.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}

.section-title span {
	color: var(--color-rojo);
}

.cta {
	display: inline-block;
	padding: 10px 30px;
	color: var(--color-blanco);
	background-color: var(--color-verde-medio);
	border: 2px solid var(--color-blanco);
	box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
	font-size: 2rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-top: 30px;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.cta:hover {
	color: white;
	background-color: var(--color-verde-claro);
}
.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}
.brand h1 span {
	color: var(--color-rojo);
}
.hombre-con-casco {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 400px;
	width: auto;
}

/* Header section */
#header {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100vw;
}
#header .header {
	min-height: 100px;
	max-height: 250px;
	/* background-color: rgba(242, 242, 242, 0.9); */
	background-color: transparent;
	transition: all 0.5s ease;
}
.reduce-nav {
	min-height: 50px !important;
	max-height: 60px !important;
}

#header .nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	max-width: 1300px;
	padding: 2rem 1rem;
}
#header .nav-list ul {
	list-style: none;
	position: absolute;
	width: 100vw;
	height: 100vh;
	left: 100%;
	top: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 1;
	overflow-x: hidden;
	transition: 0.5s ease left;
}
#header .nav-list ul.active {
	left: 0%;
}
#header .nav-list ul a {
	background-color: transparent;
	position: relative;
	font-size: 1.8rem;
	letter-spacing: 0.2rem;
	text-decoration: none;
	color: var(--color-verde-fuerte);
	text-transform: uppercase;
	padding: 20px;
	display: block;
	transition: all .5s;
}
#header .nav-list ul a::after {
	content: attr(data-after);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	color: rgba(240, 248, 255, 0.2);
	font-size: 13rem;
	letter-spacing: 50px;
	z-index: -1;
	transition: 0.3s ease letter-spacing;
}
#header .nav-list ul li:hover a::after {
	transform: translate(-50%, -50%) scale(1);
	letter-spacing: initial;
}
#header .nav-list ul a:hover {
	border-bottom: 2px solid var(--color-verde-medio);
}

#header .hamburger {
	height: 60px;
	width: 60px;
	display: inline-block;
	border: 3px solid white;
	border-radius: 50%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	cursor: pointer;
	transform: scale(0.8);
	margin-right: 20px;
}
#header .hamburger:after {
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	border-radius: 50%;
	border: 3px solid white;
	animation: hamburger_puls 1s ease infinite;
}
#header .hamburger .bar {
	height: 2px;
	width: 30px;
	position: relative;
	background-color: white;
	z-index: -1;
}
#header .hamburger .bar::after,
#header .hamburger .bar::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	left: 0;
	background-color: white;
	transition: 0.3s ease;
	transition-property: top, bottom;
}
#header .hamburger .bar::after {
	top: 8px;
}
#header .hamburger .bar::before {
	bottom: 8px;
}
#header .hamburger.active .bar::before {
	bottom: 0;
}
#header .hamburger.active .bar::after {
	top: 0;
}
/* End Header section */

/* Hero Section */
/* #hero {
	background-image: url(../images/planta-industrial.webp);
	background-size: cover;
	background-position: top center;
	position: relative;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 1% 100%);
	clip-path: polygon(0 0, 100% 0, 100% 90%, 1% 100%);
	z-index: 1;
} */
/* #hero::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: rgb(54,129,133);
	background: -webkit-linear-gradient(0deg, rgba(54,129,133,0.5) 0%, rgba(0,83,84,0.7) 35%, rgba(0,36,49,1) 100%);
	background: linear-gradient(0deg, rgba(54,129,133,0.5) 0%, rgba(0,83,84,0.7) 35%, rgba(0,36,49,1) 100%);
	opacity: 0.9;
	z-index: -1;
} */

#hero .hero {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 50px;
	justify-content: center;
}
#hero h1 {
	display: block;
	width: fit-content;
	font-family: "Bebas Neue",cursive,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
	font-size: clamp(3em, 1em + 4vw, 6em);
	letter-spacing: 2px;
	position: relative;
	color: transparent;
	animation: text_reveal 0.5s ease forwards;
	animation-delay: 1s;
}
#hero h1:nth-child(1) {
	margin-top: 12rem;
	animation-delay: 1s;
}
#hero h1:nth-child(2) {
	animation-delay: 2s;
}
#hero h1:nth-child(3) {
	animation: text_reveal_name 0.5s ease forwards;
	animation-delay: 3s;
}
#hero h1 span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background-color: var(--color-verde-claro);
	animation: text_reveal_box 1s ease;
	animation-delay: 0.5s;
}
#hero h1:nth-child(1) span {
	animation-delay: 0.5s;
}
#hero h1:nth-child(2) span {
	animation-delay: 1.5s;
}
#hero h1:nth-child(3) span {
	animation-delay: 2.5s;
}

#hero {
	background-color: rgb(230, 230, 230);
}
.hero-content {
	margin-top: 5rem;
}
.hero-text {
	padding: 0 2rem;
	background-color: ;
}

.hero-img {
	padding: 2rem 4rem;
}
.hero-img img {
	width: 100%;
	display: block;
	border-radius: 6px;
	box-shadow: 0px 0px 18px 0 #00000075;
}
.hero-video {
	padding: 2rem 4rem;
}
.hero-video video {
	width: 100%;
	display: block;
	border-radius: 6px;
	box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
/* End Hero Section */

/*
	Botón de WhatsApp
*/
.btn-whatsapp img {
	width: 54px;
	height: 54px;
	margin: 1.5rem 0 0 1.6rem;
}
.btn-whatsapp p {
	font-size: 1rem;
	color: var(--color-verde-fuerte);
	line-height: 1;
	color: #0df053;
}

.btn-whatsapp {
	position: fixed;
	width: 8rem;
	height: 8rem;
	bottom: 5rem;
	right: 3rem;
	background-color: #0df053;
	border-radius: 50px;
	border: 6px solid #f2f2f2;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
	z-index: 5;
	transition: all .5s;
}
.btn-whatsapp:hover {
	background-color: rgba(13, 240, 83, 0.7);
}

/*
    Animación de olas
*/
.wave {
    position: absolute;
    width: 100%;
    height: 143px; /* alto de la imagen de ola */
    bottom: 0;
    left: 0;
    background-image: url(../images/wave.png);
    animation: waves 10s linear infinite;
    z-index: 2;
}
.wave::before {
    content: '';
    width: 100%;
    height: 143px;
    background-image: url(../images/wave.png);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
    animation: waves-reverse 10s linear infinite;
}
.wave::after {
    content: '';
    width: 100%;
    height: 143px;
    background-image: url(../images/wave.png);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
    animation-delay: -5s;
    animation: waves 20s linear infinite;
}
@keyframes waves {
    0% {
        background-position: 0;
    }
    100% {
        background-position: 1360px; /* ancho de la imagen de ola */
    }   
}
@keyframes waves-reverse {
    0% {
        background-position: 1360px;
    }
    100% {
        background-position: 0;
    }   
}

/* Seccion Servicios */
#servicios .services {
	flex-direction: column;
	text-align: center;
	max-width: 1600px;
	margin: 0 auto;
	padding: 100px 0;
}
#servicios .services p {
	text-align: justify;
	font-size: 1.8em;
	padding-bottom: 5rem;
}
#servicios .service-top {
	max-width: 800px;
	margin: 0 auto;
}
#servicios .service-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 4rem;
}
#servicios .service-item {
	min-height: 350px;
	flex-basis: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	padding: 2rem;
	border-radius: 10px;
	border: 2px solid var(--color-blanco);
	background: -webkit-linear-gradient(to bottom, #2C5364, #203A43, #002431);
	background: linear-gradient(to bottom, #2C5364, #203A43, #002431);
	margin: 0px 5%;
	position: relative;
	top: 0;
	left: 0;
	z-index: 1;
	transition: all .5s ease;
}
#servicios .service-item:hover {
	top: -10px;
	box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
#servicios .service-descipcion {
	min-height: 262.5px;
}
#servicios .service-bottom .icon {
	height: 100px;
	width: 100px;
	margin: -75px 0 20px 33%;
	border: 5px solid var(--color-verde-fuerte);
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
#servicios .service-item h2 {
	font-size: 2.2em;
	letter-spacing: 3px;
	color: var(--color-blanco);
	margin-bottom: 10px;
	text-transform: uppercase;
}
#servicios .service-item p {
	font-size: 1.7em;
	margin-top: 0;
	line-height: 1.25;
	color: white;
	text-align: left;
}
.service-title {
	width: 100%;
	text-align: center;
}
.service-title hr {
	color: var(--color-blanco);
	width: 30%;
	margin: 2rem auto;
}
.btn-servicios  {
	width: 100%;
	text-align: center;
}
.btn-ver-mas {
	display: inline-block;
	padding: 10px 30px;
	cursor: pointer;
	color: var(--color-blanco);
	background-color: var(--color-rojo);
	border: 2px solid var(--color-blanco);
	box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
	font-size: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin: 3rem 0 2.5rem 0;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.btn-ver-mas:hover {
	background-color: #ee1123;
}

.renglon-poligono:nth-Child(odd) {
	position: relative;
	/* margin-left: 76.5px;
	margin-bottom: -38px; */
	/* margin-left: 106.5px; */
	margin-bottom: -68px;
}
.renglon-poligono:nth-Child(even) {
	margin-bottom: -68px;
}
.poligono {
	background-color: #173a41;
	display: inline-block;
	height: 180px;
	width: 180px;
	display: flex; align-items: center;
	justify-content: center;
	color: #f2f2f2;
	-webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
	transition: all .3s ease-in-out;
}
.poligono:hover {
	-webkit-clip-path: polygon(50% 0%, 100% 0, 100% 75%, 50% 100%, 0% 75%, 0 0);
	clip-path: polygon(50% 0%, 100% 0, 100% 75%, 50% 100%, 0% 75%, 0 0);
	opacity: 0.8;
}
.poligono h3 {
	font-size: 1.8em;
	letter-spacing: .2rem;
	text-transform: uppercase;
}
/* End Seccion Servicios */

/* Seccion Proyectos */
#proyectos .projects {
	flex-direction: column;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0;
}
#proyectos .projects-header h1 {
	margin-bottom: 50px;
}
#proyectos .all-projects {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
#proyectos .project-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 80%;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 10px;
}
#proyectos .project-info {
	padding: 30px;
	flex-basis: 50%;
	height: 100%;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	color: white;
}
#proyectos .project-info h1 {
	font-size: 4rem;
	font-weight: 500;
}
#proyectos .project-info h2 {
	font-size: 1.8rem;
	font-weight: 500;
	margin-top: 1rem;
	color: var(--color-verde-claro);
}
#proyectos .project-info ul {
	color: white;
	padding-top: 1rem;
	font-size: 1.5rem;
}
#proyectos .project-img {
	flex-basis: 50%;
	height: 300px;
	overflow: hidden;
	position: relative;
}
#proyectos .project-img:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(60deg, #29323c 0%, #485563 100%);
	opacity: 0.7;
}
#proyectos .project-img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
#proyectos .project-img img {
	transition: 0.3s ease transform;
}
#proyectos .project-item:hover .project-img img {
	transform: scale(1.1);
}
/* End Seccion Proyectos */

/* Seccion Nosotros */
#nosotros {
	background-color: #005354;
	background-image: url(../images/hero-bg.png);
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-clip-path: polygon(0 10%, 100% 0, 100% 90%, 1% 100%);
	clip-path: polygon(0 10%, 100% 0, 100% 90%, 1% 100%);
	z-index: 1;
}
#nosotros .about {
	flex-direction: column-reverse;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 20px;
}
#nosotros .col-left {
	width: 250px;
}
#nosotros .col-left img {
	position: sticky;
	top: 120px;
}
#nosotros .col-right {
	width: 100%;
}
#nosotros .col-right h2 {
	font-size: 3.5em;
	font-weight: 500;
	letter-spacing: 0.2rem;
	margin-bottom: 10px;
	text-transform: uppercase;
	color: var(--color-blanco);
}
#nosotros .col-right h3 {
	font-size: 2.5em;
	text-transform: uppercase;
	color: var(--color-rojo);
	padding-top: 2rem;
}
#nosotros .col-right p {
	color: var(--color-blanco);
	font-size: 1.8em;
	margin-bottom: 20px;
	text-align: justify;
}
#nosotros .col-right .cta {
	color: black;
	margin-bottom: 50px;
	padding: 10px 20px;
	font-size: 2rem;
}
#nosotros .col-left .about-img {
	height: 100%;
	width: 100%;
	position: relative;
	/* border: 10px solid white; */
}
/* #nosotros .col-left .about-img::after {
	content: '';
	position: absolute;
	left: -33px;
	top: 19px;
	height: 98%;
	width: 98%;
	border: 7px solid var(--color-rojo);
	z-index: -1;
} */
/* End Seccion Nosotros */


/*
	Marquesina de marcas
*/
#marcas {
	max-width: 1600px;
	display: flex;
	justify-content: center;
	padding: 0 0 4rem 0;
	background-color: transparent;
}
.marquee {
	width: var(--marquee-width);
	height: var(--marquee-height);
	overflow: hidden;
	position: relative;
}
.marquee:before, .marquee:after {
	position: absolute;
	top: 0;
	width: 10rem;
	height: 100%;
	content: "";
	z-index: 1;
}
/* .marquee:before {
	left: 0;
	background: linear-gradient(to right, rgba(54, 129, 133, 1) 0%, transparent 100%);
}
.marquee:after {
	right: 0;
	background: linear-gradient(to left, rgba(54, 129, 133, 1) 0%, transparent 100%);
} */
.marquee-content {
	list-style: none;
	height: 100%;
	display: flex;
	animation: scrolling var(--marquee-animation-duration) linear infinite;
}
/* .marquee-content:hover {
animation-play-state: paused;
} */
@keyframes scrolling {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements))); }
}
.marquee-content li {
	display: flex;
	justify-content: center;
	align-items: center;
	/* text-align: center; */
	flex-shrink: 0;
	width: var(--marquee-element-width);
	max-height: 100%;
	font-size: calc(var(--marquee-height)*3/4); /* 5rem; */
	white-space: nowrap;
}
.marquee-content li img {
	margin: 0 2rem;
	border-radius: 5px;
}
.marquee-content li p {
	font-size: 4.5rem;
	line-height: 1.1;
	color: var(--color-rojo);
	border-bottom: 2px solid var(--color-rojo);
	letter-spacing: -1px;
	padding: 0 2rem;
	margin: 0;
}
@media (max-width: 600px) {
	:root {
	  --marquee-width: 100vw;
	  --marquee-height: 14vh;
	  --marquee-elements-displayed: 1;
	}
	.marquee:before, .marquee:after { width: 5rem; }
}


/*
	Seccion de Contacto
*/
#contacto {
	background-color: var(--color-blanco);
	-webkit-clip-path: polygon(0 10%, 100% 0, 100% 100%, 1% 100%);
	clip-path: polygon(0 10%, 100% 0, 100% 100%, 1% 100%);
}
.contact h3 {
	text-align: center;
	font-size: 2em;
	padding: 0 0 2rem 0;
}

#contacto .contact {
	flex-direction: column;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 14rem 0 4rem 0;
}
#contacto .contact-items {
	width: 100%;
}
#contacto .contact-item {
	width: 80%;
	/* padding: 20px; */
	text-align: center;
	border-radius: 10px;
	padding: 30px;
	margin: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	box-shadow: 0px 0px 18px 0 #0000002c;
	transition: 0.3s ease box-shadow;
}
#contacto .contact-item:hover {
	box-shadow: 0px 0px 5px 0 #0000002c;
}
#contacto .icon {
	border: 4px solid #8e0a16;
	border-radius: 50%;
	background-color: #d9d9d9;
	display: flex;
	justify-content: center;
	align-items: center;
}
#contacto .icon img {
	max-width: 100%;
	display: block;
}
.contact-info {
	display: flex;
	align-items: center;
	flex-direction: column;
	padding-bottom: 3rem;
}
#contacto .contact-info h3 {
	font-size: 2.5rem;
	color: #002431;
}
#contacto .contact-info h4 {
	font-size: 2rem;
	line-height: 2.5rem;
}
#contacto .contact-info a {
	color: var(--color-verde-fuerte);
}
#contacto .contact-info a:hover {
	color: var(--color-verde-claro);
}
.contact-form{
	background-image: url(../images/proyecto2.jpg);
	background-size: cover;
	background-position: center;
}
.contact-item h3 {
	color: var(--color-rojo);
	font-size: 3em;
	text-transform: uppercase;
	padding-bottom: 2rem;
}
.contact-item h3 span {
	color: var(--color-blanco);
}
.social-icons {
	display: flex;
	justify-content: center;
	align-items: center;
}
.social-icons a {
	margin: 0 1rem;
}


.error {
    color: var(--color-rojo);
    display: none;
}
#form-success {
    color: var(--color-verde-claro);
    display: none;
}

.contact-item input, .contact-item textarea {
    width: 100%;
    height: 4rem;
    outline: none;
    border: none;
    padding: 0 1rem;
    margin-bottom: 2rem;
    background-color: var(--color-blanco);
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.3);
    font-size: 1.5em;
    color: #262626;
}

.contact-item input[name="phone"], input[name="email"] {
    width: 48%;
}

.contact-item input[name="phone"] {
    margin-right: 1.5rem;
}

.contact-item textarea {
    height: auto;
    resize: none;
    font-family: "roboto_regular";
	margin-bottom: 0;
}

.mapa {
	width: 100%;
	max-width: 1600px;
	padding: 4rem;
}
.mapa iframe {
	border-radius: 1rem;
	box-shadow: 9px 9px 18px 0 #0000002c;
}

/*End Seccion de Contacto */

/* Footer */
#footer {
	background-color: #1a1a1a;
}
#footer .footer {
	min-height: 3.5rem;
	/* padding-top: 50px;
	padding-bottom: 10px; */
}
.footer p {
	font-size: 1.2em;
	color: #f1f1f1;
	letter-spacing: 1px;
}
.footer svg {
	padding: 0;
	margin: 0;
	height: 2rem;
	width: 3rem;
}
.footer a {
	color: #ff0000; 
	text-decoration: none;
	letter-spacing: 1px;
}
.latido {
    height: 1rem;
	width: 1rem;
	animation: heartbeat 1.5s infinite ease-in-out;
}
@keyframes heartbeat {
	10% {transform: scale(1.15)}
	20% {transform: scale(1)}
	40% {transform: scale(1.15)}
	60% {transform: scale(1)}
}
/* Fin Footer */


/* Keyframes */
@keyframes hamburger_puls {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.4);
	}
}
@keyframes text_reveal_box {
	50% {
		width: 100%;
		left: 0;
	}
	100% {
		width: 0;
		left: 100%;
	}
}
@keyframes text_reveal {
	100% {
		color: #fff;
		text-shadow: 4px 4px 3px var(--color-verde-fuerte);
	}
}
@keyframes text_reveal_name {
	100% {
		color: var(--color-verde-fuerte);
		font-weight: 500;
	}
}
/* End Keyframes */

.split-columns {
    display: flex;
    flex-direction: column;
	padding-top: 6rem;
}
@media (min-width: 40em) {
    .split-columns {
        flex-direction: row;
    }

    .split-columns > * {
        flex-basis: 100%;
    }
}
.columna-texto {
	padding: 4rem;
}
.columna-texto h2 {
	font-size: 3em;
	padding-bottom: 2rem;
}
.columna-texto p {
	font-size: 2em;
	line-height: 1.5;
	text-align: justify;
}
.columna-texto ul {
	padding: 1rem 0;
}
.columna-texto ul li {
	font-size: 2em;
	line-height: 1.5;
	text-align: left;
	margin-left: 2em;
}
.columna-imagen {
	padding: 2rem;
	height: 400px;
}
.sticky-area {
	position: sticky;
	top: 0;
}

.btn-info {
	display: inline-block;
	padding: 10px 30px;
	color: var(--color-blanco);
	background-color: var(--color-rojo);
	border: 3px solid #ccc;
	font-size: 1.5rem;
	text-transform: uppercase;
	letter-spacing: 3px;
	margin-top: 1.8rem;
	cursor: pointer;
	transition: 0.3s ease;
	transition-property: background-color, color;
}
.btn-info:hover {
	color: var(--color-rojo);
	background-color: var(--color-blanco);
	box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

/* seguridad */
#seguridad .services, #hidraulica .services, #energia .services {
	flex-direction: column;
	text-align: center;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0;
}
#seguridad .service-top, #hidraulica .service-top, #energia .service-top {
	max-width: 500px;
	margin: 0 auto;
}
#seguridad, #hidraulica, #energia {
	padding-top: 6rem;
}
.seguridad-img img {
	max-width: 100%;
	max-height: 400px;
}
/* Fin section seguridad */


/* Media Query For Tablet */
@media only screen and (min-width: 768px) {
	.cta {
		font-size: 1.5rem;
		padding: 1.5rem 3rem;
	}
	h1.section-title {
		font-size: 3.5rem;
	}

	/* Hero */
	/* #hero h1 {
		font-size: 8em;
	}
	#hero h1:nth-child(2) {
		font-size: 6.7em;
	} */
	/* End Hero */

	/* Seccion Servicios */
	#servicios .service-bottom .service-item {
		flex-basis: 45%;
		margin: 2.5%;
	}
	/* End Seccion Servicios */

	/* Project */
	#proyectos .project-item {
		flex-direction: row;
	}
	#proyectos .project-item:nth-child(even) {
		flex-direction: row-reverse;
	}
	#proyectos .project-item {
		height: 400px;
		margin: 0;
		width: 100%;
		border-radius: 0;
	}
	#proyectos .all-projects .project-info {
		height: 100%;
	}
	#proyectos .all-projects .project-img {
		height: 100%;
	}
	/* End Proyectos */

	/* Nostros */
	#nosotros {
		position: relative;
		min-height: 500px;
		/* background-image: url(../images/hero-bg.png);
		background-attachment: fixed;
  		background-position: center;
  		background-repeat: no-repeat;
  		background-size: cover;
		-webkit-clip-path: polygon(0 10%, 100% 0, 100% 90%, 1% 100%);
		clip-path: polygon(0 10%, 100% 0, 100% 90%, 1% 100%);
		z-index: 1; */
	}
	#nosotros::after {
		content: '';
		position: absolute;
		left: 0;
		top: 0;
		height: 100%;
		width: 100%;
		background: rgb(242,242,242);
		background: linear-gradient(135deg, rgba(242,242,242,1) 25%, rgba(54,129,133,1) 55%, rgba(0,36,49,1) 100%);
		opacity: .7;
		z-index: -1; 
	}
	#nosotros .about {
		flex-direction: row;
	}
	#nosotros .col-left {
		width: 600px;
		height: 400px;
		padding-left: 60px;
	}
	/* #nosotros .about .col-left .about-img::after {
		left: -45px;
		top: 34px;
		height: 98%;
		width: 98%;
		border: 10px solid var(--color-rojo);
	} */
	#nosotros .about-img img {
		height: initial;
		width: 100%;
	}

	#nosotros .col-right {
		text-align: left;
		padding: 30px;
		color: var(--color-blanco);
	}
	#nosotros .col-right h1 {
		text-align: left;
		color: var(--color-blanco);
	}
	#nosotros .col-right p {
		color: var(--color-blanco);
	}
	/* End Nosotros */

	/* contact  */
	#contacto .contact {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		min-width: 20vh;
	}
	#contacto .contact-items {
		width: 100%;
		display: flex;
		flex-direction: row;
		justify-content: space-evenly;
		margin: 0;
	}
	#contacto .contact-item {
		width: 45%;
		margin: 0;
		flex-direction: column;
	}
	#contacto .contact-item .icon {
		height: 100px;
		width: 100px;
	}
	#contacto .contact-item .icon img {
		object-fit: contain;
	}
	#contacto .contact-item .contact-info {
		width: 100%;
		text-align: left;
		padding-left: 20px;
	}
	/* End contact  */
}
/* End Media Query For Tablet */

/* Media Query For Desktop */
@media only screen and (min-width: 1200px) {
	/* header */
	#header .hamburger {
		display: none;
	}
	#header .nav-list ul {
		position: initial;
		display: block;
		height: auto;
		width: fit-content;
		background-color: transparent;
	}
	#header .nav-list ul li {
		display: inline-block;
	}
	#header .nav-list ul li a {
		font-size: 1.8rem;
	}
	#header .nav-list ul a:after {
		display: none;
	}
	/* End header */

	#servicios .service-bottom .service-item {
		flex-basis: 22%;
		margin: 1.5%;
	}
}
/* End  Media Query For Desktop */

/* Dispositivos móviles */
@media (max-width: 600px) {
	#header .nav-list ul {
		background-color: var(--color-verde-fuerte);
	}
	#header .nav-list ul a {
		color: var(--color-blanco);
	}

	#hero h1 {
		font-size: 4em;
	}

	.cta {
		padding: 8px 20px;
		font-size: 1.5em;
		letter-spacing: 2px;
	}

	.section-title {
		font-size: 3.2em;
	}

	#hero h1:nth-child(1) {
		margin-top: 0;
	}

	.hombre-con-casco {
		max-height: 200px;
	}

	#servicios {
		padding-bottom: 8rem;
	}

	#servicios .service-top {
		padding: 0 1.5rem;
	}

	#servicios .service-item {
		margin-bottom: 7rem;
	}

	.poligono {
		height: 100px;
		width: 100px;
	}
	.poligono h3 {
		font-size: .8em;
	}

	.carousel {
		/* margin: -8rem 2rem 2rem 2rem; */
		margin: 0;
	}

	#proyectos .project-info h1 {
		font-size: 2.8em;
	}

	#nosotros .col-left .about-img img {
		height: 80%;
		width: 80%;
	}

	.contact-item input[name="phone"], input[name="email"] {
		width: 47%;
	}
	.contact-item input[name="phone"] {
		margin-right: 1rem;
	}

	#contacto .contact-item {
		width: 95%;
		padding: 1rem;
		margin: 1rem;
	}

	.contact-item h3 {
		font-size: 2.5em;
	}

}
