@import url('../font-awesome/css/font-awesome.css');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:300,400,700');


/*Estilos Generales */

*{
	margin: 0;
	padding: 0;
	box-sizing:border-box;
	font-family: Roboto;
	font-size: 14px;
}

ul{
	list-style: none;
}

a{
	text-decoration: none;
	color: #000;
	cursor:pointer;
}

h1{
	font-size: 38px;
}

h2{
	font-size: 33px;    
	font-family: Roboto Slab;
    text-transform: uppercase;
    font-weight: 300;
}

h3{
	font-size: 25px
}

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

.centro{
	margin: auto;
	width: 90%;
	max-width: 1000px
}

.centro2{
	margin: auto;
	width: 90%;
	max-width: 1000px
}


/*---------- HEADER -----------------*/

header{
	background: #fff;
	width: 100%;
}

header .centro {
	display: flex;
	justify-content:space-between;
	padding:25px 0px;
	align-items:center;
	width:100%;
	flex-wrap:wrap;
}

header .logotipo{
	width: 30%;
}

header .logotipo img{
	width: 100%
}

header .logotipo2{
	width: 30%;
}

header .logotipo2 img{
	width: 100%
}

header .hora-lugar{
    width:20%;
    display:flex;
}

header .hora-lugar .hl-item{
    display:flex;
    align-items:center;
    width:100%;
}


header .hora-lugar .hl-item i{
    color:#FF0000;
    font-size:26px;
    margin-right:7px;
}

header .hora-lugar .hl-item p{
    font-weight:400;
    font-size:14px;
    color:#333;
}

header .redes-sociales {
    display: flex;
    justify-content: center;
    width: 13%;
    padding-right: 10px;
}

header .redes-sociales a{
    margin-right: 10px;
}

header .redes-sociales a:last-child{
	margin-right: 0px;
}

header .redes-sociales a i {
    display: block;
    border: 1px solid rgba(0,0,0,.1);
    padding: 10px;
    color: #666;
    font-size: 18px;
    border-radius:5px;
}

header .redes-sociales a i.fa-facebook:hover{
    background:#4867AA;
    color:#fff;
}

header .redes-sociales a i.fa-twitter:hover{
    background:#1DA1F2;color:#fff;
}

header .redes-sociales a i.fa-linkedin:hover{
    background:#007AB5;color:#fff;
}

/*----------FIN HEADER -----------------*/

/*----------MENU -----------------*/

nav.menu-fijo{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

#menu-responsive{
	display: none;
}

nav{
	width: 100%;
	display: flex;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#017be8+0,0072ba+100 */
background: #017be8; /* Old browsers 
background: -moz-linear-gradient(top, #017be8 0%, #0072ba 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #017be8 0%,#0072ba 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #017be8 0%,#0072ba 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#017be8', endColorstr='#0072ba',GradientType=0 ); /* IE6-9 */
z-index: 9999;
position: relative;
top: 14px;
box-shadow: 4px 4px 6px rgba(0,0,0,.3);
}

nav .cerrar-menu{
	display: none;
}


/*primer nivel - menu */

nav .centro2 .menu{
	display: flex;
	width: 100%;
	position: relative;
}



nav .centro2 .menu > li{
	position: relative;
}

nav .centro2 .menu > li > a{
	display: block;
	/*padding:20px 23px;*/
	padding: 15px;
	color: #FFF;
	font-size: 13.5px;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom:0px solid #fff;
	text-align: center;
	font-family: Roboto Slab;
	position: relative;
	cursor:pointer;
}

nav .centro2 .menu > li > a > i{
	margin-right: 5px;
}

nav .centro2 .menu > li > a > .flechita{
	margin-left: 5px;
}

/*segundo nivel - menu */

nav .centro2 .submenu > h3, 
nav .centro2 .submenu > p,
nav .centro2 .sub-submenu > h3,
nav .centro2 .sub-submenu > p{
	display: none;
}


nav .centro2 .menu > li:hover  .submenu, 
nav .centro2 .submenu > li:hover .sub-submenu,
nav .centro2 .sub-submenu > li:hover  .sub-submenu{
	opacity: 1;
	transform:translateY(0);
	visibility: visible;
}


nav .centro2 .submenu, nav .centro2 .sub-submenu{
	position: absolute;
	z-index: 99999;
	background: #f0f0f0;
	width: 270px;
	transition: all .3s;
	border-top: 8px solid #ff0000; 
	box-shadow: 2px 2px 2px rgba(0,0,0,.2), 0px 0px 1px 1px rgba(0,0,0,.3);
	visibility: hidden;
	opacity: 0;
	transition:all .3s;
	transform:translateY(2px);
}

nav  .centro2 .sub-submenu{
	border-top: 0px solid transparent;
}



nav .centro2 .submenu > i{
	position: absolute;
	top: -27px;
	right:50%;
	color:#ff0000;
	font-size: 30px;
}


nav .centro2 .submenu > li, nav .centro2 .sub-submenu > li{
	position: relative;
}

nav .centro2 .submenu > li > a, nav .centro2 .sub-submenu > li > a {
	padding:14px;
	color: #666;
	display: block;
	font-family: Roboto Slab;
	font-weight: 700;
	border-bottom: 1px solid rgba(0,0,0,.1);
	font-size: 13.5px;
	position: relative;
	transition:all .3s;
}

nav .centro2 .submenu > li > a:hover, 
nav .centro2 .sub-submenu > li > a:hover{
	color:#ff0000;
}

nav .centro2 .submenu > li > a > i {
    position: absolute;
    right: 12px;
    font-size: 18px;
}

/*tercer-nivel . menu - a mas*/

nav .centro2 .sub-submenu > li > a{
	padding: 10px 14px;
}

nav .centro2 .sub-submenu{
	right:-103%;
	top: 0;
}


.destacado{
	padding: 30px 0;
	width: 100%;
	background: #ff0000;
	text-align: center;
}

.destacado h2{
	color: #fff;
	font-size:27px;
	text-align: center; 
	letter-spacing: 1px;
	font-weight:700;
	text-transform: none;
}

/*----------FIN MENU -----------------*/


/*-------QUIENES SOMOS-------*/

#quienessomos{
	background-size: cover;
	width: 100%;
	position: relative;
	display: flex;
	padding: 60px 0;
}

#quienessomos::before{
	position: relative;
	z-index: 1;
	content: "";
	background:rgba(0,0,0,.8);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#quienessomos .centro{
	z-index: 10;
	display: flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	padding: 60px 0;
}

#quienessomos .descp-quienessomos{
	width: 60%;
	
	z-index: 4;
}

#quienessomos .centro h2{
	color: #Fff;
	padding-bottom: 7px;
	padding-left: 3px;
	border-bottom: 1px dotted rgba(255,255,255, .5);
	width: 100%;
	margin-bottom: 10px;
}

#quienessomos .centro h2 > span{
    font-family:Roboto Slab;
    font-weight:700;
    font-size:33px;
    position:relative;
}

h2 > span {
    position:relative;
    padding-bottom:10px;
}

span >  hr {
    border: none;
    width: 100%;
    height: 5px;
    background: #ff0000;
    position: absolute;
    bottom: 0;
    left: 0;
}

span > .fa-caret-down {
    position: absolute;
    bottom: -20px;
    display: block;
    left: 68%;
    color:#ff0000;
}




#quienessomos .descp-quienessomos h3{
	color: #Fff;
	letter-spacing: 2px;
	margin: 20px 0;
	font-weight: 400;
	padding-left: 3px
}

#quienessomos .descp-quienessomos p{
	line-height: 23px;
	padding: 0px;
	color: #Fff;
	text-align: justify;
}

#quienessomos .icono-nos{
	width: 25%;
}

#quienessomos .icono-nos img{
	width: 100%;
	height: auto;
}


/*-------FIN QUIENES SOMOS-------*/

/*-------CARACTERISTICAS-------*/

#caracteristicas-empresa{
    background-size: cover;
	width: 100%;
	position: relative;
	display: flex;
	padding: 60px 0;;
	background:#f4f4f4;
}

#caracteristicas-empresa .centro h2{
	color: #333;
	padding-bottom: 7px;
	padding-left: 3px;
	border-bottom: 1px dotted rgba(0,0,0, .5);
	width: 100%;
	margin-bottom: 10px;
}

#caracteristicas-empresa .centro h2 > span{
    font-family:Roboto Slab;
    font-weight:700;
    font-size:33px;
}


#caracteristicas-empresa .centro .caracteristicas-content{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 30px 0 0;
}

#caracteristicas-empresa .centro .caracteristicas-content .caracteristicas-item{
    width:32%;
    cursor:pointer;
}

#caracteristicas-empresa .centro .caracteristicas-content .caracteristicas-item:hover .imagen-item-caract img{
    transform:scale(1.15) rotate(-3deg);
}

#caracteristicas-empresa .centro .caracteristicas-content .caracteristicas-item .imagen-item-caract{
    width:100%;
    box-shadow: 0 0 2px 2px rgba(0,0,0,.3);
    overflow:hidden;
}

#caracteristicas-empresa .centro .caracteristicas-content .caracteristicas-item .imagen-item-caract img{
    width:100%;
    display:block;
    transform:scale(1) rotate(0deg);
    transition:all .4s;
}

#caracteristicas-empresa .centro .caracteristicas-content .caracteristicas-item  h3{
    margin: 20px 0;
    text-align: center;
    color: #333;
    font-size: 20px;
    font-family: Roboto Slab;
    font-weight: 400;
}

/*-------FIN CARACTERISTICAS-------*/

/*-------DETALLES TECNICOS-------*/

#detalles-tecnicos{
    background-size: cover;
	width: 100%;
	position: relative;
	display: flex;
	padding: 60px 0;
}

#detalles-tecnicos .centro h2{
    color: #333;
	padding-bottom: 7px;
	padding-left: 3px;
	border-bottom: 1px dotted rgba(0,0,0, .5);
	width: 100%;
	margin-bottom: 10px;
}

#detalles-tecnicos .centro h2 > span{
    font-family:Roboto Slab;
    font-weight:700;
    font-size:33px;
}

#detalles-tecnicos .centro .detalles-content{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 30px 0 0;
    flex-wrap:wrap;
}

#detalles-tecnicos .centro .detalles-content .detalles-item{
    width:45%;
    cursor:pointer;
    margin-bottom:20px;
}





#detalles-tecnicos .centro .detalles-content .detalles-item .imagen-item-detalles{
    width:100%;
    box-shadow: 0 0 3px 3px rgba(0,0,0,.5);
    overflow:hidden;
    position:relative;
}

#detalles-tecnicos .centro .detalles-content .detalles-item .imagen-item-detalles .ver-mas{
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    color: #fff;
    height: 100%;
    justify-content: center;
    align-items: center;
	  transition:background .3s;
	
}

#detalles-tecnicos .centro .detalles-content .detalles-item .imagen-item-detalles:hover .ver-mas > i {
	transform: translatey(0);
}



#detalles-tecnicos .centro .detalles-content .detalles-item .imagen-item-detalles .ver-mas > i{
     font-size: 25px;
    display: block;
    padding: 10px;
    background: rgba(0,0,0,0.8);
    border-radius: 3px;
	  transition:all .3s;
	  transform: translatey(-250px);
}



#detalles-tecnicos .centro .detalles-content .detalles-item .imagen-item-detalles img{
    width:100%;
    display:block;
    transition:all .4s;
}

#detalles-tecnicos .centro .detalles-content .detalles-item .mas-responsive {
    background: red;
    display: none;
    max-width: 100px;
    margin: auto;
    text-align: center;
    padding: 10px 5px;
    color: #fff;
    border-radius: 3px;
    font-weight: 400;
    width: 100%;
    margin-bottom:15px;
}


#detalles-tecnicos .centro .detalles-content .detalles-item  h3{
    margin: 20px 0;
    text-align: center;
    color: #333;
    font-size: 20px;
    font-family: Roboto Slab;
    font-weight: 700;
}

/*-------FIN- DETALLES TECNICOS-------*/


/*-------CITA-------*/

#cita {
    width: 100%;
    position: relative;
    z-index: 0;
    display: flex;
    background-repeat:no-repeat;
}

#cita::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background: rgba(0,0,0,.78);
}

#cita .centro {
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    color: #fff;
    padding: 90px 0;
}

#cita .centro p {
    line-height: 46px;
    font-size: 26px;
    font-weight: 300;
    
}

#cita .centro p, #cita .centro h5 {
    z-index: 2;
    font-family: Roboto Slab;
}

#cita .centro p i {
    margin: 0 12px;
    font-size: 20px;
}

#cita .centro h5 {
    margin-top: 20px;
    font-size: 24px;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

/*-------FIN CITA-------*/


/*-------GALERIA-------*/

#galeria{width: 100%;
	display: flex;
	background-repeat:repeat; 
	background-size: 25%;
	background:url('../img/text-gal.jpg'); 
}

#galeria .centro{
	z-index: 10;
	padding: 60px 0;
}



#galeria .centro h2{
	color: #333;
	padding-bottom: 7px;
	padding-left: 3px;
	border-bottom: 1px dotted rgba(0,0,0,.5);
	width: 100%;
	margin-bottom: 10px
}

#galeria .centro h2 > span{
    font-family:Roboto Slab;
    font-weight:700;
    font-size:33px;
}

#galeria .centro .galeria-section{
	width: 100%;
	margin: 30px 0;
	position: relative;
}

#galeria .centro .galeria-section .tabs-gallery{
	width:100%;
    position:relative;
    margin-bottom:30px;
    display: flex;
    flex-wrap:wrap;
    justify-content:center
}


#galeria .centro .galeria-section .tabs-gallery li{
	color:#fff;
    background:#007BE8;
    padding:20px 12px;
    border-radius:7px;
    font-weight:bold;
    box-shadow: 2px 2px 2px rgba(0,0,0,.1);
    display: block;
    margin-right: 30px;
    border:1px solid rgba(0,0,0,.1);
    cursor: pointer;text-align: center;
}

#galeria .centro .galeria-section .tabs-gallery li:hover{
	color:#007BE8;
background:#fff;transition:all .5s;
}

#galeria .centro .galeria-section #container-gallery{
	margin-bottom:30px;
    position:relative;
    border-bottom-left-radius:10px;
    border-bottom-right-radius:10px;
    z-index:1;
    width:auto;
}

#galeria .centro .galeria-section #container-gallery .container-gallery-item{
	position:absolute;
    display: none;
    width:100%;
    top: 0;
    left: 0;
}


#galeria .centro .galeria-section #container-gallery .container-gallery-item .galeria-en-si{
	display: flex;
	width: 100%;
	flex-wrap:wrap;
	justify-content:space-between;
	overflow: hidden;height: auto;

}

#galeria .centro .galeria-section #container-gallery .container-gallery-item .galeria-en-si .galeria-item{	
	width: 31%;
	height: 200px;
	overflow: hidden;
	margin-bottom: 27px;
	cursor: pointer;
	animation: scalando 500ms ease-out forwards;
	box-shadow: 4px 4px 3px rgba(0,0,0,.5);transition:all .4s;
}


#galeria .centro .galeria-section #container-gallery .container-gallery-item .galeria-en-si .galeria-item::before{
	content: "";
	background: rgba(255,0,0,.4);
	z-index: 2;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition:all .4s;
	opacity: 0;transform:scale(0);
}




#galeria .centro .galeria-section #container-gallery .container-gallery-item .galeria-en-si .galeria-item img{
	width: 100%;
	border:1px solid rgba(0,0,0,.2);
	transform:scale(1) rotate(0deg);
	transition:all .8s;
}

#galeria .centro .galeria-section #container-gallery .container-gallery-item .galeria-en-si .galeria-item:hover img{
	transform:scale(1.2) rotate(-6deg);
}

#galeria .centro .galeria-section #container-gallery .container-gallery-item .galeria-en-si .galeria-item span{
    position: absolute;
    top: -100%;
    left: 45%;
    transition:all .5s;
    opacity: 0;
    z-index: 10;
    background: rgba(0,0,0,.5);
    padding: 8px;
    border-radius: 3px
}

#galeria .centro .galeria-section #container-gallery .container-gallery-item .galeria-en-si .galeria-item:hover span{
	top: 45%;
	opacity: 1;
	
}

#galeria .centro .galeria-section #container-gallery .container-gallery-item .galeria-en-si .galeria-item:hover img{
	transition:all .4s;
}

#galeria .centro .galeria-section #container-gallery .container-gallery-item .galeria-en-si .galeria-item:hover:before{
	opacity: 1;transform:scale(1);
}


#galeria .centro .galeria-section #container-gallery .container-gallery-item .galeria-en-si .galeria-item span i{
	color: #fff;
	font-size: 22px
}


#galeria .centro .galeria-section .tabs-gallery  li.activo{color:#007BE8;
	position:relative;z-index:10;background:#fff}


#galeria .centro .galeria-section #container-gallery .visible{display: block;
	position: static;top: 0;left: 0;
}

@keyframes scalando {

	0%{
		opacity: 0;
		 transform: rotate(-300deg) scale(0.2) ;
	}

	

	100%{
		opacity: 1;
		 transform:  rotate(-360deg) scale(1);
	}

}

/*-------FIN GALERIA-------*/


/*----------CLIENTES---------*/

#clientes {
	width: 100%;
}

#clientes .centro{
	z-index: 10;
	display: flex;
	justify-content:space-between;
	align-items:center;
	flex-wrap:wrap;
	padding: 100px 0;
}

#clientes .centro h2 {
	color: #333;
	padding-bottom: 7px;
	padding-left: 3px;
	border-bottom: 1px dotted rgba(0,0,0, .5);
	width: 100%;
	margin-bottom: 30px;
	font-size: 33px;    
	font-family: Roboto Slab;
    font-weight: 300;
}

#clientes .centro h2 > span{
    font-weight:700;
    font-size: 33px;    
	font-family: Roboto Slab;
}

#clientes .centro .clientes-logos{
	padding: 0 10px
}

#clientes .centro .clientes-logos .cliente-item{
	padding: 10px
}

#clientes .centro .clientes-logos .cliente-item img{	
	width: 100%;
	filter:grayscale(100%);
	opacity: .6;cursor: pointer;
}

#clientes .centro .clientes-logos .cliente-item img:hover{
	filter:grayscale(0%);
	transition:all .3s;
	opacity: 1
}

/*----------FIN CLIENTES---------*/

/*---------MAPA--------*/

.mapa {
    width: 100%;
}

.mapa .mapa-toogle-boton{
    background: #0b0b0b;
}



.mapa h2 {
    color: #fff;
    padding: 20px;
    position: relative;
    cursor: pointer;
    font-weight:700;
}

.mapa .centro h2 i {
    position: absolute;
    right: 0;
    border:1px solid rgba(255,255,255,.5);
    padding:8px;
    transition:all .3s;
}

.mapa .centro h2 i:hover{
    background:#fff;
    color:#000;
}

i.icon-map-volteado{
    transform:rotate(-180deg);
}

.mapa-toogle{
    position:static;
    display:none;
}

/*------FIN MAPA ----*/

/*------FOOTER ----*/
footer{
	width: 100%;
	background:url('../img/footer.jpg');
	background-size:cover; 
	background-attachment: fixed;
	position: relative;
	z-index:0;
	padding:15px 0;
}

footer:after{
	content: "";
	background:rgba(0,0,0,.5);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index:2;
	display: block;
}



footer .centro-footer{
	padding: 20px 0;
	max-width: 1050px;
	width: 95%;
	margin: auto;
	display: flex;
	justify-content:space-between;
	z-index: 10;
	color: #fff;
}


footer .centro-footer .foo-item.logos .logo-footer {
    width: 100%;
    margin-bottom: 30px;
}

footer .centro-footer .logos-cert {
    width: 64%;
    display: flex;
    justify-content: space-between;
    margin: 0 0 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    display:none;
}



footer .centro-footer .logos-cert .logo-cert-img {
    width: 28%;
}



footer .centro-footer .foo-item{
	z-index: 10;
}

footer .centro-footer .datos-empresa{
    width:40%;
}

footer .centro-footer .formulario{
	width: 50%
}


footer .centro-footer .datos-empresa .logo-footer {
    width: 65%;
    margin: 0px 0px 25px;
    display:none;
}





footer .centro-footer .datos-empresa .logo-footer img{
	width: 100%;
	filter:grayscale(100%);
}

footer .centro-footer .redes-sociales .logos-cert{
    display: flex;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

footer .centro-footer .redes-sociales .logos-cert .logo-cert-img{
    width:30%;
}


footer .centro-footer .redes-sociales .logos-cert .logo-cert-img img{
    width:100%;
    display:block;
    padding:15px;
}

footer .menu-footer{
    width:70%;
    margin:20px auto 0;
    color: #fff;
    list-style:square;

}

footer .menu-footer li a {
    color: #FFF;
    display: block;
    text-align: left;
    padding: 5px;
}


footer .centro-footer .datos-empresa .redes-soc{
	display: flex;
    flex-wrap: wrap;
    width: 50%;
    justify-content: center;
    margin: 40px auto;

}

footer .centro-footer .datos-empresa .redes-soc .rs{
	    display: flex;
    justify-content: center;
     width: 28%;

    text-align: center;
}

footer .centro-footer .datos-empresa .redes-soc .rs i{
	width: 35px;
    height: 35px;
    text-align: center;
    display: flex;
    align-items: center;
    padding: 10px;
    display: block;
    border-radius: 5px
}

footer .centro-footer  .datos-empresa .redes-soc .rs .fa-facebook{
	border:1px solid #3B5998;
	color: #3B5998;
}

footer .centro-footer  .datos-empresa .redes-soc .rs .fa-facebook:hover{
	color: #fff;
	background: #3B5998
}

footer .centro-footer  .datos-empresa .redes-soc .rs .fa-youtube-play{
	border:1px solid #E62117;
	color: #e62117
}

footer .centro-footer  .datos-empresa .redes-soc .rs .fa-youtube-play:hover{
	color: #fff;
	background: #e62117
}

footer .centro-footer  .datos-empresa .redes-soc .rs .fa-google-plus{
	border:1px solid tomato;
	color: tomato
}

footer .centro-footer  .datos-empresa .redes-soc .rs .fa-google-plus:hover{
	color: #fff;
	background: tomato
}


footer .centro-footer .datos-empresa{
	padding: 0 5px;
}

footer .centro-footer .datos-empresa b{
	color: #fff
}

footer .centro-footer .datos-empresa h3{
	font-size: 20px;
	font-weight: 300;
	padding-bottom: 8px;
	border-bottom:1px dotted rgba(255,255,255,.7);
	margin-bottom: 45px;
	width:100%;color: #fff;
	font-family: Roboto Slab
	
}

footer .centro-footer .datos-empresa h3 > span {
    font-size: 20px;
	font-weight: 700;
	margin-right:10px;
	font-family: Roboto Slab
}


footer .centro-footer .datos-empresa p {
    line-height: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    font-size: 15px;
    color: #fff;
    display: flex;
    align-items: center;
}


footer .centro-footer .datos-empresa p i {
    margin-right: 10px;
    font-size: 20px;
    color: #000;
    background: #fff;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:2px;
}




footer .centro-footer .datos-empresa p a{
	color:#fff;
}






footer .centro-footer .formulario h3{
	font-size: 20px;
	font-weight: 400;
	padding-bottom: 8px;
	border-bottom:1px dotted rgba(255,255,255,.7);
	margin-bottom: 20px;
	width:90%;
	color: #fff;
	font-family: Roboto Slab
}

footer .centro-footer .formulario form .input-group{
	position: relative;
    width: 47%;
    margin-bottom: 15px;
}

footer .centro-footer .formulario form{
	width: 100%;
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

footer .centro-footer .formulario form .input-group input[type="text"], footer .centro-footer .formulario form .input-group input[type="email"] {
    width: 100%;
    margin: auto;
    border: none;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,.5);
    padding: 10px 10px 10px 25px;
    outline: none;
    color: #fff
}

footer .centro-footer .formulario form .input-group input[type="text"]:focus, footer .centro-footer .formulario form .input-group input[type="email"]:focus{
    outline:none;
}

footer .centro-footer .formulario form .input-group > i {
	position: absolute;
	left: 0;
	top: 8px;
	color: #fff;
}

footer .centro-footer .formulario form .input-group textarea{
	width: 100%;
    margin: 15px auto;
    border: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,.5);
    padding: 18px 10px;
    outline: none;
    color: #fff;
    border-radius:10px;
    height: 100px;
}

footer .centro-footer .formulario form .textarea, footer .centro-footer .formulario form  .asunto, footer .centro-footer .formulario form .enviar{
    width:100%;
}



input[type="submit"]{
	border:2px solid rgba(255,255,255,.6);
	color: #fff;
	background: transparent;
	padding: 12px 0;
	cursor: pointer;
	font-weight: 700; width: 100%;
	letter-spacing: 4.5px;
}


footer .centro-footer .formulario form input[type="submit"]:hover{
	background: #ff0000;
	color: #fff;
	transition:all .5s;
}

.copiright{
    width:100%;
    padding:20px 0;
    background:#f4f4f4;
}

.copiright .centro{
    display:flex;
    justify-content:space-between;
    align-items:center
}



.copiright .centro p{
    color:#333;
    font-weight:400;
}

.copiright .centro .redes-sociales {
    display: flex;
    justify-content: flex-end;
}

.copiright .centro .redes-sociales a{
    margin-right: 10px;
}

.copiright .centro .redes-sociales a i {
    display: block;
    border: 1px solid rgba(0,0,0,.1);
    padding: 10px;
    color: #666;
    font-size: 18px;
    border-radius:5px;
}

.copiright .centro .redes-sociales a i.fa-facebook:hover{
    background:#4867AA;
    color:#fff;
}

.copiright .centro .redes-sociales a i.fa-twitter:hover{
    background:#1DA1F2;color:#fff;
}

.copiright .centro .redes-sociales a i.fa-linkedin:hover{
    background:#007AB5;color:#fff;
}

/*---------------FIN FOOTER---------------------*/


/*---------------ICONO ARRIBA---------------------*/

.boton-arriba{
cursor: pointer;
position: fixed;
bottom: 10%;
right: 5%;
z-index: 8888;
display: none;
}


.boton-arriba > i{
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#017be8+0,0072ba+100 */
background: #017be8; /* Old browsers 
background: -moz-linear-gradient(top, #017be8 0%, #0072ba 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #017be8 0%,#0072ba 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #017be8 0%,#0072ba 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#017be8', endColorstr='#0072ba',GradientType=0 ); /* IE6-9 */

	color: #fff;
	padding:10px 15px;
	text-align: center;
	font-size: 24px;
	font-weight: 700;
	border-radius: 50%;
	box-shadow: 2px 2px 2px rgba(0,0,0,.6);
	border:1px solid rgba(0,0,0,.12);
}


.boton-arriba > i:hover{
	background: #fff;
	color: #017be8;
}


#menu-responsive{
	display: none;
}

/*---------------FIN FOOTER---------------------*/

/*---------------PAGINA---NOSOTROS---------------------*/

#nosotros {
    width: 100%;
    padding: 50px 0 32px;
}

#nosotros h2 {
    color: #333;
	padding-bottom: 7px;
	padding-left: 3px;
	border-bottom: 1px dotted rgba(0,0,0, .5);
	width: 100%;
	margin-bottom: 30px;
	font-size: 33px;    
	font-family: Roboto Slab;
    font-weight: 300;
}

#nosotros h2 > span{
    font-family:Roboto Slab;
    font-weight:700;
    font-size:33px;
}




#vision{
    background:#FE0000;
}

#mision , #vision, #valores{
    padding: 80px 0;
    color: #FFFFFF;
    background-size: cover;
    position: relative;
    z-index: 0;
}

#mision::before, #valores::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.75);
    z-index: 1;
}

#mision  .centro , #vision .centro{ 
    display:flex;
    flex-wrap:wrap;
    width:90%;
}

#mision h2 , #vision h2, #valores h2{
    color: #fff;
    padding-bottom: 7px;
    padding-left: 3px;
    border-bottom: 1px dotted rgba(255,255,255, 1);
    width: 100%;
    margin-bottom: 30px;
    z-index: 2;
    font-weight: 700;
    font-size:25px;
}

#valores h2{
    width:100%;
}

#vision h2{
    text-align:right;
    padding-right:3px;
    
}

#mision .mision , #vision .vision{
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#mision .mision .icono-nos, #vision .vision .icono-nos {
   flex: 0 0 10px;
	display: flex;
	transition: All .5s;
	padding-right: 10px;

}

#vision .vision .icono-nos {
    justify-content:flex-end;
    padding-right: 0;
    padding-left: 10px
}

#mision .mision .icono-nos i, #vision .vision .icono-nos i {
    font-size: 42px;
    color: #fff;
    padding: 40px 12px;
    border-radius: 50%;
    width: 95px;
    height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #fff;
    transition:all .5s;
    transform:scale(1)
}

#mision .mision p, #vision .vision p{
    line-height:40px;
    text-align:justify;
    font-size:20px;
    font-weight:300;
    width:88%;
}

#valores {
    width: 100%;
}

#valores .centro{
    z-index: 3;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
}


#valores .centro .valores-content ul li {
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 300;
    display: flex;
    align-items: center;
    z-index: 3;
}

#valores .centro .valores-content ul li i {
    margin-right: 20px;
    font-size: 30px;
    color:#FE0000;
    z-index: 3;
}

.valores-content {
	z-index: 3;
	width: 100%;
	display: flex;
}


/*---------------FIN---PAGINA---NOSOTROS---------------------*/



/*--------------PRODUCTOS  Y INFORMACION TECNICA-----*/

#producto {
    width: 100%;
	padding: 30px 0;
	background: #fff;
	z-index: 0;
	height: auto;
	margin-top: 5px;
}

#producto .centro{
    z-index:2;
    display:flex;
    flex-wrap:wrap
}

#producto .centro h2{
    color: #000;
    padding-bottom: 7px;
    padding-left: 3px;
    border-bottom: 1px dotted #000;
    width: 100%;
    margin-bottom: 30px;
    font-weight:300;
    z-index:2;
    position:relative;
}

#producto .centro h2  span {
    position:relative;
    padding-bottom:10px;
    font-family:Roboto Slab;
    font-weight:700;
    font-size:33px;
    position:relative;
}

#producto .centro h2 span hr {
    border: none;
    width: 100%;
    height: 5px;
    background: #ff0000;
    position: absolute;
    bottom: 0;
    left: 0;
}

#producto .centro h2 span  .fa-caret-down {
    position: absolute;
    bottom: -20px;
    display: block;
    left: 68%;
    color:#ff0000;
}


#producto .centro .producto-description{
    width:100%;
    display:flex;
    justify-content:space-between;
    z-index:3;
}

#producto .centro .producto-description .imagen-principal-prod{
    flex: 0 0 600px;
    padding-right: 20px;
    height:auto
}

#producto .centro .producto-description .imagen-principal-prod img{
    display:block;
    width:100%;
    border: 1px solid rgba(0,0,0,.4);
}

#producto .centro .producto-description .description{
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex:1;
    height:auto

}

#producto .centro .producto-description .description .descripcion-si h3 {
    color: #000;
    font-family: Roboto Slab;
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom:1px dotted rgba(0,0,0,1);
    padding-bottom: 4px;
}




#producto .centro .producto-description .description .descripcion-si h3 span{
    padding-bottom: 3px;
    font-family: Roboto Slab;
    font-weight: 700;
    font-size: 22px;
    position: relative;
    border-bottom: 4px solid #ff0000;
}

#producto .centro p{
    line-height:25px;
    text-align:justify;
    color:#333;
   margin:20px 0;
}

#producto .centro .producto-description .description .descripcion-si p{
    line-height:25px;
    text-align:justify;
    color:#666;
}


/*PARA ALGUNOS PRODUCTOS*/

.galeria-producto{
    width:100%;
    padding:60px 0;
    background:#f4f4f4;
}

.galeria-producto .centro h3{
	color: #000;
	font-family: Roboto Slab;
	font-size: 25px;
	font-weight: 300;
	text-transform: uppercase;
	margin-bottom: 40px;
	border-bottom: 1px dotted rgba(0,0,0,1);
	padding-bottom: 4px;
}

.galeria-producto .centro h3 span{
	padding-bottom: 3px;
    font-family: Roboto Slab;
    font-weight: 700;
    font-size: 25px;
    position: relative;
    border-bottom: 4px solid #ff0000;
}




.galeria-producto .galeria-prod-content{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;

}

.galeria-producto .galeria-prod-content.do{
	display: flex;
	justify-content: flex-start;
}

.galeria-producto .galeria-prod-content.do .galeria-item-producto{
	margin-right: 20px;
	position: relative;
}

.galeria-producto .galeria-prod-content .galeria-item-producto{
    width: 23%;
    margin-bottom: 30px;
    
}

.galeria-producto .galeria-prod-content .galeria-item-producto .galeria-item-img-producto::before{
	position: absolute;
	top: -100%;
	left: 42%;
	z-index: 2;
	color: #fff;
	content: "\f00e";
	display: inline-block;
	  font: normal normal normal 14px/1 FontAwesome;
	  font-size: inherit;
	  text-rendering: auto;
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	  padding: 10px;
	  border-radius: 3px;
	  background: rgba(0,0,0,.4);
	  transition:all .3s;
}






.galeria-producto .galeria-prod-content .galeria-item-producto.col-2 {
	width: 48.5%;
}

.galeria-producto .galeria-prod-content .galeria-item-producto p{
	margin: 20px 0;
text-align: center;
color: #333;
font-size: 16px;
font-family: Roboto Slab;
font-weight: 400;
}


.galeria-producto .galeria-prod-content .galeria-item-producto .galeria-item-img-producto{
    width:100%;
    overflow:hidden;
    box-shadow: 0px 0px 3px 3px rgba(0,0,0,.1);
    display:inline-block;
    position: relative;
}

.galeria-producto .galeria-prod-content .galeria-item-producto .galeria-item-img-producto img{
    width:100%;
    display:block;
    transform:scale(1);
    transition:all .5s;
}

.galeria-producto .galeria-prod-content .galeria-item-producto:hover .galeria-item-img-producto img{
    transform:scale(1.1);
}


.galeria-producto .galeria-prod-content .galeria-item-producto:hover  .galeria-item-img-producto::before{
	top: 42%;
}


.galeria-producto .galeria-prod-content .galeria-item-producto .buton-desplegable{
    width:50%;
    margin:20px auto 0;
    box-shadow:2px 0px 0 1px inset #fff;
}

.galeria-producto .galeria-prod-content .galeria-item-producto .buton-desplegable a{
    display: block;
    padding: 12px 0;
    text-align: center;
    background: #fff;
    color: #0074C3;
    text-transform: uppercase;
    font-family: sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    border-radius: 5px;
    box-shadow: 0px 0px 0px 0px #0074C3 inset,0px -0px 0px 0px #0074C3 inset;
    transition: all .3s;
    border: 2px solid #0074C3;
}

.galeria-producto .galeria-prod-content .galeria-item-producto .buton-desplegable a:hover {
    box-shadow: 0px 21px 0px 0px #0074C3 inset,0px -21px 0px 0px #0074C3 inset;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,.1);
    border: 2px solid #0074C3;transition: all .3s;
}


.galeria-producto .galeria-prod-content .galeria-item-producto  .desplegable-parrafo-item-producto{
    padding: 20px 10px;
}

/*mallas en rollos*/

#producto .prod-dest{
    margin-top:30px;
    width:100%;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
}

#producto .prod-dest  ul{
    line-height: 25px;
    text-align: justify;
    color: #666;
    margin: 20px 0;
}

#producto .prod-dest  ul > li {
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 10px;
    font-family: Roboto Slab;
}

#producto .prod-dest  ul > li > i {
    color: #ff0000;
    font-size: 20px;
    font-weight: 700;
    margin-right: 17px;
    line-height: 20px;
}


/*tabla - dobleimagen*/

.producto-mq-2{
    width:100%;
    background:#f4f4f4;
    padding:30px 0;
}

.container-mq-2 .mq-2-item {
    flex: 0 0 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mq-2-item .mq-2-item-img {
    width: 100%;
	margin-bottom: 10px;
	border: 4px double #FF0000;
	position: relative;
	overflow: hidden;

}



.container-mq-2{
    width:100%;
    margin-bottom:30px;
}


.container-mq-2 {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}



.mq-2-item.tabla-prod {
    width: 65%;
    overflow-x: scroll;
    flex: 1;
    padding-right: 20px;
}

.mq-2-item.tabla-prod table {
  width: 100%;
  border: 2px solid;
  overflow: scroll;
}


.mq-2-item.tabla-prod table .titulo-tabla {
    color: #fff;
    padding: 15px;
}



tbody {
display: table-row-group;
  vertical-align: middle;
  border-color: inherit;
}
tr {
  display: table-row;
  vertical-align: inherit;
  border-color: inherit;
}
table td {
  padding: 5px;
border-bottom: 1px solid rgba(0,0,0,.2);
border-right: 1px solid rgba(0,0,0,.2);

}


/*descripcion--- c/prod*/

.producto-flex{
	margin-top: 15px
}

.producto-flex > ul{
    line-height: 25px;
    text-align: justify;
    color: #666;
    margin: 20px 0;
}

.producto-flex > ul > li {
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 10px;
    font-family: Roboto Slab;
}

.producto-flex > ul > li > i {
    color: #ff0000;
    font-size: 20px;
    font-weight: 700;
    margin-right: 17px;
    line-height: 20px;
}

.producto-flex >  p{
    line-height:25px;
    text-align:justify;
    color:#666;
    margin:0px 0 20px;
    padding-bottom:10px;
}

.producto-flex > p:last-child{
    border-bottom:none;
}

.producto-flex > p:last-child{
    border-bottom:none;
}

.producto-flex .flex-container {
	width:100%;
	margin-top: 15px;
}

.producto-flex .flex-container .flex-tipos{
	display: flex;
	flex-wrap:wrap;
	justify-content:space-between;
	width:100%;
	margin-bottom: 25px;
	order:1;
	align-items: center;
}

.producto-flex .flex-container .flex-tipos h3{
	 color: #000;
    font-family: Roboto Slab;
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom:1px dotted rgba(0,0,0,.5);
    padding-bottom: 4px;
	  width: 100%;
}

.producto-flex .flex-container .flex-tipos h3 i{
    margin-right: 3px;
    color: #ff0000;
    font-size: 18px;
}

.producto-flex .flex-container .flex-tipos h3 span{
	  padding-bottom: 3px;
    font-family: Roboto Slab;
    font-weight: 700;
    font-size: 22px;
    position: relative;
    border-bottom: 4px solid #ff0000;
}

.producto-flex .flex-container .flex-tipos .descrp-flex-tipo{
	width: 60%;
	flex: 1;
	padding-right: 20px;
}

.descrp-flex-tipo.exc {
    padding-right: 0;
    padding-left: 20px;
}


.producto-flex .flex-container .flex-tipos .descrp-flex-tipo p{
    font-size: 15px;
    margin:0;
}

.producto-flex .flex-container .flex-tipos h6{
    font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: Roboto Slab;
	color:#ff0000;
	width:100%;
	margin-bottom:10px;
}

.producto-flex .flex-container .flex-tipos .descrp-flex-imagenes{
	flex: 0 0 400px;
	display: flex;
	justify-content: space-between;
	position: relative;

}





.producto-flex .flex-container .flex-tipos .descrp-flex-imagenes .descrp-flex-imagenes-item{
	width: 48%;
border: 3px double #FF0000;
overflow: hidden;
position: relative;
}

.producto-flex .flex-container .flex-tipos .descrp-flex-imagenes .descrp-flex-imagenes-item-uno{
	width: 80%;
    overflow: hidden;
    border: 4px double #FF0000;
    position: relative;
}

.producto-flex .flex-container .flex-tipos .descrp-flex-imagenes .descrp-flex-imagenes-item-tres{
    width: 32%;
    position: relative;
    overflow: hidden;
}

/*before-de imagenes*/

.producto-flex .flex-container .flex-tipos .descrp-flex-imagenes .descrp-flex-imagenes-item-tres::before,
.producto-flex .flex-container .flex-tipos .descrp-flex-imagenes .descrp-flex-imagenes-item-uno::before,
.producto-flex .flex-container .flex-tipos .descrp-flex-imagenes .descrp-flex-imagenes-item:before,
.porcentajes-container .porcentajes-item:before,
.mq-2-item .mq-2-item-img:before
{
	position: absolute;
	top: -100%;
	left: 40%;
	color: #fff;
	background: rgba(0,0,0,.3);
	padding: 7px;
	border-radius: 3px;
	content: "\f00e";
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	    font-size: 14px;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transition:all .3s;
}

.producto-flex .flex-container .flex-tipos .descrp-flex-imagenes-item-tres:hover::before,
.producto-flex .flex-container .flex-tipos .descrp-flex-imagenes-item-uno:hover::before,
.producto-flex .flex-container .flex-tipos .descrp-flex-imagenes-item:hover::before,
.porcentajes-container .porcentajes-item:hover::before,
.mq-2-item .mq-2-item-img:hover::before
{
		top: 40%;
}

/*---fin---before-de imagenes*/


.producto-flex .flex-container .flex-tipos .descrp-flex-imagenes .descrp-flex-imagenes-item-tres img{
    border: 4px double #FF0000;
    
}


/*porcentajes*/


#producto .centro .tabla-porcentajes{
    width: 100%;
    margin: 30px 0;
    overflow-X:scroll;
}

#producto .centro .porcentajes-img{
    width:90%;
    margin:auto;
    box-shadow: 0px 0px 4px 1px rgba(0,0,0,.3);
    border-radius: 3px;

}

.porcentajes-container{
    width: 100%;
    display: flex;
    justify-content: space-between;

}

.porcentajes-container .porcentajes-item{
    width:30%;
    border: 4px double #FF0000;
    position: relative;
    overflow: hidden;
}


table{
	border: 2px solid;
}

#producto .centro .tabla-porcentajes table{
    overflow: scroll;
border: 2px solid;
}



#producto .centro .tabla-porcentajes table td{
    padding:0;
    
}

#producto .centro .tabla-porcentajes table p{
   text-align: center;
color: #000;
font-size: 13px;
margin: 0;
}

#producto .centro .tabla-porcentajes table td.tit-tab-porcent{
    background:#90B2DF;
    padding: 15px 0;
    
}

#producto .centro .tabla-porcentajes table .tit-tab-porcent > p {
    font-family: Roboto Slab;
    color: white;
    display: block;
    letter-spacing: 1px;
    transform: scale(1.2);
}






.producto-flex p i{
    color:#FF0000;
    font-size:20px;
    margin-right:7px;
    font-weight:700;
}


#producto .prod-dest .prod-dest-item{
    width:48.5%;
    margin-bottom:30px;
}

#producto .prod-dest .prod-dest-item.large
{
	width: 100%
}

#producto .prod-dest .prod-dest-item h3{
    color: #000;
    font-family: Roboto Slab;
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom:1px dotted rgba(0,0,0,1);
    padding-bottom: 4px;
}

#producto .prod-dest .prod-dest-item h3 i{
    margin-right: 3px;
color: #ff0000;
font-size: 18px;

}

#producto .prod-dest .prod-dest-item h3 span{
    padding-bottom: 3px;
    font-family: Roboto Slab;
    font-weight: 700;
    font-size: 22px;
    position: relative;
    border-bottom: 4px solid #ff0000;
}

#producto .prod-dest .prod-dest-item p{
    line-height:25px;
    text-align:justify;
    color:#666;
}


#producto .centro .producto-description .description .contac-pro {
    width: 100%;
    background: rgba(0,0,0,.9);
    padding: 20px;
    color: #fff;
    border-radius:3px;
}

#producto .centro .producto-description .description .contac-pro h3{
    color:#fff;
    border-bottom:1px dotted #fff;
    padding-bottom:6px;
    font-size:20px;
    margin-bottom:10px;
}

#producto .centro .producto-description .description  .contac-pro ul li {
    line-height: 28px;
    margin-bottom:3px;
}

#producto .centro .producto-description .description  .contac-pro ul li i{
    margin-right:10px;
}

#producto .centro .producto-description .description  .contac-pro ul li.telf{
    font-weight: 700;
}

#producto .centro .producto-description .description  .contac-pro ul li.cor{
    font-weight: 700;
    color:#ff0000;
}



/*--ACERO---*/

#producto .acerca-acero-item {
	display: flex;
	flex-wrap:wrap;
	justify-content:space-between;
	width: 100%;
	margin-bottom: 20px
}


#producto .acerca-acero-item > h3 {
    color: #000;
    font-family: Roboto Slab;
    font-size: 22px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom:1px dotted rgba(0,0,0,1);
    padding-bottom: 4px;
    width: 100%
}

#producto .acerca-acero-item > h3  span{
    padding-bottom: 3px;
    font-family: Roboto Slab;
    font-weight: 700;
    font-size: 22px;
    position: relative;
    border-bottom: 4px solid #ff0000;
}

#producto .acerca-acero-item .prod-dest{
	width: 51.5%;
	margin-top: 0;
	flex:1;
	padding-left: 20px
}

#producto .acerca-acero-item .prod-dest .prod-dest-item{
	margin-bottom: 0
}

#producto .acerca-acero-item .imagen-acero{
	flex:0 0 450px;
	display: inline-block;

}


#producto .acerca-acero-item .prod-dest .prod-dest-item h4{
    color: #000;
    font-family: Roboto Slab;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom:1px dotted rgba(0,0,0,1);
    padding-bottom: 4px;
}

#producto .acerca-acero-item .prod-dest .prod-dest-item h4 i{
    margin-right: 3px;
	color: #ff0000;
	font-size: 18px;

}

#producto .acerca-acero-item > p{
	width: 100%;
	margin-top: 0
}



#producto .acerca-acero-item .im{
	width: 46%
}

#producto .acerca-acero-item .im .imagen-acero{
	width: 100%;
border: 4px double #FF0000;
display: inline-block;

}



#producto .acerca-acero-item-per{
	width: 49%
}

#producto .acerca-acero-item-per  ul{
    line-height: 25px;
    text-align: justify;
    color: #666;
    margin: 20px 0;
}

#producto .acerca-acero-item-per  ul > li {
    font-weight: 400;
    line-height: 28px;
    font-family: Roboto;
}

#producto .acerca-acero-item-per  ul > li > i {
    color: #ff0000;
    font-size: 18px;
    font-weight: 700;
    margin-right: 10px;
    line-height: 20px;
}


/*-------------- FIN--PRODUCTOS  Y INFORMACION TECNICA-----*/


/*---------SISTEMA DE GESTION-----------*/


.banner-sg{
    height:300px;
}

.gestion-item-container{
	display: flex;
	width:100%;
	align-items: center;
	flex-wrap:wrap
}


.gestion-item-container .gestion-item-container-text{
	width: 50%;
	color:#fff;
	padding: 20px 50px;
}

.gestion-item-container .gestion-item-container-text h3
{
	margin-bottom: 50px;
	text-align: center;
	text-transform: uppercase;
	font-family: Roboto Slab;
}

.gestion-item-container .gestion-item-container-text h5
{
	margin-bottom: 20px;
	font-size: 16px; 
}

.gestion-item-container .gestion-item-container-text p{
	line-height: 25px;
	text-align: justify;
	font-size: 15px;
	font-family: Roboto;
}

.gestion-item-container .gestion-item-container-text ul{
	list-style: circle;
}

.gestion-item-container .gestion-item-container-text ul li, .gestion-item-container .gestion-item-container-text strong{
	line-height: 25px;
	text-align: justify;
	font-size: 15px;
	font-family: Roboto;
}


.gestion-item-container .gestion-item-container-imagen{
	width: 50%;
	background: #f4f4f4
}

.gestion-item-container .gestion-item-container-imagen.big{
    height: 480px;
}

.gestion-item-container .gestion-item-container-imagen.small{
    height: 430px;
}


.gestion-item-container .gestion-item-container-imagen img{
	width: 100%;
	display: block;
	padding: 100px
}



.certificado {
    padding: 40px 0;
    background:#f4f4f4;
}

.certificado .centro p{
     margin: 30px 0;
    color: #666;
    line-height: 23px;
    font-weight: 400;
    text-align: center;
    box-shadow: 0px 0px 2px 2px rgba(0,0,0,.2);
    padding: 10px;

}


.certificado .centro img{
    border-radius:5px;
    box-shadow: 0px 0px 4px 1px rgba(0,0,0,.3);
    border-radius: 3px;
}


.flex-tipos .agr{
	width: 80%
}

.descrp-flex-imagenes-uno.er {
    width: 30%;
    padding-right: 100px;
}

.descrp-flex-tipo.agr ul li {
    color: #666;
    line-height: 40px;
}


.descrp-flex-tipo.agr ul li > i {
    color: #ff0000;
	font-size: 21px;
	font-weight: 700;
	margin-right: 12px;

}


.alerta-tabla{
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:center;
}

.alerta-tabla .dibujo-alerta{
	width: 60%;
	border:4px double #FF0000;
}

.alerta-tabla .tabla-alert{
	width: 30%;
}

.alerta-tabla .tabla-alert table{
	width: 100%;
}

.alerta-tabla .tabla-alert table td {
	padding: 0;
}


#producto .centro > h3 {
    font-size: 20px;
    font-family: Roboto Slab;
    color: #333;
}


#producto .centro .tabla-alert > table td > p{
	margin: 0;
	text-align: center;
	padding: 5px;
}

#producto .centro .prod-dest{
	width: 100%;
	margin-top: 30px;
	flex: 1;
	padding-left: 0px;
}

#producto .prod-dest .prod-dest-item.large {
    width: 100%;
}

#producto  .prod-dest .prod-dest-item h4 {
    color: #000;
    font-family: Roboto Slab;
    font-size:22px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 1px dotted rgba(0,0,0,1);
    padding-bottom: 4px;
}

.prod-dest .prod-dest-item h4 i {
    margin-right: 3px;
    color: #ff0000;
    font-size: 18px;
}


#producto .prod-dest .prod-dest-item p {
    line-height: 25px;
    text-align: justify;
    color: #666;
}


#producto .prod-dest .prod-dest-item h4 span {
    padding-bottom: 3px;
    font-family: Roboto Slab;
    font-weight: 700;
    font-size: 22px;
    position: relative;
    border-bottom: 4px solid #ff0000;
}



#producto .centro .acerca-acero-item .prod-dest{
	width: 100%;
    margin-top: 0px;
    flex: 1;
    padding-left: 20px;
}





.aviso-xd {
    width: 100%;
    margin: 0px auto 40px;
    max-width: 400px;
    background: #017be8;
    border-radius: 5px;
    padding: 10px;
}


.aviso-xd p {
    color: white;
    margin-bottom: 10px;
}

.aviso-xd > h3 {
    color: #fff;
    text-align: center;
    font-weight: 400;
    font-family: Roboto Slab;
}
