/* Global Reset */
@import url("https://fonts.googleapis.com/css2?family=Nobile:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Allison&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito&display=swap");
* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Nobile";
}

/* Import Fonts */
/* Pagina de ingreso*/
#enter {
  width: 150px;
  padding: 0 42px;
  font-size: 18px;
  font-family: "Nunito";
  letter-spacing: -1px;
}

.login {
  width: 100vw;
  margin-top: 10px;
  height: 80vh;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.login img {
  width: 19vw;
  border-radius: 50%;
}

.login h1 {
  font-size: 82px;
  font-family: "Allison";
}

/* Pagina principal*/
#company__logo {
  margin-right: 12px;
  width: 50px;
}

.float__logoWhats--sticky {
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
  width: 50px;
  position: absolute;
  position: fixed;
  z-index: 1;
  top: 83%;
  left: 91%;
}

.containerPrimary_img--Desktop {
  width: 61vw;
}

.cardsBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  font-size: 1rem;
}

.cardsBox img {
  width: 90px;
}

.card__1 {
  height: 320px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 200px;
  text-align: center;
}

.card__2 {
  height: 320px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 200px;
  text-align: center;
}

.card__3 {
  height: 320px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 200px;
  text-align: center;
}

#containerPrimary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
}

.containerPrimary__company {
  padding-top: 50px;
  padding-left: 20px;
  width: 39vw;
  height: 70vh;
  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;
  -ms-flex-line-pack: center;
      align-content: center;
}

.containerPrimary__company img {
  width: 190px;
}

.containerPrimary__company h2 {
  font-size: 40px;
  font-family: "Nunito";
  letter-spacing: -1px;
  line-height: 37px;
}

.containerPrimary__company p {
  letter-spacing: -0.1px;
  font-family: "Nunito";
}

.containerPrimary_button {
  padding: 7px;
  margin: 10px 0px;
  margin-top: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  background-color: #449ba3;
  border-radius: 10px;
}

.containerPrimary_button a {
  color: white;
  text-decoration: none;
}

.containerPrimary_button:hover {
  color: white;
}

.containerPrimary_button:hover {
  width: 150px;
  color: white;
  background-color: #48bfca;
}

.InstaBox {
  padding-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.InstaBox img {
  background: rgba(238, 238, 238, 0.35);
  -webkit-box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
          box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 260px;
}

/* menu de navegacion*/
header {
  z-index: 1;
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  box-shadow: 5px -1px 15px -1px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 5px -1px 15px -1px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 5px -1px 15px -1px rgba(0, 0, 0, 0.75);
}

a.navbar-brand {
  font-family: "Allison";
  font-size: 2.4rem;
  font-weight: bold;
}

.navbar {
  height: 60px;
}

.nav-link {
  color: white;
  border-radius: 5px;
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: white;
}

a.nav-link.active:hover {
  text-transform: bold;
  background-color: #48bfca;
  border-radius: 5px;
}

a.nav-link:hover {
  color: white;
  border-radius: 5px;
  background-color: #48bfca;
}

footer {
  margin-top: 90px;
  border-radius: 14px 14px 0px 0px;
  background: linear-gradient(315deg, #ffffff, #e1e1e1);
  -webkit-box-shadow: -9px -9px 22px #d5d5d5, 9px 9px 22px #ffffff;
          box-shadow: -9px -9px 22px #d5d5d5, 9px 9px 22px #ffffff;
}

footer div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer div img {
  margin: 30px 20px;
}

footer .SiteMap ul li {
  text-transform: uppercase;
  margin: 0 10px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

footer .SiteMap ul li a {
  color: black;
  font-family: "Nunito";
  text-decoration: none;
}

.footer__button {
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.footer__button:hover {
  color: #48bfca;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.Footer__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 10px;
}

.Footer__copy div {
  font-size: 0.9em;
  margin: 0px 6px;
}

/* pagina productos*/
.cardsProducto {
  border: 2px solid transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-shadow: 0px 0px 10px 2px #dbdbdb;
          box-shadow: 0px 0px 10px 2px #dbdbdb;
  height: 530px;
  margin: 20px 0px;
}

.cardsProducto:hover {
  -webkit-box-shadow: 0px 0px 10px 2px #109aa4;
          box-shadow: 0px 0px 10px 2px #109aa4;
  border: 2px solid #109aa4;
}

.cardsProducto .contenedorImg {
  min-height: 135px;
}

.cardsProducto img {
  width: 200px;
  margin: 0 auto;
  padding: 15px;
}

.cardsProducto h3 {
  color: #109aa4;
  min-height: 10px;
}

.cardsProducto .card-body p {
  min-height: 200px;
}

.cardsProducto a {
  background-color: transparent;
  border: 2px solid #109aa4;
  color: #109aa4;
}

.cardsProducto a:hover {
  background-color: #109aa4;
  border: 2px solid transparent;
}

#guias {
  min-height: 80vh;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.accordion-body ul li {
  text-transform: capitalize;
}

/* pagina nosotros */
#nosotros {
  position: relative;
  min-height: 108vh;
  padding: 30px;
  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;
}

#nosotros h2 {
  font-size: 20px;
  font-weight: 700;
}

#nosotros p {
  width: 80%;
  text-align: center;
  font-size: 15px;
  line-height: 1.8;
}

.form {
  margin-top: 40px;
}

@media (min-width: 1px) and (max-width: 480px) {
  .navbar-nav {
    background-color: #ffffff;
    margin-top: 7px;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
  }
  .navbar-light .navbar-nav .nav-link {
    color: #040404;
  }
  html {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .login img {
    width: 60vw;
  }
  .float__logoWhats--sticky {
    left: 294px;
  }
  .navbar {
    height: 75px;
  }
  #company__logo {
    margin-right: 0px;
    width: 50px;
  }
  #containerPrimary {
    -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;
  }
  .containerPrimary__company {
    padding-top: 0px;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .containerPrimary__company p {
    margin: 10px;
    padding: 0 25px;
    text-align: center;
  }
  .containerPrimary__company img {
    padding-bottom: 18px;
  }
  .containerPrimary_img--Desktop {
    display: none;
  }
  .cardsBox {
    -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;
  }
  .cardsBox img {
    width: 157px;
    padding-bottom: 2px;
  }
  .InstaBox {
    -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;
  }
  .InstaBox img {
    margin: 20px;
  }
  .Footer__copy {
    margin-top: 17px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer {
    padding: 20px 0px;
  }
  .SiteMap ul {
    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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0px;
    margin: 0px;
  }
  #guias {
    padding-top: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (max-width: 667px) and (orientation: landscape) {
  #containerPrimary {
    height: 80vh;
  }
  .containerPrimary__company {
    padding-top: 8px;
    height: 80vh;
    width: 38vw;
  }
  .containerPrimary__company img {
    width: 100px;
  }
  .containerPrimary__company h2 {
    margin-bottom: 0px;
    font-size: 25px;
  }
  .containerPrimary__company p {
    margin-bottom: 0px;
  }
  .navbar {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .InstaBox img {
    width: 177px;
  }
  .navbar-collapse {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    background-color: #ffffff;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0 8px 32px 0 rgba(57, 58, 68, 0.37);
            box-shadow: 0 8px 32px 0 rgba(57, 58, 68, 0.37);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
  }
}

@media (min-width: 481px) and (max-width: 769px) and (orientation: portrait) {
  .navbar-nav {
    background-color: #ffffff;
    margin-top: 7px;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-box-shadow: 0 8px 32px 0 rgba(57, 58, 68, 0.37);
            box-shadow: 0 8px 32px 0 rgba(57, 58, 68, 0.37);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 10px;
  }
  .navbar-light .navbar-nav .nav-link {
    color: #040404;
  }
  .float__logoWhats--sticky {
    top: 300px;
  }
  .navbar {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    height: 90px;
  }
  #nosotros img {
    width: 55vw;
    margin-top: 35px;
  }
}
/*# sourceMappingURL=styles.css.map */