/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
@font-face {
  font-family: 'light';
  src: url("../font/1Light.ttf"), url("../font/1Light.woff2");
}

@font-face {
  font-family: 'regular';
  src: url("../font/2Regular.ttf"), url("../font/2Regular.woff2");
}

@font-face {
  font-family: 'semibold';
  src: url("../font/3SemiBold.ttf"), url("../font/3SemiBold.woff2");
}

@font-face {
  font-family: 'bold';
  src: url("../font/4Bold.ttf"), url("../font/4Bold.woff2");
}

@font-face {
  font-family: 'extrabold';
  src: url("../font/5ExtraBold.ttf"), url("../font/5ExtraBold.woff2");
}

#hero {
  width: 100%;
  height: 100vh;
  background-color: rgba(34, 39, 43, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
  content: "";
  background-color: rgba(12, 13, 14, 0.8);
}

#hero .carousel-container {
  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;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

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

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #428bca;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #428bca;
}

#hero .btn-get-started:hover {
  background: #5697d0;
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
#header li a {
  color: #fff;
}

.header-scrolled {
  background-color: #fff !important;
  font-family: 'regular', 'Open Sans', 'Helvetica Neue', sans-serif;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.header-scrolled li a {
  color: #000 !important;
}

.header-scrolled .active {
  color: red !important;
  font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
}

.active {
  color: red !important;
  font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
}

.navbar a {
  font-family: 'regular', 'Open Sans', 'Helvetica Neue', sans-serif;
}

#hero {
  width: 100%;
  height: 75vh;
}

#hero .container {
  padding-top: 0;
}

#hero h2 {
  font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
  color: white;
  font-size: 40px;
}

#hero p {
  font-family: 'regular', 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 20px;
}

#hero .btn-get-started {
  font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 18px;
  color: #fff;
  background-color: #FF0000;
  letter-spacing: 0;
}

#hero .btn-get-started:hover {
  background-color: #850000;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #ff0000;
}

.services .icon-box {
  padding: 50px 30px;
  -webkit-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  background: #fff;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.icon-box {
  text-align: center !important;
}

.services .icon-box h4 > a {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 19px;
  font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #666666;
}

.services .icon-box:hover h4 a {
  color: #000000;
}

.services .icon-box .icon i {
  color: #FF0000;
  font-size: 50px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.tittleSlider {
  font-size: 35px;
  font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #666666;
}

.pddgslider {
  padding: 80px 0;
}

.textSlider h3 {
  font-size: 22px;
  font-family: 'extrabold', 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #666666;
}

.textSlider p {
  font-size: 18px;
  font-family: 'regular', 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #666666;
}

.pddtexttitle {
  margin: 0 0 60px 0;
}

.tittleMarcas h3 {
  font-size: 35px;
  font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #666666;
}

.pddgsMarcas {
  padding: 50px 0;
}

.pddgMarcas {
  padding: 0 0 80px 0;
}

.clients img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 25px 0;
  -webkit-filter: grayscale(100);
          filter: grayscale(100);
}

.clients img {
  max-width: 80%;
}

.tiitlecontacto h2 {
  font-size: 35px;
  font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #666666;
}

.tiitlecontacto p {
  font-size: 20px;
  font-family: 'semibold', 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #666666;
}

.textContactotitleizq h4 {
  font-size: 20px;
  font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #666666;
  text-align: justify;
}

.textContactotitleizq h5 {
  font-size: 18px;
  font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #666666;
  text-align: justify;
}

.textContactotitleizq p {
  font-size: 16px;
  font-family: 'regular', 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #666666;
  text-align: justify;
}

.contact .php-email-form .form-group {
  margin-bottom: 5px;
}

label {
  font-size: 16px;
  font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #666666;
}

input, select, textarea {
  font-size: 16px;
  font-family: 'regular', 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #666666;
  text-align: justify;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #FF0000;
  border-bottom: 3px solid #FF0000;
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0 0 24px 0 #46464659;
          box-shadow: 0 0 24px 0 #46464659;
}

.contact .php-email-form button[type=submit] {
  background: #FF0000;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #640404;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50px;
}

#footer {
  font-size: 14px;
  background: #000;
}

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #FF0000;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

@media (max-width: 700px) {
  .owl-carousel .next-slide {
    background: url(../img/der.png) no-repeat scroll 0 0px;
    right: 8px;
  }
  .owl-carousel .prev-slide {
    background: url(../img/izq.png) no-repeat scroll 0 0;
    left: 3px;
  }
  #hero h2 {
    font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    font-size: 26px;
    line-height: 40px;
  }
  .mobile-nav-toggle {
    color: #000;
  }
  .tittleSlider {
    font-size: 27px;
    font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #666666;
  }
  .tittleMarcas h3 {
    font-size: 27px;
    font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #666666;
  }
  .tiitlecontacto h2 {
    font-size: 27px;
    font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #666666;
  }
  .tiitlecontacto p {
    font-size: 16px;
    font-family: 'semibold', 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #666666;
  }
  .textContactotitleizq {
    padding: 0 30px;
  }
  .textContactotitleizq h4 {
    font-size: 16px;
    font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #666666;
    text-align: justify;
  }
  .textContactotitleizq h5 {
    font-size: 16px;
    font-family: 'bold', 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #666666;
    text-align: justify;
  }
  .textContactotitleizq p {
    font-size: 14px;
    font-family: 'regular', 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #666666;
    text-align: justify;
  }
  .services .icon-box {
    margin: 15px 0;
  }
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #666666;
}
/*# sourceMappingURL=custom.css.map */

.whatsapp img {
  width: 63px;
  position: fixed;
  right: 30px;
  bottom: 8vh;
  z-index: 999999;
}