.journey {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
}

.path_holder {
    display: flex;
    flex-direction: column;
    width: 63%;
}

.path_title_bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #00263e;
    width: 100%;
    text-transform: uppercase;
    font-size: 25px;
    border-bottom: 6px solid #76bc21;
}

.path_title {
    color: white;
    font-family: 'Gotham-Book', sans-serif;
    margin: 40px auto 0;
}

.path_subtitle {
    color: #76bc21;
    font-family: 'Gotham-Black', sans-serif;
    margin: 0px auto 30px;
}

.path_side_bar {
    display: flex;
    flex-direction: column;
    width: 37%;
}

.path_side_bar_holder {
    display: flex;
    flex-direction: column;
}

.path_side_block {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 95%;
}

.path_side_icon {
    width: 40px;
    height: 33px;
    margin: 10px;
}

.path_side_copy {
    display: flex;
    flex-direction: column;
}

.path_side_title {
    white-space: nowrap;
    text-align: left;
    font-family: 'Gotham-Black', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 15px;
    margin: 17px 0 0;
}

.path_side_blurb {
    font-family: 'Gotham-Book', sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 11px;
    color: rgba(96, 96, 96, 1);
    margin: 5px 0;
}

.path_red {
    color: rgba(210, 35, 42, 1);
}

.path_yellow {
    color: rgba(236, 188, 15, 1);
}

.path_green {
    color: rgba(117, 188, 67, 1);
}

.path_blue {
    color: rgba(72, 131, 190, 1);
}

.path_orange {
    color: rgba(230, 103, 41, 1);
}

@media (max-width: 1000px) {
    .journey {
        flex-wrap: wrap;
    }

    .path_holder {
        width: 100%;
    }
    .path_side_bar {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .path_title_bar {
        font-size: 18px;
    }
}
