.slider-container {
    max-width: 100%;
    background: #e6e6e6;
    margin: 2rem auto 0 auto;
    overflow: hidden;
    position: relative;

:before {
    content: '.slider-container';
    position: absolute;
    left: 0;
    top: 0;
    color: blue;
}

}

.my-slider {
    position: relative;
    width: 100%;
}

.card_description {
    color: white;
    font-size: x-large;
    text-align: center;

}
.card_title {
    font-weight: bold;
    color: white;
    font-size: xx-large;
    text-align: center;

}

.slider-item {
    text-align: center;
    height: 510px;
    width: 100%;
    border-right: 2px solid #333;
    /*padding: 1.5rem .75rem;*/
    position: relative;

:before {
    content: '.slider-item';
    position: absolute;
    left: 0;
    top: 0;
    color: blue;
}

:hover {
    cursor: pointer;
}

}

.controls {
    z-index: 1;
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    left: 0;
    background: transparent;
    width: 100%;
    top: 50%;
    transform: translatey(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;

:focus {
    outline: none;
}

li:hover {
    cursor: pointer;
}

}
