.slider-container {
    width: 100%;
    position: relative;
    border-radius: 5px;
}

.slide {
    width: 100%;
    display: none;
}

.slide-image {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    filter: brightness(0.6);
    border-radius: 10px;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide-title {
    color: white;
}

.slide-desc {
    color: lightgray;
}

.slider-number{
    color: white !important;
    padding: 3px;
}

.slide-btn {
    color: black !important;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 500;
    gap: 0.2rem;
    margin-top: 1rem;
    border-radius: 10px;
    transition: ease 0.3s;
}

.slide-btn:hover {
    gap: 1rem;
    color: white !important;
    background-color: black;
}

.slide-number-container {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 5;
    font-size: 1rem;
    display: flex;
    direction: ltr;
    align-items: center;
    color: rgb(255, 255, 255);

}

.slider-nav {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.slider-nav-btn {
    cursor: pointer;
    background-color: rgba(211, 211, 211, 0.226);
    color: white;
    font-size: 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease 0.3s;
}

.slider-nav-btn:hover {
    background-color: white;
    color: black;
}

.dot-container {
    position: absolute;
    bottom: 2rem;
    left: 0;
    z-index: 10;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    direction: ltr;
}

.dot {
    cursor: pointer;
    height: 1rem;
    width: 1rem;
    background-color: rgba(211, 211, 211, 0.226);
    border-radius: 50%;
    display: inline-block;
    transition: ease 0.3s;
}

.active,
.dot:hover {
    background-color: white;
}
