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

img, picture, video, iframe, figure {
  max-width: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

a {
  display: block;
  text-transform: uppercase;
}

p a {
  display: inline;
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p, span, a, strong, blockquote, i, b, u, em {
  font-size: 1em;
  font-weight: inherit;
  font-style: inherit;
  color: inherit;
}

blockquote::after, blockquote::before, q::after, q::before {
  content: "";
  content: none;
}

form, input, textarea, select, button, label {
  font-family: inherit;
  font-size: inherit;
  hyphens: auto;
  background-color: transparent;
  display: block;
  color: inherit;
}

table, tr, td {
  border-collapse: collapse;
  border-spacing: 0;
}

svg {
  width: 100%;
  display: block;
  fill: currentColor;
}

body {
  min-height: 100vh;
  font-size: 100%;
  line-height: 1.4em;
}

h1 {
  font-size: clamp(2rem, 2vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(1.25rem, 2vw + 1rem, 1.5rem);
}

h3 {
  font-size: clamp(1rem, 2vw + 1rem, 1rem);
  text-transform: capitalize;
  color: #99e631;
}

p {
  font-size: clamp(1rem, 2vw + 1rem, 1.25rem);
}

.titulo {
  font-family: "Roboto Mono", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  color: #476d1d;
}

.titulo-hero {
  font-family: "Roboto Mono", sans-serif;
  font-weight: 700;
  font-size: 4rem;
  color: #ffffff;
  text-transform: uppercase;
}

.titulo-h2 {
  font-family: "Roboto Mono", sans-serif;
  color: #99e631;
  text-transform: capitalize;
}

.titulo-white {
  font-family: "Roboto Mono", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  color: #ffffff;
}

.link {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: normal;
}

.parrafo {
  text-align: justify;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: x-large;
  line-height: 1.8rem;
}

.parrafo-card {
  text-align: justify;
  font-family: "Montserrat", sans-serif;
}

.padding-30 {
  padding: 30px;
}

.text-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-gris {
  background-color: #969494;
}

.bg-molinete {
  position: relative;
  background-image: url(/img/molinetes.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bg-molinete ::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
}

@media screen and (max-width: 480px) {
  .top-bar {
    flex-direction: column;
    justify-content: center;
    height: 60px;
    background-color: #96969c;
  }
}
@media screen and (max-width: 768px) {
  .top-bar {
    width: 30px;
    color: #000;
  }
}
@media screen and (max-width: 1024px) {
  .top-bar {
    width: 30px;
    color: #000;
  }
}
@media screen and (max-width: 1025px) {
  .top-bar {
    width: 30px;
    color: #000;
  }
}
.container {
  width: 100%;
  margin: 0 auto;
}

.espacio {
  width: 100%;
  height: 50px;
}

header {
  background: #74a73a;
  height: 60px;
  position: relative;
  width: 100%;
  font-family: "Roboto Mono", sans-serif;
}

#logo {
  float: left;
  padding: 6px 20px;
  width: auto;
  height: 60px;
}
#logo a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  line-height: 44px;
  text-transform: uppercase;
}

#menu {
  position: absolute;
  top: 60px;
  width: 100%;
}
#menu ul {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}
#menu li {
  display: block;
  background: #74a73a;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid #74a73a;
}
#menu li a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  line-height: 60px;
  padding: 0 26px;
}
#menu li a:active, #menu li a:focus {
  color: #ffc700;
}
#menu .open-menu {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  max-height: 400px;
  transition: max-height 0.4s ease;
}

#nav-mobile {
  background: transparent;
  border: 0;
  cursor: pointer;
  float: right;
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  top: -60px;
  opacity: 0.6;
}
#nav-mobile.nav-open {
  opacity: 1;
}
#nav-mobile span {
  display: block;
  width: 60%;
  margin: 4px auto;
  height: 4px;
  background: #fff;
}

@keyframes banner {
  0% {
    background-image: url(/img/banner-1.jpg);
  }
  25% {
    background-image: url(/img/banner-1.jpg);
  }
  26% {
    background-image: url(/img/banner-2.jpg);
  }
  50% {
    background-image: url(/img/banner-2.jpg);
  }
  51% {
    background-image: url(/img/banner-3.jpg);
  }
  75% {
    background-image: url(/img/banner-3.jpg);
  }
  76% {
    background-image: url(/img/banner-4.jpg);
  }
  100% {
    background-image: url(/img/banner-4.jpg);
  }
}
.banner {
  position: relative;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: #F5F5F5;
  background-size: cover;
  background-position: center;
  transition: all 0.1s ease-in-out;
  background-image: url(/img/banner-1.jpg);
  animation: banner 28s infinite linear;
}
.banner::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 22, 40, 0.6);
  position: absolute;
}

.banner-content {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.banner-content h1 {
  margin: 0;
  padding: 0;
  margin-bottom: 30px;
  font-size: 3rem;
  text-align: center;
}
.banner-content a {
  text-decoration: none;
  color: #ffffff;
  padding: 9px 20px;
  border: 1px solid #ffffff;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.banner-content a:hover {
  background-color: #ffffff;
  color: #333;
}
.banner-content img {
  width: 25%;
  text-align: center;
}

@keyframes banner-nosotros {
  0% {
    background-image: url(/img/banner-nosotros-1.jpg);
  }
  25% {
    background-image: url(/img/banner-nosotros-1.jpg);
  }
  26% {
    background-image: url(/img/banner-nosotros-2.jpg);
  }
  50% {
    background-image: url(/img/banner-nosotros-2.jpg);
  }
  51% {
    background-image: url(/img/banner-nosotros-3.jpg);
  }
  75% {
    background-image: url(/img/banner-nosotros-3.jpg);
  }
  76% {
    background-image: url(/img/banner-nosotros-4.jpg);
  }
  100% {
    background-image: url(/img/banner-nosotros-4.jpg);
  }
}
.banner-nosotros {
  position: relative;
  width: 100%;
  height: calc(50vh - 60px);
  background-color: #F5F5F5;
  background-size: cover;
  background-position: center;
  transition: all 0.1s ease-in-out;
  background-image: url(/img/banner-nosotros-1.jpg);
  animation: banner-nosotros 28s infinite linear;
}
.banner-nosotros::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 22, 40, 0.6);
  position: absolute;
}

.seccion {
  width: 80%;
  margin: 0 auto;
}

.seccion-100 {
  width: 100%;
  margin: 0 auto;
  margin-top: 100px;
  height: 300px;
  position: relative;
}

article {
  width: 100%;
}

.contenedor {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-bottom: 30px;
}
.contenedor .contenido {
  grid-column: span 2;
  padding: 20px;
}
.contenedor .imagen {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.contenedor .imagen h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100px;
}
.contenedor .imagen img {
  display: block;
  width: 100%;
}

.contenedor-2 {
  margin-top: 50px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-bottom: 30px;
}
.contenedor-2 h1 {
  line-height: 3rem;
}
.contenedor-2 .contenido-2 {
  grid-column: span 2;
  padding-right: 25px;
}

@keyframes banner-servicios {
  0% {
    background-image: url(/img/banner-servicios-1.jpg);
  }
  25% {
    background-image: url(/img/banner-servicios-1.jpg);
  }
  26% {
    background-image: url(/img/banner-servicios-2.jpg);
  }
  50% {
    background-image: url(/img/banner-servicios-2.jpg);
  }
  51% {
    background-image: url(/img/banner-servicios-3.jpg);
  }
  75% {
    background-image: url(/img/banner-servicios-3.jpg);
  }
  76% {
    background-image: url(/img/banner-servicios-4.png);
  }
  100% {
    background-image: url(/img/banner-servicios-4.png);
  }
}
.banner-servicios {
  position: relative;
  width: 100%;
  height: calc(50vh - 60px);
  background-color: #F5F5F5;
  background-size: cover;
  background-position: center;
  transition: all 0.1s ease-in-out;
  background-image: url(/img/banner-servicios-1.jpg);
  animation: banner-servicios 28s infinite linear;
}
.banner-servicios::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 22, 40, 0.6);
  position: absolute;
}

.heading {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
}

.row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
  gap: 25px;
  margin-top: 100px;
}

.cards {
  margin-top: 100px;
  display: flex;
  flex-direction: row;
}

.card {
  flex: 22%;
  margin: 10px;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.card h2 {
  text-align: center;
  padding: 10px 5px;
  height: 80px;
  background-color: #476d1d;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card p {
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 5px 10px;
  text-align: justify;
}
.card .content {
  flex-grow: 1;
  flex-shrink: 1;
}

#inge {
  position: relative;
  width: 100%;
  background-image: url(/img/molinetes.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#inge::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
}

#ingenieria {
  margin-top: 100px;
  height: 40vh;
  height: 1px;
}

#inge h1 {
  line-height: 3rem;
}

#asesoria {
  width: 100%;
  position: relative;
  background-image: url(/img/asesoria.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#asesoria::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
}
#asesoria h1 {
  position: relative;
  font-size: 2.6rem;
}

.card2 {
  width: 300px;
  background: #ffffff;
  margin-bottom: 50px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}
.card2 svg {
  padding-top: 10px;
  width: 100%;
  height: 200px;
  fill: #476d1d;
  stroke: #476d1d;
}

.card2-header {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.2rem;
  padding: 50px 10px;
}
.card2-header h1 {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
  color: var(--primario);
}

.card2-body {
  padding: 30px 20px;
  text-align: justify;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

@keyframes banner-proyecto {
  0% {
    background-image: url(/img/banner-proyecto-1.jpg);
  }
  25% {
    background-image: url(/img/banner-proyecto-1.jpg);
  }
  26% {
    background-image: url(/img/banner-proyecto-2.jpg);
  }
  50% {
    background-image: url(/img/banner-proyecto-2.jpg);
  }
  51% {
    background-image: url(/img/banner-proyecto-3.jpg);
  }
  75% {
    background-image: url(/img/banner-proyecto-3.jpg);
  }
  76% {
    background-image: url(/img/banner-proyecto-4.jpg);
  }
  100% {
    background-image: url(/img/banner-proyecto-4.jpg);
  }
}
.banner-proyecto {
  position: relative;
  width: 100%;
  height: calc(50vh - 60px);
  background-color: #F5F5F5;
  background-size: cover;
  background-position: center;
  transition: all 0.1s ease-in-out;
  background-image: url(/img/banner-1.jpg);
  animation: banner-proyecto 28s infinite linear;
}
.banner-proyecto::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 22, 40, 0.6);
  position: absolute;
}

.pdf-file {
  width: 100%;
  height: 100vh;
}

@keyframes banner-contacto {
  0% {
    background-image: url(/img/banner-contacto-1.jpg);
  }
  25% {
    background-image: url(/img/banner-contacto-1.jpg);
  }
  26% {
    background-image: url(/img/banner-contacto-2.jpg);
  }
  50% {
    background-image: url(/img/banner-contacto-2.jpg);
  }
  51% {
    background-image: url(/img/banner-contacto-3.jpg);
  }
  75% {
    background-image: url(/img/banner-contacto-3.jpg);
  }
  76% {
    background-image: url(/img/banner-contacto-4.jpg);
  }
  100% {
    background-image: url(/img/banner-contacto-4.jpg);
  }
}
.banner-contacto {
  position: relative;
  width: 100%;
  height: calc(50vh - 60px);
  background-color: #F5F5F5;
  background-size: cover;
  background-position: center;
  transition: all 0.1s ease-in-out;
  background-image: url(/img/banner-contacto-1.jpg);
  animation: banner-contacto 28s infinite linear;
}
.banner-contacto::before {
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 22, 40, 0.6);
  position: absolute;
}

.contact {
  width: 75%;
  margin: auto;
  padding: 0px 20px;
  margin-top: 50px;
  margin-bottom: 35px;
  font-family: "Montserrat", sans-serif;
}

.contact-form {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: auto;
}

form {
  flex: 1;
  max-width: 600px;
  padding: 20px;
  background-color: #476d1d;
  border-radius: 8px;
  margin-right: 15px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  font-family: "Montserrat", sans-serif;
  color: var(--tercero);
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  outline: none;
  border-radius: 4px;
  transition: 0.5s ease;
}

form input:hover,
form textarea:hover {
  border: 1px solid #02d222;
}

form button {
  background-color: #99e631;
  font-size: 17px;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.4s ease;
}

form button:hover {
  background-color: #76a34e;
}

form label {
  display: block;
  margin-bottom: 5px;
}

.contact-info {
  flex: 1;
  max-width: 450px;
  padding: 20px;
  background-color: #476d1d;
  text-align: left;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  font-family: "Montserrat", sans-serif;
}

.contact-info h2 {
  font-size: 26px;
  color: #ffffff;
  margin-top: 25px;
  margin-bottom: 10px;
  font-family: "Roboto Mono", sans-serif;
}

.contact-info a {
  color: #99e631;
  text-transform: lowercase;
}

.contact-info p {
  color: #fff;
  line-height: 1.8;
  text-transform: capitalize;
}

@media only screen and (min-width: 768px) {
  #nav-mobile {
    display: none;
  }
  #menu {
    width: auto;
    float: right;
    top: 0;
    position: relative;
  }
  #menu .open-menu {
    box-shadow: none;
  }
  #menu ul {
    max-height: inherit;
  }
  #menu li {
    float: left;
    border: 0;
    background: transparent;
  }
  #menu li a {
    display: block;
    color: #ffffff;
    padding: 0 26px;
  }
  #menu li a:hover {
    color: #ffc700;
    background: #74a73a;
  }
}
/* Content */
main {
  display: flex;
  min-height: 400px;
  color: #fff;
  margin: 15px;
  align-items: center;
  background-image: linear-gradient(to right, #f78ca0 0%, #f9748f 19%, #fd868c 60%, #fe9a8b 100%);
}

main h1 {
  width: 100%;
  text-align: center;
}

.footer {
  width: 100%;
  height: 40px;
  background-color: #74a73a;
  color: #ffffff;
}

.info-footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.info-footer p {
  font-family: "Roboto Mono", sans-serif;
  font-size: 14px;
  font-weight: normal;
}
.info-footer a {
  text-decoration: none;
  text-align: center;
  color: #ffffff;
  font-weight: regular;
  line-height: 44px;
  text-transform: uppercase;
}

@media screen and (max-width: 480px) {
  .top-bar {
    flex-direction: column;
    justify-content: center;
    height: 60px;
  }
  .cards {
    margin-top: 30px;
    flex-direction: column;
  }
}
@media screen and (max-width: 628px) {
  .heading {
    padding: 20px;
    font-size: 1.8rem;
  }
  .card,
  .card2 {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  #nav-mobile {
    display: none;
  }
  #menu {
    width: auto;
    float: right;
    top: 0;
    position: relative;
  }
  #menu .open-menu {
    box-shadow: none;
  }
  #menu ul {
    max-height: inherit;
  }
  #menu li {
    float: left;
    border: 0;
    background: transparent;
  }
  #menu a {
    display: block;
    color: #ffffff;
    padding: 0 26px;
  }
  #menu:hover {
    color: #ffc700;
    background: #74a73a;
  }
}
@media screen and (max-width: 768px) {
  .cards {
    flex-direction: column;
    margin-top: 30px;
  }
  .contact {
    flex-direction: column;
    align-items: center;
  }
  form,
  .contact-info {
    width: 90%;
    margin-bottom: 20px;
    margin-right: 0;
  }
  .card {
    width: 450px;
  }
}
@media screen and (min-width: 1024px) {
  .top-bar {
    height: 40px;
  }
}

/*# sourceMappingURL=main.css.map */
