@charset "UTF-8";
/* CSS Document */

@font-face
{
 font-family: 'HelveticaNeueLTCom-Bd';
 src:url(fonts/HelveticaNeueLTCom-Bd.ttf);
 
 font-family: 'HelveticaNeueLTCom-BdCn';
 src:url(fonts/HelveticaNeueLTCom-BdCn.ttf);
 
 font-family: 'HelveticaNeueLTCom-Hv';
 src:url(fonts/HelveticaNeueLTCom-Hv.ttf);
 
 font-family: 'HelveticaNeueLTCom-Md';
 src:url(fonts/HelveticaNeueLTCom-Md.ttf);
 
 font-family: 'HelveticaNeueLTCom-Roman';
 src:url(fonts/HelveticaNeueLTCom-Roman.ttf);
 

}


body{
	margin: 0;
	font-family: HelveticaNeueLTCom-Roman;
}

*{
    margin: 0;
    padding: 0;
}
#contenido_isma1{
	
	width:100%; 
	height:210px; 
	background-color:#fff; 
	
}



#contenido_isma2{
	
	width:100%; 
	height:200px; 
	background-color:#844a73;
	
}

#contenido_isma2_publicidad{
	
	width:100%; 
	height:200px; 
	background-color:#00a8c3;
	
}

#contenido_isma2_marketing{
	
	width:100%; 
	height:200px; 
	background-color:#18af96;
	
}

#contenido_isma2_multimedia{
	
	width:100%; 
	height:200px; 
	background-color:#ec6608;
	
}

#contenido_isma2_eventos{
	
	width:100%; 
	height:200px; 
	background-color:#fab200;
	
}

#contenido_isma2_quienes{
	
	width:100%; 
	height:180px; 
	background-color:#fab200;
	
}

/* PARA MENU*/
header, nav{
    display: block;
}

/* Definimos un ancho 100% y una altura fija para nuestro menú */
header{
    background: #fff;
    height:100px;
    position: relative;
    width: 100%;
    z-index: 2;
}

/* El logo sera flotado a la izquierda */
#logo{
    background: url(images/veleta-webb-con-indicaciones_16.png) no-repeat 0 0;
    display: block;
    float: left;
    margin: 6px 10px 0;
    width: 177px;
    height: 100px;
    text-indent: -9999px;
	margin-top:-2px;
}

/* Nuestro nav con id #menu lo flotaremos a la derecha*/
#menu{float: right;}   

    /* Quitamos estilos por defecto de el tag UL */
    #menu ul{
        list-style: none;
        font-size: 14px;
    }
        
        /* Centramos y ponemos los textos en mayuscula */
        #menu li{
           display: block;
           float: left;
           text-transform: uppercase;
           text-align: center;
        }
            
            /* Damos estilo a nuestros enlaces */
            #menu li a{
                display: block;
                color: #fff;
                text-decoration: none;
                height: 60px;
                line-height: 60px;
                padding: 0 26px;
				background-color:# f39200;
				
            }
            #menu li a:hover{
               background: #575756;
                color: #f39200;
            }
			
			
    
    /* Estilos #nav-mobile y lo ocultamos */
    #nav-mobile{
        display: none;
        background: url(images/nav.png) no-repeat center center;
        float: right;
        width: 60px;
        height: 60px;
        position: absolute;
        right: 0;
		 top:0;
        opacity: 1;
		background-color: #f39200;
		

    }   
	
	 #nav-mail{
        display: none;
		background:url(images/nav_mail.png) no-repeat center center;
        float: right;
        width: 60px;
        height: 60px;
        position: absolute;
        right: 0;
		 top:0;
        opacity: 1;
		background-color: #f39200; margin-right:70px;

    } 
        /* Agregaremos esta clase a #nav-mobile, cuando el menu mobile haya sido desplegado */
        #nav-mobile.nav-active{
            opacity: 1;
        }
		
		 #nav-mail.nav-active{
            opacity: 1;
        }

/* Content */
#content{
    width: 80%;
    margin: 60px 10%;
    text-align: center;
    overflow: hidden;
}
    h2{
        font-size: 50px;
        font-weight: 600;
        text-transform: uppercase;
        color: #624c3f;
    }


/*
    MEDIA QUERY
*/

@media only screen and (max-width: 768px) {
        
    h2{font-size: 40px;}
    
    /* mostramos #nav-mobile */
    #nav-mobile{ display: block; }
	
	#nav-mail{ display: block; }

    /* Fijamos nuestro nav en 100% ancho y dejamos de flotarlo  */
    #menu{
        width: 100%;
        float: none;
        padding-top: 60px;
		z-index:1;
		position:absolute;
		margin-top:40px;
    }
        /* Convertimos nuestra lista de enlaces en un menú horizontal */
        #menu ul{
            -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.5);
            -moz-box-shadow: 0 1px 2px rgba(0,0,0,.5);
            box-shadow: 0 1px 2px rgba(0,0,0,.5);
            max-height: 0;
            overflow: hidden;
        }
            /* estilos para los LI del menu */
            #menu li{
                background: #f39200;
                border-bottom: 1px solid #fff;
                float: none;
            }

            /* Quitamos el borde del ultimo item del menú */
            #menu li:last-child{ border-bottom: 0;}
                #menu li a{
                    padding: 15px 0;
                    height: auto;
                    line-height: normal;
					background-color:# f39200;
                }
				
                #menu li a:hover{
					background: #575756;
               		 color: #f39200;
					}
				#menu li ul{
						display:none;
						
				
				
				}	
					
				#menu li:hover ul {
						display: block;
						 position: absolute;
						left: 0;
						right: 0;
						
				}
					
					

        /* Agregamos una animación al despligue del menú */
        #menu ul.open-menu{
            max-height: 400px;
            -webkit-transition: max-height .4s;
            -moz-transition: max-height .4s;
            -ms-transition: max-height .4s;
            -o-transition: max-height .4s;
            transition: max-height .4s;
        }
}



/* FIN MENU */



#li_lista{
	color:#FFFFFF;
	font-size:15px;
	line-height:15px;
	/*margin-left:40px;*/
	
}

#ul_lista{
	list-style-type:none;
	width:300px;
	margin-left:auto;
	margin-right:auto;
	
}

#li_lista:before {
    /*content: "• ";
    color: #f9b000; /* or whatever color you prefer */
}

#li_lista_eventos{
	color:#FFFFFF;
	font-size:15px;
	line-height:15px;
	/*margin-left:40px;*/
	
}

#ul_lista_eventos{
	list-style-type:none;
	width:300px;
	margin-left:auto;
	margin-right:auto;
	
}

#li_lista_eventos:before {
     /* content: "• ";
    color: #f39200; or whatever color you prefer */
}

#h3_titulos{
	color:#f9b000;
	font-size:22px;
	/*margin-left:40px;*/
	line-height:15px;
	padding-top:10px;
	font-style:italic;
	margin-left:30%;

	
}

#h3_titulos_opc{
	color:#FFF;
	font-size:18px;
	margin-left:40px;
	line-height:10px;
	padding-top:8px;
	font-style:italic
	
	
}



#p_texto{
	text-align:justify;
	font-size:15px;
	color:#575756;
	line-height:15px;
	margin-top:40px;
	width:80%;
	margin-left:auto;
	margin-right:auto;
	


}

#contenido_texto{
	width:310px;
	text-align:left;
	margin: 0 auto;
	
	
}
	
#div_etiqueta{
	background-repeat:no-repeat;
	width:20%; 
	height:200px; 
	background-color:transparent; 
	float:left;
	margin-top:-5px;
	

}

#img_branding{
	display:none;
	
}

#img_publicidad{
	display:none;
	
}

#img_marketing{
	display:none;
	
}

#img_multimedia{
	display:none;
	
}

#img_eventos{
	display:none;
	
}



#div_branding{
	background-color:#844a73;
	width:100%;
	height:100px;
	margin-left:auto;
	margin-right:auto;
	cursor:pointer;
	background-image:url(images/imagenes_nuevas/etiquetas/iconos/icono_branding.png);
	background-repeat:no-repeat;
	background-position:center;
	
}

#div_publicidad{
	background-color:#00a8c3;
		width:100%;
	height:100px;
	margin-left:auto;
	margin-right:auto;
	cursor:pointer;
	background-image:url(images/imagenes_nuevas/etiquetas/iconos/icono_publicidad.png);
	background-repeat:no-repeat;
	background-position:center;
	
}

#div_marketing{
	background-color:#18af96;
	width:100%;
	height:100px;
	margin-left:auto;
	margin-right:auto;
	cursor:pointer;
	background-image:url(images/imagenes_nuevas/etiquetas/iconos/icono_marketing.png);
	background-repeat:no-repeat;
	background-position:center;
	
}

#div_multimedia{
	background-color:#ec6608;
	width:100%;
	height:100px;
	margin-left:auto;
	margin-right:auto;
	cursor:pointer;
	background-image:url(images/imagenes_nuevas/etiquetas/iconos/icono_multimedia.png);
	background-repeat:no-repeat;
	background-position:center;
	
}

#div_eventos{
	background-color:#fab200;
	width:100%;
	height:100px;
	margin-left:auto;
	margin-right:auto;
	cursor:pointer;
	background-image:url(images/imagenes_nuevas/etiquetas/iconos/icono_eventos.png);
	background-repeat:no-repeat;
	background-position:center;
	
}


#contenedor_etiquetas{
	width:100%; 
	height:100px; 
	margin-left:auto; 
	margin-right:auto; 
	background-color:#999;
	
	
}


/*redes sociales */

#redes_icon{
	width:100%;
	
	
	
	
	
}

ul.contact {
				cursor: default;
				margin-top:700px;
				width:100%;
				position:absolute;	
}

ul.contact li {
			-moz-transition: top .15s ease-in-out;
			-webkit-transition: top .15s ease-in-out;
			-ms-transition: top .15s ease-in-out;
			transition: top .15s ease-in-out;
			position: relative;
			display: inline-block;
			margin: 0 0.25em 0 0.25em;
			top: 0;
		}

			ul.contact li a {
				-moz-transition: background-color .2s ease-in-out;
				-webkit-transition: background-color .2s ease-in-out;
				-ms-transition: background-color .2s ease-in-out;
				transition: background-color .2s ease-in-out;
				display: block;
				position: relative;
				width: 38px;
				height: 38px;
				border-radius: 6px;
				outline: 0;
				/*background: #f39200;*/
				background:#999;
				text-align: center;
			}

				ul.contact li a:before {
					color: #fff;
					font-size: 28px;
					line-height: 40px;
				}

			ul.contact li:hover {
				top: -5px;
			}

				ul.contact li:hover a.fa-facebook {
					background-color: #3C5A98;
				}

				ul.contact li:hover a.fa-twitter {
					background-color: #2DAAE4;
				}

				ul.contact li:hover a.fa-dribbble {
					background-color: #C4376B;
				}

				ul.contact li:hover a.fa-linkedin {
					background-color: #006599;
				}

				ul.contact li:hover a.fa-instagram {
					background-color: #2E5E86;
				}

				ul.contact li:hover a.fa-google-plus {
					background-color: #DA2713;
				}
				
				ul.contact li:hover a.fa-youtube {
					background-color: #b31217;
				}

			ul.contact li:active {
				top: 0;
			}	
			

/*ul contact para el index*/

ul.contact_index {
				cursor: default;
				margin-top:1800px;
				width:100%;
				position:absolute;	
}

ul.contact_index li {
			-moz-transition: top .15s ease-in-out;
			-webkit-transition: top .15s ease-in-out;
			-ms-transition: top .15s ease-in-out;
			transition: top .15s ease-in-out;
			position: relative;
			display: inline-block;
			margin: 0 0.25em 0 0.25em;
			top: 0;
		}

			ul.contact_index li a {
				-moz-transition: background-color .2s ease-in-out;
				-webkit-transition: background-color .2s ease-in-out;
				-ms-transition: background-color .2s ease-in-out;
				transition: background-color .2s ease-in-out;
				display: block;
				position: relative;
				width: 38px;
				height: 38px;
				border-radius: 6px;
				outline: 0;
				/*background: #f39200;*/
				background:#999;
				text-align: center;
			}

				ul.contact_index li a:before {
					color: #fff;
					font-size: 28px;
					line-height: 40px;
				}

			ul.contact_index li:hover {
				top: -5px;
			}

				ul.contact_index li:hover a.fa-facebook {
					background-color: #3C5A98;
				}

				ul.contact_index li:hover a.fa-twitter {
					background-color: #2DAAE4;
				}

				ul.contact_index li:hover a.fa-dribbble {
					background-color: #C4376B;
				}

				ul.contact_index li:hover a.fa-linkedin {
					background-color: #006599;
				}

				ul.contact_index li:hover a.fa-instagram {
					background-color: #2E5E86;
				}

				ul.contact_index li:hover a.fa-google-plus {
					background-color: #DA2713;
				}
				
				ul.contact_index li:hover a.fa-youtube {
					background-color: #b31217;
				}

			ul.contact_index li:active {
				top: 0;
			}				
	
/* fin redes sociales*/	



/* copntact especial*/		
		ul.contact_especial {
				cursor: default;
				margin-top:760px;
				width:100%;
				position:absolute;
				
}

ul.contact_especial li {
			-moz-transition: top .15s ease-in-out;
			-webkit-transition: top .15s ease-in-out;
			-ms-transition: top .15s ease-in-out;
			transition: top .15s ease-in-out;
			position: relative;
			display: inline-block;
			margin: 0 0.25em 0 0.25em;
			top: 0;
		}

			ul.contact_especial li a {
				-moz-transition: background-color .2s ease-in-out;
				-webkit-transition: background-color .2s ease-in-out;
				-ms-transition: background-color .2s ease-in-out;
				transition: background-color .2s ease-in-out;
				display: block;
				position: relative;
				width: 38px;
				height: 38px;
				border-radius: 6px;
				outline: 0;
				/*background: #f39200;*/
				background:#999;
				text-align: center;
			}

				ul.contact_especial li a:before {
					color: #fff;
					font-size: 28px;
					line-height: 40px;
				}

			ul.contact_especial li:hover {
				top: -5px;
			}

				ul.contact_especial li:hover a.fa-facebook {
					background-color: #3C5A98;
				}

				ul.contact_especial li:hover a.fa-twitter {
					background-color: #2DAAE4;
				}

				ul.contact_especial li:hover a.fa-dribbble {
					background-color: #C4376B;
				}

				ul.contact_especial li:hover a.fa-linkedin {
					background-color: #006599;
				}

				ul.contact_especial li:hover a.fa-instagram {
					background-color: #2E5E86;
				}

				ul.contact_especial li:hover a.fa-google-plus {
					background-color: #DA2713;
				}
				
				ul.contact_especial li:hover a.fa-youtube {
					background-color: #b31217;
				}

			ul.contact_especial li:active {
				top: 0;
			}		
			


/* copntact especial_2*/		
		ul.contact_especial_2 {
				cursor: default;
				margin-top:900px;
				width:100%;
				position:absolute;
				
}

ul.contact_especial_2 li {
			-moz-transition: top .15s ease-in-out;
			-webkit-transition: top .15s ease-in-out;
			-ms-transition: top .15s ease-in-out;
			transition: top .15s ease-in-out;
			position: relative;
			display: inline-block;
			margin: 0 0.25em 0 0.25em;
			top: 0;
		}

			ul.contact_especial_2 li a {
				-moz-transition: background-color .2s ease-in-out;
				-webkit-transition: background-color .2s ease-in-out;
				-ms-transition: background-color .2s ease-in-out;
				transition: background-color .2s ease-in-out;
				display: block;
				position: relative;
				width: 38px;
				height: 38px;
				border-radius: 6px;
				outline: 0;
				/*background: #f39200;*/
				background:#999;
				text-align: center;
			}

				ul.contact_especial_2 li a:before {
					color: #fff;
					font-size: 28px;
					line-height: 40px;
				}

			ul.contact_especial_2 li:hover {
				top: -5px;
			}

				ul.contact_especial_2 li:hover a.fa-facebook {
					background-color: #3C5A98;
				}

				ul.contact_especial_2 li:hover a.fa-twitter {
					background-color: #2DAAE4;
				}

				ul.contact_especial_2 li:hover a.fa-dribbble {
					background-color: #C4376B;
				}

				ul.contact_especial_2 li:hover a.fa-linkedin {
					background-color: #006599;
				}

				ul.contact_especial_2 li:hover a.fa-instagram {
					background-color: #2E5E86;
				}

				ul.contact_especial_2 li:hover a.fa-google-plus {
					background-color: #DA2713;
				}
				
				ul.contact_especial_2 li:hover a.fa-youtube {
					background-color: #b31217;
				}

			ul.contact_especial_2 li:active {
				top: 0;
			}		


#hs_button{
	width:100%; 
	height:40px; 
	background-color:#CCC; 
	color:#FFF; 
	text-align:center; 
	cursor:pointer;
	margin-top:120px;
		font-weight:bold;
	font-size:x-large;
	padding-top:5px;
	
}

#target{
	width:99%;
	display:none;
	

	
}

#contenedor_contenido{
	width:100%; 
	height:200px; 
	background-color:transparent; 
	margin-left:auto; 
	margin-right:auto; 
	margin-top:100px
	
	
	
}

#img_unaveletaes{
	width:90%;
	height:100%;
	
}

/* 27-09-15*/
#contenido_isma0{
	width:0px;
	height:0px;
	display:none;
}

#contact_footer{
	width:100%; 
	height:150px;
	position:absolute;
	margin-top:320px;

	  
	   /* Safari 4-5, Chrome 1-9 */
	  /* Can't specify a percentage size? Laaaaaame. */
	  background: -webkit-gradient(radial, center center, 0, center center, 460, from(#fff), to(#ccc));
	
	  /* Safari 5.1+, Chrome 10+ */
	  background: -webkit-radial-gradient(circle, #fff, #ccc);
	
	  /* Firefox 3.6+ */
	  background: -moz-radial-gradient(circle, #fff, #ccc);
	
	  /* IE 10 */
	  background: -ms-radial-gradient(circle, #fff, #ccc);

	  

}


#contact_footer_index{
	width:100%; 
	height:150px;
	position:absolute;
	margin-top:300px;

	  
	   /* Safari 4-5, Chrome 1-9 */
	  /* Can't specify a percentage size? Laaaaaame. */
	  background: -webkit-gradient(radial, center center, 0, center center, 460, from(#fff), to(#ccc));
	
	  /* Safari 5.1+, Chrome 10+ */
	  background: -webkit-radial-gradient(circle, #fff, #ccc);
	
	  /* Firefox 3.6+ */
	  background: -moz-radial-gradient(circle, #fff, #ccc);
	
	  /* IE 10 */
	  background: -ms-radial-gradient(circle, #fff, #ccc);

	  

}



#mfooter{
	width:100%; 
	height:30px; 
	background-color:#ec6608;
	margin-top:470px;
	
	
	
}

#mfooter a{
	
	color:#FFF; 
	font-weight:bold; 
	font-style:italic;
	text-decoration:none;
	
}


#mfooter_index{
	width:100%; 
	height:30px; 
	background-color:#ec6608;
	margin-top:483px;
	
	
	
}

#mfooter_index a{
	
	color:#FFF; 
	font-weight:bold; 
	font-style:italic;
	text-decoration:none;
	
}
#clear_foot_iz{
	
	width:0px; height:0px ; display:none;
}

#clear_foot_der{
	
	width:0px; height:opx ;  display:none;
}

#clear_foot_cent{
	width:100%; height:100% ; float:left;	
	
}


#cont_foot_iz{
	width:90%; height:30%; 
}

#cont_foot_cent{
	width:90%; height:30%; 
}

#cont_foot_der{
	width:90%; height:30%; 
}









#icon_footer_1{
float:left; margin-top:5px; margin-left:50px	
	
}

#p_footer_1{
float:left; 
color:#575756; 
text-decoration:none; 
font-size:12px; 
line-height:15px ; 
width:60%;
 margin-top:10px; 
 margin-left:-7px; 
 height:30px;

}


#icon_footer_2{
	
float:left; margin-top:0px; margin-left:50px	
}



#p_footer_2{
	
float:left; color:#575756; text-decoration:none; font-size:12px; line-height:15px ; width:60%; margin-top:13px; margin-left:0px 	
}


#icon_footer_3{
float:left; margin-top:0px; margin-left:50px	
	
}

#p_footer_3{
	
float:left; color:#575756; text-decoration:none; font-size:15px; font-weight:bold; line-height:15px ; width:60%; margin-top:15px; margin-left:10px ; margin-left:0px
}



  #nuevo_boton{
	width:300px; 
	height:40px; 
	background-color:#CCC;
	 margin-left:auto; 
	 margin-right:auto;
	cursor:pointer;
	font-weight:bold;
		color: #fab200;
	background-color:#FFFFFF;
	border:solid thin;
	border-color:#fab200;
	font-size:28px;
	line-height:40px;
	
	margin-top:-30px;

	
	/*para Firefox*/
-moz-border-radius: 5px 5px 5px 5px;
/*para Safari y Chrome*/
-webkit-border-radius: 5px 5px 5px 5px;
/* para Opera */
border-radius: 5px 5px 5px 5px;
	
	
}

#nuevo_boton:hover{
	
	text-align:center;
	color: #fff;
	background-color:#ccc;
	border:solid thin;
	border-color:#ccc;
	
	
	
	
	
}

#clientes{
	width:100%; height:300px;  margin-left:auto; margin-right:auto; margin-top:50px	
	
}

#logo_clientes{
	
width:100%; height:300px; 
}


#icon_clientes{
	width:100%; 
	height:100px;
	float:left; background-image:url(images/index/website-veleta_03.png); 
	background-repeat:no-repeat;
	 background-position:center; 
	 margin-top:50px
	
}


#cli_logo{
width:142px; height:102px; background-color:#FFF;  margin:10px; float:left
	
}
	
	
#apuntando_exito{
	width:0px;
	height:0px;
	display:none
	
}


#quienes_somos{
 width:100%; height:350px	
	
}



#icon_quienes{
margin-left:100px; margin-top:50px	;
margin-left:auto;
margin-right:auto;
	
}

#texto_quienes{
	
	margin-top:20px; color:#575756; font-size:20px; width:70%; text-align:justify
	
}


#cont_sec2{
	width:100%; height:300px; margin-top:100px
	
}

#cont_sec3{
width:100%; height:400px; margin-top:100px	
	
}


#p_texto_especial{
	text-align:justify;
	font-size:15px;
	color:#fff;
	line-height:15px;
	margin-top:10px;
	width:80%;
	margin-left:auto;
	margin-right:auto;
	padding-top:20px;



}



.txt_contactenos{
	width: 200px;
	height: 20px;
	font-size:10px;
	background-color:#CCCCCC;
	border:solid thin;
	border-color:#666666;
	/*para Firefox*/
-moz-border-radius: 0px 5px 5px 0px;
/*para Safari y Chrome*/
-webkit-border-radius: 0px 5px 5px 0px;
/* para Opera */
border-radius: 0px 5px 5px 0px;
resize:none;

	line-height:11px;
	
}

#btn_enviar{
	background-image:url(images/contactenos/contatenos_13.png);
	width:62px; 
	height:30px;
background-repeat:no-repeat;
	border:0;
	background-color:transparent;
	cursor:pointer;
	
	
}




#carrusel_clientes{
	
	width:90%; 
	height:90px;
	margin-top:320px;
	margin-bottom:-320px;
	
}



#div_nueva_wrapper{
	margin-top:-120px;
	
}


#contenido_cont{
	width:100%; height:120px; background-color:#FFFFFF; margin-left:auto; margin-right:auto; 
	
	
}


.a_contactenos{
	color:#575756;
	font-family: HelveticaNeueLTCom-Roman;
	text-decoration:none;
	cursor:pointer;
	
	
	
}