.custom-step-boxes-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.custom-step-boxes-container .custom-step-boxes-item {
    border-radius: 1.5rem;
    border: 3px solid #000;
    background: #FFF;
    box-shadow: -.5rem .5rem 0px 0px #1C6900;
    padding: 2.5rem;
    display: flex;
    flex-flow: column nowrap;
    gap: 1.5rem;
}

.custom-step-boxes-container .custom-step-boxes-item .custom-step-boxes-item-image {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    width: 100%;
    max-width: 4.75rem;
    height: 4.75rem;
}

.custom-step-boxes-container .custom-step-boxes-item .custom-step-boxes-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.custom-step-boxes-container .custom-step-boxes-item .custom-step-boxes-item-content {
    display: flex;
    flex-flow: column nowrap;
    gap: 0.875rem;
}

.custom-step-boxes-container .custom-step-boxes-item .custom-step-boxes-item-content h3 {
    margin: 0;
}

.custom-step-boxes-container .custom-step-boxes-item .custom-step-boxes-item-content .custom-step-boxes-item-description {
    padding-top: 0.875rem;
    border-top: 1px solid #1c690019;
}

@media (max-width: 1024px) {
    .custom-step-boxes-container {
        gap: 1.25rem;
    }

    .custom-step-boxes-container .custom-step-boxes-item {
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .custom-step-boxes-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .custom-step-boxes-container .custom-step-boxes-item {
        align-items: center;
    }

    .custom-step-boxes-container .custom-step-boxes-item .custom-step-boxes-item-content {
        align-items: center;
    }

    .custom-step-boxes-container .custom-step-boxes-item .custom-step-boxes-item-content h3 {
        text-align: center;
    }

    .custom-step-boxes-container .custom-step-boxes-item .custom-step-boxes-item-content .custom-step-boxes-item-description {
        text-align: center;
    }
}