#experiences-container {
    background: var(--secondary-background-color);
    color: var(--font-color);
    padding: 30px;
}

/* Timeline */
.timeline-container {
    padding: 35px;
    margin-top: 15px;
}

.row {
    max-width: 1200px;
    margin: auto;
}

.main-timeline:after {
    content: '';
    display: block;
    clear: both;
}
.main-timeline:before {
    content: '';
    background-color: var(--font-secondary-color);
    height: 100%;
    width: 5px;
    transform: translateX(-50%);
    position: absolute;
    top: 0;
    left: 50%;
}
.timeline {
    width: 50%;
    padding: 0 100px 0 0;
    margin: 0 10px 20px 0;
    float: left;
    position: relative;
    z-index: 1;
}
.timeline:before {
    content: '';
    background-color: var(--font-secondary-color);
    height: 5px;
    width: 80px;
    position: absolute;
    right: 50px;
    top: 50px;
    z-index: -1;
}
.timeline-content {
    color: #555;
    background-color: #fff;
    text-align: center;
    padding: 0 0 10px;
    border-radius: 23px;
    display: block;
    box-shadow: var(--shadow);
}

.timeline-year {
    background: var(--background-gradient);
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    line-height: 100px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    position: absolute;
    right: -50px;
    top: 0;
    z-index: 1;
}
.timeline-year:before {
    content: '';
    background-color: #fff;
    height: 80%;
    width: 80%;
    border-radius: 50%;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
}
.timeline-icon {
    color: var(--icon-color);
    font-size: 35px;
}

.title {
    color: #fff;
    background: var(--background-gradient);
    padding: 10px;
    margin: 0 0 10px;
    border-radius: 20px 20px 0 0;
}

.description {
    letter-spacing: 1px;
    margin: 0 15px;
}

.timeline:nth-child(even) {
    padding: 0 0 0 100px;
    margin: 0 0 20px 10px;
    float: right;
}

.timeline:nth-child(even):before{
    right: auto;
    left: 50px;
}

.timeline:nth-child(even) .timeline-year {
    right: auto;
    left: -50px;
}

.timeline:nth-child(even) .timeline-icon {
    right: auto;
    left: 20px;
}

.paragraph-div {
    margin-right: 10px;
    margin-left: 12px;
}

/*.main-timeline .timeline:nth-child(4n+2) .timeline-year, .main-timeline .timeline:nth-child(4n+2) .title {*/
/*    background: linear-gradient(to right,#FB6894,#FBB508);*/
/*}*/
/*.main-timeline .timeline:nth-child(4n+2) .timeline-icon {*/
/*    color: #FB6894;*/
/*}*/

/*.main-timeline .timeline:nth-child(4n+3) .timeline-year, .main-timeline .timeline:nth-child(4n+3) .title {*/
/*    background: linear-gradient(to right,#4B49C3,#EB66B4);*/
/*}*/

/*.main-timeline .timeline:nth-child(4n+3) .timeline-icon {*/
/*    color: #4B49C3;*/
/*}*/

/* Reponsiveness for Timeline */
@media screen and (max-width:767px) {
    .timeline,
    .timeline:nth-child(even) {
        width: 100%;
        padding: 95px 0 0;
        margin: 0 0 20px;
        float: none;
    }
    .main-timeline .timeline:before { display: none; }
    .main-timeline .timeline-year,
    .main-timeline .timeline:nth-child(even) .timeline-year {
        left: 50%;
        transform: translateX(-50%);
    }
}

