#slider-wrapper {
    width: 100%;
    background: #333;
    position: relative;
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
}

.slider-controlls .next,
.slider-controlls .prev {
    display: block;
    position: absolute;
    border: none;
    background-color: rgba(51, 51, 51, 0.5);
    color: #fff;
    top: 50%;
    padding: 20px;
    transform: translateY(-50%);
    font-size: 18px;
    z-index: 99999;
    border-radius: 50%;
}

.slider-controlls .next {
    right: 20px;
}

.slider-controlls .prev {
    left: 20px;
}

.slider-items {
    width: 100%;
    margin: 0px auto;
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.slider-items .slider-item {
    width: 100%;
    position: absolute;
    opacity: 1;
}

.slider-items .slider-item.active {
    opacity: 1;
}

.slider-items .slider-item.active .content h1 {
    opacity: 1;
    bottom: 30%;
    left: 10%;
    z-index: 9999;
    font-weight: bold;
    font-size: 80px;
    font-family: Arial, sans-serif;
}

.slider-items .slider-item.active .content p {
    opacity: 1;
    left: 10%;
    z-index: 9999;
}

.slider-items .slider-item.active .content img {
    opacity: 1;
}

.slider-items .slider-item .content {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider-items .slider-item .content h1 {
    position: absolute;
    bottom: 30%;
    left: 0%;
    background-color: rgba(51, 51, 51, 0.7);
    padding: 15px 20px;
    color: #fff;
    opacity: 0;
    transition: all 0.5s;
    font-size: 80px;
    font-family: Arial, sans-serif;
}

.slider-items .slider-item .content p {
    position: absolute;
    bottom: 52%;
    left: 0%;
    background-color: rgba(51, 51, 51, 0.7);
    padding: 10px;
    color: #fff;
    opacity: 0;
    transition: all 0.6s;
    transition-delay: 0.1s;
}

.slider-items .slider-item .content img {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ajusta la imagen para que cubra todo el contenedor sin deformarse */
    opacity: 0;
    transition: all 0.5s;
}

.slider-bullets {
    width: 100px;
    bottom: 20px;
    position: absolute;
    text-align: center;
    z-index: 99999;
    width: 100%;
}

.slider-bullets .bullet {
    width: 20px;
    height: 20px;
    background: rgba(228, 228, 228, 0.4);
    border: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-bullets .bullet.active {
    border: 2px solid #333;
}

@media screen and (max-width: 768px) {
    .slider-items {
        height: 50vh;
        /* Reduce la altura en pantallas pequeñas */
    }

    .slider-items .slider-item .content {
        height: 50vh;
        /* Ajusta la altura de cada slide */
    }

    .slider-controlls .next, .slider-controlls .prev {
        display: none;
    }

    .slider-items .slider-item .content p{
        bottom: 42%;
    }

    .slider-items .slider-item.active .content h1 {
        font-size: 30px;
    }

    .slider-items .slider-item .content h1 {
        font-size: 30px;
    }
}