/* body{
    justify-content: center;
    font-family: sans-serif;
    align-items: center;
    display: flex;
    height: 100vh;
    margin: 0;
    padding: 0 40px;
} */

/* p{
    line-height: 1.4;
}

a{
    color: inherit;
}

ul{
    display: flex;
    list-style: none;
    padding: 0;
}

ul > * + *{
    margin-top: 10px;
}

li{
    margin-right: 20px;
    display: block;
}

li a.active{
    font-weight: bold;
} */
.liset{
    list-style: none;
}

.slider{
    display: flex;
    flex-flow: column-reverse;
    /* background-color: teal; */
    max-width: 1400px;
    color: #fff;

    grid-template-columns: 35% 65%;
    position: relative;
    /* display: grid; */

}

.slider .content_container{
    padding: 15px;
}

.slider .slides{
    overflow-y: auto;
    max-height: 650px;
/*     scrollbar-width: none; */
}

.slider .slides::-webkit-scrollbar{
    display: none;
}

.slider .slides .slide{
    min-height: calc(100% - 60%);
    /* background-color: skyblue; */
    display: flex;
    /* padding: 40px; */
    color: #333;
    align-items: center;
}

.slider .slides .slide:nth-child(even){
    /* background-color: palegreen; */
}