
/*componente banner-interno*/
.wrapp__banner-overflow {
    height: 484px;
    overflow: hidden;
    @media(max-width:900px) {
        height: unset;
        min-height: 240px;
    }
}
.banner-interno {
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    flex-wrap: wrap;

    .info-banner-interno {
        text-align: center;
        max-width: 590px;
        margin: 0 auto;

        
        h3,h2,p {
            color: #fff;
        }

        @media(max-width:900px) {
            padding: 20px $padd-mob;
        }
    }
    .breadcrumb {
        justify-content: center;
        background: transparent;

        span, a{
            display: inline-block;
            font-size: 10px;
            font-weight: 600;
            color: #fff;
            text-transform: uppercase;
        }

        a{
            font-weight: normal;
        }

        span{
            font-weight: bold;
        }
        
        // .breadcrumb-item {
        //     font-size: 10px;
        //     color: #fff;
        //     font-weight: 600;

        //     &.active {
        //         color: #fff;
        //         font-weight: 700;
        //     }
        //     &:first-child {

        //         &:before {
        //             display: none;
        //         }
        //     }
        //     &:before {
        //         content: '-';
        //         color: #fff;
        //     }
        // }

        @media(max-width:900px) {
            // padding: 1rem 0;
        }
    }
    .volver {
        font-weight: 600;
        position: absolute;
        bottom: 10%;
        left: 0;
        right: 0;
        margin: 0 auto;
        
    }

    &.padd__xl {
        padding: 90px 0;
    }
}