.slider {
    width: 100%;
    max-width: 100vw;
    height: 22.6rem;
    margin: auto;
    position: relative;
    overflow: hidden;
}

.list {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    width: max-content;
    transition: 1s;
}

.list img {
    width: 42rem;
    /* width: 1300px; */
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}

.buttons {
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}

.buttons button {
    width: 40px;
    height: 40px;
    border-radius: 505;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}

.dots {
    position: absolute;
    /* bottom: 10px; */
    color: #fff;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: end;
    transition: 1s;
}

.dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 15px;
    border-radius: 20px;
}

.dots li.active {
    width: 30px;
}

.active-record-title {
    position: absolute;
    top: 85%;
    left: 5%;
    width: 90%;
    font-size: large;
    color: #fff;
    background-color: rgba(64, 148, 205, 0.7);
    padding: 1rem;
}
