.sectTitle.big{
    font-size: 22px;
    line-height: 1.3em;
}

.fourSteps {
    margin-bottom: 50px;
    background-color: #FDFDFD;
}

.fourSteps .sectTitle + p {
    text-align: center;
}

/*Стрелочка*/
.fourSteps_arrow{
    margin: 15px auto;
    margin-bottom: 0;
    display: block;
}
/* Цитатный блок */
.yelBlockquote{
    background: linear-gradient(163.81deg, #FFEC00 20.96%, #FF8C00 267.75%),
linear-gradient(0deg, #C4C4C4, #C4C4C4);
    padding: 17px 15px;
    border-radius: 15px;
    margin: 20px 0;
    line-height: 20px;
}

/*Шаги*/
.fourSteps-stepsBox{
    padding: 15px 0;
    padding-bottom: 40px;
    counter-reset: steps;
    overflow: hidden;
}

.fourSteps-step{
    background-color: #fff;
    box-shadow: 0px 2px 40px rgba(105, 105, 105, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    margin: 30px 0;
    margin-bottom: 60px;
}

.fourSteps-step:last-child{
    margin-bottom: 0;
}

.fourSteps-step:before{
    counter-increment: steps; 
    content: counter(steps);
    font-size: 35px;
    font-weight: 600;
    background: linear-gradient(163.81deg, #FFEC00 20.96%, #FF8C00 267.75%), #C4C4C4;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    margin-top: -50px;
    grid-area: numb;
}

.fourSteps-step-title{
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 10px;
    grid-area: title;
}

/* выравнивание */
.tal{
    text-align: left;
}
/* Медиа */

/*==================================================================================*/
/*==========================   min-width: 768px ====================================*/
/*==================================================================================*/

@media (min-width: 768px) {
    /*Стрелочка*/
    .fourSteps_arrow{
        width: 45px;
        height: 26px;
    }

    /* Цитатный блок */
    .yelBlockquote{
        text-align: center;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
        padding: 27px 25px;
    }

    .fourSteps-step{
        display: grid;
        grid-template-areas: 
        "numb title"
        "numb desc";
        grid-template-columns: 160px 1fr;
        padding: 20px 50px;
        padding-left: 0;
        position: relative;
    }
    /* Шаги */
    .fourSteps-step:after{
        content: "";
        position: absolute;
        left: -50px;
        top: calc(50% - 3px);
        width: 50px;
        height: 7px;
        background: linear-gradient(163.81deg, #FFEC00 20.96%, #FF8C00 267.75%);
    }

    .fourSteps-step-title{
        align-self: end;
        font-size: 24px;
        margin-bottom: 20px;
    }
    .fourSteps-step-desc{
        grid-area: desc;
        font-size: 16px;
    }
    .fourSteps-step:before{
        margin: 0;
        color: #FF8C00;
        background: linear-gradient(163.81deg, #FFEC00 20.96%, #FF8C00 267.75%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 100px;
        border-radius: 0;
        height: auto;
        width: auto;
    }

    .fourSteps-stepsBox{
        padding-left: 50px;
        position: relative;
    }
    
    .fourSteps-stepsBox:before{
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 7px;
        height: 100%;
        background: linear-gradient(271deg, #FFEC00 20.96%, #FF8C00 700%), #C4C4C4;
    }
    
    .decoreline_start{
        content: "";
        position: absolute;
        left: -50px;
        top: -45px;
        width: 7px;
        height: calc(50% + 45px);
        background: #FDFDFD;
    }
    
    .decoreline_end{
        content: "";
        position: absolute;
        left: -50px;
        top: 50%;
        width: 7px;
        height: calc(50% + 75px);
        background: #FDFDFD;
        background: #FDFDFD;
    }
    /* выравнивание сброс*/
    .fourSteps .sectTitle.tal{
        text-align: center;
    }
}

/*==================================================================================*/
/*==========================   min-width: 992px ===================================*/
/*==================================================================================*/

@media (min-width: 992px) {
    .sectTitle.big{
        font-size: 40px;
    }
}

/*==================================================================================*/
/*==========================   min-width: 1200px ===================================*/
/*==================================================================================*/

@media (min-width: 1200px) {
    .sectTitle.big{
        font-size: 66px;
    }
    .fourSteps-step-title{
        font-size: 30px;
    }
    .fourSteps-step-desc{
        font-size: 22px;
        line-height: 1.8em;
    }
    
}