section.leap-flow {
    padding: 100px 0;
    background-color: #000;
}
.leap-flow-header {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #E7E5BF;
    display: flex;
    gap: 60px;
    text-align: left;
    align-items: center;
}
.leap-flow-header h3 {
    margin-bottom: 10px;
    font-weight: normal;
    color: #E7E5BF;
}
.leap-flow-header p {
    color: #fff;
}
.leap-flow-content-title {
    margin-bottom: 35px;
}
.leap-flow-content-title h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    color: #fff;
    text-align: center;
}



.leap-flow-content-each {
    display: flex;
    gap: 200px;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 55px;
    position: relative;
}
.leap-flow-content-each::after {
    height: 100%;
    width: 1px;
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    background-color: #E7E5BF;
}
.leap-flow-content-each:last-child {
    padding-bottom: 0;
}
.leap-flow-content-each-count {
    height: 46px;
    width: 46px;
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translateX(-20px);
    background-color: #97BF13;
    color: #fff;
    font-size: 19px;
    font-weight: 400;
    text-align: center;
    line-height: 44px;
    border-radius: 50px;
    z-index: 2;
    border: 2px solid #000;
    outline: 1px solid #97BF13;
}
.leap-flow-left, .leap-flow-right {
    width: calc(50% - 100px);
}
.leap-flow-content-each:nth-child(odd) {
    flex-direction: row-reverse;
}
.leap-flow-content-each h5 {
    font-size: 32px;
    color: #E7E5BF;
    font-weight: normal;
    margin-bottom: 20px;
}
.leap-flow-content-each h6 {
    font-size: 16px;
    line-height: 2em;
    color: #fff;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
}
.leap-flow-content-each p{
    color: #fff;
}
.leap-flow-right-img {
    width: 100%;
    height: 330px;
    overflow: hidden;
    border-radius: 15px;
}
.leap-flow-right-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}
.leap-flow-right-img:hover img {
    transform: scale(1.05);
}

@media (max-width:1566px) {
    .leap-flow-right-img {
        height: 320px;
    }
}


@media (max-width:1440px) {
    .leap-flow-right-img {
        height: 300px;
    }

}
@media (max-width:1380px) {
    .leap-flow-right-img {
        height: 280px;
    }
}
@media only screen and ( max-width: 1199px) {
    .leap-flow-right-img {
        height: 250px;
    }
}
@media only screen and ( max-width: 961px) {
    section.leap-flow {
        padding: 60px 0;
    }
    .leap-flow-content-each h5 {
        font-size: 28px;
    }
    .leap-flow-right-img {
        height: 200px;
    }
    .leap-flow-content-each {
        gap: 140px;
    }
    .leap-flow-left, .leap-flow-right {
        width: calc(50% - 70px);
    }
}
@media only screen and ( max-width: 768px) {
    .leap-flow-content-each h5 {
        font-size: 24px;
    }
    .leap-flow-header {
        margin-bottom: 40px;
        padding-bottom: 40px;
        gap: 50px;
    }
    .leap-flow-left, .leap-flow-right {
        width: 100%;
    }
    .leap-flow-left {
        padding-top: 60px;
        text-align: center;
    }
    .leap-flow-content-each {
        gap: 20px;
    }
    .leap-flow-content-each-count {
        top: 0;
        font-size: 16px;
        width: 42px;
        height: 42px;
        line-height: 38px;
    }
    .leap-flow-content-each::after{
        display: none;
    }
    .leap-flow-right-img {
        text-align: center;
    }
    .leap-flow-right-img img {
        width: auto;
        max-width: 100%;
        border-radius: 15px;
    }
    .leap-flow-right-img:hover img {
        transform: scale(1);
    }
    .leap-flow-content-each h5,
    .leap-flow-content-each h6 {
        margin-bottom: 15px;
    }
}
@media only screen and ( max-width: 560px) {
  
}