/**************************************
***            VARIABLES             ****
***************************************/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,300&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

body {
  font-family: 'Open Sans', sans-serif, Helvetica,  Arial;
  position: relative;
  zoom: 95%;
  -webkit-zoom: 95%;
  -ms-zoom: 95%;
}

.w10 {
  width: 10%;
}

.w20 {
  width: 20%;
}

.w30 {
  width: 30%;
}

.w40 {
  width: 40%;
}

.w50 {
  width: 50%;
}

.w60 {
  width: 60%;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.w90 {
  width: 90%;
}

.w100 {
  width: 100%;
}

.wauto {
  width: auto;
}

.minheight100 {
  min-height: 100vh;
}

.container-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.container-nowrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.align-items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.justify-content-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-direction-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-direction-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.center {
  width: 80%;
  max-width: 1350px;
  margin: auto;
}

@media screen and (max-width: 950px) {
  .center {
    width: 90%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media screen and (max-width: 650px) {
  .center {
    width: 94%;
  }
}

.al-ct {
  text-align: center;
}

.al-lf {
  text-align: left;
}

.al-rg {
  text-align: right;
}

.al-jf {
  text-align: justify;
}

.pd-5 {
  padding: 5px;
}

.pd-10 {
  padding: 10px;
}

.pd-15 {
  padding: 15px;
}

.pd-20 {
  padding: 20px;
}

.pd-50 {
  padding: 50px;
}

.mg-5 {
  margin: 5px;
}

.mg-10 {
  margin: 10px;
}

.mg-20 {
  margin: 20px;
}

.mg-tp5 {
  margin-top: 5px;
}

.mg-tp10 {
  margin-top: 10px;
}

.mg-tp20 {
  margin-top: 20px;
}

.mg-tp40 {
  margin-top: 40px;
}

.mg-bt5 {
  margin-bottom: 5px;
}

.mg-bt10 {
  margin-bottom: 10px;
}

.mg-bt20 {
  margin-bottom: 20px;
}

.mg-bt50 {
  margin-bottom: 50px;
}

.mg-lt10 {
  margin-left: 10px;
}

.mg-auto {
  margin: 0 auto;
}

hr {
  height: 2px;
  border: none;
  background: #192541;
  margin: 3px 0;
}

.bold {
  font-weight: 700;
}

.hidden {
  display: none;
}

.mostrar {
  display: block;
}

.overflowh {
  overflow: hidden;
}

/**************************************
***            BOTONES             ****
***************************************/
.loader {
  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;
  height: 100vh;
  z-index: 150;
  background: #fff;
}

.preloader {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent, transparent 40%, #5bb88b);
  -webkit-animation-name: girar;
          animation-name: girar;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

.preloader:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background: #fff;
  border-radius: 50%;
  z-index: 100;
}

.preloader:after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: #fff;
  border-radius: 50%;
  background: linear-gradient(45deg, transparent, transparent 40%, #5bb88b);
  z-index: 100;
  z-index: 1;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

@-webkit-keyframes girar {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-filter: hue-rotate(360deg);
            filter: hue-rotate(360deg);
  }
}

@keyframes girar {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-filter: hue-rotate(0deg);
            filter: hue-rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    -webkit-filter: hue-rotate(360deg);
            filter: hue-rotate(360deg);
  }
}

/**************************************
***            BOTONES             ****
***************************************/
.btn {
  padding: 12px 20px;
  border-radius: 4px;
  border: 1px solid #192541;
  background-color: #192541;
  color: #ffffff;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
}

.btn:hover {
  color: #192541;
  background-color: transparent;
}

.btn-blanco {
  background-color: #ffffff;
  color: #192541;
  border-color: #ffffff;
}

.btn-blanco:hover {
  color: #ffffff;
  background-color: transparent;
}

.rotar10 {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.rotar180 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.rotar360 {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btnWhatsapp {
  position: fixed;
  bottom: 30px;
  right: 70px;
  z-index: 20;
  color: #ffffff;
}

.btnWhatsapp .ico-whatsapp {
  background-color: #192541;
  color: #ffffff;
  text-align: center;
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  font-size: 30px;
  line-height: 50px;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.btnWhatsapp .text-whatsapp {
  width: 180px;
  right: 100%;
  position: absolute;
  background-color: #ffffff;
  color: #000000;
  border-radius: 4px;
  margin-right: 6px;
  margin-top: 10px;
  padding: 4px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
}

.btnWhatsapp .popup-what {
  display: none;
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 350px;
  margin-bottom: 15px;
  border-radius: 5px 15px;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

.btnWhatsapp .popup-what .box1, .btnWhatsapp .popup-what .box2 {
  padding: 30px;
}

.btnWhatsapp .popup-what .box1 {
  background: #192541;
  margin: 0 auto;
}

.btnWhatsapp .popup-what .box1 .fa-whatsapp {
  font-size: 36px;
}

.btnWhatsapp .popup-what .box1 .box-text {
  padding-left: 15px;
}

.btnWhatsapp .popup-what .box1 .box-text span {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
  display: block;
}

.btnWhatsapp .popup-what .box1 .box-text p {
  font-size: 12px;
  line-height: 20px;
}

.btnWhatsapp .popup-what .box2 {
  background: #ffffff;
  color: #192541;
}

.btnWhatsapp .popup-what .box2 a {
  border-left: 3px solid #192541;
  display: block;
  padding-left: 5px;
}

.btnWhatsapp .popup-what .box2 a .gris {
  color: #818586;
  font-size: 12px;
}

.btnWhatsapp .popup-what .box2 a .fa-whatsapp {
  font-size: 28px;
  color: #192541;
}

@media screen and (max-width: 768px) {
  .btnWhatsapp .text-whatsapp {
    display: none;
    opacity: 0;
  }
}

/********************************************
****               FULL PAGE                ****
*********************************************/
#fp-nav ul li a span {
  background-color: #479dd7;
}

#fp-nav ul li .fp-tooltip {
  color: #192541;
}

/********************************************
****               Carrousel            ****
*********************************************/
.owl-dots {
  text-align: center;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.owl-dot {
  height: 15px;
  margin: 0 5px;
  width: 45px;
  border: 2px solid #192541 !important;
  border-radius: 25px;
  cursor: pointer;
  outline: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.owl-dot:hover {
  background: #192541;
}

.owl-dot.active {
  background: #192541;
}

.owl-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/********************************************
****               HEADER                ****
*********************************************/
.header {
  position: fixed;
  z-index: 10;
  padding: 20px 70px;
  top: 0;
  width: 100%;
}

.header .box-logo {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header .box-logo .img-logo {
  width: 180px;
  height: auto;
  margin: auto;
}

.header .navbar-redes {
  color: #192541;
}

.header .navbar-redes .ico-navbar {
  font-size: 2em;
  margin: 4px;
}

.header .navbar-redes .ico-navbar:hover {
  color: #192541;
}

.header .navbar-redes .f14 {
  font-size: 14px;
}

.header .navbar-redes .ico-navbar2 {
  font-size: 1.4em;
  color: #192541;
  margin: 0 6px;
}

.header .navbar-redes .ico-navbar2:hover {
  color: #479dd7;
}

.header .navbar-redes .fa-facebook-square {
  color: #1f89df;
}

.header .navbar-redes .fa-linkedin {
  color: #0274b3;
}

.header .navbar-redes .fa-twitter-square {
  color: #1da0f2;
}

.header .navbar-redes .fa-envelope {
  color: #192541;
}

.header .navbar-redes .fa-instagram-square {
  background: linear-gradient(25deg, #f58529, #dd2a7b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #dd2a7b;
}

@media screen and (max-width: 950px) {
  .header .btn-menu {
    display: block;
    font-size: 22px;
    cursor: pointer;
  }
}

@media screen and (max-width: 650px) {
  .header .navbar-redes .ico-navbar, .header .navbar-redes .f14 {
    display: none;
  }
}

.home {
  padding-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90vh;
}

.home .slider {
  max-width: 1350px;
  height: 300px;
  position: relative;
  outline: none;
}

.home .square1_prev_image, .home .square1_next_image {
  width: 70px;
  height: 70px;
  color: #ffffff;
}

.home .fill_mode-cover .image_wrapper {
  background-size: cover;
}

.home .datos .parrafo {
  line-height: 1.4;
  font-size: 16px;
  color: #192541;
  text-align: justify;
  margin: 10px 0;
}

.home .datos .botones {
  width: 24%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.home .datos .botones .texto-botones {
  position: absolute;
  font-size: 14px;
  bottom: -5px;
  left: -110px;
  color: #ffffff;
  letter-spacing: -1px;
  background-color: #192541;
  padding: 6px;
  border-radius: 4px;
}

.home .datos .botones .img-botones {
  position: absolute;
  height: 80px;
  width: auto;
  left: -85px;
  top: 2px;
}

.home .datos .botones .btn2 {
  margin: 5px 0;
}

.home .datos .botones .btn2 img {
  width: 100%;
}

@media screen and (max-width: 850px) {
  .home .slider {
    height: 200px;
  }
  .home .datos .botones {
    width: 34%;
  }
}

@media screen and (max-width: 650px) {
  .home .slider {
    height: 200px;
  }
  .home .datos .botones {
    width: 40%;
  }
}

@media screen and (max-width: 500px) {
  .home .slider {
    height: 160px;
  }
  .home .datos .botones {
    width: 40%;
  }
}

/********************************************
****               NOSOTROS             ****
*********************************************/
.nosotros .box-nosotros-datos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -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;
}

.nosotros .box-nosotros-datos .parrafo {
  line-height: 1.5;
  padding: 20px 0;
  text-align: justify;
  margin-bottom: 20px;
  font-size: 16px;
  color: #192541;
}

.nosotros .box-nosotros-datos .box-nosotros-inner {
  width: calc(50% - 30px);
  margin: 15px;
  padding: 24px 50px;
  position: relative;
  -webkit-box-shadow: -2px 6px 10px rgba(0, 0, 0, 0.7);
          box-shadow: -2px 6px 10px rgba(0, 0, 0, 0.7);
  border: 1px solid #192541;
}

.nosotros .box-nosotros-datos .box-nosotros-inner .box-icono-nosotros {
  position: absolute;
  top: -30px;
  width: 60px;
  height: 60px;
  right: 20px;
  -webkit-transform: translateX(-25px);
          transform: translateX(-25px);
  background-color: #ffffff;
  -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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #192541;
  border-radius: 50%;
}

.nosotros .box-nosotros-datos .box-nosotros-inner .subtitulo {
  font-size: 16px;
  font-weight: bold;
  margin: 5px 0;
  color: #192541;
}

.nosotros .box-nosotros-datos .box-nosotros-inner hr {
  background: #ffffff;
  height: 3px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 0%;
  margin-bottom: 8px;
}

.nosotros .box-nosotros-datos .box-nosotros-inner:hover {
  background: #192541;
}

.nosotros .box-nosotros-datos .box-nosotros-inner:hover hr {
  width: 12%;
}

.nosotros .box-nosotros-datos .box-nosotros-inner:hover .subtitulo {
  color: #ffffff;
}

.nosotros .box-nosotros-datos .box-nosotros-inner:hover .parrafo {
  color: #ffffff;
}

.nosotros .box-nosotros-datos .box-nosotros-inner:hover .box-icono-nosotros {
  color: #192541;
  background-color: #ffffff;
}

.nosotros .box-nosotros-datos .texto-valores {
  line-height: 1.5;
  color: #192541;
  margin: 68px 0 40px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nosotros .box-nosotros-datos .box-datos-icono {
  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;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.nosotros .box-nosotros-datos .box-datos-icono .valores {
  letter-spacing: 1px;
  color: #192541;
  font-weight: bold;
  font-size: 16px;
}

.nosotros .box-nosotros-datos .box-datos-icono .img-valores {
  height: 100px;
  margin-bottom: 16px;
  width: auto;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nosotros .box-nosotros-datos .box-datos-icono .img-valores:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.nosotros .box-nosotros-datos .box-datos-icono span {
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  width: 100%;
}

.nosotros .box-nosotros-datos .box-parrafo-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  height: 100px;
  margin: 40px auto;
  text-align: center;
  -webkit-box-shadow: 4px 3px 4px #192541;
          box-shadow: 4px 3px 4px #192541;
}

.nosotros .box-nosotros-datos .box-parrafo-tab .parrafotab {
  font-size: 16px;
  color: #192541;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: none;
}

@media screen and (max-width: 950px) {
  .nosotros {
    padding-top: 60px;
  }
  .nosotros .box-nosotros-datos .box-nosotros-inner {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .nosotros .box-nosotros-datos .w33 {
    width: calc(50% - 20px);
    margin: 10px;
  }
  .nosotros .box-nosotros-datos .box-parrafo-tab {
    width: 70%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media screen and (max-width: 550px) {
  .nosotros .box-nosotros-datos .box-nosotros-inner {
    padding: 20px;
    margin: 20px 0;
  }
  .nosotros .box-nosotros-datos .w33 {
    width: 90%;
  }
  .nosotros .box-nosotros-datos .box-parrafo-tab {
    width: 100%;
  }
}

/********************************************
****               SOLUCIONES             ****
*********************************************/
.soluciones {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90vh;
}

.soluciones .parrafo {
  text-align: justify;
  line-height: 1.5;
  color: #192541;
  padding: 30px 0 20px;
}

.soluciones .box-soluciones-inner {
  padding: 20px 0;
}

.soluciones .box-soluciones-inner .box-solucion-item {
  width: calc(20% - 30px);
  margin: 15px;
  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;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.soluciones .box-soluciones-inner .box-solucion-item .ico {
  font-size: 36px;
  color: #5bb88b;
  margin-bottom: 10px;
  width: 100px;
  border: 3px solid #5bb88b;
  height: 100px;
  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;
  border-radius: 50%;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.soluciones .box-soluciones-inner .box-solucion-item .ico:hover {
  background: #5bb88b;
  color: #ffffff;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.soluciones .box-soluciones-inner .box-solucion-item .img-soluciones {
  width: auto;
  height: 100px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.soluciones .box-soluciones-inner .box-solucion-item .img-soluciones:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.soluciones .box-soluciones-inner .box-solucion-item span {
  line-height: 1.5;
  color: #192541;
  font-size: 16px;
  height: 40px;
}

.soluciones .box-soluciones-inner .active .ico {
  background-color: #5bb88b;
  color: #ffffff;
}

.soluciones .box-soluciones-inner .active:after {
  content: "";
  width: 0;
  height: 0;
  margin-top: 4px;
  border-top: 16px solid #5bb88b;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  bottom: -16px;
}

.soluciones .parrafotab {
  text-align: justify;
  line-height: 1.5;
  padding: 20px;
  margin-top: 2px;
  color: #192541;
  display: none;
  height: 260px;
}

.soluciones .parrafotab .siglas {
  font-size: 20px;
  font-weight: bold;
  display: block;
  color: #192541;
  background-color: #192541;
  color: #ffffff;
  padding: 6px 12px;
  margin-bottom: 20px;
}

@media screen and (max-width: 1250px) {
  .soluciones .box-soluciones-inner .box-solucion-item span {
    height: 60px;
  }
}

@media screen and (max-width: 950px) {
  .soluciones .parrafotab {
    height: 300px;
  }
}

@media screen and (max-width: 760px) {
  .soluciones .w33 {
    width: calc(50% - 20px);
    margin: 6px 10px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .soluciones .box-soluciones-inner .box-solucion-item .ico {
    font-size: 26px;
    width: 80px;
    height: 80px;
  }
  .soluciones .box-soluciones-inner .box-solucion-item span {
    display: none;
  }
  .soluciones .box-soluciones-inner .active:after {
    bottom: -4px;
  }
  .soluciones .parrafotab {
    height: 350px;
  }
}

@media screen and (max-width: 500px) {
  .soluciones .w33 {
    width: 100%;
  }
  .soluciones .box-soluciones-inner .box-solucion-item {
    width: 80%;
    margin: 5px 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .soluciones .box-soluciones-inner .box-solucion-item .ico {
    font-size: 24px;
    width: 60px;
    height: 60px;
  }
  .soluciones .box-soluciones-inner .box-solucion-item span {
    display: block;
    margin: 0 10px;
  }
  .soluciones .box-soluciones-inner .active:after {
    bottom: 50%;
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
    right: 5%;
  }
  .soluciones .parrafotab {
    margin-bottom: 30px;
  }
}

/********************************************
****               PRODUCTOS             ****
*********************************************/
.productos {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.productos .box-producto {
  margin-bottom: 15px;
}

.productos .box-producto .parrafo {
  line-height: 1.5;
  font-size: 16px;
  padding: 30px 0 20px;
  color: #192541;
}

.productos .box-producto .producto-item-icono {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 0;
  width: calc(20% - 30px);
  margin: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.productos .box-producto .producto-item-icono .ico {
  font-size: 60px;
  color: #5bb88b;
  border: 4px solid #5bb88b;
  width: 120px;
  height: 120px;
  margin: auto;
  border-radius: 50%;
  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;
}

.productos .box-producto .producto-item-icono .img-soluciones {
  width: auto;
  height: 100px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.productos .box-producto .producto-item-icono .img-soluciones:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.productos .box-producto .producto-item-icono span {
  font-size: 16px;
  letter-spacing: 1px;
  color: #192541;
  padding-top: 10px;
  height: 30px;
}

.productos .box-producto .producto-item-icono .active:after {
  content: "";
  width: 0;
  height: 0;
  margin-top: 4px;
  border-top: 16px solid #5bb88b;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  bottom: -16px;
}

.productos .box-producto .producto-slider {
  padding: 20px 0;
  text-align: center;
  height: 180px;
}

.productos .box-producto .producto-slider .img-producto {
  margin: auto;
  max-width: 160px;
  max-height: 100px;
}

.productos .box-producto .producto-slider .img-producto2 {
  margin: auto;
  max-width: 80px;
  height: auto;
}

.productos .box-producto .producto-slider .p {
  text-align: center;
}

.productos .box-producto .producto-slider .ico {
  font-size: 60px;
  color: #5bb88b;
}

.productos .w50 {
  width: calc(50% - 30px);
  margin: 15px;
}

@media screen and (max-width: 760px) {
  .productos .box-producto .producto-item-icono {
    width: calc(33% - 20px);
    margin: 10px;
  }
}

/********************************************
****               SERVICIOS             ****
*********************************************/
.servicios .mensaje {
  font-size: 16px;
  margin-bottom: 40px;
  letter-spacing: 1px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #192541;
}

.servicios .mensaje .color {
  color: #5bb88b;
  font-weight: 600;
  font-size: 24px;
}

.servicios .box-servicios {
  width: calc(50% - 40px);
  margin: 40px 20px;
  padding: 40px 50px;
  position: relative;
  color: #192541;
  border: 1px solid #192541;
  -webkit-box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.5);
          box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.servicios .box-servicios .parrafo {
  line-height: 1.5;
  margin-bottom: 12px;
  font-size: 16px;
  text-align: justify;
  color: #192541;
}

.servicios .box-servicios .subtitulo-servicio {
  position: absolute;
  top: -25px;
  left: 48px;
  border-radius: 8px;
  padding: 10px 20px;
  background-color: #192541;
  color: #ffffff;
  border: 1px solid #192541;
  margin-bottom: 30px;
}

.servicios .box-servicios:hover {
  background-color: #192541;
}

.servicios .box-servicios:hover .parrafo {
  color: #ffffff;
}

.servicios .box-servicios:hover .subtitulo-servicio {
  background-color: #ffffff;
  color: #192541;
  border: 1px solid #192541;
}

.servicios .mensaje2 {
  font-size: 16px;
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-align: justify;
  color: #192541;
}

.servicios .box-servicios-inner .box-servicios-item {
  width: calc(33% - 30px);
  margin: 15px;
  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;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.servicios .box-servicios-inner .box-servicios-item .ico {
  font-size: 36px;
  color: #5bb88b;
  margin-bottom: 10px;
  width: 100px;
  border: 3px solid #5bb88b;
  height: 100px;
  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;
  border-radius: 50%;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.servicios .box-servicios-inner .box-servicios-item .ico:hover {
  background: #5bb88b;
  color: #ffffff;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.servicios .box-servicios-inner .box-servicios-item .img-soluciones {
  width: auto;
  height: 100px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.servicios .box-servicios-inner .box-servicios-item .img-soluciones:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.servicios .box-servicios-inner .box-servicios-item span {
  line-height: 1.5;
  color: #192541;
  font-size: 16px;
  height: 30px;
}

.servicios .box-servicios-inner .active .ico {
  background-color: #5bb88b;
  color: #ffffff;
}

.servicios .box-servicios-inner .active:after {
  content: "";
  width: 0;
  height: 0;
  margin-top: 4px;
  border-top: 16px solid #5bb88b;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  bottom: -16px;
}

.servicios .parrafotab {
  text-align: justify;
  line-height: 1.5;
  padding: 20px;
  margin-top: 2px;
  color: #192541;
  display: none;
  height: 150px;
}

.servicios .parrafotab .siglas {
  font-size: 16px;
  font-weight: bold;
  display: block;
  color: #192541;
}

@media screen and (max-width: 1020px) {
  .servicios .box-servicios-inner .box-servicios-item {
    margin: 10px auto;
  }
  .servicios .box-servicios-inner .box-servicios-item span {
    height: 60px;
  }
}

@media screen and (max-width: 950px) {
  .servicios {
    padding-top: 90px;
  }
  .servicios .box-servicios {
    width: 90%;
    margin: 20px auto;
  }
  .servicios .box-servicios .parrafo {
    font-size: 16px;
  }
}

@media screen and (max-width: 650px) {
  .servicios .box-servicios-inner .box-servicios-item {
    margin: 10px auto;
  }
}

@media screen and (max-width: 580px) {
  .servicios .mensaje {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .servicios .box-servicios-inner .box-servicios-item .ico {
    font-size: 26px;
    width: 80px;
    height: 80px;
  }
  .servicios .box-servicios-inner .box-servicios-item span {
    display: none;
  }
  .servicios .box-servicios-inner .active:after {
    bottom: -4px;
  }
}

/********************************************
****               NEGOCIOS                ****
*********************************************/
.socios {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 90vh;
}

.socios .box-imagen {
  margin-bottom: 20px;
  height: 250px;
}

.socios .box-imagen img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.socios .box-datos .titulo {
  font-size: 30px;
  background: linear-gradient(45deg, #5bb88b, #479dd7);
  font-weight: bold;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #5bb88b;
}

.socios .box-datos .parrafo {
  text-align: justify;
  line-height: 1.5;
  font-size: 16px;
  color: #192541;
  padding: 20px 0;
}

.socios .box-img-socios {
  padding: 20px 0;
}

.socios .box-img-socios .img-socios {
  margin: auto;
  max-width: 160px;
  max-height: 120px;
}

.socios .box-img-socios .img-socios2 {
  margin: auto;
  max-width: 100px;
  max-height: 80px;
}

@media screen and (max-width: 950px) {
  .negocios .box-datos {
    width: 100%;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

@media screen and (max-width: 700px) {
  .negocios .box-datos .box-img-socios .w25 {
    width: calc(33% - 20px);
    margin: 10px;
  }
  .negocios .box-datos .box-img-socios .img-socios {
    width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .negocios .box-datos .box-img-socios .w25 {
    width: calc(50% - 20px);
    margin: 10px;
  }
  .negocios .box-datos .box-img-socios .img-socios {
    width: 100%;
  }
}

/********************************************
****               CONTACTO             ****
*********************************************/
.contacto {
  padding-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 90vh;
}

.contacto .w50 {
  width: calc(50% - 30px);
  margin: 15px;
}

.contacto .box-formulario {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  width: 60%;
}

.contacto .box-formulario .box-img-fondo {
  position: absolute;
  top: -45px;
  left: -35px;
  bottom: 0;
  height: 100%;
  width: 50%;
}

.contacto .box-formulario .box-img-fondo img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.15;
}

.contacto .box-formulario .error {
  padding: 0 20px 20px;
  color: #192541;
}

.contacto .box-formulario .fa-times {
  cursor: pointer;
}

.contacto .box-formulario form input, .contacto .box-formulario form textarea {
  padding: 10px 20px;
  border-radius: 8px;
  border: 1px solid #479dd7;
  outline: none;
}

.contacto .box-formulario .inputBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.contacto .box-formulario .inputBox label {
  width: 20%;
  font-weight: 700;
}

.contacto .box-formulario .inputBox input, .contacto .box-formulario .inputBox textarea {
  width: 80%;
}

.contacto .box-contacto {
  padding-top: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 40%;
  padding-left: 16px;
}

.contacto .box-contacto p {
  line-height: 2;
  font-size: 16px;
  opacity: 1;
}

.contacto .box-contacto .icono-redes {
  padding: 20px 0;
  opacity: 1;
}

.contacto .box-contacto .icono-redes .ico {
  font-size: 34px;
  margin: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.contacto .box-contacto .icono-redes .ico:hover {
  color: #192541;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

.contacto .box-contacto .mapa {
  margin-top: 20px;
}

.contacto .box-contacto .mapa iframe {
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media screen and (max-width: 950px) {
  .contacto .box-formulario {
    width: 100%;
    margin: 10px auto;
  }
  .contacto .box-contacto {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 10px auto;
  }
  .contacto .box-contacto .mapa {
    padding-left: 30px;
    width: 70%;
  }
}

@media screen and (max-width: 750px) {
  .contacto {
    padding-top: 90px;
  }
  .contacto .box-contacto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
  }
  .contacto .box-contacto .mapa {
    width: 100%;
    margin: 10px auto;
  }
  .contacto .box-contacto .mapa iframe {
    width: 100%;
  }
}

/********************************************
****               FOOTER                ****
*********************************************/
.footer {
  position: fixed;
  font-size: 16px;
  z-index: 10;
  bottom: 20px;
  width: 100%;
}

.footer .barra-navbar .navbar {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 100%;
}

.footer .barra-navbar .navbar .nav-link {
  padding: 10px 20px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  color: #192541;
  font-size: 1.4em;
}

.footer .barra-navbar .navbar .nav-link:after {
  content: "";
  background-color: #5bb88b;
  width: 0%;
  height: 2px;
  display: block;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  margin-top: 2px;
}

.footer .barra-navbar .navbar .nav-link:hover:after {
  width: 100%;
}

.footer .barra-navbar .navbar .border {
  border: 1px solid #192541;
}

.footer .barra-navbar .navbar .nav-link.active {
  font-weight: 600;
}

.footer .barra-navbar .navbar .nav-link.active:after {
  width: 100%;
}

.footer .barra-navbar .navbar-redes-2 .ico-navbar {
  font-size: 2em;
  margin: 4px;
}

.footer .barra-navbar .navbar-redes-2 .ico-navbar:hover {
  color: #192541;
}

.footer .barra-navbar .navbar-redes-2 .fa-facebook-square {
  color: #1f89df;
}

.footer .barra-navbar .navbar-redes-2 .fa-linkedin {
  color: #0274b3;
}

.footer .barra-navbar .navbar-redes-2 .fa-twitter-square {
  color: #1da0f2;
}

@media screen and (max-width: 1080px) {
  .footer .barra-navbar .navbar .nav-link {
    padding: 10px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .footer .barra-navbar .navbar .nav-link:after {
    margin: auto;
  }
}

@media screen and (max-width: 950px) {
  .footer {
    background-color: #ffffff;
    top: 80px;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1002;
  }
  .footer .barra-navbar .navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .barra-navbar .navbar .nav-link {
    padding: 14px;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
}

/********************************************
****               MODAL                ****
*********************************************/
.modal {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  -webkit-animation: modal-home 3s 3s;
          animation: modal-home 3s 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  visibility: hidden;
  opacity: 0;
  z-index: 1001;
}

.modal .closed-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 15px;
  font-size: 20px;
  color: #ffffff;
}

.modal .box-modal {
  text-align: center;
  padding: 15px;
  background-color: #000000;
  margin: auto 20px;
}

@-webkit-keyframes modal-home {}

@keyframes modal-home {}@-webkit-keyframes pulsar {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  25% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}@keyframes pulsar {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  25% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

/************************************
***          ANIMATE           ***
*************************************/
/*
fadeInRightBig
fadeInRight
bounceInRight
slideInUp - slideInDown
*/
/*# sourceMappingURL=webzilsys.css.map */