  .listLinks_type3 {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3rem 0;
    position: relative;
    z-index: 0;
}

    .listLinks_type3::before {
        content: "";
        position: absolute;
        background: linear-gradient( rgba(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 0.5), rgba(var(--color-primary-h), var(--color-primary-s), var(--color-primary-l), 1) );
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: -1;
    }

    .listLinks_type3 a.listLinks_wrap {
        padding: 1rem 1.5rem 1rem 2rem;
        color: #1f1f1f;
        text-decoration: none;
        background-color: #fff;
        width: 100%;
        display: flex;
        align-items: center;
        border-radius: 10px;
        justify-content: flex-start;
        box-shadow: 0 0.25rem 1.125rem rgba(88,88,88,0.25);
    }

        .listLinks_type3 a.listLinks_wrap:hover,
        .listLinks_type3 a.listLinks_wrap:focus {
            color: var(--color-primary);
            outline: 0;
        }

        .listLinks_type3 a.listLinks_wrap span {
            background-color: var(--color-secondary);
            border-radius: 50%;
            padding: 8px;
        }

    .listLinks_type3 .listLinks_wrap img {
        width: 40px;
        height: 40px;
    }

    .listLinks_type3 a.listLinks_wrap:hover span,
    .listLinks_type3 a.listLinks_wrap:focus span {
        transform: scale(1.1);
    }

    .listLinks_type3 .listLinks_wrap .title {
        font-weight: 600;
        font-size: 1rem;
        margin-bottom: 0;
        line-height: 1.3125rem;
        padding-left: 1rem;
    }

    .listLinks_type3 .access_footer_link:focus {
        background-color: var(--color-white);
    }

/**************
RWD s.
***************/
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
    .listLinks_type3 a.listLinks_wrap {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }
}

/**************
  RWD e.
  ***************/
