/* custom css */

/* !!!!!!!CSS to override the Bootstrap column classes for the statslist section*/
#statslist .section-grid-stats li.col-lg-3 {
  /* Override col-lg-3 (25% width) with col-lg-4 (33.33% width) behavior, Also, -ms is for microsoft browsers */
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
/* Making sure even more that there are only 3 items per row on large screens. This will push each item with an index past 3 to a new row */
#statslist .section-grid-stats li:nth-child(3n+1) {  clear: left;
}

/* Ensuring flex still works */
#statslist .section-grid-stats {
  display: flex;
  flex-wrap: wrap;
}

#events {
    padding-bottom:6rem;
}

#get-involved {
    padding:6rem 0 0 0;
    border-top:1px solid #e9e9e9;
}

#get-involved .section-grid-stats {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
    }
 
 .section-grid-stats li {
     padding: 3rem;
    margin-bottom: 0;
 }

/* Removal of this will display a hidden field on reservations form. */
/* Removal of field will break form's sender.php functionality. */
.asf {
    display: none;
}

#myform {
    margin: 50px auto;
    display: block;
    max-width: 1740px;
    width: 50%;
}







