.editor_body .timeline {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 810px;
    position: relative;
}

.editor_body .timeline__content-title {
    font-weight: normal;
    font-size: 66px;
    margin: -10px 0 0 0;
    transition: 0.4s;
    padding: 0 10px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #fff !important;
    text-shadow: #1A396E 1px 2px 3px;
}

.editor_body .timeline__content-desc {
    margin: 0;
    font-size: 15px;
    box-sizing: border-box;
    color: rgba(255, 255, 255, .9) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    line-height: 25px;
}

.editor_body .timeline:before {
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
    content: "";
    background: rgba(255, 255, 255, 0.07);
}

@media only screen and (max-width: 767px) {
    .editor_body .timeline:before {
        left: 40px;
    }
}

.editor_body .timeline-item {
    padding: 40px 0;
    opacity: 0.3;
    filter: blur(2px);
    transition: 0.5s;
    box-sizing: border-box;
    width: calc(50% - 40px);
    display: flex;
    position: relative;
    transform: translateY(-80px);
}

.editor_body .timeline-item:before {
    content: attr(data-text);
    letter-spacing: 3px;
    width: 100%;
    position: absolute;
    color: rgba(255, 255, 255, .5);
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    border-left: 2px solid rgba(255, 255, 255, .5);
    top: 70%;
    margin-top: -5px;
    padding-left: 15px;
    opacity: 0;
    right: calc(-100% - 39px);
}

.editor_body .timeline-item:nth-child(even) {
    align-self: flex-end;
}

.editor_body .timeline-item:nth-child(even):before {
    right: auto;
    text-align: right;
    left: calc(-100% - 39px);
    padding-left: 0;
    border-left: none;
    border-right: 2px solid rgba(255, 255, 255, .5);
    padding-right: 15px;
}

.editor_body .timeline-item--active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

.editor_body .timeline-item--active:before {
    top: 50%;
    transition: 0.3s all 0.2s;
    opacity: 1;
}

.editor_body .timeline-item--active .timeline__content-title {
    margin: -35px 0 20px 0;
}

.editor_body .timeline__img {
    max-width: 100%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .4);
}

.editor_body .timeline-container {
    width: 100%;
    position: relative;
    padding: 80px 0;
    transition: 0.3s ease 0s;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.editor_body .timeline-container:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 57, 110, 0.7);
    backdrop-filter: blur(3px);
    content: "";
}

.editor_body .timeline-header {
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.editor_body .timeline-header__title {
    color: #fff;
    font-size: 46px;
    font-family: 'Poppins', sans-serif;
    font-weight: normal;
    margin: 0;
}

.editor_body .timeline-header__subtitle {
    color: rgba(255, 255, 255, .8) !important;
    font-family: 'Poppins', sans-serif;
    margin: 10px 0 0 0;
    font-weight: normal;
    line-height: 29px;
    max-width: 810px;
    padding-right: 134px;
    margin: auto;
    font-size: 20px;
}


@media only screen and (max-width: 767px) {

    .editor_body .timeline-header__subtitle {
        color: rgba(255, 255, 255, .8) !important;
        font-family: 'Poppins', sans-serif;
        margin: 10px 0 0 0;
        font-weight: normal;
        line-height: 29px;
        max-width: 810px;
        padding: 0 30px 0 40px;
    }


    .editor_body .timeline-item {
        align-self: baseline !important;
        width: 100%;
        padding: 0 30px 150px 80px;
    }

    /* .timeline-item:before {
        left: 10px !important;
        padding: 0 !important;
        top: 50px;
        text-align: center !important;
        width: 60px;
        border: none !important;
    } */

    .editor_body .timeline-item:before {
        left: 100px !important;
        padding: 0 !important;
        top: 30px;
        width: 250px;
        border: none !important;
        text-align: left !important;
        color: white;
        text-shadow: #1A396E 3px 2px 0px;
        font-size: 22px;
        font-weight: 800;
    }

    .editor_body .timeline-item:last-child {
        padding-bottom: 40px;
    }
}