.chair-info-header h2 {
    margin-top: 0px;
    margin-bottom: 15px;
    text-align: center;
    font-family: 'Zilla Slab', serif;
    letter-spacing: 2px;
    font-size: 33px;
}

.chair-rentals img {
    border-radius:10%
}

.chair-rentals-left img {
    margin-left: 0px;
    margin-right: 0px
}

.chair-rentals-right img {
    margin-right: 0px;
}

.rental-type {
    list-style-type: none;
    font-weight: 600;
    font-size: 17px;
}

.sub-header {
    font-style: italic;
    font-weight: 600;
    font-size: 17px;
    font-family: 'Ubuntu', sans-serif;
}

.icon-flipped {
    transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
}

.hr-break {
    height: 3px;
    margin: 0px;
    visibility: hidden;
}

.li-indent {
    padding-left: 10px;
}

/**************************************/
/* Mobile vs Non-Mobile Compatability */
/**************************************/

/* Display Desktop Experience if Over 768px */
@media (min-width: 768px) {

    .mobile-experience {
        display: none;
    }

    #image {
        width: 100%;
        height: auto;
        position: relative;
    }
    

}

/* Display Mobile Experience if Under 768px */
@media (max-width: 768px) {
    
    .desktop-experience {
        display: none;
    }
    
    .mobile-experience {
        display: contents;
    }
}