.my-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 12px black;
    border: 5px solid #00251a;
    box-sizing: content-box;
}

.my-slides  {
    width: 700%;
    height: 100%;
    display: flex;
}

.my-slide {
    width: calc(100% / 7);
    height: 100%;
    display: flex;
}

.my-slide img {
    width: 100%;
    align-self: center;
}

/* css for manual slide navigation */

.prevc {
    position: absolute;
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
    right: 0;
    top: 0;
    transition: 0.4s;
}

.prevc:hover {
    background-color: #39796bcf;
    cursor: pointer;
}

.nextc {
    position: absolute;
    height: 100%;
    width: auto;
    display: flex;
    align-items: center;
    left: 0;
    top: 0;
    transition: 0.4s;
}

.nextc:hover {
    background-color: #39796bcf;
    cursor: pointer;
}







