.carousel {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    /*  */
    padding: 0 !important;
}

.carousel .items {
    /* position: relative; */
    /* min-height: 300px; */
    max-height: none;
    max-width: none;
    width: 100%;
    height: 100%;
    margin: 0;
}

.carousel-item {
    position: absolute;
    top: 100px;
    left: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    transition: top 500ms, opacity 500ms;
    background-repeat: none;
    background-size: cover;
    background-color: black;
    min-height: 300px;
    text-align: center;
}

.carousel-item::after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
}

.carousel-item-content {
    max-width: 1000px;
    margin: auto;
    color: white;
    padding-top: 150px;
    font-size: 1.5rem;
    /* font-weight: bold; */
    /* line-height: 1.5rem; */
    position: relative;
    z-index: 10;
}

.carousel-item-title {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 10px;
}

.carousel-item-text {
    max-width: 700px;
    margin: auto;
}

.carousel-item img {
    width: 100%;
}

.carousel-item.active-item {
    position: relative;
    /* display: block; */
    top: 0;
    opacity: 1;
    transition: top 500ms, opacity 500ms;
}

.carousel .chevron {
    position: absolute;
    opacity: 0;
    color: orange !important;
    z-index: 50;
    border-radius: 100px;
    background: white;
    width: 50px !important;
    height: 50px !important;
    text-align: center;
    cursor: pointer;
}

.carousel .chevron-left {
    transition: left 500ms, opacity 500ms;
    left: 20px;
}

.carousel .chevron-right {
    transition: right 500ms, opacity 500ms;
    right: 20px;
}

.carousel:hover .chevron-left {
    left: 15px;
    opacity: 1;
    transition: left 500ms, opacity 500ms;
}

.carousel:hover .chevron-right {
    right: 15px;
    opacity: 1;
    transition: right 500ms, opacity 500ms;
}

.carousel .chevron svg {
    width: 30px;
    height: 30px;
    display: inline-block;
    top: 10px;
    position: relative;
}

@media screen and (max-width: 700px) {
    .carousel-item-content {
        font-size: 1.1rem;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .carousel-item-title {
        font-size: 1.3rem;
    }

    .carousel-item-text {
        max-width: 700px;
    }
}