/* =========================
   Resume Heading
========================= */

.timeline-section {
    padding: 30px 9% 30px;
}

/* =========================
   Container
========================= */

.timeline-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* =========================
   Title
========================= */

.timeline-title {
    font-size: 28px;
    color: #ffffff;
    margin-bottom: 30px;
    font-family: 'Oswald', sans-serif;
}

/* =========================
   Timeline
========================= */

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #00ffee;
}

/* =========================
   Item
========================= */

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

/* =========================
   Dot
========================= */

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 0px;
    width: 14px;
    height: 14px;
    background-color: #00ffee;
    border-radius: 50%;
}

/* =========================
   Content Box
========================= */

.timeline-content {
    background-color: #00ffee0a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #00ffee;
}

/* =========================
   Date
========================= */

.timeline-date {
    display: inline-block;
    font-size: 14px;
    color: #00ffee;
    margin-bottom: 8px;
    font-family: 'Oswald', sans-serif;
}

/* =========================
   Heading
========================= */

.timeline-content h3 {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

/* =========================
   Paragraph
========================= */

.timeline-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #d0dce8;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}