body{
  background: #fff;
  color: #1c1c1c;
  -moz-font-feature-settings: "kern";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
p{
  font-family: 'eina03-regularuploaded_file';
  font-size: .8rem;
}
a{
  text-decoration: none;
  /* cursor: pointer!important; */
}
h3{
  font-family: 'eina02-semibolduploaded_file';
}
.pl-2{
  padding-left: 2rem;
}
.pr{
  position: relative;
}
section{
  padding: 5rem;
}
ul li{
  list-style: none;
}
.form-control:focus{
  box-shadow: none;
}
textarea:focus-visible {
  border: none;
  outline: none;
  border-bottom: 1px solid #000;
}
.mr-left{
  margin-left: auto;
  display: block;
}
.mr-auto{
  margin-right: auto;
  display: block;
}
.bg-black{
  background-color: #1d1d1b!important;
}
.whats{
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
}
/* Hide Dropdowns by Default */
nav ul ul {
	display: none;
	position: absolute;
  padding: 1rem;
  left: -1rem;
	top: 2.2rem; /* the height of the main nav */
  background-color: #1d1d1b;
  box-shadow: 0px 8px 18px rgba(0,0,0,.5);
  border-radius: .5rem;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
	display:inherit;
}

/* Fisrt Tier Dropdown */
nav ul ul li {
	width:170px;
	float:none;
	display:list-item;
	position: relative;
}

/* Second, Third and more Tiers	*/
nav ul ul ul li {
	position: relative;
	top:-60px;
	left:170px;
}


/* Change this in order to change the Dropdown symbol */
li > a:after { content:  ' +'; }
li > a:only-child:after { content: ''; }
.nav-tel::after{
   content: '';
}


/* NAVBAR */
nav{
  position: relative;
}
nav.navbar{
  position: relative;
  z-index: 999;
  background: #1d1d1b;
  padding: 2.5rem 0;
  box-shadow: 0px 8px 18px rgba(0,0,0,.5);
}
nav .navbar-brand{
  position: absolute;
  left: 4%;
}
nav .navbar-brand img{
  max-width: 8rem;
}
.nav-link{
  color: #fff;
}
.sm-show{
  display: none;
}
nav.navbar .nav-item:last-child{
  position: absolute;
  right: 0;
  font-family: 'eina02-bolduploaded_file';
  color: #fff;
}
nav.navbar .nav-item{
  display: inline-block;
  font-family: 'eina03-regularuploaded_file';
}
nav.navbar .nav-item:last-child .nav-link{
  display: inline-block;
  font-family: 'eina02-bolduploaded_file';
}
.navbar-nav{
  position: relative;
  display: block;
  width: 100%;
}
.navbar-nav .nav-link.active,.nav-link:focus, .nav-link:hover{
  color: #fff;
}
.navbar-nav .nav-link.active::after,.nav-link:focus::after, .nav-link:hover::after{
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  display: block;
}
/* BUTTON */
.button {
	pointer-events: auto;
	cursor: pointer;
	background: #fff;
	border: none;
  border-radius: .5rem;
	padding: 1.5rem 3rem;
	margin: 0;
	font-size: .8rem;
	position: relative;
	display: inline-block;
}

.button::before,
.button::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.button--hyperion {
  font-family: 'eina03-regularuploaded_file';
	padding: .5rem 1rem;
	border: 2px solid #f8e7ba;
	overflow: hidden;
	color: #fff;
}

.button--hyperion span {
	display: block;
	position: relative;
}

.button--hyperion > span {
	overflow: hidden;
}

.button--hyperion > span > span {
	overflow: hidden;
	mix-blend-mode: difference;
}

.button--hyperion:hover > span > span {
	animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}

@keyframes MoveUpInitial {
	to {
		transform: translate3d(0,-105%,0);
	}
}

@keyframes MoveUpEnd {
	from {
		transform: translate3d(0,100%,0);
	}
	to {
		transform: translate3d(0,0,0);
	}
}

.button--hyperion::before {
	content: '';
	background: #f8e7ba;
	transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
	transform-origin: 100% 50%;
}

.button--hyperion:hover::before {
	transform: scale3d(0,1,1);
	transform-origin: 0% 50%;
}
/* GALERIA */
.galeria {
  max-width       : 100%;
  line-height     : 0;
  padding         : var(--separa);
  padding-right   : 0;
  display         : flex;
  flex-wrap       : wrap;
  justify-content : space-around;
}
.item {
  padding: var(--separa);
  width: 20%;
}
.item img {
  max-width : 100%;
  height    : auto;
  opacity   : 0.4;
  outline   : 3px solid #fff;
}
.item img:hover {
  opacity : 1;
  cursor  : pointer;
}
.modal {
  display: none;
}
.modal:target {
  display          : block;
  position         : fixed;
  top              : 0;
  left             : 0;
  width            : 100vw;
  height           : 100%;
  display          : flex;
  background-color : rgba(0,0,0,0.75);
}
.imagen {
  margin          : auto;
  width           : 100%;
  display         : flex;
  justify-content : center;
  align-items     : center;
}
@keyframes zoom {
  0%   { opacity: 0.2; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1);}
}
.imagen a { margin: 0 4px; }
.imagen img {
  max-width : 100%;
  width     : 80vw;
  height    : auto;
  border    : 8px solid #fff;
  animation : zoom 0.5s ease-in-out;
  position  : relative;
}
.imagen a:nth-child(2)::after {
  content       : "X";
  width         : 40px; height: 40px;
  line-height   : 40px;
  text-align    : center;
  font-size     : 2em;
  border-radius : 50%;
  /* border        : 2px solid hsla(0, 0%, 0%, 0.3); */
  /* background    : hsla(0, 0%, 0%, 0.5); */
  color         : #fff;
  position      : absolute;
  top           : 2vh;right: 2vw;
  z-index       : 1;
}
.imagen a:nth-child(2) {
  margin : 0;
  height : 100%;
}
.ant,.sig {
  width  : 0px; height: 0px;
  border : 20px solid transparent;
}
.ant { border-right: 20px solid hsla(0, 100%, 100%, 0.8); }
.sig { border-left: 20px solid hsla(0, 100%, 100%, 0.8); }
.ant:hover { border-right: 20px solid #fff; }
.sig:hover { border-left: 20px solid #fff; }

/* HEADER HOME */
header{
  /* background: #1d1d1b; */
  /* background-image: url('../img/bg-lineas.jpg'); */
  color: #fff;
  padding: 5rem 0;
}
header.header-home{
  background-image: url('../img/bg-lineas.jpg');
  overflow: hidden;
  /* padding-bottom: 0; */
  position: relative;
  /* height: 92vh; */
}
header.header-home .info-home{
  position: absolute;
  z-index: 10;
  max-width: 60%;
  margin-left: 20%;
}
header h1{
  font-family: 'eina01-bolduploaded_file';
  font-size: 6rem;
  line-height: 6rem;
}
header .img-home{
  /* margin-bottom: -2rem; */
  display: block;
  margin: auto;
}
.carousel-inner::after,.carousel-inner::before{
  background: linear-gradient(to right, #1d1d1b 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100%;
  position: absolute;
  width: 10%;
  z-index: 2;
}
.carousel-inner::before{
  background: linear-gradient(to left, #1d1d1b 0%, rgba(255, 255, 255, 0) 100%);
  right: 0;
}
.carousel-control-next, .carousel-control-prev{
  z-index: 4;
}
.info-home p{
  padding-right: 40%;
  text-align: justify;
}
section.servicios{
  padding: 0;
  overflow: hidden;
}
section.servicios .cont-servicios{
  padding: 5.5rem 0;
  /* border-left: 1px solid #c1c2c2;
  border-right: 1px solid #c1c2c2; */
}
.marco-lateral{
  border-left: 1px solid rgba(193,194,194,.3);
  border-right: 1px solid rgba(193,194,194,.3);
}
.marco-right{
  border-right: 1px solid rgba(193,194,194,.3);
}
.marco-left{
  border-left: 1px solid rgba(193,194,194,.3);
}
.marco-inferior{
  border-bottom: 1px solid rgba(193,194,194,.3);
  width: 110vw;
  margin: auto;
  margin-left: -25%;
  display: block;
}
section.servicios .cont-servicios img{
  display: block;
  margin-left: auto;
}
section.servicios p{
  font-family: 'eina02-semibolduploaded_file';
  font-size: .8rem;
}
section.banner{
  padding: 1rem 4rem;
  background-image: url('../img/bandera-mexico.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}
section.banner .experiencia{
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .5rem;
}
section.banner img{
  margin-left: auto;
  display: block;
}
section.banner .frase-banner{
  font-family: 'eina01-bolduploaded_file';
  color: #f8e7ba;
  font-size: 4.5rem;
  line-height: 4rem;
}
section.banner .cont-btn{
  margin-left: auto;
  display: block;
  text-align: right;
  margin-top: 2rem;
}
section.financiamiento{
  overflow: hidden;
}
section.financiamiento span{
  text-transform: uppercase;
  font-weight: 600;
  /* letter-spacing: .2rem; */
}
section.financiamiento .marco-inferior{
  margin-top: 4rem;
}
section.financiamiento h3{
  font-size: 2rem;
  padding-right: 4rem;
}
section.financiamiento p{
  font-size: 1.2rem;
  font-weight: 100;
}
section.financiamiento img{
  max-width: 8rem;
}
section.productos{
  overflow: hidden;
}
section.productos h2{
  font-size: 2.8rem;
  font-family: 'eina02-semibolduploaded_file';
}
section.productos h2 span{
  display: block;
  font-family: 'eina01-lightuploaded_file';
  text-transform: uppercase;
  font-size: 1.5rem;
}
section.productos .description-p{
  display: inline-block;
  margin: 0;
  padding: 0 1.5rem;
  max-width: 70%;
}
section.productos .categoria::before{
  background-color: transparent;
}
section.productos .categoria{
  font-family: 'eina02-bolduploaded_file';
  border: none;
}
section.productos .marco-inferior, section.bandas-home .marco-inferior{
  width: 120%;
  margin-left: -10%;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
section.productos .img-producto{
  transition: all .5s ease;
  border: 1px solid rgba(14,14,14,.4);
}
section.productos .img-producto:hover{
  box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}
section.productos .cont-producto{
  position: relative;
  font-family: 'eina02-bolduploaded_file';
  margin-top: 4rem;
}
section.productos .cont-producto h2,section.productos .cont-producto h3{
  margin: 1.5rem auto;
  font-size: 1.6rem;
}
section.productos .cont-producto .border-detalles-producto{
  border-left: 1px solid rgba(14,14,14,.5);
  padding-left: 1rem;
}
section.productos .cont-producto span{
  display: block;
}
section.productos .cont-producto span.info{
  font-family: 'eina03-regularuploaded_file';
  font-size: .9rem;
}
section.productos .cont-btn{
  margin: 2rem auto;
  display: block;
  text-align: center;
}
section.productos .cont-btn .button--hyperion{
  padding: .3rem 2.8rem;
}
section.bandas-home{
  overflow:hidden;
  background: #1d1d1b;
  color: #fff;
}
section.bandas-home h2{
  font-family: 'eina01-bolduploaded_file';
  font-size: 3.2rem;
}
section.bandas-home ul{
  padding: 0;
}
section.bandas-home ul li{
  list-style: none;
  margin: 1rem auto;
}
section.bandas-home .foto-bandas-home{
  position: relative;
}
section.bandas-home .foto-bandas-home h3{
  font-family: 'eina01-bolduploaded_file';
  font-size: 3rem;
  position: absolute;
  bottom: 2rem;
  left: 60%;
}
.description-fabricantes{
  margin: 2rem auto;
  display: block;
  font-family: 'eina03-regularuploaded_file';
  font-size: 1.1rem;
}

/* FICHAS TECNICAS */
header.header-fichas{
  background-image: url('../img/bg-lineas.jpg');
  padding-bottom: 0;
  background-size: contain;
}
header.header-fichas h1 span{
  display: block;
}
header.header-fichas .img-ficha{
  margin-bottom: -3rem;
}
section.info-ficha{
  overflow: hidden;
}
section.info-ficha .txt-ficha{
  font-family: 'eina01-bolduploaded_file';
  display: block;
  font-size: 3rem;
  margin: 2rem auto 1rem auto;
}
section.info-ficha p{
  padding-right: 10%;
}
section.info-ficha ul li{
  font-family: 'eina03-regularuploaded_file';
  font-size: .8rem;
}
.img-pm50{
  margin-top: -10%;
}
.img-silos{
  margin-top: -15%;
}
.img-pm30{
  margin-top: -15%;
}
section.info-ficha ul li span{
  font-family: 'eina01-bolduploaded_file';
}
section.info-ficha table{
  width: 90%;
  margin: auto;
  border: 1px solid rgba(214, 214, 214, 0.5);
}
section.info-ficha table tbody tr td{
  font-family: 'eina03-regularuploaded_file';
  border: 1px solid rgba(214, 214, 214, 0.5);
}
section.info-ficha table tbody tr td span{
  display: block;
  padding: 0.2rem 1.5rem;
  font-size: .9rem;
}
section.info-ficha form span,header.header-contacto form span{
  font-family: 'eina01-bolduploaded_file';
  font-size: 1.5rem;
}
section.info-ficha .form-control,header.header-contacto form .form-control{
  width: 78%;
  display: inline-block;
  border: none;
  border-bottom: 1px solid rgba(214, 214, 214, 1);
  border-radius: 0;
}
section.info-ficha label,header.header-contacto form label{
  font-family: 'eina03-regularuploaded_file';
  width: 20%;
  font-size: .9rem;
}
.line-empresa{
  width: 88%!important;
}
section.info-ficha .flecha-ficha{
  margin-top: -8rem;
}
.label-2{
  width: auto!important;
}
.marco-inferior-ficha{
  border-bottom: 1px solid rgba(193,194,194,.3);
  width: 110vw;
  margin: auto;
  margin-left: -10%;
  display: block;
}
textarea{
  border: none;
  border-bottom: 1px solid rgba(214, 214, 214, 1);
  display: inline-block;
  width: 88%;
}
.btn-form{
  width: 100%;
  background-color: #f8e7ba;
  border-radius: 0;
  font-family: 'eina01-bolduploaded_file';
  padding: 1rem;
}
.btn-form:hover{
  border: 2px solid #f8e7ba;
}
section.info-producto{
  background-color: #1d1d1b;
  color: #fff;
}
section.marco{
  border-top: 1px solid rgba(214,214,214,.4);
  border-bottom: 1px solid rgba(214,214,214,.4);
}
header.header-productos{
  background-image: url('../img/bg-lineas.jpg');
  background-size: contain;
}
header.header-productos h1 span{
  display: block;
}
section.info-producto h2{
  font-family: 'eina01-bolduploaded_file';
  font-size: 3rem;
}
section.info-producto ul li{
  margin: .5rem auto;
}
section.info-producto h2::after{
  content: url('../img/flecha-blanca.png');
  margin-left: 2rem;
}
section.info-producto .cont-btn{
  margin: auto;
  text-align: center;
}
section.info-producto .cont-btn a{
  padding: .5rem 1.5rem;
}
section.info-producto .cont-foto-concretera{
  position: relative;
}
section.info-producto .cont-foto-concretera span{
  position: absolute;
  font-family: 'eina01-bolduploaded_file';
  font-size: 3rem;
  bottom: 1rem;
  right: 25%;
  line-height: 3rem;
}
header.header-contacto{
  background-color: #fff;
  padding: 0;
  overflow: hidden;
}
header.header-contacto form{
  padding: 5rem 25% 5rem 2rem;
  color: #1d1d1b;
}
header.header-contacto .info-home{
  padding: 5rem;
}
header.header-contacto .info-home p{
  margin-bottom: 2rem
}
header.header-contacto .info-home h1,header.header-contacto .info-home p{
  text-align: right;
  padding-right: 10%;
}
header.header-contacto .info-home img{
  margin: 5rem auto;
}
header.header-nosotros {
    background-image: url('../img/bg-lineas.jpg');
    background-size: contain;
    overflow: hidden;
}
header.header-nosotros .title-nosotros{
  font-family: 'eina01-bolduploaded_file';
  font-size: 6rem;
  text-align: center;
  display: block;
}
header.header-nosotros .cont-title-nosotros{
  max-width: 60%;
  margin: 4rem auto auto;
}
header.header-nosotros .cont-title-nosotros span{
  font-family: 'eina01-bolduploaded_file';
  font-size: 2.2rem;
}
header.header-nosotros .cont-title-nosotros span::after{
  content: url('../img/flecha-blanca.png');
  margin-left: 2rem;
}
header.header-nosotros .img-nosotros{
  margin: 8rem auto;
}
header.header-nosotros .button{
  margin-left: 5rem;
}
header.header-nosotros .marco-inferior-ficha{
  max-width: 200vh;
  margin-left: -20%;
  margin-top: 2rem;
}
/* FOOTER */
footer{
  background: #313131;
  color: #fff;
  padding: 4rem;
}
footer ul{
  font-weight: bold;
}
footer ul li{
  list-style: none;
}
footer ul li:first-child{
  margin-top: 1rem;
}
footer ul li a{
  color: #fff;
  font-family: 'eina03-regularuploaded_file';
  font-size: .8rem;
}
footer img{
  display: block;
  margin: auto;
}
