@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500&display=swap');
* {  box-sizing: border-box;}
body,
html {
	height:100%;
	padding:0;
	margin:0;
	font-size:25px;
	font-family:'Rubik',sans-serif;
	color:#000;
	background-color:#f5f5f5;
}
a{
	transition:all ease 500ms;
}
.mobile{
	display:none!important;
}
.desktop{
	display:inline-block !important;
}
main{
	z-index:2;
	position:relative;
	height:auto;
	background-color:#f5f5f5;
	-webkit-transition:transform .7s ease-in-out;
	-moz-transition:transform .7s ease-in-out;
	-ms-transition:transform .7s ease-in-out;
	-o-transition:transform .7s ease-in-out;
	transition:transform .7s ease-in-out;
	overflow:hidden;
}
article h2{
	display:inline-block;
}
.limpiar{
	clear:both;
}
h1.top{
	position:absolute;top:0;
}
.texto_h{
	position:absolute;top:0;
}
.p5{
	padding:5%;
}
.px-5{
	padding:0 5%;
}
.py-5{
	padding:5% 0;
}
.pt-5{
	padding:5% 0;
}
.pb-0{
	padding-bottom:0;
}
strong{
	color:#0062a6;font-weight:600;
}
.f-title{ font-family: 'Rubik', sans-serif; }
.t-white{color:white!important;}
.t-blue{color: #0062a6;}
.t-right{text-align: right;}
.t-left{text-align: left;}
.bg-darkblue{  background-color: #054470;}
.bg-blue{  background-color:#0062a6!important;}
.bg-white{  background-color:#fff;}
.o-hidden{overflow: hidden;}
.d-none{display: none;}
/* BOTONES */
.btn{
	background-color: #ffc50a;
	padding: 20px 30px;
	border-radius: 5px;
	text-decoration: none;
	color: black;
	font-weight: 600;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
	border:1px solid transparent;
	text-transform: uppercase;
}
.btn:hover{
	background-color: black;
	color: white;
	border:1px solid white;
}
.btn-red{
	color: white;
	padding: 10px 10px;
	font-size:.8em;
	border:1px solid white;
	background-color: transparent;
}
.btn-red:hover{
	color: #ab1e2c;
	background-color: white;
	border:1px solid #ab1e2c;
}
/* DESKTOP */
  /* ---------------------------------- */
  /* ------------- NAVBAR ------------- */
  /* ---------------------------------- */
header{
	position: absolute;
	width: 100%;
	background: rgb(0,0,0,0);
	background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 42%, rgba(255,197,10,0) 100%);
	min-height: 200px;
	z-index: 5;
}
.logo{
	position: absolute;
	top: 5vh;
	left: 5vh;
}
.logo-scrll{
	display: none;
	position: absolute;
	top: 2.8vh;
	left: 5vh;
	opacity: 0;    
	-webkit-transition: all .7s ease;
	-moz-transition: all .7s ease;
	-ms-transition: all .7s ease;
	-o-transition: all .7s ease;
	transition: all .7s ease;
}
  .logo img{    max-width: 400px;  }
.logo-scrll img{    max-width: 250px;}
.scrolled-nav header{
	position: fixed;
	top: 0;
	background: #ffc50a;
	min-height: 100px;
	width: 100%;
	-webkit-transition: all .7s ease;
	-moz-transition: all .7s ease;
	-ms-transition: all .7s ease;
	-o-transition: all .7s ease;
	transition: all .7s ease;
}
.scrolled-nav .logo-scrll{
	display: block;
	opacity: 1;
}
.scrolled-nav .logo{  display: none;}
.scrolled-nav nav{  padding: 30px 5% 0 5%;}
.scrolled-nav .nav-item a {  color: rgba(0,0,0,1);}
nav{
	position: relative;
	width: 100%;
	padding: 3% 5%;
	text-transform: uppercase;
}
.nav-list {
	text-align: right;
}
.nav-item {
	margin:  0 0 0 20px;
	display: inline-block;
}
/*HOVER EFFECT*/
.nav-item a {
	padding: .5em .8em;
	color: rgba(255,255,255,1);
	position: relative;
	text-decoration: none;
}
.nav-item a::before,
.nav-item a::after {
	content: '';
	height: 14px;
	width: 14px;
	position: absolute;
	transition: all .35s ease;
	opacity: 0;
}
.nav-item a::before {
	content: '';
	right: 0;
	top: 0;
	border-top: 3px solid #0062a6;
	border-right: 3px solid #0062a6;
	transform: translate(-100%, 50%);
}
.nav-item a:after {
	content: '';
	left: 0;
	bottom: 0;
	border-bottom: 3px solid #0062a6;
	border-left: 3px solid #0062a6;
	transform: translate(100%, -50%)
}
.nav-item a:hover:before,
.nav-item a:hover:after{
	transform: translate(0,0);
	opacity: 1;
}
.nav-item a:hover {  color: #0062a6;}
/* MEDIA QUERIES DESKTOP*/
/* LAYOUT */
.row::after {
	content: "";
	clear: both;
	display: table;
}
[class*="col-"] {
	float: left;
/*    padding:0 15px;*/
}  
.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

.col-img{    width: 100%;    display: block;  }
.img-fluid{    width: 100%;display: block; }
.va-top{vertical-align: top;}
.center{
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.left{  text-align: left;}
.right{  text-align: right;}
.main-slider{
	height: 80vh;
	background-color:#0062a6 ;
	position: relative;
	overflow: hidden;
}
.main-slider img{  width: 100%;  z-index: 0; }
.slides{  position: relative; }
.bn-title{
	position: absolute;
	top: 25%;
	right: 0;
	left: 0;
	max-width: 60%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	color: white;
	display: block;
	text-transform: uppercase;
}
.bn-title h2{
	line-height: 1.2;
	font-size: 2.5em;
	filter: drop-shadow(0px 5px 5px rgba(0,0,0,.5));
}
.bn-title span{  color: #ffc50a;}
.sect-title{
	font-size: 2.5em;
	text-transform: uppercase;
	padding: 50px 0;
	text-align: center;
}
.sect-title strong{  color:#ffc50a;}
.sect-title strong:nth-of-type(2n+1){ color:#0062a6!important;}
/* SECTIONS */
.our-products{
	position: relative;
	background-image: url(../images/bg-our-products.jpg);
	background-color: #091d3f;
	background-size: cover;
	z-index: 5;
	filter: drop-shadow(0px -20px 25px rgba(0,0,0,.5));
	text-align:center;
}
.our-products .btn{
	display:inline-block;
/*	position: absolute;*/
	min-height: 45px;
/*	bottom: -30px;
	left: 0;
	right: 0;*/*/
	max-width: 500px;
}
.carousel-texto{
	position:absolute;
	bottom:-35px;
	width:100%;
	text-align:center;
	font-size:14px; 
	color:#FFF;
}
.carousel {
	overflow: hidden;
	position: relative;
	width: 100%;
	min-height: 380px;
	-webkit-perspective: 500px;
	perspective: 900px;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
	margin-top: -25vh;
}
.carousel.carousel-slider {
	top: 0;
	left: 0;
}
.carousel.carousel-slider .carousel-fixed-item {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 20px;
	z-index: 1;
}
.carousel.carousel-slider .carousel-fixed-item.with-indicators {  bottom: 68px;}
.carousel.carousel-slider .carousel-item {
	width: 100%;
	height: 100%;
	min-height: 400px;
	position: absolute;
	top: 0;
	left: 0;
}
.carousel.carousel-slider .carousel-item h3 {
	font-size: 24px;
	font-weight: 500;
	line-height: 32px;
}
.carousel.carousel-slider .carousel-item p {  font-size: 15px;}
.carousel .carousel-item {
	visibility: hidden;
	width:300px;
	height: 300px;
	position: absolute;
	top: 0;
	left: 0;
}
.carousel .carousel-item > img {  width: 100%;}
.carousel .indicators {
	position: absolute;
	text-align: center;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
}
.carousel .indicators .indicator-item {
	display: inline-block;
	position: relative;
	cursor: pointer;
	height: 8px;
	width: 8px;
	margin: 24px 4px;
	background-color: rgba(255, 255, 255, 0.5);
	-webkit-transition: background-color .3s;
	transition: background-color .3s;
	border-radius: 50%;
}
.carousel .indicators .indicator-item.active {  background-color: #fff;}
.carousel.scrolling .carousel-item .materialboxed,
.carousel .carousel-item:not(.active) .materialboxed {  pointer-events: none;}
/*
  .carousel-products{
    display: none!important;
    margin-top: -25vh;
    overflow: visible!important;
}
.carousel-products img{
  max-width: 100%;
  max-height:300px;
  height: auto;
}
*/
.products-list .col-6{  padding: 20px;}
.products-list .btn{
	position: absolute;
	bottom: -10vh;
left: 40vh;}
.product{
	background-color:white;
	filter: drop-shadow(0px 10px 15px rgba(0,0,0,.5));
	padding: 30px 20px;
	border-radius: 5px;
	margin-bottom: 30px;
	text-align:left;
}
.product i{
	color:#ab1e2c;
	font-size: 1.5em; 
	margin-right:10px;
	vertical-align: middle;
}
/*SOLUTIONS*/
.surface-solutions{  position: relative;  margin-top: 15vh;}
.surface-solutions .sect-title{  text-align: left;}
.surface-solutions .col-4{
	display: inline-flex;
	flex-wrap: wrap;
	padding: 12px;
}
.solution {
	display: inline-block;
	text-decoration: none;
	color: inherit;
	width: 100%;
	position: relative;
	background-color: #ab1e2c;
	cursor: pointer; 
	border-radius: 5px 5px 0 0;
}
 .solution::nth-of-class(2n+1){  background-color: #0062a6!important; }
 .solution:before {
	position: absolute; 
	left: 0;
	bottom: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background-color: #ffc50a;
	transform-origin: 0 bottom 0;
	transform: scaleY(0);
	transition: .4s ease-out;
}
.solution:hover .solution-title {	color: #000;	}
.solution:hover:before {transform: scaleY(1);	}
.solution:hover .btn {  opacity: 1;  transition: .4s ease-out;}
.solution-title {
	position: relative;
	font-weight:700;
	line-height:1.2;
	transition:.4s ease-out;
	color: white;
	text-transform:uppercase;
	padding:0.4rem;
	font-size:19px;
	height:90px;
	display:table-cell;
	vertical-align:middle;
}
.solution .btn{
	position: absolute;
	bottom: 15px;
	right: 15px;
	opacity: 0;
}
.sol-img{
	position: relative;
	height: 150px;
	overflow: hidden;
	transition: .4s ease-out;
	border-top:2px solid #ffc50a;
}
.solution img{
	position: absolute;
	bottom: 0;
	z-index: 0;
	transition: .4s ease-out;
}
 .solution:hover .sol-img img{  opacity: .5;  transform: scale(1.3);}
/* ---------------------------------- */
/* ------------- FOOTER ------------- */
/* ---------------------------------- */
footer{
	background-image: url(../images/bg-contact.jpg);
	background-color: #efefef;
	background-size: cover;
}
.contact{  padding-right: 0!important;}
.contact .f-title{
	font-size: 3rem;
	font-weight: 400;
}
.contact p{  margin: 20px 0;}
.contact small{
	color: white;
	font-size: .8em;
	margin-top: 50px;
}
.contacFrmBTN{
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}
.contacFrmBTN input{
	font-family: 'Rubik', sans-serif;
	font-size: 1em;
	cursor:pointer;
}
.col-frm{  padding: 0 1% 0 0;  width: 50%;}
.inw, textarea{
	padding:1rem 20px;
	border: none;
	border-radius: 3px;
	margin-bottom: 10px;
	font-family: 'Rubik', sans-serif;
	font-size: 1em;
	width:98%;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	background-color: rgba(255, 255, 255, 1);
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #242424;  opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #242424;
}
::-ms-input-placeholder { /* Microsoft Edge */
  color: #242424;
}
.statusMsg {
	padding: 20px;
	background-color: #4CAF50;
	color: white;
	opacity: 0.83;
	transition: opacity 0.6s;
	margin-bottom: 15px;
}
.box-info{
	display: inline-block;
	padding:0 0 0 5%;
}
.box-info ul{
	margin: 50px 0 0 30px;
	font-size: 1.5em;
}
.box-info ul li{  margin-bottom: 50px;}
.box-info li i{  color:#ffc50a;}
.social{
	background-color: #ffc50a;
	padding: 1rem;
	font-size: 1.5em;
	margin-bottom: 30px;
}
.anchor-sn{  color:#000;  text-decoration: none;
margin: 0 20px 0 20px;}
.anchor-sn:hover{  color:#0062a6;}
.ftr-bot{
	color:white;
	text-align: center;
	background-color: black;
	padding: 15px 10px;
	font-size: .8em;
}
.anchor{  color:#fff;  text-decoration: none;}
.anchor:hover{  color:#0062a6;}
.tab-phone{
	position: fixed;
	bottom: 25px;
	right: 25px;
	z-index:199;
	padding:22px;
	border-radius:10em ;
	background-color: #0062a6;
	border: 5px solid white;
}
.tab-phone i{	font-size: 2em; color:white;}
/* WIDGET WHATSAPP */
.widget_whatsapp{
	bottom:21px;
	right:23px;
	opacity:1;
	transition:opacity 0.5s ease 0s;
	box-sizing:border-box;
	position:fixed !important;
	z-index:16000160 !important;
	direction:ltr;
}
.widget_whatsapp a{
	width:50px;
	height:50px;
	background:rgb(77, 194, 71) none repeat scroll 0% 0% !important;
	order:2;
	padding:5px;
	box-sizing:border-box;
	border-radius:50%;
	cursor:pointer;
	overflow:hidden;
	box-shadow:rgba(0, 0, 0, 0.4) 2px 2px 6px;
	transition:all 0.5s ease 0s;
	position:relative;
	z-index:200;
	display:block;
	border:0px none;
	outline:0;
}
.widget_whatsapp a:hover{
	box-shadow:rgba(0, 0, 0, 0.7) 2px 2px 11px;
}
/*.widget_whatsapp a:hover ~ span{
	opacity:1;
	transition:all 0.5s ease 0s;
}*/
.widget_whatsapp span{
	opacity:0;
	position:absolute;
	top:2px;
	right:55px;
	width:240px;
	padding:10px;
	text-align:center;
	font-weight:bold;
	font-size:14px;
	line-height:1.5;
	font-family:Arial, Helvetica, sans-serif;
	border:2px solid #CCC;
    border-radius:5px;
	background-color:#FFF;
	box-shadow:rgba(0, 0, 0, 0.4) 2px 2px 6px;
}
/* MEDIA QUERIES DESKTOP*/
@media (max-width: 1440px) { /* DESKTOP */
body{  font-size: 20px;}
.btn{  padding: 10px 20px;}
.scrolled-nav header{  min-height: 80px; }
.logo-scrll{  top: 2vh;}
.main-slider{  height: 70vh; }
.bn-title{  max-width: 85%; } 
.bn-title h2{font-size: 2.45em;}
.surface-solutions{    margin-top: 10vh;  }
.solution-title {    padding: 0.4rem;  }
.carousel{    margin-top: -22vh;}
}
@media (max-height: 768px) { /* LAP DESKTOP */
.main-slider{  height: 85vh; }
.carousel{    margin-top: -20vh;}
}
@media (max-width: 1200px) { /* TABLETS */
header{ min-height: 100px;  }
.logo{ top: 20px; left: 20px;}
.logo img{    max-width: 200px;  }
.logo-scrll img{    max-width: 200px;}
.logo-scrll{ top: 20px;left: 20px; }
.slides img{  width: 200%;text-align: center;  }
.bn-title{  top:20%; } 
.col-4 {width: 50%;}
.col-8 {width: 50%;}
}
/* MEDIA QUERIES MOBILE*/
@media (max-width: 900px) {
header{ min-height: 100px;  }
.mobile{display: inline-block!important;}
.desktop{display: none!important;}
.p5, .px-5, .py-5, .pt-5, .pb-0{padding: 0;}
[class*="col-"] {padding:0;}
/* ---------------------------------- */
/* ------------- NAVBAR ------------- */
/* ---------------------------------- */
.sidebar{display: none;opacity: 0;  }
.sidebar.active{
	position: fixed;
	display: block;
	top: 0;
	bottom: auto;
	background-color: #ffc50a;
	padding: 2rem 0 1rem 0;
	opacity: 1;   
}
.nav-list {  text-align: right; padding: 50px 0 0 0;  }
.nav-item { padding: 0; display: block; }
/*HOVER EFFECT*/
.nav-item a { display: block; padding: 1em .8em; width: 100%; }
.bar {
	display: block;
	height: 5px;
	width: 40px;
	background-color: #0062a6;
	margin: 10px auto;
}
.button {
	cursor: pointer;
	display: inline-block;
	width: auto;
	margin: 0 auto;
	-webkit-transition: all .7s ease;
	-moz-transition: all .7s ease;
	-ms-transition: all .7s ease;
	-o-transition: all .7s ease;
	transition: all .7s ease;
}
.nav-right {
	position: fixed;
	right: 20px;
	top: 10px;
}
.nav-right.visible-xs {  z-index: 3;}
.hidden-xs { display: none;}
.middle { margin: 0 auto;}
.logo{ top: 20px; left: 20px;}
.logo img{ max-width: 200px;  }
.logo-scrll img{  max-width: 200px;}
.logo-scrll{ top: 20px;left: 20px; z-index: 100;}
.main-slider{ max-height: 400px;}
.slides img{ width: 200%;text-align: center;  }
.carousel{ margin-top: -70px;height: 230px;}
.carousel .carousel-item { width:200px; height: 200px; }
.our-products .btn{
/*	bottom: -30px;
	left: 20%;
	right: auto;*/
}
.bn-title{  max-width: 90%; top:110px; }
.bn-title h2{font-size: 1.5em; }
.sect-title{ font-size: 1.5em; line-height: 1.3; padding: 30px 0; }
.product{display:flex;}
.solution .btn { opacity: 1;right:20px}
.surface-solutions .sect-title{  text-align: center;}
.box-info{  margin-top: 30px;}
.contact .f-title{  font-size: 1.5rem; margin-top: 30px; }
  /* THIS IS FOR THE BAR ICON */
.bar {
	-webkit-transition: all .7s ease;
	-moz-transition: all .7s ease;
	-ms-transition: all .7s ease;
	-o-transition: all .7s ease;
	transition: all .7s ease;
}
.nav-right.visible-xs .active .bar {
	background-color: #FFF;
	-webkit-transition: all .7s ease;
	-moz-transition: all .7s ease;
	-ms-transition: all .7s ease;
	-o-transition: all .7s ease;
	transition: all .7s ease;
}
.button.active .top {
	-webkit-transform: translateY(15px) rotateZ(45deg);
	-moz-transform: translateY(15px) rotateZ(45deg);
	-ms-transform: translateY(15px) rotateZ(45deg);
	-o-transform: translateY(15px) rotateZ(45deg);
	transform: translateY(15px) rotateZ(45deg);
}
.button.active .bottom {
	-webkit-transform: translateY(-15px) rotateZ(-45deg);
	-moz-transform: translateY(-15px) rotateZ(-45deg);
	-ms-transform: translateY(-15px) rotateZ(-45deg);
	-o-transform: translateY(-15px) rotateZ(-45deg);
	transform: translateY(-15px) rotateZ(-45deg);
}
.button.active .middle {  width: 0;}
/* END THIS IS FOR THE BAR ICON*/
.move-to-left {
	-webkit-transform: translateX(-400px);
	-moz-transform: translateX(-400px);
	-ms-transform: translateX(-400px);
	-o-transform: translateX(-400px);
	transform: translateX(-400px);
}
.p5{padding: 2%;}
.col-1 {width: 46%;}
.col-2 {width: 33.3%;}
.col-3 {width: 100%;}
.col-4 {width: 100%;}
.col-5 {width: 100%;}
.col-6 {width: 100%;}
.col-7 {width: 100%;}
.col-8 {width: 100%;}
.col-9 {width: 100%;}
.col-10 {width: 100%;}
.col-11 {width: 100%;}
.col-12 {width: 100%;}
}
@media (max-width: 600px) {
.main-slider{ height: 500px;}
.slides img{ width: 300%;  }
.carousel{ margin-top: 0px;}
.our-products{ padding-bottom:10%;}
}
@media (min-width:900px) {
.hidden-xs {    display: block;  }
.visible-xs {    display: none;  }
}