@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --size: 50vmin;
  --white: #fff;
  --blue: #3051f1;
  --purple: #c92bb7;
  --red: #f73344;
  --orange: #fa8e37;
  --yellow: #fcdf8f;
  --yellow_to: #fbd377;
}
body{
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.wow{
	visibility: hidden;
}
.wrap{
	overflow: hidden;
}

#header{
	background: #252525;
	height: 256px;
	overflow: hidden;
}

#header .container{
	position: relative;
  	max-width: inherit;
}
#topOptions {
	text-align: center;
	height: 133px
}
#topOptions #logoTop{
	display: inline-block;
	position: relative;
	top: 60px;
	margin: 0 auto
}


#langLogin{
	position: absolute;
	right: 35px;
	top: 25px;
	color: #FFF;
	display: flex;
	font-size: 13px;
	font-family: "Arial", serif;
}
#cLang{
	border-right: solid 1px #FFF;
	padding: 0 10px 0 0;
	margin-right: 8px;
	height: 16px;
}
#loginTop{
	position: relative;
	top: -2px;
	cursor: pointer;
}

#divSearch{
	position: absolute;
	top: 91px;
	right: 15px;
	width: 269px;
}
#divSearch input{
	display: block;
	width: 100%;
	background: #555555;
	color: #FFF;
	font-size: 12px;
	border: none;
	border-radius: 16px 20px 20px 16px;
	height: 38px;
	padding: 0 35px 0 20px;
}
#frmSearch{
	position: relative;
}
#divSearch button{
	display: block;
	width: 45px;
	height: 45px;
	background: #da921b;
	position: absolute;
	right: 0;
	top: -5px;
	border: none;
	border-radius: 50%;
	color: #FFF;
	cursor: pointer;
	-webkit-transition: linear all .3s;
  	-o-transition: linear all .3s;
  	transition: linear all .3s;
  	display: flex;
  	justify-content: center;
  	align-items: center;
}
#divSearch button:hover{
	transform: scale(1.1);
}
#frmSearch input::-webkit-input-placeholder {color:#fff; opacity:  1;}
#frmSearch input:-moz-placeholder {color:#fff; opacity:  1;}
#frmSearch input::-moz-placeholder {color:#fff; opacity:  1;}
#frmSearch input:-ms-input-placeholder {color:#fff; opacity:  1;}
#frmSearch input:focus::-webkit-input-placeholder {opacity:0.5}
#frmSearch input:focus:-moz-placeholder{opacity:0.5}
#frmSearch input:focus::-moz-placeholder{opacity:0.5}
#frmSearch input:focus:-ms-input-placeholder{opacity:0.5}
#divSearch input:focus {
  box-shadow: 0 0 8px 1px rgba(255, 159, 0, 0.1);
}


/*Menu*/
#menuTop{
	padding-top: 43px;
}
#menuTop ul,
#menuTop li{
	list-style: none;
	margin: 0;
	padding: 0
}
#menuTop ul{
	display: flex;
	justify-content: space-between;
}
#menuTop #menu li{
	padding: 0 15px;
	position: relative;
}
#menuTop #menu ul li:first-child{
	padding-left: 0
}
#menuTop #menu ul li:last-child{
	padding-right: 0
}
#menuTop #menu a{
	display: flex;
	align-items: center;
	position: relative;
	padding: 4px 0 15px;
	color: #fff;
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	text-decoration: none;

}
#menuTop #menu a:before{
	display: block;
	content: "";
	position: absolute;
	width: 100%;
	height: 6px;
	background: #f59a00;
	border-radius: 3px;
	left: 0;
	bottom: 0;
	opacity: 0;
	transform: scale(0,0);
	-webkit-transition: linear all .3s;
  	-o-transition: linear all .3s;
  	transition: linear all .3s;
}
#menuTop #menu li.active a:before,
#menuTop #menu a:hover:before{
	opacity: 1;
	transform: scale(1,1);
}


/*Footer*/
#footer .contentFooter{
	background: #1a1a1a;
}
#footer .contentFooter .container{
  	display: flex;
  	align-items: center;
  	min-height: 131px;
  	color: white;
  	font-family: "Arial", serif;
  	font-size: 11px;
  	justify-content: center;
  	flex-direction: column;	
}
#footer .tfooter {
  	line-height: 16px;
  	text-align: left;
  	float: left;
  	min-height: 22px;
  	display: flex;
  	align-items: center;
  	flex-wrap: wrap;
  	justify-content: center;
}
#footer .tfooter a{
	color: inherit;
}
#footer #powered {  	
  	line-height: 16px;
  	margin: 0 auto 0;
  	width: auto;
  	text-align: right;
  	float: right;
  	display: flex;
  	align-items: center;
}
#footer #powered a {
  	color: inherit;
  	display: flex;
  	padding: 0 0 0 28px;
  	min-height: 22px;
  	align-items: center;
  	margin-left: 5px;
  	background: url(/assets/images/icoTW.svg) no-repeat center left;
}
#footer #powered a:hover{
	text-decoration: none;
}



a#toTop {
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 37px;
  color: #fff;
  border-radius: 50%;
  position: fixed;
  background: #d38810;
  -moz-box-shadow: 0 0 3px 2px #FFF;
  -ms-box-shadow: 0 0 3px 2px #FFF;
  -o-box-shadow: 0 0 3px 2px #FFF;
  -webkit-box-shadow: 0 0 3px 2px #FFF;
  box-shadow: 0 0 3px 2px #FFF;
  left: 40px;
  bottom: 90px;
  display: none;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  z-index: 20;
  padding: 30px 0 0 30px;
}
a#toTop::before {
  display: block;
  content: "‹";
  transform: rotate(90deg);
  font-size: 50px;
  text-align: center;
  position: absolute;
  left: 3px;
  top: 2px;
  width: 100%;
}


/*Inicio*/

#bannerTop{
	position: relative;
	z-index: 1;
	background: url('../images/home/bgBanner.webp') center center no-repeat;
}
#bannerTop .container{
	max-width: 1625px;
}
#bannerTop article{
	font-size: 48px;
	color: #1b1b1b;
	max-width: 700px;
	line-height: 1;
	margin-bottom: 90px;
}
#bannerTop .btnOrange{
	height: 63px;
	background: #f59a00;
	color: #FFF;
	font-size: 18px;
	border-radius: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-top: 20px;
	text-align: center;
	padding: 0 12px;
}
#bannerTop .row{
	min-height: 419px;
	align-items: end;
}
#bannerTop .col{
	padding: 0 20px
}

#home-1{
	background: #fff;
	padding: 134px 0;
}
#home-1 .title{
	font-size: 36px;
	color: #616161;
	line-height: 1;
	padding: 0 0 15px;
	text-transform: uppercase;
	font-weight: 400;
	text-align: center;
}
#home-1 .title strong{
	font-size: 48px;
	color: #e69002;
	display: block;
	font-weight: 800;
	padding: 11px 0 6px;
}
#home-1 .title2{
	font-size: 24px;
	color: #061616;
	line-height: 1;
	text-transform: uppercase;
	font-weight: 800;
	text-align: center;
}
#home-1 .text{
	font-size: 16px;
	color: #616161;
	line-height: 30px;
	font-weight: 400;
	text-align: center;
	max-width: 840px;
	margin: 17px auto 35px;
}
#home-1 .logos{
	display: flex;
	flex-wrap: wrap;
	max-width: 1073px;
	margin: 0 auto;
	justify-content: space-between;
}


#home-2{
	background: url('../images/home/bg2.webp') center no-repeat;
}
#home-2 .container{
	max-width: 1570px;
}

#home-2 .title{
	font-size: 40px;
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
	padding: 21px 10px 53px;
	max-width: 950px;
	margin: 0 auto;
	text-align: center;
}

#home-2 .items{
	margin: 0 -10px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
#home-2 .item{
	padding: 0 10px 20px;
	width: 25%;
}
#home-2 article{
	background: #d38810;
	border-radius: 35px;
	overflow: hidden;
	height: 69px;
	font-size: 24px;
	color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: -1px;
	padding: 0 12px;
  	text-align: center;
  	line-height: 1.2;
}

#home-3 .row{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}
#home-3 .item{
	display: flex;
	flex-basis: 50%;
	position: relative;
}
#home-3 .item1{
	background: url('../images/home/Astralab-bg3.webp') left center no-repeat;
	font-size: 18px;
	color: #2f2f2f;
	position: relative;
	justify-content: flex-end;
}
#home-3 .item1:before{
	display: block;
	content: "";
	width: 16px;
	height: 365px;
	background: #da921b;
	position: absolute;
	right: -8px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 8px;
}
#home-3 .item article{
	display: flex;
	align-items: center;
}
#home-3 .item1 article{
	max-width: 871px;
	width: 100%;
	padding: 0 25px;
}
#home-3 .item1 .text{
	max-width: 650px;
	margin: 0 auto
}
#home-3 .item3,
#home-3 .item4{
	padding-top: 80px
}
#home-3 .item3:before{
	display: block;
	content: "";
	width: 16px;
	height: 365px;
	background: #da921b;
	position: absolute;
	left: -8px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 8px;
}
#home-3 .item4{
	padding: 0 36px;
}
#home-3 .item4 .title{
	width: 365px;
	height: 68px;
	background: #e0a23d;
	font-size: 36px;
	color: #FFF;
	font-weight: 800;
	border-radius: 34px;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: -0.5px;
	margin-bottom: 37px;
}
#home-3 .item4 .text{
	max-width: 765px;
}
#home-3 .item4 ul{
	padding: 0;
	margin: 0;
}
#home-3 .item4 li{
	list-style: none;
	position: relative;
	font-size: 18px;
	color: #414040;
	font-weight: 400;
	padding-left: 76px;
	margin-bottom: 11px;
	min-height: 29px;
	line-height: 1.5
}
#home-3 .item4 li span{
	display: flex;
	width: 72px;
	height: 29px;
	border-radius: 15px;
	background: #393939;
	color: #FFF;
	justify-content: center;
	align-items: center;
	font-weight: 800;
	position: absolute;
	left: 0;
	top: 0
}


/*Contact*/
#formContacto .contenedorBotones input{
	background: #ecb401;
}
.frmContacto input::-webkit-input-placeholder{color: #686868;opacity:1}
.frmContacto input:-moz-placeholder{color: #686868;opacity:1}
.frmContacto input::-moz-placeholder{color: #686868;opacity:1}
.frmContacto input:-ms-input-placeholder{color: #686868;opacity:1}
.frmContacto textarea::-webkit-input-placeholder{color: #686868;opacity:1}
.frmContacto textarea:-moz-placeholder{color: #686868;opacity:1}
.frmContacto textarea::-moz-placeholder{color: #686868;opacity:1}
.frmContacto textarea:-ms-input-placeholder{color: #686868;opacity:1}

.frmContacto input:focus::-webkit-input-placeholder{opacity:0.5}
.frmContacto input:focus:-moz-placeholder{opacity:0.5}
.frmContacto input:focus::-moz-placeholder{opacity:0.5}
.frmContacto input:focus:-ms-input-placeholder{opacity:0.5}
.frmContacto textarea:focus::-webkit-input-placeholder{opacity:0.5}
.frmContacto textarea:focus:-moz-placeholder{opacity:0.5}
.frmContacto textarea:focus::-moz-placeholder{opacity:0.5}
.frmContacto textarea:focus:-ms-input-placeholder{opacity:0.5}

#areaCaptcha{
	margin: 40px auto;
	max-width: 304px;
}


#que-1{
	background: url('../images/que-hacemos/Astralab-bg.webp') center top;
}
#que-1 .title{
	background: rgba(66,66,66,0.5);
	font-size: 48px;
	color: #FFF;
	text-align: center;
	font-weight: 800;
	line-height: 1.3;
	height: 216px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#que-1 .container,
#que-2 .container{
	max-width: 1594px;
	padding: 0 15px;
}
#que-1 .cnt{
	padding-top: 97px;
	padding-bottom: 85px;
}
#que-1 .row{
	margin: 0 -18px;
	flex-wrap: wrap;
}
#que-1 .item{
	padding: 0 18px;
	width: 50%;
}
#que-1 .row figure img{
	display: block;
	max-width: 100%;
	border-radius: 16px;
	margin: 0 auto;
}
#que-1 .row figcaption{
	position: relative;
}
#que-1 .row figcaption div{
	position: absolute;
	background: #f6a428;
	width: 457px;
	height: 123px;
	border-radius: 5px;
	left: 50%;
	margin-left: -228.5px;
	top: -70px;
	color: #FFF;
	text-align: center;
	font-size: 36px;
	line-height: 1.2;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 800;
	padding: 12px 15px;
}
#que-1 .row .text{
	font-size: 18px;
	color: #FFF;
	line-height: 1.5;
	padding-top: 88px;
	max-width: 602px;
	margin: 0 auto;
	text-align: center;
}

#que-2{
	padding: 140px 0 100px;
}
#que-2 .row{
	margin: 0;
}
#que-2 .item{
	width: 50%;
}
#que-2 .title{
	background: #f6a428;
	font-size: 36px;
	color: #FFF;
	border-radius: 5px;
	text-align: center;
	font-weight: 800;
	line-height: 1.3;
	max-width: 594px;
	width: 100%;
	height: 122px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 39px;
}
#que-2 .cnt{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -9px;
}
#que-2 .bq{
	padding: 0 9px 12px;
	width: 50%;
}
#que-2 .bq div{
	text-align: center;
	height: 93px;
	background: #efefef;
	font-size: 30px;
	color: #474747;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	font-weight: 500
}
#que-2 .item2{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
#que-2 .item2 img{
	max-width: 100%;
}


/*Nuestro compromiso*/
#compromiso-1{
	padding: 130px 0;
	background: url('../images/nuestro-compromiso/bg1.webp') center right no-repeat;
	background-size: 56% auto;
}
#compromiso-1 .container{
	max-width: 1594px;
	padding: 0 15px;
	margin: 0 auto;
}
#compromiso-1 .col{
	padding: 0 15px
}
#compromiso-1 .title{
	font-size: 61px;
	font-weight: 900;
	color: #f6a428;
	position: relative;
	margin-bottom: 30px
}
#compromiso-1 .title strong{
	display: block;
	color: #303030;
	line-height: 1;
}
#compromiso-1 .title:after{
	display: block;
	content: "";
	width: 286px;
	height: 7px;
	background: #ececec;
	margin-top: 20px;
}
#compromiso-1 .text{
	font-size: 18px;
	color: #616161;
	font-weight: 400;
}
#compromiso-1 .text .titItem{
	font-size: 36px;
	color: #f6a428;
	font-weight: 700;
	line-height: 1.2;
  	margin-bottom: 10px;
}
#compromiso-1 .text.mb40{
	margin-bottom: 40px
}

#compromiso-2{
	padding: 115px 0 30px;
	background: url('../images/nuestro-compromiso/bg2.webp') center right no-repeat;
}
#compromiso-2 .container{
	max-width: 1594px;
	padding: 0 15px;
	margin: 0 auto;
}
#compromiso-2 .title{
	font-size: 44px;
	font-weight: 700;
	color: #f6a428;
	position: relative;
	margin-bottom: 50px;
	text-align: center;
	line-height: 1
}
#compromiso-2 .row{
	display: flex;
	flex-wrap: wrap;
	margin: 0 -25px;
	justify-content: center;
}
#compromiso-2 .item{
	width: 315px;
	padding: 0 25px 50px;
	display: flex;
	justify-content: center;
}
#compromiso-2 .item img{
	max-width: 100%;
	margin: 0 auto
}
#compromiso-2 figcaption{
	font-size: 24px;
	color: #FFF;
	text-align: center;
	line-height: 1.2;
	margin-top: 12px;
	font-weight: 600
}


/*Nuestras Capacidades*/
.capacidades .container{
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	max-width: 1594px;
	padding: 0 15px;
	margin: 0 auto;
	width: 100%;	
}
#capacidades-1{
	height: 656px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
#capacidades-1 .title{
	font-size: 61px;
	color: #272727;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 40px
}
#capacidades-1 .title strong{
	display: block;
	color: #f6a428
}
#capacidades-1 .text{
	font-size: 36px;
	color: #616161;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 60px
}
#capacidades-1 .bloques{
	margin: 0 -4.5px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#capacidades-1 .bloques .item{
	padding: 0 4.5px 9px;
}
#capacidades-1 .bloques .item div{
	width: 305px;
	height: 75px;
	background: #efefef;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 28px;
	color: #474747;
	border-radius: 4px;
}

#capacidades-2{
	background: url('../images/nuestras-capacidades/parallax.webp') center top no-repeat;	
	padding: 70px 0 50px;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
}
#capacidades-2 .title{
	font-size: 48px;
	color: #f6a428;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 104px;
	text-align: center;
	text-transform: uppercase;
}
#capacidades-2 .bloques{
	margin: 0 -18px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#capacidades-2 .bloques .item{
	padding: 0 18px 65px;
	width: 25%;
}
#capacidades-2 .bloques .item article{
	background: rgba(33,33,33, 0.75);
	border: solid 2px #cccccc;
	border-radius: 5px;
	font-size: 22px;
	color: #FFF;
	font-weight: 300;
	padding: 62px 15px 28px;
	position: relative;
	height: 100%;
	text-align: center;
}
#capacidades-2 .bloques .num{
	position: absolute;
	width: 110px;
	height: 110px;
	border: solid 10px #393939;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #f6a428;
	color: #FFF;
	font-size: 48px;
	font-weight: 800;
	border-radius: 50%;
	top: -55px;
	left: 50%;
	margin-left: -55px;
}
#capacidades-2 .lista{
	max-width: 1420px;
	margin: 0 auto;
}
#capacidades-2 .lista ul{
	margin: 0 auto;
	padding: 0
}
#capacidades-2 .lista li{
	list-style: none;
	padding-left: 82px;
	position: relative;
	color: #FFF;
	font-size: 24px;
	font-weight: 600;
	min-height: 67px;
	display: flex;
	align-items: center;
	line-height: 1.1;
	margin-bottom: 45px
}
#capacidades-2 .lista li:before{
	display: block;
	content: "";
	width: 64px;
	height: 67px;
	background: url('../images/nuestras-capacidades/li.png') 0 0 no-repeat;
	position: absolute;
	left: 0;
	top: 0;
}

#capacidades-3{
	padding: 70px 0 50px;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
}
#capacidades-3 .col{
	padding: 0 15px
}
#capacidades-3 .title{
	font-size: 40px;
	color: #3d3d3d;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 20px;
}
#capacidades-3 .title b{
	color: #f6a428
}
#capacidades-3 article{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#capacidades-3 ul{
	margin: 0;
	padding: 0
}
#capacidades-3 ul li{
	list-style: none;
	padding-left: 19px;
	position: relative;
	color: #616161;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.1;
	margin-bottom: 10px
}
#capacidades-3 ul li:before{
	display: block;
	content: "";
	width: 12px;
	height: 12px;
	background: #f6a428;
	position: absolute;
	left: 0;
	top: 8px;
	border-radius: 50%;
}

#capacidades-4{
	height: 240px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: url('../images/nuestras-capacidades/bgTitle.webp') 0 0 no-repeat;
}
#capacidades-4 .title{
	font-size: 48px;
	color: #fff;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 15px
}
#capacidades-4 .text{
	font-size: 24px;
	color: #fff;
	font-weight: 400;
	line-height: 1.2;
	max-width: 1190px;
	margin: 0 auto
}

#capacidades-5{
	padding: 70px 0
}
#capacidades-5 .title{
	font-size: 48px;
	color: #2c2c2c;
	font-weight: 800;
	text-transform: uppercase;
	line-height: 1.2;
	margin-bottom: 40px;
	text-align: center;
}
#capacidades-5 .bloques{
	margin: 0 -18.5px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#capacidades-5 .bloques .item{
	padding: 0 18.5px 18px;
	font-size: 26px;
	color: #616161;
	line-height: 1.1
}
#capacidades-5 .bloques .item div{
	border: dashed 1px #c8c8c8;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 362px;
	height: 83px;
}

#investigacion-1{
	background: url('../images/investigacion-desarrollo/bg1.webp') center top no-repeat;
	padding: 135px 45px 0;
}
#investigacion-1 .container{
	max-width: 1500px;
	padding: 0 15px;
	margin: 0 auto
}
#investigacion-1 .title{
	font-size: 61px;
	color: #fff;
	font-weight: 800;
	line-height: 1.2;
	margin-bottom: 40px;
	text-align: center;
}
#investigacion-1 .title strong{
	display: block;
	color: #f6a428
}
#investigacion-1 .text{
	font-size: 22px;
	color: #fff;
	font-weight: 300;
	line-height: 1.5;
	margin-bottom: 60px;
	max-width: 1097px;
	margin: 0 auto 100px;
	text-align: center;
}
#investigacion-1 .title2{
	font-size: 48px;
	color: #fff;
	font-weight: 500;
	line-height: 1.2;
	padding-bottom: 100px;
	margin: 0 auto;
	text-align: center;	
}
#investigacion-1 .bloques{
	margin: 0 -30px;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
#investigacion-1 .bloques .item{
	padding: 0 30px 72px;
	font-size: 26px;
	color: #616161;
	line-height: 1.1;
	width: 33.3333%;
}
#investigacion-1 .bloques article{
	background: #efefef;
	border-radius: 20px;
	overflow: hidden;
	height: 100%;
}
#investigacion-1 .bloques figure{
	position: relative;
}
#investigacion-1 .bloques figure:before{
	display: block;
	content: "";
	height: 14px;
	background: #FFF;
	border-radius: 7px;
	width: 60%;
	bottom: -7px;
	left: 50%;
	transform: translateX(-50%);
	position: absolute;
}
#investigacion-1 .bloques .tit{
	text-align: center;
	font-size: 30px;
	color: #f6a428;
	text-transform: uppercase;
	line-height: 1.2;
	padding: 40px 10px 20px;
	font-weight: 600
}
#investigacion-1 .bloques .texto{
	text-align: center;
	font-size: 22px;
	color: #616161;
	line-height: 1.6;
	padding: 0 30px 35px;
	font-weight: 400
}

#investigacion-2{
	padding-bottom: 73px
}
#investigacion-2 .container {
  max-width: 1500px;
  padding: 0 15px;
  margin: 0 auto;
}
#investigacion-2 .box{
	background: url('../images/investigacion-desarrollo/bg2.webp') center top no-repeat;
	border-radius: 22px;
	height: 435px;
	display: flex;
	justify-content: center;
	align-items: center;	
}
#investigacion-2 .cnt{
	text-align: center;
}
#investigacion-2 .title{
	text-align: center;
	font-size: 48px;
	color: #fff;
	line-height: 1.2;
	font-weight: 800;
	background: #f6a428;
	height: 83px;
	border-radius: 24px;
	padding: 0 60px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto
}
#investigacion-2 .text{
	font-size: 36px;
	color: #fff;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	padding-top: 25px
}


/*Manufactura 360*/
#manufactura-1{
	padding-bottom: 140px
}
#manufactura-1 .container {
	max-width: 1594px;
	padding: 0 15px;
	margin: 0 auto;
}
#manufactura-1 .title{
	font-size: 61px;
	font-weight: 900;
	color: #f6a428;
	position: relative;
	text-align: center;
	line-height: 1.2;
	padding: 130px 0 45px
}
#manufactura-1 .title strong{
	display: block;
	color: #303030;
	line-height: 1;
}
#manufactura-1 .item{
	background: #efefef;
	min-height: 75px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 13px;
	border-radius: 4px;
	max-width: 1215px;
	font-family: "Montserrat", sans-serif;
	font-size: 28px;
	color: #474747;
}

#manufactura-2{
	background: url('../images/manufactura-360/bg.png') center center no-repeat;
	padding: 110px 0;
}
#manufactura-2 .title{
	font-family: "Montserrat", sans-serif;
	font-size: 72px;
	font-weight: 900;
	color: #f6a428;
	position: relative;
	text-align: center;
	line-height: 1.2;
	padding: 0;
	margin-bottom: 50px;

}
#manufactura-2 article{
	position: relative;
	max-width: 615px;
	margin: 0 auto;
}
#manufactura-2 article .info{
	position: absolute;
	font-family: "Montserrat", sans-serif;
	font-size: 30px;
	font-weight: 500;
	color: #FFF;
	height: 100%;
}
#manufactura-2 article .info-l{
	left: 0;
	top: 0;
}
#manufactura-2 article .info-r{
	right: 0;
	bottom: 0;
	text-align: right;
}
#manufactura-2 article .info div{
	position: absolute;
	min-width: 315px;
}
#manufactura-2 article .info div:after{
	display: block;
	content: "";
	background: #696969;
	height: 1px;
	width: 100%;
}
#manufactura-2 article  .info .ti:after{
	background: linear-gradient(90deg, rgba(105, 105, 105, 0.26) 0%, rgba(105, 105, 105, 1) 100%);	
}
#manufactura-2 article  .info .td:after{
	background: linear-gradient(270deg, rgba(105, 105, 105, 0.26) 0%, rgba(105, 105, 105, 1) 100%);
}

#manufactura-2 article .t1{
	left: -166px;
	top: 0;
}
#manufactura-2 article .t2{
	left: -297px;
	top: 160px;
}
#manufactura-2 article .t3{
	left: -310px;
	top: 315px
}
#manufactura-2 article .t4{
	left: -238px;
	top: 465px
}

#manufactura-2 article .t5{
	right: -168px;
	top: 0;
}
#manufactura-2 article .t6{
	right: -297px;
	top: 160px
}
#manufactura-2 article .t7{
	right: -310px;
	top: 315px
}
#manufactura-2 article .t8{
	right: -238px;
	top: 465px
}
#manufactura-2 article .t9{
	width: 520px;
	right: -230px;
	bottom: 0;
}

#titleContact{
	background: #3b3b3b;
	height: 290px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	color: #FFF;
	font-family: "Montserrat", sans-serif;
	font-size: 28px;
	font-weight: 300;
}
#titleContact:after{
	display: block;
	content: "";
	width: 0; 
  	height: 0;
  	border-left: 30px solid transparent;
  	border-right: 30px solid transparent;
  	border-top: 20px solid #3b3b3b;
  	position: absolute;
  	bottom: -20px;
  	left: 50%;
  	margin-left: -30px;
}
#titleContact .container >div{
	max-width: 1044px;
	margin: 0 auto;
	text-align: center;
}
#titleContact strong{
	color: #f59a00;
	font-weight: 800
}

#areaFormContact .container{
	max-width: 1330px;
	margin: 0 auto;	
	padding: 80px 15px;
}
#areaFormContact .titleForm{
	color: #f6a428;
	font-family: "Montserrat", sans-serif;
	font-size: 55px;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}
#areaFormContact .title2Form{
	color: #616161;
	font-family: "Montserrat", sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.1;
	text-align: center;
	padding: 25px 0
}

#frmContacto{
	overflow: hidden;
}

#frmContacto .row{
	margin: 0 -7.5px;
	flex-wrap: wrap;
}
#frmContacto .col{
	padding: 0 7.5px;
	width: 33.3333%;
	flex-basis: 33.3333%;
}
#frmContacto .form-group{
	margin-bottom: 15px
}
#frmContacto .form-control{
	display: block;
	width: 100%;
	height: 84px;
	-webkit-border-radius: 0;
	   -moz-border-radius: 0;
			border-radius: 0;
	font-family: "Poppins", serif;
	font-size: 14px;
	font-weight: 300;
	color: #979797;
	background: #f9f9f9;
	box-shadow: inset 0 1px 1px transparent;
	padding-left: 28px;
	padding-right: 28px;
	border: none;
}
#frmContacto .textarea{
	height: 159px;
	padding-top: 25px;
}

#frmContacto input[type=submit],
#frmContacto input[type=reset]{
	display:inline-block; 
	height:59px; 
	background: #f6a428; 
	color:#ffffff; 
	text-transform:uppercase; 
	font-family: 'Montserrat', sans-serif; 
	font-size:16px;
	width: 165px;
	text-align: center;
	font-weight: 600;
	border-radius: 5px;
	margin-top: 30px; 
	border: solid 1px #f6a428; 
	cursor: pointer;
}
#frmContacto input[type=submit]:hover,
#frmContacto input[type=reset]:hover{opacity:.8}
#frmContacto .error input,
#frmContacto .error textarea{border:solid 1px #000; background:rgba(255,216,217,1.00); color:#000;}

.frmContacto input::-webkit-input-placeholder {color:#686868; opacity:  1;}
.frmContacto input:-moz-placeholder {color:#686868; opacity:  1;}
.frmContacto input::-moz-placeholder {color:#686868; opacity:  1;}
.frmContacto input:-ms-input-placeholder {color:#686868; opacity:  1;}
.frmContacto textarea::-webkit-input-placeholder {color:#686868; opacity:  1;}
.frmContacto textarea:-moz-placeholder {color:#686868; opacity:  1;}
.frmContacto textarea::-moz-placeholder {color:#686868; opacity:  1;}
.frmContacto textarea:-ms-input-placeholder {color:#686868; opacity:  1;}
.frmContacto input:focus::-webkit-input-placeholder {opacity:0.5}
.frmContacto input:focus:-moz-placeholder{opacity:0.5}
.frmContacto input:focus::-moz-placeholder{opacity:0.5}
.frmContacto input:focus:-ms-input-placeholder{opacity:0.5}
.frmContacto textarea:focus::-webkit-input-placeholder{opacity:0.5}
.frmContacto textarea:focus:-moz-placeholder{opacity:0.5}
.frmContacto textarea:focus::-moz-placeholder{opacity:0.5}
.frmContacto textarea:focus:-ms-input-placeholder{opacity:0.5}
#frmContacto .has-error .form-control-feedback{line-height:36px; height:100%; }
#frmContacto .has-error input{
	border-color: #a94442;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
}

#datContact{
	background: #4e4e4e;
	padding: 70px 0;
}
#datContact .container{
	max-width: 1280px;
	padding: 0 15px;
	margin: 0 auto;
	color: #FFF;
}
#datContact .row{
	display: flex;
	justify-content: space-between;
}
#datContact .row .item{
	height: 65px;	
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Montserrat', sans-serif; 
	font-size: 24px;
	font-weight: 300;
	padding: 0 15px;
}
#datContact .row .item:nth-of-type(2){
	border-left: solid 1px #888888;
	border-right: solid 1px #888888;
	padding: 0 40px;
}
#datContact .row .item b{
	font-weight: 600
}

#mapa .titleUbica{
	height: 132px;
	background: #373737;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1.3;
	color: #FFF;
	font-size: 24px;
	text-align: center;
	padding: 0 15px
}
#mapa .titleUbica b{
	display: block;
	color: #f6a428;
	line-height: 1.2
}
#mapa .mapa iframe{
	height: 615px;
	display: block;
	width: 100%;
}
.cntCapt{
	display: inline-block;
	padding-top: 20px
}

/*Investigación*/
#videos-1{
	background: url('../images/investigacion-desarrollo/bg1.webp') center top;
	background-attachment: fixed;
	padding: 135px 45px 0;
	min-height: 398px;
	display: flex;
}
#videos-1 .container{
	max-width: 1670px;
	padding: 0 15px;
	margin: 0 auto
}
#videos-1 .title{
	font-size: 61px;
	color: #f6a428;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
}
#videos-1 .text{
	font-size: 48px;
	color: #fff;
	font-weight: 400;
	line-height: 1.5;
	margin: 0 auto;
	text-align: center;
}

#videos-2{
	padding: 112px 0 50px;
}
#videos-2 .container{
	max-width: 1686px;
	padding: 0 15px;
	margin: 0 auto
}
#videos-2 .title strong{
	display: inline-flex;
	background: #f6a428;
	height: 94px;
	justify-content: center;
	align-items: center;
	color: #FFF;
	min-width: 447px;
	padding: 0 50px;
	font-family: 'Montserrat', sans-serif; 
	font-size: 40px;
	font-weight: 800;
	border-radius: 19px 19px 0 0;
}
#videos-2 article{
	margin-bottom: 75px;
}
#videos-2 .info{
	background: #f5f5f5;
	padding: 42px 76px 8px;
}
#videos-2 .info .row{	
	display: flex;
	margin: 0 -17px;
}
#videos-2 .info .item{
	margin-bottom: 34px;
	padding: 0 17px;
}
#videos-2 .info .item a{
	display: flex;
	background: #FFF;
	height: 76px;
	border: dashed 1px #b4b4b4;
	font-family: 'Montserrat', sans-serif; 
	font-size: 19px;
	justify-content: center;
	align-items: center;
	color: #616161;
	width: 340px;
	line-height: 1
}
