:root {
    --owl-item-height: 500px;
}

#feature-banner {
    background-color: #0a4b78;
    margin-bottom: 5rem;
}

.owl-carousel {}

.owl-carousel-item {
    height: var(--owl-item-height);
    position: relative;
}

.owl-carousel-item--wrapper {
    position: absolute;
    width: 100%;
    padding: 4rem 0;
    bottom: 0;
    z-index: 2;
    text-align: center;
    display: flex;
    justify-content: center;
}

.owl-carousel-item--meta {
    max-width: 70%;
}

.owl-carousel-item--title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    position: relative;
}

.owl-carousel-item--title a {
    color: #fff;
}

.owl-carousel-item--title a:hover {
    color: #fff;
}

.owl-carousel-item--description {
    font-size: 1.4rem;
    color: #fff;
    margin-top: 1rem;
}

.owl-carousel-item--image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
}

.owl-carousel-item--overlay {
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

@media screen and (min-width: 768px) {
    .owl-carousel-item--description {
        font-size: 2rem;
    }
}