/*  SECTIONS  */
.rgs_section {
  clear: both;
  margin: 0 0 2em 0;
  display: flex;
  flex-flow: row; 
  flex-wrap: wrap;
  }

/*  COLUMN SETUP  */
.rgs_col {
  display: block;
  float:left;
}
.rgs_col:first-child { margin-left: 0; }

.column_text {
    margin-right:5%;
}

/*  COLUMN CENTER SETUP  */
.rgs_col_center {
  display: block;
  float:left;
  text-align: center;
  border-right: 1px solid #fff

}
.rgs_col_center:nth-child(4n) {
    border: none;
}

.rgs_col_center:nth-child(-n+12) {
    border-bottom: 1px solid #fff;
}

/*  COLUMN CENTER LEFT SETUP  */
.rgs_col_center_left {
  display: block;
  float:left;
  align-self: center;
}
.rgs_col_center_left:first-child { margin-left: 0; }

/*  COLUMN BOTTOM SETUP  */
.rgs_col_bottom {
  display: block;
  float:left;
  align-self: flex-end;
}
.rgs_col_bottom:first-child { margin-left: 0; }


.border-right-blue {
    border-right: 1px solid rgba(93, 131, 214, .3);
}


/*  GROUPING  */
.rgs_group:before,
.rgs_group:after { content:""; display:table; }
.rgs_group:after { clear:both;}
.rgs_group { zoom:1; /* For IE 6/7 */ }
/*  GRID OF TWELVE  */
.span_12_of_12 {
  width: 100%;
}

.span_11_of_12 {
    width: 91.25%;
}
.span_10_of_12 {
    width: 82.5%;
}

.span_9_of_12 {
    width: 73.75%;
}

.span_8_of_12 {
    width: 65%;
}

.span_7_of_12 {
    width: 56.25%;
}

.span_6_of_12 {
    width: 50%;
}

.span_5_of_12 {
    width: 38.75%;
}

.span_4_of_12 {
    width: 30%;
}

.span_3_of_12 {
    width: 24.9%;
}

.span_2_of_12 {
    width: 12.5%;
}

.span_1_of_12 {
    width: 3.75%;
}

/*  GO FULL WIDTH BELOW 550 PIXELS */
@media only screen and (max-width: 550px) {
  .rgs_col {  margin: 1% 0 1% 0%; }
    .span_1_of_12, .span_2_of_12, .span_3_of_12, .span_4_of_12, .span_5_of_12, .span_6_of_12, .span_7_of_12, .span_8_of_12, .span_9_of_12, .span_10_of_12, .span_11_of_12, .span_12_of_12 {
      width: 100%;border: none!important;}

}