* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

html {
  font-size: 10px;
  font-family: 'Montserrat';
  background-color: black;
  color: white;
  scroll-behavior: smooth;
}

::-moz-selection {
  background-color: red;
  color: white;
}

::selection {
  background-color: red;
  color: white;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: transparent;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: red;
}

.icon-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  z-index: 100;
}

.anchor {
  display: inline-block;
  color: #a3a3a3;
  text-decoration: none;
  -webkit-transition: .4s;
  transition: .4s;
}

.anchor:hover {
  color: red;
  -webkit-transition: .4s;
  transition: .4s;
}

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

.top-menu {
  width: 100%;
  height: 60px;
  background-color: black;
  position: fixed;
  z-index: 2000;
}

@media only screen and (min-width: 1000px) {
  .top-menu {
    display: none;
  }
}

.menu {
  position: absolute;
  left: 1.2rem;
  top: 0;
  bottom: 0;
}

@media only screen and (min-width: 1024px) {
  .menu {
    top: 3rem;
    right: 4rem;
  }
}

.menu__bars::after,
.menu__bars,
.menu__bars::before {
  content: "";
  position: absolute;
  width: 4rem;
  height: 4px;
  background-color: red;
  border-radius: 5px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 650ms;
  transition: all 650ms;
}

.menu__bars::before {
  top: -2rem;
}

.menu__bars::after {
  top: 2rem;
}

.nav {
  width: 100%;
  height: 5rem;
  line-height: 5rem;
  position: relative;
}

.nav__overlay {
  background-color: #000000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 888;
  -webkit-transition: opacity 650ms;
  transition: opacity 650ms;
}

.nav__ul {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.nav__a {
  display: block;
  font-size: 3rem;
  padding: 0.2rem;
  margin: 2rem 4rem;
  text-align: center;
  -webkit-transition: all 650ms;
  transition: all 650ms;
  text-decoration: none;
  text-align: left;
  color: gray;
  font-weight: 300;
  -webkit-transition: .4s;
  transition: .4s;
}

.nav__a:hover {
  color: red;
  -webkit-transition: .4s;
  transition: .4s;
  -webkit-transform: scale(0.98);
  transform: scale(0.98);
}

.active .menu__bars {
  background-color: transparent;
}

.active .menu__bars::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.active .menu__bars::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.active .menu__bars::before,
.active .menu__bars::after {
  top: 0;
}

header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.info-top {
  padding: 1rem 0;
  background-color: #1D232A;
  margin-top: 6rem;
}

@media only screen and (min-width: 1000px) {
  .info-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 0rem;
  }
}

.info-top__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  margin: 1rem 0;
}

@media only screen and (min-width: 1000px) {
  .info-top__phone {
    margin: 1rem 5rem;
    font-size: 1.4rem;
    color: #a3a3a3;
  }
}

.info-top__email {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  margin: 1rem 0;
}

@media only screen and (min-width: 1000px) {
  .info-top__email {
    font-size: 1.4rem;
    color: #a3a3a3;
  }
}

.logo {
  background-color: #262F36;
  padding: 2rem 0;
}

@media only screen and (min-width: 1000px) {
  .logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1rem 0;
  }
}

.logo img {
  width: 50%;
}

@media only screen and (min-width: 1000px) {
  .logo img {
    width: 80%;
    margin-left: 5rem;
  }
}

.slider-hero {
  width: 100%;
  height: 60vh;
  background: url("/assets/1.jpg") top no-repeat;
  background-size: cover;
  -webkit-animation: slide 28s infinite linear;
          animation: slide 28s infinite linear;
}

@media only screen and (min-width: 1000px) {
  .slider-hero {
    height: 80vh;
  }
}

@-webkit-keyframes slide {
  0% {
    background: url("/assets/1.jpg") center no-repeat;
    background-size: cover;
  }
  25% {
    background: url("/assets/1.jpg") center no-repeat;
    background-size: cover;
  }
  26% {
    background: url("/assets/2.jpg") center no-repeat;
    background-size: cover;
  }
  50% {
    background: url("/assets/2.jpg") center no-repeat;
    background-size: cover;
  }
  51% {
    background: url("/assets/3.jpg") center no-repeat;
    background-size: cover;
  }
  75% {
    background: url("/assets/3.jpg") center no-repeat;
    background-size: cover;
  }
  76% {
    background: url("/assets/4.jpg") center no-repeat;
    background-size: cover;
  }
  100% {
    background: url("/assets/4.jpg") center no-repeat;
    background-size: cover;
  }
}

@keyframes slide {
  0% {
    background: url("/assets/1.jpg") center no-repeat;
    background-size: cover;
  }
  25% {
    background: url("/assets/1.jpg") center no-repeat;
    background-size: cover;
  }
  26% {
    background: url("/assets/2.jpg") center no-repeat;
    background-size: cover;
  }
  50% {
    background: url("/assets/2.jpg") center no-repeat;
    background-size: cover;
  }
  51% {
    background: url("/assets/3.jpg") center no-repeat;
    background-size: cover;
  }
  75% {
    background: url("/assets/3.jpg") center no-repeat;
    background-size: cover;
  }
  76% {
    background: url("/assets/4.jpg") center no-repeat;
    background-size: cover;
  }
  100% {
    background: url("/assets/4.jpg") center no-repeat;
    background-size: cover;
  }
}

#separate {
  padding: 3rem 0;
  text-align: center;
  color: gray;
  background-color: white;
  font-size: 1.6rem;
}

#separate h2 {
  margin: 1rem 0;
}

#nuestros-proyectos {
  padding: 3rem 0;
}

#nuestros-proyectos .container {
  width: 90%;
}

@media only screen and (min-width: 1000px) {
  #nuestros-proyectos .container {
    width: 95%;
  }
}

#nuestros-proyectos h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 1000px) {
  #nuestros-proyectos h2 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}

#nuestros-proyectos .nuestros-proyectos__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 1rem;
}

@media only screen and (min-width: 1000px) {
  #nuestros-proyectos .nuestros-proyectos__grid {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

#nuestros-proyectos .nuestros-proyectos__grid__column {
  position: relative;
}

@media only screen and (min-width: 1000px) {
  #nuestros-proyectos .nuestros-proyectos__grid__column:hover {
    cursor: pointer;
  }
  #nuestros-proyectos .nuestros-proyectos__grid__column:hover img {
    -webkit-transition: .2s;
    transition: .2s;
    -webkit-filter: opacity(0.2) blur(2px);
            filter: opacity(0.2) blur(2px);
  }
  #nuestros-proyectos .nuestros-proyectos__grid__column:hover p {
    bottom: 5rem;
    -webkit-transition: .4s;
    transition: .4s;
  }
}

#nuestros-proyectos .nuestros-proyectos__grid__column p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  text-align: center;
  -webkit-transition: .4s;
  transition: .4s;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 0px 0px 10px #2b2b2b;
}

#proyecto-seleccionado {
  padding: 3rem 0;
}

#proyecto-seleccionado .container {
  width: 90%;
  margin: 0 auto;
}

@media only screen and (min-width: 1000px) {
  #proyecto-seleccionado .container {
    width: 95%;
  }
}

#proyecto-seleccionado h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 1000px) {
  #proyecto-seleccionado h2 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}

#proyecto-seleccionado .proyecto-seleccionado__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  margin: 2rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

#proyecto-seleccionado .proyecto-seleccionado__grid__column {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .4s;
  transition: .4s;
}

#proyecto-seleccionado .proyecto-seleccionado__grid__column img {
  border: 2px solid white;
}

@media only screen and (min-width: 1000px) {
  #proyecto-seleccionado .proyecto-seleccionado__grid__column img {
    border: 5px solid white;
  }
}

#proyecto-seleccionado .proyecto-seleccionado__grid__column:hover {
  -webkit-filter: opacity(0.2);
          filter: opacity(0.2);
  -webkit-transition: .4s;
  transition: .4s;
  cursor: pointer;
}

@media only screen and (min-width: 1000px) {
  #proyecto-seleccionado .proyecto-seleccionado__grid {
    -ms-grid-columns: (1fr)[8];
        grid-template-columns: repeat(8, 1fr);
  }
}

#videos {
  padding: 3rem 0;
}

#videos .container {
  width: 80%;
}

@media only screen and (min-width: 1000px) {
  #videos .container {
    width: 95%;
  }
}

#videos h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 1000px) {
  #videos h2 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}

#videos .videos__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media only screen and (min-width: 1000px) {
  #videos .videos__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

#servicios {
  padding: 3rem 0;
}

#servicios .container {
  width: 80%;
}

@media only screen and (min-width: 1000px) {
  #servicios .container {
    width: 95%;
  }
}

#servicios h2 {
  text-align: center;
  font-size: 1.6rem;
  margin: 4rem 0;
}

@media only screen and (min-width: 1000px) {
  #servicios h2 {
    font-size: 2rem;
    margin-bottom: 10rem;
  }
}

#servicios h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

@media only screen and (min-width: 1000px) {
  #servicios h3 {
    font-size: 2rem;
  }
}

#servicios .servicios__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 5rem;
  text-align: center;
  margin: 4rem 0;
}

@media only screen and (min-width: 1000px) {
  #servicios .servicios__grid {
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

#servicios .servicios__grid__column i {
  font-size: 3.5rem;
  margin-bottom: 3rem;
  color: red;
}

#servicios .servicios__grid__column h2 {
  font-size: 2rem;
}

#servicios .servicios__grid__column p {
  font-size: 1.6rem;
  line-height: 2;
}

#buttons {
  padding: 3rem 0;
}

@media only screen and (min-width: 1000px) {
  #buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}

#buttons a {
  display: inline-block;
  text-decoration: none;
  color: white;
  background-color: red;
  width: 100%;
  padding: 2rem 0;
  margin: 1.5rem 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  -webkit-transition: .4s;
  transition: .4s;
}

@media only screen and (min-width: 1000px) {
  #buttons a {
    width: 20%;
    margin: 1.5rem 2rem;
  }
  #buttons a:hover {
    background-color: #d10202;
    -webkit-transition: .4s;
    transition: .4s;
  }
}

#nosotros {
  padding: 3rem 0;
}

#nosotros .nosotros-grid1 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 1000px) {
  #nosotros .nosotros-grid1 {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    margin: 5rem 0;
    gap: 5rem;
  }
}

#nosotros .nosotros-grid1__column h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
}

#nosotros .nosotros-grid1__column p {
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: 3rem;
}

#nosotros .nosotros-grid1__column h3 {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}

#nosotros .nosotros-grid1__column iframe {
  margin-bottom: 3rem;
}

#nosotros .nosotros-grid2 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 1000px) {
  #nosotros .nosotros-grid2 {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    margin: 5rem 0;
    gap: 10rem;
  }
}

#nosotros .nosotros-grid2 form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#nosotros .nosotros-grid2 form label {
  font-size: 1.6rem;
  color: #898989;
  font-weight: 700;
  margin: 1rem 0;
  text-align: left;
}

#nosotros .nosotros-grid2 form input,
#nosotros .nosotros-grid2 form select,
#nosotros .nosotros-grid2 form textarea {
  width: 100%;
  padding: 1rem;
  margin: 2rem 0;
  background-color: transparent;
  outline: none;
  border: 2px solid #898989;
  font-size: 1.6rem;
  font-family: 'Montserrat';
  -webkit-transition: .4s;
  transition: .4s;
}

#nosotros .nosotros-grid2 form input:focus,
#nosotros .nosotros-grid2 form select:focus,
#nosotros .nosotros-grid2 form textarea:focus {
  background-color: white;
  caret-color: black;
  -webkit-transition: .4s;
  transition: .4s;
}

#nosotros .nosotros-grid2 form select {
  background-color: #262F36;
  color: white;
}

#nosotros .nosotros-grid2 form select:focus {
  background-color: #262F36;
  caret-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

#nosotros .nosotros-grid2 form textarea {
  resize: none;
  height: 100px;
}

#nosotros .nosotros-grid2 form button {
  display: inline-block;
  padding: 1.5rem 4rem;
  outline: none;
  border: none;
  background-color: red;
  color: white;
  font-weight: 700;
  font-family: 'Montserrat';
}

#nosotros .nosotros-grid2 form .form-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 1000px) {
  #nosotros .nosotros-grid2 form .form-grid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}

footer {
  padding: 3rem 0;
  text-align: center;
}

footer img {
  margin: 1rem 0;
}

footer .footer__contact {
  margin: 1rem 0;
  color: #a3a3a3;
}

footer .footer__social-icons {
  margin: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .footer__social-icons i {
  font-size: 2rem;
  margin: 0 1rem;
  color: #a3a3a3;
  -webkit-transition: .4s;
  transition: .4s;
}

@media only screen and (min-width: 1000px) {
  footer .footer__social-icons i:hover {
    color: red;
    -webkit-transition: .4s;
    transition: .4s;
  }
}

footer .footer__copyright {
  color: #a3a3a3;
}

.nav-desktop {
  display: none;
}

@media only screen and (min-width: 1000px) {
  .nav-desktop {
    display: block;
  }
  .nav-desktop__ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 2rem;
  }
  .nav-desktop__li {
    list-style: none;
    display: inline-block;
    margin: 0 2rem;
  }
  .nav-desktop__li a {
    color: white;
    text-decoration: none;
    display: inline-block;
    font-size: 1.6rem;
    -webkit-transition: .4s;
    transition: .4s;
    font-weight: 700;
  }
  .nav-desktop__li a:hover {
    color: red;
    -webkit-transition: .4s;
    transition: .4s;
  }
}

#publicaciones {
  padding: 3rem 0;
  background-color: white;
  color: black;
}

#publicaciones .container {
  width: 80%;
}

@media only screen and (min-width: 1000px) {
  #publicaciones .container {
    width: 70%;
  }
}

#publicaciones h2 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 1000px) {
  #publicaciones h2 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}

#publicaciones .publicaciones__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 2rem;
}

@media only screen and (min-width: 1000px) {
  #publicaciones .publicaciones__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.nav__a.link-active {
  color: red;
}

.nav-desktop a.link-active {
  color: red;
}
/*# sourceMappingURL=style.css.map */