.data-cards {
    position: relative;
}

.data-cards .container {
    position: relative;
    z-index: 3;
}

.data-cards .pattern-bg {
    position: absolute;
    bottom: 0px;
}

.data-cards .data-card__title {
    padding-bottom: 0;
}

.data-cards__item {
    background-color: #EFEFEF;
}

.row.justify-center.first-data__items {
    justify-content: left;
}

.data-cards__item {
    margin-bottom: 15px;
}

.first-data__items .data-cards__item:first-child {
    background-color: #E4F0E7;
    border-radius: 0;
}

.first-data__items .data-cards__item:first-child .data-card__title {
    color: #158934;
}

.first-data__items .data-cards__item:last-child {
    border-radius: 0 ;
}

.second-data__items .data-cards__item:first-child {
    background-color: #EAE7F0;
    border-radius: 0;
}

.second-data__items .data-cards__item:first-child .data-card__title {
    color: #522E91;
}

.second-data__items .data-cards__item:last-child {
    border-radius: 0;
}

.data-cards__item {
    padding: 20px 40px;
}

.data-cards .data-header h4 {
    line-height: 30px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .data-card__description p {
        width: 130px;
    }    

    .data-cards .justify-center {
        gap: 30px;
        margin-bottom: 30px;
    }
}

@media (min-width: 1200px) {
    .data-cards__item {
        width: 250px;
        height: 127px;
        padding: 15px 40px;
        margin-bottom: 0;
    }

    .data-cards .data-header h4 {
        padding: 40px 30px 40px 0;
        margin-bottom: 0;
    }

    .first-data__items .data-cards__item:first-child {
        border-radius: 70px 0 0 0;
        margin-left: 15px;
    }

    .first-data__items .data-cards__item:last-child {
        border-radius: 0 70px 0 0;
    }
    
    .second-data__items .data-cards__item:first-child {
        border-radius: 70px 0 0 0;
    }

    .second-data__items .data-cards__item:last-child {
        border-radius: 0 0 70px 0;
    }
}