.carousel{
    height: 425px;
    width: 100vw;
    margin-top: 40px;
    margin-bottom: 40px;
    overflow-x: hidden;
    position: relative;
    display: flex;
    justify-content: flex-start;
    overflow-y: hidden; 
    overflow-x: hidden; 
}

.carousel-inner{    
    display: flex;
    transition: all ease .5s;
}

.carousel-text {
     width: 360px;
    text-align: left;
}

.carousel-item{
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-item h1 {
    color: #fff;
    background-color: #eb3c36;
    padding: 5px 25px 5px 25px;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 0;
    display: table;    
}

.carousel-item p {
    opacity: .9;
    color: #fff;
    background-color: #2B4159;
    padding: 5px 25px 5px 25px;
    margin-top: 5px;
    display: table;    
    font-size: 19px;
    font-weight: 300;
}

.carousel-indicators{
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.carousel-indicators span{
    display: inline-block;
    background-color: white;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    opacity: .5;
    cursor: pointer;
    margin: 3px;
}

.carousel-indicators span.active{
    opacity: 1;
}
