.cards-azul-block {
    flex-direction: column;

    & h5 {
        margin-bottom: 30px;
        color: #003bd1;
        font-weight: 600;
    }

    .cards-azul {
        display: flex;
        flex-wrap: wrap;
        gap: 32px;
        row-gap: 15px;

        .card-be {
            width: 48%;
            color: #fff;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: flex-start;

            & span {
                width: 80%;
            }

            & img {
                height: auto;
                width: 15%;
                margin-right: 12px;
            }
			
			& a {
				color:#fff;
				transition:.5s;
			}
			
			& a:hover {
				opacity:.5;
			}
        }

        .card-be:nth-child(4n+1), .card-be:nth-child(4n+4) {
            background-color: #003bd1;
        }

        .card-be:nth-child(4n+2), .card-be:nth-child(4n+3) {
            background-color: #0E65E5;
        }

        .card-be:nth-child(4n+1), .card-be:nth-child(4n+2) {
            border-radius: 0px 0px 34px 0px;
            -webkit-border-radius: 0px 0px 34px 0px;
            -moz-border-radius: 0px 0px 34px 0px;
        }

        .card-be:nth-child(4n+3), .card-be:nth-child(4n) {
            border-radius: 34px 0px 0px 0px;
            -webkit-border-radius: 34px 0px 0px 0px;
            -moz-border-radius: 34px 0px 0px 0px;
        }
    }

    @media (max-width: 768px) {
        & h5 {
            font-size: 16px;
        }

        .cards-beneficios .card-be {
            width: 100%;
        }

        .card-be:nth-child(4n+1), .card-be:nth-child(4n+3) {
            background-color: #003bd1 !important;
            border-radius: 0px 0px 34px 0px !important;
            -webkit-border-radius: 0px 0px 34px 0px !important;
            -moz-border-radius: 0px 0px 34px 0px !important;
        }

        .card-be:nth-child(4n+2), .card-be:nth-child(4n) {
            background-color: #0E65E5 !important;
            border-radius: 34px 0px 0px 0px !important;
            -webkit-border-radius: 34px 0px 0px 0px !important;
            -moz-border-radius: 34px 0px 0px 0px !important;
        }

        .card-be {
            width: 100% !important;
        }
    }
}