section:nth-child(1) .section-desc {
    margin: 0;
}

.roadmap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
}

.roadmap-item {
    color: #ffffff;
    position: relative;
    border: 1px solid #dadad1;
    transition: height .2s;
    width: 100%;
}

.roadmap-item:not(:last-child) {
    margin-bottom: 1.375rem;
}

.roadmap-button {
    background: rgba(0, 0, 0, 0.25);
    color: inherit;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: "Share Tech Mono", Consolas, Monaco, Consolas, Menlo, monospace, SFMono-Regular;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    padding: 1.25rem;
    width: 100%;
    font-size: 1.25rem;
    outline: none;
    transition: all .3s ease-in-out;
}

.roadmap-button:hover {
    background: rgba(85, 85, 85, 0.25);
}

.roadmap-button h3 {
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 20px;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 0;
}

.roadmap-button p {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    margin-right: 30px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0;
}

.roadmap-button p.done {
    color: #00a441;
}

.roadmap-button p.development {
    color: #e9bc29;
}

.roadmap-body {
    transition: all .3s ease-in-out;
    overflow: hidden;
    border-top: 0px solid #dadad1;
    padding: 0 1.25rem;
    text-align: left;
}

.roadmap-item.toggled .roadmap-body {
    padding: 1.25rem;
    border-top: 1px solid #dadad1;
    transition: all .3s ease-in-out;
}

.roadmap-section:not(:last-of-type) {
    margin-bottom: 1.5625rem;
}

.roadmap-section h4 {
    font-weight: 800;
    font-style: normal;
    font-size: 1rem;
    line-height: 1.25rem;
    margin-bottom: .625rem;
    text-transform: uppercase;
}

.roadmap-section ul {
    font-size: .75rem;
}

.roadmap-section li {
    font-style: normal;
    font-weight: 400;
    font-size: 15px;
    line-height: 21px;
    padding-left: 1.3125rem;
    list-style-position: inside;
    list-style-type: none;
    position: relative;
}

.roadmap-section li:not(:last-child) {
    margin-bottom: .625rem;
}

.roadmap-section li:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    left: 0;
    top: 6px;
    display: inline-block;
    box-shadow: inset 0 0 0 .25rem #878787;
}

.roadmap-section li.done:before {
    box-shadow: inset 0 0 0 .25rem #00a441;
}

.roadmap-section li.development:before {
    box-shadow: inset 0 0 0 .25rem #e9bc29;
}

i.arrow {
    padding: 7px;
    top: -3px;
}

.roadmap-item.toggled .roadmap-button i.arrow {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    top: 5px;
}
