@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&family=Poppins:wght@400;700&family=Roboto&display=swap');
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
	font-size: 10px;
}


/*  Por arreglar*/
.header{
    background-color: #ffffff;
    height: 80px;
    width: 100%;
  
    box-shadow: 0px 5px 15px -10px rgb(61, 61, 61);


}
.barra{
    background-color: #569643;
    height: 20px;
    width: 100%;
    color: #ffffff;
   
    
}
a .barra{
    color: #ffffff;
}
/*Apartado de cotizacion en pagina principal*/
.apartado{
    background-color: #484749;
    min-height: 38vh;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(72, 72, 75, 0.7)),url(img/puertabanner.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
    margin-top: 10%;

}/*  Por ver*/

.sub-header{
    height: 65vh ;
    width: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7)),url(img/puertabanner.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 0;

}
.banner{
    height: 75vh;
    width: 100%;
    background-image: linear-gradient(rgba(49, 49, 49, 0.7),rgba(0, 0, 0, 0.7)),url(img/puertas2.jpeg);
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 0;

}
#logo{
    width: 120px;
    transform: translateY(-10%);
}
#logoFooter{
    width: 200px;
}
/* Estilo del nav bar */
nav{
    display: flex;
    padding: 0.6% 4%;
    justify-content: space-between;
    align-items: center;
}
/* Tamaño logo*/
nav img{
    width: 150px;
}
/* diseño botones de navegacion */
.nav-links{
    flex: 1;
    text-align: right;
}
/* diseño botones de navegacion */
.nav-links ul li{ 
    list-style: none;
    display: inline-block;
    padding: 20px 12px;
    position: relative;
}
/* diseño texto botones de navegacion */
.nav-links ul li a{ 
color: rgb(0, 0, 0);
text-decoration: none;
font-size: 15px;
}
/* diseño botones underline */
.nav-links ul li::after{ 
    content: '';
    width: 0%;
    height: 2px;
    background: #ED1C24;
    display: block;
    margin: auto;
    transition: 0.5s;
}
/* tamaño linea */
.nav-links ul li:hover::after{
    width: 100%;

}
/* Estilo de Banner en pagina principal */
.text-box{
    width: 90%;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
/* Texto del banner de la pagina principal   */
.text-box h1{
    font-size: 62px;

}
/* Texto del apartado */
.text-box h2{
    font-size: 40px;
    margin-bottom: 40px;

}
/* Estilo para las etiquetas p del banner */
.banner .text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: #fff;
    
}
/* Estilo para las etiquetas p */
.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: #fff;
    
}

/* diseño boton  */
.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: #5a9c34;
    position: relative;
    cursor: pointer;
    
}
/* hover boton */
.hero-btn:hover{
    
    background: #436e2a;
    transition: 1.5s;
    color: white;
    
}
@media (max-width: 1700px){
    .carousel-caption h5{
        font-size: 70px;
        font-weight: bold;
    }
    .carousel-caption p{
        font-size: 13px;
        color: rgb(255, 255, 255);
        
    }
    .carousel-caption{
        margin-bottom: 90px;
    }
    .hero-btn{
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* esconder el icono del menu en formato web */
nav .fas{
    display: none;
}
/* Codigo para la responsividad */

@media (max-width: 700px){

    .carousel-caption h5{
        font-size: 35px;
        font-weight: bold;
    }
    .carousel-caption p{
        font-size: 13px;
        color: rgb(255, 255, 255);
        
    }
    .carousel-caption{
        margin-bottom: 80px;
    }
    
    .carousel-item {
        height: auto;
        background: no-repeat scroll center scroll;
        background-size: cover;
      
    }

    .carousel-item img{
        height: 370px;
    }
    .hero-btn{
        padding: 10px 20px;
        font-size: 13px;
    }
    .header{
        height: 80px;
    }
    .nav-links ul li{ 
        display: block;
        margin-top: -10px;
    }
    .nav-links ul li a{ 
        color: #FFF;
    }
    .nav-links ul li::after{ 
        content: '';
        width: 0%;
        height: 2px;
        background: #ED1C24;
        display: block;
        margin-left: 0px;
        transition: 0.5s;
    }
    /* tamaño linea */
    .nav-links ul li:hover::after{
        width: 70%;
    
    }
    .nav-links{
        position: fixed;
        background: #7a797a;
      
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fas{
        display: block;
        color: rgb(65, 65, 65);
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
        transform: translateY(50%);
    }
    .nav-links ul{  
        padding: 30px;
    }
    #logo{
        width: 100px;
        transform: translateY(30%);
    }
    .container{
        flex-direction: column;
    }   
    .sub-header h1{
        font-size: 21px;
        
    }
    .sub-header{
        height: 370px;

    }
    .banner {
        height: 400px;
    }

    .text-box h2{
        font-size: 20px;
    }
    .text-box h1{
        font-size: 40px;
        margin-top: 70px;
    }
    .text-box p{
        font-size: 17px;
        margin-top: 5px;
    }
    .banner .text-box p{
        font-size: 17px;
        margin-top: 5px;
    }
    /*Las filas quedan en forma vertical */
    .row  {
     
        flex-direction: column;
    }
    .row  #marginT110{
        margin-top: 60px;
    }
    .row  #marginT80{
        margin-top: 10px;
    }
    /*Imagen en aparatado productos */
   
    .layered-img .imagen{
        height: 300px;
       
    }
    .layered-img .image-overlay {
        height: 120px;
        width: 300px;
    }
    /*
    .contacto-col img{
        height: 250px;
        width: auto;
    }
    */
    .row .contacto-col div{
        margin-left: -100px;
    }
    .productoscenter{
        text-align: center;
    }
    /*Botón WhatsApp*/
    .btn-wsp{
        width:63px;
        height:63px;
        line-height: 66px;
	}
    /*Responsividad imagen apartado productos*/
    .col-md-4 img{
        margin-top: 10px;
        width: 220px;
        height: 220px;
    }
 section .locacion{
       margin-left: 0px;
       width: 100%;
       margin-bottom: 40px;
       
   }
   .contactanos .row .contacto-col{
       margin-top: 50px;
   }

}


/* edicion de la etiqueta h1 */
h1{
    font-size: 30px;
    font-weight: 500;
    
}
/* texto de la pagina de contacto */
.contacto-col h1{

    font-weight: 500;
}
/*Imagen apartado productos */
.imagenP{
    width: auto;
    height: 450px;
}




/* edicion de la etiqueta h3 */
h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
}

/* estilo del formulario de contacto*/
.row{
    margin-top: 5%;
    
    display: flex;
    justify-content: space-between;
}
/* edicion del estilo de los section productos y servicios */
.contenido{
    width: 90%;
    margin: auto;
    text-align: center;
    padding-top: 60px;
}
/* edicion del estilo de las columnas de los section de productos y servicios */
.contenido-col{
    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    width: 250px;
		margin: 0 20px;
		

}


a {
	text-decoration: none;
}

/* edicion de la etiqueta p */
p {
	color: black;
	font-size: 1.4rem;
	margin-top: 5px;
	line-height: 2.5rem;
	font-weight: 300;
	letter-spacing: 0.05rem;
}

/*
img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
*/ 
/*Tamaño de imagen de productos en pagina principal*/
.imagen{
    height: 320px;
    width: auto;
}
/* hover de no disponible para productos  */


.layered-img{
    position: relative;
}
.image-overlay{
    position: absolute;
    top:0px;
    left:0px;
    opacity: 0.8;
}


/*
.section-title {
	font-size: 4rem;
	font-weight: 300;
	color: black;
	margin-bottom: 10px;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	text-align: center;
}


.brand h1 {
	font-size: 3rem;
	text-transform: uppercase;
	color: white;
}
.brand h1 span {
	color: #9a35b6;
}
*/




/* Contacto */
.contactanos{
    width: 70%;
    margin: auto;
 
    
    
}

.productosCol{
    width: 60%;
    margin: auto;
}
/*Agregar margin top al apartado de contacto y productos*/
#marginT80{
    margin-top: 80px;
}
#marginT110{
    margin-top: 190px;
}
/* Editar los valores del map que se encuentra en contacto*/
.locacion{

   margin-left: 100px;
     width: 60%;

}
.locacion iframe{
    width: 100%;
}
.locacion h1{
    text-align: center;
    margin-bottom: 30px;
}

/*Edicion del formulario de contacto */
.contacto-col{
    flex-basis: 48%;
    margin-bottom: 30px;

}
.contacto-col div{
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}
/* Estilo Text area de contacto*/
.contacto-col input, .contacto-col textarea{
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 15px;
}
/*Estilo de los iconos que se encuentran en contacto */
.contacto-col div .fas{
    font-size: 28px;
    margin: 10px;
    margin-right: 25px;
    color: #ED1C24;
}
.row .fas{
    font-size: 20px;
    
    margin-right: 15px;
    color: #ED1C24;
}
.row span h2 i{
    margin-right: 100px;
    
}
.row span p{
    margin-left: 20px;
}
.row span h2 .fas{
    align-content: space-between;
}
/*@media (max-width: 700px){}*/
/* Le da estilo al boton del form de contacto*/
.btnC{
    border: 1px solid #421C52;
    background: transparent;
    color: #421C52;
    padding: 15px 10px;
}


/*------*/

/*Edicion del boton de wsp */
.btn-wsp{
    position:fixed;
    width:60px;
    height:60px;
    line-height: 63px;
    bottom:25px;
    right:25px;
    background:#25d366;
    color:#FFF;
    border-radius:40px;
    text-align:center;
    font-size:35px;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
    z-index:100;
    transition: all 300ms ease;
}
/*Estilo al pasar el mouse por arriba del boton de whatsapp */
.btn-wsp:hover{
    background: #20ba5a;
    color: white;
}
/*
@media only screen and (min-width:320px) and (max-width:768px){
    .btn-wsp{
        width:63px;
        height:63px;
        line-height: 66px;
	}
}

*/

.footerG{
	background-image: linear-gradient(60deg, #646363 0%, #646363 100%);
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	
	text-align: left;
	font: bold 16px sans-serif;
	padding: 30px 50px;
}
/*El contenido queda alineado horizontalmente */
.footerG .footer-izquierda,
.footerG .footer-center,
.footerG .footer-derecha{
	display: inline-block;
	/*
	vertical-align: top;
	*/
}

/* Ancho del apartado de menú y logo*/
.footerG .footer-izquierda{
	width: 40%;
}



/* Diseño de los items del menú */
.footerG .footer-links{
	color:  #ffffff;
	margin: 20px 0 12px;
	padding: 0;
}

.footerG .footer-links a{
	display:inline-block;
	line-height: 1.8;
  	font-weight:400;
	text-decoration: none;
	color:  inherit;
}
/*
.footerG .footer-company-name{
	color:  #222;
	font-size: 14px;
	font-weight: normal;
	margin: 0;
}
/*
/* Footer Center */

.footerG .footer-center{
	width: 35%;
	
}
/*Diseño de iconos*/
.footerG .footer-center i{

	color: #ED1C24;
	font-size: 25px;
	width: 38px;
	height: 38px;
	text-align: center;
	line-height: 42px;
	margin: 8px 15px;


}
/*Diseño texto contacto */
.footerG .footer-center p{
	display: inline-block;
	color: #ffffff;
  	font-weight:500;
	vertical-align: middle;

}
/* Diseño de la ubicacion*/
.footerG .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}
/*Diseño del correo */
.footerG .footer-center p a{
	color:  #ffffff;
	text-decoration: none;
}
/*Diseño separadores links */
.footerG .footer-links a:before {
  content: "|";
  font-size: 15px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}
/*Para que el "Home" no tenga la linea */
.footerG .footer-links .link-1:before {
  content: none;
}

/* Footer Right */

.footerG .footer-derecha{
	width: 20%;
}
/*"Sobre la empresa" diseño de font texto*/
.footerG .footer-empresa{
	line-height: 20px;
	color:  #ffffff;
	font-size: 13px;
	font-weight: normal;
	margin: 0;
}
/*"Sobre la empresa" estilo titulo */
.footerG .footer-empresa span{
	display: block;
	color:  #ffffff;
	font-size: 17px;
	margin-bottom: 20px;
    padding-top: 10px;
}
/* Iconos de redes sociales*/
.footerG .footer-icons{
	margin-top: 10px;
    margin-left: 12px;
}
/*color y tamaño de iconos de redes sociales */
.footerG .footer-icons a{
	display: inline-block;
	width: 35px;
	height: 35px;
	cursor: pointer;
	font-size: 30px;
	color: #ffffff;
	
}

/* Responsividad*/

@media (max-width: 700px) {
	.footerG .footer-izquierda,
	.footerG .footer-derecha{
	
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}
  .footerG .footer-center{
    display: block;
		width: 100%;
		margin-bottom: 40px;
  }
  img.mision {
      width: 25em;
      height: auto;
      display: block;
      margin: auto;
      text-align: center;
  }
  img.nosotros {
    width: 25em;
    height: auto;
    margin-left: 0;
    display: block;
    margin: auto;
    text-align: center;
  }
  
}












@media screen and (max-width: 640px){
    .container{
      display: block;
      width: 100%;
    }
  }
  
  @media screen and (min-width: 900px){
    .container{
      width: 33.33333%;
    }

  }

  @media screen and (min-width: 768px) and (max-width: 1000px) {
    .row {
        flex-direction: column;

    }
    div.col {
        width: 100%;
    }

    img.nosotros {
    display: block;
     margin: auto;
     text-align: center;
     
    }
  
  }
  
  
  .content {
    position: relative;
    width: 100%;
   
    margin: auto;
    overflow: hidden;
  }
  
  .content .content-overlay {
    background:#141414bb;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
  }
  
  .content:hover .content-overlay{
    opacity: 1;
  }
  
  .content-image{
    width: 100%;
    height: 300px;
  }
  
  .content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
  }
  
  .content:hover .content-details{
    top: 50%;
    left: 50%;
    opacity: 1;
  }
  
  .content-details h3{
    color: #fff;
    font-weight: 200;
    font-size: 2.5em;
    letter-spacing: 0.10em;
    margin-bottom: 0.5em;

  }
  
  .content-details p{
    color: #fff;
    font-size: 1,3em;
    text-align: center;
    word-wrap: break-word;

  }
  
  .fadeIn-bottom{
    top: 80%;
  }
  
  .card {
    box-shadow: 0 2px 3px rgba(0,0,0,0.15);
    transition: box-shadow 0.4s ease-in-out;
  }
  .card:hover {
    box-shadow: 0 5px 10px rgba(44, 44, 44, 0.233);
  }

  
.banner h1{
    font-weight: 700;
}
.banner p{
    font-size: 2em;
}

.mision {
    width: 550px;
    height: 350px;
}
.nosotros {
    width: 500px;
    height: 300px;
    margin-left: 100px;
    
}

#padding-card{
padding : unset;
    
}
}
