/*.carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    margin-bottom: 5px;
    box-shadow: 0px 0px 10px #e6e6f8;
    border-radius: 5px;
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    height: 300px;

    /* display: flex;
    align-items: center;
    justify-content: center;
    background-color: lightgrey;
    font-size: 2rem; 
}

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

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #9acd3e;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

.carousel-button:hover {
    background-color: #e6e6fa;
}*/

.slider {
    /*border: 1px solid red;*/
    width: 1000px;
    max-width: 100vw;
    height: 300px;
    margin: auto;
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
}

.list {
    /* border: 1px solid blue;*/
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    width: max-content;
    transition: 1s;

}

.slider .list img {
    width: 1000px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;

}

.slider .buttons {
    position: absolute;
    top: 40%;
    left: 3%;
    width: 94%;
    display: flex;
    justify-content: space-between;
}

.slider .buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #9acd3e;
    color: black;
    border: none;
    font-family: monospace;
    font-weight: bold;
}

.slider .buttons button:hover {
    background-color: #e6e6fa;
}

.slider .dots {
    position: absolute;
    bottom: 10px;
    color: blue;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

.slider .dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: orange;
    margin: 20px;
    border-radius: 20px;
    transition: 0.5s;
}

.slider .dots li.active {
    width: 30px;
}