<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.carousel-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
    width: 100%;
}

.carousel-item {
    flex: 0 0 auto;
    /* padding: 0 15px; */
    transition: all 0.3s ease;
    width: calc(25% - 0px);
    /* Default for large screens */
}
.carousel-item a:hover {
    color: unset;
}

.carousel-image-container {
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    max-height: fit-content
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.caption,
.carousel-caption {
    font-size: 24px!important;
    font-weight: 300;
}

.black .caption {
    color: #fff
}

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

.carousel-button svg {
    stroke: #828282;
}

.carousel-button:hover {
    background-color: #C9C9C9;
}

.carousel-button-prev {
    left: 0;
}

.carousel-button-next {
    right: 0;
}
</pre></body></html>