



.slider {
    /* background-color: rgba(0, 0, 0, 0.3); */
    width: 100%;
    padding-top: 56.25%;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.slider_slide {
    position: absolute;
    display: none;
    top: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.5s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    transform: translateY(0px) !important;
}

.next {
    right: 0;
    border-radius: 5px 0 0 5px;
    background-color:var(--dark_blue);
}

.prev {
    left: 0;
    border-radius: 0 5px 5px 0;
    background-color:var(--dark_blue);
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dot_container {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 0.8rem;
    background-color: #bbb;
    border-radius: 50%;
    /* display: inline-block; */
    transition: background-color 0.6s ease;
}

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

@keyframes slide_left_in {
    from {
        left: 100%;
        opacity: 0;
    }
    to {
        left: 0%;
        opacity: 1;
    }
}

@keyframes slide_left_out {
    from {
        left: 0%;
        opacity: 1;
    }
    to {
        left: -100%;
        opacity: 0;
    }
}

@keyframes slide_right_in {
    from {
        left: -100%;
        opacity: 0;
    }
    to {
        left: 0%;
        opacity: 1;
    }
}

@keyframes slide_right_out {
    from {
        left: 0%;
        opacity: 1;
    }
    to {
        left: 100%;
        opacity: 0;
    }
}

@keyframes fade_in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fade_out {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}