@charset "UTF-8";
/* CSS Document */
body {
  background-color: #FFFFFF;
  margin: 0px;
  padding: 0px;
}
/* Mobile Layout: 480px and below. */
.sections {
  position: relative;
  clear: both;
  float: left;
  display: block;
  width: 100%;
}
.textSection {
  position: relative;
  clear: both;
  float: left;
  display: block;
  width: 90%;
  padding-left: 5%;
  padding-right: 5%;
}
.figCard {
  position: relative;
  clear: none;
  float: left;
  display: block;
}
.hide_mobile {
  display: none;
}
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {
  .sections {
    position: relative;
    clear: both;
    float: left;
    display: block;
    width: 480px;
  }
  .textSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    width: 480px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .figCard {
    position: relative;
    clear: none;
    float: left;
    display: block;
  }
  .hide_tablet {
    display: none;
  }
}
/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
  .sections {
    position: relative;
    clear: both;
    float: left;
    display: block;
    width: 768px;
  }
  .textSection {
    position: relative;
    clear: both;
    float: left;
    display: block;
    width: 768px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .figCard {
    position: relative;
    clear: none;
    float: left;
    display: block;
  }
  .hide_desktop {
    display: none;
  }
}