.dz-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    transition: all 0.2s ease;
}
.dz-steps__item {
    text-align: center;
    border: 1px #000 solid;
    border-radius: 16px;
    flex: 1 1 calc(25% - (32px * 3 / 4));
    padding: 24px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.dz-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    transition: all 0.2s ease;
}
.dz-grid__item {
    border-radius: 16px;
    overflow: hidden;
    flex: 1 1 calc(50% - (32px * 1 / 2));
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.dz-grid__item:last-child {
    flex: 1 1 100%;
}
.dz-grid__img {
    width: 100%;
}

/* Adaptation */
@media screen and (max-width: 1080px) {
    .dz-steps__item {
        flex: 1 1 calc(50% - (32px * 1 / 2));
    }
}
@media screen and (max-width: 980px) {
    .dz-grid {
        gap: 16px;
    }
    .dz-grid__item {
        flex: 1 1 100%;
    }
}
@media screen and (max-width: 767px) {
    .dz-steps__item,
    .dz-grid__item {
        border-radius: 8px;
    }
}
@media screen and (max-width: 600px) {
    .dz-steps {
        gap: 16px;
    }
}
@media screen and (max-width: 540px) {
    .dz-steps__item {
        flex: 1 1 100%;
    }
}