.container-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    overflow-x: hidden;
    position: relative;
    animation: fade-in 0.3s ease-in-out;
    animation-fill-mode: backwards;
}

.container-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.parent {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    z-index: 2;
}

.content-button {
    width: 30%;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
    position: relative;
}

#buttonsCarousel {
    display: flex;
    flex-direction: column;
}

.content-carousel {
    width: 70% !important;
    display: flex;
    position: relative;
    overflow: hidden;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    align-items: center;
    height: 500px;

    & .carousel-caption{
        left: 0;
        right: 0;
        text-align: left;
    }

    & .carousel-caption:has(p) {
        background: rgba(0, 0, 0, 50%);
        padding: 15px;
        z-index: 2;
    }
}

.content-carousel p {
    animation: left-in 0.2s ease-in-out 2.3s;
    animation-fill-mode: backwards;
    position: relative;
    color: #FFFFFF !important;
    font-size: 1rem;
}
.content-carousel h1,
.content-carousel h2,
.content-carousel h3,
.content-carousel h4,
.content-carousel h5,
.content-carousel h6 {
    color: #FFFFFF !important;
}

.buttons-carousel {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-right: 20px;
    z-index: 9;
}

.buttons-carousel button {
    margin-bottom: 10px;
}

.buttons-carousel button:hover {
    color: #10603A;
    box-shadow: 0 0 20px rgb(0, 0, 0, .8) !important;
}

.buttons-carousel button[data-sel='1']{
    background-color: #7093c1;
    & img{
        filter: drop-shadow(2px 0 0 #addbff) drop-shadow(0 2px 0 #addbff) drop-shadow(-2px 0 0 #addbff) drop-shadow(0 -2px 0 #addbff);
    }
}


.carousel-parent {
    flex-grow: 1;
    height: 500px;
}

.carousel-parent img {
    height: 500px;
    object-fit: cover;
}


.carousel-none {
    display: none;
}

.img-card {
    width: 40%;
    & img {
        position: relative;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        margin-right: 10px;
    }
}

.text-card {
    width: 60%;
}
