.imgSlider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.imgSlider + .content-scroll-button {
    position: absolute;
    bottom: 32px;
    left: 32px;
}

.imgSlider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.imgSlider-wrapper {
    display: flex;
    transition: all 0.5s;
    height: 100%;
}

.imgSlider-item {
    min-width: 100%;
    transition: opacity 0.5s;
    position: relative;
    overflow: hidden;
}

.imgSlider-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.imgSlider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    color:rgba(255,255,255,.5);
    transition: color 0.3s ease;
}

.imgSlider-button:hover {
    color:rgba(255,255,255,1);
}

.imgSlider-button span {
    font-size: 30px;
}

.left {
    left: 32px;
}

.right {
    right: 32px;
}

.imgSlider-dots {
    position: absolute;
    bottom: 32px;
    width: 100%;
    text-align: center;
}

.imgSlider-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 5px;
    background-color:rgba(255,255,255,.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.imgSlider-dot:hover {
    background-color:rgba(255,255,255,1);
}

.imgSlider-dot.active {
    background-color:rgba(255,255,255,1);
}