.steps-block {
    position: relative;
}

.steps-block .steps-content {
    position: relative;
    padding: 60px 0;
}

.steps-block .steps-content .steps-title {
    color: #111B47;
    font-size: 60px;
    font-weight: 900;
    line-height: 100%;
    margin-bottom: 40px;
}

.steps-block .steps-content .steps-wrapper {
    display: grid;
    flex-direction: row;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.steps-block .steps-content .steps-wrapper .single-step {
    background: #fff;
    box-shadow: 0px 20px 24px -4px rgba(28, 26, 24, 0.08);
    padding: 30px;
    position: relative;
    height: 100%;
}

.steps-block .steps-content .steps-wrapper .arrow-to-next-step {
    height: 40px;
    width: 40px;
    background-color: var(--main);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    right: -35px;
    top: 40%;
    z-index: 99;
}

.steps-block .steps-content .steps-wrapper .arrow-to-next-step.hidden {
    display: none;
}

.steps-block .steps-content .steps-wrapper .single-step .single-step-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.steps-block .steps-content .steps-wrapper .single-step .single-step-content .single-step-pagination {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    margin-bottom: 20px;
}

.steps-block .steps-content .steps-wrapper .single-step .single-step-content .single-step-pagination span {
    height: 5px;
    background-color: var(--bg);
}

.steps-block .steps-content .steps-wrapper .single-step .single-step-content .single-step-pagination span.painted {
    background-color: var(--main);
}

.steps-block .steps-content .steps-wrapper .single-step .single-step-content .single-step-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
    color: var(--dark);
    margin-bottom: 10px;
}

.steps-block .steps-content .steps-wrapper .single-step .single-step-content .single-step-desc {
    color: var(--gray);
    font-size: 16px;
    line-height: 135%;
}

@media only screen and (max-width: 1000px) {
    .steps-block .steps-content .steps-title {
        font-size: 42px;
    }
    .steps-block .steps-content {
        padding: 30px 0;
    }

    .steps-block .steps-content .steps-wrapper .arrow-to-next-step {
        display: none;
    }

    .steps-block .steps-content .steps-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 800px) {
    .steps-block .steps-content .steps-title {
        font-size: 42px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 480px) {
    .steps-block .steps-content .steps-title {
        font-size: 32px;
    }
    .steps-block .steps-content .steps-wrapper .single-step .single-step-content .single-step-title {
        font-size: 18px;
        
    }

    .steps-block .steps-content .steps-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .steps-block .steps-content .steps-wrapper .arrow-to-next-step {
        display: flex;
        right: 42.5%;
        top: 95%;
        transform: rotate(90deg);
    }
}