.container {
    max-width: 100% !important;
    width: 100%;
    padding: 0 25px;
}
.group-carousel {
    width: 49%;
    float: left;
}
.group-carousel .titulo {
    font-style: italic;
    font-size: 1.8em;
    color: #0089b3;
}

.carousel {
    min-height: 500px;
    width: 100%;
    margin: 0 auto;
}
.carousel .carousel-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
    width: 50%; 
    height: calc(100% - 20px);
    border-radius: 15px;
}

.carousel .carousel-item.active {
    box-shadow: 0 0 10px #006ae2;
    border: 1px solid #006ae2;
}
.carousel .carousel-item img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 15px;
}

.carousel .indicators .indicator-item {
    border-radius: 0;
    transform:  rotate(45deg);
    margin: 0 10px;
    height: 10px;
    width: 10px;
    background: #000;
    border: 1px solid #fff;
    box-shadow: 0 0 8px #fff;
}
.carousel .indicators .indicator-item.active {
    background: #fff;
    border: 1px solid #000;
    box-shadow: 0 0 8px #000;
}
.carousel-item .title {
    width: 100%;
    position: absolute;
/*    background: rgba(255,255,255,0.7); */
    background: rgba(0,0,0,0.7);
    padding: 5px;
        padding-left: 5px;
    color: #fff;
    font-weight: bold;
    font-size: 1.3em;
    top: 0px;
    border-radius: 15px 15px 0 0;
    padding-left: 20px;
}
