@import url("about.css");
@import url("contact.css");
@import url("products.css");
body {
  font-family: 'Open Sans', sans-serif;
  color: #292B33;
  font-size: 12px;
  font-weight: normal;
  background: #fff;
  line-height: 120%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  overflow: hidden;
}
html {
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Yantramanav', sans-serif;
  font-weight: 500;
  color: #191C23;
  text-transform: uppercase;
  line-height: 120%;
  margin: 0 0 20px 0;
}
h1, .h1 {
  font-size: 50px;
  color: white;
}
h2, .h2 {
  font-size: 30px;
  color: #1B4381;
}
h3, .h3 {
  font-size: 21px;
  color: #222222;
  margin-bottom: 5px;
}
h4, .h4 {
  font-size: 19px;
  margin-bottom: 5px;
}
h5, .h5 {}
h6, .h6 {}
ul, ol {
  list-style: none;
  padding-left: 0;
}
ul li,
ol li,
p {
  font-size: 14px;
  color: #777777;
  line-height: 140%;
  margin-bottom: 15px;
}
.intro p {
  font-size: 16px;
  font-weight: 600;
  color: #4b4b4b;
}
a {
  color: #1B4381;
  -webkit-transition: all 300ms;
     -moz-transition: all 300ms;
       -o-transition: all 300ms;
          transition: all 300ms;
}
a:hover {
  text-decoration: none;
}
a:hover, a:focus {
  color: gray;
}
b, strong {
  font-weight: 800;
}
img {
  max-width: 100%;
  height: auto;
}
hr {
  margin-top: 0px;
  margin-bottom: 0px;
  border-top: 1px solid #e6e6e6;
}
sup {
  top: -4px;
}
sup.big {
  top: -6px;
  font-size: 30px;
}
.bold {
  font-weight: 700;
}
.fs-35,
.fs-35 p {
  font-size: 35px;
}
.oh {
  overflow: hidden;
}
.right {
  float: right;
}
.center {
  text-align: center;
}
.relative {
  position: relative;
}
.clear {
  clear: both;
}
.txt-right {
  text-align: right;
}
.txt-left {
  text-align: left;
}
.txt-blue {
  color: #00BBB4 !important;
}
.txt-white,
.txt-white p {
  color: white;
}
.txt-gray,
p.txt-gray,
.txt-gray p {
  color: #868686 !important;
}
.right {
  float: right;
}
.left {
  float: left;
}
.cover { 
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.parallax {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}
ul.bullets li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}
ul.bullets li:before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  position: absolute;
  left: 0;
  top: 7px;
  background: #1B4381;
}
/*////////////////////////
///       Header      ////
////////////////////////*/
header {
  position: absolute;
  width: 100%;
  height: 100px;
  top: 0;
  left: 0;
  z-index: 999;
  background: white;
  display: flex;
  flex-flow: column;
  justify-content: center;
  padding-top: 10px;
  box-shadow: 0px 1px 8px rgba(0,0,0,.4);
}
header.smaller {
  animation: .8s ease 0s normal none 1 running fadeInDown;
  position: fixed;
  background: white;
  height: 60px;
  padding-top: 0;  
}
header.smaller .btn-whatsapp,
header.smaller .language {
  height: 60px;
}
header.smaller .logo {
  height: 50px;
}
header.smaller .top-bar {
  height: 0;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-75px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.top-bar {
  background-color: #CCCCCC;
  height: 10px;
  position: absolute;
  width: 100%;
  top: 0;
}
.top-bar:after {
  background: #1B4381;
  content: "";
  position: absolute;
  z-index: 0;
  width: 300px;
  height: 100%;
  top: 0;
  left: -14px;
  transform: skewX(30deg);
  border-right: 4px solid #fff;
}
.btn-whatsapp {
  background: #1B4381;
  width: 55px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}
.btn-whatsapp:after {
  position: absolute;
  content: '';
  right: -49980px;
  top: 0px;
  height: 100%;
  z-index: -1;
  width: 50000px;
  background-color: #1B4381;
}
.btn-whatsapp a {
  font-size: 30px;
  color: white;
}
.btn-whatsapp a:hover {
  color: #9d9d9d;
}
.header-navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.language {
  width: 80px;
  display: flex;
  height: 100%;
  align-items: center;
}
.language a {
  border: 1px solid #F1F1F1;
  padding: 7px;
}
.language a:hover {
  background: #F1F1F1;
}
.language a span {
  font-family: 'Yantramanav', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: black; 
  padding-left: 20px;
  position: relative;
}
.language a span:before {
  position: absolute;
  left: 0;
}
.language .language-esp .eng {
  display: none;
}
.language .language-esp:hover .eng {
  display: block;
}
.language .language-esp:hover .esp {
  display: none;
}
/*////////////////////////
///       Footer      ////
////////////////////////*/
footer {
  background: #1B4381;
  margin-top: 15px;
}
.copyright {
  background: #00304D;
}
ul.ft-nav {
  margin-bottom: 45px;
}
ul.ft-nav li {
  margin-bottom: 10px;
}
ul.ft-nav li a {
  font-size: 13px;
  color: #E6E6E6;
  padding-left: 15px;
  position: relative;
}
ul.ft-nav li a:hover {
  color: #9d9d9d;
}
ul.ft-nav li a:before {
  font-family: "blukey";
  font-weight: normal;
  font-style: normal;
  content: "\6f";
  font-size: 8px;
  position: absolute;
  left: 0;
}
ul.social {
  display: flex;
  flex-flow: column;
  align-items: end;
}
ul.social li {

}
ul.social li a {
  font-size: 30px;
  color: white;
}
ul.social li a:hover {
  color: #9d9d9d;
}
ul.social li a.icon-in {
  font-size: 14px;
  border: 2px solid white;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
ul.social li a.icon-in:hover {
  border-color: #9d9d9d;
}
.ft-contact {
  padding: 0 15px;
  margin-bottom: 50px;
  margin-top: -15px;
}
.box-gray {
  padding-top: 30px;
  padding-bottom: 10px;
  background: #F1F1F1;
  text-align: center;
  width: 100%;
  min-height: 130px;
  margin-bottom: 15px;
}
.box-gray h3 {
  color: #1B4381;
}
.box-gray p,
.box-gray a {
  font-size: 16px;
  color: #777777;
}
.box-gray a:hover {
  color: #48689A;
}
.copyright p,
.copyright a {
  font-size: 12px;
  color: white;
  margin: 7px 0;
}
.copyright a:hover {
  text-decoration: underline;
}
.ft-navigation h3 {
  font-size: 20px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 10px;
}
/*///////////////////////
///        Menu       ///
///////////////////////*/
nav {
  display: inline-block;
  vertical-align: top;
}
nav ul {
  margin: 0;
}
nav ul li {
  display: inline;
  margin-right: 35px;
  position: relative;
}
nav ul li a {
  font-family: 'Yantramanav', sans-serif;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0;
  padding-top: 2px;
  display: inline-block;
  -webkit-transition: all 300ms;
     -moz-transition: all 300ms;
       -o-transition: all 300ms;
          transition: all 300ms;
}
nav ul li a:after {
  content: "";
  display: block;
  margin: auto;
  height: 2px;
  width: 0;
  top: 5px;
  background: transparent;
  transition: all 0.3s;
}
nav ul li a:hover:after,
nav ul li.current-menu-item a:after,
nav ul li.current-page-ancestor a:after {
  width: 100%;
  background: #1B4381;
}
nav ul li a:hover,
nav ul li.current-menu-item a,
nav ul li.current-page-ancestor a {
  color: #1B4381;
} 
/*///////////////////////
///    Mobile Menu    ///
///////////////////////*/
#mobile-menu {
  display: block;
  position: fixed;
  top: 0;
  padding: 25px 20px;
  width: 350px;
  height: 100%;
  right: -350px;
  box-sizing: border-box;
  z-index: 9999;
  overflow: hidden;
  background: #122c54;
}
#mobile-menu nav {
  float: none;
}
.cerrar-menu {
  cursor: pointer;
}
#mobile-menu .icon-close {
  cursor: pointer;
  font-size: 20px;
  color: white;
  margin-bottom: 40px;
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 5px;
  padding: 11px;
  text-align: center;
  transition: all 300ms;
  border: 1px solid #ffffff82;
}
#mobile-menu .icon-close:hover {
  border-color: white;
}
#mobile-menu .language a span {
  color: white;
}
#mobile-menu .language a:hover {
  background: #1B4381;
}
.hamburger {
  color: white;
  float: right;
  font-size: 25px;
  width: 45px;
  height: 45px;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  transition: all 300ms;
  background: #1B4381;
}
.hamburger:hover {
  background: #48689A;
}
.cerrar-menu img:hover {
  opacity: 0.7;
}
#mobile-menu nav {
  display: block;
}
#mobile-menu nav ul {
  margin-bottom: 40px;
}
#mobile-menu nav ul li a {
  font-family: 'Open Sans', sans-serif;
  color: white;
  font-weight: 600;
  padding: 15px 10px;
  display: block;
}
#mobile-menu nav ul li a:hover,
#mobile-menu nav ul li.current-menu-item a,
#mobile-menu nav ul li.current-page-ancestor a  {
  color: #ffffff;
  background: #ffffff1f;
}
#mobile-menu nav ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: block;
  margin-bottom: 0;
  margin-right: 0;
}
#mobile-menu nav ul li a:hover:after, 
#mobile-menu nav ul li.current-menu-item a:after,
#mobile-menu nav ul li.current-page-ancestor a:after {
  background: transparent;
}
body.open-menu {
  height: 100vh;
  overflow-y: hidden;
}
body.open-menu .mask {
  content: '';
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 98;
  top: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
}
body.open-menu #mobile-menu {
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
}
/*////////////////////////
///      Sections     ////
////////////////////////*/
.mt-site { margin-top: 100px; }
.container-1140 {
  max-width: 1400px;
}
.show-md,
.show-xl,
.display-none { display: none; }
.p-50  { padding: 50px; }
.pt-10 { padding-top: 10px; }
.pt-20 { padding-top: 20px; }
.pt-40 { padding-top: 40px; }
.pt-50 { padding-top: 50px; }
.pt-60 { padding-top: 60px; }
.pt-70 { padding-top: 70px; }
.pt-80 { padding-top: 80px; }
.pt-90 { padding-top: 90px; }
.pt-100 { padding-top: 100px; }
.pt-200 { padding-top: 200px; }
.pb-15 { padding-bottom: 15px; }
.pb-20 { padding-bottom: 20px; }
.pb-30 { padding-bottom: 30px; }
.pb-40 { padding-bottom: 40px; }
.pb-50 { padding-bottom: 50px; }
.pb-60 { padding-bottom: 60px; }
.pb-70 { padding-bottom: 70px; }
.pb-80 { padding-bottom: 80px; }
.pb-90 { padding-bottom: 90px; }
.pb-100 { padding-bottom: 100px; }
.mb-10 { margin-bottom: 10px; }
.mb-30 { margin-bottom: 30px; }
.mb-60 { margin-bottom: 60px; }
.w-100 { width: 100%; }
.get-quote {
  font-family: 'Titillium Web', sans-serif;
  font-size: 15px;
  color: white;  
  text-transform: uppercase;
  font-weight: 600;
  width: 50px;
  height: 160px;
  background: #1B4381;
  border-radius: 15px 0 0 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 990;
  right: 0;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  position: fixed;
  box-shadow: 0 0 10px rgb(0 0 0 / 50%);
}
.get-quote span {
  transform: rotate(270deg);
  display: block;
  width: max-content;
  position: relative;
  padding-left: 27px;
}
.get-quote span:before {
  font-size: 20px;
  transform: rotate(92deg);
  display: block;
  position: absolute;
  left: 0;
  top: -2px;
}
.get-quote:hover {
  background: #9d9d9d;
  color: white;
}
.btn {
  font-family: 'Titillium Web', sans-serif;
  font-size: 14px;
  color: white;
  text-transform: uppercase;
  background: #1B4381;
  font-weight: 600;
  border-radius: 15px;
  height: 40px;
  border: none;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  position: relative;
  padding: 0 20px;
  width: fit-content;
  z-index: 0;
  overflow: hidden;
}
.btn:after {
  font-family: "blukey";
  font-weight: normal;
  font-style: normal;
  content: "\65";
  text-transform: none;
  margin-left: 10px;
}
.btn:hover {
  background: #48689A;
  color: white;
}
.img-cover {
  position: relative;
  height: 100%;
}
.img-cover img {
  object-fit: cover;
  position: absolute;
  bottom: 0;
  top: 0;
  height: 100%;
  right: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}
.cta {
  font-family: 'Yantramanav', sans-serif;
  font-size: 14px;
  color: #3280AE;
  font-weight: 600;
  text-transform: uppercase;
}
.cta:after {
  font-family: "blukey";
  font-weight: normal;
  font-style: normal;
  content: "\65";
  text-transform: none !important;
  position: relative;
  top: 2px;
  left: 10px;
}
.cta:hover {
  color: #333333;
}
.cta.white {
  color: white;
}
.cta.white:hover {
  opacity: .7;
}
.bg-blue {
  background-color: #1B4381;
}
.bg-light {
  background-color: #F1F1F1 !important;
}
.bg-light-med:before {
  content: '';
  background: #F1F1F1;
  height: calc(50% - 64px);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.bg-points {
  background: url(../img/bg-points.svg) no-repeat top right;
}
.bg-isotipo-white {
  background-image: url(../img/isotipo-white.svg);
  background-repeat: no-repeat;
  background-position: top right;
  background-position-x: calc(100% - 15px);
}
.bg-isotipo-gray {
  background-image: url(../img/isotipo-gray.svg);
  background-repeat: no-repeat;
  background-position: top right;
}
.bg-isotipo-big:before {
  content: '';
  background-image: url(../img/isotipo-big.svg);
  position: absolute;
  width: 407px;
  height: 407px;
  z-index: 1;
  top: 55px;
  left: -122px;
}
.image-about { position: relative; }
.image-about:before {
  position: absolute;
  left: 0;
  top: 70px;
  width: 660px;
  height: 503px;
  border: 15px solid #1B4381;
  content: '';
  z-index: 1;
}
.image-about img {
  float: right;
  position: relative;
  z-index: 1;
}
.text-about {
  position: relative;
  z-index: 1;
  padding: 40px 70px;
  background-color: #ffffff;
  min-height: 480px;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.text-about p {
  font-size: 15px;
  line-height: 160%;
}
.experience-about h3 {
  font-size: 70px;
  color: #1B4381;
  font-weight: 800;
  line-height: 90%;
}
.experience-about p {
  font-family: 'Yantramanav', sans-serif;
  font-size: 32px;
  color: #222222;
  font-weight: 600;
}
.experience-about {
  position: absolute;
  left: 40px;
  bottom: 120px;
  z-index: 1;
}
.herobanner-medium {
  height: 360px;
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: center;
}
.herobanner-medium:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0,0,0,.4);
}
.herobanner-medium .caption {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  color: white;
  position: absolute;
  bottom: 0;
  z-index: 1;
  background: transparent;
  margin-bottom: 5px;
}
.breadcrumb span {
  padding: 0 5px;
}
.breadcrumb span:first-child {
  padding-left: 0;
}
.breadcrumb a {
  color: white;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.error-404 h1 {
  font-size: 260px;
  line-height: 90%;
}
.error-404 p {
  font-size: 20px;
  color: black;
  font-weight: 600;
}
.error-404 p.subtitle {
  font-size: 30px;
}
.play-video {
  position: relative;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.play-video:before {
  position: absolute;
  color: white;
  font-size: 60px;
  z-index: 1;
  transition: all 300ms; 
}
.play-video:after {
  content: '';
  background: rgba(0,0,0,.3);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.play-video:hover:before {
  font-size: 50px;
}
.play-video:hover:after {
  background: rgba(0,0,0,.4);
}
/*////////////////////////
///       Slick       ////
////////////////////////*/
.herobanner .img-cover {
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}
.herobanner .img-cover:before {
  content: '';
  display: block;
  background: rgba(0,0,0,.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.herobanner .slick-slide {
 height: calc(100vh - 100px);
}
.herobanner .caption {
  position: relative;
  z-index: 1;
}
.herobanner h1,
.herobanner h2 {
  text-transform: uppercase;
  text-shadow: 0 0 10px rgb(0 0 0 / 60%);
}
.herobanner h2 {
  font-size: 50px;
  color: white;
}
.herobanner .slick-prev, 
.herobanner .slick-next {
  font-family: 'Yantramanav', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  width: 60px;
  background: transparent;
  border-radius: 0;
  bottom: 20px;
  top: initial;
  -webkit-transform: initial;
      -ms-transform: initial;
          transform: initial; 
  display: flex !important;
  justify-content: space-between;
  align-items: center;         
}
.herobanner .slick-next { right: 60px; }
.herobanner .slick-next:before {
  right: 0;
  position: absolute;
}
.herobanner .slick-prev {
  left: initial;
  right: 160px;
}
.herobanner .slick-prev:before, 
.herobanner .slick-next:before {
  color: white;
}
.herobanner .slick-prev:hover, 
.herobanner .slick-next:hover,
.herobanner .slick-prev:focus, 
.herobanner .slick-next:focus {
  background: transparent;
}
.herobanner .slick-prev:hover, 
.herobanner .slick-next:hover {
  text-shadow: 0px 0px 10px black;
}
.herobanner .slick-dots {
  bottom: 10px;
}
.herobanner .slick-dots li button {
  border: 1px solid white;
}
.herobanner .slick-dots li.slick-active button {
  background: white;
}
.herobanner.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.content-box {
  position: relative;
  padding: 100px 100px;
  padding-right: 0;
}
.content-box:before {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 250px;
  border: 20px solid #1B4381;
  opacity: 0.6;
  content: "";
  z-index: -1;
}
.slick-prev {
  left: 0;
}
.slick-next {
  right: 0;
}
.slick-prev, 
.slick-next {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 100%;
  z-index: 99;
  padding-top: 2px;
}
.slick-prev:hover, 
.slick-next:hover,
.slick-prev:focus, 
.slick-next:focus {
  background: #1B4381;
}
.slick-prev:hover:before, 
.slick-next:hover:before,
.slick-prev:focus:before, 
.slick-next:focus:before {
  color: white;
}
.slick-prev:before, 
.slick-next:before {
  font-family: "blukey";
  font-weight: normal;
  font-style: normal;
  color: #1B4381;
  font-size: 16px;
  opacity: 1;
  line-height: 120%;
}
.slick-prev:before {
  content: "\66";
}
.slick-next:before {
  content: "\65";
}
.gallery .slick-slide {
  position: relative;
}
.gallery .slick-slide .caption {
  padding: 60px 20px 20px 20px;
  text-align: center;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: -o-linear-gradient(bottom, transparent 0%, #000000e0 100%);
  background-image: -moz-linear-gradient(bottom, transparent 0%, #000000e0 100%);
  background-image: -webkit-linear-gradient(bottom, transparent 0%, #000000e0 100%);
  background-image: -ms-linear-gradient(bottom, transparent 0%, #000000e0 100%);
  background-image: linear-gradient(to bottom, transparent 0%, #000000e0 100%);
}
.gallery .slick-slide .caption h3,
.gallery .slick-slide .caption p {
  color: white;
}
.gallery .slick-prev {
  left: 20px;
}
.gallery .slick-next {
  right: 20px;
}
.customers .slick-slide { text-align: center; }
.customers .slick-slide img {
  width: auto !important;
}
.slick-dots { bottom: -45px; }
.slick-dots li {
  width: 10px;
  height: 10px;
}
.slick-dots li button {
  border: 1px solid #1B4381;
  border-radius: 100%;
  width: 8px;
  height: 8px;
  padding: 0;
}
.slick-dots li.slick-active button {
  background: #1B4381;
}
.slick-dots li button:before {
  content: none;
}
/*////////////////////////
///        Forms       ///
////////////////////////*/
label { margin-bottom: 10px; }
input[type=text],
input[type=email],
input[type=tel],
textarea,
select {
  font-size: 16px;
  color: #222222;
  background: white;
  border: none;
  width: 100%;
  height: 50px;
  padding: 15px 25px;
  margin-bottom: 30px;
  border-radius: 5px;
}
textarea {
  height: 250px;
}
select {
  font-size: 16px;
  color: #777777;
  font-weight: 600;
  background: url(../img/select-arrow.svg) no-repeat right #F8F8F8;
  -webkit-appearance: none;
  background-position-x: calc(100% - 25px);
}
input[type=submit] {
  width: 160px;
  height: 50px;
  background: #1B4381;
  color: white;
  font-size: 16px;
  font-weight: 600;
  color: white;
  border: none;
  border-radius: 15px;
  text-transform: uppercase;  
  float: right;
  transition: all 300ms;     
}
input[type=submit]:hover {
  background: #CCCCCC;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  border-color: transparent;
}
input[type="checkbox"] { 
  margin-right: 10px;
}
::-webkit-input-placeholder { 
  font-size: 16px;
  color: #777777;
  font-weight: 600;
}
:-moz-placeholder { 
  font-size: 16px;
  color: #777777;
  font-weight: 600;
}
::-moz-placeholder { 
  font-size: 16px;
  color: #777777;
  font-weight: 600;
}
:-ms-input-placeholder { 
  font-size: 16px;
  color: #777777;
  font-weight: 600;
}
.grecaptcha-badge { visibility: hidden; }
/*////////////////////////
///       Fonts        ///
////////////////////////*/
@font-face {
  font-family: "blukey";
  src:url("../fonts/blukey.eot");
  src:url("../fonts/blukey.eot?#iefix") format("embedded-opentype"),
      url("../fonts/blukey.woff") format("woff"),
      url("../fonts/blukey.ttf") format("truetype"),
      url("../fonts/blukey.svg#blukey") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "blukey" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "blukey" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-close:before {
  content: "\61";
}
.icon-menu:before {
  content: "\62";
}
.icon-arrow-down:before {
  content: "\63";
}
.icon-filtracion:before {
  content: "\64";
}
.icon-nex:before {
  content: "\65";
}
.icon-prev:before {
  content: "\66";
}
.icon-play:before {
  content: "\68";
}
.icon-planta-biologica:before {
  content: "\69";
}
.icon-servicios:before {
  content: "\6a";
}
.icon-tanques:before {
  content: "\6b";
}
.icon-touch:before {
  content: "\6c";
}
.icon-tratamiento-aguas:before {
  content: "\6d";
}
.icon-whatsapp:before {
  content: "\6e";
}
.icon-arrow-right:before {
  content: "\6f";
}
.icon-in:before {
  content: "\70";
}
.icon-global:before {
  content: "\67";
}

/*////////////////////////
///   Media Queries    ///
////////////////////////*/
@media (min-width: 1200px) {  }
@media screen and (max-width: 1290px) {}
@media screen and (max-width: 1199px) {}
@media screen and (max-width: 1024px) {
  .featured-products .bg-blue { width: 35%; }
}
@media screen and (max-width: 991px) {
  .show-xl { display: inline-block !important; }
  .hide-xl { display: none !important; }
  nav ul li { margin-right: 20px; }
  .featured-products .bg-blue { width: 27%; }
  .text-about { 
    padding: 30px 20px;
    min-height: auto;
  }
  .image-about:before {
    width: 620px;
    height: 455px;
  }
  .experience-about {
    left: 30px;
    bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  h1, .h1 { font-size: 35px; }
  h2, .h2 { font-size: 25px; }
  h3, .h3 { font-size: 20px; }
  h4, .h4 { font-size: 18px; }
  h5, .h5 { font-size: 15px; }
  h6, .h6 { }
  .herobanner h1,
  .herobanner h2 { font-size: 30px; }
}  
@media screen and (max-width: 767px) {
  .hide-md { display: none !important; }
  .show-md { display: block; }
  .hide-xs { display: none !important; }
  .reverse-md .col-a { order: 2; }
  .reverse-md .col-b { order: 1; }
  .content-box { padding: 40px; }
  .content-box:before { width: 150px; }
  .top-bar:after { width: 30%; }
  .customers .slick-slide { padding: 0 15px; }
  .featured-products .bg-blue { width: 100%; }
  .featured-products h2 { margin-bottom: 20px; }
  .featured-products p { color: white; }
  .carrousel-box:after { content: none; }
  .product-services .slick-slide { margin: 0;  }
  .carrousel-box { 
    padding: 15px 30px; 
    padding-bottom: 95px;
  }
  .image-about:before { content: none; }
  .experience-about { bottom: 20px; }
  .experience-about h3 { font-size: 50px; }
}
@media screen and (max-width: 425px) {

}
@media screen and (max-width: 425px) {

}
@media screen and (max-width: 400px) {}
@media screen and (max-width: 375px) {}
@media screen and (max-width: 320px) {}