#values {
    display: block;
    text-align: center;
}

.splitter {
    display: block;
}

.branch .leaf {
    margin-left: -5px;
}

.branch {
    display: inline-block;
    position: relative;
    border-left: 6px solid #516f1e;
    box-sizing: border-box;
}

.branch .leaf, .branch .leaf div {
    display: inline-block;
    border-radius: 60px 0px 60px 0px;
    -moz-border-radius: 60px 0px 60px 0px;
    -webkit-border-radius: 60px 0px 60px 0px;
    text-align: center;
}

.branch .leaf {
    padding: 0 0 5px 5px;
    background: #516f1e;
    margin-right: 0;
}

.branch .leaf div {
    padding: 20px;
    width: 150px;
    border-bottom: 1px solid #82ad2b;
    border-right: 1px solid #82ad2b;
    border-top: none;
    border-left: 1px solid #82ad2b;
    background: #82ad2b;
    color: #FFFFFF;
}

.branch .description {
    padding: 10px;
    text-align: left;
}

.branch .description .topBorder {
    display: inline-block;
    background: #f39200;
    width: 50px;
    height: 3px;
    margin-bottom: 10px;
}

.branch .icon {
    top: 70px;
    left: -150px;
    background-size: 100%;
    background-repeat: no-repeat;
    position: absolute;
    width: 100px;
    height: 100px;
}

.certificate {
    border: 1px solid #868686;
    -webkit-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 1px 3px 0px rgba(0,0,0,0.75);
    max-width: 400px;
    box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.75);
}

.certificate img {
    width: 100%;
}

/* Styling if large viewport */
@media only screen and (min-width: 1001px) {

    .branch {
        border: none;
        display: inline-table;
        width: 200px;
        text-align: center;
    }

    .branch .icon {
        position: relative;
        top: 0;
        left: 0;
        display: inline-block;
        width: 100px;
        height: 100px;
        background-size: 100%;
        background-repeat: no-repeat;
        margin-top: 20px;
    }

    .splitter {
        display: none;
    }
}

/* Styling if small viewport */
@media only screen and (min-width: 451px) and (max-width: 1000px) {

    .branch {
        border-left: 6px solid #516f1e;
        margin-left: 200px;
        width: 200px;
    }

    .branch.alt {
        border-left: none;
        border-right: 6px solid #516f1e;
        margin-left: -188px;
        text-align: right;
    }

    .branch.alt .icon {
        left: auto;
        right: -150px;
    }

    .branch.alt .leaf {
        padding: 0 5px 5px 0;
        margin-left: 0;
        margin-right: -5px;
    }

    .branch.alt .leaf div {
        border-bottom: 1px solid #82ad2b;
        border-right: none;
        border-top: none;
        border-left: 1px solid #82ad2b;
    }

    .branch.alt .leaf, .branch.alt .leaf div {
        border-radius: 0px 60px 0px 60px;
        -moz-border-radius: 0px 60px 0px 60px;
        -webkit-border-radius: 0px 60px 0px 60px;
    }
}

/* Styling if extra small viewport */
@media only screen and (max-width: 450px) {

    #values {
        display: inline-block;
        text-align: left;
    }

    .branch {
        margin-left: 100px;
        min-height: 200px;
    }

    .branch .leaf div {
        padding: 10px;
        width: 100px;
    }

    .branch .icon {
        left: -110px;
    }

}