.step {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: #eff0f2;
}

.step .steps-heading {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.step .steps-heading h6 {
    letter-spacing: 3px;
    font-size: 25px;
    color: var(--base-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;

}

.step .steps-heading h6::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    transform: translateY(-50%);
    left: calc(50% - -118px);
    margin-left: 12px;
    width: 73px;
    height: 3px;
    background-color: var(--base-color);

}

.step .steps-heading h1 {
    font-size: 45px;
    font-weight: bold;
    color: var(--base-color);
}


.achievement_sec .steps-wrap {
    position: relative;
}

.step .step-row {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    position: relative;
}

.step .step-row.left {
    flex-direction: row;
}

.step .step-row.right {
    flex-direction: row-reverse;
}

.step .step-icon {
    width: 110px;
    height: 110px;
    background: #03415e;
    color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(253, 201, 13, 0.3);
    position: relative;
    z-index: 2;
}

.step .step-icon span {
    font-size: 12px;
    letter-spacing: 2px;
}

.step .step-icon strong {
    font-size: 40px;
    line-height: 1;
}

.step .step-content {
    width: 45%;
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    min-height: 170px;
    max-height: 180px;
    padding-top: 38px;
}

.step .step-content h4 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #068047;
    padding-bottom: 5px;
}

.step .step-content p {
    font-size: 18px;
    line-height: 1.2;
    color: #555;
    padding-top: 15px;
}

.step .step-row.left .step-content {
    margin-left: 40px;
}

.step .step-row.right .step-content {
    margin-right: 40px;
    text-align: right;
}

.step .steps-wrap::before {
    display: none;
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #f7c71e;
    transform: translateX(-50%);
}

.step .step-row.left::before {
    content: "";
    position: absolute;
    left: 110px;
    top: 50%;
    width: calc(50% - 0px);
    height: 2px;
    background: #148953;
    z-index: 10;
}

.step .step-row.left::after {
    content: "";
    position: absolute;
    left: calc(50% - -109px);
    top: 50%;
    width: 2px;
    height: calc(100% - 25px);
    background: linear-gradient(180deg, #016838 -30%, rgb(239 240 242) 86%);
}

.step .step-row.right::before {
    content: "";
    position: absolute;
    right: 110px;
    top: 50%;
    width: calc(50% - 0px);
    height: 2px;
    background: #148953;
    z-index: 10;
}

.step .step-row.right::after {
    content: "";
    position: absolute;
    left: calc(50% - 110px);
    top: 50%;
    width: 2px;
    height: calc(100% - -14px);
    background: #148953;
}

.step .step-row:last-child {
    position: relative;
}

.step .step-row:last-child .step-content::after {
    content: "";
    position: absolute;
    margin-top: 50px;
    /* left: calc(50% - 108px); */
    /*if right content box*/
    left: calc(50% - -353px);
    /*if left content box*/
    top: 100%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #f7c71e;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 0 0 rgba(247, 199, 30, 0.6);
    animation: rippleDot 2.5s infinite;
    display: none;
}

@keyframes rippleDot {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 199, 30, .6);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(247, 199, 30, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(247, 199, 30, 0);
    }
}


.step-icon img {
    animation: floatIcon 3.5s ease-in-out infinite;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-8px) scale(1.05);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/*********** mobile Responsive start **********/
@media(max-width:768px) {
    .step .steps-wrap::before {
        display: none;
    }

    .step .step-row,
    .step .step-row.right {
        flex-direction: column;
        text-align: center;
    }

    .step .step-content {
        width: 100%;
        margin: 20px 0 0;
    }
}

@media(max-width:990px) {
    .step .steps-heading h6::after {
        display: none;
    }
.step .steps-heading h1 {
    font-size: 35px;
}
    .step .steps-heading h6 {
        font-size: 26px;
    }

    .step .step-row.left {
        flex-direction: column;
    }

    .step .step-row.left .step-content {
        margin-left: 0px;
    }

    .step .step-row.right .step-content {
        margin-right: 0px;
    }

    .step .step-row.left::after {
        left: calc(50% - -109px);
        top: 16%;
        height: calc(100% - 195px);
    }

    .step .step-row.left::before {
        left: 162px;
        top: 16%;
        width: calc(50% - 53px);
    }

    .step .step-row.right::before {
        right: 187px;
        top: 18%;
        width: calc(50% - 58px);
        height: 2px;
    }

    .step .step-row.right::after {
        left: calc(50% - 130px);
        top: 18%;
        width: 2px;
        height: calc(100% - 211px);
        ;
    }

    .step .step-row:last-child .step-content::after {
        display: none;
    }

    .step h4 {
        text-align: center;
    }

    .step .step-content {
        min-height: 185px;
        max-height: 200px;
    }
}

@media (min-width:1200px) and (max-width:1399px) {
    .step .steps-heading h1 {
        font-size: 35px;
    }

    .step .steps-heading h6 {
        font-size: 18px;
    }

    .step .steps-heading h6::after {
        left: calc(50% - -75px);
        height: 2px;
    }

    .step .step-icon {
        width: 100px;
        height: 100px;
    }

    .step-icon img {
        width: 45%;
    }

    .step .step-content p {
        font-size: 16px;
    }

    .step .step-content {
        padding: 35px 20px;
        min-height: 145px;
        max-height: 150px;
    }
}

@media (min-width:1700px) and (max-width:1900px) {
    .step .step-content h4 {
        font-size: 30px;
    }

    .step .step-content p {
        font-size: 20px;
    }

    .step .step-content {
        min-height: 180px;
        max-height: 190px;
    }
}

@media (min-width:1901px) and (max-width:3000px) {
    .step .step-content h4 {
        font-size: 35px;
    }

    .step .step-content p {
        font-size: 20px;
    }

    .step .step-content {
        min-height: 190px;
        max-height: 200px;
    }
}

























































.banner-slide:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.75) 45%,
        rgba(0,0,0,0.45) 100%
    );
     /* background: linear-gradient(282deg, rgb(255 255 255 / 0%) 0%, rgb(0 0 0 / 94%) 72%);*/
}