.gutter-grid--cols-1 > * {
  width: calc(99.9999% / 1);
}

.gutter-grid--cols-2 > * {
  width: calc(99.9999% / 2);
}

.gutter-grid--cols-2 > .gutter-grid__cell--span-2 {
  width: calc(2 / 2 * 100%);
}

@media (max-width: 600px) {
  .gutter-grid--cols-2:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-3 > * {
  width: calc(99.9999% / 3);
}

.gutter-grid--cols-3 > .gutter-grid__cell--span-2 {
  width: calc(2 / 3 * 100%);
}

.gutter-grid--cols-3 > .gutter-grid__cell--span-3 {
  width: calc(3 / 3 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-3:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 600px) {
  .gutter-grid--cols-3:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-4 > * {
  width: calc(99.9999% / 4);
}

.gutter-grid--cols-4 > .gutter-grid__cell--span-2 {
  width: calc(2 / 4 * 100%);
}

.gutter-grid--cols-4 > .gutter-grid__cell--span-3 {
  width: calc(3 / 4 * 100%);
}

.gutter-grid--cols-4 > .gutter-grid__cell--span-4 {
  width: calc(4 / 4 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-4:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 480px) {
  .gutter-grid--cols-4:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-5 > * {
  width: calc(99.9999% / 5);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-2 {
  width: calc(2 / 5 * 100%);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-3 {
  width: calc(3 / 5 * 100%);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-4 {
  width: calc(4 / 5 * 100%);
}

.gutter-grid--cols-5 > .gutter-grid__cell--span-5 {
  width: calc(5 / 5 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-5:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 3);
  }
}

@media (max-width: 600px) {
  .gutter-grid--cols-5:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 480px) {
  .gutter-grid--cols-5:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid--cols-6 > * {
  width: calc(99.9999% / 6);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-2 {
  width: calc(2 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-3 {
  width: calc(3 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-4 {
  width: calc(4 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-5 {
  width: calc(5 / 6 * 100%);
}

.gutter-grid--cols-6 > .gutter-grid__cell--span-6 {
  width: calc(6 / 6 * 100%);
}

@media (max-width: 960px) {
  .gutter-grid--cols-6:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 3);
  }
}

@media (max-width: 600px) {
  .gutter-grid--cols-6:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 2);
  }
}

@media (max-width: 480px) {
  .gutter-grid--cols-6:not(.gutter-grid--noMQs) > *:not([class*="cell--span-"]) {
    width: calc(99.9999% / 1);
  }
}

.gutter-grid {
  -gutter-grid-: grid;
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 100%;
  border: 0 solid transparent;
  display: flex;
  align-content: stretch;
}

.gutter-grid[class*="grid--cols"]:not(.gutter-grid--noWrap) {
  flex-wrap: wrap;
}

.gutter-grid__wrapper {
  padding-bottom: 0.1px;
}

.gutter-grid:not([class*="grid--cols"]):not(.gutter-grid--noStretch):not([class*="grid--align-"]):not([class*="grid--space-"]):not(.gutter-grid--noResize) > .gutter-grid__cell:not(.gutter-grid__cell--noStretch):not(.gutter-grid__cell--noResize) {
  flex-grow: 1;
}

.gutter-grid__cell {
  -gutter-grid-: cell;
  box-sizing: border-box;
  min-width: 0%;
  max-width: 100%;
  display: block;
  padding: 0;
  margin: 0;
  background-clip: padding-box !important;
  border: 0 solid transparent;
}

.gutter-grid__cell[class*="cell--span-"] {
  flex-grow: 1;
}

.gutter-grid__cell.gutter-grid {
  display: flex;
}

.gutter-grid__cell, .gutter-grid__cell * > {
  max-width: 100%;
  flex-shrink: 1;
}

.gutter-grid__inner {
  -gutter-grid-: inner;
  display: block;
  box-sizing: border-box;
}

.gutter-grid--outerGutters {
  margin: 0;
}

.gutter-grid--outerGutters-v {
  margin-top: 0;
  margin-bottom: 0;
}

.gutter-grid--outerGutters-h {
  margin-left: 0;
  margin-right: 0;
}

.gutter-grid--outerGutters-top {
  margin-top: 0;
}

.gutter-grid--outerGutters-bottom {
  margin-bottom: 0;
}

.gutter-grid--outerGutters-left {
  margin-left: 0;
}

.gutter-grid--outerGutters-right {
  margin-right: 0;
}

.gutter-grid--hasInners > * {
  display: flex;
  align-items: stretch;
}

.gutter-grid--hasInners > * > * {
  display: block;
  width: 100%;
}

.gutter-grid--hasInners > * > *.gutter-grid {
  display: flex;
}

.gutter-grid--vAlign-center {
  align-items: center;
}

.gutter-grid--vAlign-top {
  align-items: flex-start;
}

.gutter-grid--vAlign-bottom {
  align-items: flex-end;
}

.gutter-grid--vertical {
  flex-direction: column;
}

.gutter-grid--stretch > * {
  flex-grow: 1;
}

.gutter-grid--noStretch > * {
  flex-grow: 0;
}

.gutter-grid--noShrink > * {
  flex-shrink: 0;
}

.gutter-grid--noResize > * {
  flex-shrink: 0;
  flex-grow: 0;
}

.gutter-grid--mini {
  min-width: 0;
}

@media (max-width: 1200px) {
  .gutter-grid {
    flex-wrap: wrap;
  }
}

.gutter-grid--wrap {
  flex-wrap: wrap;
}

.gutter-grid--noWrap {
  flex-wrap: nowrap;
}

.gutter-grid--space-between > *, .gutter-grid--space-around > * {
  flex-grow: 0;
}

.gutter-grid--space-between {
  justify-content: space-between;
}

.gutter-grid--space-around {
  justify-content: space-around;
}

.gutter-grid--space-evenly {
  justify-content: space-around;
  justify-content: space-evenly;
}

.gutter-grid--align-left > *, .gutter-grid--align-center > *, .gutter-grid--align-right > * {
  flex-grow: 0;
}

.gutter-grid--align-left {
  justify-content: flex-start;
}

.gutter-grid--align-center {
  justify-content: center;
}

.gutter-grid--align-right {
  justify-content: flex-end;
}

.gutter-grid--align-stretch > * {
  flex-grow: 1;
}

.gutter-grid__cell--vAlign-center {
  -ms-grid-row-align: center;
      align-self: center;
}

.gutter-grid__cell--vAlign-top {
  align-self: flex-start;
}

.gutter-grid__cell--vAlign-bottom {
  align-self: flex-end;
}

.gutter-grid__cell--stretch {
  flex-grow: 1;
}

.gutter-grid__cell--noStretch {
  flex-grow: 0;
}

.gutter-grid__cell--noShrink {
  flex-shrink: 0;
}

.gutter-grid__cell--noResize {
  flex-shrink: 0;
  flex-grow: 0;
}

.footer {
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-top: 3rem;
  padding: 45px 0;
  background-color: #3c3c42;
  border-top: 1px solid #9a9a9a;
  color: #fff;
}

.footer .layout-center {
  position: relative;
}

.footer .layout-center::before {
  content: '';
  display: table;
}

.footer .layout-center::after {
  content: '';
  display: table;
  clear: both;
}

.footer .layout-center #block-footerbranding {
  width: 100%;
}

@media (min-width: 769px) {
  .footer .layout-center #block-footerbranding {
    width: 33%;
    float: left;
  }
}

.footer .layout-center .footer-menu-wrapper {
  display: block;
  width: 100%;
}

@media (min-width: 769px) {
  .footer .layout-center .footer-menu-wrapper {
    float: left;
    width: auto;
  }
}

.footer .layout-center .address {
  width: 81%;
  float: right;
}

@media (min-width: 769px) {
  .footer .layout-center .address {
    float: none;
    width: auto;
  }
}

.footer .footer-social-icons-wrapper {
  margin: -115px 0 0;
  font-size: 36px;
  right: 0;
  position: relative;
  float: left;
  width: 15%;
  padding: 0;
  z-index: 10;
}

@media (min-width: 769px) {
  .footer .footer-social-icons-wrapper {
    margin: 0;
    float: none;
    width: auto;
  }
}

@media (min-width: 1071px) {
  .footer .footer-social-icons-wrapper {
    position: absolute;
  }
}

.footer .footer-social-icons-wrapper li {
  list-style-type: none;
  display: inline-block;
}

.footer .footer-social-icons-wrapper .fa {
  color: #fff;
  margin: 0 0 1.5rem;
  width: 31px;
  height: 33px;
  overflow: hidden;
}

@media (min-width: 1025px) {
  .footer .footer-social-icons-wrapper .fa {
    margin: 0 2rem 0 0;
  }
}

#block-pagebottomhtml {
  width: 100%;
  background-color: #9a9a9a;
  padding: 0.5rem 0;
}

#block-pagebottomhtml .copyright {
  border-right: 1px solid #777;
  padding-right: 1rem;
  margin-right: 1rem;
}

#block-pagebottomhtml a {
  color: #1f1f1f;
}

/*# sourceMappingURL=footer.css.map */
