.img_filinfo{
    max-width: 20vw;
    margin: 3vw 0 3vw 3vw;
}


.carousel-item {
    width: 100%;
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item.active {
    opacity: 1;

}

.image {
    height: 27vw;
}



.txt {
    width: 100%;
    line-height: 55px;
    background-color: #004291;
    color: white;
    font-size: 2vw;
    padding: 2vw;
    height: 27vw;
    margin-top: auto;
    text-align: center;
    font-family: system-ui;
    display: flex;
    align-items: center;
}



@media screen and (max-width: 768px) {

    .img_filinfo{
        max-width: 47vw;
        margin: 5vw 0 5vw 5vw;
    }

    .image {
        width: 100%;
        height: auto;
        border-radius: 0vw;
    
    }

    .carousel-item {
        width: 100%;
        position: absolute;
        left: 0;
        opacity: 0;
        transition: opacity 0.5s;
        display: grid;
    
    }

    .txt {
        width: 100%;
        line-height: 30px;
        background-color: #004291;
        color: white;
        font-size: 5vw;
        padding: 2vw;
        text-align: center;
        font-family: system-ui;
    }

}