@charset "UTF-8";
/**
 * Foundation for Sites
 * Version 6.8.1
 * https://get.foundation
 * Licensed under MIT Open Source
 */
.align-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.align-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.align-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.align-justify {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.align-spaced {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.align-left.vertical.menu > li > a {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.align-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align-self-top {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.align-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.align-self-bottom {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.align-middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align-self-middle {
  -ms-flex-item-align: center;
      align-self: center;
}

.align-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.align-self-stretch {
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

.align-center-middle {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.small-order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.small-order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.small-order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.small-order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.small-order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.small-order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .medium-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .medium-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .medium-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .medium-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .medium-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}
@media print, screen and (min-width: 64em) {
  .large-order-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .large-order-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .large-order-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .large-order-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .large-order-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .large-order-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
}
.flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-child-auto {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.flex-child-grow {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.flex-child-shrink {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.flex-dir-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex-dir-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex-dir-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-dir-column-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .medium-flex-child-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .medium-flex-child-grow {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .medium-flex-child-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .medium-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .medium-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .medium-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .medium-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .large-flex-child-auto {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .large-flex-child-grow {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
  }
  .large-flex-child-shrink {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
  .large-flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .large-flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .large-flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .large-flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.row, .padded-row {
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}
.row .row, .padded-row .row, .row .padded-row, .padded-row .padded-row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media print, screen and (min-width: 40em) {
  .row .row, .padded-row .row, .row .padded-row, .padded-row .padded-row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .row .row, .padded-row .row, .row .padded-row, .padded-row .padded-row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.row .row.collapse, .padded-row .row.collapse, .row .collapse.padded-row, .padded-row .collapse.padded-row {
  margin-right: 0;
  margin-left: 0;
}
.row.expanded, .expanded.padded-row {
  max-width: none;
}
.row.expanded .row, .expanded.padded-row .row, .row.expanded .padded-row, .expanded.padded-row .padded-row {
  margin-right: auto;
  margin-left: auto;
}
.row:not(.expanded) .row, .padded-row:not(.expanded) .row, .row:not(.expanded) .padded-row, .padded-row:not(.expanded) .padded-row {
  max-width: none;
}
.row.collapse > .column, .collapse.padded-row > .column, .row.collapse > .columns, .collapse.padded-row > .columns {
  padding-right: 0;
  padding-left: 0;
}
.row.is-collapse-child, .is-collapse-child.padded-row, .row.collapse > .column > .row, .collapse.padded-row > .column > .row, .row.collapse > .column > .padded-row, .collapse.padded-row > .column > .padded-row, .row.collapse > .columns > .row, .collapse.padded-row > .columns > .row, .row.collapse > .columns > .padded-row, .collapse.padded-row > .columns > .padded-row {
  margin-right: 0;
  margin-left: 0;
}

.column, .columns {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  min-width: 0;
}
@media print, screen and (min-width: 40em) {
  .column, .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.column.row.row, .column.padded-row, .row.row.columns, .columns.padded-row {
  float: none;
  display: block;
}

.row .column.row.row, .padded-row .column.row.row, .row .column.padded-row, .padded-row .column.padded-row, .row .row.row.columns, .padded-row .row.row.columns, .row .columns.padded-row, .padded-row .columns.padded-row {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.small-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.3333333333%;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.small-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.small-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.small-offset-3 {
  margin-left: 25%;
}

.small-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6666666667%;
          flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.small-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.small-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.3333333333%;
          flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.small-offset-6 {
  margin-left: 50%;
}

.small-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.6666666667%;
          flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.small-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.small-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333333333%;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.small-offset-9 {
  margin-left: 75%;
}

.small-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.6666666667%;
          flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.small-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.small-up-1 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.small-up-1 > .column, .small-up-1 > .columns {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.small-up-2 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.small-up-2 > .column, .small-up-2 > .columns {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.small-up-3 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.small-up-3 > .column, .small-up-3 > .columns {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.small-up-4 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.small-up-4 > .column, .small-up-4 > .columns {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.small-up-5 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.small-up-5 > .column, .small-up-5 > .columns {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

.small-up-6 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.small-up-6 > .column, .small-up-6 > .columns {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.small-up-7 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.small-up-7 > .column, .small-up-7 > .columns {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14.2857142857%;
          flex: 0 0 14.2857142857%;
  max-width: 14.2857142857%;
}

.small-up-8 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.small-up-8 > .column, .small-up-8 > .columns {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 12.5%;
          flex: 0 0 12.5%;
  max-width: 12.5%;
}

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

@media print, screen and (min-width: 40em) {
  .medium-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-up-1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .medium-up-2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .medium-up-3 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .medium-up-4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .medium-up-5 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .medium-up-6 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .medium-up-7 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.2857142857%;
            flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }
  .medium-up-8 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
            flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media print, screen and (min-width: 40em) and (min-width: 40em) {
  .medium-expand {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
  }
}
.row.medium-unstack > .column, .medium-unstack.padded-row > .column, .row.medium-unstack > .columns, .medium-unstack.padded-row > .columns {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media print, screen and (min-width: 40em) {
  .row.medium-unstack > .column, .medium-unstack.padded-row > .column, .row.medium-unstack > .columns, .medium-unstack.padded-row > .columns {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
  }
}

@media print, screen and (min-width: 40em) {
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
}
@media print, screen and (min-width: 40em) {
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .large-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-up-1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-1 > .column, .large-up-1 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .large-up-2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-2 > .column, .large-up-2 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .large-up-3 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-3 > .column, .large-up-3 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .large-up-4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-4 > .column, .large-up-4 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .large-up-5 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-5 > .column, .large-up-5 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .large-up-6 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-6 > .column, .large-up-6 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .large-up-7 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-7 > .column, .large-up-7 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 14.2857142857%;
            flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
  }
  .large-up-8 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 12.5%;
            flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
@media print, screen and (min-width: 64em) and (min-width: 64em) {
  .large-expand {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
  }
}
.row.large-unstack > .column, .large-unstack.padded-row > .column, .row.large-unstack > .columns, .large-unstack.padded-row > .columns {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media print, screen and (min-width: 64em) {
  .row.large-unstack > .column, .large-unstack.padded-row > .column, .row.large-unstack > .columns, .large-unstack.padded-row > .columns {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
  }
}

@media print, screen and (min-width: 64em) {
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.shrink {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 100%;
}

.column-block {
  margin-bottom: 1.25rem;
}
.column-block > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 40em) {
  .column-block {
    margin-bottom: 1.875rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}

.addthis .addthis__label, .filter--undergrad-listing .filter__form--undergrad-listing legend,
.filter--undergrad-listing .filter__form--grad-listing legend,
.filter--grad-listing .filter__form--undergrad-listing legend,
.filter--grad-listing .filter__form--grad-listing legend, #form-story-listing legend, .tabs__tabs-container input,
.tab-nav input, .show-for-sr {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

#skip-link a {
  position: absolute;
  top: 0;
  left: 0;
  background: #581483;
  padding: 0.625rem 1.25rem;
  font-size: 1.5rem;
  z-index: 99999;
  color: #fff;
  font-weight: 600;
  outline: none;
  border: 0.125rem dashed #fff;
}
#skip-link a:not(:focus) {
  position: absolute !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
}

.link-arrow:after {
  content: "»";
  padding-left: 5px;
}

:root {
  --breakpoint-sm: 480px;
  --breakpoint-md: 880px;
  --breakpoint-lg: 1280px;
  --breakpoint-xl: 1880px;
  --color-text-light: #303639;
  --color-text: #1c1e1f;
  --color-text-dark: #000000;
  --color-background-light: #fff;
  --color-background: hsl(204, 15%, 96%);
  --color-background-dark: #eceff1;
  --color-ui-light: #cfd8dc;
  --color-ui: #b0bec5;
  --color-ui-dark: #b0bec5;
  --color-purple-light: #6f3d8e;
  --color-purple: #581383;
  --color-purple-dark: #430e65;
  --color-gold-light: #cda24d;
  --color-gold: #b2852d;
  --color-gold-dark: #936e25;
  --color-link-default: var(--color-purple);
  --color-link-hover: var(--color-purple-dark);
  --border-radius: 1rem;
  --border-width: 1px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-page: clamp(2rem, 1rem + 4vw, 4rem);
  --font-sans: "Gotham", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --font-serif: Palatino, "Palatino Linotype", "Palatino LT STD", "Book Antiqua",
    Georgia, serif;
}

.container-md {
  --container-width: var(--breakpoint-md);
}

.container-lg {
  --container-width: var(--breakpoint-lg);
}

.container-xl {
  --container-width: var(--breakpoint-xl);
}

.container-md,
.container-lg,
.container-xl {
  display: grid;
  grid-template-columns: 1rem 1fr minmax(0, var(--container-width)) 1fr 1rem;
}
.container-md > *,
.container-lg > *,
.container-xl > * {
  min-width: 0;
  grid-column: 3;
}

.layout {
  position: relative;
  --row-spacing: clamp(4rem, 2rem + 6vw, 6rem);
  display: grid;
  grid-template-columns: 1rem 1fr 1rem;
  grid-auto-rows: -webkit-min-content;
  grid-auto-rows: min-content;
  row-gap: var(--row-spacing);
  margin: 0 0 var(--row-spacing) 0;
}

.layout > * {
  min-width: 0;
  grid-column: 2/3;
}

.layout .alignwide {
  grid-column: 2/3;
}

.layout .aligncenter {
  text-align: unset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  grid-column: 2/3;
}

.layout .alignfull {
  grid-column: 1/-1;
}

@media screen and (min-width: 880px) {
  .layout {
    --center: var(--breakpoint-md);
    --wide: calc((var(--breakpoint-lg) - var(--breakpoint-md)) / 2);
    grid-template-columns: 1rem 1fr minmax(0, var(--wide)) minmax(0, var(--breakpoint-md)) minmax(0, var(--wide)) 1fr 1rem;
  }
  .layout > * {
    grid-column: 3/6;
  }
  .layout .alignwide {
    grid-column: 3/6;
  }
  .layout .aligncenter {
    grid-column: 4;
  }
}
[data-view] {
  -webkit-transition: opacity 0.75s, -webkit-transform 0.75s;
  transition: opacity 0.75s, -webkit-transform 0.75s;
  transition: opacity 0.75s, transform 0.75s;
  transition: opacity 0.75s, transform 0.75s, -webkit-transform 0.75s;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

[data-view=below] {
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}

[data-view=above] {
  opacity: 0;
}

.background--paper {
  background-color: #f0eadf;
  background-image: url("/wp-content/themes/hsu-theme/templates/home-new/assets/img/paper.png");
}

@font-face {
  font-family: "Gotham";
  src: url("/wp-content/themes/hsu-theme/templates/home-new/assets/fonts/gotham-book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("/wp-content/themes/hsu-theme/templates/home-new/assets/fonts/gotham-bookitalic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Gotham";
  src: url("/wp-content/themes/hsu-theme/templates/home-new/assets/fonts/gotham-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("/wp-content/themes/hsu-theme/templates/home-new/assets/fonts/gotham-bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  src: url("/wp-content/themes/hsu-theme/templates/home-new/assets/fonts/gotham-black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
}
.nav img,
.main-nav-wrapper img,
footer img {
  width: 100%;
  height: auto;
}
.nav h1,
.nav h2,
.nav h3,
.nav h4,
.nav h5,
.nav h6,
.main-nav-wrapper h1,
.main-nav-wrapper h2,
.main-nav-wrapper h3,
.main-nav-wrapper h4,
.main-nav-wrapper h5,
.main-nav-wrapper h6,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6 {
  overflow-wrap: break-word;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem 0;
}
.nav h1,
.main-nav-wrapper h1,
footer h1 {
  font-size: 2.5rem;
  line-height: 1;
  font-family: var(--font-display);
}
.nav h2,
.main-nav-wrapper h2,
footer h2 {
  font-size: 1.7rem;
  font-family: var(--font-display);
}
.nav h3,
.main-nav-wrapper h3,
footer h3 {
  font-size: 1.3rem;
  font-family: var(--font-display);
}
.nav h4,
.main-nav-wrapper h4,
footer h4 {
  font-size: 1.2rem;
}
.nav h5,
.main-nav-wrapper h5,
footer h5 {
  font-size: 1rem;
}
.nav h6,
.main-nav-wrapper h6,
footer h6 {
  font-size: 0.9rem;
}
.nav p,
.main-nav-wrapper p,
footer p {
  overflow-wrap: break-word;
  margin: 0 0 0.75em 0;
  max-width: 80ch;
}
.nav p,
.nav b,
.nav a,
.main-nav-wrapper p,
.main-nav-wrapper b,
.main-nav-wrapper a,
footer p,
footer b,
footer a {
  font-size: 1rem;
}
.nav em,
.main-nav-wrapper em,
footer em {
  font-style: italic;
}
.nav a,
.main-nav-wrapper a,
footer a {
  font-weight: 500;
  text-decoration: none;
  color: var(--color-link-default);
  -webkit-transition: color 150ms;
  transition: color 150ms;
}
.nav a:where(:hover, :focus),
.main-nav-wrapper a:where(:hover, :focus),
footer a:where(:hover, :focus) {
  color: var(--color-link-hover);
}
.nav .meta,
.main-nav-wrapper .meta,
footer .meta {
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  font-weight: 500;
}
.nav .semibold,
.main-nav-wrapper .semibold,
footer .semibold {
  font-weight: 500;
}
.nav :where(p,
ul:not([class]),
ol:not([class]),
pre,
code,
blockquote,
img,
video,
iframe) + :is(h1, h2, h3, h4, h5, h6),
.main-nav-wrapper :where(p,
ul:not([class]),
ol:not([class]),
pre,
code,
blockquote,
img,
video,
iframe) + :is(h1, h2, h3, h4, h5, h6),
footer :where(p,
ul:not([class]),
ol:not([class]),
pre,
code,
blockquote,
img,
video,
iframe) + :is(h1, h2, h3, h4, h5, h6) {
  margin-top: var(--space-md);
}
.nav ::-moz-selection, .main-nav-wrapper ::-moz-selection, footer ::-moz-selection {
  background: var(--color-peach-light);
}
.nav ::selection,
.main-nav-wrapper ::selection,
footer ::selection {
  background: var(--color-peach-light);
}
.nav address,
.main-nav-wrapper address,
footer address {
  font-style: normal;
}
.nav .hidden,
.main-nav-wrapper .hidden,
footer .hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.nav ul,
.nav ol,
.main-nav-wrapper ul,
.main-nav-wrapper ol,
footer ul,
footer ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.nav ul:not([class]),
.main-nav-wrapper ul:not([class]),
footer ul:not([class]) {
  list-style-type: disc;
  margin: 0 0 var(--space-sm) 1.125rem;
  margin-left: 1.125rem;
  line-height: 1.3;
}
.nav ul:not([class]) > li > ul,
.main-nav-wrapper ul:not([class]) > li > ul,
footer ul:not([class]) > li > ul {
  list-style-type: circle;
}
.nav ul:not([class]) > li > ul > li > ul,
.main-nav-wrapper ul:not([class]) > li > ul > li > ul,
footer ul:not([class]) > li > ul > li > ul {
  list-style-type: square;
}
.nav ol:not([class]),
.main-nav-wrapper ol:not([class]),
footer ol:not([class]) {
  margin: 0 0 var(--space-sm) 1.75rem;
  padding-left: 0;
  list-style: decimal;
}
.nav :where(ul:not([class]), ol:not([class])) > li,
.main-nav-wrapper :where(ul:not([class]), ol:not([class])) > li,
footer :where(ul:not([class]), ol:not([class])) > li {
  padding-left: 0rem;
  margin-bottom: 0.5rem;
}
.nav ul:not([class]) ul,
.nav ol:not([class]) ul,
.main-nav-wrapper ul:not([class]) ul,
.main-nav-wrapper ol:not([class]) ul,
footer ul:not([class]) ul,
footer ol:not([class]) ul {
  margin: 1rem 0 1rem 1rem;
}
.nav ul:not([class]) ol,
.nav ol:not([class]) ol,
.main-nav-wrapper ul:not([class]) ol,
.main-nav-wrapper ol:not([class]) ol,
footer ul:not([class]) ol,
footer ol:not([class]) ol {
  margin: 1rem 0 1rem 2rem;
}
.nav hr,
.main-nav-wrapper hr,
footer hr {
  border: none;
  height: var(--border-width);
  background: var(--color-ui-muted);
  width: 100%;
  margin: var(--space-md) 0;
}
.nav blockquote,
.main-nav-wrapper blockquote,
footer blockquote {
  background: var(--color-background-intense);
  border-left: var(--border-width) solid var(--color-ui);
  padding: var(--space-sm);
  margin: 0 0 var(--space-md) 0;
}
.nav blockquote:not(:first-child),
.main-nav-wrapper blockquote:not(:first-child),
footer blockquote:not(:first-child) {
  margin: var(--space-md) 0;
}
.nav blockquote > :first-child,
.main-nav-wrapper blockquote > :first-child,
footer blockquote > :first-child {
  padding-top: 0;
  margin-top: 0;
}
.nav blockquote > :last-child,
.main-nav-wrapper blockquote > :last-child,
footer blockquote > :last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.nav *,
.main-nav-wrapper *,
footer * {
  font-family: var(--font-sans);
  line-height: 1.5;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/vendor/font-awesome/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/vendor/font-awesome/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/vendor/font-awesome/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/vendor/font-awesome/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/vendor/font-awesome/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/vendor/font-awesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px / 1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.2857142857em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.1428571429em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.1428571429em;
  width: 2.1428571429em;
  top: 0.1428571429em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.8571428571em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x, .fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}

.fa-music:before {
  content: "\f001";
}

.fa-search:before {
  content: "\f002";
}

.fa-envelope-o:before {
  content: "\f003";
}

.fa-heart:before {
  content: "\f004";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-o:before {
  content: "\f006";
}

.fa-user:before {
  content: "\f007";
}

.fa-film:before {
  content: "\f008";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-check:before {
  content: "\f00c";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-signal:before {
  content: "\f012";
}

.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}

.fa-trash-o:before {
  content: "\f014";
}

.fa-home:before {
  content: "\f015";
}

.fa-file-o:before {
  content: "\f016";
}

.fa-clock-o:before {
  content: "\f017";
}

.fa-road:before {
  content: "\f018";
}

.fa-download:before {
  content: "\f019";
}

.fa-arrow-circle-o-down:before {
  content: "\f01a";
}

.fa-arrow-circle-o-up:before {
  content: "\f01b";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-play-circle-o:before {
  content: "\f01d";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}

.fa-refresh:before {
  content: "\f021";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-lock:before {
  content: "\f023";
}

.fa-flag:before {
  content: "\f024";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-print:before {
  content: "\f02f";
}

.fa-camera:before {
  content: "\f030";
}

.fa-font:before {
  content: "\f031";
}

.fa-bold:before {
  content: "\f032";
}

.fa-italic:before {
  content: "\f033";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-list:before {
  content: "\f03a";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-video-camera:before {
  content: "\f03d";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}

.fa-pencil:before {
  content: "\f040";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-tint:before {
  content: "\f043";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}

.fa-share-square-o:before {
  content: "\f045";
}

.fa-check-square-o:before {
  content: "\f046";
}

.fa-arrows:before {
  content: "\f047";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-play:before {
  content: "\f04b";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-eject:before {
  content: "\f052";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-times-circle-o:before {
  content: "\f05c";
}

.fa-check-circle-o:before {
  content: "\f05d";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}

.fa-expand:before {
  content: "\f065";
}

.fa-compress:before {
  content: "\f066";
}

.fa-plus:before {
  content: "\f067";
}

.fa-minus:before {
  content: "\f068";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-plane:before {
  content: "\f072";
}

.fa-calendar:before {
  content: "\f073";
}

.fa-random:before {
  content: "\f074";
}

.fa-comment:before {
  content: "\f075";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-arrows-v:before {
  content: "\f07d";
}

.fa-arrows-h:before {
  content: "\f07e";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-key:before {
  content: "\f084";
}

.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}

.fa-comments:before {
  content: "\f086";
}

.fa-thumbs-o-up:before {
  content: "\f087";
}

.fa-thumbs-o-down:before {
  content: "\f088";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-heart-o:before {
  content: "\f08a";
}

.fa-sign-out:before {
  content: "\f08b";
}

.fa-linkedin-square:before {
  content: "\f08c";
}

.fa-thumb-tack:before {
  content: "\f08d";
}

.fa-external-link:before {
  content: "\f08e";
}

.fa-sign-in:before {
  content: "\f090";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-upload:before {
  content: "\f093";
}

.fa-lemon-o:before {
  content: "\f094";
}

.fa-phone:before {
  content: "\f095";
}

.fa-square-o:before {
  content: "\f096";
}

.fa-bookmark-o:before {
  content: "\f097";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a";
}

.fa-github:before {
  content: "\f09b";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-feed:before,
.fa-rss:before {
  content: "\f09e";
}

.fa-hdd-o:before {
  content: "\f0a0";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-hand-o-right:before {
  content: "\f0a4";
}

.fa-hand-o-left:before {
  content: "\f0a5";
}

.fa-hand-o-up:before {
  content: "\f0a6";
}

.fa-hand-o-down:before {
  content: "\f0a7";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}

.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-plus:before {
  content: "\f0d5";
}

.fa-money:before {
  content: "\f0d6";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-linkedin:before {
  content: "\f0e1";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}

.fa-comment-o:before {
  content: "\f0e5";
}

.fa-comments-o:before {
  content: "\f0e6";
}

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}

.fa-lightbulb-o:before {
  content: "\f0eb";
}

.fa-exchange:before {
  content: "\f0ec";
}

.fa-cloud-download:before {
  content: "\f0ed";
}

.fa-cloud-upload:before {
  content: "\f0ee";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-bell-o:before {
  content: "\f0a2";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cutlery:before {
  content: "\f0f5";
}

.fa-file-text-o:before {
  content: "\f0f6";
}

.fa-building-o:before {
  content: "\f0f7";
}

.fa-hospital-o:before {
  content: "\f0f8";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}

.fa-circle-o:before {
  content: "\f10c";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-circle:before {
  content: "\f111";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-folder-o:before {
  content: "\f114";
}

.fa-folder-open-o:before {
  content: "\f115";
}

.fa-smile-o:before {
  content: "\f118";
}

.fa-frown-o:before {
  content: "\f119";
}

.fa-meh-o:before {
  content: "\f11a";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-keyboard-o:before {
  content: "\f11c";
}

.fa-flag-o:before {
  content: "\f11d";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-code:before {
  content: "\f121";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-crop:before {
  content: "\f125";
}

.fa-code-fork:before {
  content: "\f126";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}

.fa-question:before {
  content: "\f128";
}

.fa-info:before {
  content: "\f129";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-shield:before {
  content: "\f132";
}

.fa-calendar-o:before {
  content: "\f133";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-ticket:before {
  content: "\f145";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-minus-square-o:before {
  content: "\f147";
}

.fa-level-up:before {
  content: "\f148";
}

.fa-level-down:before {
  content: "\f149";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-pencil-square:before {
  content: "\f14b";
}

.fa-external-link-square:before {
  content: "\f14c";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}

.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}

.fa-gbp:before {
  content: "\f154";
}

.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}

.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}

.fa-won:before,
.fa-krw:before {
  content: "\f159";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-text:before {
  content: "\f15c";
}

.fa-sort-alpha-asc:before {
  content: "\f15d";
}

.fa-sort-alpha-desc:before {
  content: "\f15e";
}

.fa-sort-amount-asc:before {
  content: "\f160";
}

.fa-sort-amount-desc:before {
  content: "\f161";
}

.fa-sort-numeric-asc:before {
  content: "\f162";
}

.fa-sort-numeric-desc:before {
  content: "\f163";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-youtube-square:before {
  content: "\f166";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-youtube-play:before {
  content: "\f16a";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adn:before {
  content: "\f170";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitbucket-square:before {
  content: "\f172";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-long-arrow-down:before {
  content: "\f175";
}

.fa-long-arrow-up:before {
  content: "\f176";
}

.fa-long-arrow-left:before {
  content: "\f177";
}

.fa-long-arrow-right:before {
  content: "\f178";
}

.fa-apple:before {
  content: "\f179";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-android:before {
  content: "\f17b";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-trello:before {
  content: "\f181";
}

.fa-female:before {
  content: "\f182";
}

.fa-male:before {
  content: "\f183";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184";
}

.fa-sun-o:before {
  content: "\f185";
}

.fa-moon-o:before {
  content: "\f186";
}

.fa-archive:before {
  content: "\f187";
}

.fa-bug:before {
  content: "\f188";
}

.fa-vk:before {
  content: "\f189";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-arrow-circle-o-right:before {
  content: "\f18e";
}

.fa-arrow-circle-o-left:before {
  content: "\f190";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}

.fa-dot-circle-o:before {
  content: "\f192";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}

.fa-plus-square-o:before {
  content: "\f196";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-slack:before {
  content: "\f198";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-spoon:before {
  content: "\f1b1";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-file-pdf-o:before {
  content: "\f1c1";
}

.fa-file-word-o:before {
  content: "\f1c2";
}

.fa-file-excel-o:before {
  content: "\f1c3";
}

.fa-file-powerpoint-o:before {
  content: "\f1c4";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}

.fa-file-code-o:before {
  content: "\f1c9";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}

.fa-circle-o-notch:before {
  content: "\f1ce";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "\f1d0";
}

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}

.fa-history:before {
  content: "\f1da";
}

.fa-circle-thin:before {
  content: "\f1db";
}

.fa-header:before {
  content: "\f1dc";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-sliders:before {
  content: "\f1de";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-newspaper-o:before {
  content: "\f1ea";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bell-slash-o:before {
  content: "\f1f7";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-eyedropper:before {
  content: "\f1fb";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-area-chart:before {
  content: "\f1fe";
}

.fa-pie-chart:before {
  content: "\f200";
}

.fa-line-chart:before {
  content: "\f201";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-bus:before {
  content: "\f207";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-cc:before {
  content: "\f20a";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b";
}

.fa-meanpath:before {
  content: "\f20c";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-diamond:before {
  content: "\f219";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-venus:before {
  content: "\f221";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-facebook-official:before {
  content: "\f230";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-server:before {
  content: "\f233";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-hotel:before,
.fa-bed:before {
  content: "\f236";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-train:before {
  content: "\f238";
}

.fa-subway:before {
  content: "\f239";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "\f23b";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "\f244";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-sticky-note-o:before {
  content: "\f24a";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-hourglass-o:before {
  content: "\f250";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "\f251";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "\f255";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "\f256";
}

.fa-hand-scissors-o:before {
  content: "\f257";
}

.fa-hand-lizard-o:before {
  content: "\f258";
}

.fa-hand-spock-o:before {
  content: "\f259";
}

.fa-hand-pointer-o:before {
  content: "\f25a";
}

.fa-hand-peace-o:before {
  content: "\f25b";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-safari:before {
  content: "\f267";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-tv:before,
.fa-television:before {
  content: "\f26c";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-500px:before {
  content: "\f26e";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-calendar-plus-o:before {
  content: "\f271";
}

.fa-calendar-minus-o:before {
  content: "\f272";
}

.fa-calendar-times-o:before {
  content: "\f273";
}

.fa-calendar-check-o:before {
  content: "\f274";
}

.fa-industry:before {
  content: "\f275";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-map-o:before {
  content: "\f278";
}

.fa-map:before {
  content: "\f279";
}

.fa-commenting:before {
  content: "\f27a";
}

.fa-commenting-o:before {
  content: "\f27b";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-vimeo:before {
  content: "\f27d";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-edge:before {
  content: "\f282";
}

.fa-credit-card-alt:before {
  content: "\f283";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-modx:before {
  content: "\f285";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-usb:before {
  content: "\f287";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-pause-circle-o:before {
  content: "\f28c";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stop-circle-o:before {
  content: "\f28e";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-percent:before {
  content: "\f295";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-envira:before {
  content: "\f299";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-wheelchair-alt:before {
  content: "\f29b";
}

.fa-question-circle-o:before {
  content: "\f29c";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-volume-control-phone:before {
  content: "\f2a0";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "\f2a4";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "\f2a7";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "\f2b3";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-handshake-o:before {
  content: "\f2b5";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-o:before {
  content: "\f2b7";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-book-o:before {
  content: "\f2ba";
}

.fa-vcard:before,
.fa-address-card:before {
  content: "\f2bb";
}

.fa-vcard-o:before,
.fa-address-card-o:before {
  content: "\f2bc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-circle-o:before {
  content: "\f2be";
}

.fa-user-o:before {
  content: "\f2c0";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-drivers-license:before,
.fa-id-card:before {
  content: "\f2c2";
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
  content: "\f2c3";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
  content: "\f2cd";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-times-rectangle:before,
.fa-window-close:before {
  content: "\f2d3";
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
  content: "\f2d4";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-eercast:before {
  content: "\f2da";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-snowflake-o:before {
  content: "\f2dc";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-meetup:before {
  content: "\f2e0";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*
Flaticon icon font: Flaticon
Creation date: 22/08/2017 13:16
*/
@font-face {
  font-family: "Flaticon";
  src: url("../fonts/vendor/flaticon/Flaticon.eot");
  src: url("../fonts/vendor/flaticon/Flaticon.eot?#iefix") format("embedded-opentype"), url("../fonts/vendor/flaticon/Flaticon.woff") format("woff"), url("../fonts/vendor/flaticon/Flaticon.ttf") format("truetype"), url("../fonts/vendor/flaticon/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Flaticon";
    src: url("../fonts/vendor/flaticon/Flaticon.svg#Flaticon") format("svg");
  }
}
[class^=flaticon-]:before, [class*=" flaticon-"]:before,
[class^=flaticon-]:after, [class*=" flaticon-"]:after {
  display: inline-block;
  font-family: "Flaticon";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  line-height: 1;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

.flaticon-information-symbol:before {
  content: "\f100";
}

.flaticon-multimedia:before {
  content: "\f101";
}

.flaticon-university-campus:before {
  content: "\f102";
}

.flaticon-tag:after {
  content: "\f103";
}

.flaticon-information-button:before {
  content: "\f104";
}

.flaticon-right-arrow:after {
  content: "\f105";
}

.flaticon-left-arrow:before {
  content: "\f106";
}

.flaticon-mouse:before {
  content: "\f107";
}

.flaticon-placeholder:before {
  content: "\f108";
}

.flaticon-document:before {
  content: "\f109";
}

.flaticon-user:before {
  content: "\f10a";
}

.flaticon-hsu-alth:before {
  content: "\f10b";
}

.flaticon-giving-love:before {
  content: "\f10c";
}

.flaticon-search:before {
  content: "\f10d";
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
.animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
            transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
            animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
            transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
            transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
          animation-name: flash;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.25, 1.25, 1.25);
            transform: scale3d(1.25, 1.25, 1.25);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.25, 1.25, 1.25);
            transform: scale3d(1.25, 1.25, 1.25);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
          animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
            transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
            transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
            transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
            transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
            transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
          animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
          animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
            transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
            transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
            transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
            transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
            transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
            transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
            transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
            transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
          animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
            transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
            transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
            transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
            transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
            transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation-name: swing;
          animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
            transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
          animation-name: tada;
}

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
            transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
            transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
            transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
            transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
            transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
            transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
            transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
          animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
            transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
            transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
            transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
            transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
            transform: skewX(0.39063deg) skewY(0.39063deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
            transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  -webkit-animation-name: jello;
          animation-name: jello;
  -webkit-transform-origin: center;
          transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
            transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
            transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
            transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
            transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
          animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
            transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
            transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
            transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
          animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
            transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
            transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
            transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
          animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
            transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
            transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
            transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
            transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
          animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
            animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
          animation-name: bounceInUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
            transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
          animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
          animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
            transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
          animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
          animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
            transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
          animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
            transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
          animation-name: fadeInUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
            transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
            transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
            transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
          animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
            transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
            transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
          animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
            transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
            transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
            transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
          animation-name: flipInY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
            transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
          animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
            transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
            transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
          animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
            transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
          animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
          animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
            transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
          animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
            transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
            transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: none;
            transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
          animation-name: rotateInUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
            transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
            transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
            transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
            transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
            transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
          animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
            transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
            transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
          animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
            transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
            transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
          animation-name: rollIn;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
            transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
          animation-name: zoomIn;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
          animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
          animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
            transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
            animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
            transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
            animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
          animation-name: zoomInUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
          animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
          animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
          animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
            transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
          animation-name: slideInUp;
}

/* ======================================================= */
/*    GLOBAL - GS Styles                                   */
/* ======================================================= */
.wow {
  visibility: hidden;
}

/*
* FooTable v3 - FooTable is a jQuery plugin that aims to make HTML tables on smaller devices look awesome.
* @version 3.1.5
* @link http://fooplugins.com
* @copyright Steven Usher & Brad Vincent 2015
* @license Released under the GPLv3 license.
*/
/* globals - instead we house them under the .footable.table class as the root of FooTable is always the table itself. */
.footable.table, .footable.table *,
.footable-details.table, .footable-details.table * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.footable.table th,
.footable-details.table th {
  text-align: left;
}

/* tables */
.footable.table,
.footable-details.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.footable.table > caption + thead > tr:first-child > th,
.footable.table > colgroup + thead > tr:first-child > th,
.footable.table > thead:first-child > tr:first-child > th,
.footable.table > caption + thead > tr:first-child > td,
.footable.table > colgroup + thead > tr:first-child > td,
.footable.table > thead:first-child > tr:first-child > td,
.footable-details.table > caption + thead > tr:first-child > th,
.footable-details.table > colgroup + thead > tr:first-child > th,
.footable-details.table > thead:first-child > tr:first-child > th,
.footable-details.table > caption + thead > tr:first-child > td,
.footable-details.table > colgroup + thead > tr:first-child > td,
.footable-details.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}

.footable.table > thead > tr > th,
.footable.table > tbody > tr > th,
.footable.table > tfoot > tr > th,
.footable.table > thead > tr > td,
.footable.table > tbody > tr > td,
.footable.table > tfoot > tr > td,
.footable-details.table > thead > tr > th,
.footable-details.table > tbody > tr > th,
.footable-details.table > tfoot > tr > th,
.footable-details.table > thead > tr > td,
.footable-details.table > tbody > tr > td,
.footable-details.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

.footable.table > thead > tr > th,
.footable.table > thead > tr > td,
.footable-details.table > thead > tr > th,
.footable-details.table > thead > tr > td {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}

.footable.table-condensed > thead > tr > th,
.footable.table-condensed > tbody > tr > th,
.footable.table-condensed > tfoot > tr > th,
.footable.table-condensed > thead > tr > td,
.footable.table-condensed > tbody > tr > td,
.footable.table-condensed > tfoot > tr > td,
.footable-details.table-condensed > thead > tr > th,
.footable-details.table-condensed > tbody > tr > th,
.footable-details.table-condensed > tfoot > tr > th,
.footable-details.table-condensed > thead > tr > td,
.footable-details.table-condensed > tbody > tr > td,
.footable-details.table-condensed > tfoot > tr > td {
  padding: 5px;
}

.footable.table-bordered,
.footable-details.table-bordered {
  border: 1px solid #ddd;
}

.footable.table-bordered > thead > tr > th,
.footable.table-bordered > tbody > tr > th,
.footable.table-bordered > tfoot > tr > th,
.footable.table-bordered > thead > tr > td,
.footable.table-bordered > tbody > tr > td,
.footable.table-bordered > tfoot > tr > td,
.footable-details.table-bordered > thead > tr > th,
.footable-details.table-bordered > tbody > tr > th,
.footable-details.table-bordered > tfoot > tr > th,
.footable-details.table-bordered > thead > tr > td,
.footable-details.table-bordered > tbody > tr > td,
.footable-details.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}

.footable.table-bordered > thead > tr > th,
.footable.table-bordered > thead > tr > td,
.footable-details.table-bordered > thead > tr > th,
.footable-details.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}

.footable.table-striped > tbody > tr:nth-child(odd),
.footable-details.table-striped > tbody > tr:nth-child(odd) {
  background-color: #f9f9f9;
}

.footable.table-hover > tbody > tr:hover,
.footable-details.table-hover > tbody > tr:hover {
  background-color: #f5f5f5;
}

/* buttons */
.footable .btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-appearance: button;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
  overflow: visible;
  text-transform: none;
}

.footable .btn:hover,
.footable .btn:focus,
.footable .btn.focus {
  color: #333;
  text-decoration: none;
}

.footable .btn-default {
  color: #333;
  background-color: #fff;
  border-color: #ccc;
}

.footable .btn-default:hover,
.footable .btn-default:focus,
.footable .btn-default.focus,
.footable .btn-default:active,
.footable .btn-default.active,
.footable .open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}

.footable .btn-primary {
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

.footable .btn-primary:hover,
.footable .btn-primary:focus,
.footable .btn-primary.focus,
.footable .btn-primary:active,
.footable .btn-primary.active,
.footable .open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #286090;
  border-color: #204d74;
}

/* button groups */
.footable .btn-group, .footable .btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.footable .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.footable .btn-group > .btn:first-child {
  margin-left: 0;
}

.footable .btn-group-vertical > .btn,
.footable .btn-group > .btn {
  position: relative;
  float: left;
}

.footable .btn-group-xs > .btn,
.footable .btn-xs {
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.footable .btn-group-sm > .btn,
.footable .btn-sm {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}

.footable .btn-group-lg > .btn,
.footable .btn-lg {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

/* caret */
.footable .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.footable .btn .caret {
  margin-left: 0;
}

/* form-group */
.form-group {
  margin-bottom: 15px;
}

/* form-control */
.footable .form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  margin: 0;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
}

/* input-group */
.footable .input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.footable .input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.footable .input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

.footable .input-group-addon,
.footable .input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.footable .input-group-addon,
.footable .input-group-btn,
.footable .input-group .form-control {
  display: table-cell;
}

.footable .input-group-btn > .btn + .btn,
.footable .input-group-btn:last-child > .btn,
.footable .input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}

.footable .input-group-btn > .btn {
  position: relative;
}

.footable .input-group-btn > .btn:hover,
.footable .input-group-btn > .btn:focus,
.footable .input-group-btn > .btn:active {
  z-index: 2;
}

.footable .input-group .form-control:first-child,
.footable .input-group-addon:first-child,
.footable .input-group-btn:first-child > .btn,
.footable .input-group-btn:first-child > .btn-group > .btn,
.footable .input-group-btn:first-child > .dropdown-toggle,
.footable .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.footable .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.footable .input-group .form-control:last-child,
.footable .input-group-addon:last-child,
.footable .input-group-btn:last-child > .btn,
.footable .input-group-btn:last-child > .btn-group > .btn,
.footable .input-group-btn:last-child > .dropdown-toggle,
.footable .input-group-btn:first-child > .btn:not(:first-child),
.footable .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* checkboxes & radios */
.footable .radio,
.footable .checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.footable .radio label,
.footable .checkbox label {
  max-width: 100%;
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.footable .radio input[type=radio],
.footable .radio-inline input[type=radio],
.footable .checkbox input[type=checkbox],
.footable .checkbox-inline input[type=checkbox] {
  position: absolute;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

/* dropdown-menu */
.footable .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.footable .open > .dropdown-menu {
  display: block;
}

.footable .dropdown-menu-right {
  right: 0;
  left: auto;
}

.footable .dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: 400;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

.footable .dropdown-menu > li > a:hover,
.footable .dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

/* pagination */
.footable .pagination {
  display: inline-block;
  padding-left: 0;
  margin: 20px 0;
  border-radius: 4px;
}

.footable .pagination > li {
  display: inline;
}

.footable .pagination > li:first-child > a,
.footable .pagination > li:first-child > span {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.footable .pagination > li > a,
.footable .pagination > li > span {
  position: relative;
  float: left;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #337ab7;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.footable .pagination > li > a:hover,
.footable .pagination > li > span:hover,
.footable .pagination > li > a:focus,
.footable .pagination > li > span:focus {
  color: #23527c;
  background-color: #eee;
  border-color: #ddd;
}

.footable .pagination > .active > a,
.footable .pagination > .active > span,
.footable .pagination > .active > a:hover,
.footable .pagination > .active > span:hover,
.footable .pagination > .active > a:focus,
.footable .pagination > .active > span:focus {
  z-index: 2;
  color: #fff;
  cursor: default;
  background-color: #337ab7;
  border-color: #337ab7;
}

.footable .pagination > .disabled > span,
.footable .pagination > .disabled > span:hover,
.footable .pagination > .disabled > span:focus,
.footable .pagination > .disabled > a,
.footable .pagination > .disabled > a:hover,
.footable .pagination > .disabled > a:focus {
  color: #777;
  cursor: not-allowed;
  background-color: #fff;
  border-color: #ddd;
}

/* labels */
.footable .label {
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}

.footable .label-default {
  background-color: #777;
}

/* wells */
.footable-loader.well {
  min-height: 20px;
  padding: 19px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

/* screen reader only */
.footable .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* form-inline */
@media (min-width: 768px) {
  .footable .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .footable .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .footable .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .footable .form-inline .input-group .input-group-addon,
  .footable .form-inline .input-group .input-group-btn,
  .footable .form-inline .input-group .form-control {
    width: auto;
  }
  .footable .form-inline .input-group > .form-control {
    width: 100%;
  }
}
table.footable,
table.footable-details {
  position: relative;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}

table.footable-details {
  margin-bottom: 0;
}

table.footable-hide-fouc {
  display: none;
}

table > tbody > tr > td > span.footable-toggle {
  margin-right: 8px;
  opacity: 0.3;
}

table > tbody > tr > td > span.footable-toggle.last-column {
  margin-left: 8px;
  float: right;
}

table.table-condensed > tbody > tr > td > span.footable-toggle {
  margin-right: 5px;
}

table.footable-details > tbody > tr > th:nth-child(1) {
  min-width: 40px;
  width: 120px;
}

table.footable-details > tbody > tr > td:nth-child(2) {
  word-break: break-all;
}

table.footable-details > thead > tr:first-child > th,
table.footable-details > thead > tr:first-child > td,
table.footable-details > tbody > tr:first-child > th,
table.footable-details > tbody > tr:first-child > td,
table.footable-details > tfoot > tr:first-child > th,
table.footable-details > tfoot > tr:first-child > td {
  border-top-width: 0;
}

table.footable-details.table-bordered > thead > tr:first-child > th,
table.footable-details.table-bordered > thead > tr:first-child > td,
table.footable-details.table-bordered > tbody > tr:first-child > th,
table.footable-details.table-bordered > tbody > tr:first-child > td,
table.footable-details.table-bordered > tfoot > tr:first-child > th,
table.footable-details.table-bordered > tfoot > tr:first-child > td {
  border-top-width: 1px;
}

div.footable-loader {
  vertical-align: middle;
  text-align: center;
  height: 300px;
  position: relative;
}

div.footable-loader > span.fooicon {
  display: inline-block;
  opacity: 0.3;
  font-size: 30px;
  line-height: 32px;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  margin-left: -16px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-animation: fooicon-spin-r 2s infinite linear;
  animation: fooicon-spin-r 2s infinite linear;
}

table.footable > tbody > tr.footable-empty > td {
  vertical-align: middle;
  text-align: center;
  font-size: 30px;
}

table.footable > tbody > tr > td,
table.footable > tbody > tr > th {
  display: none;
}

table.footable > tbody > tr.footable-empty > td,
table.footable > tbody > tr.footable-empty > th,
table.footable > tbody > tr.footable-detail-row > td,
table.footable > tbody > tr.footable-detail-row > th {
  display: table-cell;
}

@-webkit-keyframes fooicon-spin-r {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fooicon-spin-r {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fooicon {
  display: inline-block;
  font-size: inherit;
  font-family: FontAwesome !important;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fooicon:before,
.fooicon:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fooicon-loader:before {
  content: "\f01e";
}

.fooicon-plus:before {
  content: "\f067";
}

.fooicon-minus:before {
  content: "\f068";
}

.fooicon-search:before {
  content: "\f002";
}

.fooicon-remove:before {
  content: "\f00d";
}

.fooicon-sort:before {
  content: "\f0dc";
}

.fooicon-sort-asc:before {
  content: "\f160";
}

.fooicon-sort-desc:before {
  content: "\f161";
}

.fooicon-pencil:before {
  content: "\f040";
}

.fooicon-trash:before {
  content: "\f1f8";
}

.fooicon-eye-close:before {
  content: "\f070";
}

.fooicon-flash:before {
  content: "\f0e7";
}

.fooicon-cog:before {
  content: "\f013";
}

.fooicon-stats:before {
  content: "\f080";
}

table.footable > thead > tr.footable-filtering > th {
  border-bottom-width: 1px;
  font-weight: normal;
}

.footable-filtering-external.footable-filtering-right,
table.footable > thead > tr.footable-filtering > th,
table.footable.footable-filtering-right > thead > tr.footable-filtering > th {
  text-align: right;
}

.footable-filtering-external.footable-filtering-left,
table.footable.footable-filtering-left > thead > tr.footable-filtering > th {
  text-align: left;
}

.footable-filtering-external.footable-filtering-center,
table.footable.footable-filtering-center > thead > tr.footable-filtering > th {
  text-align: center;
}

table.footable > thead > tr.footable-filtering > th div.form-group {
  margin-bottom: 0;
}

table.footable > thead > tr.footable-filtering > th div.form-group + div.form-group {
  margin-top: 5px;
}

table.footable > thead > tr.footable-filtering > th div.input-group {
  width: 100%;
}

.footable-filtering-external ul.dropdown-menu > li > a.checkbox,
table.footable > thead > tr.footable-filtering > th ul.dropdown-menu > li > a.checkbox {
  margin: 0;
  display: block;
  position: relative;
}

.footable-filtering-external ul.dropdown-menu > li > a.checkbox > label,
table.footable > thead > tr.footable-filtering > th ul.dropdown-menu > li > a.checkbox > label {
  display: block;
  padding-left: 20px;
}

.footable-filtering-external ul.dropdown-menu > li > a.checkbox input[type=checkbox],
table.footable > thead > tr.footable-filtering > th ul.dropdown-menu > li > a.checkbox input[type=checkbox] {
  position: absolute;
  margin-left: -20px;
}

@media (min-width: 768px) {
  table.footable > thead > tr.footable-filtering > th div.input-group {
    width: auto;
  }
  table.footable > thead > tr.footable-filtering > th div.form-group {
    margin-left: 2px;
    margin-right: 2px;
  }
  table.footable > thead > tr.footable-filtering > th div.form-group + div.form-group {
    margin-top: 0;
  }
}
table.footable > thead > tr > td.footable-sortable,
table.footable > thead > tr > th.footable-sortable,
table.footable > tbody > tr > td.footable-sortable,
table.footable > tbody > tr > th.footable-sortable,
table.footable > tfoot > tr > td.footable-sortable,
table.footable > tfoot > tr > th.footable-sortable {
  position: relative;
  padding-right: 30px;
  cursor: pointer;
}

td.footable-sortable > span.fooicon,
th.footable-sortable > span.fooicon {
  position: absolute;
  right: 6px;
  top: 50%;
  margin-top: -7px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

td.footable-sortable:hover > span.fooicon,
th.footable-sortable:hover > span.fooicon {
  opacity: 1;
}

td.footable-sortable.footable-asc > span.fooicon,
th.footable-sortable.footable-asc > span.fooicon,
td.footable-sortable.footable-desc > span.fooicon,
th.footable-sortable.footable-desc > span.fooicon {
  opacity: 1;
}

/* hides the sort icons when sorting is not allowed */
table.footable-sorting-disabled td.footable-sortable.footable-asc > span.fooicon,
table.footable-sorting-disabled td.footable-sortable.footable-desc > span.fooicon,
table.footable-sorting-disabled td.footable-sortable:hover > span.fooicon,
table.footable-sorting-disabled th.footable-sortable.footable-asc > span.fooicon,
table.footable-sorting-disabled th.footable-sortable.footable-desc > span.fooicon,
table.footable-sorting-disabled th.footable-sortable:hover > span.fooicon {
  opacity: 0;
  visibility: hidden;
}

.footable-paging-external ul.pagination,
table.footable > tfoot > tr.footable-paging > td > ul.pagination {
  margin: 10px 0 0 0;
}

.footable-paging-external span.label,
table.footable > tfoot > tr.footable-paging > td > span.label {
  display: inline-block;
  margin: 0 0 10px 0;
  padding: 4px 10px;
}

.footable-paging-external.footable-paging-center,
table.footable > tfoot > tr.footable-paging > td,
table.footable-paging-center > tfoot > tr.footable-paging > td {
  text-align: center;
}

.footable-paging-external.footable-paging-left,
table.footable-paging-left > tfoot > tr.footable-paging > td {
  text-align: left;
}

.footable-paging-external.footable-paging-right,
table.footable-paging-right > tfoot > tr.footable-paging > td {
  text-align: right;
}

ul.pagination > li.footable-page {
  display: none;
}

ul.pagination > li.footable-page.visible {
  display: inline;
}

td.footable-editing {
  width: 90px;
  max-width: 90px;
}

table.footable-editing-no-edit td.footable-editing,
table.footable-editing-no-delete td.footable-editing,
table.footable-editing-no-view td.footable-editing {
  width: 70px;
  max-width: 70px;
}

table.footable-editing-no-edit.footable-editing-no-delete td.footable-editing,
table.footable-editing-no-edit.footable-editing-no-view td.footable-editing,
table.footable-editing-no-delete.footable-editing-no-view td.footable-editing {
  width: 50px;
  max-width: 50px;
}

table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view td.footable-editing,
table.footable-editing-no-edit.footable-editing-no-delete.footable-editing-no-view th.footable-editing {
  width: 0;
  max-width: 0;
  display: none !important;
}

table.footable-editing-right td.footable-editing,
table.footable-editing-right tr.footable-editing {
  text-align: right;
}

table.footable-editing-left td.footable-editing,
table.footable-editing-left tr.footable-editing {
  text-align: left;
}

table.footable-editing button.footable-add,
table.footable-editing button.footable-hide,
table.footable-editing-show button.footable-show,
table.footable-editing.footable-editing-always-show button.footable-show,
table.footable-editing.footable-editing-always-show button.footable-hide,
table.footable-editing.footable-editing-always-show.footable-editing-no-add tr.footable-editing {
  display: none;
}

table.footable-editing.footable-editing-show button.footable-add,
table.footable-editing.footable-editing-show button.footable-hide,
table.footable-editing.footable-editing-always-show button.footable-add {
  display: inline-block;
}

/* Typography resets */
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-justify {
  text-align: justify !important;
}

.program__overview .listing--faculty__name, body {
  font-family: "proxima-nova", "Arial", sans-serif;
  line-height: 2.1;
  color: #525252;
  font-size: 1.125rem;
  font-weight: 400;
}
@media (max-width: 40rem) {
  .program__overview .listing--faculty__name, body {
    font-size: 0.875rem;
  }
}

.story--large-listing .story__excerpt,
.small-paragraph {
  font-size: 1rem;
  line-height: 1.75;
}

.home-hero__content__title, h1, h2, h3, h4, h5, h6 {
  font-family: "proxima-nova", "Arial", sans-serif;
  color: #000;
  font-weight: 700;
  margin-top: 0px;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 1.875rem;
  margin-bottom: 2.1875rem;
  margin-top: 1.875rem;
  line-height: 1.2;
  font-weight: 800;
  display: block;
  width: 100%;
}
@media (min-width: 40.0625rem) {
  h1, .h1 {
    font-size: 3.125rem;
    margin-top: 5rem;
  }
}

h2, .h2 {
  font-weight: 800;
  color: #581483;
  font-size: 1.375rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 40.0625rem) {
  h2, .h2 {
    font-size: 1.875rem;
  }
}

h3, .h3 {
  font-size: 1.25rem;
  margin-bottom: 0.9375rem;
  color: #000;
}
@media (min-width: 40.0625rem) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4, .faculty-staff__info, .accordion-drop-down__toggle h3, .search-page h2 {
  font-size: 1.125rem;
  margin-bottom: 0.9375rem;
  color: #000;
}
@media (min-width: 40.0625rem) {
  h4, .h4, .faculty-staff__info, .accordion-drop-down__toggle h3, .search-page h2 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1rem;
  color: #000;
  margin-bottom: 0.9375rem;
}
@media (min-width: 40.0625rem) {
  h5 {
    font-size: 1.3125rem;
  }
}

h6, .h6 {
  font-size: 0.875rem;
  color: #000;
  margin-bottom: 0.9375rem;
}
@media (min-width: 40.0625rem) {
  h6, .h6 {
    font-size: 1.125rem;
  }
}

.serif-body *:not(h1, h2, h3, h4, h5, h6, .btn) {
  font-family: "Noto Serif", "American Typewriter", serif;
}
.serif-body blockquote p,
.serif-body table,
.serif-body table * {
  font-family: "proxima-nova", "Arial", sans-serif !important;
}

.tab-nav__link, .filter__form .filter__button--submit,
.filter__form .filter-toggle__button, .btn, .btn--light, .btn--gold,
.btn {
  padding: 0.8125rem 1.25rem 0.625rem;
  font-size: 0.75rem;
  text-decoration: none;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
  text-transform: uppercase;
  color: #fff;
  background: #581483;
  display: inline-block;
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  line-height: 1.0625rem;
  margin-bottom: 1.25rem;
  border-radius: 0.625rem;
  border: none;
}
@media (min-width: 48.0625rem) {
  .tab-nav__link, .filter__form .filter__button--submit,
  .filter__form .filter-toggle__button, .btn, .btn--light, .btn--gold,
  .btn {
    padding: 1.125rem 3.125rem 0.9375rem;
    font-size: 0.875rem;
  }
}
.tab-nav__link:hover, .filter__form .filter__button--submit:hover,
.filter__form .filter-toggle__button:hover, .btn--light:hover, .btn--gold:hover,
.btn:hover {
  background: #9935D8;
  text-decoration: none;
}

.btn--gold {
  background: #AD841F;
}
.btn--gold:hover {
  background: #d8a527;
}

.btn--ghost,
.btn--ghost-container a {
  color: #AD841F;
  border: 0.0625rem solid #EFD38E;
  background: #fff;
}
.btn--ghost:hover,
.btn--ghost-container a:hover {
  color: #fff;
  background: #AD841F;
}

.btn--light {
  background: #fff;
  color: #761baf;
}
.btn--light:hover {
  color: #fff;
}

p {
  margin-top: 0;
  margin-bottom: 1.5625rem;
  width: 100%;
}
p .btn {
  margin: 0;
}

em {
  font-style: italic;
}

a {
  text-decoration: none;
  color: #9935D8;
}
a:hover {
  text-decoration: underline;
}

ul, ol {
  padding-left: 20px;
  margin-bottom: 30px;
}

.intro-text {
  font-size: 1.125rem;
  line-height: 1.5;
  font-family: "proxima-nova", "Arial", sans-serif;
  display: block;
  width: 100%;
  font-weight: 400;
}
@media (min-width: 40.0625rem) {
  .intro-text {
    font-size: 1.5rem;
  }
}
.intro-text p {
  max-width: 47.5rem;
}
.intro-text a {
  text-decoration: underline;
}
.intro-text a:hover {
  text-decoration: none;
}

p.intro-text {
  max-width: 47.5rem;
}

.tuition-intro .btn {
  margin-bottom: 0;
}

.accordion-drop-down__toggled-content blockquote:before, .accordion-drop-down__toggled-content blockquote:after {
  background: #F4F4F4;
}

blockquote {
  text-align: center;
  max-width: 47.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5625rem;
  margin-bottom: 1.5625rem;
  padding: 1.25rem 0;
  border-top: 0.0625rem solid #EFD38E;
  border-bottom: 0.0625rem solid #EFD38E;
  position: relative;
}
@media (min-width: 40.0625rem) {
  blockquote {
    margin-top: 2.8125rem;
    margin-bottom: 2.8125rem;
    padding: 2.5rem 0;
  }
}
blockquote:before, blockquote:after {
  font-size: 4.0625rem;
  line-height: 0.8;
  background: #fff;
  padding: 0.125rem 0;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 2.1875rem;
  height: 1.25rem;
}
blockquote:before {
  content: "“";
  z-index: 1;
  top: 0;
  color: #AD841F;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
blockquote:after {
  content: "”";
  z-index: 1;
  bottom: 0;
  color: #AD841F;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
blockquote p {
  color: #AD841F;
  max-width: 40.5rem;
  margin: 0 auto;
  font-family: "proxima-nova", "Arial", sans-serif !important;
  font-weight: 300 !important;
  text-align: center;
  line-height: 1.2;
  font-weight: 300;
  font-size: 1.125rem;
}
@media (min-width: 40.0625rem) {
  blockquote p {
    font-size: 1.875rem;
  }
}

.eyebrow-header {
  font-size: 0.6875rem;
  letter-spacing: 0.125rem;
  text-transform: uppercase;
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 600;
  color: #581483;
  display: block;
}
@media (min-width: 48.0625rem) {
  .eyebrow-header {
    font-size: 0.8125rem;
  }
}

.arrow-link:hover,
.arrow-link-container a:hover {
  text-decoration: none;
}
.arrow-link:hover:after,
.arrow-link-container a:hover:after {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}
.arrow-link:after,
.arrow-link-container a:after {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  content: "\f105";
  font-family: "FontAwesome";
  margin-left: 0.625rem;
  display: inline-block;
}

.fa-list {
  line-height: 1.4;
}
.fa-list:before {
  content: none;
}
.fa-list span {
  display: block;
  position: relative;
  padding: 0.3125rem 0 0.3125rem 1.25rem;
}
@media (min-width: 40.0625rem) {
  .fa-list span {
    padding: 0.3125rem 0 0.3125rem 1.875rem;
  }
}
.fa-list i {
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0.5625rem;
  color: #9162AF;
}

.tuition-cost-green {
  color: #4D6F21;
}

.related-content__text {
  line-height: 1.3;
  font-size: 1.125rem;
}

/* Padded Rows are for rows that will not contain columns. These instances are usually
  where normal columns are more a hindrance than a help such as complex areas such as the header. */
/*
.padded-row {
  @include grid-row();
  padding: 0 20px;

  .row {
    margin: 0 -20px;
  }
​
  @media only screen and (max-width: 630px) {
    padding: 0 12px;

    .row {
      margin: 0 -12px;
    }
  }
}
*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.padded-row {
  max-width: 75rem;
  margin-right: auto;
  margin-left: auto;
  display: block;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.padded-row::before, .padded-row::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.padded-row::after {
  clear: both;
}

ul.row:not(.columns), ul.padded-row:not(.columns) {
  padding: 0;
}
ul.row:not(.columns) > li, ul.padded-row:not(.columns) > li {
  list-style: none;
}

.columns {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 40.0625rem) {
  .medium-row-reverse,
  .related-stories .story--small-feature:nth-child(even) .row,
  .related-stories .story--small-feature:nth-child(even) .padded-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media (max-width: 40rem) {
  .small-collapse,
  ul.row li.small-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}

/*
 * Classes that represent max widths at the largest size of the grid
 * Can be used in situations where you have a single non-full size column in a row
 */
/*
-------------------
GLOBAL ELEMENTS
-------------------
*/
/*
#wpadminbar {
  z-index: 3001;
}
*/
.basic-page .site-main > .row, .basic-page .site-main > .padded-row,
.single-news .news--detail,
.faculty-staff-template-default .faculty-staff--detail {
  padding-top: 1.875rem;
}
@media (min-width: 40.0625rem) {
  .basic-page .site-main > .row, .basic-page .site-main > .padded-row,
  .single-news .news--detail,
  .faculty-staff-template-default .faculty-staff--detail {
    padding-top: 5rem;
  }
}
.basic-page .site-main > .row h1, .basic-page .site-main > .padded-row h1,
.single-news .news--detail h1,
.faculty-staff-template-default .faculty-staff--detail h1 {
  margin-top: 0;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
}

.main-content {
  padding-top: 40px;
}

img {
  max-width: 100%;
  height: auto;
}

.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
}

.element-invisible.element-focusable:focus {
  clip: auto;
  height: auto;
  bottom: 0;
  margin-left: -15px;
}

button {
  border-radius: 0;
}

.featured-image {
  margin-bottom: 20px;
}

figure {
  display: table;
  margin: 0;
}

figcaption,
.featured-media__caption {
  margin-top: 0;
  font-size: 0.8125rem;
  color: #525252;
  display: table-caption;
  caption-side: bottom;
  padding-bottom: 0.5rem;
  border-bottom: 0.0625rem #D3D3D3 solid;
  line-height: 1.4;
}

table[align=left] {
  float: none;
}
@media (min-width: 768px) {
  table[align=left] {
    margin-right: 35px;
    float: left;
  }
}

table[align=right] {
  float: none;
}
@media (min-width: 768px) {
  table[align=right] {
    margin-left: 35px;
    float: right;
  }
}

.alignright {
  margin-bottom: 1.25rem;
  display: table;
}
@media screen and (min-width: 40em) {
  .alignright {
    float: right;
    margin: 0.625rem 0 0.625rem 1.5625rem;
  }
  .alignright figcaption {
    margin: remn-calc(0 0 10 25);
  }
}

.alignleft {
  margin-bottom: 1.25rem;
  display: table;
}
@media screen and (min-width: 40em) {
  .alignleft {
    margin: 0;
    float: left;
    margin: 0.625rem 1.5625rem 0.625rem 0;
  }
  .alignleft figcaption {
    margin: 0 1.5625rem 0.625rem 0;
  }
}

.landing-page-lead-in {
  padding: 0 0 40px;
}

.landing-page-lead-in__title h1 {
  margin-bottom: 15px;
}

code {
  border: solid 1px #999;
  background-color: #F1F1F1;
}

.base-key {
  border: solid 1px #999;
  background-color: #F1F1F1;
  padding: 0.25rem 0.5rem;
  max-width: 480px;
  font-family: "proxima-nova", "Arial", sans-serif;
}
.base-key::before, .base-key::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.base-key::after {
  clear: both;
}
.base-key dt {
  font-weight: 700;
  float: left;
  width: 5rem;
  clear: left;
}
.base-key dt, .base-key dd {
  margin-bottom: 0.25rem;
}
.base-key dd {
  font-family: monospace;
}

.parallax-overlay {
  position: relative;
  z-index: 4;
  background: #fff;
}
.parallax-overlay::before, .parallax-overlay::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.parallax-overlay::after {
  clear: both;
}

.home-featured__heading:after,
.gray-heading-border {
  content: "";
  height: 0.0625rem;
  position: relative;
  display: block;
  width: 100%;
  max-width: 6.4375rem;
  background-color: #ccc;
  margin-top: 0.75rem;
}
@media (max-width: 40rem) {
  .home-featured__heading:after,
  .gray-heading-border {
    margin-top: 0.625rem;
    margin-bottom: 0.75rem;
  }
}

.chevron-list {
  margin-left: 0;
  padding-left: 0;
}
.chevron-list li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.56;
}
.chevron-list li:before {
  content: "\f054";
  font-family: "FontAwesome";
  margin-right: 0.625rem;
  font-size: 70%;
  color: #EFD38E;
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
  position: relative;
}

.preceeding-icon-list {
  margin: 0;
  padding: 0;
}
.preceeding-icon-list li {
  font-family: "proxima-nova", "Arial", sans-serif;
  display: block;
  font-size: 0.6875rem;
  margin-bottom: 0.3125rem;
}
.preceeding-icon-list li:before {
  font-family: "FontAwesome";
  color: #581483;
  margin-right: 0.3125rem;
}

.iframe-video-container,
.featured-media__video__item {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin: 0 auto 2.8125rem auto;
}
.iframe-video-container iframe,
.featured-media__video__item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 40rem) {
  .mobile-hidden {
    display: none;
  }
}

.text-center {
  text-align: center;
}

.scroll-button {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 4000;
  font-size: 15px;
  border: none;
  outline: none;
  background-color: #581483;
  color: white;
  cursor: pointer;
  padding: 13px 15px 15px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-family: "FontAwesome";
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 900px) {
  .scroll-button {
    display: none !important;
  }
}

.scroll-button:hover {
  background-color: #AD841F;
  color: white;
}

table {
  margin-bottom: 30px;
  font-family: "proxima-nova", "Arial", sans-serif;
  color: #000;
  border-top: 1px solid #C9CACC;
  border-left: 1px solid #C9CACC;
  outline: none;
  border-collapse: collapse;
  line-height: 1.5;
}
table.borderless {
  border: none;
}
table.borderless th, table.borderless td, table.borderless tr, table.borderless tbody, table.borderless thead {
  border: none;
}

thead {
  color: #000;
  font-weight: 700;
  font-family: "proxima-nova", "Arial", sans-serif;
  border: none;
}
thead td, thead th {
  background: #BDACC8;
  margin: 0;
  border-bottom: 1px solid #C9CACC;
  padding: 1.25rem;
  font-size: 1.125rem;
  border-spacing: 0;
}

tbody {
  border-top: 0px;
  border-left: 1px solid #C9CACC;
}

tr {
  border-bottom: 1px solid #C9CACC;
}

td, th {
  padding: 1.25rem;
  font-size: 1rem;
  border-right: 1px solid #C9CACC;
}

th {
  font-weight: 700;
  background: #F4F4F4;
  text-align: left;
}

@media only screen and (max-width: 48rem) {
  .mobile-table--scroll {
    overflow-y: scroll;
  }
  .mobile-table--scroll table {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    overflow: hidden;
  }
  .mobile-table--scroll table:after {
    content: "";
    z-index: 4;
    background-size: 25% 100%;
    top: 0;
    right: 0;
    height: 100%;
    display: block;
    pointer-events: none;
    width: 100%;
    background-repeat: no-repeat;
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(#fff));
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #fff 100%);
    background-attachment: fixed;
    background-position: right -1px top;
    -webkit-transition: opacity 0.15s cubic-bezier(0.42, 0.08, 0.06, 0.98);
    transition: opacity 0.15s cubic-bezier(0.42, 0.08, 0.06, 0.98);
    position: fixed;
  }
}

.mobile-table--scroll.scrolled table:after {
  opacity: 0;
}

/************************************************************/
.section--basic-page--wysiwyg table thead,
.accordion-drop-down__toggled-content table thead {
  white-space: nowrap;
}
.section--basic-page--wysiwyg table th, .section--basic-page--wysiwyg table td,
.accordion-drop-down__toggled-content table th,
.accordion-drop-down__toggled-content table td {
  background: #fefefe;
}

table.payment-plan-table *, table.payment-plan-table a {
  font-family: "proxima-nova" !important;
}
table.payment-plan-table tr.header {
  background-color: #eee;
}
table.payment-plan-table td.input {
  width: 100%;
}

.payment-plan-result {
  line-height: 150%;
}

table[name=GPACalcForm] input[type=text] {
  width: 100%;
}

/*
--------
FORMS
--------
*/
input[type=text],
input[type=tel],
input[type=email] {
  height: 2.5rem;
  background-color: #fff;
  border: 0.0625rem solid #B5B5B5;
  padding-left: 1.25rem;
  font-size: 1rem;
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 1rem;
  width: 1rem;
  padding: 0 0.4375rem;
  margin-right: 0.625rem;
  display: inline;
  /* Check Background: */
  background: #FFFFFF;
  border: 1px solid #979797;
  -webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
          box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
  border-radius: 2px;
}
input[type=checkbox]:checked {
  background-image: url("../img/blue-check.svg");
  background-repeat: no-repeat;
  background-position: 0.125rem 0;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 2.5rem;
  border: 0.0625rem solid #B5B5B5;
  padding-left: 1.25rem;
  font-size: 1rem;
  border-radius: 0 !important;
  background: url("../img/fa-select.svg") right 0.625rem center, -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#d9d9d9));
  background: url("../img/fa-select.svg") right 0.625rem center, linear-gradient(-180deg, #ffffff 0%, #d9d9d9 100%);
  background-repeat: no-repeat;
}

.block {
  border-bottom: 1px solid #581483;
  margin-top: 1rem;
  padding-bottom: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.block:last-of-type {
  border-bottom: none;
}
.block select {
  padding-right: 1.5625rem;
  font-family: "proxima-nova", "Arial", sans-serif;
}
.block select .grade-select {
  -webkit-box-flex: 0.3;
      -ms-flex-positive: 0.3;
          flex-grow: 0.3;
}

@media screen and (max-width: 760px) {
  input.course {
    width: 100%;
  }
  .block {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .block select {
    margin-right: 10px;
  }
}
/*
-----------------
BREADCRUMBS
-----------------
*/
.breadcrumbs {
  padding: 0 1.25rem;
  background-color: #fff;
  -webkit-box-shadow: inset 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 0px 4px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 4;
}
@media (max-width: 56.25rem) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs ul,
.breadcrumbs ol {
  padding: 1.5625rem 0;
  max-width: 75rem;
  margin: 0 auto;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.5;
  font-family: "proxima-nova", "Arial", sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04rem;
}
.breadcrumbs a {
  margin-right: 0.625rem;
}
.breadcrumbs li + li:before {
  content: "//";
  color: #c4c4c4;
  margin-right: 0.625rem;
  font-weight: 600;
}

.tpl--landing-page .breadcrumbs ul,
.tpl--page-not-found .breadcrumbs ul,
.single-undergrad-program .breadcrumbs ul,
.single-grad-program .breadcrumbs ul,
.single-story .breadcrumbs ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*
---------------
SECTION-BLOCKS
---------------
*/
.section--global-padding {
  padding: 3.125rem 0;
}
@media (min-width: 40.0625rem) {
  .section--global-padding {
    padding: 6.25rem 0;
  }
}

.section--global-spacing,
#results-undergrad-listing,
#results-grad-listing,
.single-story .breadcrumbs {
  margin-bottom: 2.5rem;
}
@media (min-width: 40.0625rem) {
  .section--global-spacing,
  #results-undergrad-listing,
  #results-grad-listing,
  .single-story .breadcrumbs {
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 48.0625rem) {
  .section--global-spacing,
  #results-undergrad-listing,
  #results-grad-listing,
  .single-story .breadcrumbs {
    margin-bottom: 6.25rem;
  }
}

.section--landing--intro .padded-row {
  max-width: 46.25rem;
}

section [class*=block-grid-] > li {
  padding-bottom: 40px;
}

.section--global-padding.section--global-spacing + .section--global-padding,
.section--global-padding + .section--flexboxes,
.section--checkerboard--alternate-overlap + .section--flexboxes {
  margin-top: -1.25rem;
}
@media (min-width: 40.0625rem) {
  .section--global-padding.section--global-spacing + .section--global-padding,
  .section--global-padding + .section--flexboxes,
  .section--checkerboard--alternate-overlap + .section--flexboxes {
    margin-top: -3.75rem;
  }
}
@media (min-width: 48.0625rem) {
  .section--global-padding.section--global-spacing + .section--global-padding,
  .section--global-padding + .section--flexboxes,
  .section--checkerboard--alternate-overlap + .section--flexboxes {
    margin-top: -6.25rem;
  }
}

.section--basic-page {
  margin-bottom: 1.6875rem;
}
@media (min-width: 48.0625rem) {
  .section--basic-page {
    margin-bottom: 2.8125rem;
  }
}
@media (min-width: 40.0625rem) {
  .section--basic-page {
    margin-bottom: 4.125rem;
  }
}
.section--basic-page .accordion-drop-down:last-child {
  margin-bottom: 0;
}
.section--basic-page--wysiwyg p:not(.intro-text),
.section--basic-page--wysiwyg a:not(.btn),
.section--basic-page--wysiwyg ul,
.section--basic-page--wysiwyg ol,
.section--basic-page--wysiwyg dl {
  font-family: "Noto Serif", "American Typewriter", serif;
}
.section--basic-page--wysiwyg--wysiwyg blockquote p,
.section--basic-page--wysiwyg--wysiwyg blockquote a {
  font-family: "proxima-nova", "Arial", sans-serif;
}
.section--basic-page--wysiwyg p:last-child,
.section--basic-page--wysiwyg table:last-child,
.section--basic-page--wysiwyg ul:last-child,
.section--basic-page--wysiwyg ol:last-child {
  margin-bottom: 0;
}
.section--basic-page--wysiwyg p:last-child .btn,
.section--basic-page--wysiwyg table:last-child .btn,
.section--basic-page--wysiwyg ul:last-child .btn,
.section--basic-page--wysiwyg ol:last-child .btn {
  margin-bottom: 0;
}
.section--basic-page a:not(.btn) {
  text-decoration: underline;
}
.section--basic-page a:not(.btn):hover {
  text-decoration: none;
}

.section--related-content {
  margin-bottom: 1.25rem;
}
@media (min-width: 40.0625rem) {
  .section--related-content {
    margin-bottom: 3.75rem;
  }
}
.section--related-content h2 {
  margin-bottom: 0.9375rem;
}
@media (min-width: 40.0625rem) {
  .section--related-content h2 {
    margin-bottom: 2.1875rem;
  }
}
.section--related-content .columns {
  margin-bottom: rem-cal(20);
}
@media (min-width: 40.0625rem) {
  .section--related-content .columns {
    margin-bottom: 2.5rem;
  }
}
.section--related-content a {
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 700;
  margin-top: 0.9375rem;
  margin-bottom: 0;
}

.parallax-mask {
  position: relative;
  z-index: 4;
}
.parallax-mask::before, .parallax-mask::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.parallax-mask::after {
  clear: both;
}

.page--full-width .row > p a:not(.btn), .page--full-width .padded-row > p a:not(.btn),
.faculty--staff__bio a:not(.btn) {
  text-decoration: underline;
}
.page--full-width .row > p a:not(.btn):hover, .page--full-width .padded-row > p a:not(.btn):hover,
.faculty--staff__bio a:not(.btn):hover {
  text-decoration: none;
}

.page--page-not-found > .row, .page--page-not-found > .padded-row {
  margin-top: 2.5rem;
  margin-bottom: 8.125rem;
}
@media (min-width: 40.0625rem) {
  .page--page-not-found > .row, .page--page-not-found > .padded-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.page--page-not-found h1 {
  margin-top: 0;
}

/*
----------
OHO ALERT
----------
*/
.oho-alert {
  background: #F4F4F4;
  position: relative;
  z-index: 9999;
}
@media (max-width: 56.25rem) {
  .oho-alert {
    padding-top: 3.75rem;
  }
}
.oho-alert .oho-alert__icon {
  position: relative;
  padding-left: 4.375rem;
}
.oho-alert .oho-alert__icon:before {
  font-family: "FontAwesome";
  content: "\f071";
  font-size: 2.5rem;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.2;
  color: #AD841F;
}
.oho-alert h1 {
  margin-top: 1.875rem;
  margin-bottom: 0.625rem;
}
.oho-alert p {
  font-size: 1rem;
  line-height: 1.5;
  max-width: 47.5rem;
  margin-bottom: 0.625rem;
}
.oho-alert .arrow-link {
  display: inline-block;
  margin-bottom: 1.875rem;
}

.youtube-responsive-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  margin-right: 10px;
  height: 0;
  overflow: hidden;
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
  -ms-flex-item-align: center;
      align-self: center;
}
.youtube-responsive-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

div.why-hsu {
  display: block;
  padding-top: 0;
}
div.why-hsu h1 {
  margin-top: 0;
}
div.why-hsu ul {
  list-style: none;
}
div.why-hsu ul li:before {
  content: "\f058";
  font-family: FontAwesome;
  color: #FFC72C;
  margin-right: 1em;
}

div.video-and-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

div.ppc-form div.form-header {
  text-transform: uppercase;
  text-align: center;
  font-family: "proxima-nova";
  font-size: 2em;
  line-height: 1.4;
  color: #fff;
  background: url(/wp-content/themes/hsu-theme/assets/img/form-badge.png) no-repeat;
  background-position: center;
  background-color: #D3D3D3;
  padding: 2em;
  padding-bottom: 2em;
  height: 256px;
}
div.ppc-form div.form-header span {
  padding-top: 0.9em;
}

.graduation-cap {
  color: #581483;
  font-size: 200px;
  background: #D3D3D3;
  float: left;
  padding-right: 30px;
}
.graduation-cap i {
  vertical-align: middle;
}

.ppc-landing-copy {
  font-family: "Noto Serif";
  padding: 2em;
}
.ppc-landing-copy p:last-of-type {
  margin-bottom: 0;
}

.black-on-gray {
  background: #D3D3D3;
  color: #525252;
}

.white-on-black {
  background: #525252;
  color: #F4F4F4;
}
.white-on-black h2 {
  color: #F4F4F4;
}

div.faculty-section img.staff-photo {
  float: left;
  padding: 1em;
}

div.curriculum-section section {
  float: left;
  width: 50%;
  padding: 1em;
}

div.ppc-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-column-gap: 20px;
}

div.ppc-grid-item {
  margin: 0 auto;
}

@media screen and (max-width: 900px) {
  div.video-and-form {
    display: block;
  }
  .youtube-responsive-container {
    width: 100%;
  }
  div.ppc-form div.form-header {
    margin-top: 1em;
    padding: 3em;
  }
  .graduation-cap {
    width: 100%;
    float: none;
    text-align: center;
    padding-right: 0;
  }
  div.curriculum-section section {
    width: 100%;
    float: none;
    padding: 1em;
  }
}
@media screen and (min-width: 300px) and (max-width: 640px) {
  div.ppc-form div.form-header {
    margin-top: 1em;
    font-size: 2.4em;
    padding: 2.5em;
  }
  div.ppc-grid {
    grid-template-columns: 100%;
  }
}
/*
---------------------
SEARCH PAGE
---------------------
*/
.search-page ul.search-page__results {
  padding: 0;
  max-width: 47.5rem;
}
.search-page ul.search-page__results li {
  list-style: none;
  margin-bottom: 1.875rem;
  border-bottom: 0.0625rem solid #AD841F;
}
.search-page h2 {
  margin-bottom: 0.625rem;
}
.search-page p {
  font-size: 1rem;
  line-height: 1.5;
}

/*
------------
FILTERS
------------
*/
.filter--story-listing,
.filter--news-listing {
  width: 100%;
}

.filter__button--reset {
  display: inline-block;
  vertical-align: middle;
}
.filter__button--reset:after {
  font-family: "FontAwesome";
  content: "\f2d3";
}

.filter__buttons--news-listing .filter__button--reset {
  display: inline-block;
  vertical-align: middle;
}
.filter__buttons--news-listing .filter__button--reset:after {
  content: "\f105";
}

.filter__form {
  background: #F4F4F4;
  max-width: 75rem;
  margin: 0 auto;
  padding: 1.875rem 1.875rem 0.625rem 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.filter__wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 56.3125rem) {
  .filter__wrap {
    width: calc(100% - 400px);
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.filter__wrap input {
  width: 100%;
  margin-bottom: 1.25rem;
}
@media (min-width: 40.0625rem) {
  .filter__wrap input {
    width: calc(100% - 160px);
  }
}
.filter__wrap label {
  width: 100%;
  margin-bottom: 0.625rem;
}
@media (min-width: 40.0625rem) {
  .filter__wrap label {
    width: 10rem;
  }
}
.filter__wrap .filter__label--checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: 100%;
}

.filter__label {
  font-size: 1.5rem;
  font-family: "proxima-nova", "Arial", sans-serif;
}
.filter__label[for*="--all"] {
  margin-bottom: 0;
}

.filter .filter__checkbox {
  margin-bottom: 0;
}

.filter .filter__form .filter__checkboxes li:not(:first-child) {
  margin-bottom: 0.25rem !important;
}

.filter__form .filter__buttons {
  max-width: 25rem;
}
@media (min-width: 56.25rem) {
  .filter__form .filter__buttons {
    padding-left: 1.25rem;
  }
}
.filter__form .filter__button--submit {
  display: inline-block;
  vertical-align: middle;
}
.filter__form .filter__button--submit:after {
  font-family: "FontAwesome";
  content: "\f105";
}
.filter__form .filter__button--submit,
.filter__form .filter-toggle__button {
  max-height: 2.5rem;
  padding-top: 0.6875rem;
  position: relative;
}
.filter__form .filter__button--submit:after,
.filter__form .filter-toggle__button:after {
  right: 1.25rem;
  position: absolute;
}
@media (max-width: 48rem) {
  .filter__form .filter__button--submit:after,
  .filter__form .filter-toggle__button:after {
    right: 0.5rem;
  }
}
.filter__form .filter__button--reset {
  padding: 0;
  font-family: "proxima-nova", "Arial", sans-serif;
  padding-left: 1.5625rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.filter__form .filter__button--reset:after {
  margin-left: 0.625rem;
}
.filter__form .filter-toggle__button {
  background: #fff;
  border: 0.0625rem solid #EFD38E;
  color: #AD841F;
}
.filter__form .filter-toggle__button:hover {
  color: #fff;
  background: #525252;
  border-color: #525252;
}
.filter__form .filter-toggle__button:after {
  font-family: "FontAwesome";
  content: "\f107";
  margin-left: 0.625rem;
}

.section--tuition-tab-upper {
  background: #F4F4F4;
}

.tab-nav {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.tab-nav__tab {
  list-style: none;
  margin: 0;
}

.tabs__tabs-container,
.tab-nav {
  background: #d8d8d8;
  height: 2.5rem;
}
@media (min-width: 40.0625rem) {
  .tabs__tabs-container,
  .tab-nav {
    height: 3.75rem;
  }
}
.tabs__tabs-container .btn,
.tabs__tabs-container .tab-nav__link,
.tab-nav .btn,
.tab-nav .tab-nav__link {
  color: #525252;
  background: none;
  margin-bottom: 0;
  border-radius: 0;
  font-size: 1.1875rem;
  text-transform: none;
  padding: 0.71875rem 1.25rem;
  cursor: pointer;
}
@media (min-width: 40.0625rem) {
  .tabs__tabs-container .btn,
  .tabs__tabs-container .tab-nav__link,
  .tab-nav .btn,
  .tab-nav .tab-nav__link {
    font-size: 1.5rem;
    padding: 1.34375rem 2.5rem;
  }
}
.tabs__tabs-container input[checked=checked] + .btn,
.tabs__tabs-container .tab-nav__link--active,
.tab-nav input[checked=checked] + .btn,
.tab-nav .tab-nav__link--active {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: #AD841F;
  padding: 1.03125rem 1.25rem;
  color: #fff;
}
@media (min-width: 40.0625rem) {
  .tabs__tabs-container input[checked=checked] + .btn,
  .tabs__tabs-container .tab-nav__link--active,
  .tab-nav input[checked=checked] + .btn,
  .tab-nav .tab-nav__link--active {
    padding: 1.65625rem 2.5rem;
  }
}

.tab-nav {
  height: 1.875rem;
  margin-top: 1.25rem;
}
@media (min-width: 40.0625rem) {
  .tab-nav {
    height: 3.125rem;
    margin-top: 2.5rem;
  }
}
.tab-nav .tab-nav__link {
  font-size: 1rem;
  padding: 0.5rem 0.9375rem;
}
@media (min-width: 40.0625rem) {
  .tab-nav .tab-nav__link {
    font-size: 1.3125rem;
    padding: 1.0625rem 2.1875rem;
  }
}
.tab-nav .tab-nav__link--active {
  padding: 0.75rem 0.9375rem;
}
@media (min-width: 40.0625rem) {
  .tab-nav .tab-nav__link--active {
    padding: 1.3125rem 2.1875rem;
  }
}

.filter__alphabet {
  max-width: 75rem;
  margin: 0 auto;
  background: #F4F4F4;
  padding: 0 1.875rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 40.0625rem) {
  .filter__alphabet {
    margin-bottom: 5rem;
  }
}
.filter__alphabet ul {
  padding: 2.1875rem 0 1.875rem;
  margin: 0;
  border-top: 0.0625rem solid #EFD38E;
  line-height: 1.5;
  font-weight: 700;
  color: #9b9b9b;
}
.filter__alphabet li {
  list-style: none;
  display: inline-block;
  font-size: 1.625rem;
}
@media (min-width: 48.0625rem) {
  .filter__alphabet li {
    font-size: 1.375rem;
  }
}
.filter__alphabet li:not(:last-child) {
  margin-right: 1.0625rem;
}

.filter__results-alphabet-anchor--row {
  margin-bottom: 0.3125rem;
}
.filter__results-alphabet-anchor--row h2 {
  color: #AD841F;
}

.filter__results-alphabet-anchor--row.row, .filter__results-alphabet-anchor--row.padded-row {
  margin-left: 0;
  margin-right: 0;
}

.filter--faculty-listing,
.filter--staff-listing {
  width: 100%;
}
.filter--faculty-listing .medium-row-reverse,
.filter--staff-listing .medium-row-reverse {
  margin: 0;
}

.filter__form--faculty-listing,
.filter__form--staff-listing,
.filter__form--news-listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.filter__form--faculty-listing .filter__wrap--search,
.filter__form--faculty-listing .filter__wrap--school,
.filter__form--faculty-listing .filter__wrap--office,
.filter__form--faculty-listing .filter__wrap--category,
.filter__form--staff-listing .filter__wrap--search,
.filter__form--staff-listing .filter__wrap--school,
.filter__form--staff-listing .filter__wrap--office,
.filter__form--staff-listing .filter__wrap--category,
.filter__form--news-listing .filter__wrap--search,
.filter__form--news-listing .filter__wrap--school,
.filter__form--news-listing .filter__wrap--office,
.filter__form--news-listing .filter__wrap--category {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media (min-width: 40.0625rem) {
  .filter__form--faculty-listing .filter__wrap--search,
  .filter__form--faculty-listing .filter__wrap--school,
  .filter__form--faculty-listing .filter__wrap--office,
  .filter__form--faculty-listing .filter__wrap--category,
  .filter__form--staff-listing .filter__wrap--search,
  .filter__form--staff-listing .filter__wrap--school,
  .filter__form--staff-listing .filter__wrap--office,
  .filter__form--staff-listing .filter__wrap--category,
  .filter__form--news-listing .filter__wrap--search,
  .filter__form--news-listing .filter__wrap--school,
  .filter__form--news-listing .filter__wrap--office,
  .filter__form--news-listing .filter__wrap--category {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
.filter__form--faculty-listing .filter__wrap--search input, .filter__form--faculty-listing .filter__wrap--search select,
.filter__form--faculty-listing .filter__wrap--school input,
.filter__form--faculty-listing .filter__wrap--school select,
.filter__form--faculty-listing .filter__wrap--office input,
.filter__form--faculty-listing .filter__wrap--office select,
.filter__form--faculty-listing .filter__wrap--category input,
.filter__form--faculty-listing .filter__wrap--category select,
.filter__form--staff-listing .filter__wrap--search input,
.filter__form--staff-listing .filter__wrap--search select,
.filter__form--staff-listing .filter__wrap--school input,
.filter__form--staff-listing .filter__wrap--school select,
.filter__form--staff-listing .filter__wrap--office input,
.filter__form--staff-listing .filter__wrap--office select,
.filter__form--staff-listing .filter__wrap--category input,
.filter__form--staff-listing .filter__wrap--category select,
.filter__form--news-listing .filter__wrap--search input,
.filter__form--news-listing .filter__wrap--search select,
.filter__form--news-listing .filter__wrap--school input,
.filter__form--news-listing .filter__wrap--school select,
.filter__form--news-listing .filter__wrap--office input,
.filter__form--news-listing .filter__wrap--office select,
.filter__form--news-listing .filter__wrap--category input,
.filter__form--news-listing .filter__wrap--category select {
  width: 100%;
}
@media (min-width: 40.0625rem) {
  .filter__form--faculty-listing .filter__wrap--search,
  .filter__form--staff-listing .filter__wrap--search,
  .filter__form--news-listing .filter__wrap--search {
    padding-right: 3.75rem;
  }
}
.filter__form--faculty-listing .filter__wrap,
.filter__form--staff-listing .filter__wrap,
.filter__form--news-listing .filter__wrap {
  display: block;
  margin-bottom: 1.875rem;
}
.filter__form--faculty-listing .filter__wrap label,
.filter__form--staff-listing .filter__wrap label,
.filter__form--news-listing .filter__wrap label {
  font-weight: 700;
  line-height: 1;
  width: 100%;
  font-size: 1.125rem;
  display: block;
}
@media (max-width: 40rem) {
  .filter__form--faculty-listing .filter__wrap label,
  .filter__form--staff-listing .filter__wrap label,
  .filter__form--news-listing .filter__wrap label {
    font-size: 0.875rem;
  }
}
.filter__form--faculty-listing .filter__wrap input,
.filter__form--staff-listing .filter__wrap input,
.filter__form--news-listing .filter__wrap input {
  margin-bottom: 0;
}
.filter__form--faculty-listing .filter__buttons,
.filter__form--staff-listing .filter__buttons,
.filter__form--news-listing .filter__buttons {
  max-width: none;
  width: 100%;
  padding-left: 0;
}

#form-story-listing {
  margin-bottom: 2.5rem;
  width: 100%;
}
@media (min-width: 40.0625rem) {
  #form-story-listing {
    margin-bottom: 5rem;
  }
}
#form-story-listing .filter-toggle {
  width: 100%;
}
#form-story-listing .filter__checkbox {
  width: 1rem;
}
#form-story-listing .filter__label--checkbox {
  font-size: 0.875rem;
}
#form-story-listing fieldset {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
}
#form-story-listing ul {
  margin: 0;
  padding: 0;
  line-height: 1.0625rem;
}
#form-story-listing .filter__button--submit {
  background-color: #AD841F;
}
#form-story-listing li {
  list-style: none;
  margin-bottom: 0.8125rem;
}
#form-story-listing li:first-child {
  width: 100%;
  margin-bottom: 1.625rem;
  padding-bottom: 1.625rem;
  border-bottom: 0.0625rem solid #D3D3D3;
}
#form-story-listing .filter-toggle__content {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#form-story-listing .filter__buttons--story-listing {
  margin-bottom: 0.5rem;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
}
#form-story-listing .filter__wrap--story-type {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin-bottom: 1.5625rem;
}
@media (min-width: 40.0625rem) {
  #form-story-listing .filter__wrap--story-type {
    max-width: 33.333333%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
            flex: 0 0 33.333333%;
    padding-right: 1.25rem;
    margin-bottom: 0;
  }
}
#form-story-listing .filter__wrap--story-topic {
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media (min-width: 40.0625rem) {
  #form-story-listing .filter__wrap--story-topic {
    max-width: 66.66666%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666%;
            flex: 0 0 66.66666%;
    padding-left: 1.25rem;
  }
}
@media (min-width: 40.0625rem) {
  #form-story-listing .filter__wrap--story-topic li:not(:first-child) {
    width: 100%;
    max-width: 18.75rem;
    display: inline-block;
    margin-right: 1.25rem;
  }
}

.filter-toggle__content {
  display: none;
}

.filter-toggle--open .filter-toggle__button:after {
  content: "\f106";
}
.filter-toggle--open .filter-toggle__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 48rem) {
  .filter__alphabet--undergrad-listing {
    margin-bottom: 1.25rem;
  }
}

.filter--undergrad-listing,
.filter--grad-listing {
  width: 100%;
}
.filter--undergrad-listing .filter__wrap,
.filter--grad-listing .filter__wrap {
  width: 100%;
}
.filter--undergrad-listing .filter-toggle__content,
.filter--grad-listing .filter-toggle__content {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.filter--undergrad-listing .filter__form--undergrad-listing .filter-toggle,
.filter--undergrad-listing .filter__form--grad-listing .filter-toggle,
.filter--grad-listing .filter__form--undergrad-listing .filter-toggle,
.filter--grad-listing .filter__form--grad-listing .filter-toggle {
  width: 100%;
}
.filter--undergrad-listing .filter__form--undergrad-listing .filter__checkbox,
.filter--undergrad-listing .filter__form--grad-listing .filter__checkbox,
.filter--grad-listing .filter__form--undergrad-listing .filter__checkbox,
.filter--grad-listing .filter__form--grad-listing .filter__checkbox {
  width: 1rem;
}
.filter--undergrad-listing .filter__form--undergrad-listing .filter__label--checkbox,
.filter--undergrad-listing .filter__form--grad-listing .filter__label--checkbox,
.filter--grad-listing .filter__form--undergrad-listing .filter__label--checkbox,
.filter--grad-listing .filter__form--grad-listing .filter__label--checkbox {
  font-size: 0.875rem;
}
.filter--undergrad-listing .filter__form--undergrad-listing fieldset,
.filter--undergrad-listing .filter__form--grad-listing fieldset,
.filter--grad-listing .filter__form--undergrad-listing fieldset,
.filter--grad-listing .filter__form--grad-listing fieldset {
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
}
.filter--undergrad-listing .filter__form--undergrad-listing ul,
.filter--undergrad-listing .filter__form--grad-listing ul,
.filter--grad-listing .filter__form--undergrad-listing ul,
.filter--grad-listing .filter__form--grad-listing ul {
  margin: 0;
  padding: 0;
  line-height: 1.0625rem;
}
.filter--undergrad-listing .filter__form--undergrad-listing .filter__button--submit,
.filter--undergrad-listing .filter__form--grad-listing .filter__button--submit,
.filter--grad-listing .filter__form--undergrad-listing .filter__button--submit,
.filter--grad-listing .filter__form--grad-listing .filter__button--submit {
  background-color: #AD841F;
}
.filter--undergrad-listing .filter__form--undergrad-listing li,
.filter--undergrad-listing .filter__form--grad-listing li,
.filter--grad-listing .filter__form--undergrad-listing li,
.filter--grad-listing .filter__form--grad-listing li {
  list-style: none;
  margin-bottom: 0.8125rem;
}
.filter--undergrad-listing .filter__form--undergrad-listing li:first-child,
.filter--undergrad-listing .filter__form--grad-listing li:first-child,
.filter--grad-listing .filter__form--undergrad-listing li:first-child,
.filter--grad-listing .filter__form--grad-listing li:first-child {
  width: 100%;
  margin-bottom: 1.625rem;
  padding-bottom: 1.625rem;
  border-bottom: 0.0625rem solid #D3D3D3;
}
.filter--undergrad-listing .filter__form--undergrad-listing .filter__buttons,
.filter--undergrad-listing .filter__form--undergrad-listing .filter__wrap--school,
.filter--undergrad-listing .filter__form--grad-listing .filter__buttons,
.filter--undergrad-listing .filter__form--grad-listing .filter__wrap--school,
.filter--grad-listing .filter__form--undergrad-listing .filter__buttons,
.filter--grad-listing .filter__form--undergrad-listing .filter__wrap--school,
.filter--grad-listing .filter__form--grad-listing .filter__buttons,
.filter--grad-listing .filter__form--grad-listing .filter__wrap--school {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.filter--undergrad-listing .filter__form--undergrad-listing .filter__buttons,
.filter--undergrad-listing .filter__form--grad-listing .filter__buttons,
.filter--grad-listing .filter__form--undergrad-listing .filter__buttons,
.filter--grad-listing .filter__form--grad-listing .filter__buttons {
  padding-left: 0;
  margin-top: 0.625rem;
  margin-bottom: 0.9375rem;
}
.filter--undergrad-listing .filter__form--undergrad-listing .filter__wrap--school,
.filter--undergrad-listing .filter__form--grad-listing .filter__wrap--school,
.filter--grad-listing .filter__form--undergrad-listing .filter__wrap--school,
.filter--grad-listing .filter__form--grad-listing .filter__wrap--school {
  max-width: 47.5rem;
  padding-bottom: 1.25rem;
}
@media (min-width: 40.0625rem) {
  .filter--undergrad-listing .filter__form--undergrad-listing .filter__wrap--school li:not(:first-child),
  .filter--undergrad-listing .filter__form--grad-listing .filter__wrap--school li:not(:first-child),
  .filter--grad-listing .filter__form--undergrad-listing .filter__wrap--school li:not(:first-child),
  .filter--grad-listing .filter__form--grad-listing .filter__wrap--school li:not(:first-child) {
    width: 100%;
    max-width: 21.875rem;
    display: inline-block;
    margin-right: 1.25rem;
  }
}

/*
--------------------
OBJECT FIT POLYFILL
--------------------
*/
.compat-object-fit {
  background-size: cover;
  background-position: center center;
}
.compat-object-fit img {
  opacity: 0;
}

/* ----------------------------
  OHO STAT BLOCK
------------------------------- */
.section--stat-block {
  text-align: center;
}
.section--stat-block .section__lead-in__sub-title {
  font-weight: 100;
  font-family: "proxima-nova", "Arial", sans-serif;
}

.oho-stat-block {
  padding: 20px 0 50px;
  text-align: center;
  width: 100%;
  float: left;
  /*
    .slick-slide {
      padding: 0 45px;

      @media screen and (min-width: 40em) and (max-width: 63.99875em) {
        padding: 0 20px;
      }

      @media screen and (max-width: 39.99875em) {
        padding: 0 25px;
      }

    }

    .slick-list {
      padding: 0px !important; // overwrite slick js assigned styles
      margin: 0 50px;
      border-left: 1px solid #cccccc;
      border-right: 1px solid #cccccc;

      @media screen and (max-width: 39.99875em) {
        border: none;
      }

      h2 {
        display: none;
      }

      .slick-slide {
        min-height: 160px;
      }

    }

    .slick-center {
      border-left: 1px solid #cccccc;
      border-right: 1px solid #cccccc;

      @media screen and (max-width: 39.99875em) {
        border: none;
      }

    }

    .slick-track .slick-active:first-child{
      background-color: blue;
    }

    .field-name-field-hc-statistic-link a {
      margin-top: 20px;
      background-position: 93% center;
      transition: .2s all ease;
      margin-top: 20px;
      font-size: 12px;
      padding: 8px 45px 8px 35px;
      background-color: #333333;
      color: white;
      text-transform: uppercase;
      background-image: url(../img/btn-arrow-white.png);
      background-repeat: no-repeat;  
      display: inline-block;

      &:hover{
        transition: .2s all ease;
        background-position: 95%;
      }
    }

   .slick-prev {
     left: -8px;
     @media screen {
       left: 8px;
     } 
   }

   .slick-next {
      right: -8px;

      @media screen {
       right: 8px;
      }
    }
  */
}
@media screen and (max-width: 39.99875em) {
  .oho-stat-block .oho-stat {
    padding: 20px 0;
  }
  .oho-stat-block .oho-stat:first-child {
    padding-top: 0px;
  }
  .oho-stat-block .oho-stat:last-child {
    padding-bottom: 0px;
  }
}
@media screen and (min-width: 40em) {
  .oho-stat-block .oho-stat {
    border-left: 1px solid #ccc;
  }
  .oho-stat-block .oho-stat:last-child {
    border-right: 1px solid #ccc;
  }
}
.oho-stat-block .oho-stat__title {
  font-size: 24px;
}
.oho-stat-block .oho-stat__value {
  font-size: 72px;
  line-height: 1;
  padding: 10px 0;
}
@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .oho-stat-block .oho-stat__value {
    font-size: 55px;
  }
}
.oho-stat-block .oho-stat__desc {
  font-size: 24px;
  line-height: 1.2;
}
@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .oho-stat-block .oho-stat__desc {
    font-size: 20px;
  }
}
.oho-stat-block .oho-stat__desc p {
  margin: 0;
  line-height: 1.4;
}

/*
---------------
CHECKERBOARD
---------------
*/
.section--basic-page--checkerboard .checkerboard {
  margin-bottom: 1.25rem;
}

.checkerboard {
  position: relative;
  overflow: hidden;
}
@media (min-width: 48.0625rem) {
  .checkerboard:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: 40%;
    width: 200vh;
    top: 0;
    background: #F4F4F4;
    height: 100%;
  }
}
.checkerboard .small-12:not(.checkerboard__content-column) {
  min-height: 50vh;
}
@media (max-width: 48rem) {
  .checkerboard .small-12:not(.checkerboard__content-column) {
    min-height: 0;
    max-width: 100%;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
@media (max-width: 40rem) {
  .checkerboard p {
    font-size: 1rem;
  }
}
.checkerboard .row, .checkerboard .padded-row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100rem;
  position: relative;
}
.checkerboard__img-column, .checkerboard__content-column {
  position: relative;
  z-index: 2;
}
.checkerboard img {
  max-width: none;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 48.0625rem) {
  .checkerboard img {
    position: absolute;
  }
}
.checkerboard__content-column {
  max-width: 37.5rem;
  padding: 1.875rem 1.25rem;
  background: #F4F4F4;
}
@media (min-width: 48.0625rem) {
  .checkerboard__content-column {
    padding: 0 1.25rem 0 3.75rem;
  }
}
.checkerboard .btn {
  margin-top: 1.25rem;
}
.checkerboard p:last-child {
  margin-bottom: 0;
}
@media (max-width: 48rem) {
  .checkerboard h2 {
    font-size: 1.25rem;
    color: #000;
  }
}
.checkerboard h2, .checkerboard p {
  display: block;
  width: 100%;
}
.checkerboard p {
  font-family: "proxima-nova", "Arial", sans-serif;
  line-height: 1.55;
}
.checkerboard:nth-child(even):after {
  left: auto;
  right: 40%;
}
@media (min-width: 48.0625rem) {
  .checkerboard:nth-child(even) .row, .checkerboard:nth-child(even) .padded-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media (min-width: 48.0625rem) {
  .checkerboard:nth-child(even) .checkerboard__content-column {
    padding-right: 3.75rem;
    padding-left: 1.875rem;
  }
}

.checkerboard--alternate-overlap:after {
  display: none;
}
.checkerboard--alternate-overlap .row, .checkerboard--alternate-overlap .padded-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.checkerboard--alternate-overlap:nth-child(odd) {
  right: auto;
  left: auto;
}
.checkerboard--alternate-overlap .btn {
  margin-bottom: 0;
}
.checkerboard--alternate-overlap .compat-object-fit-container {
  min-height: 25rem;
}
@media (min-width: 48.0625rem) {
  .checkerboard--alternate-overlap__img-column {
    max-width: calc(100% - 415px);
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 415px);
            flex: 1 1 calc(100% - 415px);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
  }
}
.checkerboard--alternate-overlap__content-column {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  padding: 0 1.875rem;
}
@media (min-width: 48.0625rem) {
  .checkerboard--alternate-overlap__content-column {
    max-width: 25.9375rem;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 415px;
            flex: 1 1 415px;
    padding: 4.6875rem 0;
  }
}
.checkerboard--alternate-overlap__content-column__color-extend {
  z-index: 3;
  position: relative;
  background: #fff;
  padding: 1.625rem 1.875rem;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
@media (min-width: 48.0625rem) {
  .checkerboard--alternate-overlap__content-column__color-extend {
    -webkit-transform: translateX(-60px);
            transform: translateX(-60px);
    padding: 3.75rem 1.25rem 3.75rem 3.75rem;
  }
}

@media (max-width: 50.25rem) {
  .section--basic-page .checkerboard:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
.section--basic-page .checkerboard p:last-child,
.section--basic-page .checkerboard p .btn:last-child {
  margin-bottom: 0;
}
.section--basic-page .checkerboard p .btn {
  margin: 0;
}
.section--basic-page .checkerboard:after {
  display: none;
}
.section--basic-page .checkerboard .row, .section--basic-page .checkerboard .padded-row {
  background: #F4F4F4;
  margin: 0;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.section--basic-page .checkerboard__img-column {
  min-height: 0;
  max-width: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  width: 100%;
}
@media (min-width: 50.3125rem) {
  .section--basic-page .checkerboard__img-column {
    max-width: 20rem;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
}
.section--basic-page .checkerboard__img-column img {
  position: relative;
}
@media (min-width: 52.8125rem) {
  .section--basic-page .checkerboard__img-column img {
    position: absolute;
  }
}
.section--basic-page .checkerboard .small-12 {
  min-height: 0;
}
.section--basic-page .checkerboard:nth-child(odd) .checkerboard__content-column,
.section--basic-page .checkerboard .checkerboard__content-column {
  padding: 2.5rem 1.25rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  max-width: none;
}
@media (min-width: 50.3125rem) {
  .section--basic-page .checkerboard:nth-child(odd) .checkerboard__content-column,
  .section--basic-page .checkerboard .checkerboard__content-column {
    padding: 2.5rem;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 320px);
            flex: 1 1 calc(100% - 320px);
    max-width: calc(100% - 320px);
  }
}

.tooltip-box {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 10;
  max-width: 18.75rem;
}

.tooltip-box--active {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.tooltip-box__container {
  border: 1px solid #581483;
  border-top: 20px solid #581483;
  position: relative;
}
.tooltip-box__container i {
  position: absolute;
  color: #fff;
  right: 4px;
  top: -19px;
  cursor: pointer;
}
.tooltip-box__container .tooltip-box__content {
  padding: 15px;
  background: #fff;
  display: block;
  font-size: 15px;
}

.tooltip-box-toggle:after {
  font-family: "fontAwesome";
  content: "\f05a";
  color: #999;
  padding-left: 10px;
  cursor: pointer;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.tooltip-box-toggle--active:after {
  color: #581483;
}

#back-to-top {
  width: 100%;
  text-align: center;
  margin-bottom: 45px;
}
#back-to-top a:hover {
  text-decoration: none;
}
#back-to-top span {
  display: block;
}

.has-tooltip-box {
  color: #000;
}

/*
--------------------
ACCORDION DROPDOWN
--------------------
*/
.accordion-drop-down {
  margin-bottom: 1.25rem;
  clear: both;
}

.accordion-drop-down__toggle {
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: block;
  width: 100%;
  text-align: left;
}

.accordion-drop-down__toggle h3 {
  margin: 0;
  background: #9162AF;
  color: #fff;
  position: relative;
  font-weight: 400;
  cursor: pointer;
  padding: 0.6875rem 2.5rem 0.625rem 1.25rem;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
.accordion-drop-down__toggle h3:after {
  content: url("../img/accordion-plus.svg");
  font-family: "FontAwesome";
  position: absolute;
  top: 0;
  bottom: 0;
  height: 1.3125rem;
  width: 1.25rem;
  right: 1.25rem;
  margin: auto;
  display: block;
  line-height: 0;
}

.accordion-drop-down__toggle:hover h3 {
  background: #581483;
}
.accordion-drop-down__toggle:hover h3:after {
  color: #6f737d;
}

.accordion-drop-down__toggled-content {
  padding: 1.25rem;
  background: #fff;
  font-family: "proxima-nova", "Arial", sans-serif;
  line-height: 1.5;
  display: none;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
}
.accordion-drop-down__toggled-content::before, .accordion-drop-down__toggled-content::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.accordion-drop-down__toggled-content::after {
  clear: both;
}
.accordion-drop-down__toggled-content a {
  font-family: "proxima-nova", "Arial", sans-serif;
}

.accordion-drop-down__toggle--active h3:after {
  content: url("../img/accordion-minus.svg");
  height: 0.25rem;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.accordion-drop-down__toggle--active .accordion-drop-down__toggled-content {
  display: block;
}

.section--basic-page .accordion-drop-down__toggled-content {
  background: #F4F4F4;
  -webkit-box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0 1px 3px 0px rgba(0, 0, 0, 0.5);
}

/*
-------------------
PAGINATION
-------------------
*/
.pagination,
.filter__pagination {
  padding: 1.875rem 1.25rem 3.75rem;
  text-align: center;
}
@media (min-width: 40.0625rem) {
  .pagination,
  .filter__pagination {
    padding: 3.75rem 1.25rem;
  }
}
.pagination ul,
.filter__pagination ul {
  margin: 0;
  padding: 0;
}
.pagination li,
.filter__pagination li {
  margin-right: 1.25rem;
  list-style-type: none;
  display: inline-block;
  vertical-align: top;
}
.pagination a,
.filter__pagination a {
  font-family: "proxima-nova", "Arial", sans-serif;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 1rem;
}
.pagination a:before, .pagination a:after,
.filter__pagination a:before,
.filter__pagination a:after {
  font-family: "FontAwesome";
}
.pagination__numbers,
.filter__pagination__numbers {
  margin: 0;
  display: inline-block;
}

ul.pagination__numbers {
  border-right: 0.0625rem solid #C9CACC;
  border-left: 0.0625rem solid #C9CACC;
}

.filter__pagination-numbers--next {
  border-left: 0.0625rem solid #C9CACC;
  padding-left: 1.25rem;
}
.filter__pagination-numbers--next:after {
  content: "\f105";
  margin-left: 0.375rem;
}

.filter__pagination-numbers--prev {
  border-right: 0.0625rem solid #C9CACC;
  padding-right: 1.25rem;
}
.filter__pagination-numbers--prev:before {
  content: "\f104";
  margin-right: 0.375rem;
}

.filter__pagination-numbers--last {
  padding-left: 1.25rem;
  border-left: 0.0625rem solid #C9CACC;
}
.filter__pagination-numbers--last:after {
  content: "\f101";
  margin-left: 0.625rem;
}

.filter__pagination-numbers--first {
  padding-right: 1.25rem;
  border-right: 0.0625rem solid #C9CACC;
}
.filter__pagination-numbers--first:before {
  content: "\f100";
  margin-right: 0.625rem;
}

.filter__pagination-numbers--current {
  font-weight: 700;
}

/*
--------------------
HERO IMAGE SECTION -- GLOBAL
--------------------
*/
.hero .featured-media__video__item {
  margin: 0;
}

@media (min-width: 56.3125rem) {
  .home .home-hero {
    margin-top: -11.3125rem;
  }
}
.home .home-hero .home-hero__background {
  position: fixed;
}

.hero,
.home-hero,
.landing-hero {
  min-height: 25rem;
}

.home-hero {
  height: 250px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  display: table;
  width: 100%;
}
@media screen and (min-width: 40em) {
  .home-hero {
    height: 420px;
    margin-top: -1px;
  }
}
@media screen and (min-width: 64em) {
  .home-hero {
    height: 740px;
    background-attachment: fixed;
  }
}
@media (min-width: 1475px) {
  .home-hero {
    background-size: 100% auto;
  }
}

.home-hero__content {
  text-align: center;
  max-width: 995px;
  margin: 0 auto;
  padding: 0 20px;
  display: table-cell;
  vertical-align: middle;
}
.home-hero__content span {
  color: white;
  display: block;
}

.home-hero__content__title {
  font-size: 72px;
  font-weight: bold;
  line-height: 1.1;
  color: #fff;
  margin: 0;
  margin: 0 auto;
  max-width: 260px;
}
@media screen and (min-width: 40em) {
  .home-hero__content__title {
    max-width: 430px;
  }
}
@media screen and (min-width: 64em) {
  .home-hero__content__title {
    font-size: 140px;
    max-width: 780px;
  }
}
@media screen and (max-width: 39.99875em) {
  .home-hero__content__title {
    font-size: 44px;
  }
}

.home-hero__content__description {
  font-weight: 100;
  font-size: 18px;
  max-width: 420px;
  margin: 20px auto auto;
}
@media screen and (min-width: 64em) {
  .home-hero__content__description {
    max-width: 860px;
    font-size: 30px;
  }
}

.hero__controls {
  z-index: 3000;
  position: absolute !important;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: none;
}
.hero__controls__control-item {
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  height: 3.375rem;
  width: 3.375rem;
  background-position: center;
  display: block;
  position: absolute;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.hero__controls__control-item--play {
  background: url("../img/play.svg");
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 3;
}
.hero__controls__control-item--play.pause {
  opacity: 0;
  z-index: 1;
}
.hero__controls__control-item--pause {
  opacity: 0;
  height: 2.5rem;
  width: 2.5rem;
  background: rgba(0, 0, 0, 0.73);
  color: #fff;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
}
.hero__controls__control-item--pause.play {
  opacity: 1;
}

.hero:hover .hero__controls__control-item--pause.play {
  opacity: 1;
}

.landing-hero {
  max-height: 50vh;
}

.featured-media__video {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.featured-media__video .featured-media__caption {
  display: block;
  margin-top: 0.5625rem;
}
.featured-media__video #iframe_bgndVideo {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
}
.featured-media__video .featured-media__video__item {
  margin: 0;
}

.mb_YTPBar,
.mb_YTPBar span.mb_YTPUrl a {
  color: #fff;
}

@font-face {
  font-family: ytpregular;
  src: url(font/ytp-regular.eot);
}
@font-face {
  font-family: ytpregular;
  src: url(data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAA5sABEAAAAAFCAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAABgAAAABwAAAAcZ9iuNUdERUYAAAGcAAAAHQAAACAAdAAET1MvMgAAAbwAAABJAAAAYHUMUrFjbWFwAAACCAAAAKkAAAGKn5XycWN2dCAAAAK0AAAANgAAADYNLQohZnBnbQAAAuwAAAGxAAACZVO0L6dnYXNwAAAEoAAAAAgAAAAIAAAAEGdseWYAAASoAAAGVQAAB4jz86dSaGVhZAAACwAAAAAzAAAANgbKONpoaGVhAAALNAAAACAAAAAkESQLXGhtdHgAAAtUAAAAVAAAARxOmwVwbG9jYQAAC6gAAAAjAAAAkFoEXRRtYXhwAAALzAAAACAAAAAgAWoB625hbWUAAAvsAAAA+wAAAeok3Eb+cG9zdAAADOgAAADAAAABN99tv1lwcmVwAAANqAAAALkAAAFY3I6ikndlYmYAAA5kAAAABgAAAAbHMlGnAAAAAQAAAADMPaLPAAAAAM3Nk7QAAAAAzc13sXjaY2BkYGDgA2IJBhBgYmAEQjcgZgHzGAAHTAB5AAAAeNpjYGbZwDiBgZWBhdWY5SwDA8MsCM10liGNKQ3IB0rBASMDEgj1DvdjcGDgfcDAlvYPqJJVldEZpoZVkuUZkFJgYAQAUUULewAAAHjaY2BgYGaAYBkGRgYQaAHyGMF8FoYMIC3GIAAUYQOyeBkUGKIYqhgWKHAp6CvEP2D4/x+sAyTuyJAIFGeAizP+//r/8f/D//f+n/HA8oHo/WcKblDzsQBGoOkwSUYmIMGErgDiRLyAhZWNnYOTi5uHl49fQFBIWERUTFxCUkpaRhYiLyevoKikrKKqpq6hqaWto6unb2BoZGxiambOQF1gQZYuAIQnH4IAAAAAAAAAAAABegEnAHEAswC9AOAA5QD+ARcBIwBdAHIBtgBcAGAAZgByAI8AogErAbIAUwBEBREAAHjaXVG7TltBEN0NDwOBxNggOdoUs5mQxnuhBQnE1Y1iZDuF5QhpN3KRi3EBH0CBRA3arxmgoaRImwYhF0h8Qj4hEjNriKI0Ozuzc86ZM0vKkap36WvPU+ckkMLdBs02/U5ItbMA96Tr642MtIMHWmxm9Mp1+/4LBpvRlDtqAOU9bykPGU07gVq0p/7R/AqG+/wf8zsYtDTT9NQ6CekhBOabcUuD7xnNussP+oLV4WIwMKSYpuIuP6ZS/rc052rLsLWR0byDMxH5yTRAU2ttBJr+1CHV83EUS5DLprE2mJiy/iQTwYXJdFVTtcz42sFdsrPoYIMqzYEH2MNWeQweDg8mFNK3JMosDRH2YqvECBGTHAo55dzJ/qRA+UgSxrxJSjvjhrUGxpHXwKA2T7P/PJtNbW8dwvhZHMF3vxlLOvjIhtoYEWI7YimACURCRlX5hhrPvSwG5FL7z0CUgOXxj3+dCLTu2EQ8l7V1DjFWCHp+29zyy4q7VrnOi0J3b6pqqNIpzftezr7HA54eC8NBY8Gbz/v+SoH6PCyuNGgOBEN6N3r/orXqiKu8Fz6yJ9O/sVoAAAAAAQAB//8AD3jaTZVrbBxXFcfvufNe72Nmdx77tmfHO2N76117784OTr154YAbR7RQuUQhttoSuXZKFQVKKYqgiFJAgkpIkVClIn8opSomjXY3VHHTFldEIYpay1hR+ID4Bha27FoIEQGpd8Idu4lY7c6eOfee//2f3+zeizAaQwif4iYRgwRUbgGqjLYFNvVxtcVzfxltM5iGqMUEaS5ItwU+vTPahiBPFFMpmoo5hnv8XnjFn+Um7/xmjF1GCLHoPf+fgsUVEYcSKIcGkYbaWYxKLZ3bgGa50qpACQ0NeyYoYILaDTqpurUK2FZBUYlJY8ukEc0egLpbo+kY8O/BQcx2dvwP2Fh6/Q+Gl19fyroubHmer7rpjHllPZ/NKB+tp2/4/TzxSx0zo/74uUY29vJZOEHIfng4lzz7cjyXzn/jJwqCwCOLdj2iPSP3F/hUAHF3v+Cviee5DIqhJDLRACLoPGpHECq1M7Sd5iDZ/W6zQW8mu9Ecql7SI6xYaiOpnxCydwPNWqWJ/tSSjY1mqtqU5ZYNpWal2pJiGy0XSi1bVuKX1Fyh1GuMoJYeUeJvy/GEVbTpfTOjHJRVzUim0tlcwekbKD1QrgR5M97OV8nIyMjQsKPUEKWGNEVFFBwqEs/yHMEVFMM1PIc4FhiWQVxHcxjD0zzXEkgbmHe5G1eA9T955453xd+B9tbpi6vj10+fvj6+evH0Fju7vPDU5szVY8euzmw+tXABv7kEov/v33WOv+v/C8LG9M2xD19/EquzCyuHVuY6R25Obz35+odw4NDKwuzWHAK86q9x21wKYYQkjFeZ3M5f/TUmw6Qo12P+38Wf0zEZpVABlVANfQu1owHXXMD1AdIyQhvNgeou2b1LAuhAkVwyExRps/ppAE230qrTX1MrEVXil5W4qlm9thMAMpR2MtVHAbXMnBJvZ8oVGjdZ5XK6u6cwNExqdNJ9dnm4D+8eIeYeM7hH0b3H9bcQuczdeH75ef+TxTveO/5tuDK2Mrs5d+HmzQtzm7MrbP6ZqxMrrz2+vf34aysTV5+5iN9YhMi51W93Tiz5/wFp+ujy/MntGXx+dfrjqflrO788Ob989MaMP716+Nr8FOpCjbvnw032BUrm82gKfQc10SJaAwwZGINHEUrksaEndI3XCppBavWaU7Nrda/u7QfPsnmBF1ReK4NjCxbkgVRJdW/MdmiyjHkhCgKvGkrNq+uGngPLUDXVioJTcGxONWguENOIYmkq1lQqaDu2q1AqKi6qRh6CN0uqhlkn1WIwt1Z3FTqH6lt2kWLkqZpQ2F1H4D3X1CzFUkCp1R8EVaeKGr3mgXpyd3OKZTcgioMi3qImqA2FaFSYrkHd7BYESnSMdqAx1HNgg/6pG0Bo95RAGehqoNAuaRHR90wGdXyJtkAJ1DxSDVQCfS8ocui+EohqagNjFroniyLAOYbBgvSQxuXxiUSCGQXReJBnjafhbf6xBs8P9ZclLLJdTJfdL3bLRsgd50Nf52P7JIWjInYqFuZhUGErucF0Qj/zNJtPGArDz7EYFi0chvSpw8C/mJRgRVLfgrEf7RvowhyjJ3JPfPlX/h8N/6fZryX7bh/pJsPj4QLX9Ra89NL3QQkljmOqnognU6HcxKkoI/JsaJ8cDcfCqZAMC2cfFeSoHu+WFEmWzIQqx8PVmCThSFqPKqLIsgxJx0QYZt1iocjgfrPbjIoiltkXxzxTlE5FVTL1zb7YmTOSzXGiEBU0ZgHzXexjd9HklDtTc2P7iR4/Wmqk/jGhfZXjZW1bYFVp3y01G+ocrh/K9VST3+05OUsaEnAYGKZRfWIpDQaXT2Ej2/vCl1S5nNe7jHq5eCAlM7rOpFx8PP1Zf/NzCUdkpXjUhHmdfdi/Xv31D6WccPAIDjNMmPnBzC+ErAipZzPf++LkQyGRhTDEpCNkbmLpz8892zmE3+8swq1YODIqf2Z7lO8RdJHn7RS8kpY6r0qhAg7xXIHnhViu+zBDbhcx16UOfGVgaGkoXe6LhwS+h7NgSa+vR7ESZvPyq6VUqN+SC0ZSTPm3oETGoxGIh/p60w3naIyJ/Gywf9CMnnAemR3524hT5DErxOwBhR55COMw3e+u0T0tOEsR0JMx+NBHftD/AJ+D/f7v/TW+9t+P+Bo9e/7vNYz+By6FsKkAAAB42mNgZGBgYGRwbI8IWhzPb/OVQZ6DAQTOni3fCKP/+/x7yrOBNRTI5WBgAokCAG3mDbAAeNpjYGRgYFX9t5eBgeftf5//WTwbGIAiKMAdAJycBph42mN6w+DCwcDAAMIsZ8D0HhBNLIap52D478fBwHQRyvbBpZ7nLYMtKeZjt5OJhxT1TKsYGFhDETTjcSAG0gyPoRgozigIpL0hNEiOBcgFAEBoNC142mNgYNCBwjoccALDBEY9RhsgPIMMmZcRhHtIhkcA9pQspAAAAQAAAEcBVAALAAAAAAACAAEAAgAWAAABAACTAAAAAHjalZCxTgJBFEXPApJoYYgF9VZUSIAFTdDCnmiIgsTKsASQuGiCu0YaCr4OfomKOzsTCHRmMzPn3blz38sCFyzJ4uXOgbKWZY+8KssZLqk7zkp9cJyjSOT4jD9WjvPSt46vKHoFx2txyfGGqnfPO18kyohSGjBjJPqRFmqPmWolWkZ9o0uHZ/EkfTNgTo0KVX017ujRps+TyDqvT7xW9U/UV1Vz9ZryrQn8o8QOL1JsdVA/5IwZpv7f/YsKTW50O1PqpzKNZyw1UnKov2c9dbkD7c1/zdhXFSrNdIz3HbuaJFH1KM9CZyDN3N3SoiFupfP66mbOYAd8k0EGAHjabc05TwJhHITxZ0BBBc/P4IkI7y4sh0dBsosHKiqHeLUiiTE0FH56Xdl/6TS/ZIoZUszzM+ad/3IOSilNmm122GWPfQ4ocEiRI0qUcXj4VKgSUKNOgybHnHDKGSER7Xjjgkuu6HDNDbd0ueOeB3r0GTDkkRFPPPPCK29a0KIyympJy1pRTnmtak3r2tCmtjLjz+/ph5edfU2cc2Fiy/3px4Xpmb5ZMatmYNbMutkwm2Yr0W8nBnOj+OcXVDk0PnjaRc67DoJAEAVQFuT9fqsJCSZ2+w12QkNjrCCx9w+sbSy19DsGK/9Ob3RZujk3k7nzZp8bsbvSkXXoR8Yew9gavN9QNHSUHTFch4oMfuoV0uqGNL4nv25emq3yHzzADwVcwOsFHMCtBWzAWQlYgJ0ImIA1rRmAeRbQAWM6vQD04A9GgXglRBo4Kh+19gJGYDgzBqOnZALGO8kUTLaSGZhWkjmYrSULMA8kS7CYi5ZgKTlQxr/W1F5aAAAAAAFRp8cxAAA=) format("woff"), url(font/ytp-regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
}
.mb_YTPlayer:focus {
  outline: 0;
}

.mbYTP_wrapper {
  display: block;
  -webkit-transform: translateZ(0) translate3d(0, 0, 0);
          transform: translateZ(0) translate3d(0, 0, 0);
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-perspective: 1000;
          perspective: 1000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mb_YTPlayer .loading {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.51);
  text-align: center;
  padding: 2px 4px;
  border-radius: 5px;
  font-family: "Droid Sans", sans-serif;
  -webkit-animation: fade 0.1s infinite alternate;
  animation: fade 0.1s infinite alternate;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.YTPFullscreen {
  display: block !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  margin: 0 !important;
  border: none !important;
  opacity: 1 !important;
}

.mbYTP_wrapper iframe {
  max-width: 4000px !important;
}

.inline_YTPlayer {
  margin-bottom: 20px;
  vertical-align: top;
  position: relative;
  left: 0;
  overflow: hidden;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.5);
}

.inline_YTPlayer img {
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  -webkit-transform: none !important;
          transform: none !important;
}

.mb_YTPBar,
.mb_YTPBar .buttonBar {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  left: 0;
  padding: 5px;
  width: 100%;
}

.mb_YTPBar .ytpicon {
  font-size: 20px;
  font-family: ytpregular;
}

.mb_YTPBar .mb_YTPUrl.ytpicon {
  font-size: 30px;
}

.mb_YTPBar {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  display: block;
  height: 10px;
  background: #333;
  position: fixed;
  bottom: 0;
  text-align: left;
  z-index: 1000;
  font: 14px/16px sans-serif;
  opacity: 0.1;
}

.mb_YTPBar.visible,
.mb_YTPBar:hover {
  opacity: 1;
}

.mb_YTPBar .buttonBar {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background: 0 0;
  font: 12px/14px Calibri;
  position: absolute;
  top: -30px;
  height: 40px;
}

.mb_YTPBar:hover .buttonBar {
  background: rgba(0, 0, 0, 0.4);
}

.mb_YTPBar span {
  display: inline-block;
  font: 16px/20px Calibri, sans-serif;
  position: relative;
  width: 30px;
  height: 25px;
  vertical-align: middle;
}

.mb_YTPBar span.mb_YTPTime {
  width: 130px;
}

.mb_YTPBar span.mb_OnlyYT,
.mb_YTPBar span.mb_YTPUrl {
  position: absolute;
  width: auto;
  display: block;
  top: 6px;
  right: 10px;
  cursor: pointer;
}

.mb_YTPBar span.mb_YTPUrl img {
  width: 60px;
}

.mb_YTPBar span.mb_OnlyYT {
  left: 300px;
  right: auto;
}

.mb_YTPBar span.mb_OnlyYT img {
  width: 25px;
}

.mb_YTPBar .mb_YTPMuteUnmute,
.mb_YTPBar .mb_YTPPlaypause,
.mb_YTPlayer .mb_YTPBar .mb_YTPPlaypause img {
  cursor: pointer;
}

.mb_YTPBar .mb_YTPProgress {
  height: 10px;
  width: 100%;
  background: #222;
  bottom: 0;
  left: 0;
}

.mb_YTPBar .mb_YTPLoaded {
  height: 10px;
  width: 0;
  background: #444;
  left: 0;
}

.mb_YTPBar .mb_YTPseekbar {
  height: 10px;
  width: 0;
  background: #bb110e;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: rgba(82, 82, 82, 0.47) 1px 1px 3px;
          box-shadow: rgba(82, 82, 82, 0.47) 1px 1px 3px;
}

.mb_YTPBar .YTPOverlay {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: "flat";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.YTPOverlay.raster {
  background: url(images/raster.png);
}

.YTPOverlay.raster.retina {
  background: url(images/raster@2x.png);
}

.YTPOverlay.raster-dot {
  background: url(images/raster_dot.png);
}

.YTPOverlay.raster-dot.retina {
  background: url(images/raster_dot@2x.png);
}

.mb_YTPBar .simpleSlider {
  position: relative;
  width: 100px;
  height: 10px;
  border: 1px solid #fff;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 10px;
  cursor: pointer !important;
  border-radius: 3px;
}

.mb_YTPBar.compact .simpleSlider {
  width: 40px;
}

.mb_YTPBar .simpleSlider.muted {
  opacity: 0.3;
}

.mb_YTPBar .level {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mb_YTPBar .level.horizontal {
  height: 100%;
  width: 0;
}

.mb_YTPBar .level.vertical {
  height: auto;
  width: 100%;
}

.landing-hero {
  position: relative;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
  max-height: none;
  height: 47vh;
  overflow: hidden;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 64.0625rem) {
  .landing-hero {
    height: 60vh;
  }
}
.landing-hero .featured-media__video {
  margin: 0;
}
.landing-hero .mbYTP_wrapper {
  z-index: 2 !important;
  position: fixed;
}
.landing-hero .featured-media__caption {
  bottom: 0;
  right: 0;
  border: none;
  margin: 0;
  padding: 0 1.25rem;
  z-index: 2;
  display: block;
  position: relative;
}
@media (min-width: 40.0625rem) {
  .landing-hero .featured-media__caption {
    max-width: 32.5rem;
    position: absolute;
    padding: 0;
    -webkit-transform: none;
            transform: none;
  }
}
.landing-hero p {
  padding: 1.0625rem 2.1875rem 0.8125rem 1.25rem;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  line-height: 1.55;
  margin-bottom: 0;
}
@media (min-width: 40.0625rem) {
  .landing-hero p {
    padding: 1.0625rem 3.4375rem 0.8125rem 1.25rem;
  }
}
.landing-hero p:after {
  content: "\f05a";
  position: absolute;
  right: 1.875rem;
  font-size: 1.25rem;
  height: 1.5rem;
  bottom: 0;
  top: 0;
  margin: auto;
  color: #AD841F;
  font-family: "FontAwesome";
  line-height: 1;
}
@media (min-width: 40.0625rem) {
  .landing-hero p:after {
    font-size: 1.5rem;
    right: 1.25rem;
  }
}
.landing-hero .featured-media__figure {
  min-height: 67vh;
  width: 100%;
  display: block;
}
.landing-hero img {
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  width: 100%;
  height: 47vh;
  -o-object-position: 50% 0;
     object-position: 50% 0;
  min-height: 25rem;
}
@media (min-width: 64.0625rem) {
  .landing-hero img {
    height: 60vh;
  }
}

.no-touchevents .landing-hero .featured-media__figure {
  position: absolute;
}

.hero--click {
  height: auto;
  min-height: 0;
}
.hero--click iframe {
  height: 100% !important;
  margin-top: 0 !important;
}
.hero--click .featured-media__figure {
  position: absolute;
  min-height: 0;
  height: 100%;
  width: 100%;
}

.section--two-column-hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}
@media screen and (min-width: 40em) {
  .section--two-column-hero {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}
.section--two-column-hero h1 {
  margin-top: 0;
  margin-bottom: 1rem;
}

/*
-----------------
CTA FEATURE BOX
-----------------
*/
.section--cta-feature-box {
  margin-bottom: 0;
}

.columns .cta-feature-box {
  margin-bottom: 40px;
}

.cta-feature-box ul {
  padding-left: 0;
  margin-bottom: 0;
}
.cta-feature-box li {
  list-style: none;
}

.cta-feature-box__content__heading {
  margin-top: 10px;
  margin-bottom: 10px;
}

/*
.scroll-to-play-timeline {
  min-height: 20000px;
}
*/
.video-container .scroll-to-play-video {
  position: fixed;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.scroll-to-play__title {
  font-size: 80px;
  text-align: center;
  margin: auto;
  width: 100%;
  top: 0;
  bottom: 0;
  text-transform: uppercase;
  color: #fff;
  background-color: rgba(0, 44, 94, 0.8);
  background-image: url("/assets/img/seal.png");
  background-position: center 37vh;
  background-repeat: no-repeat;
  padding: 50px;
  padding-top: 45vh;
  position: absolute;
}

.scroll-to-play__info-box {
  margin-top: 300px;
  max-width: 33%;
  color: #fff;
  padding: 50px;
  position: fixed;
  z-index: 20;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, opacity 0.8s ease;
  transition: transform 0.5s ease, opacity 0.8s ease, -webkit-transform 0.5s ease;
  background: rgba(0, 44, 94, 0.8);
}
.scroll-to-play__info-box h2 {
  margin-bottom: 10px;
  color: #fff;
}
.scroll-to-play__info-box p {
  font-family: "Noto Serif", "American Typewriter", serif;
}
.scroll-to-play__info-box a {
  background: #fff;
  color: #002c5e;
  clear: both;
  display: block;
  text-align: center;
  margin-bottom: 0;
}
.scroll-to-play__info-box a + a {
  margin-top: 20px;
}
.scroll-to-play__info-box a:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #002c5e;
}

.scroll-to-play__info-box--from-right {
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  right: 60px;
}

.scroll-to-play__info-box--from-left {
  -webkit-transform: translateX(-100vw);
          transform: translateX(-100vw);
  left: 60px;
}

.scroll-to-play__info-box--from-top {
  -webkit-transform: translateY(-100vh);
          transform: translateY(-100vh);
  width: 100%;
  max-width: none;
  background: none;
  margin-top: 40px;
  text-align: center;
}
.scroll-to-play__info-box--from-top a {
  background: #002c5e;
  color: #fff;
  display: inline-block;
  text-align: center;
  margin-bottom: 0;
  font-size: 40px;
  padding: 40px 60px;
}
.scroll-to-play__info-box--from-top a + a {
  margin-left: 20px;
}
.scroll-to-play__info-box--from-top a:hover {
  background: rgba(255, 255, 255, 0.8);
  color: #002c5e;
}

.scroll-to-play__info-box.active {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

.scroll-to-play-content-block {
  background: #fff;
  z-index: 21;
  position: relative;
}

.scroll-to-play-timeline__scene {
  height: 15000px;
}

.video-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  float: none;
}
@media screen and (max-width: 39.99875em) {
  .video-container {
    height: 200px;
  }
}
@media screen and (min-width: 64em) {
  .video-container {
    max-height: calc(100vh - 118px);
    height: 100%;
  }
}
.video-container video, .video-container source {
  width: 100%;
}
.video-container video {
  position: absolute;
  z-index: -1;
  display: none;
  top: -1px;
}
@media screen and (min-width: 40em) {
  .video-container video {
    display: block;
  }
}
.video-container .hero__content__text {
  margin: auto auto 45px;
}
@media screen and (min-width: 64em) {
  .video-container .hero__content__text {
    max-width: 647px;
    margin: auto auto 60px;
  }
}

@media screen and (min-width: 40em) {
  .video-feature--placeholder {
    margin-top: auto;
  }
}

.video-feature--mobile-img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  width: 120%;
}
@media screen and (min-width: 40em) {
  .video-feature--mobile-img {
    display: none;
  }
}

.page--home .video-container {
  overflow: hidden;
}
@media screen and (min-width: 64em) {
  .page--home .video-container {
    margin-top: -51px;
  }
}
.page--home video {
  position: absolute;
}
.page--home .video-feature--mobile-img {
  position: absolute;
}

/*
---------------
SIDEBAR
---------------
*/
.sidebar {
  margin-bottom: 2.5rem;
}
@media (max-width: 40rem) {
  .sidebar .section-menu {
    display: none;
    margin-top: 0.3125rem;
  }
}
.sidebar ul {
  margin: 0;
  padding: 0;
}
.sidebar li {
  padding: 0;
  list-style: none;
  position: relative;
}
.sidebar .menu-item-has-children > a {
  padding-right: 2.8125rem;
}
.sidebar a {
  position: relative;
  font-size: 1rem;
  padding: 1.0625rem 1.25rem 0.8125rem;
  line-height: 1.5;
  color: #525252;
  font-weight: 600;
  display: block;
}
.sidebar nav > ul > li.menu-item-has-children > a {
  padding-right: 3.4375rem;
}
.sidebar nav > ul > li.menu-item-has-children .menu-item-expand {
  border: none;
  cursor: pointer;
  background: #eee;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  position: absolute;
  top: 0.4375rem;
  right: 0.4375rem;
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  z-index: 2;
}
.sidebar nav > ul > li.menu-item-has-children .menu-item-expand:after {
  height: 100%;
  width: 100%;
  content: "";
  background-image: url(../img/accordion-plus-dark.svg);
  display: block;
  line-height: 0;
  background-repeat: no-repeat;
  background-size: 1.375rem;
  background-position: center center;
}
.sidebar nav > ul > li.menu-item-has-children .menu-item-expand--active:after {
  background-image: url(../img/accordion-minus-dark.svg);
}
.sidebar nav > ul > li.menu-item-has-children.current-menu-item > .menu-item-expand, .sidebar nav > ul > li.menu-item-has-children.current-page-ancestor > .menu-item-expand {
  background: #9162af;
}
.sidebar nav > ul > li.menu-item-has-children.current-menu-item > .menu-item-expand:after, .sidebar nav > ul > li.menu-item-has-children.current-page-ancestor > .menu-item-expand:after {
  background-image: url(../img/accordion-plus-white.svg);
}
.sidebar nav > ul > li.menu-item-has-children.current-menu-item > .menu-item-expand--active:after, .sidebar nav > ul > li.menu-item-has-children.current-page-ancestor > .menu-item-expand--active:after {
  background-image: url(../img/accordion-minus-white.svg);
}
.sidebar nav > ul > li.menu-item-has-children .menu-item-expand--active + .sub-menu {
  display: block;
}
.sidebar nav > ul > li .sub-menu {
  display: none;
}
.sidebar nav > ul > li.current-menu-ancestor .menu-item-expand--active + .sub-menu {
  display: block;
}
.sidebar nav > ul > li.current_page_item > a,
.sidebar nav > ul > li.current-page-ancestor > a {
  background: #581483;
  color: #fff;
  font-weight: 800;
}
.sidebar nav > ul > li > ul,
.sidebar nav > ul > li > ul > li > ul {
  padding-left: 1.125rem;
}
.sidebar nav > ul > li > ul .current_page_item > a,
.sidebar nav > ul > li > ul > li > ul .current_page_item > a {
  color: #581483;
}
.sidebar nav > ul > li > ul > li > a,
.sidebar nav > ul > li > ul > li > ul > li > a {
  border-left: 0.125rem solid #D3D3D3;
}
.sidebar nav > ul > li > ul > li.current_page_item > a,
.sidebar nav > ul > li > ul > li > ul > li.current_page_item > a {
  border-color: #581483;
}

.more-in-this-section {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-align: left;
  padding: 0.9375rem 3.125rem 0.8125rem 1.25rem;
  border-top: 0.0625rem solid #581483;
  text-transform: uppercase;
  background: #F4F4F4;
  position: relative;
  cursor: pointer;
  color: #000;
  margin-bottom: 0;
  margin-top: 0;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
}
@media (min-width: 40.0625rem) {
  .more-in-this-section {
    display: none;
  }
}
.more-in-this-section:after {
  content: url(../img/accordion-plus.svg);
  line-height: 0;
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 1.25rem;
  width: 1.875rem;
  right: 0.625rem;
  line-height: 1;
}

.more-in-this-section--active:after {
  content: url(../img/accordion-minus.svg);
}

/*
-----------------------
HORIZONTAL FEATURE BOX
-----------------------
*/
.section--horizontal-feature-box {
  font-family: "proxima-nova", "Arial", sans-serif;
}
.section--horizontal-feature-box h2 {
  margin-top: 0;
}

.horizontal-feature-box__img {
  margin-bottom: 20px;
}
@media screen and (min-width: 40em) {
  .horizontal-feature-box__img {
    margin-bottom: 0;
  }
}

.offset-slider {
  overflow-x: hidden;
}
.offset-slider .slick-list {
  overflow: visible !important;
}
.offset-slider .slick-track {
  left: -3.5rem;
}
.offset-slider__item {
  width: calc(100vw - 8rem);
  margin: 0 1rem;
}
.offset-slider__item > img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 40em) {
  .offset-slider .slick-track {
    left: 0;
  }
  .offset-slider__item {
    width: calc(50vw - 6rem);
  }
}
@media screen and (min-width: 64em) {
  .offset-slider--three {
    margin: 0 -1rem;
  }
  .offset-slider--three .offset-slider__item {
    float: left;
    width: calc(33.333% - 2rem);
  }
  .offset-slider--unlimited .offset-slider__item {
    width: calc(33.333vw - 4rem);
  }
}

.links--important {
  /*
    ul {
      @include list-not-wysiwyg;
    }
  */
}
.links--important li,
.links--important li a {
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.links--important h3 button {
  display: block;
  font-size: 1rem;
  position: relative;
  background: none;
  border: none;
  font-weight: 700;
  outline: none;
  color: #000;
  padding: 0;
  text-align: left;
}
.links--important li a {
  color: red;
}
.links--important li a:hover {
  color: #000;
}
.links--important p {
  text-align: center;
  margin: 0;
}
.links--important p .btn {
  margin: 0 auto;
}

@media screen and (max-width: 39.99em) {
  .links--important__container {
    margin: 0 1rem;
    width: calc(100% - 2rem);
  }
  .links--important__section {
    margin-bottom: 1.5rem;
  }
  .links--important__section h3 {
    margin-bottom: 0;
  }
  .links--important__section h3 button {
    display: block;
    background: DarkRed;
    color: #fff;
    padding: 1rem 2rem;
    margin-bottom: 0;
    position: relative;
    width: 100%;
    text-align: left;
  }
  .links--important__section h3 button:hover {
    color: PapayaWhip;
  }
  .links--important__section h3 button:before {
    content: "";
    display: block;
    background-color: DarkRed;
    height: 1px;
    width: calc(100% - 3rem);
    position: absolute;
    bottom: 0;
    left: 1.5rem;
  }
  .links--important__section h3 button:after {
    content: "\f107";
    font-family: "FontAwesome";
    font-weight: normal;
    font-size: 1.5rem;
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
  }
  .links--important__section div {
    display: none;
    background: #fff;
    padding: 1rem 2rem 0.5rem;
  }
  .links--important__section.engaged h3 button {
    background: #fff;
    color: DarkRed;
  }
  .links--important__section.engaged h3 button:before {
    content: "";
    display: block;
    background-color: #000;
    height: 1px;
    width: calc(100% - 3rem);
    position: absolute;
    bottom: 0.25rem;
    left: 1.5rem;
  }
  .links--important__section.engaged h3 button:after {
    -webkit-transform: rotateX(180deg);
            transform: rotateX(180deg);
  }
}
@media screen and (min-width: 40em) {
  .links--important__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .links--important__section {
    border-left: 1px solid #000;
    padding-left: 1rem;
    margin-right: 2rem;
    margin-bottom: 3rem;
    width: 21%;
    min-width: 11rem;
  }
  .links--important__section h3 button {
    pointer-events: none;
  }
  .links--important__section div {
    display: block !important; /* Used to override js */
  }
  .links--important li:last-child,
  .links--important li:last-child a {
    margin-bottom: 0;
  }
}
.picker {
  width: 64rem;
  max-width: 100%;
  margin: 0 auto 6rem;
  background: #fff;
  padding: 3rem;
}
.picker::before, .picker::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.picker::after {
  clear: both;
}
@media screen and (max-width: 29.99em) {
  .picker {
    padding: 1rem;
  }
}

.picker--simple img {
  display: none;
}
@media screen and (min-width: 30em) {
  .picker--simple img {
    display: block;
    width: 43rem;
    max-width: 100%;
    margin: 0 auto 1rem;
  }
}
@media screen and (min-width: 58em) {
  .picker--simple img {
    width: 75%;
    float: right;
    margin: 0 0 0 3rem;
  }
}
.picker--simple .summary h3 {
  font-weight: normal;
}
.picker--simple .summary .description p {
  margin-bottom: 3rem;
}
@media screen and (max-width: 29.99em) {
  .picker--simple .summary {
    text-align: center;
  }
  .picker--simple .summary .btn {
    width: 100%;
  }
}
@media screen and (max-width: 57.99em) {
  .picker--simple .summary {
    width: 43rem;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 58em) {
  .picker--simple .summary {
    width: calc(25% - 3rem);
  }
}

.tabs__tab[aria-hidden=true] {
  display: none;
}

.picker .white-box {
  border: 1px solid DarkRed;
  width: 260px;
  margin-right: 2rem;
  padding: 0;
}
.picker .white-box .summary {
  padding: 1.5rem;
}
.picker .white-box .summary p:last-child {
  margin-bottom: 0;
}
.picker .white-box h4 a {
  text-decoration: none;
  color: DarkRed;
}

.picker__tab--text-n-boxes {
  position: relative;
}
.picker__tab--text-n-boxes .picker__white-boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1280px) {
  .picker__tab--text-n-boxes .picker__white-boxes {
    clear: left;
    width: 100%;
  }
}
@media screen and (max-width: 985px) {
  .picker__tab--text-n-boxes .picker__white-boxes {
    width: calc(100% + 6rem);
    position: relative;
    left: -3rem;
  }
}
.picker__tab--text-n-boxes .picker__white-boxes .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; /* used to enable flex within slack */
}
.picker__tab--text-n-boxes .picker__white-boxes .slick-track .white-box {
  height: auto !important; /* used to enable flex within slack */
}
.picker__tab--text-n-boxes .white-box:last-child {
  margin-right: 0;
}

.picker__tab__summary,
.text-n-boxes__summary {
  width: 560px;
  max-width: 100%;
  text-align: center;
  margin: 0 auto 2rem;
}
.picker__tab__summary .btn,
.text-n-boxes__summary .btn {
  margin: 0 auto;
}
@media screen and (min-width: 1281px) {
  .picker__tab__summary,
  .text-n-boxes__summary {
    width: 260px;
    float: left;
    text-align: left;
    margin-right: 2rem;
  }
}

.picker--jumbo .story,
.picker--jumbo .links--important {
  margin-bottom: 4rem;
}
.picker--jumbo .story__title {
  color: #000;
  font-size: 1rem;
}
.picker--jumbo .story__left {
  padding: 0;
}
@media screen and (min-width: 40em) {
  .picker--jumbo .story__right {
    padding-left: 2rem;
  }
}
.picker--jumbo .story__photo {
  float: none;
  width: 100%;
  margin: 0 0 1rem;
}
.picker--jumbo img {
  display: block;
}

.text-n-boxes::before, .text-n-boxes::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.text-n-boxes::after {
  clear: both;
}
.text-n-boxes__summary {
  text-align: left;
}
@media screen and (min-width: 67em) {
  .text-n-boxes__summary {
    float: left;
    width: calc(100% - 30rem);
  }
}
@media screen and (min-width: 48em) {
  .text-n-boxes--boxes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 28rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 67em) {
  .text-n-boxes--boxes {
    float: right;
    margin: 0;
  }
}
.text-n-boxes--boxes .white-box {
  margin: 0;
  width: 260px;
  margin-right: 2rem;
  padding: 0;
  background-color: #fff;
}
.text-n-boxes--boxes .white-box:last-child {
  margin-right: 0;
}
.text-n-boxes--boxes .white-box h4 a {
  text-decoration: none;
  color: DarkRed;
}
.text-n-boxes--boxes .white-box .summary {
  padding: 1.5rem;
}
.text-n-boxes--boxes .white-box .summary p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 47.99em) {
  .text-n-boxes--boxes .white-box {
    width: 100%;
    margin-bottom: 1rem;
  }
  .text-n-boxes--boxes .white-box h3, .text-n-boxes--boxes .white-box h4 {
    margin-bottom: 0;
  }
  .text-n-boxes--boxes .white-box img,
  .text-n-boxes--boxes .white-box .description {
    display: none;
  }
}

.picker--jumbo .text-n-boxes {
  margin-bottom: 2rem;
}

.picker .text-n-boxes--boxes .white-box {
  border: 1px solid DarkRed;
}

.tabs::before, .tabs::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.tabs::after {
  clear: both;
}
.tabs__tablist {
  text-align: center;
  margin-bottom: calc(3rem - 17px);
}
.tabs__tablist li {
  display: inline-block;
  margin: 0 0.5rem;
}
@media screen and (max-width: 42.99em) {
  .tabs__tablist li {
    display: block;
  }
}
.tabs__tablist button {
  display: block;
  position: relative;
  padding: 0 1.5rem 0.5rem;
  background: none;
  border: none;
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 800;
  outline: none;
}
@media screen and (max-width: 42.99em) {
  .tabs__tablist button {
    margin: 0 auto 0.25rem;
  }
}
.tabs__tablist button:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #999;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 1;
}
@media screen and (max-width: 42.99em) {
  .tabs__tablist button:after {
    width: 5rem;
    left: calc(50% - 2.5rem);
    bottom: 5px;
  }
}
.tabs__tablist button:hover:after {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.tabs__tablist button[aria-selected=true] {
  color: #000;
}
.tabs__tablist button[aria-selected=true]:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #000;
  z-index: 2;
}
@media screen and (max-width: 42.99em) {
  .tabs__tablist button[aria-selected=true]:before {
    width: 5rem;
    left: calc(50% - 2.5rem);
    bottom: 5px;
  }
}
.tabs__tab[aria-hidden=true] {
  display: none;
}

.section--more {
  margin-bottom: 0;
}
.section--basic__title + .section--more {
  margin-top: -40px;
}

.section--more .padded-row div {
  border: 0 solid #999;
  border-width: 4px 0;
  padding: 30px 0;
  margin-bottom: 72px;
}
.section--more .padded-row div::before, .section--more .padded-row div::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.section--more .padded-row div::after {
  clear: both;
}
.section--more .padded-row div h3 {
  margin-bottom: 30px;
}
.section--more .padded-row div ul {
  list-style: none;
  padding-left: 0;
}

@media (min-width: 680px) {
  .child-links__item {
    width: 49.8%;
    float: left;
    padding-right: 1em;
  }
  .child-links__item:nth-child(2n+1) {
    clear: left;
  }
}
@media (min-width: 920px) {
  .child-links__item {
    width: 24.8%;
    float: left;
    padding-right: 1em;
  }
  .child-links__item:nth-child(2n+1) {
    clear: none;
  }
  .child-links__item:nth-child(4n+1) {
    clear: left;
  }
}

.photo-box__teaser {
  float: left;
  width: calc(100vw - 6rem);
}
.photo-box__teaser + .photo-box__teaser {
  margin-left: 2rem;
}
@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .photo-box__teaser {
    width: calc(50vw - 4rem);
  }
}
@media screen and (min-width: 64em) {
  .photo-box__teaser {
    width: 360px;
  }
}

@media screen and (min-width: 1025px) {
  .section--photo-boxes .listing-slick {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.section--photo-boxes {
  overflow-x: hidden;
}
@media screen and (max-width: 39.99875em) {
  .section--photo-boxes .listing-slick {
    right: 1rem;
  }
}
@media screen and (min-width: 40em) and (max-width: 63.99875em) {
  .section--photo-boxes .listing-slick {
    right: -1rem;
  }
}
.section--photo-boxes .slick-list {
  overflow: visible !important;
}
.section--photo-boxes .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section--photo-boxes .btn {
  display: inline-block;
  margin: 3.75rem auto 0;
}

.photo-box__teaser a {
  text-decoration: none;
  text-align: center;
}
.photo-box__teaser div {
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.5);
  background-blend-mode: multiply;
  -webkit-background-blend-mode: multiply;
}
.photo-box__teaser h3,
.photo-box__teaser p {
  color: #fff;
}
.photo-box__teaser h3 {
  font-size: 1.4rem;
  line-height: 1.285;
  position: relative;
}
.photo-box__teaser span {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
}
.photo-box__teaser a p {
  margin-bottom: 0;
  font-family: "Noto Serif", "American Typewriter", serif;
}

.photo-box--small div {
  padding: 2rem;
}
.photo-box--small h3 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.photo-box--large {
  max-width: 100%;
}
.photo-box--large div {
  padding: 3rem;
}
.photo-box--large h3 {
  font-size: 1.4rem;
  line-height: 1.285;
  margin-bottom: 3rem;
}

.no-touch .photo-box__teaser a:hover div {
  background-color: rgba(149, 31, 36, 0.9);
}
.no-touch .photo-box__teaser a:hover h3:after {
  content: "";
  display: block;
  background: #fff;
  height: 1px;
  width: 11rem;
  position: absolute;
  bottom: -1rem;
  left: calc((100% - 11rem) / 2);
}

.photo-box--large a:hover h3:after {
  width: 18rem;
  bottom: -1.5rem;
  left: calc((100% - 18rem) / 2);
}

.photo-box__teasers--small,
.photo-box__teasers--large {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 42em) {
  .photo-box__teasers--small,
  .photo-box__teasers--large {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}

.photo-box__teasers--large {
  position: relative;
}
@media screen and (max-width: 39.99em) {
  .photo-box__teasers--large {
    margin-bottom: 4rem;
  }
  .photo-box__teasers--large:after {
    background-color: #999;
    bottom: -2rem;
    clear: both;
    content: "";
    height: 1px;
    left: 3rem;
    position: absolute;
    width: calc(100% - 6rem);
  }
}

.photo-box--large {
  height: auto;
  margin: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 auto;
          flex: 0 auto;
  width: 100%;
}
@media screen and (min-width: 42em) and (max-width: 68.49em) {
  .photo-box--large {
    width: 60%;
  }
}
@media screen and (min-width: 68.5em) {
  .photo-box--large {
    width: 46.33%;
  }
}

.photo-box__teaser.photo-box--large {
  margin-left: 1rem;
}

.photo-box__teasers--small .photo-box--small {
  height: auto;
  margin: 1rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 auto;
          flex: 0 auto;
  width: 100%;
}
@media screen and (min-width: 40em) and (max-width: 1079px) {
  .photo-box__teasers--small .photo-box--small {
    width: 44%;
  }
}
@media screen and (min-width: 1080px) and (max-width: 1159px) {
  .photo-box__teasers--small .photo-box--small {
    width: 28%;
  }
}
@media screen and (min-width: 1160px) {
  .photo-box__teasers--small .photo-box--small {
    width: 29.75%;
  }
}

.more-or-less {
  margin-top: 24px;
  max-height: 37.5rem;
  overflow-y: hidden;
  position: relative;
  z-index: 1;
}
.more-or-less:after {
  content: "";
  display: block;
  z-index: 5;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 200px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), color-stop(50%, rgb(255, 255, 255)));
  background: linear-gradient(rgba(255, 255, 255, 0), rgb(255, 255, 255) 50%);
}
.more-or-less.open {
  max-height: 6250rem;
}
.more-or-less.open:after {
  display: none;
}
.more-or-less__load-more {
  position: absolute;
  bottom: 1em;
  z-index: 6;
}
.more-or-less__fewer {
  background: #fff;
  position: relative;
  padding-top: em(20);
}

/*
----------------
PROGRAMS
----------------
*/
.program-inner-box {
  background: #581483;
  color: #fff;
  padding: 50px;
  margin: auto;
}

.program-wrap {
  margin-left: -1.7rem;
  position: relative;
  padding-top: 40px;
  border-left: 0.125rem #fff solid;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .program-wrap {
    margin-left: auto;
    margin-right: auto;
    border: 0;
  }
}
.program-wrap h3 {
  color: #EFD38E;
}
.program-wrap input[type=text],
.program-wrap input[type=tel],
.program-wrap input[type=email] {
  width: 100%;
}
.program-wrap .form_select select,
.program-wrap .form_address select {
  width: 100%;
}
.program-wrap .form_address textarea {
  height: 70px;
}
.program-wrap .form_response {
  display: inline-block;
  margin-right: 10px;
}
.program-wrap .action.form_action button {
  background: #ffffff;
  max-width: 250px;
  width: 100%;
  padding: 15px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 20px auto auto auto;
  display: block;
  border-radius: 5px;
  cursor: pointer;
  color: #AD841F;
}
.program-wrap input[type=radio]:checked,
.program-wrap input[type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.program-wrap input[type=radio]:checked + label,
.program-wrap input[type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #ffffff;
}
.program-wrap input[type=radio]:checked + label:before,
.program-wrap input[type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 2px solid #EFD38E;
  border-radius: 100%;
}
.program-wrap input[type=radio]:checked + label:after,
.program-wrap input[type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #ffffff;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.program-wrap input[type=radio]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.program-wrap input[type=radio]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.program--detail .flexboxes__heading {
  margin-bottom: 2.25rem;
  text-align: center;
  font-weight: 700;
}

.program-degree__item a {
  text-decoration: underline;
}

/*
---------------
HSU DIFFERENCE
---------------
*/
.section--home-differentiator {
  background: #fff;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  background-color: #581483;
  text-align: center;
}
@media (max-width: 40rem) {
  .section--home-differentiator {
    border-top: 0.625rem solid #9162AF;
  }
}
.section--home-differentiator .small-12 {
  position: relative;
}
.section--home-differentiator h2, .section--home-differentiator a {
  color: #fff;
}
.section--home-differentiator a {
  display: inline-block;
  font-size: 0.875rem;
  font-family: "proxima-nova", "Arial", sans-serif;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem 0.625rem;
  background-color: #9162AF;
  font-weight: 600;
  border-radius: 18px;
  -webkit-transition: 0.4s background-color ease-out;
  transition: 0.4s background-color ease-out;
  letter-spacing: 0.06875rem;
  line-height: 1.2;
}
@media (min-width: 40.0625rem) {
  .section--home-differentiator a {
    font-size: 1.25rem;
    padding: 1.25rem 2.1875rem 1.125rem;
  }
}
.section--home-differentiator a:hover {
  text-decoration: none;
  background-color: #9935D8;
}
.section--home-differentiator a:hover:before {
  width: 80%;
}
.section--home-differentiator a:before {
  content: "";
  height: 0.0625rem;
  background: #9162AF;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  z-index: -1;
  -webkit-transition: 0.4s width ease-out;
  transition: 0.4s width ease-out;
  display: none;
}
@media (min-width: 40.0625rem) {
  .section--home-differentiator a:before {
    display: block;
  }
}

.section--home-differentiator__headline {
  font-size: 2.25rem;
  font-weight: 300;
  letter-spacing: -1.2px;
  margin-bottom: 1.25rem;
}
@media (min-width: 40.0625rem) {
  .section--home-differentiator__headline {
    margin-bottom: 3.125rem;
    font-size: 4.5rem;
  }
}
.section--home-differentiator__headline em {
  font-size: 1.5rem;
  color: #EFD38E;
  font-style: normal;
  letter-spacing: -0.6px;
  font-family: "Noto Serif", "American Typewriter", serif;
  font-style: italic;
}
@media (min-width: 40.0625rem) {
  .section--home-differentiator__headline em {
    font-size: 3rem;
  }
}

/*
--------------
FLEXBOXES
--------------
*/
.section--flexboxes .row, .section--flexboxes .padded-row {
  padding: 0 1.25rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section--flexboxes p, .section--flexboxes a, .section--flexboxes h3 {
  color: #fff;
  font-family: "proxima-nova", "Arial", sans-serif;
}
.section--flexboxes p:last-child, .section--flexboxes a:last-child, .section--flexboxes h3:last-child {
  margin-bottom: 0;
}
.section--flexboxes h3 {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1.125rem;
}
.section--flexboxes p {
  font-size: 1.125rem;
  line-height: 1.4;
}
@media (max-width: 40rem) {
  .section--flexboxes p {
    font-size: 1rem;
  }
}
.section--flexboxes .arrow-link-container {
  display: block;
}
.section--flexboxes .arrow-link-container a {
  margin-top: 0.3125rem;
  display: inline-block;
  font-weight: 700;
  line-height: 1.4;
}
.section--flexboxes img {
  display: block;
  margin-bottom: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}
.section--flexboxes .small-12 {
  padding: 2.8125rem 1.875rem 1.875rem;
}
@media (min-width: 54.4375rem) {
  .section--flexboxes .small-12 {
    padding: 2.8125rem;
  }
}
.section--flexboxes .small-12:first-child {
  background-color: #9162AF;
}
.section--flexboxes .small-12:nth-child(2) {
  background-color: #581483;
}
.section--flexboxes .small-12:last-child {
  background-color: #AD841F;
}

.page--landing-page .section--flexboxes {
  background: #581483;
  padding: 1.875rem 0 0;
}
@media (max-width: 40.0625rem) {
  .page--landing-page .section--flexboxes {
    margin-top: -2.5rem;
  }
}
@media (min-width: 40.0625rem) {
  .page--landing-page .section--flexboxes {
    padding: 4.375rem 0 3.125rem;
  }
}
.page--landing-page .section--flexboxes h3 {
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
}
.page--landing-page .section--flexboxes .small-12 {
  padding: 0;
  background: none;
  margin-bottom: 1.25rem;
}
@media (min-width: 40.0625rem) {
  .page--landing-page .section--flexboxes .small-12 {
    padding: 0 1.25rem;
  }
}
.page--landing-page .section--flexboxes img {
  max-width: none;
  width: 100%;
  height: auto;
}

/*
--------------
TUITION COSTS
--------------
*/
.tabs__tabs-content > [aria-hidden=true] {
  display: none;
}

.tuition-quote__text {
  margin-bottom: 0;
}

.tabs__content .padded-row .section--tuition-tab-intro > .row, .tabs__content .padded-row .section--tuition-tab-intro > .padded-row {
  margin: 0;
}

.section--tuition-tab-intro {
  margin: 2.8125rem 0;
  font-family: "proxima-nova", "Arial", sans-serif;
  line-height: 1.5;
}
@media (min-width: 40.0625rem) {
  .section--tuition-tab-intro {
    margin: 4.6875rem 0;
  }
}
.section--tuition-tab-intro .section--tuition-tab-intro__text-column {
  width: 100%;
  max-width: none;
}
@media (min-width: 40.0625rem) {
  .section--tuition-tab-intro .section--tuition-tab-intro__text-column {
    width: 100%;
    padding-right: 2.8125rem;
    padding-left: 0;
    max-width: 43.75rem;
  }
}
.section--tuition-tab-intro .section--tuition-tab-intro__faculty-column {
  width: 100%;
  max-width: none;
}
@media (max-width: 40rem) {
  .section--tuition-tab-intro .section--tuition-tab-intro__faculty-column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}
@media (min-width: 40.0625rem) {
  .section--tuition-tab-intro .section--tuition-tab-intro__faculty-column {
    width: 100%;
    max-width: 27.5rem;
    padding-left: 1.5625rem;
    border-left: 0.125rem #B5B5B5 solid;
    padding-right: 0;
  }
}

.tuition-expandables {
  padding-bottom: 1.25rem;
}
@media (min-width: 40.0625rem) {
  .tuition-expandables {
    padding-bottom: 2.5rem;
  }
}
.tuition-expandables p {
  max-width: 47.5rem;
}
.tuition-expandables table {
  width: 100%;
  max-width: 28.75rem;
}
.tuition-expandables .btn {
  margin-bottom: 0;
}
.tuition-expandables tbody td {
  padding: 0.625rem 1.25rem;
}
.tuition-expandables th, .tuition-expandables thead td {
  margin-bottom: 0.625rem;
  font-size: 1rem;
}

.section--tuition-quote {
  padding: 0 1.875rem;
}

.tuition-quote__attribution {
  color: #AD841F;
  font-size: 1.875rem;
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  margin-top: 1.25rem;
  margin-bottom: 0.3125rem;
}
.tuition-quote__attribution:before {
  content: "—";
  margin-right: 0.625rem;
}

.tuition-quote__link {
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
}

/*
------------
FOOTER CTAS
------------
*/
.footer-ctas .columns {
  padding: 0 0.3125rem;
}
.footer-ctas .row, .footer-ctas .padded-row {
  padding: 0 0.9375rem;
}

.footer-cta__content {
  background-color: #F4F4F4;
  padding: 1.5625rem 1.5625rem 2.3125rem;
  line-height: 1.5;
}
.footer-cta__content p:last-child, .footer-cta__content span:last-child, .footer-cta__content a:last-child {
  margin-bottom: 0;
}
.footer-cta__content p {
  margin-bottom: 1.25rem;
}

.footer-cta__phone {
  font-weight: 700;
}
.footer-cta__phone:before {
  font-weight: normal;
}

.footer-cta__image {
  display: block;
  margin-bottom: 1.25rem;
}

.footer-cta__button {
  display: block;
  width: 100%;
  text-align: center;
  background: #525252;
  color: #fff;
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 700;
  padding: 1.0625rem 1.25rem 0.9375rem;
  letter-spacing: 0.159375rem;
  font-size: 0.875rem;
  line-height: 1.5;
  text-transform: uppercase;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  position: relative;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
.footer-cta__button:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  max-width: 0;
  margin: auto;
  bottom: 0;
  -webkit-transform: 0;
          transform: 0;
  z-index: 1;
  border-left: 0.9375rem solid transparent;
  border-right: 0.9375rem solid transparent;
  border-top: 0.9375rem solid #525252;
  -webkit-transition: border-color 0.4s ease, -webkit-transform 0.4s ease;
  transition: border-color 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, border-color 0.4s ease;
  transition: transform 0.4s ease, border-color 0.4s ease, -webkit-transform 0.4s ease;
}
.footer-cta__button.active {
  background: #581483;
}
.footer-cta__button.active:after {
  border-top-color: #581483;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.footer-cta__button:before {
  font-family: "FontAwesome";
  font-size: 0.9375rem;
  padding-right: 0.4375rem;
  font-weight: normal;
}
.footer-cta__button[data-label=Visit]:before {
  content: "\f102";
  font-family: "Flaticon";
}
.footer-cta__button[data-label="Request Info"]:before {
  content: "\f05a";
}
.footer-cta__button[data-label=Apply]:before {
  content: "\f0f6";
}

.footer-cta__content {
  display: none;
}

.home .footer-ctas {
  z-index: 10000;
  position: relative;
  background: white;
  margin-bottom: 0;
  padding-bottom: 2.5rem;
}

@media (min-width: 900px) {
  .home .footer-ctas,
  .single .footer-ctas {
    position: fixed;
    bottom: -75px;
    z-index: 10000;
    width: 100%;
    background: transparent;
    padding: 10px 0;
    border-top: none;
    margin-bottom: 0;
    -webkit-transition: all 0.5s linear;
    transition: all 0.5s linear;
  }
  .home .footer-ctas .row, .home .footer-ctas .padded-row,
  .single .footer-ctas .row,
  .single .footer-ctas .padded-row {
    position: relative;
    z-index: 1;
  }
  .home .footer-ctas .columns,
  .single .footer-ctas .columns {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .home .footer-ctas:after,
  .single .footer-ctas:after {
    content: "";
    display: block;
    width: 100%;
    height: 70px;
    position: absolute;
    bottom: 0;
    right: 0;
    background: #581483;
  }
}

@media (min-width: 900px) {
  .home .footer-ctas.sticky-ctas,
  .single .footer-ctas.sticky-ctas {
    bottom: 0;
  }
}

@media (min-width: 900px) {
  .home .footer-cta__button,
  .single .footer-cta__button {
    background: #FFF;
    color: #581483;
    border-bottom: 1px solid #e4e4e4;
    font-size: 12px;
    padding: 0.9rem 1rem 0.8rem;
  }
  .home .footer-cta__button:after,
  .single .footer-cta__button:after {
    border-top: 0.9375rem solid #FFF;
  }
  .home .footer-cta__button.active,
  .single .footer-cta__button.active {
    background: #581483;
    color: #FFF;
  }
  .home .footer-cta__button.active:after,
  .single .footer-cta__button.active:after {
    border-top-color: #581483;
  }
}

/*
---------------
OFFICE LISTING
---------------
*/
.office--large-listing {
  width: 100%;
}
.office--large-listing:first-of-type {
  margin-top: 2.5rem;
}
.office--large-listing .fa-list {
  margin-top: 0.875rem;
}
.office--large-listing h2 {
  margin-bottom: 0;
}

.section--links {
  background-color: #F4F4F4;
  border-top: 1px solid #D3D3D3;
}
.section--links .section-header {
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 40em) {
  .section--links .section-header {
    margin-bottom: 1.25rem;
  }
}
.section--links h2 {
  color: #581483;
}
.section--links ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
.section--links ul a {
  font-weight: bold;
}
.section--links .section--links__accordion-toggle span {
  display: none;
}

@media screen and (max-width: 39.99875em) {
  .section--links__accordion {
    margin-bottom: 1.25rem;
    clear: both;
  }
  .section--links__accordion-toggle {
    padding: 0;
    border: none;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: block;
    width: 100%;
    text-align: left;
  }
  .section--links__accordion-toggle h3 {
    margin: 0;
    background: #9162AF;
    color: #fff;
    position: relative;
    font-weight: 400;
    cursor: pointer;
    padding: 0.6875rem 2.5rem 0.625rem 1.25rem;
    -webkit-transition: background 0.4s ease;
    transition: background 0.4s ease;
  }
  .section--links__accordion-toggle h3:after {
    content: url("../img/accordion-plus.svg");
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    bottom: 0;
    height: 1.3125rem;
    width: 1.25rem;
    right: 1.25rem;
    margin: auto;
    display: block;
    line-height: 0;
  }
  .section--links__accordion-toggle span {
    display: block;
  }
  .section--links__accordion-toggle:hover h3 {
    background: #581483;
  }
  .section--links__accordion-toggle:hover h3:after {
    color: #6f737d;
  }
  .section--links__accordion-content {
    padding: 1.25rem;
    background: #fff;
    font-family: "proxima-nova", "Arial", sans-serif;
    line-height: 1.5;
    display: none;
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  }
  .section--links__accordion-content::before, .section--links__accordion-content::after {
    display: table;
    content: " ";
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .section--links__accordion-content::after {
    clear: both;
  }
  .section--links__accordion-content a {
    font-family: "proxima-nova", "Arial", sans-serif;
  }
  .section--links__accordion-toggle--active h3:after {
    content: url("../img/accordion-minus.svg");
    height: 0.25rem;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  .section--links__accordion-toggle--active .section--links__accordion-content {
    display: block;
  }
}
.oho-banner {
  position: relative;
  top: 60px;
  background-color: #E8E1ED;
}
@media screen and (min-width: 64em) {
  .oho-banner {
    position: static;
  }
}
@media screen and (min-width: 40em) {
  .oho-banner .fa {
    display: none;
  }
}
.oho-banner__image {
  display: none;
  margin: 20px 0;
  text-align: right;
  line-height: 0;
}
@media screen and (min-width: 40em) {
  .oho-banner__image {
    display: inline-block;
  }
}
.oho-banner__image img {
  height: 100px;
}
.oho-banner__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.oho-banner__text-content {
  position: relative;
  padding-left: 40px;
  font-size: 1rem;
}
@media screen and (min-width: 40em) {
  .oho-banner__text-content {
    padding-left: 30px;
    margin-left: 30px;
    border-left: 1px solid #AD841F;
  }
}
.oho-banner__text-content:before {
  content: "\f27a";
  position: absolute;
  top: 0;
  left: 16px;
  width: 16px;
  height: 16px;
  color: #581483;
  font-family: "FontAwesome";
}
@media screen and (min-width: 40em) {
  .oho-banner__text-content:before {
    content: "";
  }
}
.oho-banner__text-content a {
  color: #AD841F;
  text-decoration: underline;
}
.oho-banner__text-content a:hover {
  font-weight: 700;
}

.program-outcomes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 900px) {
  .program-outcomes {
    padding: 0 15px;
  }
}

.program-outcome {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1.875rem;
}
@media (min-width: 900px) {
  .program-outcome {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 2.25rem 2.25rem 2.75rem;
  }
}
.program-outcome:first-child {
  width: 100%;
  background-color: #9162AF;
}
.program-outcome:nth-child(2) {
  background-color: #591483;
  width: 100%;
}
@media (min-width: 900px) {
  .program-outcome:nth-child(2) {
    width: calc(50% - 15px);
    margin-top: 1.875rem;
  }
}
@media (min-width: 900px) {
  .program-outcome:nth-child(2):last-child {
    width: 100%;
  }
}
.program-outcome:nth-child(3) {
  width: 100%;
  background-color: #AE841F;
}
@media (min-width: 900px) {
  .program-outcome:nth-child(3) {
    width: calc(50% - 15px);
    margin-top: 1.875rem;
  }
}
.program-outcome__content {
  margin-top: 1.375rem;
  padding-right: 0;
  color: #fff;
}
@media (min-width: 900px) {
  .program-outcome__content {
    margin-top: 0;
    padding-right: 2.25rem;
  }
}
.program-outcome__content h3 {
  color: #fff;
}
.program-outcome__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.program-outcome__icon-bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
}
.program-outcome__icon .fa {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: "FontAwesome";
  font-size: 1.875rem;
  font-weight: 900;
  color: #AD841F;
}
.program-outcome__icon .fa:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*
------------
LISTING ITEMS
------------
*/
.listing .fa {
  font-family: "proxima-nova", "Arial", sans-serif;
}
.listing .fa:before, .listing .fa:after {
  font-family: "FontAwesome";
  color: #9935D8;
}
.listing .fa:before {
  margin-right: 0.9375rem;
}

.section--basic-page--featured-news .lined-background-heading,
.related-stories .lined-background-heading,
.news-related .lined-background-heading {
  border-top: 0.0625rem solid #EFD38E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section--basic-page--featured-news .lined-background-heading h2,
.related-stories .lined-background-heading h2,
.news-related .lined-background-heading h2 {
  padding: 0.125rem 0.9375rem;
  letter-spacing: 0.159375rem;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  text-align: center;
  color: #AD841F;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 700;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-bottom: 1.0625rem;
}
@media (min-width: 48.0625rem) {
  .section--basic-page--featured-news .lined-background-heading h2,
  .related-stories .lined-background-heading h2,
  .news-related .lined-background-heading h2 {
    margin-bottom: 2.1875rem;
  }
}
@media (min-width: 40.0625rem) {
  .section--basic-page--featured-news .lined-background-heading h2,
  .related-stories .lined-background-heading h2,
  .news-related .lined-background-heading h2 {
    margin-bottom: 3.5rem;
  }
}

.story--large-listing,
.faculty-staff--large-listing {
  padding-bottom: 3.125rem;
  margin-bottom: 2.5rem;
  border-bottom: 0.0625rem solid #EFD38E;
}
@media (max-width: 40rem) {
  .story--large-listing,
  .faculty-staff--large-listing {
    padding-bottom: 1.875rem;
    margin-bottom: 1.5625rem;
  }
}

.section--home-featured {
  background: #fff;
  position: relative;
  overflow-x: hidden;
}
@media (min-width: 48.0625rem) {
  .section--home-featured {
    border-top: 0.625rem solid #fff;
    border-bottom: 0.625rem solid #fff;
  }
}
.section--home-featured .row, .section--home-featured .padded-row {
  max-width: none;
  width: 100%;
}
@media (max-width: 48rem) {
  .section--home-featured .row .row, .section--home-featured .padded-row .row, .section--home-featured .row .padded-row, .section--home-featured .padded-row .padded-row {
    margin: 0;
  }
}
@media (max-width: 48rem) {
  .section--home-featured .medium-6 {
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    width: 100%;
  }
}
.section--home-featured .news__content {
  background: #fff;
  z-index: 2;
  position: relative;
  padding-bottom: 4.6875rem;
  border-bottom: 0.5625rem solid #EFD38E;
  margin-bottom: 1.875rem;
}
@media (min-width: 48.0625rem) {
  .section--home-featured .news__content {
    min-width: calc(100% + 160px);
    -webkit-transform: translateX(-160px) !important;
            transform: translateX(-160px) !important;
    padding: 2.8125rem 3.125rem 2.5rem;
    margin-bottom: 3.125rem;
    float: right;
    border-bottom: none;
  }
}
.section--home-featured .news__content a {
  font-size: 1.25rem;
  font-weight: 300;
  color: #525252;
}
@media (min-width: 48.0625rem) {
  .section--home-featured .news__content a {
    font-size: 2.25rem;
    font-weight: 400;
  }
}
.section--home-featured a:hover {
  text-decoration: none;
}
.section--home-featured a:hover:after {
  color: #AD841F;
}
.section--home-featured .flaticon-tag:after {
  -webkit-transition: color 0.4s ease-in;
  transition: color 0.4s ease-in;
  margin-left: 0.625rem;
  color: #EFD38E;
  font-size: 70%;
}

.section--home-featured__img-column {
  position: relative;
}
@media (max-width: 48rem) {
  .section--home-featured__img-column {
    padding: 0px;
  }
}
.section--home-featured__img-column img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 48.0625rem) {
  .section--home-featured__img-column img {
    position: absolute;
    max-width: none;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.news--large-feature {
  overflow: hidden;
  height: 100%;
}
.news--large-feature img {
  right: 0;
}

.section--home-featured__list-column {
  margin-top: 1.5625rem;
  padding: 0 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 48.0625rem) {
  .section--home-featured__list-column {
    margin-top: 3.125rem;
    padding-left: 2.8125rem;
  }
}
.section--home-featured__list-column a:not(.btn, .btn--gold) {
  color: #525252;
  font-family: "Noto Serif", "American Typewriter", serif;
}
.section--home-featured__list-column ul {
  margin-bottom: 1.625rem;
}
.section--home-featured__list-column li:not(.fa) {
  margin-bottom: 1.125rem;
}
@media (min-width: 48.0625rem) {
  .section--home-featured__list-column li:not(.fa) {
    margin-bottom: 0.9375rem;
  }
}

.home-featured__heading {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: #581483;
}
.home-featured__heading:after {
  max-width: none;
  margin-top: 1rem;
}
@media (min-width: 48.0625rem) {
  .home-featured__heading:after {
    max-width: 12.1875rem;
  }
}

.section--home-featured__news,
.section--home-featured__events {
  margin-bottom: 1.5625rem;
}
.section--home-featured__news .btn, .section--home-featured__news .btn--gold,
.section--home-featured__events .btn,
.section--home-featured__events .btn--gold {
  font-family: "proxima-nova", "Arial", sans-serif;
  color: #fff;
}

.section--home-featured__events iframe {
  width: 99.8%;
}

.home-featured__heading--events {
  color: #AD841F;
  margin-bottom: 1.5625rem;
}

.large-listing .large-listing__row-border {
  padding: 1.5625rem 0;
  border-bottom: 0.0625rem #EFD38E solid;
}
@media (min-width: 40.0625rem) {
  .large-listing .large-listing__row-border {
    padding: 3.125rem 0;
  }
}
.large-listing__img-column {
  position: relative;
}
@media (min-width: 78.8125rem) {
  .large-listing__img-column {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
@media (max-width: 40rem) {
  .large-listing__img-column {
    display: block;
    margin-bottom: 1.25rem;
    margin-right: 0;
  }
}
.large-listing__title {
  font-weight: 600;
  margin-bottom: 0.9375rem;
}
@media (min-width: 40.0625rem) {
  .large-listing__title {
    margin-top: 1.875rem;
  }
}
.large-listing__info {
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 700;
  display: block;
  margin-bottom: 0.1875rem;
}
.large-listing__description {
  font-family: "proxima-nova", "Arial", sans-serif;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 48rem) {
  .program__overview .section--tuition-tab-intro__text-column,
  .program__overview .section--tuition-tab-intro__faculty-column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
    padding: 0;
    border: 0;
  }
}
@media (max-width: 40rem) {
  .program__overview .section--tuition-tab-intro__text-column,
  .program__overview .section--tuition-tab-intro__faculty-column {
    padding: 0 1.25rem;
  }
}

.addthis .at-resp-share-element .at-share-btn .at-icon-wrapper {
  float: none;
}
@media (max-width: 40rem) {
  .addthis .at-resp-share-element .at-share-btn .at-icon-wrapper {
    display: none;
  }
}
.addthis .at-resp-share-element .at-share-btn {
  margin-top: 0 !important;
  margin-bottom: 0.625rem !important;
  border-radius: 1.0625rem !important;
  padding: 0.3125rem 0.9375rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 40.0625rem) {
  .addthis .at-resp-share-element .at-share-btn {
    padding: 0.5rem 1.875rem 0.5rem 1.25rem;
    max-width: 10.625rem;
  }
}
.addthis .at-resp-share-element .at-share-btn .at-label {
  font-family: "proxima-nova", "Arial", sans-serif;
  padding: 0;
  font-weight: 300;
  letter-spacing: 0.1125rem;
  display: block;
}
@media (min-width: 40.0625rem) {
  .addthis .at-resp-share-element .at-share-btn .at-label {
    margin: 0 0 0 1.25rem;
  }
}

@media (max-width: 40rem) {
  .section--basic-page--add-this {
    margin: 3.125rem 0;
  }
}
.section--basic-page--add-this .at-resp-share-element .at-share-btn {
  margin-bottom: 0 !important;
}
.section--basic-page--add-this .at-share-btn-elements {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 40.0625rem) {
  .section--basic-page--add-this .at-share-btn-elements a {
    margin-right: 0.3125rem;
  }
}

/*
------
STORY
------
*/
.single-story .video-slide-panel {
  margin-bottom: 0;
}
.story__img-container {
  position: relative;
}
.story__img-container:after {
  content: "";
  line-height: 1;
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
  border-right: 1.25rem solid transparent;
  border-left: 1.25rem solid transparent;
  border-bottom: 1.25rem solid #fff;
  bottom: 0;
  left: 1.25rem;
}
@media (min-width: 40.0625rem) {
  .story__img-container:after {
    right: 0;
    left: auto;
    top: 1.25rem;
    border: none;
    border-top: 1.25rem solid transparent;
    border-bottom: 1.25rem solid transparent;
    border-right: 1.25rem solid #fff;
    bottom: auto;
  }
}

@media (max-width: 40rem) {
  .story__img-container {
    margin-bottom: 1.25rem;
  }
}
.story__img-container img {
  display: block;
}

.story__terms {
  margin: 0;
  padding: 0;
}
.story__terms li {
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  font-size: 0.8125rem;
}
.story__terms li:not(:last-child) {
  margin-right: 1.25rem;
}
.story__terms li:before {
  content: "—";
  margin-right: 0.4375rem;
}

.story__subheading {
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 700;
}

.story__excerpt {
  font-family: "Noto Serif", "American Typewriter", serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
}

.story__img {
  max-width: none;
  width: 100%;
  height: auto;
}

.story__content-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.story--large-listing .medium-row-reverse {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 40.0625rem) {
  .story--large-listing .story__img-container:after {
    right: auto;
    left: 0;
    border-left: 1.25rem solid #fff;
    border-right: none;
  }
}
.story--large-listing .story__heading {
  margin-bottom: 0.9375rem;
}
.story--large-listing .story__subheading {
  line-height: 1.5;
  margin-bottom: 0.625rem;
}
.story--large-listing .story__subheading * {
  display: inline;
}
.story--large-listing .story__name + .story__programs:before,
.story--large-listing .story__programs + .story__year:before,
.story--large-listing .story__name + .story__year:before,
.story--large-listing .story__program + .story__program:before {
  content: ",";
  margin-left: -0.25em;
}
.story--large-listing .story__program + .story__program:before {
  margin-right: 0.375rem;
}
.story--large-listing .story__excerpt {
  line-height: 1.66;
  margin-bottom: 0.625rem;
}
.story--large-listing ul {
  padding: 0;
  margin: 0;
}
.story--large-listing li {
  list-style: none;
}

.story__intro {
  /* Fusce et turpis euis: */
  font-weight: 700;
  font-size: 1rem;
  color: #AD841F;
  line-height: 1.8125rem;
  text-align: center;
}
@media (min-width: 40.0625rem) {
  .story__intro {
    font-size: 2.25rem;
    line-height: 3.4375rem;
  }
}
.story__intro:after {
  content: "";
  background-image: url("../img/breaker.svg");
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  height: 3.4375rem;
  margin-top: 1.875rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 40.0625rem) {
  .story__intro:after {
    margin-top: 3.75rem;
    margin-bottom: 3.4375rem;
  }
}

.story-wysiwyg {
  background: #fff;
  max-width: 57.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 40.0625rem) {
  .story-wysiwyg {
    padding: 0 2.5rem;
  }
}
@media (min-width: 62.5625rem) {
  .story-wysiwyg {
    padding: 0 5rem;
  }
}
.story-wysiwyg--bottom {
  position: relative;
  z-index: 2;
  margin-top: 3.75rem;
}
@media (min-width: 48.0625rem) {
  .story-wysiwyg--bottom {
    margin-top: 6.25rem;
  }
}
@media (min-width: 60.0625rem) {
  .story-wysiwyg--bottom {
    padding-top: 4rem;
    margin-top: -3.75rem;
  }
}

.story-detail-outdent {
  margin-bottom: 1.25rem;
}
@media (max-width: 56.1875rem) {
  .story-detail-outdent {
    font-size: 0.8125rem;
    line-height: 1.38;
    padding-bottom: 1.25rem;
    border-bottom: 0.125rem solid #B5B5B5;
    display: table-caption;
    color: #828282;
  }
}
@media (min-width: 56.25rem) {
  .story-detail-outdent {
    padding-right: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: calc(100% + 110px);
    margin: 5rem 0 5rem -3.4375rem;
  }
  .story-detail-outdent::before, .story-detail-outdent::after {
    display: table;
    content: " ";
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .story-detail-outdent::after {
    clear: both;
  }
}
@media (min-width: 62.5625rem) {
  .story-detail-outdent {
    width: calc(100% + 220px);
    margin: 5rem 0 5rem -6.875rem;
  }
}
@media (min-width: 75.0625rem) {
  .story-detail-outdent {
    width: calc(100% + 440px);
    margin: 5rem 0 5rem -13.75rem;
  }
}
.story-detail-outdent img {
  max-width: 22.5rem;
  height: auto;
  display: block;
  margin-bottom: 0.625rem;
}
@media (min-width: 56.25rem) {
  .story-detail-outdent img {
    width: 100%;
    border-right: 0.0625rem solid #B5B5B5;
    border-bottom: none;
    float: left;
    max-width: 25rem;
    padding: 0 2.5rem 0 1.25rem;
    margin-right: 1.875rem;
  }
}
@media (min-width: 62.5625rem) {
  .story-detail-outdent img {
    max-width: 26.875rem;
  }
}
@media (min-width: 75.0625rem) {
  .story-detail-outdent img {
    max-width: 29.375rem;
    padding: 0 3.75rem 0 1.25rem;
    margin-right: 3.75rem;
  }
}

@media (max-width: 58.75rem) {
  .related-stories__featured-column,
  .related-stories__checker-column {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}

.related-stories__featured-column {
  min-height: 31.75rem;
}
@media (max-width: 40rem) {
  .related-stories__featured-column {
    height: 100vh;
    max-height: 37.5rem;
  }
}

@media (min-width: 56.25rem) {
  .related-stories .story-grid-row {
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.17);
            box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.17);
  }
}
.related-stories .small-12 {
  position: relative;
}
.related-stories .row, .related-stories .padded-row {
  max-width: 87.5rem;
  height: 100%;
}
.related-stories .padded-row {
  max-width: 90rem;
  width: 100%;
}
.related-stories .row, .related-stories .padded-row {
  margin: 0 auto;
}
@media (min-width: 40.0625rem) {
  .related-stories .story__img-container {
    overflow: hidden;
    position: absolute;
    height: 100%;
    width: 100%;
  }
}
.related-stories img {
  display: block;
  max-width: none;
  width: 100%;
  height: auto;
}
.related-stories .story__heading {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}
.related-stories .story__excerpt {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.related-stories .story__info {
  padding: 1.875rem;
}
@media (min-width: 40.0625rem) {
  .related-stories .story__info:after {
    left: -1.25rem;
    top: 1.75rem;
  }
}
.related-stories .story--wide-small-feature {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  overflow: hidden;
}
.related-stories .story--wide-small-feature .compat-object-fit-container {
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  min-height: 30rem;
  height: 100%;
  width: 100%;
}
.related-stories .story--wide-small-feature img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-stories .story--wide-small-feature .gradient {
  position: absolute;
  z-index: 2;
  left: 0;
  width: 100%;
  bottom: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(88%, rgba(88, 20, 131, 0.88)));
  background-image: linear-gradient(-180deg, rgba(0, 0, 0, 0) 0%, rgba(88, 20, 131, 0.88) 88%);
  min-height: 15.625rem;
}
@media (max-width: 56.25rem) {
  .related-stories .story--wide-small-feature .gradient {
    background-image: linear-gradient(191deg, rgba(84, 41, 129, 0) 42%, rgba(84, 41, 129, 0.9) 68%);
    opacity: 0.83;
  }
}
.related-stories .story--wide-small-feature .story__info {
  padding-bottom: 0.9375rem;
  position: relative;
  z-index: 3;
  max-width: 24.6875rem;
}
.related-stories .story--wide-small-feature .story__info:after {
  display: none;
}
.related-stories .story--wide-small-feature .story__heading {
  color: #fff;
  font-size: 1.75rem;
}
.related-stories .story--wide-small-feature .story__heading a {
  color: #fff;
}
.related-stories .story--wide-small-feature .story__excerpt {
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.related-stories .story--wide-small-feature .story__term {
  color: #EFD38E !important;
}
.related-stories .story--small-feature {
  width: 100%;
}
.related-stories .story--small-feature img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 40.0625rem) {
  .related-stories .story--small-feature:nth-child(even) .story__img-container:after {
    right: auto;
    left: 0;
    border-left: 1.25rem solid #fff;
    border-right: none;
  }
}
.related-stories .btn--ghost-container {
  margin-top: 0.3125rem;
  margin-bottom: 0;
}
@media (min-width: 40.0625rem) {
  .related-stories .btn--ghost-container {
    margin-top: 2.8125rem;
    margin-bottom: 1.875rem;
  }
}

.story--large-feature .story__heading a {
  color: #000;
}
.story--large-feature .story__info:after:after {
  display: none;
}
.story--large-feature p {
  clear: both;
  font-family: "Noto Serif", "American Typewriter", serif;
  font-style: italic;
}
.story--large-feature .story__subheading {
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.625rem;
}
.story--large-feature .story__subheading span {
  line-height: 1.5;
}
.story--large-feature .story__subheading ul {
  display: inline;
  padding: 0;
  line-height: 1.5;
}
.story--large-feature .story__subheading li {
  display: inline;
  list-style: none;
}
.story--large-feature .story__subheading .story__name:not(:last-child):after,
.story--large-feature .story__subheading li:not(:last-child):after,
.story--large-feature .story__subheading .story__programs:not(:last-child) li:after {
  content: ",";
  margin-right: 0.25rem;
}

/*
-------
EVENTS
-------
*/
.event--small-listing {
  padding-top: 0.3125rem;
}
.event--small-listing .event__title,
.event--small-listing .event__title a {
  font-size: 1.125rem;
  color: #525252;
  font-weight: 300;
}
.event--small-listing .event-title {
  margin-bottom: 0.1875rem;
}

.event__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 1.875rem;
}
@media (min-width: 48.0625rem) {
  .event__flex {
    margin-bottom: 2.1875rem;
  }
}

.event__content {
  padding-left: 1.5rem;
  border-left: 0.0625rem solid #EFD38E;
}

.date-block {
  width: 4.5625rem;
  padding-top: 0.375rem;
}

.date-block {
  font-family: "proxima-nova", "Arial", sans-serif;
  text-transform: uppercase;
  display: block;
  line-height: 1;
}
.date-block__container {
  width: auto;
  display: inline-block;
  text-align: center;
}
.date-block__month {
  font-size: 1.5rem;
  color: #9162AF;
  display: block;
}
.date-block__day {
  font-size: 3rem;
  color: #581483;
  display: block;
  font-weight: 700;
}

/*
-----
NEWS
-----
*/
.news--large-listing .medium-row-reverse {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.news__image {
  display: block;
  max-width: 100%;
  height: auto;
}

.news__title {
  font-size: 1.375rem;
  margin-bottom: 0.625rem;
}

.news__date {
  display: block;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
}

.news__excerpt {
  line-height: 1.5;
}

.news__content {
  padding: 0.9375rem 1.25rem 0;
}

.news-related {
  text-align: center;
}
.news-related .padded-row {
  position: relative;
}
.news-related .row, .news-related .padded-row {
  text-align: left;
}
.news-related .btn {
  background: none;
  border: 0.0625rem solid #EFD38E;
  color: #AD841F;
  margin-top: 1.875rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
.news-related .btn:hover {
  background: #AD841F;
  color: #fff;
}

@media (min-width: 40.0625rem) {
  .news--detail .intro-text {
    margin-bottom: 2.8125rem;
  }
}
.news--detail h1 {
  margin-bottom: 0.625rem;
}

.news__meta {
  margin-bottom: 0.9375rem;
}
.news__meta::before, .news__meta::after {
  display: table;
  content: " ";
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.news__meta::after {
  clear: both;
}
.news__meta .news__date,
.news__meta .news__author {
  display: inline;
  margin-bottom: 0;
  font-size: 1.125rem;
  font-weight: 600;
}
.news__meta .news__author {
  margin-left: 0.625rem;
}
.news__meta .news__author:before {
  content: "—";
  margin-right: 0.625rem;
}

/*
-------------------
FACULTY AND STAFF
-------------------
*/
.listing--faculty span {
  display: block;
  line-height: 1.5;
}

.tuition-contact__heading {
  margin-bottom: 1.5625rem;
}
.tuition-contact__heading .listing--faculty__name {
  margin-bottom: 0;
}

.listing--faculty--tuition .listing--faculty__department {
  padding-bottom: 0.5rem;
  border-bottom: 0.0625rem solid #D3D3D3;
  margin-bottom: 0.8125rem;
}

.listing--faculty__img--circle img {
  border-radius: 50%;
  border: 0.1875rem solid #BDACC8;
  display: block;
  max-width: none;
  width: 100%;
}

@media (max-width: 40rem) {
  .faculty-staff--large-listing .listing--faculty__img--circle {
    margin-bottom: 1.25rem;
    max-width: 10rem;
  }
}
.faculty-staff--large-listing .row, .faculty-staff--large-listing .padded-row {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.faculty-staff--large-listing .faculty-staff--large-listing__info .columns {
  padding-left: 0.9375rem;
}
@media (max-width: 40rem) {
  .faculty-staff--large-listing .faculty-staff--large-listing__info .columns {
    padding-left: 0.625rem;
  }
}

.faculty-staff__info-item {
  display: block;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.faculty-staff__title {
  font-weight: 700;
}

@media (max-width: 56.25rem) {
  .faculty-staff__personal > .row > .small-12, .faculty-staff__personal > .padded-row > .small-12 {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
}

.faculty-staff--detail h1 {
  margin-bottom: 0.9375rem;
}

.faculty-staff__intro {
  margin-bottom: 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.faculty-staff__intro .listing--faculty__img--circle {
  max-width: 12.5rem;
  margin: 0 0 0.9375rem;
  width: 50%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  max-width: 30%;
}
@media (min-width: 56.3125rem) {
  .faculty-staff__intro .listing--faculty__img--circle {
    border-bottom: 0.0625rem solid #D3D3D3;
    padding-bottom: 3.125rem;
    margin-bottom: 1.5625rem;
    margin-bottom: 0.9375rem;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    max-width: 100%;
  }
}
.faculty-staff__intro .listing--faculty__img--circle img {
  max-width: none;
  width: 100%;
  height: auto;
  display: block;
}

.faculty-staff__contact {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 70%;
          flex: 1 1 70%;
  max-width: 70%;
  padding-left: 1.25rem;
}
@media (min-width: 56.3125rem) {
  .faculty-staff__contact {
    margin-bottom: 1.875rem;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    max-width: 100%;
    padding: 0;
  }
}

.faculty-staff__info {
  font-weight: 400;
  line-height: 1.5;
  color: #525252;
}
.faculty-staff__info span {
  display: block;
}

.faculty--staff__courses {
  padding: 0 0.625rem;
}
.faculty--staff__courses .columns {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  background: #F4F4F4;
}
.faculty--staff__courses ul {
  margin: 0;
  padding: 0;
}
.faculty--staff__courses li {
  list-style: none;
  line-height: 1.38;
  margin-bottom: 0.3125rem;
}

.page-contact__heading {
  padding-bottom: 0.9375rem;
  margin-bottom: 1.125rem;
  border-bottom: 0.0625rem solid #D3D3D3;
}

.listing--faculty--contact + .listing--faculty--contact {
  margin-top: 2rem;
}
.listing--faculty--contact .medium-2 {
  padding-right: 0;
}
@media (max-width: 60rem) {
  .listing--faculty--contact .medium-2 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 33.3333%;
            flex: 1 1 33.3333%;
    width: 33.3333%;
    max-width: 33.3333%;
  }
}
@media (max-width: 60rem) {
  .listing--faculty--contact .medium-4 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 66.6666%;
            flex: 1 1 66.6666%;
    width: 66.6666%;
    max-width: 66.6666%;
  }
}
.listing--faculty--contact .listing--faculty--contact__last-column {
  margin-top: 1.25rem;
}
@media (max-width: 60rem) {
  .listing--faculty--contact .listing--faculty--contact__last-column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    width: 100%;
    max-width: none;
  }
}
@media (min-width: 60.0625rem) {
  .listing--faculty--contact .listing--faculty--contact__last-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.listing--faculty--contact .btn {
  margin-bottom: 0;
}
.listing--faculty--contact .faculty-staff__hours {
  margin-bottom: 0.625rem;
}

/*
---------
PROGRAMS
---------
*/
.section--program-finder {
  background-color: #fff;
}
@media (max-width: 53.75rem) {
  .section--program-finder {
    border-bottom: 0.625rem solid #fbf2dd;
  }
}
.section--program-finder .row, .section--program-finder .padded-row {
  padding: 0 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section--program-finder .columns {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  max-width: 100%;
  padding: 0;
}
@media (min-width: 53.8125rem) {
  .section--program-finder .columns {
    padding: 0 3.125rem;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(100% - 598px);
            flex: 1 1 calc(100% - 598px);
    max-width: calc(100% - 598px);
  }
}
@media (min-width: 53.8125rem) {
  .section--program-finder .heading-column {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 598px;
            flex: 1 1 598px;
    max-width: 598px;
  }
}

.section--program-finder__heading {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
}
@media (min-width: 40.0625rem) {
  .section--program-finder__heading {
    font-size: 3rem;
    line-height: 1.18;
  }
}
@media (max-width: 53.75rem) {
  .section--program-finder__heading:after {
    content: "";
    height: 0.0625rem;
    position: relative;
    display: block;
    width: 100%;
    max-width: 6.4375rem;
    background-color: #ccc;
    margin-top: 0.75rem;
  }
}
@media (max-width: 40rem) {
  .section--program-finder__heading:after {
    margin-top: 0.625rem;
    margin-bottom: 0.75rem;
  }
}
.section--program-finder__heading em {
  color: #9162AF;
  font-style: normal;
}

@media (min-width: 53.8125rem) {
  .section--program-finder__links {
    border-top: 0;
    padding-top: 0;
    border-left: 0.0625rem solid #ccc;
  }
}
.section--program-finder__links span, .section--program-finder__links a {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #AD841F;
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 300;
}
@media (min-width: 40.0625rem) {
  .section--program-finder__links span, .section--program-finder__links a {
    font-size: 2rem;
  }
}
.section--program-finder__links span:hover, .section--program-finder__links a:hover {
  text-decoration: none;
}
.section--program-finder__links .flaticon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 53.8125rem) {
  .section--program-finder__links .flaticon {
    position: relative;
  }
}
.section--program-finder__links .flaticon:after {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  padding-left: 1.25rem;
  color: #581483;
}
@media (max-width: 53.75rem) {
  .section--program-finder__links .flaticon:after {
    display: none;
  }
}
@media (max-width: 53.75rem) {
  .section--program-finder__links .flaticon:before {
    content: url("../img/long-arrow.svg");
    left: 0;
    position: absolute;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@media (max-width: 40.0625rem) {
  .section--program-finder__links .flaticon:before {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}
.section--program-finder__links span:hover:after {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

.section--program-links {
  background-color: #525252;
}
.section--program-links h2, .section--program-links h4, .section--program-links p, .section--program-links a {
  color: #fff;
  font-family: "proxima-nova", "Arial", sans-serif;
}
.section--program-links h2, .section--program-links h4 {
  margin-bottom: 1.25rem;
}
.section--program-links h4 {
  margin-top: 3.75rem;
}
.section--program-links ul {
  padding: 0;
}
.section--program-links a {
  font-weight: 700;
  line-height: 1.5;
  padding: 0.625rem 0;
  border-bottom: 0.0625rem solid #EFD38E;
  display: block;
}
.section--program-links .intro-text {
  max-width: 53.75rem;
}

#filter-undergrad-listing,
#filter-grad-listing {
  margin-top: 1.875rem;
}

#results-undergrad-listing,
#results-grad-listing {
  width: 100%;
  border-right: none;
  border-left: none;
  border-top: 0;
}
#results-undergrad-listing td, #results-undergrad-listing tr, #results-undergrad-listing th, #results-undergrad-listing tbody,
#results-grad-listing td,
#results-grad-listing tr,
#results-grad-listing th,
#results-grad-listing tbody {
  border-right: none;
  border-left: none;
}
@media (max-width: 40rem) {
  #results-undergrad-listing thead,
  #results-grad-listing thead {
    display: none;
  }
}
#results-undergrad-listing thead td,
#results-grad-listing thead td {
  background: #581483;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.159375rem;
}
#results-undergrad-listing .filter-table__major,
#results-undergrad-listing .filter-table__minor,
#results-undergrad-listing .filter-table__certificate,
#results-grad-listing .filter-table__major,
#results-grad-listing .filter-table__minor,
#results-grad-listing .filter-table__certificate {
  text-align: center;
}
#results-undergrad-listing tr,
#results-grad-listing tr {
  border-color: #EFD38E;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
@media (min-width: 48.0625rem) {
  #results-undergrad-listing tr:hover,
  #results-grad-listing tr:hover {
    background: #F4F4F4;
  }
}
#results-undergrad-listing .program-table__program__major,
#results-undergrad-listing .program-table__program__minor,
#results-undergrad-listing .program-table__program__certificate,
#results-grad-listing .program-table__program__major,
#results-grad-listing .program-table__program__minor,
#results-grad-listing .program-table__program__certificate {
  font-size: 1.125rem;
  color: #AD841F;
  text-align: center;
}
#results-undergrad-listing .program-table__program__degree,
#results-grad-listing .program-table__program__degree {
  font-size: 1.0625rem;
  font-weight: 700;
}
#results-undergrad-listing .program-table__program__title,
#results-grad-listing .program-table__program__title {
  font-weight: 700;
  font-size: 0;
}
@media (max-width: 48rem) {
  #results-undergrad-listing .program-table__program__title,
  #results-grad-listing .program-table__program__title {
    font-size: 1.125rem;
    padding-left: 0;
    padding-right: 0;
  }
}
#results-undergrad-listing .program-table__program__title a,
#results-grad-listing .program-table__program__title a {
  font-size: 1.125rem;
}
@media (max-width: 48rem) {
  #results-undergrad-listing .program-table__program__title a,
  #results-grad-listing .program-table__program__title a {
    display: block;
    margin-bottom: 0.625rem;
  }
}
@media (max-width: 48rem) {
  #results-undergrad-listing .program-table__program__title .program-table__program + .program-table__program:not(.program-table__program__degree) span,
  #results-grad-listing .program-table__program__title .program-table__program + .program-table__program:not(.program-table__program__degree) span {
    display: block;
    margin-left: -0.125rem;
  }
}
#results-undergrad-listing .program-table__program__title .program-table__program:not(.program-table__program__degree),
#results-grad-listing .program-table__program__title .program-table__program:not(.program-table__program__degree) {
  text-transform: capitalize;
}
@media (max-width: 48rem) {
  #results-undergrad-listing .program-table__program__title .program-table__program:not(.program-table__program__degree),
  #results-grad-listing .program-table__program__title .program-table__program:not(.program-table__program__degree) {
    display: block;
  }
}
@media (max-width: 48rem) {
  #results-undergrad-listing .program-table__program__title .program-table__program__degree,
  #results-grad-listing .program-table__program__title .program-table__program__degree {
    display: block;
    width: 100%;
    margin-top: 0.1875rem;
  }
}
#results-undergrad-listing .program-table__program__title .program-table__program__major,
#results-undergrad-listing .program-table__program__title .program-table__program__minor,
#results-undergrad-listing .program-table__program__title .program-table__program__certificate,
#results-undergrad-listing .program-table__program__title .program-table__program__mobile-type,
#results-grad-listing .program-table__program__title .program-table__program__major,
#results-grad-listing .program-table__program__title .program-table__program__minor,
#results-grad-listing .program-table__program__title .program-table__program__certificate,
#results-grad-listing .program-table__program__title .program-table__program__mobile-type {
  font-weight: 400;
  color: #525252;
}
@media (max-width: 48rem) {
  #results-undergrad-listing .program-table__program__title .program-table__program__major,
  #results-undergrad-listing .program-table__program__title .program-table__program__minor,
  #results-undergrad-listing .program-table__program__title .program-table__program__certificate,
  #results-undergrad-listing .program-table__program__title .program-table__program__mobile-type,
  #results-grad-listing .program-table__program__title .program-table__program__major,
  #results-grad-listing .program-table__program__title .program-table__program__minor,
  #results-grad-listing .program-table__program__title .program-table__program__certificate,
  #results-grad-listing .program-table__program__title .program-table__program__mobile-type {
    font-size: 1.0625rem;
  }
}
#results-undergrad-listing .program-table--mobile-only,
#results-grad-listing .program-table--mobile-only {
  font-size: inherit;
}
@media (min-width: 48.0625rem) {
  #results-undergrad-listing .program-table--mobile-only,
  #results-grad-listing .program-table--mobile-only {
    font-size: 0;
  }
}
@media (max-width: 48rem) {
  #results-undergrad-listing .program-table--desktop-only,
  #results-grad-listing .program-table--desktop-only {
    display: none;
  }
}

.tuition-contact__email,
.program-bio__email {
  position: relative;
  padding-left: 1.875rem;
}
.tuition-contact__email i,
.program-bio__email i {
  position: absolute;
  left: 0;
  top: 0.25rem;
}

@media (min-width: 40.0625rem) {
  .program__overview {
    padding: 0 1.25rem;
  }
}
@media (max-width: 40rem) {
  .program__overview .listing--faculty__img--circle {
    padding-right: 0;
  }
}
.program__overview h1 {
  margin-top: 0;
}
.program__overview > .row, .program__overview > .padded-row {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.program__overview h2 {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid #D3D3D3;
}
.program__overview .program-bio__text {
  font-size: 1.125rem;
}
@media (min-width: 40.0625rem) {
  .program__overview .program-bio__text {
    font-size: 1.25rem;
  }
}
.program__overview .listing--faculty__department {
  padding-bottom: 0;
  border: 0;
}
.program__overview .listing--faculty__name {
  font-weight: 700;
  margin-bottom: 0;
}

.program__degrees .row, .program__degrees .padded-row {
  background: #F4F4F4;
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}
.program__degrees ul {
  padding: 0;
}
@media (min-width: 64.0625rem) {
  .program__degrees ul {
    margin: 0;
  }
}
.program__degrees h2 {
  margin-bottom: 0.625rem;
}
.program__degrees li {
  list-style: none;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}

.program-links__links li {
  width: 16.25rem;
  margin-bottom: 0;
}
@media (max-width: 40rem) {
  .program-links__links li {
    width: 100%;
    margin-bottom: 0.625rem;
  }
}

/* ======================================================= */
/*    HOME HERO - Overrides                                */
/* ======================================================= */
.front-page .tooltip {
  background-color: #FFF;
  color: #581483;
  font-family: "Proxima Nova Rg";
  font-weight: bold;
}
.front-page .tooltip::before {
  border-color: transparent transparent #FFF;
}

.tooltip {
  z-index: 1000 !important;
}

/* ======================================================= */
/*    HOME HERO                                            */
/* ======================================================= */
.home-hero {
  width: 100%;
  height: calc(100vh - 160px);
  position: relative;
  background: #581483;
}

@media only screen and (min-width: 64rem) {
  .home-hero {
    height: 100vh;
  }
}
/*Content Overlay*/
.home-hero__content-overlay {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 60px;
  z-index: 4;
}

.home-hero__content-overlay--wrapper {
  width: 100%;
  padding: 0 1.875rem;
}
@media (min-width: 40.0625rem) {
  .home-hero__content-overlay--wrapper {
    max-width: 75rem;
    padding: rem-cal(0 20);
    margin: 0 auto;
  }
}

.home-hero__content-overlay__cols {
  display: table;
  width: 100%;
  table-layout: fixed;
}

@media only screen and (min-width: 64rem) {
  .home-hero__content-overlay {
    bottom: 10%;
  }
}
/*------ Column: CTA*/
.home-hero__content-overlay__cols__cta {
  display: block;
  width: 100%;
  position: absolute;
  z-index: 5;
  bottom: -1.09375rem;
  padding: 0 1.875rem;
}
@media (min-width: 40.0625rem) {
  .home-hero__content-overlay__cols__cta {
    bottom: -28px;
    padding: 0 10%;
  }
}

.home-hero__content-overlay__cols__cta__icons {
  list-style: none;
  margin: 0;
  line-height: 1;
  width: 100%;
  text-align: left;
  padding: 0;
  margin: 0;
}
.home-hero__content-overlay__cols__cta__icons li {
  display: inline-block;
}
.home-hero__content-overlay__cols__cta__icons li a {
  width: 35px;
  height: 35px;
  line-height: 27px;
  font-size: 16px;
  border: 3px solid #FFF;
  display: block;
  background: #bababa;
  border-radius: 50%;
  text-align: center;
  color: #FFF;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 40.0625rem) {
  .home-hero__content-overlay__cols__cta__icons li a {
    width: 50px;
    height: 50px;
    line-height: 40px;
    font-size: 18px;
    border: 5px solid #FFF;
  }
}
.home-hero__content-overlay__cols__cta__icons li a:hover {
  background: #fff;
  color: #542981;
}
.home-hero__content-overlay__cols__cta__icons li a.home-hero--apply {
  padding-left: 5px;
}
.home-hero__content-overlay__cols__cta__icons li a span.has-tip {
  display: block;
  border: none;
  cursor: pointer;
  font-weight: normal;
}

@media only screen and (min-width: 64rem) {
  .home-hero__content-overlay__cols__cta {
    display: table-cell;
    vertical-align: top;
    width: 130px;
    position: relative;
    bottom: auto;
    padding: 0;
    z-index: 31;
  }
  .home-hero__content-overlay__cols__cta__icons {
    width: 30px;
    text-align: center;
  }
  .home-hero__content-overlay__cols__cta__icons li:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    border-top: 1px dotted #fff;
    border-top: 1px dotted rgba(255, 255, 255, 0.25);
    margin: 10px 0;
  }
  .home-hero__content-overlay__cols__cta__icons li:last-of-type:after {
    display: none;
  }
  .home-hero__content-overlay__cols__cta__icons li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    color: rgba(51, 51, 51, 0.7);
    border: none;
  }
  .home-hero__content-overlay__cols__cta__icons li a:hover {
    background: #fff;
    color: #542981;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
  .home-hero__content-overlay__cols__cta__icons li a:hover .home-hero__cta-tip {
    display: block;
  }
  .home-hero__content-overlay__cols__cta__icons li a.home-hero--visit-campus {
    line-height: 28px;
  }
  .home-hero__content-overlay__cols__cta__icons li a.home-hero--apply {
    padding-left: 6px;
  }
}
.home-hero__cta-tip {
  display: none;
  position: absolute;
  top: calc(100% + 0.625rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0.5rem 0.6875rem;
  z-index: 2;
  background: #fff;
  font-size: 0.5rem;
  font-weight: 600;
  line-height: normal;
  pointer-events: none;
  white-space: nowrap;
}
.home-hero__cta-tip:before {
  content: "";
  display: block;
  position: absolute;
  top: -1rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 0.5rem solid transparent;
  border-bottom-color: #fff;
}

.home-hero__content-overlay__cols__cta__trigger {
  position: absolute;
  right: 40px;
  bottom: 0;
  width: 30px;
  height: 100%;
  line-height: 1;
  text-align: center;
  display: none;
}
.home-hero__content-overlay__cols__cta__trigger a {
  display: block;
  font-size: 45px;
  color: #fff;
  color: rgba(255, 255, 255, 0.4);
  position: absolute;
  bottom: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.home-hero__content-overlay__cols__cta__trigger a:hover {
  color: #fff;
  bottom: 5px;
}
.home-hero__content-overlay__cols__cta__trigger:before {
  position: absolute;
  content: "";
  display: block;
  height: calc(100% - 55px);
  top: 0;
  right: 15px;
  width: 1px;
  border-right: 1px dotted rgba(255, 255, 255, 0.25);
}

@media only screen and (min-width: 64rem) {
  .home-hero__content-overlay__cols__cta__trigger {
    display: block;
  }
}
/*------ Column: Message*/
.home-hero__content-overlay__cols__message {
  display: block;
  color: #fff;
  font-family: "Noto Serif", serif;
  font-size: 1.875rem;
  line-height: 1.3;
  text-shadow: 0 2px 3px rgba(48, 12, 71, 0.35);
}

.home-hero__content-overlay__cols__message--row {
  line-height: 1.3;
}
.home-hero__content-overlay__cols__message--row:first-of-type {
  margin: -18px 0 0;
}
.home-hero__content-overlay__cols__message--row span {
  color: #FFC72C;
}

@media only screen and (min-width: 40rem) {
  .home-hero__content-overlay__cols__message {
    font-size: 50px;
  }
}
@media only screen and (min-width: 64rem) {
  .home-hero__content-overlay__cols__message {
    display: table-cell;
    vertical-align: top;
    font-size: 60px;
  }
}
/*Slide Background Image*/
.home-hero__background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: none;
  background-size: cover;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  opacity: 0.7;
}

@media only screen and (min-width: 64rem) {
  .home-hero__background {
    background-attachment: fixed;
  }
}
.home-hero .mbYTP_wrapper {
  position: fixed !important;
  z-index: 1 !important;
}

/*Gradient*/
.home-hero__gradient {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  mix-blend-mode: multiply;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#26003f+0,542981+34,542981+100&0.9+15,0+58 */
  background: linear-gradient(45deg, rgba(38, 0, 63, 0.9) 0%, rgba(58, 18, 92, 0.9) 15%, rgba(84, 41, 129, 0.5) 34%, rgba(84, 41, 129, 0) 58%, rgba(84, 41, 129, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e626003f", endColorstr="#00542981",GradientType=1 );
}

/* ======================================================= */
/*    Brand Panels                                         */
/* ======================================================= */
/*----------------------------------------------------------*/
.brand-panels {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: #581483;
}
@media screen and (min-width: 1025px) {
  .brand-panels {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.brand-panels .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 0;
  list-style: none;
  background-color: #fefefe;
}
.brand-panels .slick-dots li {
  display: inline-block;
  margin-right: 0.5625rem;
  padding-top: 1rem;
  padding-bottom: 1.75rem;
}
.brand-panels .slick-dots button {
  width: 1rem;
  height: 1rem;
  border: none;
  border-radius: 50%;
  background-color: #F7B500;
  font-size: 0;
}
.brand-panels .slick-dots li.slick-active button {
  background-color: #581483;
}

.brand-panel {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  min-height: 43.625rem;
  padding: 0;
  color: #fefefe;
  overflow: hidden;
  -webkit-transition: width 1.3s ease-out;
  transition: width 1.3s ease-out;
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
@media screen and (min-width: 1025px) {
  .brand-panel {
    width: 100%;
    min-height: 60.5625rem;
    padding: 7.5rem 4.6875rem 4.6875rem;
  }
}
.brand-panel:hover, .brand-panel:focus {
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .brand-panel:hover, .brand-panel:focus {
    max-width: none;
    width: 235%;
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .brand-panel:hover .brand-panel__inner, .brand-panel:focus .brand-panel__inner {
    -webkit-transform: none;
            transform: none;
    -webkit-transition-delay: 0.45s;
            transition-delay: 0.45s;
  }
  .brand-panel:hover .brand-panel__title, .brand-panel:focus .brand-panel__title {
    -webkit-transform: translateY(-3rem);
            transform: translateY(-3rem);
  }
  .brand-panel:hover .brand-panel__content, .brand-panel:focus .brand-panel__content {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.brand-panel article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1025px) {
  .brand-panel article {
    background-color: none;
  }
}
.brand-panel__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 17.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 40em) {
  .brand-panel__background {
    height: 28.125rem;
  }
}
@media screen and (min-width: 1025px) {
  .brand-panel__background {
    height: 100%;
  }
}
.brand-panel__inner {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 1025px) {
  .brand-panel__inner {
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}
.brand-panel__title {
  min-width: 60%;
  height: 17.5rem;
  text-align: center;
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 900;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1;
  -webkit-transform: none;
          transform: none;
  -webkit-transition: -webkit-transform 1.3s ease-out;
  transition: -webkit-transform 1.3s ease-out;
  transition: transform 1.3s ease-out;
  transition: transform 1.3s ease-out, -webkit-transform 1.3s ease-out;
  -webkit-transition-delay: 0.45s;
          transition-delay: 0.45s;
}
@media screen and (min-width: 40em) {
  .brand-panel__title {
    height: 28.125rem;
  }
}
@media screen and (min-width: 1025px) {
  .brand-panel__title {
    position: relative;
    min-width: initial;
    height: auto;
    min-height: 7.1875rem;
  }
}
.brand-panel__title h3 {
  margin-bottom: 0;
  padding-top: 1.875rem;
  font-size: 1.875rem;
  color: #fefefe;
}
@media screen and (min-width: 1025px) {
  .brand-panel__title h3 {
    padding-top: 0;
    font-size: 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .brand-panel__content {
    width: 30.625rem;
    min-width: 30.625rem;
    opacity: 0;
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
    -webkit-transition: opacity 1.3s ease-out, -webkit-transform 1.3s ease-out;
    transition: opacity 1.3s ease-out, -webkit-transform 1.3s ease-out;
    transition: transform 1.3s ease-out, opacity 1.3s ease-out;
    transition: transform 1.3s ease-out, opacity 1.3s ease-out, -webkit-transform 1.3s ease-out;
    -webkit-transition-delay: 0.45s;
            transition-delay: 0.45s;
  }
}
.brand-panel span, .brand-panel em {
  display: block;
  font-style: normal;
  color: #FFC72C;
}
.brand-panel__quote {
  position: relative;
  padding: 7.5rem 1.5rem 0;
  opacity: 1;
  font-family: "Noto Serif", "American Typewriter", serif;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.55);
}
@media screen and (min-width: 1025px) {
  .brand-panel__quote {
    margin-top: 4.1875rem;
    padding: 4.375rem 2.5rem 2.5rem;
    border: 17px solid rgba(255, 255, 255, 0.35);
    -webkit-box-shadow: 0 2px 14px -2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 14px -2px rgba(0, 0, 0, 0.2);
    font-size: 1.75rem;
    text-align: left;
    opacity: 0.75;
  }
}
.brand-panel__quote-text {
  position: relative;
  max-width: 23.125rem;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .brand-panel__quote-text {
    max-width: none;
    margin: 0;
  }
}
.brand-panel__quote-text:before {
  content: '"';
  display: inline-block;
  position: absolute;
  top: -1.875rem;
  left: 50%;
  color: #FFC72C;
  font-family: "Noto Serif", "American Typewriter", serif;
  font-size: 4.5rem;
  line-height: 1;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 1025px) {
  .brand-panel__quote-text:before {
    top: 0;
    left: -18px;
    line-height: 0;
  }
}
.brand-panel__portrait {
  position: absolute;
  top: 0;
  left: 50%;
  width: 80px;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (min-width: 1025px) {
  .brand-panel__portrait {
    top: -80px;
    width: 140px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.brand-panel__portrait img {
  width: 100%;
  display: block;
}
.brand-panel span.brand-panel__attribution {
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 600;
}
@media screen and (min-width: 1025px) {
  .brand-panel span.brand-panel__attribution {
    font-size: 1.25rem;
  }
}
.brand-panel__cta {
  display: block;
  margin: 1.875rem auto 2.1875rem;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .brand-panel__cta {
    margin: auto 0 0;
  }
}
.brand-panel__cta-btn {
  position: relative;
  display: inline-block;
  min-width: 11.625rem;
  padding: 12px 25px;
  color: #AD841F;
  z-index: 1;
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 700;
  letter-spacing: 0.10714rem;
  font-size: 0.875rem;
  background: #fff;
  text-transform: uppercase;
  border-radius: 30px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.brand-panel__cta-btn:hover {
  color: #fefefe;
  background-color: #FFC72C;
}

.panel1 {
  background-color: #581483;
}
@media screen and (min-width: 1025px) {
  .panel1 {
    background-color: transparent;
  }
  .panel1 .brand-panel__quote {
    background-color: #581483;
  }
}
.panel2 {
  background-color: #3F597B;
}
@media screen and (min-width: 1025px) {
  .panel2 {
    background-color: transparent;
  }
  .panel2 .brand-panel__quote {
    background-color: #3F597B;
  }
}
.panel3 {
  background-color: #AD841F;
}
@media screen and (min-width: 1025px) {
  .panel3 {
    background-color: transparent;
  }
  .panel3 .brand-panel__quote {
    background-color: #AD841F;
  }
}

/* ======================================================= */
/*    FWC (FULL WIDTH CAROUSEL)                            */
/* ======================================================= */
.full-width-carousel {
  overflow: hidden;
  background: #581483;
}
.full-width-carousel--controller {
  padding: 1.25rem 0 6.25rem;
}

@media only screen and (min-width: 960px) {
  .full-width-carousel {
    background: #fff;
  }
  .full-width-carousel--controller {
    padding: 0;
  }
}
/*Caption/Text*/
.full-width-carousel__img-element__text {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.full-width-carousel__img-element__text--wrapper {
  color: #fff;
  width: 100%;
}

.full-width-carousel__img-element__text__message {
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 900;
  text-align: center;
  font-size: 15px;
  line-height: 1.3;
  margin-top: 1.5625rem;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.full-width-carousel__img-element__text__message__below_slider {
  color: #000;
}

@media only screen and (min-width: 960px) {
  .full-width-carousel__img-element {
    height: 50vh;
  }
  .full-width-carousel__img-element__text__message {
    font-size: 30px;
    padding: 0 100px;
    opacity: 1;
    margin: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .full-width-carousel__img-element__text__message {
    font-size: 44px;
    margin-bottom: 0;
  }
}
/*Image*/
.full-width-carousel__img-element {
  position: relative;
  line-height: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.full-width-carousel__img-element img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.full-width-carousel__img-element__image-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  top: 0;
}

@media only screen and (min-width: 960px) {
  .full-width-carousel__img-element {
    background: #222;
  }
}
/*Controls*/
.full-width-carousel .slick-slider {
  overflow: hidden;
}

.slick-slide {
  outline: none !important;
}

.full-width-carousel {
  position: relative;
}
.full-width-carousel .slick-slide img {
  width: 100%;
}
.full-width-carousel .slick-prev,
.full-width-carousel .slick-next {
  position: absolute;
  bottom: 2.8125rem;
  z-index: 2;
  border: none;
  background: none;
  padding: 0;
  font-size: 0;
}
.full-width-carousel .slick-prev:hover, .full-width-carousel .slick-prev:focus,
.full-width-carousel .slick-next:hover,
.full-width-carousel .slick-next:focus {
  outline: none;
}
.full-width-carousel .slick-prev:hover:before, .full-width-carousel .slick-prev:focus:before,
.full-width-carousel .slick-next:hover:before,
.full-width-carousel .slick-next:focus:before {
  outline: 1px solid #fefefe;
  border: 1px solid #581483;
  color: #581483;
}
.full-width-carousel .slick-prev {
  left: 40%;
}
.full-width-carousel .slick-next {
  right: 40%;
}
.full-width-carousel .slick-prev:before,
.full-width-carousel .slick-next:before {
  font-family: "Flaticon";
  font-size: 25px;
  line-height: 1;
  padding: 5px;
  background-color: #fefefe;
  color: #9162AF;
}
.full-width-carousel .slick-prev:before {
  content: "\f106";
}
.full-width-carousel .slick-next:before {
  content: "\f105";
}
.full-width-carousel .slick-slide.slick-current.slick-active .full-width-carousel__img-element__text__message {
  opacity: 1;
}
.full-width-carousel .slick-slide img {
  opacity: 0.4;
  padding: 20px;
}
.full-width-carousel .slick-slide.slick-current.slick-active.slick-center img, .full-width-carousel .slick-slide.slick-current.slick-active img {
  opacity: 1;
  padding: 0;
}

@media only screen and (min-width: 960px) {
  .full-width-carousel .slick-prev,
  .full-width-carousel .slick-next {
    top: 0;
    bottom: 0;
    margin: auto;
    color: #fff;
  }
  .full-width-carousel .slick-prev {
    left: 50px;
  }
  .full-width-carousel .slick-next {
    right: 50px;
  }
}
/*Center Mode Overrides*/
/*Tint*/
.tint-5 .full-width-carousel__img-element__image-cover {
  opacity: 0.95;
}

.tint-10 .full-width-carousel__img-element__image-cover {
  opacity: 0.9;
}

.tint-15 .full-width-carousel__img-element__image-cover {
  opacity: 0.85;
}

.tint-20 .full-width-carousel__img-element__image-cover {
  opacity: 0.8;
}

.tint-25 .full-width-carousel__img-element__image-cover {
  opacity: 0.75;
}

.tint-30 .full-width-carousel__img-element__image-cover {
  opacity: 0.7;
}

.tint-35 .full-width-carousel__img-element__image-cover {
  opacity: 0.65;
}

.tint-40 .full-width-carousel__img-element__image-cover {
  opacity: 0.6;
}

.tint-45 .full-width-carousel__img-element__image-cover {
  opacity: 0.55;
}

.tint-50 .full-width-carousel__img-element__image-cover {
  opacity: 0.5;
}

.tint-55 .full-width-carousel__img-element__image-cover {
  opacity: 0.45;
}

.tint-60 .full-width-carousel__img-element__image-cover {
  opacity: 0.4;
}

.tint-65 .full-width-carousel__img-element__image-cover {
  opacity: 0.35;
}

.tint-70 .full-width-carousel__img-element__image-cover {
  opacity: 0.3;
}

.tint-75 .full-width-carousel__img-element__image-cover {
  opacity: 0.25;
}

.tint-80 .full-width-carousel__img-element__image-cover {
  opacity: 0.2;
}

.tint-85 .full-width-carousel__img-element__image-cover {
  opacity: 0.15;
}

.tint-90 .full-width-carousel__img-element__image-cover {
  opacity: 0.1;
}

.tint-95 .full-width-carousel__img-element__image-cover {
  opacity: 0.05;
}

/* ======================================================= */
/*    SOCIAL SLIDER                                        */
/* ======================================================= */
.social-slider {
  position: relative;
  background: #fff;
  overflow: hidden;
}
@media (max-width: 56.25rem) {
  .social-slider {
    padding-bottom: 2.5rem;
  }
}
.social-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.social-slider .slick-slide {
  float: none;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.social-slider__ind-element {
  border: 1px solid #DDD;
}

.social-slider__ind-element__image {
  display: block;
  line-height: 0;
  background: #581483;
}
.social-slider__ind-element__image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.social-slider__ind-element__image:hover img {
  opacity: 0.4;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.social-slider__ind-element__post-content {
  padding: 40px 30px 30px;
  position: relative;
}

/*----social icon*/
.social-slider__ind-element__post-content__icon {
  position: absolute;
  top: -15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.social-slider__ind-element__post-content__icon--wrapper {
  display: inline-block;
  text-align: center;
  padding: 10px;
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
}
.social-slider__ind-element__post-content__icon--wrapper span {
  top: -4px;
  display: block;
  position: relative;
}
.social-slider__ind-element__post-content__icon--wrapper span.facebook, .social-slider__ind-element__post-content__icon--wrapper span.fa-facebook {
  color: #3b5998;
}
.social-slider__ind-element__post-content__icon--wrapper span.twitter, .social-slider__ind-element__post-content__icon--wrapper span.fa-twitter {
  color: #1da1f2;
}
.social-slider__ind-element__post-content__icon--wrapper span.youtube, .social-slider__ind-element__post-content__icon--wrapper span.fa-youtube-play {
  color: #FF0000;
}
.social-slider__ind-element__post-content__icon--wrapper span.linkedin .social-slider__ind-element__post-content__icon--wrapper span.fa-linkedin {
  color: rgb(0, 115, 176);
}
.social-slider__ind-element__post-content__icon--wrapper span.zeemee {
  width: 100%;
  height: 100%;
  background: #fff url(../img/zeemee_logo.png) no-repeat;
  background-size: contain;
}

.social-slider__ind-element__post-content__title {
  font-size: 16px;
  color: #581483;
  text-align: center;
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.social-slider__ind-element__post-content__post {
  font-size: 16px;
  color: #444;
  font-family: "Noto Serif", "American Typewriter", serif;
}

.social-slider__ind-element__post-content__more {
  text-align: center;
  margin: 20px 0 0;
}
.social-slider__ind-element__post-content__more a {
  color: #AD841F;
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 14px;
}
.social-slider__ind-element__post-content__more a:hover {
  color: #581483;
}

/*Controls*/
.slick-slide {
  outline: none !important;
}

.social-slider .slick-slide {
  padding: 0 5px;
}

/*Arrows*/
.social-slider__arrows {
  text-align: center;
  margin: 20px 0 0;
}

.social-slider__prev, .social-slider__next {
  display: inline-block;
  padding: 0 5px;
}

.social-slider__prev a, .social-slider__next a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid #9162AF;
  border: 3px solid rgb(145, 98, 175);
  border-radius: 50%;
  line-height: 44px;
  text-align: center;
  font-size: 24px;
  color: #581483;
  opacity: 0.5;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.social-slider__prev a:hover, .social-slider__next a:hover {
  opacity: 1;
  background: #fff;
}

@media only screen and (min-width: 900px) {
  .social-slider__arrows {
    margin: 0;
  }
  .social-slider__prev {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 225px;
    padding: 0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0.93+13,0+100 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.93)), color-stop(13%, rgba(255, 255, 255, 0.93)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0.93) 0%, rgba(255, 255, 255, 0.93) 13%, rgba(255, 255, 255, 0) 100%);
  }
  .social-slider__next {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 225px;
    padding: 0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,0.93+87 */
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(87%, rgba(255, 255, 255, 0.93)), to(rgba(255, 255, 255, 0.93)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.93) 87%, rgba(255, 255, 255, 0.93) 100%);
  }
  .social-slider__prev a, .social-slider__next a {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .social-slider .social-slider__prev a {
    left: -80px;
  }
  .social-slider .social-slider__next a {
    right: -80px;
  }
  .social-slider:hover .social-slider__prev a {
    left: 30px;
  }
  .social-slider:hover .social-slider__next a {
    right: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .social-slider__prev a, .social-slider__next a {
    width: 70px;
    height: 70px;
    border: 4px solid #9162AF;
    border: 4px solid rgb(145, 98, 175);
    font-size: 30px;
    line-height: 62px;
  }
}
/* ======================================================= */
/*    VSP (VIDEO SLIDE PANEL)                              */
/* ======================================================= */
/*youtube video container*/
.video-slide-panel__video {
  position: relative;
  display: none;
}

.video-slide-panel__video__close {
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 2;
}
.video-slide-panel__video__close a {
  display: block;
  color: #FFF;
  font-size: 24px;
  background: #581483;
  background: rgba(88, 20, 131, 0.6);
  padding: 10px 20px 10px 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-right: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.video-slide-panel__video__close a:hover {
  background: #9162AF;
  color: #FFF;
}

/*content*/
.video-slide-panel__content {
  position: relative;
}

.video-slide-panel__content__info {
  position: relative;
  z-index: 2;
  width: 100%;
  background: #581483;
  padding: 10px 0 30px;
}

.video-slide-panel__content__info__title {
  font-size: 30px;
  color: #fff;
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 3px rgba(48, 12, 71, 0.35);
}

.video-slide-panel__content__info__container {
  margin: 30px 0 0;
}

.video-slide-panel__content__info__headshot-trigger {
  position: relative;
  line-height: 0;
  display: inline-block;
  vertical-align: middle;
  margin: 0 20px 0 0;
}

.video-slide-panel__content__info__headshot {
  width: 60px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.5);
}
.video-slide-panel__content__info__headshot img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.video-slide-panel__content__info__trigger {
  margin: -10px 0 0;
}
.video-slide-panel__content__info__trigger a {
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.video-slide-panel__content__info__trigger a .video-slide-panel__content__info__trigger--wrapper {
  width: 60px;
  height: 60px;
  background: #fff;
  line-height: 61px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 0 0 0 5px;
  -webkit-box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.5);
}
.video-slide-panel__content__info__trigger a i {
  color: #AD841F;
  font-size: 22px;
}
.video-slide-panel__content__info__trigger a:hover {
  -webkit-transform: rotate(-8deg) scale(1.8);
  transform: rotate(-8deg) scale(1.8);
}
.video-slide-panel__content__info__trigger a:hover .video-slide-panel__content__info__trigger--wrapper {
  background: #AD841F;
}
.video-slide-panel__content__info__trigger a:hover i {
  color: #FFF;
}
.video-slide-panel__content__info__trigger a .video-slide-panel__content__info__trigger--wrapper, .video-slide-panel__content__info__trigger a i {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

@media only screen and (min-width: 1100px) {
  .video-slide-panel__content__info__container {
    margin: 50px 0 0;
  }
  .video-slide-panel__content__info {
    position: absolute;
    bottom: 80px;
    background: none;
    padding: 0;
  }
  .video-slide-panel__content__info__title {
    font-size: 85px;
  }
  .video-slide-panel__content__info__headshot-trigger {
    margin: 0 30px 0 0;
  }
  .video-slide-panel__content__info__headshot {
    width: 125px;
  }
  .video-slide-panel__content__info__trigger {
    position: absolute;
    bottom: -8px;
    left: 0;
    margin: 0;
  }
  .video-slide-panel__content__info__trigger a .video-slide-panel__content__info__trigger--wrapper {
    width: 50px;
    height: 50px;
    line-height: 51px;
  }
}
.video-slide-panel__content__info__author {
  display: inline-block;
  vertical-align: middle;
}

.video-slide-panel__content__info__author--name {
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #FFC72C;
}
.video-slide-panel__content__info__author--name span {
  color: #FFF;
}

.video-slide-panel__content__info__author--programs {
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 300;
  font-weight: bold;
  font-size: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.video-slide-panel__content__info__author--programs:before {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.video-slide-panel__content__info__author--programs a {
  color: rgba(255, 255, 255, 0.7);
}
.video-slide-panel__content__info__author--programs li {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
}
.video-slide-panel__content__info__author--programs li:before {
  content: "•";
  color: #EFD38E;
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
}
.video-slide-panel__content__info__author--programs li:first-of-type:before {
  display: none;
}

.video-slide-panel__content__info__author--hometown {
  font-family: "Noto Serif", "American Typewriter", serif;
  font-style: italic;
  color: #B5B5B5;
  font-size: 11px;
}

@media only screen and (min-width: 600px) {
  .video-slide-panel__content__info__author--name {
    font-size: 20px;
  }
  .video-slide-panel__content__info__author--programs li {
    font-size: 14px;
  }
  .video-slide-panel__content__info__author--hometown {
    font-size: 12px;
  }
}
/*Gradient*/
.video-slide-panel__content__gradient {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#542981+0,542981+100&0.9+10,0+82 */
  background: linear-gradient(45deg, rgba(84, 41, 129, 0.9) 0%, rgba(84, 41, 129, 0.9) 10%, rgba(84, 41, 129, 0) 82%, rgba(84, 41, 129, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e6542981", endColorstr="#00542981",GradientType=1 );
}

/*Main Image*/
.video-slide-panel__content__main-image {
  position: relative;
  width: 100%;
  line-height: 0;
}
.video-slide-panel__content__main-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.video-slide-panel__content__main-image:before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  height: 50%;
  width: 100%;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#581483+0,581483+100&0+0,1+92 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(88, 20, 131, 0)), color-stop(92%, rgb(88, 20, 131)), to(rgb(88, 20, 131)));
  background: linear-gradient(to bottom, rgba(88, 20, 131, 0) 0%, rgb(88, 20, 131) 92%, rgb(88, 20, 131) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00581483", endColorstr="#581483",GradientType=0 );
}

@media only screen and (min-width: 1100px) {
  .video-slide-panel__content__main-image:before {
    display: none;
  }
}
.nav a:hover,
.main-nav-wrapper a:hover {
  text-decoration-line: none;
}

:root {
  --nav-height-inner: 2.5rem;
  --nav-padding: 1rem;
  --nav-height: calc((2 * var(--nav-padding)) + var(--nav-height-inner));
  --nav-toggle-size-outer: 2.5rem;
  --nav-toggle-padding: 0.75rem;
  --nav-toggle-size-inner: calc(var(--nav-toggle-size-outer) - (2 * var(--nav-toggle-padding)));
}

.nav {
  background: var(--color-background-light);
  position: sticky;
  z-index: 99;
  top: 0;
  -webkit-transition: height 0.25s ease-in-out;
  transition: height 0.25s ease-in-out;
  height: var(--nav-height);
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.nav.container-lg {
  max-width: unset;
  padding: unset;
}

.nav-layout {
  overflow: hidden;
  padding: 1rem 0;
  display: grid;
  grid-template-rows: var(--nav-height-inner);
  grid-template-columns: 8rem 1fr var(--nav-toggle-size-outer);
  -webkit-transition: grid-template-rows 0.25s ease-in-out;
  transition: grid-template-rows 0.25s ease-in-out;
  transition: grid-template-rows 0.25s ease-in-out, -ms-grid-rows 0.25s ease-in-out;
  -webkit-column-gap: var(--space-xs);
     -moz-column-gap: var(--space-xs);
          column-gap: var(--space-xs);
  row-gap: var(--space-xs);
}

[data-nav-open=true] .nav-layout {
  grid-template-rows: var(--nav-height-inner) 1fr;
}
[data-nav-open=true] .nav {
  height: 100vh;
}
[data-nav-open=true] .mobile-nav-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  overflow: auto;
}
[data-nav-open=true] body {
  overflow: hidden;
}

.nav a,
.main-nav-wrapper a {
  color: var(--color-text);
  -webkit-transition: color 200ms;
  transition: color 200ms;
}
.nav a:where(:hover),
.main-nav-wrapper a:where(:hover) {
  color: var(--color-link-hover);
}

.nav-logo {
  display: block;
}
.nav-logo svg,
.nav-logo img {
  height: 100%;
  max-width: 10rem;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: var(--space-xs);
}

.nav-toggle-button > span:is(:first-child, :last-child) {
  -webkit-transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

button.nav-toggle {
  color: var(--color-text);
  -webkit-tap-highlight-color: transparent;
  -ms-flex-item-align: center;
      align-self: center;
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: var(--nav-toggle-padding);
  padding-right: 0;
  height: var(--nav-toggle-size-outer);
  width: var(--nav-toggle-size-outer);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-toggle div {
  pointer-events: none;
  height: 2px;
  width: var(--nav-toggle-size-inner);
  background: currentColor;
  -webkit-transition: all 250ms;
  transition: all 250ms;
}

[data-nav-open=true] .nav-toggle div:first-child {
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
[data-nav-open=true] .nav-toggle div:last-child {
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}
[data-nav-open=true] .nav-toggle div:first-child {
  -webkit-transform: rotate(-45deg) scaleX(1.3);
          transform: rotate(-45deg) scaleX(1.3);
}
[data-nav-open=true] .nav-toggle div:nth-child(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
[data-nav-open=true] .nav-toggle div:last-child {
  -webkit-transform: rotate(45deg) scaleX(1.3);
          transform: rotate(45deg) scaleX(1.3);
}

.utility-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.utility-nav .utility-menu {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.utility-nav .utility-menu .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.utility-nav .utility-menu .menu a {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: bold;
}
.utility-nav .utility-menu .menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-nav-wrapper {
  display: none;
  overflow: hidden;
  grid-column: 1/-1;
  margin-bottom: 0;
}
.main-nav-wrapper .main-nav {
  display: grid;
  grid-template-columns: auto 1fr;
}
.main-nav-wrapper .main-nav.container-lg {
  max-width: unset;
  padding: unset;
}
.main-nav-wrapper .main-nav > ul {
  margin: 1rem 0 0 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.5rem;
}
.main-nav-wrapper .main-nav a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.main-nav-wrapper .main-nav > ul > li {
  margin-bottom: 0.5rem;
}
.main-nav-wrapper .main-nav .main-menu {
  grid-column: unset;
}

.main-nav-cta {
  grid-column: unset;
  height: 100%;
  border-right: 1px solid white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-sm);
  padding-right: var(--space-sm);
}
.main-nav-cta a {
  position: relative;
  font-weight: 500;
  font-size: 0.8rem;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--space-xs);
}
.main-nav-cta a::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-gold-light);
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
}
.main-nav-cta a:hover::after {
  width: 100%;
}
.main-nav-cta a::before {
  font-size: 0.75rem;
  color: var(--color-gold-light);
}
.main-nav-cta a:nth-child(1)::before {
  font-family: "Flaticon";
  content: "\f101";
}
.main-nav-cta a:nth-child(2)::before {
  font-family: "Flaticon";
  content: "\f102";
}
.main-nav-cta a:nth-child(3)::before {
  font-family: "Flaticon";
  content: "\f104";
}

.main-nav-wrapper .main-nav-cta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav-wrapper {
  height: 0;
  -webkit-transition: height 0.25s ease-in-out;
  transition: height 0.25s ease-in-out;
  overflow: auto;
  grid-row: 2;
  grid-column: 1/-1;
}
.mobile-nav-wrapper .main-nav-cta {
  width: 100%;
  height: unset;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  border-bottom: 1px solid var(--color-ui);
}
.mobile-nav-wrapper .main-nav-cta a {
  font-size: 1rem;
  color: var(--color-text);
  gap: var(--space-xs);
}
.mobile-nav-wrapper .utility-menu {
  display: block;
}
.mobile-nav-wrapper a:where(:hover) {
  color: var(--color-text);
}
.mobile-nav-wrapper .menu > .menu-item {
  padding: var(--space-sm) var(--space-xs);
  border-bottom: 1px solid var(--color-ui);
}
.mobile-nav-wrapper .menu-item > a {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: var(--space-sm);
     -moz-column-gap: var(--space-sm);
          column-gap: var(--space-sm);
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-wrapper .menu > .menu-item:not(.menu-item-has-children) > a:after {
  content: " ";
  background-color: var(--color-gold);
  -webkit-mask-image: url("/wp-content/themes/hsu-theme/templates/home-new/assets/img/arrow-right-line.svg");
  mask-image: url("/wp-content/themes/hsu-theme/templates/home-new/assets/img/arrow-right-line.svg");
  width: 1.25rem;
  height: 1.25rem;
}
.mobile-nav-wrapper .menu-item-has-children > a:after {
  content: " ";
  background-color: var(--color-gold);
  -webkit-mask-image: url("/wp-content/themes/hsu-theme/templates/home-new/assets/img/add-line.svg");
  mask-image: url("/wp-content/themes/hsu-theme/templates/home-new/assets/img/add-line.svg");
  width: 1.25rem;
  height: 1.25rem;
  -webkit-transform: rotate(0);
          transform: rotate(0);
  -webkit-transition: -webkit-transform 250ms;
  transition: -webkit-transform 250ms;
  transition: transform 250ms;
  transition: transform 250ms, -webkit-transform 250ms;
}
.mobile-nav-wrapper .menu-item-has-children {
  display: grid;
  grid-template-rows: 1.5rem 0fr;
  -webkit-transition: grid-template-rows 0.25s ease-in-out;
  transition: grid-template-rows 0.25s ease-in-out;
  transition: grid-template-rows 0.25s ease-in-out, -ms-grid-rows 0.25s ease-in-out;
  position: relative;
}
.mobile-nav-wrapper .menu-item-has-children[data-open=true] {
  grid-template-rows: 1.5rem 1fr;
}
.mobile-nav-wrapper .menu-item-has-children[data-open=true] > a:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mobile-nav-wrapper .sub-menu {
  overflow: hidden;
  font-size: 0.9rem;
}
.mobile-nav-wrapper .sub-menu > li:first-child {
  margin-top: var(--space-sm);
}
.mobile-nav-wrapper .sub-menu > li:last-child {
  margin-bottom: var(--space-xs);
}
.mobile-nav-wrapper .sub-menu > li > a {
  display: block;
  padding: var(--space-xs);
}
.mobile-nav-wrapper .sub-menu > li {
  padding: 0 var(--space-sm);
}

@media screen and (min-width: 880px) {
  .nav {
    position: relative;
    height: unset !important;
    z-index: unset;
    overflow: unset;
    -webkit-box-shadow: unset;
            box-shadow: unset;
  }
  .nav-layout {
    overflow: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.5rem;
  }
  .mobile-nav-wrapper {
    display: none !important;
  }
  .nav-logo {
    margin-right: auto;
  }
  .main-nav-wrapper {
    display: grid;
  }
  button.nav-toggle {
    display: none;
  }
  .main-nav-wrapper {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 99;
    background-color: var(--color-purple);
    align-self: center;
    overflow: visible;
    grid-column: 1/-1;
  }
  body:has(#wpadminbar) .main-nav-wrapper {
    top: 32px;
  }
  .main-nav-wrapper .main-menu {
    overflow: visible;
  }
  .main-nav-wrapper a {
    margin-left: unset;
  }
  .main-menu > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-size: 1rem;
    font-weight: bold;
    overflow: visible;
    margin: unset;
    margin-right: calc(-1 * var(--space-sm));
  }
  .main-menu > ul > li {
    margin: unset;
    position: relative;
  }
  .main-menu > ul > li > a {
    color: white;
    font-size: 0.8rem;
    text-align: center;
    padding: var(--space-sm);
    text-transform: uppercase;
    background-color: transparent;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }
  .main-menu > ul > li > a:hover {
    background-color: var(--color-gold);
  }
  .utility-nav .menu-item-has-children {
    display: block;
  }
  .utility-nav .utility-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .utility-nav .sub-menu,
  .main-nav-wrapper .sub-menu {
    max-height: 0;
    position: absolute;
    top: calc(100% + 15px);
    background: var(--color-background-light);
    z-index: 999;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    overflow: hidden;
    padding: 0 var(--space-md);
    -webkit-transition: all 250ms;
    transition: all 250ms;
    width: 37.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
    grid-auto-flow: row;
    gap: var(--space-md);
    -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  }
  .utility-nav .sub-menu::before,
  .main-nav-wrapper .sub-menu::before {
    content: " ";
    position: absolute;
    width: 100%;
    bottom: 100%;
    left: 0;
    height: 15px;
    background-color: transparent;
  }
  .utility-nav .sub-menu::after,
  .main-nav-wrapper .sub-menu::after {
    content: " ";
    position: absolute;
    bottom: 100%;
    left: var(--space-md);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid white;
    padding: 0 var(--spage-lg);
  }
  .utility-nav .sub-menu {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    grid-template-columns: 1fr;
  }
  .utility-nav > .utility-menu > ul > li > .sub-menu {
    left: -50%;
  }
  .main-nav-wrapper .main-menu > ul > li:last-child > .sub-menu,
  .main-nav-wrapper .main-menu > ul > li:nth-last-child(2) > .sub-menu,
  .main-nav-wrapper .main-menu > ul > li:nth-last-child(3) > .sub-menu,
  .main-nav-wrapper .main-menu > ul > li:nth-last-child(4) > .sub-menu {
    left: unset;
    right: 0;
  }
  .main-nav-wrapper .main-menu > ul > li:last-child > .sub-menu::after,
  .main-nav-wrapper .main-menu > ul > li:nth-last-child(2) > .sub-menu::after,
  .main-nav-wrapper .main-menu > ul > li:nth-last-child(3) > .sub-menu::after,
  .main-nav-wrapper .main-menu > ul > li:nth-last-child(4) > .sub-menu::after {
    left: unset;
    right: var(--space-md);
  }
  .main-nav-wrapper .main-menu > ul > li:hover > .sub-menu,
  .utility-nav > .utility-menu > ul > li:hover > .sub-menu {
    padding: var(--space-md);
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    overflow: unset;
  }
  .main-menu .sub-menu > li > a,
  .utility-menu .sub-menu > li > a {
    font-size: 1rem;
    font-weight: normal;
    position: relative;
  }
  .main-menu .sub-menu > li > a:hover,
  .utility-menu .sub-menu > li > a:hover {
    color: var(--color-text);
  }
  .main-menu .sub-menu > li > a::after,
  .utility-menu .sub-menu > li > a::after {
    content: " ";
    position: absolute;
    top: calc(100% + var(--space-xs));
    left: 0;
    width: 0;
    height: 4px;
    background-color: var(--color-gold-light);
    opacity: 0.75;
    -webkit-transition: width 0.4s;
    transition: width 0.4s;
  }
  .utility-menu > .menu > li:not(.menu-item-has-children):hover {
    text-decoration-line: underline;
  }
  .utility-menu > .menu > li:not(.menu-item-has-children):hover a {
    color: var(--color-text);
  }
  .utility-menu > .menu > li:not(.menu-item-has-children):hover a::after {
    text-decoration-line: none;
  }
  .utility-menu .sub-menu > li > a {
    font-size: 0.8rem;
    text-wrap: nowrap;
    text-transform: unset;
  }
  .main-menu .sub-menu > li > a:hover::after,
  .utility-menu .sub-menu > li > a:hover::after {
    width: 100%;
  }
  .utility-nav .sub-menu > li > a {
    font-size: 1rem;
  }
  .utility-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .utility-menu > .menu {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: var(--space-md);
  }
  .utility-nav > .utility-menu > .menu > li {
    position: relative;
  }
  .utility-nav > .utility-menu > .menu > li > a:before {
    font-family: "Flaticon";
    color: var(--color-gold);
    margin-right: var(--space-xs);
  }
  .utility-nav > .utility-menu > .menu > li:first-child > a:before {
    content: "\f10a";
  }
  .utility-nav > .utility-menu > .menu > li:nth-child(2) > a:before {
    content: "\f10b";
    margin-right: 1.25rem;
  }
  .utility-nav > .utility-menu > .menu > li:nth-child(3) > a:before {
    content: "\f10c";
  }
}
@media screen and (min-width: 1180px) {
  .main-nav-wrapper .main-nav .main-nav-cta {
    gap: var(--space-md);
    padding-right: var(--space-md);
  }
  .main-nav-wrapper .main-nav .main-nav-cta a {
    font-size: 0.9rem;
  }
  .main-menu > ul > li > a {
    font-size: 0.9rem;
  }
}
.utility-nav--search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid transparent;
  height: 36px;
  border-radius: 17.5px;
}

.utility-nav--search .search--button {
  display: none;
  position: relative;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: bold;
  margin: 0;
  cursor: pointer;
}

.utility-nav--search .search--label {
  width: 0;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
}

.utility-nav--search .search--input {
  border: none;
  padding: 0;
}

.utility-nav--search .search--submit {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  background-color: var(--color-gold);
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-left: var(--space-xs);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.utility-nav--search .search--submit i {
  font-size: 0.5rem;
}

.utility-nav--search .search--input {
  font-size: 1rem;
}

.utility-nav--search[data-search-active=false]:hover .search--button {
  text-decoration-line: underline;
}

.utility-nav--search[data-search-active=true] {
  border-color: var(--color-gold);
}

.utility-nav--search[data-search-active=true] .search--label {
  padding: 0 var(--space-xs);
  width: 150px;
}

.utility-nav--search[data-search-active=true] .search--button {
  display: none;
}

.utility-nav--search[data-search-active=true] .search--submit {
  width: 35px;
  height: 35px;
  margin-left: 0;
}

.utility-nav--search[data-search-active=true] .search--input {
  padding: 0 var(--space-xs);
}

@media screen and (min-width: 880px) {
  .utility-nav--search {
    margin-left: var(--space-md);
  }
  .utility-nav--search .search--button {
    display: block;
  }
  .utility-nav--search .search--submit {
    width: 15px;
    height: 15px;
  }
  .utility-nav--search .search--input {
    font-size: 0.8rem;
  }
}
.banner-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: var(--space-md);
}

.banner {
  max-width: 1080px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: var(--space-sm);
}

.banner-image {
  padding-right: var(--space-sm);
  border-right: 1px solid var(--color-gold);
}
.banner-image img {
  width: 40px;
}

.banner-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text);
}
.banner-text * {
  margin: 0;
}
.banner-text p {
  max-width: 80ch;
}
.banner-text a {
  color: var(--color-purple);
  font-weight: 500;
}
.banner-text a:hover {
  text-decoration-line: underline;
}

@media screen and (min-width: 880px) {
  .banner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: var(--space-md);
  }
  .banner-image {
    padding-right: var(--space-md);
  }
  .banner-image img {
    width: 50px;
  }
}
.nav *,
.main-nav-wrapper * {
  line-height: 1.5;
}
.nav .main-nav-cta > a,
.main-nav-wrapper .main-nav-cta > a {
  font-weight: 500;
}
.nav .menu > li > a,
.main-nav-wrapper .menu > li > a {
  font-weight: 500;
}

.utility-nav--search .search--label {
  overflow: hidden;
}
.utility-nav--search .search--submit {
  padding-block: 1px;
  -webkit-padding-start: 6px;
          padding-inline-start: 6px;
  -webkit-padding-end: 6px;
          padding-inline-end: 6px;
  cursor: pointer;
}
.utility-nav--search .search--submit i {
  color: white;
}
.utility-nav--search[data-search-active=true] .search--label {
  overflow: unset;
}
.utility-nav--search input {
  width: 100%;
  font-size: 1rem;
}
.utility-nav--search input:focus-visible {
  border: none;
  outline: none;
}

.footer {
  clip-path: polygon(50% 2rem, calc(50% + 6rem) 0, 100% 0, 100% 100%, 0 100%, 0 0, calc(50% - 6rem) 0);
  margin-bottom: 0;
}
.footer .footer--content {
  width: 100%;
  padding: var(--space-lg) var(--space-sm) var(--space-md);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  row-gap: var(--space-md);
  grid-template-areas: "logo" "address" "links";
}
.footer .footer--content .footer--logo {
  grid-area: logo;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-md);
}
.footer .footer--content .footer--logo a {
  max-width: 325px;
}
.footer .footer--content .footer--description p {
  margin: 0;
}
.footer .footer--content .footer--address {
  width: 100%;
  grid-area: address;
}
.footer .footer--content .footer--links {
  grid-area: links;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--space-xs);
}
.footer .footer--content .footer--links .menu {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--space-xs);
}
.footer .footer--content .footer--links .menu * {
  list-style-type: none;
}
.footer .footer--content .footer--links .menu li a {
  font-weight: normal;
}
@media screen and (min-width: 880px) {
  .footer .footer--content {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, auto);
    grid-template-areas: "logo links" "logo address";
    padding: var(--space-xl) 0 var(--space-md);
  }
  .footer .footer--content a:hover {
    text-decoration-line: underline;
  }
  .footer .footer--content .footer--address p {
    display: grid;
    grid-template-columns: 150px 1fr;
    margin-bottom: var(--space-xs);
  }
  .footer .footer--content .footer--address p a {
    color: var(--color-text);
    font-weight: normal;
  }
  .footer .footer--content .footer--description,
  .footer .footer--content .footer--address {
    padding-right: 8rem;
  }
  .footer .footer--content .footer--links .menu {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, auto);
  }
}

.footer {
  margin-bottom: -40px;
}
.footer * {
  line-height: 1.5;
}

/*
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 * Credit to Paul Irish and HTML5 Boilerplate (html5boilerplate.com)
*/
.print-only {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 1cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .hide-on-print {
    display: none !important;
  }
  .print-only {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  .show-for-print {
    display: inherit !important;
  }
  a[href]:after {
    display: none;
  }
}
/***************************************************************************
// * iubenda Cookie Solution                                               *
// *                                                                       *
// * Sample CSS v2.3.0                                                     *
// *                                                                       *
// * (c) 2019 iubenda srl <info@iubenda.com>                               *
// * All Rights Reserved.                                                  *
// *                                                                       *
// *************************************************************************
//*/
/*
-----------------
IMPORTANT: Changing the following values may prevent the notice from being displayed properly.
-----------------
*/
#iubenda-cs-banner {
  background: none !important;
  position: fixed !important;
  z-index: 99999998 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  will-change: opacity;
  opacity: 0 !important;
  pointer-events: none !important;
  -webkit-transition: opacity 0.4s ease !important;
  transition: opacity 0.4s ease !important;
  /* default */
}

#iubenda-cs-banner [class*=" iub"],
#iubenda-cs-banner [class^=iub],
#iubenda-cs-banner .iubenda-banner-content:not(.iubenda-custom-content) * {
  width: auto !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  height: auto !important;
  left: auto !important;
  opacity: 1;
  z-index: auto !important;
}

#iubenda-cs-banner.iubenda-cs-overlay:before {
  content: "" !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  z-index: 1 !important;
  pointer-events: auto !important;
}

#iubenda-cs-banner.iubenda-cs-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

#iubenda-cs-banner.iubenda-cs-top {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

#iubenda-cs-banner.iubenda-cs-bottom {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

#iubenda-cs-banner.iubenda-cs-left {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

#iubenda-cs-banner.iubenda-cs-right {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

#iubenda-cs-banner.iubenda-cs-visible {
  opacity: 1 !important;
}

#iubenda-cs-banner.iubenda-cs-visible > * {
  pointer-events: auto !important;
}

#iubenda-cs-banner.iubenda-cs-slidein .iubenda-cs-container {
  -webkit-transition: -webkit-transform 0.4s ease !important;
  transition: -webkit-transform 0.4s ease !important;
  transition: transform 0.4s ease !important;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease !important;
}

#iubenda-cs-banner.iubenda-cs-slidein.iubenda-cs-top .iubenda-cs-container {
  -webkit-transform: translateY(-48px) !important;
  transform: translateY(-48px) !important;
}

#iubenda-cs-banner.iubenda-cs-slidein.iubenda-cs-bottom .iubenda-cs-container {
  -webkit-transform: translateY(48px) !important;
  transform: translateY(48px) !important;
}

#iubenda-cs-banner.iubenda-cs-slidein.iubenda-cs-visible .iubenda-cs-container {
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
}

#iubenda-cs-banner .iubenda-cs-container {
  position: relative !important;
  z-index: 2 !important;
}

#iubenda-cs-banner .iubenda-cs-brand {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  padding: 16px !important;
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

#iubenda-cs-banner .iubenda-cs-brand > div {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

#iubenda-cs-banner .iubenda-cs-brand img {
  max-width: 192px !important;
  max-height: 56px !important;
}

#iubenda-cs-banner .iubenda-cs-content {
  position: relative !important;
  z-index: 1 !important;
  overflow: hidden !important;
  font-size: 1rem;
  -webkit-transition: -webkit-transform 0.4s ease !important;
  transition: -webkit-transform 0.4s ease !important;
  transition: transform 0.4s ease !important;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease !important;
}

#iubenda-cs-banner .iubenda-cs-rationale {
  position: relative !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

#iubenda-cs-banner .iubenda-cs-close-btn {
  position: absolute !important;
  top: -2px !important;
  right: 0 !important;
  border: none;
  cursor: pointer !important;
  text-align: center !important;
  color: transparent;
  background: none !important;
}
#iubenda-cs-banner .iubenda-cs-close-btn:after {
  content: "\f057";
  font-family: "FontAwesome";
  font-size: 18px;
  color: #AD841F;
  background-color: transparent !important;
}

#iubenda-cs-banner .iubenda-cs-close-btn:hover {
  opacity: 0.5 !important;
}

#iubenda-cs-banner .iubenda-cs-opt-group {
  z-index: 1 !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin-top: 0 !important;
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important;
}

#iubenda-cs-banner .iubenda-cs-opt-group > div {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media (min-width: 640px) {
  #iubenda-cs-banner .iubenda-cs-opt-group {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: flex-start !important;
  }
  #iubenda-cs-banner .iubenda-cs-opt-group-consent {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
}
@media (max-width: 639px) {
  #iubenda-cs-banner .iubenda-cs-opt-group {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
  }
  #iubenda-cs-banner .iubenda-cs-opt-group-custom {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
  }
  #iubenda-cs-banner .iubenda-cs-opt-group-consent {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
  }
}
#iubenda-cs-banner.iubenda-cs-default .iubenda-cs-brand {
  margin: 0 -8px 0 !important;
}

@media (max-width: 991px) {
  #iubenda-cs-banner.iubenda-cs-default .iubenda-cs-brand {
    margin: -8px -8px 0 !important;
  }
}
@media (min-width: 992px) {
  #iubenda-cs-banner.iubenda-cs-default .iubenda-cs-brand div {
    margin: 0 auto !important;
    width: 960px !important;
  }
}
@media (max-width: 991px) {
  #iubenda-cs-banner.iubenda-cs-default .iubenda-cs-brand div {
    margin: 0 8px !important;
  }
}
#iubenda-cs-banner.iubenda-cs-default .iubenda-cs-container {
  width: 100% !important;
  max-width: 72.5rem;
}

@media (min-width: 992px) {
  #iubenda-cs-banner.iubenda-cs-default .iubenda-cs-rationale {
    max-width: 72.5rem;
    margin: 16px auto !important;
  }
}
#iubenda-cs-banner.iubenda-cs-default-floating .iubenda-cs-brand {
  margin: -8px -8px 0 !important;
}

#iubenda-cs-banner.iubenda-cs-default-floating:not(.iubenda-cs-top):not(.iubenda-cs-center) .iubenda-cs-opt-group, #iubenda-cs-banner.iubenda-cs-default-floating:not(.iubenda-cs-bottom):not(.iubenda-cs-center) .iubenda-cs-opt-group, #iubenda-cs-banner.iubenda-cs-default-floating.iubenda-cs-center:not(.iubenda-cs-top):not(.iubenda-cs-bottom) .iubenda-cs-opt-group {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

#iubenda-cs-banner.iubenda-cs-default-floating:not(.iubenda-cs-top):not(.iubenda-cs-center) .iubenda-cs-opt-group > div, #iubenda-cs-banner.iubenda-cs-default-floating:not(.iubenda-cs-bottom):not(.iubenda-cs-center) .iubenda-cs-opt-group > div, #iubenda-cs-banner.iubenda-cs-default-floating.iubenda-cs-center:not(.iubenda-cs-top):not(.iubenda-cs-bottom) .iubenda-cs-opt-group > div {
  width: 100% !important;
}

#iubenda-cs-banner.iubenda-cs-default-floating:not(.iubenda-cs-top):not(.iubenda-cs-center) .iubenda-cs-opt-group-custom, #iubenda-cs-banner.iubenda-cs-default-floating:not(.iubenda-cs-bottom):not(.iubenda-cs-center) .iubenda-cs-opt-group-custom, #iubenda-cs-banner.iubenda-cs-default-floating.iubenda-cs-center:not(.iubenda-cs-top):not(.iubenda-cs-bottom) .iubenda-cs-opt-group-custom {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

#iubenda-cs-banner.iubenda-cs-default-floating:not(.iubenda-cs-top):not(.iubenda-cs-center) .iubenda-cs-opt-group-consent, #iubenda-cs-banner.iubenda-cs-default-floating:not(.iubenda-cs-bottom):not(.iubenda-cs-center) .iubenda-cs-opt-group-consent, #iubenda-cs-banner.iubenda-cs-default-floating.iubenda-cs-center:not(.iubenda-cs-top):not(.iubenda-cs-bottom) .iubenda-cs-opt-group-consent {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

#iubenda-cs-banner.iubenda-cs-default-floating .iubenda-cs-content {
  padding: 1.25rem 1.5rem;
}

#iubenda-cs-banner.iubenda-cs-fix-height .iubenda-cs-container,
#iubenda-cs-banner.iubenda-cs-fix-height .iubenda-cs-content,
#iubenda-cs-banner.iubenda-cs-fix-height .iubenda-cs-rationale {
  height: 100% !important;
}

#iubenda-cs-banner.iubenda-cs-fix-height.iubenda-cs-default-floating .iubenda-cs-content {
  height: calc(100% - 32px) !important;
}

#iubenda-cs-banner.iubenda-cs-fix-height .iubenda-cs-brand img {
  max-width: 75% !important;
}

#iubenda-cs-banner .iubenda-cs-content {
  background-color: #FAF2DD !important;
  color: #000;
}

#iubenda-cs-banner .iubenda-cs-opt-group button {
  padding: 0.8125rem 1.25rem 0.625rem;
  font-size: 0.75rem;
  text-decoration: none;
  -webkit-transition: background 0.2s ease-out;
  transition: background 0.2s ease-out;
  text-transform: uppercase;
  display: inline-block;
  font-family: "proxima-nova", "Arial", sans-serif;
  font-weight: 600;
  letter-spacing: 0.0625rem;
  line-height: 1.0625rem;
  margin-bottom: 1.25rem;
  border-radius: 0.625rem;
}
#iubenda-cs-banner .iubenda-cs-opt-group button:hover {
  text-decoration: none;
}

.iubenda-cs-customize-btn {
  margin-right: 0.25rem;
  color: #581483;
  border: 0.0625rem solid #EFD38E;
  background: #fff;
}
.iubenda-cs-customize-btn:hover {
  color: #fff;
  background: #AD841F;
}
@media screen and (min-width: 40em) {
  .iubenda-cs-customize-btn {
    margin-right: 0.625rem;
  }
}

#iubenda-cs-banner .iubenda-cs-opt-group button.iubenda-cs-btn-primary {
  border: none;
  color: #fff;
  background: #581483;
}
#iubenda-cs-banner .iubenda-cs-opt-group button.iubenda-cs-btn-primary:hover {
  background: #9935D8;
}

.iubenda-tp-btn:not([data-tp-nostyle]) {
  font-size: 100% !important;
  width: auto !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background: none !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
  font-family: -apple-system, sans-serif !important;
  text-decoration: none !important;
  color: currentColor !important;
  background-attachment: scroll !important;
  background-color: transparent !important;
  background-image: none !important;
  background-position: 0 0 !important;
  background-repeat: repeat !important;
  border: 0 !important;
  border-color: #000 !important;
  border-color: currentColor !important;
  border-radius: 0 !important;
  border-style: none !important;
  border-width: medium !important;
  bottom: auto !important;
  clear: none !important;
  clip: auto !important;
  counter-increment: none !important;
  counter-reset: none !important;
  cursor: auto !important;
  direction: inherit !important;
  float: none !important;
  font-style: inherit !important;
  font-variant: normal !important;
  font-weight: inherit !important;
  height: auto !important;
  left: auto !important;
  letter-spacing: normal !important;
  line-height: inherit !important;
  list-style-type: inherit !important;
  list-style-position: outside !important;
  list-style-image: none !important;
  margin: 0 !important;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  min-width: 0 !important;
  opacity: 1;
  outline: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
  position: static !important;
  quotes: "" "" !important;
  right: auto !important;
  table-layout: auto !important;
  text-align: left !important;
  text-indent: 0 !important;
  text-transform: none !important;
  top: auto !important;
  unicode-bidi: normal !important;
  vertical-align: baseline !important;
  visibility: inherit !important;
  white-space: normal !important;
  width: auto !important;
  word-spacing: normal !important;
  z-index: auto !important;
  background-origin: padding-box !important;
  background-origin: padding-box !important;
  background-clip: border-box !important;
  background-size: auto !important;
  -o-border-image: none !important;
  border-image: none !important;
  border-radius: 0 !important;
  border-radius: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  -webkit-column-count: auto !important;
  -moz-column-count: auto !important;
  column-count: auto !important;
  -webkit-column-gap: normal !important;
  -moz-column-gap: normal !important;
  column-gap: normal !important;
  -webkit-column-rule: medium none #000 !important;
  -moz-column-rule: medium none #000 !important;
  column-rule: medium none #000 !important;
  -webkit-column-span: none !important;
  -moz-column-span: none !important;
  column-span: none !important;
  -webkit-column-width: auto !important;
  -moz-column-width: auto !important;
  column-width: auto !important;
  -webkit-font-feature-settings: normal !important;
  font-feature-settings: normal !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
  -ms-hyphens: manual !important;
  hyphens: manual !important;
  -webkit-perspective: none !important;
  perspective: none !important;
  -webkit-perspective-origin: 50% 50% !important;
  perspective-origin: 50% 50% !important;
  text-shadow: none !important;
  -webkit-transition: all 0s ease 0s !important;
  transition: all 0s ease 0s !important;
  -webkit-transform: none !important;
  transform: none !important;
  -webkit-transform-origin: 50% 50% !important;
  transform-origin: 50% 50% !important;
  -webkit-transform-style: flat !important;
  transform-style: flat !important;
  word-break: normal !important;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  appearance: none !important;
  line-height: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-weight: bold !important;
  font-size: 14px !important;
  -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) !important;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15) !important;
  color: rgba(0, 0, 0, 0.65) !important;
  background-color: white !important;
  display: inline-block !important;
  vertical-align: middle !important;
}

.iubenda-tp-btn[data-tp-icon] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Cpath fill='%231CC691' fill-rule='evenodd' d='M16 7a4 4 0 0 1 2.627 7.016L19.5 25h-7l.873-10.984A4 4 0 0 1 16 7z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-size: 32px 32px !important;
  background-position: top 0.5px left 1px !important;
}

.iubenda-tp-btn[data-tp-circle] {
  border-radius: 32px !important;
}

.iubenda-tp-btn[data-tp-label]:after {
  content: attr(data-tp-label) !important;
  padding: 0 16px !important;
  white-space: nowrap !important;
}

.iubenda-tp-btn[data-tp-label][data-tp-icon]:after {
  padding-left: 32px !important;
}

.iubenda-tp-btn[data-tp-float] {
  position: fixed !important;
  z-index: 2147483647 !important;
}

.iubenda-tp-btn[data-tp-float]:not([data-tp-anchored]) {
  margin: 16px !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-anchored] {
  margin: 0 16px !important;
  border-radius: 6px !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-anchored][data-tp-hover][data-tp-float=center-left], .iubenda-tp-btn[data-tp-float][data-tp-anchored][data-tp-hover][data-tp-float=center-right], .iubenda-tp-btn[data-tp-float][data-tp-anchored]:not([data-tp-hover]):not([data-tp-label])[data-tp-float=center-left], .iubenda-tp-btn[data-tp-float][data-tp-anchored]:not([data-tp-hover]):not([data-tp-label])[data-tp-float=center-right] {
  margin: 0 !important;
  top: 75% !important;
  -webkit-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-anchored][data-tp-hover][data-tp-float=center-left], .iubenda-tp-btn[data-tp-float][data-tp-anchored]:not([data-tp-hover]):not([data-tp-label])[data-tp-float=center-left] {
  left: 0 !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-left: 0 !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-anchored][data-tp-hover][data-tp-float=center-right], .iubenda-tp-btn[data-tp-float][data-tp-anchored]:not([data-tp-hover]):not([data-tp-label])[data-tp-float=center-right] {
  right: 0 !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-right: 0 !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-anchored]:not([data-tp-hover])[data-tp-label][data-tp-float=center-left], .iubenda-tp-btn[data-tp-float][data-tp-anchored]:not([data-tp-hover])[data-tp-label][data-tp-float=center-right] {
  margin: 0 !important;
  top: 50% !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom: 0 !important;
  -webkit-transform-origin: bottom !important;
  transform-origin: bottom !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-anchored]:not([data-tp-hover])[data-tp-label][data-tp-float=center-left] {
  left: 0 !important;
  -webkit-transform: translateY(-50%) rotate(90deg) !important;
  transform: translateY(-50%) rotate(90deg) !important;
  -webkit-transform-origin: left bottom !important;
  transform-origin: left bottom !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-anchored]:not([data-tp-hover])[data-tp-label][data-tp-float=center-right] {
  right: 0 !important;
  -webkit-transform: translateY(-50%) rotate(-90deg) !important;
  transform: translateY(-50%) rotate(-90deg) !important;
  -webkit-transform-origin: right bottom !important;
  transform-origin: right bottom !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-float=bottom-left], .iubenda-tp-btn[data-tp-float][data-tp-float=bottom-right] {
  bottom: 0 !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-float=bottom-left][data-tp-anchored], .iubenda-tp-btn[data-tp-float][data-tp-float=bottom-right][data-tp-anchored] {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom: 0 !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-float=top-left], .iubenda-tp-btn[data-tp-float][data-tp-float=top-right] {
  top: 0 !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-float=top-left][data-tp-anchored], .iubenda-tp-btn[data-tp-float][data-tp-float=top-right][data-tp-anchored] {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  border-top: 0 !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-float=top-left], .iubenda-tp-btn[data-tp-float][data-tp-float=bottom-left] {
  left: 0 !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-float=top-right], .iubenda-tp-btn[data-tp-float][data-tp-float=bottom-right] {
  right: 0 !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-hover][data-tp-label]:after {
  max-width: 0 !important;
  overflow: hidden !important;
  display: block !important;
  padding: 0 !important;
  opacity: 0 !important;
  -webkit-transition: max-width 0.6s ease, padding 0.6s ease, opacity 0.6s ease !important;
  transition: max-width 0.6s ease, padding 0.6s ease, opacity 0.6s ease !important;
}

.iubenda-tp-btn[data-tp-float][data-tp-hover][data-tp-label]:hover:after {
  max-width: 192px !important;
  padding-left: 32px !important;
  padding-right: 10px !important;
  opacity: 1 !important;
}

/*
-----------------
MOBILE SDK
-----------------
*/
.iubenda-mobile-sdk #iubenda-cs-banner.iubenda-cs-visible {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.iubenda-mobile-sdk #iubenda-cs-banner .iubenda-cs-container {
  max-height: 100% !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.iubenda-mobile-sdk #iubenda-cs-banner .iubenda-cs-container .iubenda-cs-content {
  height: auto !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

.iubenda-mobile-sdk #iubenda-cs-banner .iubenda-cs-opt-group {
  text-align: center !important;
}

.iubenda-mobile-sdk #iubenda-cs-banner .iubenda-cs-close-btn {
  display: none !important;
}

.iubenda-mobile-sdk #iubenda-cs-banner .iubenda-cs-rationale {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  height: 100% !important;
}

.iubenda-mobile-sdk #iubenda-cs-banner .iubenda-banner-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto !important;
  margin: 0 !important;
  padding: 16px 16px 48px !important;
  max-height: inherit !important;
  mask-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(15%, black)) !important;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, black 15%) !important;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(15%, black)) !important;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, black 15%) !important;
}

@media (min-width: 992px) {
  .iubenda-mobile-sdk #iubenda-cs-banner .iubenda-banner-content,
  .iubenda-mobile-sdk #iubenda-cs-banner .iubenda-cs-opt-group {
    margin: 24px !important;
  }
  .iubenda-mobile-sdk #iubenda-cs-banner.iubenda-cs-default .iubenda-cs-rationale {
    width: 100% !important;
    margin: 0 !important;
  }
}
.no-banner #iubenda-cs-banner {
  display: none !important;
}

/** fix scrolling in iOS 10 **/
.iubenda-mobile-sdk #iubenda-cs-banner.iubenda-cs-visible .iubenda-cs-container,
.iubenda-mobile-sdk #iubenda-cs-banner .iubenda-cs-container .iubenda-cs-content,
.iubenda-mobile-sdk #iubenda-cs-banner .iubenda-cs-rationale {
  height: 100% !important;
}

.iubenda-mobile-sdk #iubenda-iframe .iubenda-iframe-top-container {
  position: relative !important;
}

.iubenda-mobile-sdk #iubenda-iframe #iab-container {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
}

/** iframe **/
.iubenda-mobile-sdk #iubenda-iframe #iubenda-iframe-popup {
  height: 100% !important;
  width: 100% !important;
}

.iubenda-mobile-sdk #iubenda-iframe .iubenda-iframe-close-btn {
  display: none !important;
}

.iubenda-mobile-sdk #iubenda-iframe {
  background-color: transparent !important;
}

/* Fix cookie policy trimming on older Android devices */
.iubenda-mobile-sdk #iubenda-iframe iframe {
  background-color: transparent !important;
  position: absolute !important;
  bottom: 0 !important;
  top: 0 !important;
}

.iubenda-mobile-sdk #iubenda-iframe .iubenda-iframe-spinner {
  top: 50px !important;
}

/* Fix TCF widget overlapping footer in older Android devices */
.iubenda-mobile-sdk #iubenda-iframe .iubenda-iframe-footer {
  z-index: 9999 !important;
}

/* Fix popovers going behind footer buttons and not scrolling */
.iubenda-mobile-sdk #iubenda-iframe.iub-popover-visible .iub-popover {
  z-index: 10000 !important;
}

.iubenda-mobile-sdk #iubenda-iframe .iub-popover-content {
  position: relative !important;
}

.iubenda-mobile-sdk #iubenda-iframe .iub-popover-content > div {
  -webkit-overflow-scrolling: touch !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
}

/* Fix purposes widget not scrolling on older iOS and Android devices */
.iubenda-mobile-sdk #purposes-container {
  -webkit-overflow-scrolling: touch !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  overflow: auto !important;
}
/*# sourceMappingURL=../maps/app.css.map */
