#smsp-carousel {
    position: relative;
    overflow: hidden;
}

#smsp-carousel img {
    width: 100%;
    height: auto;
    display: block;
}

#smsp-carousel .carousel-caption {
    display: block;
    position: absolute;
    z-index: 2;
    font-size: 1em;
    text-shadow: none;
    color: #fff;
    background: transparent;
    left: 0;
    top: 0;
    bottom: 0;
    right: auto;
    padding: 25px 20px;
    margin: 0;
    width: 32%;
    box-sizing: border-box;
    max-width: none;
    text-align: left;
    border-radius: 0;
    overflow: hidden;
}

#smsp-carousel .carousel-caption h2 {
    font-size: 1.8em;
    margin: 0 0 10px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

#smsp-carousel .carousel-caption div {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.9em;
    word-break: break-word;
}

#smsp-carousel .carousel-item {
    display: none;
}

#smsp-carousel .carousel-item.active {
    display: block;
}

#smsp-carousel .carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

#smsp-carousel .carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    margin: 0 4px;
    cursor: pointer;
}

#smsp-carousel .carousel-indicators li.active {
    background: #fff;
}

#smsp-carousel .carousel-control-prev,
#smsp-carousel .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.35);
    border-radius: 50%;
    z-index: 15;
    text-decoration: none;
    transition: background .2s ease;
}

#smsp-carousel .carousel-control-prev:hover,
#smsp-carousel .carousel-control-next:hover {
    background: rgba(0,0,0,.55);
}

#smsp-carousel .carousel-control-prev {
    left: 20px;
}

#smsp-carousel .carousel-control-next {
    right: 20px;
}

#smsp-carousel .carousel-control-prev-icon,
#smsp-carousel .carousel-control-next-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
}

#smsp-carousel .carousel-control-prev-icon {
    transform: rotate(-45deg);
    margin-left: 4px;
}

#smsp-carousel .carousel-control-next-icon {
    transform: rotate(135deg);
    margin-right: 4px;
}
