.carouselRoot {
    position: relative;
    top: 0;
    left: 0;
    overflow-x: hidden;
    width: 50vw;
}

.exSlide {
    height: 250px;
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.exSlide .exContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: #fff;
    width: 80%;
}

.exSlide .exContent h4 {
    font-weight: 700;
    font-size: 22px;
}

.exSlide .exContent p {
    font-weight: 500;
    font-size: 16px;
}

.exSlide .exContent .exContent a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.exSlide .exContent a i {
    font-size: 14px;
}

.carousel-control-prev {
    position: absolute;
    z-index: 2;
    top: 0;
    width: 80px;
    height: 100%;
    cursor: pointer;
    border: 0;
    background: linear-gradient(-90deg, rgba(5,46,55,0) 0%, rgba(5,46,55,1) 120%);
}

.carousel-control-next {
    position: absolute;
    z-index: 2;
    top: 0;
    width: 80px;
    height: 100%;
    cursor: pointer;
    border: 0;
    background: linear-gradient(90deg, rgba(5,46,55,0) 0%, rgba(5,46,55,1) 120%);
}

.exHeader {
    position: absolute;
    width: 50vw;
    height: 4em;
    background-color: linear-gradient(110deg, rgba(255,255,255,0.9363095580028886) -10%, rgba(255,255,255,0.36) 120%);
    z-index: 3; 
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 7%; 
    backdrop-filter: blur(2px);
    border-bottom: 1px solid rgba(255,255,255,0.11);
    color: #fff;
}

.exHeader h3 {
    margin: 0;
}

.exHeader p {
    font-weight: 300;
    margin: 0;
    margin-left: 0.4em;
}

.exHeader span i {
    font-size: 14px;
}

@media (max-width: 768px) {
    .carouselRoot {
        width: 100vw;
        display: none;
    }

    .exSlide {
        width: 100vw;
        height: 220px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 3em;
    }

    .exSlide .exContent {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 80%;

    }

    .exHeader {
        width: 100%;
    }
}