* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif;
}

.timeline-wrapper {
    max-width: 1080px;
    margin: 50px auto;
    padding: 0 20px;
    position: relative;
}

.timeline-wrapper .center-line {
    position: absolute;
    height: 100%;
    width: 4px;
    background: white;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
}

.timeline-wrapper .timeline-row {
    display: flex;
}


.timeline-wrapper .timeline-row-2 {
    justify-content: flex-end;
}

.timeline-wrapper .timeline-row section {
    background: white;
    border-radius: 5px;
    width: calc(50% - 40px);
    padding: 20px;
    position: relative;
}

.timeline-wrapper .timeline-row section::before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    background: white;
    top: 28px;
    z-index: -1;
    transform: rotate(45deg);
}

.timeline-row-1 section::before {
    right: -7px;
}

.timeline-row-2 section::before {
    left: -7px;
}

.timeline-row section .icon, .center-line .scroll-icon {
    position: absolute;
    background: white;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    font-size: 17px;
    box-shadow: 0 0 0 4px white, inset 0 2px 0 rgba(0, 0, 0, 0.08), 0 3px 0 4px rgba(0, 0, 0, 0.05);
}

.timeline-row-1 section .icon {
    top: 15px;
    right: -60px;
}

.timeline-row-2 section .icon {
    top: 15px;
    left: -60px;
}

.timeline-row section .details, .timeline-row section .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline-row section .details .title {
    font-size: 22px;
    font-weight: 600;
}

.timeline-row section p {
    margin: 10px 0 17px 0;
}

@media(max-width: 790px) {
    .timeline-wrapper .center-line {
        left: 40px;
    }
    .timeline-wrapper .timeline-row {
        margin: 30px 0 3px 60px;
    }
    .timeline-wrapper .timeline-row section {
        width: 100%;
    }
    .timeline-row-1 section::before {
        left: -7px;
    }
    .timeline-row-1 section .icon {
        left: -60px;
    }
}

@media(max-width: 440px) {
    .timeline-wrapper .center-line,
    .timeline-row section::before,
    .timeline-row section .icon {
        display: none;
    }
    .timeline-wrapper .timeline-row {
        margin: 10px 0;
    }
}