/* Image Slider */
.image-slider {
    overflow: hidden;
    display: flex;
    position: relative;
}

.image-slider .slide {
    position: absolute;
    height: 100%;
    transition: left 0.5s ease-in;
    width: 100%;
}

.image-slider .slide-image {
    height: 100%;
    width: 100%;
}

.image-slider .slidebar-container {
    position: absolute;
    bottom: 10%;
    left: 10%;
    display: flex;
    align-items: center;
    width: 30%;
}

.image-slider .slidebar-container.rounded {
    position: absolute;
    bottom: 10%;
    left: 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
}

.image-slider .slidebar {
    height: 0.5rem;
    background-color: #97e7a0;
    margin: 0 2px;
}

.image-slider .slidebar-container.rounded .slidebar {
    height: 20px;
    width: 20px !important;
    background-color: #97e7a0;
    margin: 0 2px;
    border-radius: 50%;
}

.image-slider .slidebar.current {
    height: 0.75rem;
    background-color: #27ae61;
    border-radius: 2px;
}

.image-slider .slidebar-container.rounded .slidebar.current {
    background-color: #27ae61;
}

/* Content Slider */
.content-slider {
    overflow: hidden;
    display: flex;
    position: relative;
    width: 100%;
}

.content-slider .slide {
    position: absolute;
    height: 100%;
    transition: left 0.5s ease-in;
    margin-right: 2rem;
    width: 100%;
}

.content-slider .slide .left-column {
    width: 100%;
    height: 50%;
}

.content-slider .slide-image {
    width: 100%;
    height: 100%;
}

.content-slider .slide .right-column {
    width: 100%;
    height: 50%;
}

.slidebar-container.center {
    display: flex;
    align-items: center;
    width: 30%;
    margin: 0 auto;
    margin-top: 1rem;
}

.slidebar-container.center .slidebar {
    height: 0.5rem;
    background-color: #97e7a0;
    margin: 0 2px;
}

.slidebar-container.center .slidebar.current {
    height: 0.75rem;
    background-color: #27ae61;
    border-radius: 2px;
}

/* For Tablet Design */

@media(min-width: 768px) {
    .content-slider .slide {
        display: flex;
    }

    .content-slider .slide .left-column,
    .content-slider .slide .right-column {
        width: 45%;
        height: 100%;
        margin: 0 auto;
    }
}

/* For Desktop Design */

@media(min-width: 992px) {
    .content-slider {
        display: flex;
        width: 100%;
        position: static;
    }

    .content-slider .slide {
        position: static;
        height: 100%;
        margin: 0 auto;
        width: 30%;
        display: block;
    }

    .content-slider .slide .left-column,
    .content-slider .slide .right-column {
        width: 100%;
        height: 50%;
        margin: 0 auto;
    }

    .slidebar-container.center {
        display: none;
    }
}
