.slider-wrapper {
    max-width: 698px;
    margin: 50px auto 24px auto;
    position: relative;
    overflow: hidden;
}

.carousel-field {
    margin: 190px 0px 0px 0px;
} 

.slide-container {
    max-width: 568px;
    height: 384px;
    display: flex;
    font-variation-settings: "wght" 600;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    text-align: center;
    margin: auto;
    padding: 24px;
    overflow: hidden;
    scroll-behavior: smooth;
    border: 1px solid #EDEDF1;
    box-shadow: 1px 1px 4px rgba(25, 25, 35, 0.1);
    border-radius: 10px;
}

.slide-arrow {
    position: absolute;
    display: flex;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 4rem;
    border-radius: 10px;
    background-color: gray;
    width: 36px;
    height: 36px;
    font-size: 3rem;
    padding: 0;
    cursor: pointer;
}

.slide-arrow:hover {
    background-color: #A80532;
}

.slide-arrow span {
    font-size: 24px;
    color: white;
}

#slide-arrow-prev, #slide-arrow-next {
    justify-content: center;
    align-items: center;
}

#slide-arrow-prev {left:0;} 
#slide-arrow-next {right: 0;}

.carousel-image {
    width: 96px;
    height: 96px;
}

.carousel-name {
    color: #BCC1CA;
    font-size: 16px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #969DAB;
    border-radius: 2px;
    margin: 0px 0px 5px 5px;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dotactive,
.dot:hover {
    background-color: #A80532;
}

@media screen and (max-width: 768px) {
    .carousel-field {
        margin-top: 70px;
    }

    .slide-container {
        height: auto;
    }
}

@media screen and (max-width: 710px) {
    .slide-container {
        max-width: 500px;
    }
}

@media screen and (max-width: 640px) {
    .slide-container {
        max-width: 400px;
    }
}

@media screen and (max-width: 540px) {
    .slide-container {
        max-width: 300px;
        height: 484px;  
    }
}

@media screen and (max-width: 480px) {
    .slide-container {
        height: 550px;
    }
}

@media screen and (max-width: 390px) {
    .carousel-field {
        margin: 70px 0px 0px 0px;
    } 
}