@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header__body {
    background: white;
    color: black;
    border-radius: 0;
}

.header__title {
    color: black;
}

.header-menu li a {
    color: black;
}

.header__burger span {
    background: black;
}

.header__burger::before {
    background: black;
}

.header__burger::after {
    background: black;
}

.active {
    background: white;
}

.header-menu {
    background-color: white;
}


.timeline-area ul {
    font-family: 'Golos Text', serif;
    list-style: none;
    margin: 0 !important;
}

.timeline-area a {
    font-family: 'Golos Text', serif;
    text-decoration: none !important;
    display: inline-block;
}

.timeline-area img {
    max-width: 100%;
}

.timeline-area button:focus {
    outline: none;
}

.timeline-area p {
    display: block;
    font-family: 'Golos Text', serif;
    font-size: 14px;
    line-height: 26px;
    margin: 0;
}

.timeline-area .container {
    width: 100%;
    max-width: 1140px;
    padding: 0 15px;
    box-sizing: border-box;
    margin: 0 auto;
}

.timeline-area .timelines h2 {
    font-family: 'Golos Text', serif;
    text-align: center;
    color: #000000;
    font-weight: 600;
    margin-bottom: 40px;
    font-size: 32px;
}

.timeline-area .d-flex-2 {
    display: flex;
    align-items: center;
}

.timeline-area {
    padding: 40px 0;
}

.all-timelines {
    position: relative;
}

.timelines h2 {
    text-align: center;
    color: #000000;
    font-weight: 600;
    margin-bottom: 40px;
}

.all-timelines::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    height: 100%;
    width: 2px;
    background: #efa22f;
    top: 20px;
}

.single-timeline {
    margin-bottom: 22px;
}

.timeline-blank {
    width: 50%;
}

.timeline-text {
    width: 50%;
    padding-left: 30px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
}

.timeline-text span {
    color: #000000;
    font-weight: 900;
    display: inline-block;
    font-size: 18px;
}

.timeline-text p {
    color: #000000;
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 1.2em;
}

.single-timeline:nth-child(even) .timeline-text p {
    text-align: right;
}

.timeline-area .t-square {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    left: -6px;
    background: #efa22f;
}

.single-timeline:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.single-timeline:nth-child(even) .t-square {
    right: -6px;
    left: unset;
}

.single-timeline:nth-child(even) .timeline-text {
    padding-left: 0;
    padding-right: 30px;
    text-align: right;
}

.single-timeline__content img{
    margin-bottom: 10px;
}

@media all and (max-width: 768px) {
    .all-timelines::before {
        right: unset;
        top: 0;
    }

    .single-timeline:nth-child(2n) .timeline-text {
        padding-left: 30px;
        padding-right: 0;
        text-align: left;
    }

    .single-timeline:nth-child(2n) .t-square {
        left: -6px;
        right: unset;
    }

    .timeline-blank {
        display: none;
    }

    .timeline-text {
        width: 100%;
    }

    .single-timeline:nth-child(even) .timeline-text p {
        text-align: left !important;
    }
}

@media all and (max-width: 575px) {
}

@media all and (max-width: 360px) {
    .all-timelines::before {
        top: 32px;
    }
}