.info-interes-list{
    display: flex;
    flex-wrap: wrap;

    .info-interes-element{
        flex: 0 0 25%;
        margin-bottom: 30px;
        padding: 15px;

        @media(max-width: 1199px) {
            flex: 0 0 33.33%;
        }

        @media(max-width: 767px) {
            flex: 0 0 50%;
        }

        @media(max-width: 425px) {
            flex: 0 0 100%;
        }

        .titulo-info-interes{
            font-size: 20px;
            line-break: 26px;
            font-weight: 500;
            color: #FFF;
            padding-bottom: 10px;
            margin-bottom: 10px;
            position: relative;

            &:after{
                content: "";
                display: block;
                position: absolute;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 1px;
                background-color: #FFFFFF4D;
            }
        }

        ul.lista-contactos{
            list-style-type: none;
            margin: 0;
            padding: 0;

            li.item-contacto{
                color: #FFF;
                font-size: 16px;
                line-height: 22px;
                font-weight: 400;
                margin-bottom: 10px;

                &:last-child{
                    margin-bottom: 0;
                }
                
                b{
                    font-weight: 700;
                }

                span{
                    font-weight: 400;

                    a{
                        color: #FFF;
                        font-weight: 400;
                        text-decoration: none;
                    }
                }
            }
        }

    }
}