/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Mukta',sans-serif;
    color: #343a40;
}

body {
    font-family: Arial, sans-serif;
}



/* Style for slider-box DONT TOUCH IT*/
.slider-box {
    background-color: #eee;
    position: relative;
    min-height: 430px;
    z-index: 0;
    overflow: hidden;
}

.slider-content, .slider-content .slider-item {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

    .slider-content .slider-item {
        /*  Offset (effet slide in/out) to off set left:0; */
        left: 5%;
    }

    .slider-content .slider-item {
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s ease-in-out;
    }

        .slider-content .slider-item.active {
            visibility: visible;
            opacity: 1;
            left: 0;
        }

.slider-pagin {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
}

    .slider-pagin ul {
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 0;
    }

        .slider-pagin ul li {
            padding-bottom: 0;
            transition: all 0.2s ease-in-out;
        }

            .slider-pagin ul li + li {
                margin-left: 2px;
            }

            .slider-pagin ul li a {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background-color: #000;
                border: 2px solid #FFF;
                text-decoration: none;
                color: #FFF;
                transition: all 0.2s ease-in-out;
            }

                .slider-pagin ul li.active a, .slider-pagin ul li a:hover, .slider-pagin ul li a:focus {
                    background-color: #FFF;
                    border: 2px solid #000;
                }

            .slider-pagin ul li.active {
                padding-bottom: 5px;
            }

.slider-fillbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; /* must be 0, only othe values to preview */
    height: 5px;
    background-color: rgba(0,0,0,0.5);
}

.carousel-caption {
    position: absolute;
    background: rgba(0,0,0,.4);
    width: 100%;
    height: 20%;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 10;
    padding-top: 20px !important;
    padding-bottom: 70px;
    text-align: center;
}

    .carousel-caption h3 a {
        color: #fff;
        font-weight: bold;
        font-family: 'Roboto', sans-serif;
    }
/* Your slider box style */
.slider-content .slider-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: #FFF;
    font-size: 3rem;
}

@media (min-width: 320px) and (max-width:640px) {

    .slider-box {
        background-color: #eee !important;
        position: relative !important;
        z-index: 0 !important;
        overflow: hidden !important;
        min-height: 125px !important;
    }
}
