.cz-stages__section {
    padding: 30px 0;
    background-image: url("../../img/competition/stages-bg.png");
    background-repeat: no-repeat;
    background-position: center 10px;
}

.cz-stages__header {
    padding-bottom: 45px;
}

.cz-stages__header-title {
    text-align: center;
    font-size: 50px;
    font-weight: 700 !important;
}

.cz-stages__timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cz-stages__timeline-item {
    direction: ltr;
    display: grid;
    grid-template-columns: 1fr 15% 1fr;
    margin-bottom: 10px;
}

.cz-stages__timeline-item-number {
    color: #f4dad6;
    font-size: 64px;
    font-weight: 500;
    order: 2;
}

.cz-stages__timeline-line {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
    order: 1;
}

.cz-stages__timeline-circle {
    border: 3px solid var(--secondary-fc);
    border-radius: 50%;
    min-height: 22px;
    min-width: 22px;
}

.cz-stages__timeline-bar {
    background-color: var(--secondary-fc);
    min-height: 100%;
    width: 2px;
}

.cz-stages__timeline-content {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    order: 0;
}

.cz-stages__step {
    white-space: nowrap;
    width: 325px;
}

.cz-stages__timeline-location,
.cz-stages__timeline-result,
.cz-stages__timeline-time {
    align-items: center;
    display: flex;
    font-size: 16px;
    gap: 10px;
    margin-bottom: 10px;
}

.cz-stages__timeline-title {
    color: var(--secondary-fc);
    font-family: Vollkorn, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.cz-stages__timeline-item:nth-child(2) .cz-stages__timeline-content {
    align-items: flex-start;
    order: 2;
}

.cz-stages__timeline-item:nth-child(2) .cz-stages__timeline-item-number {
    order: 0;
    text-align: right;
}

@media only screen and (max-width: 920px) {

    .cz-stages__step {
        white-space: wrap;
        width: auto;
    }

    .cz-stages__timeline-item {
        grid-template-columns: 10% 15% 1fr !important;
    }

    .cz-stages__timeline-item-number {
        order: 1 !important;
        text-align: left !important;
    }

    .cz-stages__timeline-content {
        align-items: flex-start !important;
        order: 2 !important;
    }

    .cz-stages__section {
        background: none;
    }

    .cz-stages__timeline-item-number {
        font-size: 51px;
    }
}

@media only screen and (max-width: 600px) {
    .cz-stages__timeline-item-number {
        font-size: 33px;
    }

    .cz-stages__timeline-title {
        font-size: 19px;
    }

    .cz-stages__timeline-location,
    .cz-stages__timeline-result,
    .cz-stages__timeline-time {
        font-size: 14px;
    }
}


