.carousel-item {
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
}

.carousel-item video {
    position: relative;
    height: 100vh;
    background-color: black;
    object-fit: cover;
}

.carousel-item img {
    position: relative;
    width: 100vw;
    height: 100vh;
    opacity: 0.9;
    object-fit: cover;
}

#modx {
    position: absolute;
    top: 0;
    right: 0;
    width: 20.5%;
    height: 100%;
    opacity: 0.3;
    z-index: 2;
    object-fit: cover;

}

.card01 {
    position: absolute;
    top:30%;
    left: 5%;
    width: 65%;
    border: 1px solid rgb(255, 253, 253);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    max-width: 100vw;
    max-height: 100vh;
    box-sizing: border-box;
    z-index: 1;
    object-fit: cover;

}

.text_titulo_s1 {
    font-size: 2.9vw;
    font-weight: bold;

}

.text_sub_titulo_s1 {
    font-size: 2.0vw;
    font-weight: lighter;
}

.card02 {
    position: absolute;
    top:30%;
    left: 8%;
    width: 85%;
    border: 1px solid rgb(255, 253, 253);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    max-width: 100vw;
    max-height: 100vh;
    box-sizing: border-box;
    z-index: 1;
    object-fit: cover;
}

.text_titulo_s2 {
    font-style: normal;
    font-size: 2.9vw;
    font-weight: bold;

}

.text_sub_titulo_s2 {
    font-style: italic;
    font-size: 2.0vw;
    font-weight: Impact;
}

.cardavIMG02 {
    border: 1px solid rgb(243, 235, 235);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 2px 2px 5px rgba(252, 249, 249, 0.5);
    backdrop-filter: blur(8px);
}

.movs {
    animation-duration: 3s;
    animation-name: slidein;
    animation-iteration-count: 1;
}

@keyframes slidein {
    from {
        margin-left: 100%;
        width: 300%;
    }

    to {
        margin-left: 0%;
        width: 100%;
    }
}


