/*
  Theme Name: BizPage
  Theme URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
  Author: BootstrapMade.com
  License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #666666;
  font-family: 'Roboto', sans-serif;
}
.imagen{
    position: relative;
    z-index: 100;
}
a {
  color: #457bbd;
  transition: 0.5s;
}
.boton {
  background: #fe2a2c;
  border: none;
  color: #fff;
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 12px;
  margin-top: 10px;
  letter-spacing: 1px;
  padding: 8px 28px;
  text-transform: uppercase;
  transition: 0.5s;
}
.botonazul {
  background: #0186ef;
  border: none;
  color: #fff;
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 12px;
  margin-top: 10px;
  letter-spacing: 1px;
  padding: 8px 28px;
  text-transform: uppercase;
  transition: 0.5s;
  width: 100%;
}
a:hover,
a:active,
a:focus {
  color: #457bbd;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #242424;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 5px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 1000;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}
/*Boton WhatsApp*/
.boton-whatsapp {
  background: #25d366;
  border-radius: 30px;
  bottom: 15px;
  color: #fff;
  display: none;
  font-size: 16px;
  height: 50px;
  left: 15px;
  line-height: 1;
  position: fixed;
  text-align: center;
  transition: background 0.5s;
  width: 250px;
  z-index: 1000;
}
.boton-whatsapp:hover{
  color: #fff;
}
.boton-whatsapp i {
  padding-top: 6px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0186ef;
  border-top: 6px solid #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  padding: 30px 0;
  height: 70px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  background:rgba(1,134,239, 1);/* #457bbd*/
  padding: 20px 0;
  height: 70px;
  transition: all 0.5s;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
  padding-left: 10px;
}

#header #logo img {
  padding: 0;
  margin: 0;
  opacity: 0
}
#header #logo.imagen img {
  padding: 0;
  margin: 0;
  opacity: 1;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  display: table;
  width: 100%;
  height: 50vh;
  background: #000;
}

#intro .fondo{
  width: 100%;
  height: 50vh;
  background-image: url(../img/header.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#intro .logo{
 text-align: center;
 padding-top: 100px;
 width: 100%;
}
#intro .logo img{
 width: 400px;
}
#intro .texto{
  color: #fff;
  font-family: 'Roboto', sans-serif;
  padding-top: 10px;
  text-align: center;
}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#slider {
  display: table;
  width: 100%;
  height: 50vh;
  background: #000;
}

#slider .carousel-item {
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#slider .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  height:500%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#slider .carousel-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#slider .carousel-background img {
  max-width: 100%;
}

#slider .carousel-content {
  text-align: center;
}

#slider h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#slider p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

#slider .carousel-fade {
  overflow: hidden;
}

#slider .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#slider .carousel-fade .carousel-inner .carousel-item,
#slider .carousel-fade .carousel-inner .active.carousel-item-left,
#slider .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#slider .carousel-fade .carousel-inner .active,
#slider .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#slider .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#slider .carousel-fade .carousel-inner .carousel-item-next,
#slider .carousel-fade .carousel-inner .carousel-item-prev,
#slider .carousel-fade .carousel-inner .active.carousel-item-left,
#slider .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#slider .carousel-control-prev,
#slider .carousel-control-next {
  width: 10%;
}

#slider .carousel-control-next-icon,
#slider .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#slider .carousel-indicators li {
  cursor: pointer;
}

#slider .btn-get-started {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #18d26e;
}

#slider .btn-get-started:hover {
  background: #fff;
  color: #18d26e;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
  width: 100%;
  margin:0;
}

/* Nav Meu Styling */

.nav-menu a, .nav-menu p {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  outline: none;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
  color: #fff;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #18d26e;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(69, 123, 189, 0.8);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a, #mobile-nav ul li p {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

#mobile-nav ul li p{
  margin: 0;
}
#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #18d26e;
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: #18d26e;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/


/* Nosotros
--------------------------------*/

#nosotros {
  padding-top: 80px;
  padding-bottom: 50px;
}

#nosotros h2{
  color: #0186ef;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  text-align: center;
}

/* Productos
--------------------------------*/

#productos{
  background: url(../img/fondo_producto.webp) #242424 no-repeat;
}
#productos .producto{
  padding-top: 220px;
}
#productos .tipo{
  color: #fff;
  font-size: 18px;
  padding-top: 30px;
  padding-bottom: 60px;
}

/*Boton de productos*/
.botonProductos{
  margin: -35px auto;
  position:auto;
  z-index: 1000;
}
.botonProductos .botonp{
  background: #0186ef url(../img/header.webp) center no-repeat;
  border-radius: 5px;
  border: none;
  text-align: center;
  padding-top: 10px;
  padding-right: 40px;
  padding-left: 40px;
  padding-bottom: 10px;
  text-align: center;
  color: #fff;
  text-align: center;

}
.botonProductos .botonp:hover{
  cursor:pointer;
}
/* Servicios
--------------------------------*/
#servicios{
  margin: 0;
  background-image: url(../img/PorqueASTA.webp);
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: cover;
  padding-top: 100px;
  padding-bottom: 350px;
}
#servicios .serviciot{
  padding-bottom: 100px;
}
#servicios p{
  font-size: 16px;
  color: #7a7a7a;
}
#servicios h3{
  font-size: 30px;
  font-weight: bold;
}

/* Titulos
--------------------------------*/
.section-header h3{
  color: #2a2a2a;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}
.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: transparent;
  bottom: 1px;
  left: calc(50% - 60px);
}

 .section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #cceb42;
  bottom: 0;
  left: calc(50% - 20px);
}
/* confianza
--------------------------------*/
#confianza{
  background:#0186ef;
  padding-top: 50px;
  padding-bottom: 50px;
}
#confianza .confianzat{
  padding-bottom: 100px;
}
#confianza p{
  font-size: 18px;
  color: #fff;
}
#confianza h3{
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}
/* Call to Action
--------------------------------*/

/* Marcas
--------------------------------*/
#marcas {
  background: #242424;
  padding-top: 80px;
  padding-bottom: 10px;
}
#marcas p{
  color: #fff;
  font-size:11px;
  font-family: 'Roboto', sans-serif;
}


/* Contact Section
--------------------------------*/

#contacto {
  padding: 60px 0;
}
#contacto .contactot {
  padding-bottom: 50px;
}

#contacto p{
  font-size: 14px;
  color: #242424;
}
#contacto h3{
  font-size: 30px;
  font-weight: bold;
  color: #242424;
}

#contacto .form #sendmessage {
  color: #18d26e;
  border: 1px solid #18d26e;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contacto .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contacto .form #sendmessage.show,
#contacto .form #errormessage.show,
#contacto .form .show {
  display: block;
}

#contacto .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contacto .form input,
#contacto .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contacto .form button[type="submit"] {
  background: #fe2a2c;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contacto .form button[type="submit"]:hover {
  background: #fe2a2c;
}
#mapa{
    background: #f2f2f2;
    padding-top: 20px;
    padding-bottom: 10px;
}
#map{
  height: 300px;
  margin: 0 auto;
}
#redes{
    background: #0186ef;
    padding-bottom: 5px;
    padding-top: 50px;
    color: #fff;
}
.logofooter{
    right: 0px;
}
#redes .frase{
    color: #fff;
    padding-top: 50px;
    font-size: 30px;
    text-align: center;
    font-weight: lighter;
    font-family: 'Roboto', sans-serif;
}
#redes .social-links{
    padding: 20px;
    color: #ff;
}
#redes img{
    align-content: center;
}
/* Scroll*/
.Scroll{
    position: absolute;
    margin-left:48%;
    z-index: 100;
    margin-top: -15px;
}
.down{
    -webkit-animation: scales 0.9s ease-in infinite alternate;
    -moz-animation: scales 0.9s ease-in infinite alternate;
    animation: scales 0.9s ease-in infinite alternate;
    border-radius: 49%;
    background: #fe2a2c;
    color: #fff;
    padding: 5px;
    text-align: center;
    width: 40px;
}
/* Distribuidor*/
.distribuidor{
    background: #fff;
    border-radius: 5px;
    box-shadow:0 0 5px #999;
    display: scroll;
    position: fixed;
    width: 220px;
    height:auto;
    overflow: auto;
    top: 25%;
    right: 5px;
    z-index: 1;
}
.distribuidor .btndistribuidor button{
    background: #cceb42;
    box-shadow:0 0 5px #333;
    border-radius: 5px;
    border: none;
    color: #fff;
    font-weight: bold;
    height: 50px;
    margin: 0 auto;
    width: 100%;
}
.distribuidor .btndistribuidor button>i{
    background: #0186ef;
    border-radius: 49%;
    color: #fff;
    padding: 3px;
}
.distribuidor .formdistribuidor>form{
    padding: 5px;
    height: auto;
    overflow: auto;
}
@-moz-keyframes scales {
  from {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@-webkit-keyframes scales {
  from {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@-o-keyframes scales {
  from {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes scales {
  from {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
  }
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #cceb42;
  padding-bottom: 20px;
  padding-top: 20px;
  color: #fff;
  font-size: 14px;
}

#footer .credits {
  text-align: center;
  font-size: 16px;
  color: #fff;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }

  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

@media (max-width: 992px){
    .nav-menu a, .nav-menu p {
      padding: 0 8px 8px 8px;
      font-weight: 700;
      font-size: 10px;
    }
    #header #logo h1 {
      font-size: 24px;
    }
    #intro .logo>img{
        width: 200px;
    }
    #intro .texto{
          font-size: 10px;
          padding-top: 0;
    }
    
}

@media (min-width: 1024px) {
  #header #logo {
    padding-left: 60px;
  }

  #intro p {
    width: 60%;
  }

  #intro .carousel-control-prev,
  #intro .carousel-control-next {
    width: 5%;
  }

  #nav-menu-container {
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
    .back-to-top {
      bottom: 15px;
    }

    #header #logo h1 {
      font-size: 28px;
    }

    #header #logo img {
      max-height: 40px;
    }

    #intro h2 {
      font-size: 28px;
    }

    #nav-menu-container {
      display: none;
    }

    #mobile-nav-toggle {
      display: inline;
    }
    #productos .tipo{
      list-style: none;
      text-align: center;
      padding-top: 10px;
      padding-bottom: 0px;
    }
    .botonProductos{
      margin: -10px auto;
      position:auto;
    }
    #intro .logo{
         padding-top: 50px;
    }
    #intro .logo>img{
        width: 150px;
    }
    #intro .texto{
          font-size: 10px;
          padding-top: 0;
    }
    #productos{
        background: url(../img/fondo_producto.webp)  no-repeat;
    }
    #productos .producto{
      padding-top: 30px;
    }
    #productos .tipo{
      color: #fff;
      font-size: 15px;
      padding-top: 0px;
    }
    #map{
      width: 100%;
      height:200px;
      text-align: center;
    }
    .distribuidor{
      background: #fff;
      border-radius: 5px;
      box-shadow:0 0 5px #999;
      display: scroll;
      position: fixed;
      width: 160px;
      height:auto;
      overflow: auto;
      top: 20%;
      right: 0px;
      z-index: 10000;
  }
    .distribuidor .btndistribuidor button{
      border-radius: 5px;
      border: none;
      color: #fff;
      font-weight: bold;
      font-size: 0.8em;
      height: 40px;
      width: 100%;
    }
  .frase{
    font-size: 1.3rem;
    padding-top: 25px;
  }
}