@import url('https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
* {
box-sizing:border-box;
}
img {
	display: block;
	max-width: 100%;
}
body{
	margin: 0;
	font-family: 'Open Sans', sans-serif;
    background: #242c38 ;
}
h1,h2,h3,h4,h5,h6{
	font-family: 'Yanone Kaffeesatz', sans-serif;
	letter-spacing: 1.5px;
}
.contenedor{
	margin: auto;
	width: 99%;
}
/*---------------Estilos Header----------------------*/
.header{
	height: 75px;

}
.header .contenedor{
	display: flex;
	justify-content: space-between;
}
.logo{
	margin: 5px;
}
.icon-menu{
	display: block;
    margin: 20px;
	color: #fff;
	width: 40px;
	height: 40px;
	font-size: 30px;
	background: red;
	text-align: center;
	line-height: 40px;
	border-radius: 5px;
	margin-left: auto;
	cursor: pointer;
}
.textomenuicono {
    margin: 0;
    padding: 0;
    display: block;
    font-size: 15px;
    font: sans-serif;
}

/*---------------Estilos Menu----------------------*/
.nav{
	position: absolute;
	top: 75px;
	left: -100%;
	width: 100%;
	transition: all 0.4s;
}
.nav ul ul{
	display: none;

}
.menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
.submenu__item {
    list-style: none;
}

.menu__link{
	display: block;
	color: #fff;
	height: 50px;
	text-decoration: none;
	padding: 15px;
    font-size: 0.9em;
    /*borde*/
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.menu__link:hover{
    background: rgba(255,255,255,0.3);
    /*background: rgba(0,0,0,.3);*/
	color: #fff;
    
}

.mostrar{
    left: 0;
	height: 100vh;
    background:rgba(51,51,51,0.9);
    z-index: 900;
	/*background:#797979;*/
}
.mostrar_hea{
    background:rgba(51,51,51,0.9);
}

@media (min-width:1024px){
   /*****menu*******/
    .icon-menu{
        display: none;
    }
    .contenedor{
        width: 1000px;
    }
    .logo{
        width: 25%;
        height: auto;
        margin: 0px;
    }
    .nav {
        width: 75%;
        margin: 20px auto;
        overflow: hidden;
        border-radius: 4px;
        position: static;
    }
    /*nav > ul > li > ul {
        display: block;
        position: absolute;
        background: red;
    }*/
    
    .nav > ul > li:hover >ul {
        width: 75%;
        display: table;
        table-layout: fixed;
        position: absolute;
        /**referencia de submenu de donde inicia**/
        left: 15%;
        right: 15%;
        /*float: right;*/
        transition: all .5s ease;
        border-radius: 5px;
        font-size: 14px;
        padding: 2px 0;
        text-align: center;
        text-decoration: none;
        text-shadow:1px 1px 1px rgba(51,51,51,0.3);
       
    }
    
  .nav > ul > li > ul {
	display: block;
	position: absolute;
	background:rgba(51,51,51,0.5);
      /*background: red;*/
   /**referencia de submenu de donde inicia**/
	left: 15%;
	right: 15%;
   /*float: right;*/
    width: 75%;
	overflow: hidden;
	height: 0%;
	font-family: "Myriad pro",Arial;
	font-size: 14px;
	padding: 0px 0;
	text-align: center;
    text-decoration: none;
	text-shadow:1px 1px 1px rgba(0,0,0,.9);
}
   
    .menu {
	width: 100%;
	display: table;
	table-layout: fixed;
	float: left;
	transition:all .5s ease;
    background: rgba(51,51,51,0.5);
    }
    .menu li {
        display: table-cell;
        overflow: hidden;
        width: 100%;
        border-right: 1px solid #5c5c5c;
        border-left: 1px solid rgba(255,255,255,.2);
    }
    .menu li:first-child {
        border-left: none;
    }
    .menu li:first-child:hover{
      border-left: none;
        
    }
    .menu li a {
        color: #fff;
        display: block;
        padding: 5px 0;
        text-align: center;
        text-decoration: none;
        text-shadow:1px 1px 0px rgba(0,0,0,.3);
        
    }
   
    .menu li:hover {
	background: rgba(0,0,0,3);
	border-right: 1px solid transparent;
	border-left: 1px solid transparent;
	border-bottom: none;
}
    .menu li:active {
	background: rgba(0,0,0,.3);
	box-shadow: inset 0px 3px 2px rgba(0,0,0,1);
}
      
}
/****************----------********************/
/*******-----------Estilos Slider---------*****/
p {
    color: #00c5b9;
    text-decoration: none;
}
ul {
    list-style-type: none;
}
/*.slider-title {
    text-align: center;
    color: #fff;
    margin: 80px 0 40px;
    font-size: 3.2em;
    font-weight: 300;
}*/
.slider-container {
    margin: 0 auto;
    width: 100%;
}
.slider-wraper {
    position: relative;
    z-index: 90;
    height: 200px;
    width: 100%;
    border: 5px solid #415066;
    overflow: hidden;
}
.slider-wraper li {
    display: none;
}
li.slide-current {
    display: block;
}
.slider-wraper li img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100%;
    height: 200px;
}
 .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: rgba(51,51,51,0.9);
    padding: 5px;
}
.caption-title {
    color: cyan/*#00c5b9*/;
    font-weight: 700;
    font-size: 1.0em;
    margin-bottom: 5px;
    margin: 0;
    padding: 0;
}
.caption p{
    color: #fff;
    font-size: 0.8em;
    line-height: 1.0em;
    margin: 1px;
    padding: 0px;
    height: 50px;
}


.slider-controls {
    text-align: center;
    margin-top: 15px;
}
.slider-controls li {
	background: #415066;
	-webkit-border-radius:50%;
	-moz-border-radius:50%;
	border-radius:50% ;
	display: inline-block;
	height: 12px;
	width: 12px;
	margin: 0 4px;
	cursor: pointer;
}
.slider-controls li.active {
    background: #00c5b9;
}
/**Responsive**/
@media(min-width:410px){
    .slider-wraper {
    height: 300px;
}
    .slider-wraper li img {
    height: 300px;
}
    .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: rgba(51,51,51,0.9);
    padding: 5px;
}
.caption-title {
    color: cyan/*#00c5b9*/;
    font-weight: 700;
    font-size: 1.3em;
    margin-bottom: 10px;
    margin: 0;
    padding: 0;
}
.caption p{
    color: #fff;
    font-size: 1.0em;
    line-height: 1.0em;
    margin: 1px;
    padding: 0px;
    height: 55px;
}
}

@media(min-width:768px){
    .slider-wraper {
    height: 300px;
}
    .slider-wraper li img {
    height: 300px;
}
    .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
        height: 30%;
    background: rgba(51,51,51,0.9);
    padding: 5px;
}
.caption-title {
    color: cyan/*#00c5b9*/;
    font-weight: 700;
    font-size: 1.5em;
    margin-bottom: 10px;
    margin: 0;
    padding: 0;
}
.caption p{
    color: #fff;
    font-size: 1.0em;
    line-height: 1.1em;
    margin: 1px;
    padding: 5px;
    height: 55px;
}
}
@media(min-width:1024px){
    .slider-wraper {
    height: 620px;
}
    .slider-wraper li img {
    height: 620px;
}
    .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(51,51,51,0.7);
    padding: 12px;
}
.caption-title {
    color: cyan/*#00c5b9*/;
    font-weight: 700;
    font-size: 2.6em;
    margin-bottom: 10px;
}
.caption p{
    color: #fff;
    font-size: 1.8em;
    line-height: 1.3em;
}
}
/****************----------********************/
/****************-----Estilos Cliente-----********************/
.clientes {
    margin: 0;
    padding: 0;
}
.clientes h1 {
    color: #fff;
    text-align: center;
}
.logocliente {
    width: 80%;
    margin-left: 10%;
    height: auto;
}
.logocliente img {
    width: 100%;
}
/****************-----Estilos Footer-----********************/
.copy{
    background:rgba(51,51,51,0.5); 
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 10px;
}
@media (min-width:1024px){
    .copy{
        font-size: 15px;
    }
}
/****************----------********************/

/*******************SistemasERP*******************/
.descripcionerp {
    color: #fff;
    font-size: 12px;
    font: sans-serif;
}
.col1 p{
    color: #fff;
    font-size: 14px;
    justify-content: center;
}
.col1 li{
    color: #fff;
    font-size: 14px;
        
}
.imgerp p{
    color: #fff;
    font-size: 14px;
}
/****************----------********************/
/*******************forcontacto*******************/
.frmcontacto {
    margin: 0;
    width: 100%;
    float: left;
    padding: 5px;
}
.wrap {
    width: 100%;
    max-width: 1000px;
    margin:auto;
}

.frmcontacto h1{
    margin: 20px 0;
    color: #fff;
    font-size: 25px;
    text-align: center;
}

.frmcontacto h2{
    margin: 20px 0;
    color: #fff;
    font-size: 20px;
    text-align: center;
    
}
.colcontactos h3{
    color: #fff;
    text-align: center;
}
.imgcontacto h1 {
    margin: 20px 0;
    color: #fff;
    font-size: 25px;
}
.imgcontacto img {
    margin: auto;
}


form {
    width: 100%;
    margin: 50px 0;
    padding: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 3px grey;
    border-top: 4px solid #536DFE;
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form textarea {
    border:1px solid #536DFE;
    border-radius: 2px;
    padding: 16px;
    width: 100%;
    display: block;
    margin-bottom: 20px;
    font-family: "Roboto", Arial, sans-serif, helvetica;
    font-size: 1em;
    color: #141938;
}

form input[type="text"]:focus;
form input[type="email"]:focus;
form input[type="password"]:focus;
form textarea:focus {
    border:2px solid #3f51b5;
    padding: 15px;
}

form textarea {
    max-width: 100%;
    min-width: 100%;
    max-height: 300px;
    min-height: 150px;
}

.alert {
    padding: 1em;
    color: #fff;
    border-radius: 2px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert.error {
    background: #f2DEDE;
    border:1px solid #a94442;
    color: #a94442;
}

.alert.succes {
    background: #4CAF50;
}
.alert.succes p{
    color: #fff;
}

.btn,
form input[type="submit"]{
    padding: 15px;
    background: #ed572a;
    color: #e1e9fa;
    font-size: 1em;
    font-family: "Roboto", Arial, sans-serif, helvetica;
    border-radius: 2px;
    border:none;
    float: right;
    cursor: pointer;
}

form input[type="submit"]:hover{
    background: #e64a19;
}

/*******--------Responsive---------******/
@media(min-width:1024px){
    form {
    width: 80%;
    margin: 50px;
    margin-left: auto;
    padding: 10px;
        
    background: #fff;
    overflow: hidden;
    box-shadow: 0 0 3px grey;
    border-top: 4px solid #536DFE;
}
}
/****************----------********************/