.block-steps {
    /* padding: 32px 0; */
    position: relative;
}

.block-steps .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.block-steps .boxes-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
}

.block-steps .box-single {
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #fff;
    width: calc(25% - 48px);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 38px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.block-steps .box-single .box-number {
    width: 48px;
    height: 48px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    color: #fff;
    background-color: var(--brick);
    border-radius: 999px;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Arial';
}

.block-steps .box-single .box-title {
    font-size: 24px;
    font-weight: 500;
}

.block-steps .box-single .box-description {
    font-size: 14px;
    max-width: max(219px, 75%);
}

@media (max-width:1440px) {
    .block-steps .boxes-wrapper {
        gap: 32px;
    }

    .block-steps .box-single {
        width: calc(25% - 24px);
    }
}

@media (max-width:1199px) {

    .block-steps .box-single {
        width: calc(50% - 16px);
    }
}

@media (max-width:991px) {

    .block-steps .content-wrapper {
        gap: 32px;
    }
}


@media (max-width:679px) {
    .block-steps .box-single {
        width: 100%;
    }

}