@font-face {
	font-family: Monserrat;
    src: url(../fonts/Montserrat-Medium.ttf);
}
.oswald {
	font-family: Oswald;
	font-weight: 500;
	font-size: 38px;
	line-height: 30px;
	color: #fff;
    text-shadow: 2px 2px #100;
}

.container-carousel {
    position: relative;
    width: 100%;
    background-color: #e0e0e0;
    overflow: hidden;
    height: 50vh;
    min-height: 300px;
    top: 70px;
}

.carruseles {
    width: 500%; /*Aumenta el tamaño de la imagen */
    height: 100%;
    display: flex;
    position: absolute;
}

.slider-section {
    width: calc(100% / 5);
    height: 100%;
	position: relative;
}
.slider-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
	height: 200px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    pointer-events: none; /* Permite clics a las imágenes debajo */
 
}

.carru-titu {
    max-width: 600px;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white; /* Change as needed */
    font-size: 2em; /* Adjust size as needed */
    text-align: center;
    z-index: 2; /* Ensure the title is above other elements */
     
}

.subtitulo {
	display: block;
    max-width: 750px;
    margin-top: 45px;
	font-family: Monserrat; 
	font-size: 15px;
	color:#fff; 
	text-shadow: 2px 2px #100;
	position: absolute;
	letter-spacing: 1px;
	line-height: 20px;
  
}	
.slider-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	    
}

.btn-left,
.btn-right {
    display: flex;
    position: absolute;
    top: 50%;
    font-size: 1rem;
    background-color: transparent;
	color: transparent;
    border-radius: 50%;
    padding: 8px;
    font-weight: 100;
    cursor: pointer;
    transform: translate(0,-50%);
    transition: .5s ease;
    user-select: none;
}

.container-carousel:hover .btn-left,
.container-carousel:hover .btn-right {
    background-color: #333333d4;
    color: #fff;
}

.btn-left {
    left: 20px;
}

.btn-right {
    right: 20px;
}
@media (max-width: 500px) {
    
    .container-carousel {
    height: 0vh;
    top: 50px;
    }
    .btn-left,
    .btn-right {
        background-color: #333333d4;
        color: #fff;
        opacity: 1;
        visibility: visible;
    }
    .carru-titu {
	 width: 380px;
     display: block;
     left: 50%;
	 
}
    .oswald {
	font-weight: 500;
	font-size: 20px;
    line-height: 23px;
        
    }
	.subtitulo {
	font-size: 12px;
	line-height: 15px;
    width: 350px;
    margin-top: 45px;
    letter-spacing: 0px;
    
	}
}