.mobile-slider, .slider{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
    flex-wrap: nowrap;
    position: relative;
    /*touch-action: none;*/
}

.mobile-slider-inner, .slider-inner {
    /* overflow-x: scroll; */
    display: -webkit-inline-box;
    flex-direction: row;
    overflow: hidden;
}

.slider-image {
    width: 100%;
}

.index-indicator {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 10px;
}

.mobile-index-indicator {
    padding-top: 1rem;
    position:unset;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    transition: .3s;
    border-radius: 50%;
    background-color: white;
}

.mobile-indicator {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    transition: .3s;
    border-radius: 50%;
    background-color: lightgrey;
}

.indicator.active {
    width: 14px;
    height: 14px;
    transition: .3s;
    background-color: #ff922a;
}

.mobile-indicator.active {
    width: 14px;
    height: 14px;
    transition: .3s;
    background-color: #ff922a;
}


.navigation {
    display: block;
    position: absolute;
    z-index: 4;
    top: 0;
    height: 100%;
}

.navigation a {
    cursor: pointer;
    display: block;
    padding: 6px;
    display: flex;
    height: 40px;
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    align-items: center;
    justify-content: center;
}

.navigation a:before {
    font-size: 22px;
    color: var(--white);
}

.left, .left a {
    left: 0;
    border-radius: 0 6px 6px 0;
}

.right, .right a {
    right: 0;
    border-radius: 6px 0 0 6px;
}

.slider-image {
    display: block;
    height:10rem;
    border-radius: 10px;
}

.mobile-slider-image {
    display: block;
    height: 100%;
    border-radius: 10px;
}

.slide-arrow {
    font-size: 50px;
    padding: 30px;
    height: 100%;
    top: 0;
    position: relative;
    transform: translateY(0);
    background-color: transparent;
    color: #ff922a;
    cursor:pointer;
}

@media only screen and (max-width: 35em) {
    .mobile-slider-image {
        height: auto;
    }
}

@media only screen and (max-width: 33.6875em) {
    .slider {
        display:none;
    }
}


@media only screen and (min-width: 33.6875em){
    .navigation a:before {
        font-size: 32px;
        color: var(--white);
    }
    .mobile-slider-div {
        display: none;
    }

    .slider-image {
        display: block;
        height: 160px;
        border-radius: 10px;
        -webkit-text-size-adjust:none;
    }


    .navigation a {
        padding: 30px;
        height: 100%;
        top: 0;
        position: relative;
        transform: translateY(0);
        background-color: transparent;
    }

    .indicator {
        width: 14px;
        height: 14px;
        margin: 0 5px;
        transition: .3s;
        border-radius: 50%;
        background-color: white;
    }

    .indicator.active {
        width: 20px;
        height: 20px;
        transition: .3s;
        background-color: ff922a;
    }

    .index-indicator {
        bottom: 20px;
    }

}

@media only screen and (min-width: 40em) {
    .navigation a:before {
        font-size: 32px;
        color: var(--white);
    }

    .mobile-slider-div {
        display: none;
    }

    .slider-image {
        display: block;
        height: 13rem;
        border-radius: 10px;
    }


    .navigation a {
        padding: 30px;
        height: 100%;
        top: 0;
        position: relative;
        transform: translateY(0);
        background-color: transparent;
    }

    .indicator {
        width: 14px;
        height: 14px;
        margin: 0 5px;
        transition: .3s;
        border-radius: 50%;
        background-color: white;
    }

    .indicator.active {
        width: 20px;
        height: 20px;
        transition: .3s;
        background-color: ff922a;
    }

    .index-indicator {
        bottom: 20px;
    }
}
@media only screen and (min-width: 63.9375em){
    .slider-image {
        display: block;
        height: 20rem;
        border-radius: 10px;
    }
}