@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-desktop-container{
    width:var(--sliderWidthDesktop);
    overflow: hidden;
    position: relative;
    margin:0 auto
}

.slides-desktop{
    width: 10000%;
    position: relative;
    transition: 0.8s;
}

.slide{
    display: inline-block;
    vertical-align: top;
}

.slide-item-desktop{
    position: relative;
    width:var(--slideWidthDesktop);
    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-d{
    position: absolute;
    top:calc(50% - 55px);
    border: none;
    display: block;  
    width: 55px;
    height: 55px; 
    filter:drop-shadow(0px 1px 2px #000)
    
}
.next-d{
    background: url("../images/next.svg") no-repeat;
    background-size: 55px 55px;
    right:-40px;
    cursor:pointer;
}
.prev-d{
    background: url("../images/prev.svg") no-repeat;
    background-size: 55px 55px;
    left:-40px;
    cursor:pointer;
}  
.slide-desktop-section{
    width: var(--sliderWidthDesktopth);
    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_d{
    border:1px solid #9C9C9C;
    width: 12px;
    height: 12px;
    border-radius: 10px;
    display: inline-block;
    padding:0
}

.active{
    background-color: #2196F3;
    border-color:#2196F3
}

