.slider {
    padding-top: 60px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}
.slides {
    display: flex;
    transition: transform 0.5s ease;
}
.slide {
    flex: 0 0 100%;
}
.dots {
    margin-top: 30px;
    text-align: center;
}
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #F2F4F5;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}
.dot.active {
    background-color: #FFCF24;
}

.row-center{
    display: flex;
    align-items: center;
}

.slide_img{
    width: 100%;
    border-radius: 16px;
}

.slide_content{
    width: 80%;
}

.slide_title{
    font-weight: 700;
}

.slide_info{
    color: #929292;
    font-weight: 400;
    font-size: 15px;
}

.slide_desc{
    color: #585858;
    margin-bottom: 30px;
}

@media only screen and (max-width: 990px) {
    .mode_section{
        padding: 0 7%;
    }

    .slide_content{
        width: 100%;
        margin-bottom: 30px;
    }
}
