

.banner-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    height: 119px;
}

#bannerContainer {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    transition: transform 0.5s ease;
    flex: 1;
    height: 100%;
    background-color: white;
    background-image:  linear-gradient(#e6f7ff 1px, transparent 1px), linear-gradient(to right, #e6f7ff 1px, white 1px);
    background-size: 14px 13px;
}

.content-slider {
    display: flex;
    justify-content: center;
    position: relative;
}

.banner-slide {
    display: none;
    align-items: center;
    text-align: center;
    color: white;
    height: auto;
    overflow: hidden;
    justify-content: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.banner-slide.active {
    display: flex;
}

.banner-slide img {
    width: 100%;
    display: block;
}

.banner-slide .lg-banner {
    display: none;
}

.banner-slide .sm-banner{
    display: block;
}

@media (min-width: 768px) {
    .banner-slide .lg-banner{
        display: block;
    }

    .banner-slide .sm-banner{
        display: none;
    }

}

@media (max-width: 768px) {

    .banner-slide img:not(.sm-banner) {
        max-width: 950px;
        height: 44%;
        object-fit: fill;
        /*clip-path: inset(0 30px 0 30px);*/
    }

}

.arrow:hover {
    background-color: #ff7507;
    color: white;
    border: 1px solid #d06c1c;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.arrow svg {
    padding: 0;
    margin: 0;
    text-align: center;
    width: 20px; /* Tamaño del SVG dentro del botón */
    fill: currentColor; /* Usa el color del botón */
}

.left-arrow, .right-arrow {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 36%;
    background-color: #FFFFFF;
    border: 1px solid #cccccc;
    border-radius: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    width: 36px;
    height: 36px;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: background-color 0.5s ease, color 0.5s ease,
    border 0.5s ease, box-shadow 0.5s ease, opacity 0.5s ease,
    left 0.5s ease, right 0.5s ease;
}

.left-arrow {
    opacity: 0;
    left: -15px;
}

.right-arrow {
    opacity: 0;
    right: -15px;
}

.banner-wrapper:hover .left-arrow {
    opacity: 1;
    left: 5px;
}

.banner-wrapper:hover .right-arrow {
    opacity: 1;
    right: 5px;
}
