.carousel-colored-box {
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    border-radius: 4px;
    border-bottom-right-radius: 80px;
    background-color: var(--base-theme);
    padding: 0 60px;
}

.carousel-colored-box .content {
    text-align: center;
}

.carousel-colored-box .slide-content {
    width: 60%;
}

.carousel-colored-box .slide-image {
    width: 40%;
    height: 100%;
}

.carousel-colored-box .slide-content h6 {
    font-size: 30px;
    line-height: 3rem;
}

.carousel-colored-box .slide-subtitle {
    font-size: 18px;
    text-align: right;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
}

.content-cta {
    background-color: white;
    color: var(--base-dark-green);
    font-size: 16px;
    max-width: 200px;
    height: 48px;
    align-self: flex-start;
    border-radius: 16px;
}

.content-cta:hover, .content-cta:active {
    background-color: whitesmoke !important;
    color: var(--base-dark-green) !important;
}

.home-page h4 {
    font-size: 22px;
    color: var(--base-dark-green);
}

@media (max-width: 767.98px) {
    .carousel-colored-box .slide-content, .carousel-colored-box .slide-image {
        width: 100%;
    }
    .carousel-colored-box .slide-image {
        max-height: 250px;
    }
    .carousel-colored-box {
        height: 500px;
        padding: 0 40px;
        justify-content: space-evenly;
    }
    .carousel-colored-box .slide-content h6 {
        font-size: 34px;
    }
}
