
.tf-road-map {
    position: relative;
}
.tf-road-map::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-right: 0;
    transform: translateX(-50%);
    margin-left: 0;
    width: 1px;
    height: 100%;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23A09797FF' stroke-width='4' stroke-dasharray='20%2c 45' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
}
.tf-road-map .road-map-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 97px;
}
.tf-road-map .road-map-content .time {
    font-family: 'Red Hat Display';
    font-size: 48px;
    font-weight: 600;
    line-height: 53px;
    letter-spacing: -1.2999999523162842px;
    flex: 1;
    text-align: center;
}
.tf-road-map .road-map-content:nth-child(odd) .time {
    margin-left: -20%;
}
.tf-road-map .road-map-content:nth-child(even) .time {
    margin-right: -24%;
}
.tf-road-map .road-map-content .content .check-mark {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    z-index: 10;
    width: 18px;
    height: 18px;
    background: var(--theme-primary-color);
}
.tf-road-map .road-map-content:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}
.tf-road-map .road-map-content:nth-child(odd) .content .check-mark .line {
    right: unset;
    left: 21px;
}
.tf-road-map .road-map-content .content {
    max-width: 563px;
    text-align: left;
    display: flex;
    align-items: center;
}

.tf-road-map .road-map-content .inner {
    border: 2px solid #565656;
    background: linear-gradient(151.54deg, rgba(0, 0, 0, 0.7) 0%, #323232 113.26%, #666666 114.41%, rgba(25, 25, 25, 0.5) 114.42%);
    padding: 22px 32px 22px 32px;
    border-radius: 24px;
    display: flex;
    align-items: center;
}

.tf-road-map .road-map-content .inner .thumb img {
    width: 184px;
    height: 184px;
    border-radius: 50%;
}

.tf-road-map .road-map-content .inner .thumb {
    margin-right: 39px;
    flex-shrink: 0;
}

.tf-road-map .road-map-content .inner .title {
    font-family: 'Red Hat Display';
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.23999999463558197px;
    margin-bottom: 16px;
}

.tf-road-map .road-map-content .inner .description {
    font-family: 'Red Hat Display';
    font-size: 24px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.23999999463558197px;
    color: #BBBBBB;
}

@media only screen and (max-width: 1024px) {
    .tf-road-map .road-map-content .content {
        max-width: 450px;
    }
    .tf-road-map .road-map-content .inner .thumb img {
        width: 100px;
        height: 100px;
    }
}
@media only screen and (max-width: 991px) {
    .tf-road-map::before,
    .tf-road-map .road-map-content .content .check-mark {
        display: none;
    }
}
@media only screen and (max-width: 767px) {
    .tf-road-map .road-map-content:nth-child(odd) .time {
        margin-left: 0;
    }
    .tf-road-map .road-map-content:nth-child(even) .time {
        margin-right: 0%;
    }
    .tf-road-map .road-map-content .inner {
        flex-direction: column;
        row-gap: 15px;
        align-items: baseline;
    }
    .tf-road-map .road-map-content {
        column-gap: 15px;
    }
    
    
}