.controls-one {
    /*position: relative;*/
}


.prev-one,
.next-one,
.prev-two,
.next-two {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #333;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 3px;
}

.prev-one,
.prev-two {
    left: 5px;
}

.next-one,
.next-two {
    right: 5px;
}

.prev-one:hover,
.next-one:hover,
.prev-two:hover,
.next-two:hover {
    color: #000;
}


.tns-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;

}

.tns-nav button {
    border: none;
    background-color: #ccc;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
}

.tns-nav button.tns-nav-active {
    background-color: #000;
}

.tns-controls button {
    all: unset;
    display: block;
}


