body {
  margin: 0px;
  padding: 0px;
}

main {
  width: 100%;
  overflow-x: hidden;
}

* {
  font-family: "Urbanist", serif;
  font-optical-sizing: auto;
  box-sizing: border-box;
  background-size: cover;
  background-position: cente;
  background-repeat: no-repeat;
}

a {
  text-decoration: none;
  color: inherit !important;
}

img {
  max-width: 100%;
}

h1, h2, h3 {
  font-family: "Archivo Black", serif;
  font-weight: 400;
}

.text-der {
  text-align: right;
}

.text-cen {
  text-align: center;
}

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

.cta {
  display: inline-block;
  color: #fff !important;
  background-color: blue;
  padding: 10px 30px;
  font-size: 20px;
  border-radius: 50px;
  margin-left: 50px;
}

section {
  width: 100%;
  padding: 50px;
}

#logo {
  width: 300px;
}

#home {
  background-color: #897cc2;
  background-image: url(../img/galeria-5.jpg);
  background-blend-mode: multiply;
  height: 90vh;
}
#home * {
  color: #fff;
  text-shadow: 2px 2px 10px #000;
}
#home h1 {
  font-size: 40px;
}
#home .flex article {
  width: 50%;
}
#home.destapacionesHome {
  background-image: url(../img/destapaciones/canieros.jpg);
}

#clientes .flex article {
  width: 100px;
  font-size: 12px;
}

#presupuesto {
  background: #261e4b;
}
#presupuesto * {
  color: #fff;
}

#galeria {
  padding: 0px !important;
}
#galeria img {
  height: 270px;
  width: 33%;
  -o-object-fit: cover;
     object-fit: cover;
}

#reparaciones .flex article {
  width: 50%;
}

#contacto {
  background-color: #2b1c6d;
  color: #fff;
}

.xs {
  display: none;
}

@media screen and (max-width: 900px) {
  .xs {
    display: block;
  }
  * {
    text-align: center;
  }
  .cta {
    margin: 15px 0px;
  }
  .text-der {
    text-align: center;
  }
  .flex {
    flex-direction: column;
  }
  section {
    padding: 15px;
  }
  #home {
    height: auto;
  }
  #home .flex article {
    width: 100%;
  }
  #reparaciones .flex article {
    width: 100%;
  }
  #clientes .flex {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  #galeria img {
    width: 49%;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #mapa img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}/*# sourceMappingURL=main.css.map */