.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    max-height: 270px;
    overflow: hidden;
    @media screen and (min-width: 1024px) and (max-width: 1440px){
        max-height: 205px;
    }
}

.carousel-banner{
    max-height: 353px;
}

.carousel-inner {
    display: flex;
    overflow: hidden;
    max-height: 450px;
    align-items: end;
}
.carousel-inner > :first-child{
    display: block;
}
.carousel-item {
    flex: 0 0 100%;
    display: none;
    background-size: cover;
    background-position: center;
}



.carousel-item[data-loaded="true"] {
    display: block;
}

.carousel button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(1.6);
    background: unset;
    color: rgb(255 255 255 / 25%);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}
.carousel button:hover {
    color: rgb(255 255 255 / 85%);
}
.prev {
    left: 10px;
}

.next {
    right: 10px;
}