:root {
  --colorPrinci: #fc671a;
  --colorSecu: #d54c1c;
  --colorTer: #333;
} /* width */
::-webkit-scrollbar {
  width: 10px;
} /* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
  width: 10px;
} /* Handle */
::-webkit-scrollbar-thumb {
  background: var(--colorTer);
  border-radius: 10px;
  width: 10px;
} /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--colorSecu);
}
body {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
a:hover {
  text-decoration: none;
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
.cont-form {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 1);
  z-index: 999;
  color: #000;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: none;
  flex-direction: column;
  justify-content: center;
}
.cont-form i.bi-x-square {
  position: absolute;
  top: 50px;
  right: 100px;
  font-size: 2.5em;
  color: var(--colorPrinci);
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
.cont-form i.bi-x-square:hover {
  opacity: 1;
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
.cont-form .columnas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.cont-form form input,
.cont-form form textarea {
  max-width: 400px;
  margin-bottom: 10px;
}
.cont-form .columnas .cont-img {
  width: 400px;
  height: 530px;
  background: #eaeaea;
  float: right;
  margin-right: 50px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background-image: url(../img/img-contrata.png);
  background-size: cover;
}
header.fixed {
  background: #fff;
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  padding-top: 10px;
  padding-bottom: 10px;
}
header.fixed .logo img {
  width: 130px;
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
header.fixed .botones a {
  padding-top: 5px;
  padding-bottom: 3px;
  font-size: 0.95em;
}
header.fixed .botones a:hover {
  border: solid 1px var(--colorTer);
  color: var(--colorTer);
}
header.fixed .botones a:hover i {
  background: var(--colorTer);
  color: #fff;
}
header.fixed .botones a:nth-child(2):hover {
  background: var(--colorTer);
  border: solid 1px var(--colorTer);
  color: #fff;
}
header.fixed .botones a:nth-child(2):hover i {
  background: #fff;
  color: var(--colorTer);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 30px;
  padding-bottom: 20px;
  z-index: 99;
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
header .logo {
  float: left;
}
header img {
  width: 170px;
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
header .bloque-derecho {
  float: right;
  margin-top: 5px;
  margin-right: 50px;
}
header .botones {
  display: inline-block;
}
#img-rojo {
  display: none;
}
header .botones a {
  color: #212529;
  background: var(--colorPrinci);
  border: solid 1px var(--colorPrinci);
  margin-left: 10px;
  padding: 5px 15px;
  padding-top: 10px;
  padding-bottom: 8px;
  border-radius: 30px;
  display: inline-block;
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
header .botones a:hover {
  color: var(--colorPrinci);
  background: #fff;
  border: solid 1px #fff;
}
header .botones a:hover i {
  color: #fff;
  background: var(--colorPrinci);
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
header .botones a:nth-child(2),
header .botones a:nth-child(3) {
  background: transparent;
  border: solid 1px #212529;
}
header .botones a:nth-child(2):hover {
  color: var(--colorPrinci);
  background: #fff;
  border: solid 1px #fff;
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
header .botones a:nth-child(2):hover i {
  color: #fff;
  background: var(--colorPrinci);
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
header.fixed {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
header.fixed .botones a:nth-child(2),
header.fixed .botones a:nth-child(3) {
  background: transparent;
  border: solid 1px var(--colorPrinci);
}
header.fixed .botones a:nth-child(2) {
  color: var(--colorPrinci);
}
header.fixed .botones a:nth-child(2) i {
  background: var(--colorPrinci);
  color: #fff;
}
header .botones i {
  margin-top: -2px;
  margin-left: 10px;
  background: #fff;
  color: var(--colorPrinci);
  display: inline-block;
  float: right;
  height: 30px;
  width: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 30px;
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
.carousel-indicators {
  bottom: 50px;
}
.carousel-caption {
  bottom: 120px;
  max-width: 600px;
  margin: auto;
  background: #fff;
  padding-top: 15px;
  padding-bottom: 15px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.carousel-caption h5 {
  color: var(--colorPrinci);
  margin-bottom: 0;
  padding: 15px;
  padding-bottom: 0;
  font-size: 1.8em;
  padding-top: 0;
}
.carousel-caption p {
  color: var(--colorTer);
  margin-top: 0;
  padding: 15px 50px;
  font-size: 1.2em;
  line-height: 22px;
  padding-top: 10px;
  padding-bottom: 0;
}
article.nosotros {
  padding-top: 100px;
  padding-bottom: 100px;
}
article.nosotros h3 {
  color: var(--colorPrinci);
  margin-bottom: 1em;
}
article.nosotros hr {
  max-width: 50px;
  border: none;
  background: var(--colorPrinci);
  height: 8px;
  opacity: 1;
  border-radius: 4px;
  margin-left: 10px;
  margin-bottom: 40px;
  margin-top: 25px;
}
article.nosotros p {
  color: #666666;
}
article.nosotros h5 {
  color: var(--colorPrinci);
  margin-top: 40px;
}
article.nosotros ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  margin-top: 10px;
}
article.nosotros ul li {
  padding: 10px;
  border-bottom: solid 1px #eaeaea;
}
article.nosotros ul li:last-child {
  border-bottom: none;
}
article.nosotros ul li a {
  color: #666666;
}
article.nosotros ul li a:hover {
  color: var(--colorPrinci);
}
article.nosotros ul li a i {
  color: var(--colorPrinci);
}
article.caracteristicas {
  background: #f4f4f4;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
}
article.caracteristicas h3 {
  color: var(--colorPrinci);
  margin-bottom: 1em;
}
article.caracteristicas hr {
  max-width: 50px;
  border: none;
  background: var(--colorPrinci);
  height: 8px;
  opacity: 1;
  border-radius: 4px;
  margin: auto;
  margin-top: 25px;
  margin-bottom: 40px;
}
article.caracteristicas .contiene-img {
  background: var(--colorPrinci);
  height: 160px;
  width: 160px;
  margin: auto;
  border-radius: 50%;
  line-height: 160px;
}
article.caracteristicas .contiene-img i {
  color: #fff;
  font-size: 4em;
}
article.caracteristicas h4 {
  color: var(--colorPrinci);
  font-size: 1.3em;
  margin-top: 20px;
}
article.ubicacion {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
  text-align: center;
}
article.ubicacion h3,
article#valores h3 {
  color: var(--colorPrinci);
  margin-bottom: 2em;
}
article#valores {
  text-align: center;
}
article.ubicacion hr {
  max-width: 50px;
  border: none;
  background: var(--colorPrinci);
  height: 8px;
  opacity: 1;
  border-radius: 4px;
  margin: auto;
  margin-top: 25px;
  margin-bottom: 40px;
}
article.ubicacion .datos {
  background: #e7e7e7;
  height: 550px;
  margin-left: -15px;
  text-align: left;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-left: 50px;
  padding-right: 50px;
  color: var(--colorTer);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
article.ubicacion iframe {
  width: 100%;
  height: 550px;
  margin-right: -15px;
  -webkit-border-top-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
article.ubicacion .cabecera {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 1em;
}
article.ubicacion p {
  font-size: 1.1em;
  margin-bottom: 0;
}
article.ubicacion ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 50px;
  display: inline-block;
}
article.ubicacion ul li {
  font-size: 1.1em;
  padding-top: 5px;
  padding-bottom: 5px;
}
article.ubicacion .redes {
  background: #eaeaea;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto auto;
  padding: 15px 0px;
}
article.ubicacion .redes .siguenos {
  font-weight: bold;
  margin-top: 2px;
}
article.ubicacion .redes .linkas a {
  color: #000;
  margin-left: 10px;
  font-size: 1.3em;
}
article.ubicacion .redes .linkas a:hover {
  color: var(--colorPrinci);
}
article#ubicacion form {
  margin-top: 0px;
}
article#ubicacion form input {
  margin-bottom: 15px;
  margin-top: 5px;
}
article.banner-inferior {
  background-image: url(../img/fondo-banner.png);
  background-size: 100%;
  min-height: 240px;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
article.banner-inferior .info {
  display: grid;
  grid-template-columns: auto auto;
}
article.banner-inferior .info p {
  font-size: 1.2em;
  color: #fff;
}
article.banner-inferior .info a {
  background: var(--colorPrinci);
  color: #fff;
  float: right;
  padding: 10px 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
article.banner-inferior .info a:hover {
  background: #fff;
  color: var(--colorPrinci);
}
footer {
  background: var(--colorPrinci);
  color: #fff;
  padding: 15px 0px;
}
footer .texto-derecha {
  text-align: right;
}
footer .texto-derecha a {
  color: #fff;
  font-weight: bold;
}
article.contacto {
  background: #eaeaea;
  color: #333;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
  background-image: url(../img/fondo.png);
  background-size: cover;
}
article.contacto p {
  font-size: 1.2em;
}
article.redes {
  position: absolute;
  top: 300px;
  left: 0;
  z-index: 9;
  background: var(--colorPrinci);
  padding: 20px;
  -webkit-border-top-right-radius: 10px;
  -webkit-border-bottom-right-radius: 10px;
  -moz-border-radius-topright: 10px;
  -moz-border-radius-bottomright: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
article.redes ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
article.redes ul li a {
  color: #fff;
  font-size: 1.4em;
  opacity: 0.7;
  margin-top: 10px;
  display: inline-block;
}
article.redes ul li:first-child a {
  margin-top: 0px;
}
article.redes ul li a:hover {
  opacity: 1;
}
article.contacto h3 {
  color: var(--colorPrinci);
}
article.contacto hr {
  max-width: 50px;
  border: none;
  background: var(--colorPrinci);
  height: 8px;
  opacity: 1;
  border-radius: 4px;
  margin: auto;
  margin-top: 25px;
  margin-bottom: 40px;
}
article.contacto form {
  width: 400px;
  margin: auto;
  text-align: left;
  margin-top: 30px;
}
article.contacto label {
  margin-bottom: 5px;
}
article.contacto input {
  margin-bottom: 20px;
}
.logo .rojo {
  display: none;
}
img.img-nosotros {
  max-width: 100%;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  margin-bottom: 30px;
}
.sombra {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  z-index: 9;
  background: rgb(255 255 255);
  background: -moz-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgb(255 255 255 / 51%) 19%,
    rgb(255 255 255 / 80%) 79%
  );
  background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(255 255 255 / 51%) 19%, rgb(255 248 248 / 80%) 79%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(255 255 255 / 51%) 19%, rgb(255 255 255 / 80%) 79%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
article.uso {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
  color: #333;
  text-align: center;
}
article.uso h2 {
  margin-bottom: 2em;
  color: var(--colorPrinci);
}
article.uso ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  margin: 0;
  padding: 0;
  margin-bottom: 40px;
}
article.uso ul li {
  list-style: none;
  display: inline-block;
  text-align: center;
  border: solid 1px #999;
  color: var(--colorTer);
  padding: 15px 0px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
article.uso ul li.activo {
  border: solid 1px var(--colorPrinci);
  color: #fff;
  background: var(--colorPrinci);
}
article.uso ul li:hover {
  border: solid 1px var(--colorSecu);
  background: var(--colorSecu);
  color: #fff;
  transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
}
.triple-img .retail,
.triple-img .despacho,
.triple-img .terreno,
.triple-img .ambulante {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.triple-img #contiene-despacho,
.triple-img #contiene-terreno,
.triple-img #contiene-ambulante {
  display: none;
}
.triple-img .primera {
  background-color: #eaeaea;
  height: 400px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.triple-img .segunda {
  background: #eaeaea;
  height: 190px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
.triple-img .tercera {
  background: #eaeaea;
  height: 190px;
  margin-top: 20px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
#contiene-retail .primera {
  background-image: url(../img/retail-01.png);
}
#contiene-retail .segunda {
  background-image: url(../img/retail-02.png);
}
#contiene-retail .tercera {
  background-image: url(../img/retail-03.png);
}
#contiene-despacho .primera {
  background-image: url(../img/despacho-01.png);
}
#contiene-despacho .segunda {
  background-image: url(../img/despacho-02.png);
}
#contiene-despacho .tercera {
  background-image: url(../img/despacho-03.png);
}
#contiene-ambulante .primera {
  background-image: url(../img/ambulante-01.png);
}
#contiene-ambulante .segunda {
  background-image: url(../img/ambulante-02.png);
}
#contiene-ambulante .tercera {
  background-image: url(../img/ambulante-03.png);
}
#contiene-terreno .primera {
  background-image: url(../img/terreno-01.png);
}
#contiene-terreno .segunda {
  background-image: url(../img/terreno-02.png);
}
#contiene-terreno .tercera {
  background-image: url(../img/terreno-03.png);
}
.cont-form .btn-primary {
  background: var(--colorPrinci);
  border: solid 1px var(--colorPrinci);
}
.cont-form .btn-primary:hover {
  background: var(--colorSecu);
  border: solid 1px var(--colorSecu);
}
#valores {
  background-image: url(../img/banner-valores.png);
  padding: 100px 0px;
  background-size: cover;
}
#valores .plan {
  text-align: left;
  background: var(--colorSecu);
  transition: 0.5s ease;
  -o-transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
  border-radius: 20px;
  position: relative;
  margin-top: 50px;
  color: #fff;
  padding-top: 0px;
  padding-bottom: 1px;
  width: 600px;
  margin: auto;
}
#valores .plan hr {
  opacity: 0.05;
}
#valores .plan h5 {
  margin-left: 0px;
  margin-bottom: 10px;
  font-size: 1.1em;
  background: #fff;
  color: var(--colorSecu);
  padding: 15px 20px;
}
#valores .plan h5.princi {
  -webkit-border-top-left-radius: 20px;
  -webkit-border-top-right-radius: 20px;
  -moz-border-radius-topleft: 20px;
  -moz-border-radius-topright: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
#valores .plan h5.total {
  text-align: center;
}
#valores .plan table {
  width: 90%;
  margin: auto;
  margin-bottom: 0px;
}
#valores .plan table tr {
  border-bottom: solid 0.5px #ffffff4d;
}
#valores .plan table tr:last-child {
  border-bottom: none;
}
#valores .plan table.fijo tr td:nth-child(2) {
  width: 35%;
  text-align: right;
}
#valores .plan table.unico tr td:nth-child(2) {
  width: 35%;
  text-align: right;
}
#valores .plan table tr td {
  padding: 12px 0px;
}
#valores table .btn-secondary {
  margin-left: 10px;
  margin-top: -4px;
}
#valores table .flechas {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
  margin-left: 100px;
}
#valores table #cantidad {
  display: inline-block;
  margin-right: 10px;
}
#valores table .flechas i.bi-caret-down-fill {
  position: absolute;
  margin-top: 7px;
  opacity: 0.7;
}
#valores table .flechas i.bi-caret-up-fill {
  position: absolute;
  margin-top: -7px;
  opacity: 0.7;
}
#valores table .flechas i.bi-caret-down-fill:hover,
#valores table .flechas i.bi-caret-up-fill:hover {
  opacity: 1;
  cursor: pointer;
}
.gracias {
  text-align: center;
  padding-top: 200px;
  padding-bottom: 200px;
}
.gracias .caja {
  background: #eaeaea;
  padding: 50px;
  border-radius: 20px;
}
@media (max-width: 900px) {
  #valores .plan {
    width: 100%;
  }
  .cont-form {
    padding: 20px;
  }
  .cont-form .columnas {
    grid-template-columns: repeat(1, 1fr);
  }
  .cont-form .columnas .cont-img {
    width: 100%;
    margin-right: 0;
    margin-top: 50px;
  }
  .cont-form i.bi-x-square {
    top: 5px;
    right: 25px;
  }
  .cont-form .columnas .cont-img {
    height: 250px;
  }
  .sombra {
    display: none;
  }
  .triple-img .retail,
  .triple-img .despacho,
  .triple-img .terreno,
  .triple-img .ambulante {
    grid-template-columns: repeat(1, 1fr);
  }
  #contiene-retail .segunda,
  #contiene-retail .tercera,
  #contiene-despacho .segunda,
  #contiene-despacho .tercera,
  #contiene-terreno .segunda,
  #contiene-terreno .tercera,
  #contiene-ambulante .segunda,
  #contiene-ambulante .tercera {
    display: none;
  }
  article.uso ul {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .banner-smartphone img {
    max-width: 100%;
  }
  .bloque-derecho .botones {
    display: none;
  }
  article.uso ul li {
    padding: 10px 0px;
  }
  header {
    padding-left: 40px;
    padding-right: 40px;
    background: rgba(0, 0, 0, 0.8);
  }
  article.nosotros,
  article.caracteristicas {
    padding-left: 20px;
    padding-right: 20px;
  }
  article.caracteristicas p {
    margin-bottom: 40px;
  }
  article#caracteristicas .final {
    margin-top: 50px;
  }
  article.ubicacion iframe {
    margin-right: 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }
  article.ubicacion .datos {
    margin-left: 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
  }
  article.contacto {
    padding-left: 20px;
    padding-right: 20px;
  }
  article.contacto form {
    width: 100%;
  }
  article.banner-inferior {
    background-size: cover;
    background-position-x: -330px;
  }
  article.banner-inferior .info {
    grid-template-columns: auto;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }
  .bloque-boton {
    text-align: center;
  }
  article.banner-inferior .info a {
    float: none;
  }
  footer {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  footer .texto-derecha {
    text-align: center;
    margin-top: 5px;
  }
  .info-menu {
    width: 80%;
    margin: auto;
    margin-top: 50px;
  }
  .info-menu a {
    display: block;
    background: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 10px 0px;
    margin-bottom: 5px;
    color: var(--colorPrinci);
    position: relative;
  }
  .info-menu a i {
    position: absolute;
    right: 20px;
    top: 10px;
  }
  .botones {
    display: none;
  }
  article.nosotros,
  article.caracteristicas,
  article.uso,
  article.ubicacion {
    padding-top: 150px;
  }
}
