* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container {
    margin: 0 30px;
}
.slideshow {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}
.slideshow-wrapper {
    position: relative;
    margin-top: 50px;
}
.slideshow .track {
    display: flex;
    height: 100%;
}

.slideshow .slide-item {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.slideshow .slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-1,
.btn-2 {
    display: inline-block;
    background-color: #eee;
    position: absolute;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
}
.btn-1 {
    top: 50%;
    left: 0;
    translate: -50% -50%;
}
.btn-2 {
    top: 50%;
    right: 0;
    translate: 50% -50%;
}

.pagination {
    display: flex;
    margin-top: 10px;
    padding: 0 44px;
    list-style: none;
}

.dot {
    width: 32px;
    height: 8px;
    opacity: 1;
    border-radius: 4px;
    margin-right: 10px;
    background-color: #dce0e3;
    border: none;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}
.dot.active {
    width: 50px;
    background-color: #9aa6af;
}
