.steps {
    padding: 100px 0;
}

.steps.yellow {
    background-color: #efe2bd;
}

.steps.yellow .step__holder {
    background-color: #efe2bd;
}

.steps__heading {
    text-align: center;
    margin-bottom: 60px;
}

.steps__heading h2 {
    font-size: 36px;
    color: #006c80;
    margin-bottom: 16px;
}

.steps__heading h4 {
    font-size: 18px;
    color: #006c80;
}

.steps__wrapper {
    display: block;
    float: left;
    width: 100%;
    text-align: center;
}

.step__item {
    text-align: center;
    width: 33%;
    display: inline-block;
    position: relative;
}

.step__holder {
    width: 130px;
    height: 100px;
    background-color: #fff;
    position: relative;
    margin: 0 auto;
}

.step__circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #005972;
    position: relative;
    margin: 0 auto;
    display: block;
}

.step__number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fdb728;
    font-size: 34px;
    font-weight: 700;
}

.step__item-text {
    font-size: 19px;
    color: #717375;
    padding-top: 17px;
}

.step__item:nth-child(3n+1) .step__holder {
    position: relative;
    z-index: 4;
}

.step__item:nth-child(3n+2) .step__holder::before {
    content: '';
    position: absolute;
    height: 1px;
    background-color: #fdb728;
    width: 220%;
    top: 50%;
    right: 100%;
}

.step__item:nth-child(3n+2) .step__holder::after {
    content: '';
    position: absolute;
    height: 1px;
    background-color: #fdb728;
    width: 220%;
    top: 50%;
    left: 100%;
}

.step__item:last-child .step__holder::after {
    display: none;
}

@media screen and (max-width: 976px) {
    .step__item:nth-child(3n+2) .step__holder::before {
        width: 160%;
    }

    .step__item:nth-child(3n+2) .step__holder::after {
        width: 160%;
    }
}

@media screen and (max-width: 767px) {
    .step__item {
        text-align: center;
        width: 100%;
        display: block;
    }

    .step__item:nth-child(3n+2) .step__holder::before {
        display: none;
    }

    .step__item:nth-child(3n+2) .step__holder::after {
        display: none;
    }
}