.some-journey-section {
    min-height: 539px;
    display: flex;
    padding: 40px 0;
    align-items: center;
    justify-content: end;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.some-journey-section:before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, rgba(27, 27, 27, 0.00) 45.81%, rgba(27, 27, 27, 0.40) 52.65%, rgba(27, 27, 27, 0.80) 70.91%, #1B1B1B 94.57%);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.some-journey-section .content-box {
    max-width: 575px;
    margin-left: auto;
}

.some-journey-section .content-box h2,.some-journey-section .content-box p {
    color: #ffffff;
}
.some-journey-section .content-box h2{
    font-size: 50px;
    line-height: 60px;
}


@media only screen and (max-width:1399px){
    .some-journey-section {
        min-height: 460px;
    }    
}
@media only screen and (max-width:1199px){
    .some-journey-section {
        min-height: 420px;
    }
    .some-journey-section .content-box h2 {
        font-size: 30px;
        line-height: 38px;
    }
    .some-journey-section .content-box {
        max-width: 350px;
    }
}
@media only screen and (max-width:991px){
    .some-journey-section {
        min-height: 350px;
    }
}
@media only screen and (max-width:767px){
    .some-journey-section .content-box {
        max-width: 100%;
    }
    .some-journey-section:before {
        background: linear-gradient(90deg, rgba(27, 27, 27, 0.40) 45.81%, rgba(27, 27, 27, 0.60) 52.65%, rgba(27, 27, 27, 0.80) 70.91%, #1B1B1B 94.57%);
    }
}