@font-face {
  font-family: 'HighlandGothicFLF Regular';
  font-style: normal;
  font-weight: normal;
  src: local('HighlandGothicFLF Regular'), url('../fonts/HighlandGothicFLF.woff') format('woff');
}

.hidden {
  overflow: hidden;
}

* {
  user-select: none;
}

body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  background-color: #fff;
  position: relative;
}

::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar:vertical {
  display: block;
  width: 5px;
}
  
::-webkit-scrollbar-track:vertical {
  background: transparent;
}

::-webkit-scrollbar-thumb:vertical {
  background: #5c5c5c;
}

/**** NAV */

.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 50;
  background-color: transparent;
}

.nav.alt {
  position: fixed;
  background-color: #fff;
  box-shadow: 0px 0px 4px 2px #cecece;
}

.nav-logo img {
  height: 45px;
}

.nav-opciones {
  width: 600px;
  display: flex;
  justify-content: space-evenly;
}

.nav-opcion {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  /* color: #606062; */
  color: #fff;
  cursor: pointer;
}

.nav-opcion.alt {
  color: #5b5b5b;
}

.nav-ham {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 28px;
  /* color: #606062; */
  color: #fff;
  display: none;
}

.nav-ham.alt {
  color: #5b5b5b;
}

.nav-ops-mob {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  /* background-color: rgba(250, 250, 250, 0.9); */
  background-color: #fff;
  z-index: 50;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  transition: 1s all ease;
  -webkit-transition: 1s all ease;
  -moz-transition: 1s all ease;
  -ms-transition: 1s all ease;
  -o-transition: 1s all ease;
}

.nav-ops-mob.alt {
  right: 0;
}

.close-nav-ops-mob {
  font-size: 20px;
  position: absolute;
  top: 30px;
  right: 30px;
  color: #295684;
}

.nav-op-mob {
  width: 100%;
  margin: 20px auto;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: #295684;
  font-weight: 600;
}

@media (max-width: 950px) {

  .nav-logo img {
    height: 40px;
  }

  .nav-ham {
    display: block;
  }

  .nav-opciones {
    display: none;
  }
}

/**** MATERIAL GENERAL */

.contenido {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.contenedor-flex {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  /* align-content: center;
  justify-content: center; */
  position: relative;
}

.sombra {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
  display: none;
}

.sombra.active {
  display: block;
}

/**** HOME */

.portada-home {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: 0% center;
  background-repeat: no-repeat;
  position: relative;
}

.sombra-portada-home {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.flecha-portada-home {
  position: absolute;
  bottom: 10%;
  left: calc(50% - 15px);
  width: 30px;
  text-align: center;
  z-index: 2;
  font-size: 20px;
  color: #fff;
}

.seccion-home {
  width: 100%;
  min-height: 500px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  position: relative;
}

.titulo-home {
  width: 90%;
  margin: 30px auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  color: #295684;
  font-weight: 600;
}

@media (max-width: 500px) {
  .titulo-home {
    font-size: 20px;
  }
}

.textos-servicios-home {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

.img-servicios-home {
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 500px) {
  .textos-servicios-home,
  .img-servicios-home {
    width: 100%;
    height: 50%;
  }
}

.textos-home {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
}

.texto-home {
  text-align: justify;
  font-size: 20px;
  color: #5b5b5b;
  font-family: 'Montserrat', sans-serif;
}

.btn-textos-home {
  width: 120px;
  height: 40px;
  line-height: 40px;
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: #0099da;
  text-align: center;
  font-size: 14px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  z-index: 4;
}

@media (max-width: 1111px) {
  .textos-home {
    margin-top: 30px;
  }

  .texto-home {
    font-size: 16px;
  }
}

.img-nosotros-home {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sombra-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 3;
}

.textos-img {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  z-index: 4;
}

.titulo-img {
  width: 100%;
  margin: 30px auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.texto-img {
  width: 100%;
  height: 100%;
  text-align: justify;
  font-size: 20px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  line-height: 35px;
}

@media (max-width: 500px) {
  .titulo-img {
    font-size: 20px;
  }

  .texto-img {
    font-size: 16px;
  }
}

.img-newsletter {
  width: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.textos-newsletter {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

@media (max-width: 500px) {
  .img-newsletter {
    width: 100%;
    height: 40%;
  }

  .textos-newsletter {
    width: 100%;
    height: 50%;
  }
}

.titulo-newsletter {
  width: 100%;
  text-align: center;
  font-size: 40px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.texto-newsletter {
  width: 90%;
  max-width: 400px;
  margin-top: 30px;
  text-align: justify;
  font-size: 16px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.btns-newsletter {
  width: 100%;
  max-width: 600px;
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.campo-newsletter {
  width: 240px;
  height: 60px;
  line-height: 60px;
  margin: 10px auto;
  appearance: none;
  border: 1px solid #fff;
  font-size: 16px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  background-color: transparent;
  padding-left: 20px;
  outline: none;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.campo-newsletter::placeholder {
  color: #fff;
}

.btn-newsletter {
  width: 265px;
  height: 65px;
  line-height: 65px;
  margin: 10px auto;
  background-color: #0099da;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

@media (max-width: 500px) {
  .campo-newsletter,
  .btn-newsletter {
    height: 50px;
    line-height: 50px;
  }
}

.servicio {
  width: 33%;
  height: 400px;
  display: flex;
  flex-wrap: wrap;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 500px) {
  .servicio {
    width: 100%;
  }
}

.servicio-nombre {
  position: absolute;
  bottom: 30px;
  left: 50%;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 4;
}

.servicio-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: 120px;
  height: 40px;
  line-height: 40px;
  background-color: #0099da;
  text-align: center;
  font-size: 14px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  z-index: 4;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  cursor: pointer;
}

/**** MATERIAL VENTANAS INFO */

.titulo-ventana {
  width: 100%;
  margin: 30px auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  color: #295684;
  font-weight: 600;
}

.textos-ventana {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-wrap: wrap;
}

.texto-ventana {
  width: 100%;
  margin: 10px auto;
  display: flex;
  flex-wrap: wrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  color: #5b5b5b;
  text-align: justify;
}

.img-ventana {
  width: 100%;
  max-width: 500px;
}

@media (max-width: 1399px) {
  .img-ventana {
    max-width: 400px;
  }

  .textos-ventana {
    max-width: 500px;
  }
}

@media (max-width: 500px) {
  .img-ventana {
    margin-top: 30px;
  }
}

.img-ventana img {
  width: 100%;
}

/**** PRODUCTOS */

.producto {
  width: 90%;
  max-width: 350px;
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}

.producto-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.producto-img img {
  width: 100%;
}

.producto-nombre {
  width: 90%;
  margin-top: 10px;
  font-size: 20px;
  color: #295684;
  font-family: 'Montserrat', sans-serif;
}

.producto-precio {
  width: 90%;
  font-size: 16px;
  color: #7b7b7b;
  font-family: 'Montserrat', sans-serif;
}

/**** PRODUCTO */

.imagenes-producto {
  width: 90%;
  max-width: 600px;
  height: 500px;
  display: flex;
  position: relative;
}

@media (max-width: 1199px) {
  .imagenes-producto {
    max-width: 600px;
  }
}

@media (max-width: 500px) {
  .imagenes-producto {
    margin-bottom: 50px;
  }
}

.imagen-producto {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
}

.informacion-producto {
  width: 90%;
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  position: relative;
}

.nombre-producto {
  width: 100%;
  margin-bottom: 10px;
  font-size: 40px;
  color: #295684;
  font-family: 'Montserrat', sans-serif;
}

.precio-producto {
  width: 100%;
  margin-bottom: 10px;
  font-size: 20px;
  color: #7b7b7b;
  font-family: 'Montserrat', sans-serif;
}

.linea-producto {
  width: 100%;
  border: 0.5px solid #cecece;
}

.descripcion-producto {
  width: 100%;
  margin-bottom: 20px;
  white-space: pre-wrap;
  font-size: 18px;
  color: #5b5b5b;
  font-family: 'Montserrat', sans-serif;
}

.texto-variantes-producto {
  width: 100%;
  margin-bottom: 10px;
  font-size: 15px;
  color: #7b7b7b;
  font-family: 'Montserrat', sans-serif;
}

.contenedor-variantes-producto {
  width: 100%;
  display: flex;
}

.variantes-producto {
  display: flex;
  position: relative;
}

.select-variantes-producto {
  width: 120px;
  height: 30px;
  line-height: 30px;
  padding-left: 10px;
  color: #000;
  font-weight: bold;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  border: 2px solid #295684;
  background-color: transparent;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.flecha-select-variantes-producto {
  position: absolute;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #295684;
  right: 0;
  top: 0;
  z-index: 2;
}

.btn-cotizar {
  width: 120px;
  height: 40px;
  line-height: 40px;
  margin: -5px auto;
  text-align: center;
  background-color: #0099da;
  color: #fff;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}

.otros-productos {
  width: 90%;
  max-width: 1600px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
}

.titulo-otros-productos {
  width: 100%;
  margin-bottom: 10px;
  font-size: 26px;
  color: #295684;
  font-family: 'Montserrat', sans-serif;
}

/**** PROYECTOS */

.proyecto {
  width: 90%;
  max-width: 350px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 3px 3px #d6d6d6;
}

.proyecto-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proyecto-img img {
  width: 100%;
  max-height: 220px;
}

.proyecto-categoria {
  width: 90%;
  margin-top: 10px;
  font-size: 13px;
  color: #5b5b5b;
  font-family: 'Montserrat', sans-serif;
}

.proyecto-nombre {
  width: 90%;
  margin-top: 10px;
  font-size: 20px;
  color: #295684;
  font-family: 'Montserrat', sans-serif;
}

.proyecto-fecha {
  width: 90%;
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #7b7b7b;
  font-family: 'Montserrat', sans-serif;
}

/**** PROYECTO */

.arbol-portafolio {
  width: 270px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
}

.elemento-arbol-portafolio {
  color: #95A5A6;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
}

.separador-arbol-portafolio {
  border: 0.5px solid #95A5A6;
  width: 13px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

.portada-proyecto {
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fecha-proyecto {
  width: 90%;
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 10px;
  color: #7b7b7b;
  font-family: 'Montserrat', sans-serif;
}

.titulo-proyecto {
  width: 90%;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 40px;
  color: #295684;
  font-family: 'Montserrat', sans-serif;
}

.descripcion-proyecto {
  width: 100%;
  margin-bottom: 20px;
  white-space: pre-wrap;
  font-size: 16px;
  color: #5b5b5b;
  font-family: 'Montserrat', sans-serif;
}

@media (max-width: 500px) {
  .titulo-proyecto {
    font-size: 30px;
  }
}

.imagenes-proyecto {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.imagen-proyecto {
  width: 320px;
  margin: 10px auto;
  box-shadow: 0px 3px 3px #d6d6d6;
}

.imagen-proyecto img {
  width: 100%;
  height: 100%;
}

/* GALERIA */
.hello {
  opacity: 1 !important;
}

.full {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.full .content {
  background-color: rgba(0,0,0,0.75) !important;
  height: 100%;
  width: 100%;
  display: grid;
}

.full .content img {
  left: 50%;
  transform: translate3d(0, 0, 0);
  animation: zoomin 1s ease;
  max-width: 40%;
  max-height: 100%;
  margin: auto;
}

@media(max-width: 800px) {
  .full .content img {
    max-width: 90%;
  }
}

.byebye {
  opacity: 0;
}

.byebye:hover {
  transform: scale(0.2) !important;
}

.gallery {
  display: grid;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-auto-rows: 8px;
}

.gallery img {
  max-width: 100%;
  border-radius: 5px;
  box-shadow: 0px 3px 3px #d6d6d6;
  transition: all 1.5s ease;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

/* .gallery img:hover {
  box-shadow: 0 0 32px #333;
} */

.gallery .content {
  padding: 4px;
}

.gallery .gallery-item {
  transition: grid-row-start 300ms linear;
  transition: transform 300ms ease;
  transition: all 0.5s ease;
  cursor: pointer;
}

.gallery .gallery-item:hover {
  transform: scale(1.025);
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  }
}

@media (max-width: 400px) {
  .gallery {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
}

/**** CONTACTO */

.contenedor-contacto {
  width: 90%;
  max-width: 1100px;
  height: auto;
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
}

.titulo-contacto {
  width: 90%;
  height: auto;
  margin: 10px auto;
  text-align: center;
  font-size: 40px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #295684;
}

.mapa-contacto {
  width: 90%;
  max-width: 500px;
  height: 400px;
  margin: 10px auto;
}

@media (max-width: 900px) {
  .mapa-contacto {
    margin-bottom: 80px;
  }
}

.mapa-contacto iframe {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.contenedor-redes-contacto {
  width: 150px;
  height: auto;
  margin: 20px 0;
  display: flex;
}

.red-contacto {
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  cursor: pointer;
}

.formulario-contacto {
  width: 90%;
  max-width: 350px;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  border-radius: 5px;
  padding-bottom: 60px;
  position: relative;
}

.leyenda-formulario-contacto {
  width: 100%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 6px;
  margin-top: 5px;
  font-size: 16px;
  color: #5b5b5b;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.campo-formulario-contacto {
  width: 100%;
  height: 40px;
  margin: 0 auto;
  margin-top: 6px;
  margin-bottom: 5px;
  border: none;
  outline: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid #295684;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 15px;
  padding-left: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.textarea-formulario-contacto {
  width: 100%;
  height: 164px;
  margin: 0 auto;
  border: none;
  outline: none;
  appearance: none;
  resize: none;
  background-color: transparent;
  border: 1px solid #295684;
  padding-left: 10px;
  padding-top: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 15px;
  padding-left: 10px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.btn-formulario-contacto {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 165px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #0099da;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.panel-mensaje-contacto {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  background-color: #0099da;
  z-index: 2;
  transition: ease-in-out 1s;
  -webkit-transition: ease-in-out 1s;
  -moz-transition: ease-in-out 1s;
  -ms-transition: ease-in-out 1s;
  -o-transition: ease-in-out 1s;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.panel-mensaje-contacto.active {
  display: flex;
}

.logo-panel-mensaje-contacto {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}

.texto-panel-mensaje-contacto {
  width: auto;
  height: auto;
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

/**** SWIPER */

.swiper-style {
  width: 90%;
  max-width: 1300px;
  height: auto;
  margin: 0;
  margin-left: inherit;
  margin-right: inherit;
  padding: 0;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  cursor: default;
  overflow: scroll hidden;
  scroll-snap-type: x mandatory;
  scroll-padding: 0px;
  scrollbar-width: none;
  position: relative;
  z-index: 3;
}

.swiper-wrapper {
  padding-left: 5px;
  margin-bottom: 20px;
  cursor: grab;
}

.swiper-button-prev {
  left: -40px;
}

.swiper-button-next {
  right: -40px;
}

@media (max-width: 500px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.swiper-button-prev::after {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 22px;
  color: #5b5b5b;
}

.swiper-button-next::after {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 22px;
  color: #5b5b5b;
}

/**** FOOTER */

.footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: space-evenly;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #cecece;
}

.section-footer {
  width: 80%;
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
}

.title-footer {
  width: 100%;
  margin: 5px auto;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.element-footer {
  width: 100%;
  margin: 8px auto;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  cursor: pointer;
}

.logo-footer {
  margin: 10px auto;
}

.logo-footer img {
  height: 40px;
}

.somm-footer {
  font-size: 10px;
  font-family: 'HighlandGothicFLF Regular';
  cursor: pointer;
}

@media (max-width: 1100px) {
  .section-footer {
    margin: 20px auto;
  }
}

@media (max-width: 1199px) {
  .title-footer,
  .element-footer {
    text-align: center;
  }
}

/* ********* POPUP */

.popup {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #0099da;
  background: -webkit-linear-gradient(to bottom right, #ADB6B8, #0099da); 
  background: linear-gradient(to bottom right, #ADB6B8, #0099da);
  display: none;
}

.icono-popup {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  margin: 0 calc(50% - 30px);
  margin-top: 30vh;
  z-index: 99;
  border: 4px solid #ffffff;
  color: #ffffff;
  font-size: 40px;
  border-radius: 1000px;
}

.mensaje-popup {
  width: 95%;
  height: auto;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #ffffff;
  margin: 0 auto;
  margin-top: 20px;
}

.btn-popup {
  width: 160px;
  height: 40px;
  line-height: 40px;
  background-color: transparent;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
  border: 2px solid #ffffff;
  color: #ffffff;
  margin: 25px calc(50% - 80px);
  cursor: pointer;
  border-radius: 5px;
}

/* ********* POPUP RESEÑA */

.sombra-cotizacion {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 98;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

.sombra-cotizacion.active {
  display: block;
}

.popup-cotizacion {
  width: 330px;
  height: 320px;
  position: fixed;
  top: calc(50% - 200px);
  left: calc(50% - 165px);
  z-index: 99;
  background-color: #fff;
  border-radius: 5px;
  display: none;
}

.popup-cotizacion.active {
  display: block;
}

.icono-popup-cotizacion {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #000;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
}

.titulo-popup-cotizacion {
  width: 100%;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #000;
  margin: 0 auto; 
  margin-top: 30px;
}

.btn4 {    
  width: 90%;
  height: 35px;
  margin: 0 auto;
  margin-top: 10px;
  border: 1px solid #0099da;
  border-radius: 5px;
  display: flex;
}

.icono-btn4 {
  width: 20px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  margin: 0 auto;
  color: #0099da;
  font-size: 15px;
  cursor: pointer;
}

.texto-btn4 {
  width: calc(100% - 80px);
  height: 35px;
  line-height: 35px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #000;
  overflow: hidden;
}

.edit-btn4 {
  width: 20px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  margin: 0 auto;
  color: #52a0df;
  font-size: 15px;
  cursor: pointer;
}

.delete-btn4 {
  width: 20px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  margin: 0 auto;
  color: #df5252;
  font-size: 15px;
  cursor: pointer;
}

.seleccion-btn4 {
  width: 20px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  margin: 0 auto;
  color: #0099da;
  font-size: 15px;
  cursor: pointer;
}

.seleccion-btn4.active {
  color: #32bd60;
}

/* FORMULARIOS */

.titulo-formulario {
  width: 100%;
  margin: 30px auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  color: #295684;
  font-weight: 600;
  text-align: center;
}

/**** COTIZADOR PRODUCTOS */

.contenedor-datos-coti {
  width: 90%;
  max-width: 400px;
  min-height: 200px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  background-color: #295684;
  padding-top: 10px;
  padding-bottom: 10px;
}

.titulo-coti {
  width: 90%;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

.textfield-coti {
  width: 90%;
  margin-top: 15px;
  padding-bottom: 5px;
  appearance: none;
  outline: none;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #fff;
}

.textfield-coti::placeholder {
  color: #fff;
}

.textfield-coti::-webkit-input-placeholder {
  color: #fff;
}