@font-face {
    font-family: 'Roboto Condensed';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/RobotoCondensed-Regular.ttf'); 
}

@font-face {
    font-family: 'Roboto Condensed Bold';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/RobotoCondensed-Bold.ttf'); 
}


.slides-container{
    width:var(--sliderWidth);
    overflow: hidden;
    position: relative;
    margin:0 auto
}

.slides{
    width: 10000%;
    position: relative;
    transition: 0.8s;
}

.slide{
    display: inline-block;
    vertical-align: top;
}

.slide-item{
    position: relative;
    width:var(--slideWidth);
    padding:0 10px;
    height: auto;
    
}
/* .image-container{
    width: 320px;
    height: auto;
    border-top:0.5px solid #444;
    
} */
.image{
    width: 100%;
    height: auto;
    object-fit: contain;
}
.slider-buttons{
    height: 20px;
    /* position: absolute;
    bottom: -5px; */
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin:auto
}

.slider-button{
    position: absolute;
    top:50%;
    border: none;
    display: block;  
    width: 35px;
    height: 35px;  
}
.next{
    background: url("../images/chevron_right.svg") no-repeat;
    background-size: 45px;
    right:-20px;
    cursor:pointer;
}
.prev{
    background: url("../images/chevron_left.svg") no-repeat;
    background-size: 45px;
    left:-20px;
    cursor:pointer;
}  
.slide-section{
    width: var(--sliderWidth);
    margin:30px 0 10px 0
} 
.description{
    font-size: 26px;
    padding-top: 35px;
    color: #444444;
    font-weight: bold;
    text-align: center;
    font-family: "Roboto Condensed" 
}
.desc{
    margin-top: 60px; 
    background-color: #EEF2F6;
    padding-bottom:20px;

}

.slide-image{
    width: 100%;
    height: auto;
   
}

.slide-text{
    font-size: 16px;
    padding: 0 20px 15px 25px;
    font-family: "Roboto Condensed Bold";
    text-align: center;
    min-height: 91px; 
}

.indicators{
    margin: auto;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.indicator{
    border:1px solid #9C9C9C;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    display: inline-block;
    padding:0
}

.active{
    background-color: #2196F3;
    border-color:#2196F3
}


@media only screen and  (max-width: 1000px) {
    
    .next{
        right: -5px;
    }
    .prev{
        left:-15px
    } 
    .slider-button{
        width: 35px;
        height: 35px;
    }
    .description{
        font-size: 20px;
        padding-top: 30px;
        color: #444444;
        font-weight: bold;
        text-align: center;
        font-family: "Roboto Condensed" 
    }
    .desc{
        margin-top: 50px; 
        background-color: #EEF2F6;
        padding-bottom:20px;
        padding-right: 10px;
        padding-left:10px
    } 

    .mobile-desc{
        color:#444;
        font-size: 20px;
        margin:20px;
        text-align: center;
        font-style: italic;

    }

    .slide-section{
        margin:30px 0 0 0
    } 

    .indicators{
        margin-top: 10px;
        margin-bottom: 10px;
        
    }

    .indicator{
        width: 8px;
        height: 8px;
       
    }
    .slide-item{
        padding:0 7px;
    }
}