*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(29, 28, 22);
    
}
section{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
    padding: 100px 0;
}
.title{
    color: #b7f1af;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    font-size: 1.3rem;
}
.menu{
    gap: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgb(56, 52, 52);
    list-style: none;
    position: relative;
    z-index: 1;
    /* width: 610px; */
    padding: 1rem;
}
.menu .item{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #b7f1af; */
    border: 3px solid #b7f1af;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-weight: bolder;
    font-weight: 1.8rem;
    user-select: none;
    cursor: pointer;
    transition: all linear .2s;
    -webkit-transition: all linear .2s;
    -moz-transition: all linear .2s;
    -ms-transition: all linear .2s;
    -o-transition: all linear .2s;
    color: #f1eaaf;
}
.menu .item.active{
    color: rgb(37, 35, 35);
}
.indicator{
    position: absolute;
    width: 40px;
    height: 40px;
    background: #b7f1af;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: -1;
    transition: all linear .1s;
    -webkit-transition: all linear .1s;
    -moz-transition: all linear .1s;
    -ms-transition: all linear .1s;
    -o-transition: all linear .1s;
}
.indicator.prev{
    right: 0;
}
.indicator.next{
    left: 1rem;
}
.menu .item.dragging{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    box-shadow: 0px 0px 15px 0px #fff;
}