.text-decoration-none{
	text-decoration: none !important;
}

.cursor-pointer{
	cursor: pointer;
}

.text-center{
	text-align: center;
}

.text-white{
	color:white !important;
}

.text-red{
	color:var(--red-color);	
}

.text-black{
	color:#1a1a1a !important;
}

.bg-black{
	background:#1a1a1a;
}

.bg-red{
	background:var(--red-color);
}

.text-social{
	color:var(--social-color) !important;
	text-decoration: none;
}

.bg-sand{
	background: var(--sand-color);
}

.text-social:hover, .btn-border-white:hover, input[type=submit]:hover, #cargar_mas:hover{
	opacity: .8;
}

.img-fluid{
	max-width: 100% !important;
}

.btn-border-white{
	border:1px white solid;
	padding:15px;
	display: block;
    text-align: center;
    max-width: 255px;
    margin:0px auto;
}

.text-gray{
	color:var(--gray-color) !important;
}

.border-top-gray{
	border-top:1px #A9AAAA solid;
}

.large-text{
	font-size:24px;
	line-height: 32px;
}

.text-ligth{
	font-weight: 200;
}

.categorias{
	list-style: none;
	padding:0px;
}

.categorias li{
	padding-bottom: 5px;
	padding-right:25px;
	margin-bottom:15px;
	font-size:18px;
	font-weight: bold;
	color:#606060;
	cursor: pointer;
	border-bottom:1px transparent solid;	
	position: relative;	
	transition: all 1s ease;	
}

.categorias li:before{
	transform: rotate(0deg); /* Ajusta el ángulo de rotación aquí */
	transition: all 1s ease;
}

.categorias li:hover:before, .categorias li.active:before{
	content: '';
  position: absolute;
  top: 5px;
  right: 10px;
  width: 15px;
  height: 15px;
  background-image: url(../images/plus.svg);
  background-size: cover;
  background-position: 100%;    
  z-index: -1;
}

.categorias li.active:before{
	transform: rotate(315deg); /* Ajusta el ángulo de rotación aquí */
}

.categorias li.active, .categorias li:hover{
	border-bottom:1px #1C1818 solid;
}

.categorias li span{
	font-size:11px;
	font-weight: normal;
	padding-right:25px;
}

.imagen-producto{
	width:100%;
	height:550px;
}

#images-container{
	overflow-y:scroll;
	max-height:600px;	
	padding-right:15px;		
	width: 100%;
	height:0px;
	transition: height 1s ease-out;
}

#images-container.muestra{
	height: 600px;	
}

#services .bg{
	position: relative;
}

#services .bg:before{
	content:'';
	position: absolute;
	left:0px;
	top:0px;
	width:45%;
	height:100%;
	background: #F7F5F5;
	z-index: -1;
}

#galeria .item {
    height: 740px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
    margin: 15px 30px;
    background-size: contain !important;
    background-color: #000 !important;
}

#galeria .item h1{
	font-size:18px;
	line-height: 22px;
	font-weight: bold;
	color:white;
	margin:0px;
	text-align: left;
}

#galeria .item h2{
	font-size:16px;
	line-height: 19px;
	font-weight: normal;
	color:white;
	margin:0px;
	text-align: left;
}

.controls{		
	padding-top:15px;
	border-top:1px #EEEEEE solid;
}

.custom-prev, .custom-next{
	display: flex;
	align-items: center;
	cursor: pointer;	
	font-size:13px;
	font-weight: 400;
}

.custom-next{	
	justify-content: flex-end;
}

div.mole{
	background:url(../images/mole.jpg) no-repeat center center / cover;
	width:100%;
	height:640px;
	margin:100px 0px;
	background-attachment: fixed;
}

.logos-clientes .col{
	display: flex;
	align-items: center;
	justify-content: center;
}

.logos-clientes img{
	object-fit: contain;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background:#A9AAAA;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #7F693A;  
}

.small-text{
	font-size:12px;
	line-height: 14px;
	font-weight: normal;
}

footer{
	font-size:15px;
	line-height: 18px;
	font-weight: normal;
}

@media all and (min-width: 1023px){
	.bg-red-desktop{
		background:var(--red-color);
	}
}

@media all and (max-width: 1200px){
	#galeria .item{
		height:440px;
	}
}

@media all and (max-width: 991px){
	#services .bg{
		padding-top:30px;		
	}
	#services .bg:before{
		width:100vw;
	}
	header img.logo{
		max-width: 50vw;
	}
	.sticky{
		position: relative;
		top:auto;
	}
	.menu-header{
		width: 300px;
    height: 100vh;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: -300px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;    
    padding: 30px;
    overflow-y: auto;
    transition: all .2s ease-out;
    transition: all .2s ease-in;
    box-shadow: 0 0 3px rgba(0,0,0,.6);
    background:#1a1a1a;
	}

	body.open .menu-header{
		right:0px;
	}

	body.open .overlay-menu{
		display: block;
    background-color: rgba(0,0,0,.4);
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
	}
	nav ul{
		flex-direction: column;
		text-align: center;
		justify-content: flex-start;
	}

	nav ul li{
		margin:15px 0px;
	}

	.menu-icon{
		font-size: 40px;
		cursor: pointer;
		color:white;
	}

	.close-icon{		
		position: absolute;
  	top: 15px;
  	right: 15px;
  	cursor: pointer;
  	color:white;
	}	

	.categorias{
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}

	.categorias li{
		margin:5px 10px;
		padding-right: 40px;
	}

	.categorias li span{
		padding-right:5px;
	}

	/*#images-container{
		overflow-y:scroll;
		max-height:600px;	
		height:0px;
		padding-right:15px;		
		width: 100% !important;
		transition: all 1s ease-out;
	}

	#images-container.muestra{
		height:600px;
	}*/
}

@media all and (max-width: 767px){
	#galeria .item{
		height:100vw;
		padding:10px;
		margin:10px;
	}

	#galeria .item h1{
		font-size: 12px;
		line-height: 15px;
		letter-spacing: 12px;
	}

	#galeria .item h2{
		font-size:10px;
	}
}

@media all and (max-width: 480px){
	footer{
        font-size:12px;
    }
}

