
body{

	max-width: 100% !important;
    overflow-x: hidden !important;
    animation: fade 0.5s ease-in-out;
}

@keyframes fade {

	from {
    	opacity: 0
    }
    to {
    	opacity: 1
    }

}

html, body {
    scroll-behavior: smooth;
    background-color: #ffffff !important;
    
}
.contenedorBanner{
    
    position: relative;
    width: 100%;
    max-width: 1500px;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;


}


.bannerItems {

    display: flex;
    transition: transform 0.5s ease-in-out;



}

.bannerItems img {

    width: 100%;
    flex-shrink: 0;
	height: 800px


}

.bannerSlide {

    position: relative;
    width: 100%;
    flex-shrink: 0;

}


.fixedTitle {

    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;




}

.maintTitle {

    text-align: center;
    color: white;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.7);
    width: 80%;
    font-weight: bolder;
    pointer-events: auto;

}

h1 {

    
    font-size: 65px;

}

h3 {
    color: #292663;
    text-align: center;
    font-weight: bolder;
    font-size: 33px;
    margin-top: 100px;
}


h4 {
    font-size: 20px;
}

.hrLine {
    border: 0.5px solid #20c4f4;
    background-color:  #20c4f4;

}

.hrLineProducts {
    border: 1px solid #20c4f4;
    background-color:  #20c4f4;

}


.btnHistoria {

    background-color:  #20c4f4; 
    color: white;
    padding: 15px;
    font-size: 15px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0);
    transition: background-color 0.5s ease-in-out, color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    cursor: pointer;
    
}

.btnHistoria:hover {

    background-color: rgba(0, 0, 0, 0);
    border-color:  #20c4f4;
    border: 1px solid #20c4f4;
    color: #20c4f4;

}


.lineas {
    width: 1250px;
    height: auto;

    margin: auto;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 100px;
}

.slideLineas {
    
    display: flex;
    gap: 40px;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.lineasItem {

    width: calc((100% - 80px) / 3);
    flex-shrink: 0;
}

.lineasItem img {
    border-radius: 15px;
}


.lineaNombre {


    text-align: center;

}

.lineasMain {
    position: relative;
}

.btnLinea {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
}

.btnLinea button {
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0);
    display: flex;
    font-size: 120px;
    color: #20c4f4;
    transition: all 0.1s ease-out;
    margin: 50px;
}


.btnLinea button:hover{

  transform: scaleX(1.1);
  color: #199ec7; 
}


.marcas {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marcasFila {
    
    
    display: flex;
    width: max-content;
    align-items: center;
    animation: marcasAni 30s linear infinite;
   
}


.marcasFila2 {
    
    
    display: flex;
    width: max-content;
    align-items: center;
    animation: marcasAni 30s linear infinite;
    animation-direction: reverse;
   
}

@keyframes marcasAni {


    0% {
       
        transform: translateX(0%);
    
    }
    
    100% {

        transform: translateX(-50%);

    }

}

.marcasFila img {

    width: 100px;
    margin: 0 10px;
    flex-shrink: 0;



}


.marcasFila2 img {

    width: 100px;
    margin: 0 10px;
    flex-shrink: 0;



}

.proyectos {
    margin-top: 100px;
}
.proyectosFondo{
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    transition: transform 0.5s ease-in-out;
}

.proyectosFondo img{
    display: flex;
    width: 1100px;
    height: 600px;
    border-radius: 15px;
}


.fixedProyectos {

    position: absolute;
    top: 1;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;

}

.proyectosTitle {
    background-color: #ffffff;
    border-radius: 15px;
    width: 800px;
    height: 310px;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #292663;
    width: 80%;
    transition: opacity 0.5s ease-in-out;
}


.proyectosTitulo {
    font-size: 50px;
    margin-bottom: 15px;
    margin-top: 15px;
    color: #292663;
}

.proyectosSubtitulo {
    font-size: 21.5px;
    font-weight: lighter;
    margin-top: 0px;
}

.proyectosDescripcion {
    font-weight: 100;
    font-size: 20px;
    margin-top: 10px;
}

.contactanosTexto {
    font-size: 30px;
    margin-top: 20px;
}

.btnWhatsapp {
    text-decoration: none;
    color: #292663;
}



/*
|=========================================================================|
|                                                                         |
|                           VISTA DE CELULARES                            |
|                                                                         |
|=========================================================================|
*/

@media (max-width: 768px) {
	
    .contenedorBanner {
    	
        flex-direction: column;
        height: 550px !important;
        padding-top: 35px;
    
    }
    .bannerItems img {

        width: 100%;
        flex-shrink: 0;
	    height: 550px;


    }
    h1 {
    	
    	font-size: 24px !important;
    
    }
    
    .fixedTitle {

        position: absolute;
        top: 0;
        left: 0;

    }


    .mainTitle h1 {
    	
        font-size: 24px !important;
    
    }
    
    .mainTitle h2 {
    
    	font-size: 18px !important;
    
    }

	
    .marcasFila, .marcasFila2 {
    
    	display: flex;
        flex-wrap: wrap;
    	justify-content: center;
		gap: 15px;

    }


	.marcasFila img, .marcasFila2 img {
    
    	width: 80px !important;
        height: auto;
    
    }



	.lineas {
   	 	width: 100%;
    	height: auto;

   	 	margin: auto;
   	 	overflow: hidden;
   	 	border-radius: 15px;
    	margin-bottom: 100px;
	}

    .btnLinea {
        top: 20%;
        justify-content: center;
    }
    
	.btnLinea button {
        background-color: rgba(0, 0, 0, 0);
    	border-color: rgba(0, 0, 0, 0);
    	display: flex;
    	font-size: 55px;
    	color: #20c4f4;
        margin: 20px;
	}

    .btnLinea button img {
        width: 20px;
        height: auto;
    }
    .slideLineas {
    
        display: flex;
        gap: 0px;
    }

	.lineasItem {
   	 width: 100%;
     padding: 12px;
   	 flex-shrink: 0;
	}
    
    .fixedProyectos {

        position: absolute;
        top: 0;
        left: 0;


    }

	.proyectosTitulo {
    	font-size: 25px;
    	margin-bottom: 15px;
        margin-top: 15px;
    	color: #292663;
	}

	.proyectosSubtitulo {
    	font-size: 15.5px;
    	font-weight: lighter;
	    margin-top: 0px;
	}

	.proyectosDescripcion {
    	font-weight: 100;
    	font-size: 20px;
    	margin-top: 10px;
	}

	.contactanosTexto {
    	font-size: 25px;
    	margin-top: 20px;
	}   
    
    .btnWhatsapp img {
        width: 5%;
        height: 5%;
    }
    
}

@media (max-width: 414px) {



	.proyectosSubtitulo {
    	font-size: 15.5px;
    	font-weight: lighter;
	    margin-left: 2px;
        margin-right: 2px;
	}

    .contactanosTexto {
    	margin-top: 10px;
	}  

    
}