.imgSlider
{
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    border-radius: 10px;
    width: 80vw;
    height: 80vw;
    max-width: 80vh;
    max-height: 80vh;
    overflow: hidden;
}

.imgSlider .imgSlide
{
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.imgSlider .imgSlide.active
{
    opacity: 1;
    transition: 1s;
}

.imgSlider .imgSlide img
{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navigation
{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.imgSlider:hover .navigation
{
    opacity: 1;
}

.prev-btn, .next-btn
{
    z-index: 98;
    font-size: 2em;
    color: #222;
    background: rgba(255,255,255,0.8);
    padding: 10px;
    cursor: pointer;
}

.prev-btn
{
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.next-btn
{
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.navigation-visibility
{
    z-index: 98;
    display: flex;
    justify-content: center;
}

.navigation-visibility .imgSlide-icon
{
    z-index: 98;
    background: rgba(255, 255, 255, 0.5);
    width: 20px;
    height: 10px;
    transform: translateY(-10px);
    margin: -20px 10px ;
    border-radius: 2px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
}

.navigation-visibility .imgSlide-icon.active
{
    background: white;
    transition: 1s;   
}