header {
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 50%, rgb(34, 158, 159) 100%), url("../../../assets/banner_home.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 80px;
}
header .navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 80px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease-in-out;
}
header .navbar.scrolled {
  background-color: rgb(34, 158, 159);
}
header .navbar .menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
header .navbar .menu a {
  font-size: 18px;
  position: relative;
}
header .navbar .menu a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  bottom: 0px;
  left: 0;
  background-color: white;
  transition: all 0.5s ease-in-out;
}
header .navbar .menu a:hover::after {
  width: 100%;
}
header .navbar .menu-mobile {
  display: none;
}
header .caption {
  color: white;
  font-size: var(--font-heading);
  width: 50%;
  padding: 150px 0 150px 0px;
  letter-spacing: 1px;
}

.mobile {
  display: none;
}

.monica {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 50px;
  width: 70%;
}
.monica .image {
  position: relative;
  height: 100%;
}
.monica .image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.monica .Nosotros {
  background-color: var(--green);
  color: white;
  display: flex;
  flex-direction: column;
  padding: 50px;
  border-radius: 10px;
  height: 500px;
}
.monica .Nosotros:first-child {
  color: red;
}
.monica .Nosotros h2 {
  font-weight: 100;
  font-size: clamp(1.5rem, 3vw, 3rem);
}

.servicios {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto;
}
.servicios .servs {
  display: flex;
  justify-content: start;
  gap: 75px;
  margin-top: 20px;
}
.servicios .servs2 {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}
.servicios .servs a, .servicios .servs2 a {
  display: flex;
  align-items: center;
  padding: 10px 30px;
  gap: 40px;
  border: 2px solid var(--green);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  color: var(--green);
}
.servicios .servs a:hover, .servicios .servs2 a:hover {
  cursor: pointer;
  background-color: var(--green);
  color: white;
}
.servicios .servs a:hover img, .servicios .servs2 a:hover img {
  filter: brightness(0) invert(1);
}

.pictures {
  display: flex;
  justify-content: center;
}
.pictures img {
  width: 20%;
  height: 300px;
}

.online {
  padding: 60px 0px;
  background-color: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.online a {
  padding: 7px 25px;
  border: 2px solid white;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.online a:hover {
  cursor: pointer;
  background-color: white;
  color: var(--green);
}

.online h2 {
  color: white;
  font-weight: bold;
  font-size: var(--font-xlarge);
}

.solicitar {
  width: 70%;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
}
.solicitar .cotizacion {
  background-color: var(--green);
  padding: 30px 90px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: white;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.solicitar .cotizacion:hover {
  cursor: pointer;
  background-color: var(--red);
}
.solicitar .cotizacion h2, .solicitar .catalogo h2 {
  font-size: var(--font-xlarge);
}
.solicitar .catalogo {
  position: relative;
  padding: 30px 90px;
  display: flex;
  align-items: center;
  color: gray;
  text-align: center;
  border-radius: 5px;
  border: 2px solid var(--green);
}
.solicitar .catalogo a {
  position: absolute;
  width: auto;
  height: auto;
  bottom: -20;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--red);
  color: white;
  padding: 10px;
  font-weight: bold;
  border-radius: 10px;
  color: white;
  transition: all 0.3s ease-in-out;
}
.solicitar .catalogo a:hover {
  cursor: pointer;
  background-color: var(--green);
}

@media screen and (max-width: 768px) {
  header {
    padding: 80px 25px 20px;
  }
  header .navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
  }
  header .navbar .menu {
    display: none;
  }
  header .navbar .menu-mobile {
    display: flex;
    justify-content: flex-end;
  }
  header .navbar .menu-mobile:hover {
    cursor: pointer;
  }
  header .navbar .menu-mobile > span {
    font-size: 50px;
    color: white;
  }
  header .caption {
    width: 90%;
    padding: 60px 0 100px 0px;
  }
  .mobile {
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    transform: translateX(-100%);
    background-image: linear-gradient(270deg, rgba(255, 255, 255, 0) 50%, rgb(34, 158, 159) 100%), url("../../../assets/banner_home.png");
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    transition: all 0.5s ease-in-out;
    padding: 50px 0px;
  }
  .mobile .close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .mobile .options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .monica {
    flex-direction: column;
    width: 95%;
    margin: 50px auto;
  }
  .monica .image img {
    width: 100%;
  }
  .monica .nosotros {
    height: -moz-fit-content;
    height: fit-content;
  }
  .servicios {
    width: 90%;
  }
  .servicios .servs {
    flex-direction: column;
    gap: 40px;
  }
  .servicios .servs2 {
    margin-top: 0;
  }
  .servicios .servs a, .servicios .servs2 a {
    justify-content: space-between;
  }
  .pictures {
    width: 100%;
    overflow-x: scroll;
    justify-content: flex-start;
  }
  .pictures img {
    height: auto;
  }
  .online {
    padding: 60px 20px;
  }
  .solicitar {
    width: 90%;
    flex-direction: column;
    gap: 20px;
  }
  .solicitar .cotizacion {
    align-items: center;
  }
  .solicitar .catalogo::after {
    position: absolute;
    content: "Descargar";
    width: auto;
    height: auto;
    bottom: -20;
    left: 125px;
    background-color: var(--red);
    color: white;
    padding: 10px;
    font-weight: bold;
    border-radius: 10px;
  }
}/*# sourceMappingURL=Home.css.map */