.steps-hero {
    background: linear-gradient(106deg, #3B3E45 1.01%, #69908F 44.64%, #B5C4CB 100%);
    padding: 100px 0 120px;
}

.steps-hero .column-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.steps-hero .column-row .column-left {
    width: 48%;
}

.steps-hero .column-row .column-right {
    width: 48%;
}

.steps-hero .column-row .column-left h2 {
    color: #ffffff;
    margin-bottom: 70px;
}

.step-content h3 {
    font-size: 20px;
    color: #B3C2C9;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-content p {
    color: #B3C2C9;
}

.timeline-item {
    padding-left: 100px;
    position: relative;
    min-height: 180px;
    overflow: hidden;
    cursor: pointer;
}
.timeline-item:not(:last-child) {
    padding-bottom: 20px;
}

.timeline-item .step-circle {
    position: absolute;
    left: 0;
    height: 75px;
    width: 75px;
    background-color: #B3C2C9;
    border-radius: 50%;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.timeline {
    counter-reset: section;
}

.timeline-item .step-circle:before {
    counter-increment: section 1;
    content: " " counter(section);
    font-size: 18px;
    font-weight: 600;
}
.timeline >.timeline-item:not(:last-child) .step-circle:after {
    content: "";
    font-size: -webkit-xxx-large;
    height: 100vh;
    width: 2px;
    background: #B3C2C9;
}

.timeline-item:hover .step-circle{
   background-color: #ffffff;
}
.timeline-item:hover .step-content p,.timeline-item:hover .step-content h3{
    color: #ffffff;
}
.timeline >.timeline-item:hover:not(:last-child) .step-circle:after {
    background: #ffffff;
}
.steps-hero .column-row .column-right .hero-mask img {
    width: 100%;
}

.step-content .btn {
    opacity: 0.6;
}
.timeline-item:hover  .step-content .btn{
    opacity: 1;
}
@media only screen and (max-width:1199px){
    .steps-hero {
        padding: 80px 0 80px;
    }
}

@media only screen and (max-width:991px){
    .steps-hero {
        padding: 60px 0 60px;
    }
    .timeline-item {
        padding-left: 80px;
    }
    .timeline-item .step-circle {
        height: 60px;
        width: 60px;
        background-color: #B3C2C9;
    }
    .steps-hero .column-row .column-left h2 {
        font-size: 45px;
    }
}
@media only screen and (max-width:767px){
    .steps-hero {
        padding: 40px 0 40px;
    }
    .steps-hero .column-row .column-left {
        width: 100%;
    }
    .steps-hero .column-row .column-right {
        width: 100%;
    }
    .timeline-item .step-circle {
        height: 45px;
        width: 45px;
    }
    .timeline-item {
        padding-left: 60px;
    }
    .steps-hero .column-row .column-left h2 {
        font-size: 24px;
    }
  
}

