* {
    box-sizing: border-box;
}
/* Create two equal columns that floats next to each other */
.column:first-child {
    float: left !important;
    width: 50% !important;
    margin-bottom: 15px;
}

.row-class .column{
    width: 45% !important;
    float: right;
    margin-bottom: 15px;
}

/* Clear floats after the columns */
.row-class:after {
    content: "";
    display: table;
    clear: both !important;
}

.pad-right {
    margin-right: 15px!important;
}

ul.staff-list{
     margin-left: 0!important;
}

.staff-list li{
  display: inline;
  list-style-type: none;
  padding-right: 20px;
  float: left;
}

.staff-list li a{
  font-size: 18px;
  color: #ffffff;
  background-color: #8c1515;
  border-radius: 3px;
  padding: 10px 20px 10px 20px;
}

.staff-list li.active a{
  font-size: 18px;
  color: #ffffff;
  background-color: #4d4f53;
  border-radius: 3px;
  padding: 10px 20px 10px 20px;
}

.icon {
    vertical-align:middle; 
    margin-right: 15px;
    width: 45px;
    height: 45px;
}

 /* Responsive layout - when the screen is less than 976px wide */
@media screen and (max-width: 976px) {
    .column {
        clear: both;
        width: 100% !important;
    }
     .row-class .column {
        clear: both;
        width: 100% !important;
    }
    
     .staff-list li a{
        font-size: 13px;
        padding: 5px 10px 5px 10px;
    }

     .staff-list li.active a{
        font-size: 13px;
        padding: 5px 10px 5px 10px;
    }
    
    .staff-list li {
        margin-bottom: 8px;
        padding: 5px;
        
    }
     .staff-list li:last-child{
         margin-bottom: 20px;
     }
     .icon {
        vertical-align:middle; 
        margin-right: 15px;
        width: 35px;
        height: 35px;
    }

} 

 /* Responsive layout - when the screen is less than 600px wide */
@media screen and (max-width: 600px) {
    .column {
        clear: both;
        width: 100% !important;
    }
     .row-class .column {
        clear: both;
        width: 100% !important;
    }
    
     .staff-list li a{
        font-size: 12px;
        padding: 5px 8px 5px 8px;
    }

     .staff-list li.active a{
        font-size: 12px;
        padding: 5px 8px 5px 8px;
    }
    
    .staff-list li {
        margin-bottom: 8px;
        padding: 5px;
        
    }
     .staff-list li:last-child{
         margin-bottom: 20px;
     }
     .icon {
        vertical-align:middle; 
        margin-right: 15px;
        width: 35px;
        height: 35px;
    }

} 