@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
}

header,
aside,
section,
div,
span,
input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-size: 1rem;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  margin: 0;
  width: 100%;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: #cc4b00;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

p a {
  text-decoration: underline;
}

img {
  display: block;
  border: none;
}

.skip-links__link {
  position: absolute;
  top: -31.25rem;
  z-index: 100;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-links__link:focus, .skip-links__link:active {
  top: 0px;
  width: auto;
  height: auto;
  padding: 0.625rem;
  overflow: visible;
  background-color: #e65400;
  color: #ffffff;
}

.container {
  width: 100%;
  height: inherit;
  margin: 0 auto;
  padding: 0 0.9375rem;
  transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 960px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 2200px) {
  .container {
    max-width: 80vw;
  }
}

.container--fluid {
  width: 100%;
  padding: 0;
}

.the-pit {
  overflow: hidden;
  position: relative;
  right: 0;
  display: block;
  transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav--is-on .the-pit {
  right: calc(100% - 45px);
}
@media (min-width: 500px) {
  .nav--is-on .the-pit {
    right: 20rem;
  }
}
@media (min-width: 960px) {
  .nav--is-on .the-pit {
    right: 0;
  }
}

.grids {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
}
.grids.grids--margins [class^=grid-] {
  margin-right: 0rem;
}
.grids.grids--margins [class^=grid-]:last-child {
  margin-right: 0;
}
@media (min-width: 700px) {
  .grids {
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .grids.grids--margins [class^=grid-] {
    margin-right: 1.875rem;
  }
}

.grids--dont-stack {
  flex-flow: row nowrap;
}
.grids--dont-stack.grids--margins [class^=grid-] {
  margin-right: 1.25rem;
}
.grids--dont-stack.grids--margins [class^=grid-]:last-child {
  margin-right: 0;
}

[class^=grid-] {
  width: 100%;
  min-width: 0;
  flex: 0 1 auto;
}

@media (min-width: 700px) {
  .grid-1 {
    width: 8.33333%;
  }
}

@media (min-width: 700px) {
  .grid-2 {
    width: 16.66666%;
  }
}

@media (min-width: 700px) {
  .grid-3 {
    width: 25%;
  }
}

@media (min-width: 700px) {
  .grid-4 {
    width: 33.33333%;
  }
}

@media (min-width: 700px) {
  .grid-5 {
    width: 41.66666%;
  }
}

@media (min-width: 700px) {
  .grid-6 {
    width: 50%;
  }
}

@media (min-width: 700px) {
  .grid-7 {
    width: 58.33333%;
  }
}

@media (min-width: 700px) {
  .grid-8 {
    width: 66.66666%;
  }
}

@media (min-width: 700px) {
  .grid-9 {
    width: 75%;
  }
}

@media (min-width: 700px) {
  .grid-10 {
    width: 83.33333%;
  }
}

@media (min-width: 700px) {
  .grid-11 {
    width: 91.66666%;
  }
}

@media (min-width: 700px) {
  .grid-12 {
    width: 100%;
  }
}

@media (min-width: 700px) {
  .grid--border-left {
    padding-left: 1.875rem;
    border-left: solid 1px #d6d6d6;
  }
}

@media (min-width: 700px) {
  .grid--border-right {
    padding-left: 1.875rem;
    border-left: solid 1px #d6d6d6;
  }
}

.wallmaster {
  width: 100%;
  background-color: #ffffff;
  transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.small-device {
  display: none;
}
.small-device i {
  text-align: center;
  font-size: 8.75rem;
  padding-bottom: 1.25rem;
  color: #e65400;
}
.small-device p {
  color: #505050;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 0;
  line-height: 1.75rem;
}
@media (min-width: 0px) and (max-width: 319px) {
  .small-device {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 90;
    display: block;
    visibility: visible;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 0px) and (max-width: 319px) {
  body,
  html {
    overflow: hidden;
  }
}
.small-device__logo {
  margin: 1.25rem 0.625rem;
  font-family: "skeletor";
  font-size: 4.375rem;
  color: #e65400;
}
.small-device__logo:before {
  content: "\e91a";
}

.small-device__text {
  text-align: center;
  color: #505050;
  text-transform: uppercase;
}

.small-device__phone {
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
  word-break: break-all;
}

.form-field {
  position: relative;
  margin-bottom: 1.5rem;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

.form-field__label,
.fieldset__label {
  color: #505050;
  cursor: pointer;
  display: block;
  margin-left: 0.625rem;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.875rem;
}

.form-field--inverse .form-field__label,
.form-field--inverse .fieldset__label {
  color: #ffffff;
}

.form-field--inline,
.fieldset--inline {
  display: inline-block;
  margin-right: 1.25rem;
}
.form-field--inline:last-child,
.fieldset--inline:last-child {
  margin-right: 0;
}

select::-ms-expand {
  display: none;
}

.form--iframe {
  padding: 1.25rem;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
}
.form--iframe iframe {
  width: 100%;
  height: 64rem;
}
@media (min-width: 1200px) {
  .form--iframe {
    padding: 1.25rem 1.875rem 2.5rem 1.875rem;
  }
}

.form-field__checkbox {
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.form-field__checkbox [type=checkbox] {
  position: absolute;
  left: -1000em;
}

.form-field__checkbox-custom {
  position: relative;
  height: 1.25rem;
  width: 1.25rem;
  margin: 0 0.625rem 0 0;
  padding: 0;
  background-color: #ffffff;
  border: solid 2px #505050;
  border-radius: 2px;
  cursor: pointer;
}

.form-field__checkbox-input:checked + .form-field__checkbox-custom {
  background-color: #fdb913;
  border-color: #fdb913;
}

.form-field__checkbox-input:focus + .form-field__checkbox-custom {
  border-color: #fdb913;
}

.form-field__checkbox-input:checked + .form-field__checkbox-custom:after {
  content: "\e8f3";
  font-family: "skeletor";
  font-size: 0.75rem;
  color: #ffffff;
  position: absolute;
  top: 0.1875rem;
  left: 0rem;
}

.form-field__checkbox-text {
  font-size: 1rem;
  font-weight: normal;
  text-transform: none;
  color: #505050;
  flex: 1 0 0%;
}

.form-field--checkbox.alert:after {
  display: none;
}

.form-field--checkbox.alert .form-field__message {
  bottom: -2.0625rem;
  width: auto;
}

.form-field__checkbox--large .form-field__checkbox-custom {
  width: 2.5rem;
  height: 2.5rem;
}
.form-field__checkbox--large .form-field__checkbox-custom:after {
  font-size: 1.5rem !important;
  left: 0.1875rem !important;
  top: 0.375rem !important;
}
.form-field__checkbox--large .form-field__checkbox-text {
  font-size: 1.25rem;
}

.alert .form-field__checkbox-custom {
  border-color: #fdb913;
}

.fieldset {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  margin-bottom: 1.5rem;
}

.fieldset .form-field__message {
  position: relative;
  bottom: auto;
}

.fieldset__phone {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.fieldset__phone .form-field {
  margin-right: 1.25rem;
  margin-bottom: 0.625rem;
  flex: 2;
}
.fieldset__phone .form-field:first-child {
  flex: 1;
}
.fieldset__phone .form-field:nth-child(2) {
  flex: 1;
}
.fieldset__phone .form-field:last-child {
  margin-right: 0px;
}
.fieldset__phone .form-field__input {
  padding-right: 0.625rem;
}

.form-field__input {
  width: 100%;
  margin: 0;
  padding: 0.4375rem 0.625rem;
  padding-right: 2.5rem;
  font-size: 1rem;
  color: #505050;
  border: solid 1px #d6d6d6;
  border-top-color: transparent;
  border-right-color: transparent;
  outline: none;
  box-shadow: 0 0 2px 2px rgba(230, 84, 0, 0);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.form-field__input:hover, .form-field__input:focus {
  border: solid 1px #fdb913;
  background-color: #f1f1f0;
}

.form-field--inverse .form-field__input {
  background-color: transparent;
}

.alert .form-field__input {
  border: solid 1px #fdb913;
  background-color: #f1f1f0;
  box-shadow: inset 0 0 0px 1px #fdb913;
}

.form-field--input.alert:after {
  content: "\e930";
  bottom: 0.5rem;
  right: 0.5rem;
  color: #fdb913;
  font-size: 1.25rem;
  font-family: "skeletor" !important;
  position: absolute;
  z-index: 10;
}

.form-field--inverse .form-field__input:hover,
.form-field--inverse .form-field__input:focus {
  background-color: #ffffff;
}

.form-field__input:hover:disabled {
  border-color: #d6d6d6;
  border-top-color: transparent;
  border-right-color: transparent;
  background-color: transparent;
  cursor: not-allowed !important;
}

.alert--red .form-field__input {
  border-color: #da2128;
  box-shadow: inset 0 0 0px 1px #da2128;
}
.alert--red.form-field--input.alert:after {
  color: #da2128;
}

.form-field__radio {
  cursor: pointer;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.form-field__radio [type=radio] {
  position: absolute;
  left: -1000em;
}

.form-field__radio-custom {
  position: relative;
  height: 1.25rem;
  width: 1.25rem;
  margin: 0 0.625rem 0 0;
  padding: 0;
  background-color: #ffffff;
  border: solid 2px #505050;
  cursor: pointer;
  border-radius: 50%;
}

.form-field__radio-input:checked + .form-field__radio-custom {
  border-color: #fdb913;
}

.form-field__radio-input:focus + .form-field__radio-custom {
  border-color: #fdb913;
}

.form-field__radio-input:checked + .form-field__radio-custom:after {
  width: 0.75rem;
  height: 0.75rem;
  background-color: #fdb913;
  position: absolute;
  top: 0.125rem;
  right: 0.125rem;
  border-radius: 50%;
  content: "";
}

.form-field__radio-text {
  font-size: 1rem;
  font-weight: normal;
  text-transform: none;
  color: #505050;
  flex: 1 0 0%;
}

.form-field--radio.alert:after {
  display: none;
}

.form-field--radio.alert .form-field__message {
  bottom: -2.0625rem;
  width: auto;
}

.form-field__radio--large .form-field__radio-custom {
  width: 2.5rem;
  height: 2.5rem;
  border-width: 3px;
}
.form-field__radio--large .form-field__radio-custom:after {
  width: 1.625rem !important;
  height: 1.625rem !important;
  top: 0.25rem !important;
  right: 0.25rem !important;
}

.alert .form-field__radio-custom {
  border-color: #fdb913;
}

.form-field__select {
  position: relative;
}

.form-field__select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  outline: none;
  width: 100%;
  padding: 0.4375rem 2.5rem 0.4375rem 0.625rem;
  border-radius: 0;
  border: solid 1px #d6d6d6;
  border-top-color: transparent;
  border-right-color: transparent;
  font-size: 1rem;
  background-color: #ffffff;
  color: #505050;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.form-field__select select:hover, .form-field__select select:focus {
  background-color: #f1f1f0;
  border-color: #fdb913;
  outline: none;
}

.form-field__select:after {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  margin-top: -0.3125rem;
  z-index: 10;
  font-family: "skeletor" !important;
  font-size: 0.625rem;
  content: "\e936";
  color: #fdb913;
  pointer-events: none;
}

.alert .form-field__select:after {
  content: "\e930";
  font-size: 1.25rem;
  margin-top: -0.625rem;
}

.alert .form-field__select select {
  border: solid 1px #fdb913;
  background-color: #f1f1f0;
  box-shadow: inset 0 0 0px 1px #fdb913;
}

.select-filter {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.select-filter .form-field {
  margin-bottom: 0;
}
.select-filter select {
  padding-top: 0.8125rem;
  padding-bottom: 0.8125rem;
}
.select-filter .form-field--select + .btn {
  margin-left: 0.625rem;
}

.form-field__toggle {
  cursor: pointer;
  display: inline-block;
}

.form-field__toggle [type=radio] {
  position: absolute;
  left: -1000em;
}

.form-field__toggle-custom {
  padding: 0.25rem 1.25rem;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.875rem;
  margin-right: 0;
  border: solid 2px #505050;
  color: #505050;
  cursor: pointer;
  box-sizing: content-box;
  border-top-radius: 1.25rem;
  border-right-radius: 1.25rem;
  border-bottom-radius: 1.25rem;
  border-left-radius: 1.25rem;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.form-field__toggle-custom:hover {
  background-color: #505050;
  color: #ffffff;
}
@media (min-width: 400px) {
  .form-field__toggle-custom:last-child {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .form-field__toggle-custom {
    padding: 0.4375rem 2.25rem;
    font-size: 1rem;
    margin-right: 0.5rem;
  }
}

.form-field__toggle-input:checked + .form-field__toggle-custom {
  border-color: #505050;
  background-color: #505050;
  color: #ffffff;
}

.form-field__toggle-input:focus + .form-field__toggle-custom {
  background-color: #505050;
}

.form-field__toggle--light .form-field__toggle-custom {
  border-color: #ffffff;
  color: #ffffff;
}
.form-field__toggle--light .form-field__toggle-input:checked + .form-field__toggle-custom {
  background-color: #ffffff;
  color: #505050;
}

.form-field__toggles {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
.form-field__toggles .form-field__toggle-custom {
  text-transform: none;
  border-right-width: 1px;
  border-left-width: 1px;
}
.form-field__toggles > :first-child .form-field__toggle-custom {
  border-left-width: 2px;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.form-field__toggles > :last-child .form-field__toggle-custom {
  border-right-width: 2px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.form-field__toggles > :only-child .form-field__toggle-custom {
  border-right-width: 2px;
  border-radius: 4px;
}

.form-field__message {
  position: absolute;
  padding: 0.125rem 0.3125rem;
  background-color: #f1f1f0;
  font-size: 0.75rem;
  color: #505050;
  bottom: -1.3125rem;
  width: 100%;
  font-style: italic;
  display: none;
  overflow: hidden;
}

.alert .form-field__message {
  display: block;
  -webkit-animation-name: slide-open;
          animation-name: slide-open;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.form--compressed .alert .form-field__message {
  display: block;
  -webkit-animation-name: slide-open-compressed;
          animation-name: slide-open-compressed;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

.form-field__message--invert {
  background-color: #505050;
  color: #ffffff;
  font-weight: bold;
}

@-webkit-keyframes slide-open {
  from {
    height: 0px;
  }
  to {
    height: 1.3125rem;
  }
}

@keyframes slide-open {
  from {
    height: 0px;
  }
  to {
    height: 1.3125rem;
  }
}
@-webkit-keyframes slide-open-compressed {
  from {
    height: 0px;
  }
  to {
    height: 1.6875rem;
  }
}
@keyframes slide-open-compressed {
  from {
    height: 0px;
  }
  to {
    height: 1.6875rem;
  }
}
.form--compressed .form-field {
  margin-bottom: 0.625rem;
}
.form--compressed .form-field__label {
  margin-bottom: 0.3125rem;
}
.form--compressed .form-field__input,
.form--compressed .form-field__select select {
  padding: 0.3125rem 0.625rem;
}
.form--compressed .form-field__select:after {
  bottom: 0.5rem;
}
.form--compressed .form-field--select.alert:after,
.form--compressed .form-field--input.alert:after {
  bottom: 2.0625rem;
}
.form--compressed .form-field__message {
  padding: 0.3125rem 0.625rem;
}
.form--compressed .alert .form-field__message {
  position: relative;
  bottom: auto;
}

.form-field__group {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.form-field__addon {
  background-color: #d6d6d6;
  height: 2.125rem;
  max-height: 2.125rem;
  line-height: 2.125rem;
  overflow: hidden;
  font-size: 0.9375rem;
  color: #505050;
  padding: 0 0.875rem;
}

.form-field__group .form-field__input {
  width: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1, .h1 {
  font-family: "Square Serif", sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  color: #505050;
  margin-top: -0.5625rem;
}
h1 sup, .h1 sup {
  font-size: 1.875rem;
}
@media (min-width: 960px) {
  h1, .h1 {
    margin-top: -1rem;
    font-size: 3.625rem;
  }
}

h2, .h2 {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  color: #505050;
}
@media (min-width: 500px) {
  h2, .h2 {
    font-size: 2rem;
    line-height: 1.5;
  }
}

h3, .h3 {
  max-width: 100%;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #505050;
}
@media (min-width: 960px) {
  h3, .h3 {
    font-size: 1.5rem;
  }
}

h4, .h4 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #505050;
}

.headline {
  margin: 0 0 1.25rem 0;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: normal;
  color: #505050;
}
@media (min-width: 500px) {
  .headline {
    font-size: 2rem;
  }
}

.sub-headline, .academic__body-title {
  margin: 0 0 1.25rem 0;
  max-width: 100%;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #505050;
}
@media (min-width: 960px) {
  .sub-headline, .academic__body-title {
    font-size: 1.5rem;
  }
}

p {
  margin: 0 0 1.25rem 0;
  font-size: 0.875rem;
  line-height: 1.625rem;
  color: #505050;
}
@media (min-width: 960px) {
  p {
    font-size: 1rem;
  }
}

.epic-text {
  margin-bottom: 1.875rem;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: normal;
  color: #505050;
}
@media (min-width: 960px) {
  .epic-text {
    font-size: 1.75rem;
  }
}

.small-text {
  font-size: 0.875rem;
}

.large-text {
  font-size: 2.75rem;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.uppercase {
  text-transform: uppercase;
}

.hidden-text {
  position: absolute;
  top: -200px;
}

/* font-face Mixins: 
    - Need one for each unicode-range. 
    - It is a variable font, so font-weight ranges can be defined together.  */
/* cyrillic-ext */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-cyrillic-ext.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
  font-style: normal;
  font-stretch: normal;
}
/* cyrillic */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-cyrillic.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
  font-style: normal;
  font-stretch: normal;
}
/* greek-ext */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-greek-ext.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+1F00-1FFF;
  font-style: normal;
  font-stretch: normal;
}
/* greek */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-greek.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
  font-style: normal;
  font-stretch: normal;
}
/* hebrew */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-hebrew.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0590-05FF, U+200C-2010, U+20AA, U+25CC, U+FB1D-FB4F;
  font-style: normal;
  font-stretch: normal;
}
/* math */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-math.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0302-0303, U+0305, U+0307-0308, U+0330, U+0391-03A1, U+03A3-03A9, U+03B1-03C9, U+03D1, U+03D5-03D6, U+03F0-03F1, U+03F4-03F5, U+2034-2037, U+2057, U+20D0-20DC, U+20E1, U+20E5-20EF, U+2102, U+210A-210E, U+2110-2112, U+2115, U+2119-211D, U+2124, U+2128, U+212C-212D, U+212F-2131, U+2133-2138, U+213C-2140, U+2145-2149, U+2190, U+2192, U+2194-21AE, U+21B0-21E5, U+21F1-21F2, U+21F4-2211, U+2213-2214, U+2216-22FF, U+2308-230B, U+2310, U+2319, U+231C-2321, U+2336-237A, U+237C, U+2395, U+239B-23B6, U+23D0, U+23DC-23E1, U+2474-2475, U+25AF, U+25B3, U+25B7, U+25BD, U+25C1, U+25CA, U+25CC, U+25FB, U+266D-266F, U+27C0-27FF, U+2900-2AFF, U+2B0E-2B11, U+2B30-2B4C, U+2BFE, U+FF5B, U+FF5D, U+1D400-1D7FF, U+1EE00-1EEFF;
  font-style: normal;
  font-stretch: normal;
}
/* symbols */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-symbols.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0001-000C, U+000E-001F, U+007F-009F, U+20DD-20E0, U+20E2-20E4, U+2150-218F, U+2190, U+2192, U+2194-2199, U+21AF, U+21E6-21F0, U+21F3, U+2218-2219, U+2299, U+22C4-22C6, U+2300-243F, U+2440-244A, U+2460-24FF, U+25A0-27BF, U+2800-28FF, U+2921-2922, U+2981, U+29BF, U+29EB, U+2B00-2BFF, U+4DC0-4DFF, U+FFF9-FFFB, U+10140-1018E, U+10190-1019C, U+101A0, U+101D0-101FD, U+102E0-102FB, U+10E60-10E7E, U+1D2C0-1D2D3, U+1D2E0-1D37F, U+1F000-1F0FF, U+1F100-1F1AD, U+1F1E6-1F1FF, U+1F30D-1F30F, U+1F315, U+1F31C, U+1F31E, U+1F320-1F32C, U+1F336, U+1F378, U+1F37D, U+1F382, U+1F393-1F39F, U+1F3A7-1F3A8, U+1F3AC-1F3AF, U+1F3C2, U+1F3C4-1F3C6, U+1F3CA-1F3CE, U+1F3D4-1F3E0, U+1F3ED, U+1F3F1-1F3F3, U+1F3F5-1F3F7, U+1F408, U+1F415, U+1F41F, U+1F426, U+1F43F, U+1F441-1F442, U+1F444, U+1F446-1F449, U+1F44C-1F44E, U+1F453, U+1F46A, U+1F47D, U+1F4A3, U+1F4B0, U+1F4B3, U+1F4B9, U+1F4BB, U+1F4BF, U+1F4C8-1F4CB, U+1F4D6, U+1F4DA, U+1F4DF, U+1F4E3-1F4E6, U+1F4EA-1F4ED, U+1F4F7, U+1F4F9-1F4FB, U+1F4FD-1F4FE, U+1F503, U+1F507-1F50B, U+1F50D, U+1F512-1F513, U+1F53E-1F54A, U+1F54F-1F5FA, U+1F610, U+1F650-1F67F, U+1F687, U+1F68D, U+1F691, U+1F694, U+1F698, U+1F6AD, U+1F6B2, U+1F6B9-1F6BA, U+1F6BC, U+1F6C6-1F6CF, U+1F6D3-1F6D7, U+1F6E0-1F6EA, U+1F6F0-1F6F3, U+1F6F7-1F6FC, U+1F700-1F7FF, U+1F800-1F80B, U+1F810-1F847, U+1F850-1F859, U+1F860-1F887, U+1F890-1F8AD, U+1F8B0-1F8B1, U+1F900-1F90B, U+1F93B, U+1F946, U+1F984, U+1F996, U+1F9E9, U+1FA00-1FA6F, U+1FA70-1FA7C, U+1FA80-1FA88, U+1FA90-1FABD, U+1FABF-1FAC5, U+1FACE-1FADB, U+1FAE0-1FAE8, U+1FAF0-1FAF8, U+1FB00-1FBFF;
  font-style: normal;
  font-stretch: normal;
}
/* vietnamese */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-vietnamese.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
  font-style: normal;
  font-stretch: normal;
}
/* latin-ext */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-latin-ext.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
  font-style: normal;
  font-stretch: normal;
}
/* latin */
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans/OpenSans-Normal-300-latin.woff2") format("woff2");
  font-weight: 300 800;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
  font-style: normal;
  font-stretch: normal;
}
/* font-face Mixins: 
    - Need one for each font-weight */
@font-face {
  font-family: "Square Serif";
  src: url("../fonts/SquareSerif/SquareSerif-Light-webfont.woff2") format("woff2");
  font-weight: 250;
  unicode-range: U+0-10FFFF;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Square Serif";
  src: url("../fonts/SquareSerif/SquareSerif-Book-webfont.woff2") format("woff2");
  font-weight: 400;
  unicode-range: U+0-10FFFF;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Square Serif";
  src: url("../fonts/SquareSerif/SquareSerif-Medium-webfont.woff2") format("woff2");
  font-weight: 500;
  unicode-range: U+0-10FFFF;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Square Serif";
  src: url("../fonts/SquareSerif/SquareSerif-Demi-webfont.woff2") format("woff2");
  font-weight: 600;
  unicode-range: U+0-10FFFF;
  font-style: normal;
  font-stretch: normal;
}
@font-face {
  font-family: "Square Serif";
  src: url("../fonts/SquareSerif/SquareSerif-Bold-webfont.woff2") format("woff2");
  font-weight: 700;
  unicode-range: U+0-10FFFF;
  font-style: normal;
  font-stretch: normal;
}
.section,
section {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 960px) {
  .section,
  section {
    margin-top: 3.75rem;
    margin-bottom: 3.75rem;
  }
}

.section--skin-gray,
.section--skin-devastator,
.section--skin-jetfire,
.section--skin-wrek-gar {
  background-color: #f1f1f0;
  margin-bottom: 0;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 960px) {
  .section--skin-gray,
  .section--skin-devastator,
  .section--skin-jetfire,
  .section--skin-wrek-gar {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.section--skin-devastator {
  background-color: #454545;
}
.section--skin-devastator h2,
.section--skin-devastator .h2 {
  color: #ffffff;
  margin-bottom: 0.875rem;
}
@media (min-width: 960px) {
  .section--skin-devastator h2,
  .section--skin-devastator .h2 {
    color: #ffffff;
    margin-top: -0.5625rem;
    margin-bottom: 1.5rem;
  }
}

.section--skin-jetfire {
  background-color: #ffffff;
}

.section--skin-wrek-gar {
  background-color: #f9f5eb;
}

.block {
  display: block;
}

.block--inline {
  display: inline-block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ul,
.ol,
ul,
ol {
  font-size: 1rem;
  color: #505050;
}
.ul li,
.ol li,
ul li,
ol li {
  margin-bottom: 0.875rem;
  line-height: 1.625rem;
}

.ul--bullets,
.ol--bullets {
  list-style: inside;
  list-style-type: none;
}
.ul--bullets li,
.ol--bullets li {
  position: relative;
  padding-left: 1.25rem;
}
.ul--bullets li:before,
.ol--bullets li:before {
  font-family: "skeletor";
  position: absolute;
  left: 0;
  top: 0;
  content: "\e93d";
  color: #fdb913;
  font-size: 0.75rem;
  display: block;
}
.ul--bullets a,
.ol--bullets a {
  text-decoration: underline;
}
.ul--bullets a:hover, .ul--bullets a:focus,
.ol--bullets a:hover,
.ol--bullets a:focus {
  text-decoration: none;
}

.ul--bullets-alt li:before,
.ol--bullets-alt li:before {
  color: #ababab;
}

.table {
  overflow-x: scroll;
  display: block;
  width: 100%;
}

table {
  border-collapse: collapse;
  width: inherit;
  border-left: solid 10px #fdb913;
}

tr {
  border-bottom: solid 1px #d6d6d6;
}
tr:nth-child(even) {
  background-color: #f1f1f0;
}

th {
  padding: 1.25rem 0.875rem;
  font-weight: bold;
  text-align: left;
  min-width: 3.125rem;
  color: #505050;
}

td {
  padding: 0.875rem 0.875rem;
  min-width: 6.25rem;
  color: #505050;
}

tfoot tr {
  background-color: #505050;
  border-bottom: none;
}
tfoot td {
  color: #ffffff;
  font-weight: bold;
}

.flex-table {
  width: 100%;
  padding: 0;
  margin: 0;
  margin-bottom: 0.5rem;
  table-layout: initial;
  border-left: none;
}
.flex-table .flex-table__header {
  border-color: #d6d6d6;
}
.flex-table thead {
  display: none;
  color: #505050;
  font-size: 0.875rem;
}
@media (min-width: 960px) {
  .flex-table thead {
    display: table-header-group;
  }
}
.flex-table tr {
  display: block;
  width: 100%;
  margin-bottom: 0.625rem;
  padding: 0.4375rem;
  background-color: #f1f1f0;
  border: solid 1px #d6d6d6;
}
@media (min-width: 960px) {
  .flex-table tr {
    display: table-row;
  }
}
.flex-table td {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.4375rem;
  text-align: right;
  font-size: 0.8125rem;
  color: #505050;
  border-bottom: solid 1px #d6d6d6;
}
@media (min-width: 960px) {
  .flex-table td {
    display: table-cell;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
}
.flex-table td:before {
  content: attr(data-label);
  color: #505050;
  font-size: 13px;
  font-weight: bold;
  margin-right: 0.875rem;
}
@media (min-width: 960px) {
  .flex-table td:before {
    display: none;
  }
}
.flex-table td:last-child {
  border-bottom: none;
}

.btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  border: none;
  font-size: 0.875rem;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  background-color: transparent;
  cursor: pointer;
  font-weight: bold;
  text-align: center;
  border-radius: 0;
  transition: color 600ms cubic-bezier(0.165, 0.84, 0.44, 1), background-color 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.btn--fluid {
  width: 100%;
}

a.btn {
  text-decoration: none;
}

.btn--primary {
  padding: 0.75rem 1.375rem;
  border: solid 2px #cc4b00;
  background-color: #cc4b00;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: #ffffff;
  color: #505050;
  border: inset solid 2px #cc4b00;
}

.btn--secondary {
  padding: 0.75rem 1.375rem;
  border: solid 2px #fdb913;
  background-color: #fdb913;
  color: #505050;
}
.btn--secondary:hover {
  background-color: #ffffff;
  color: #505050;
}

.btn--secondary.btn--inverse {
  background-color: #ffffff;
  color: #505050;
}

.btn--outline {
  padding: 0.625rem 1.25rem;
  font-size: 1rem;
  color: #505050;
  background-color: #ffffff;
  border: solid 3px #fdb913;
  text-transform: uppercase;
  vertical-align: middle;
}
.btn--outline:hover {
  background-color: #fdb913;
}

.btn--outline.btn--inverse {
  background-color: transparent;
  color: #ffffff;
}

.btn--outline.btn--secondary {
  border-color: #505050;
}
.btn--outline.btn--secondary:hover {
  background-color: #505050;
  color: #ffffff;
}

.btn--outline.btn--secondary.btn--inverse {
  border-color: #ffffff;
}

.btn--icon {
  padding: 0.75rem;
  font-size: 0.875rem;
}

.btn i {
  font-size: 1rem;
}

.btn--next {
  position: relative;
  padding-right: 1.875rem;
}
.btn--next:after {
  position: absolute;
  top: 0.375rem;
  right: 0.625rem;
  font-family: "skeletor";
  font-size: 2rem;
  content: "\e911";
}

.btn--previous {
  position: relative;
  padding-left: 1.875rem;
}
.btn--previous:after {
  position: absolute;
  top: 0.375rem;
  left: 0.625rem;
  font-family: "skeletor";
  font-size: 2rem;
  content: "\e90e";
}

.watch-video {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  color: #ffffff;
  margin-top: 0.625rem;
  padding: 0;
}
.watch-video .span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.25rem;
}
.watch-video .fs {
  font-size: 2.8125rem;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
@media (min-width: 960px) {
  .watch-video {
    margin-top: 1.25rem;
  }
  .watch-video .span {
    font-size: 1.375rem;
  }
  .watch-video .fs {
    font-size: 3.25rem;
  }
}

.btn--disabled,
.btn--disabled:hover,
.btn--disabled:focus,
.btn.disabled,
.btn.disabled:hover,
.btn.disabled:focus {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(90%);
}

.btn--loading {
  min-height: 0.875rem;
  color: transparent;
}
.btn--loading:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -0.625rem 0 0 -0.625rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 500rem;
  border: 2px solid rgba(0, 0, 0, 0.15);
}
.btn--loading:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  margin: -0.625rem 0 0 -0.625rem;
  width: 1.25rem;
  height: 1.25rem;
  -webkit-animation: button-spin 0.6s linear;
          animation: button-spin 0.6s linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  border-radius: 500rem;
  border-color: #ffffff transparent transparent;
  border-style: solid;
  border-width: 2px;
  box-shadow: 0 0 0 1px transparent;
}
.btn--loading:hover {
  color: transparent;
  cursor: not-allowed;
}

@-webkit-keyframes button-spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes button-spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn-group {
  display: inline-flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  border: solid 2px #ababab;
  border-radius: 4px;
}
.btn-group .btn {
  display: block;
  margin: 0;
  padding: 0.4375rem 0.875rem;
  align-self: stretch;
  background-color: transparent;
  color: #ababab;
  border-right: solid 2px #ababab;
}
.btn-group .btn:last-child {
  border-right: none;
}
.btn-group .btn:hover, .btn-group .btn.active, .btn-group .btn.btn--active {
  background-color: #ababab;
  color: #ffffff;
}
@media (min-width: 500px) {
  .btn-group .btn {
    padding: 0.8125rem 1.625rem;
  }
}

.btn-group--inverse {
  border-color: #ffffff;
}
.btn-group--inverse .btn {
  color: #ffffff;
  border-color: #ffffff;
}
.btn-group--inverse .btn:hover, .btn-group--inverse .btn.active, .btn-group--inverse .btn.btn--active {
  background-color: #ffffff;
  color: #505050;
}

.divider {
  width: 2.5rem;
  height: 0.1875rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  background-color: #d6d6d6;
}
@media (min-width: 700px) {
  .divider {
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 960px) {
  .divider {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
@media (min-width: 1200px) {
  .divider {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

.divider--bumblebee {
  background-color: #fdb913;
}

.divider--trypticon {
  background-color: #505050;
}

.divider--large {
  width: 100%;
  height: 1px;
  background-color: #d6d6d6;
  margin: 1.875rem 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

@font-face {
  font-family: "skeletor";
  src: url("../fonts/skeletor.woff2") format("woff2");
  font-weight: normal;
  unicode-range: U+0-10FFFF;
  font-style: normal;
  font-stretch: normal;
}
.fs {
  font-family: "skeletor" !important;
  font-size: 0.875rem;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: normal;
  vertical-align: middle;
  display: inline-block;
}

.fs--space-right {
  padding-right: 0.625rem;
}

.fs--space-left {
  padding-left: 0.625rem;
}

.fs-halo-ad:before {
  content: "\e900";
}

.fs-halo-biz:before {
  content: "\e901";
}

.fs-halo-film:before {
  content: "\e902";
}

.fs-halo-games:before {
  content: "\e903";
}

.fs-halo-media:before {
  content: "\e904";
}

.fs-halo-music:before {
  content: "\e905";
}

.fs-halo-sports:before {
  content: "\e906";
}

.fs-halo-tech:before {
  content: "\e907";
}

.fs-pencil:before {
  content: "\e908";
}

.fs-pencil-circle:before {
  content: "\e909";
}

.fs-pencil-fill:before {
  content: "\e90a";
}

.fs-phone:before {
  content: "\e90f";
}

.fs-phone-circle:before {
  content: "\e910";
}

.fs-phone-fill:before {
  content: "\e90b";
}

.fs-chat:before {
  content: "\e912";
}

.fs-chat-circle:before {
  content: "\e916";
}

.fs-chat-fill:before {
  content: "\e90c";
}

.fs-info:before {
  content: "\e913";
}

.fs-info-circle:before {
  content: "\e91d";
}

.fs-info-fill:before {
  content: "\e90d";
}

.fs-vr:before {
  content: "\e921";
}

.fs-vr-alt:before {
  content: "\e922";
}

.fs-play:before {
  content: "\e937";
}

.fs-play-alt:before {
  content: "\e923";
}

.fs-facebook:before {
  content: "\e924";
}

.fs-instagram:before {
  content: "\e925";
}

.fs-linkedin:before {
  content: "\e926";
}

.fs-pinterest:before {
  content: "\e927";
}

.fs-snapchat:before {
  content: "\e928";
}

.fs-tumblr:before {
  content: "\e929";
}

.fs-twitter:before {
  content: "\e92a";
}

.fs-youtube:before {
  content: "\e92b";
}

.fs-connect:before {
  content: "\e918";
}

.fs-tiktok:before {
  content: "\e91b";
}

.fs-twitch:before {
  content: "\e91c";
}

.fs-whatsapp:before {
  content: "\e931";
}

.fs-grid-outline:before {
  content: "\e92c";
}

.fs-grid:before {
  content: "\e92d";
}

.fs-list-outline:before {
  content: "\e92e";
}

.fs-list:before {
  content: "\e92f";
}

.fs-alert:before {
  content: "\e930";
}

.fs-check:before {
  content: "\e8f3";
}

.fs-close:before {
  content: "\e934";
}

.fs-angle-down:before {
  content: "\e919";
}

.fs-arrow-left-thin:before {
  content: "\e90e";
}

.fs-arrow-right-thin:before {
  content: "\e911";
}

.fs-arrow-up:before {
  content: "\e935";
}

.fs-arrow-down:before {
  content: "\e936";
}

.fs-arrow-left:before {
  content: "\e938";
}

.fs-arrow-right:before {
  content: "\e939";
}

.fs-upload:before {
  content: "\e93a";
}

.fs-download:before {
  content: "\e93b";
}

.fs-filter:before {
  content: "\e93c";
}

.fs-bullet:before {
  content: "\e93d";
}

.fs-bars:before {
  content: "\e93e";
}

.fs-search:before {
  content: "\e93f";
}

.fs-slash-bullet:before {
  content: "\e914";
}

.fs-location-pin:before {
  content: "\e915";
}

.fs-calendar:before {
  content: "\e917";
}

.fs-logo-badge:before {
  content: "\e91a";
}

.blockquote {
  border-left: solid 3px #fdb913;
  padding: 0.625rem 0.625rem 0.625rem 1.25rem;
  color: #505050;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 960px) {
  .blockquote {
    padding: 0.625rem 0.625rem 0.625rem 1.875rem;
    font-size: 1rem;
    line-height: 1.5rem;
    margin-top: 1.875rem;
    margin-bottom: 1.875rem;
  }
}

.blockquote__sig {
  font-weight: bold;
  margin-top: 1.25rem;
}

.close-surface {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  visibility: hidden;
}

.nav--is-on .close-surface,
.off-canvas--is-on .close-surface,
.dropdown--is-on .close-surface,
.search--is-on .close-surface {
  opacity: 1;
  visibility: visible;
}

.ctas .cta:first-child {
  margin-top: 0;
}

.cta {
  padding: 1.25rem;
  padding-right: 3.125rem;
  margin-top: 0.625rem;
  margin-bottom: 0.625rem;
  position: relative;
  cursor: pointer;
  display: block;
}
@media (min-width: 960px) {
  .cta {
    padding: 1.875rem;
    padding-right: 3.75rem;
    margin-top: 0.9375rem;
    margin-bottom: 0.9375rem;
  }
}

.cta__title {
  font-weight: bold;
  font-size: 0.875rem;
  padding-bottom: 0.75rem;
}
.cta__title .semi-bold {
  font-weight: 400;
}
@media (min-width: 960px) {
  .cta__title {
    font-size: 1rem;
  }
}

.cta__title:only-child {
  padding-bottom: 0;
}

.cta__title--caps {
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 300;
}
@media (min-width: 960px) {
  .cta__title--caps {
    font-size: 1.75rem;
  }
}

.cta__title--large {
  font-size: 1.25rem;
  font-weight: 300;
}
@media (min-width: 960px) {
  .cta__title--large {
    font-size: 1.625rem;
  }
}

.cta__description {
  font-size: 0.9375rem;
}
.cta__description strong {
  display: block;
}

.cta:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  margin-top: -0.9375rem;
}
@media (min-width: 960px) {
  .cta:after {
    margin-top: -1.875rem;
  }
}

.cta--primary {
  background-color: #e65400;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cta--primary .cta__title {
  color: #ffffff;
}
.cta--primary .cta__description {
  color: #f1f1f0;
}
.cta--primary:after {
  font-family: "skeletor";
  content: "\e911";
  font-size: 1.875rem;
  color: #ffffff;
}
.cta--primary:hover {
  background-color: #ff5d01;
}
@media (min-width: 960px) {
  .cta--primary:after {
    font-size: 3.75rem;
  }
}

.cta--secondary, .cta--secondary-alt {
  background-color: #ffffff;
  border: solid 1px #e65400;
  border-left: solid 0.1875rem #e65400;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cta--secondary .cta__title, .cta--secondary-alt .cta__title {
  color: #e65400;
}
.cta--secondary .cta__description, .cta--secondary-alt .cta__description {
  color: #505050;
}
.cta--secondary:after, .cta--secondary-alt:after {
  font-family: "skeletor";
  content: "\e911";
  font-size: 1.875rem;
  color: #e65400;
}
.cta--secondary:hover, .cta--secondary-alt:hover {
  background-color: #e65400;
}
.cta--secondary:hover .cta__title, .cta--secondary-alt:hover .cta__title {
  color: #ffffff;
}
.cta--secondary:hover .cta__description, .cta--secondary-alt:hover .cta__description {
  color: #ffffff;
}
.cta--secondary:hover .cta__description strong, .cta--secondary-alt:hover .cta__description strong {
  color: #ffffff;
}
.cta--secondary:hover:after, .cta--secondary-alt:hover:after {
  color: #ffffff;
}
@media (min-width: 960px) {
  .cta--secondary:after, .cta--secondary-alt:after {
    font-size: 3.75rem;
  }
}

.cta--secondary-alt {
  background-color: #ffffff;
}

.cta--secondary-alt-bumblebee {
  border-color: #fdb913;
}
.cta--secondary-alt-bumblebee .cta__title {
  color: #505050;
}
.cta--secondary-alt-bumblebee:hover {
  background-color: #fdb913;
}
.cta--secondary-alt-bumblebee:hover:after {
  background-image: none;
}

.cta--autobot {
  margin: 0.1875rem 0;
  padding: 1.25rem 1.875rem;
  background-color: #f1f1f0;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cta--autobot .cta__title {
  margin-top: -0.5rem;
  padding-bottom: 0;
  color: #505050;
}
.cta--autobot .cta__description {
  margin-bottom: -0.375rem;
  color: #505050;
}
.cta--autobot:after {
  height: 2.75rem;
  margin-top: -1.375rem;
  right: 0.9375rem;
  font-family: "skeletor";
  content: "\e911";
  font-size: 2.75rem;
  font-weight: bold;
  color: #fdb913;
}
.cta--autobot:hover {
  background-color: #d6d6d6;
}
@media (min-width: 960px) {
  .cta--autobot:after {
    height: 3.5rem;
    margin-top: -1.75rem;
    right: 1.25rem;
    font-size: 3.5rem;
  }
}

.cta--sunstreak {
  display: inline-block;
  padding: 0;
  padding-right: 3.75rem;
  color: #505050;
}
.cta--sunstreak:hover, .cta--sunstreak:focus {
  text-decoration: underline;
}
.cta--sunstreak:after {
  font-family: "skeletor";
  content: "\e911";
  font-size: 3.75rem;
  font-weight: bold;
  color: #fdb913;
}

.cta--dark {
  background-color: #505050;
  color: #ffffff;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cta--dark:hover {
  background-color: #373737;
}
.cta--dark:after {
  font-family: "skeletor";
  content: "\e911";
  font-size: 1.875rem;
  color: #ffffff;
}
@media (min-width: 960px) {
  .cta--dark:after {
    font-size: 3.75rem;
  }
}

.cta--custom-icon {
  padding-right: 5rem;
}
.cta--custom-icon:after {
  font-size: 2.5rem;
  font-family: "skeletor";
  content: "\e93b";
  background-image: none;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -1.25rem;
}
.cta--custom-icon:hover:after {
  background-image: none;
}
@media (min-width: 960px) {
  .cta--custom-icon:after {
    font-size: 3.125rem;
    margin-top: -1.5625rem;
  }
}

.cta--primary.cta--custom-icon:after {
  color: #ffffff;
}

.cta--secondary.cta--custom-icon:after, .cta--custom-icon.cta--secondary-alt:after {
  color: #e65400;
}
.cta--secondary.cta--custom-icon:hover:after, .cta--custom-icon.cta--secondary-alt:hover:after {
  color: #ffffff;
}

.cta--secondary-alt-bumblebee.cta--custom-icon:after {
  color: #fdb913;
}

.cta--dark.cta--custom-icon:after {
  color: #ffffff;
}

.cta--custom-icon-call:after {
  content: "\e910";
  font-family: "skeletor";
}

.cta--custom-icon-talk:after {
  content: "\e916";
  font-family: "skeletor";
}

.super-cta {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 25rem;
  padding: 2.5rem;
  background-color: #000000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.super-cta__overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
}

.super-cta__text {
  margin-bottom: 1.5625rem;
  font-size: 1.875rem;
  font-family: "Square Serif", sans-serif;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  z-index: 10;
}
@media (min-width: 960px) {
  .super-cta__text {
    font-size: 3.75rem;
  }
}

.super-cta__description {
  width: 60vw;
  color: #ffffff;
  text-align: center;
  z-index: 10;
}

.super-cta__text ~ .super-cta__description {
  margin-top: -1.125rem;
}

.super-cta .btn {
  text-transform: capitalize;
  background-color: transparent;
  font-weight: 400;
  color: #ffffff;
  z-index: 10;
}
.super-cta .btn:hover, .super-cta .btn:focus {
  background-color: #fdb913;
}

.epic-quote {
  position: relative;
  padding: 0 1.25rem;
  font-family: "Square Serif", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.5;
  color: #626262;
}
.epic-quote:before {
  content: "“";
  position: absolute;
  left: -0.875rem;
  top: 0.125rem;
  font-family: "Square Serif", sans-serif;
  font-size: 4.25rem;
  font-weight: 600;
  line-height: 2.25rem;
  color: #f1f1f0;
}
@media (min-width: 960px) {
  .epic-quote {
    font-size: 1.75rem;
  }
}

.epic-quote__sig {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #505050;
}

.epic-quote--ultramagnus:before {
  color: #13b5ea;
}

.epic-quote--bumblebee:before {
  color: #fdb913;
}

.header {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 1.875rem;
}
@media (min-width: 960px) {
  .header {
    margin-bottom: 2.5rem;
  }
}

.header p {
  font-size: 1.375rem;
  margin: 0 auto;
  line-height: 2rem;
  width: 100%;
  position: relative;
}
.header p.small-text {
  font-size: 1rem;
  line-height: 1.5625rem;
}
@media (min-width: 500px) {
  .header p {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}
@media (min-width: 700px) {
  .header p {
    font-size: 1.375rem;
    line-height: 2rem;
  }
}
@media (min-width: 960px) {
  .header p {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media (min-width: 1200px) {
  .header p {
    font-size: 1.75rem;
    line-height: 2.4375rem;
  }
}

.header--center {
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.header--2-column {
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}

.header--inverse .header__primary {
  color: #ffffff;
}
.header--inverse p {
  color: #ffffff;
}
.header--inverse .header__tertiary {
  color: #ffffff;
}

.header__primary {
  font-size: 1.875rem;
  font-weight: 400;
  margin: 0;
  text-transform: none;
  width: 100%;
}
@media (min-width: 500px) {
  .header__primary {
    font-size: 2.375rem;
  }
}
@media (min-width: 700px) {
  .header__primary {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .header__primary {
    font-size: 3.625rem;
  }
}

.header__primary + p {
  padding-top: 1.25rem;
}

.header__secondary + .header__primary {
  margin-top: 1.0625rem;
}

.header__primary + .divider {
  margin-top: 1.25rem;
}

.header__secondary {
  font-size: 1.125rem;
  color: #e65400;
  text-transform: uppercase;
  font-weight: 300;
  width: 100%;
}
@media (min-width: 500px) {
  .header__secondary {
    font-size: 1.25rem;
  }
}
@media (min-width: 700px) {
  .header__secondary {
    font-size: 1.5rem;
  }
}
@media (min-width: 960px) {
  .header__secondary {
    font-size: 1.75rem;
  }
}

.header__tertiary {
  font-size: 1.125rem;
  font-weight: 300;
  width: 100%;
}
@media (min-width: 500px) {
  .header__tertiary {
    font-size: 1.25rem;
  }
}
@media (min-width: 700px) {
  .header__tertiary {
    font-size: 1.5rem;
  }
}
@media (min-width: 960px) {
  .header__tertiary {
    font-size: 1.75rem;
  }
}

.heading-group {
  margin-bottom: 1.25rem;
}
@media (min-width: 960px) {
  .heading-group {
    margin-bottom: 1.875rem;
  }
}

.header .divider:last-child,
.header .divider--bumblebee:last-child {
  margin-bottom: 0;
}

.slash-heading {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 2rem;
}

.slash-heading--align-right .slash-heading__title {
  margin-left: auto;
  padding: 0 0 0 1.25rem;
}
@media (min-width: 960px) {
  .slash-heading--align-right .slash-heading__title {
    padding: 0 0 0 1.875rem;
  }
}

.slash-heading--white .slash-heading__title,
.slash-heading--white .slash-heading__button,
.slash-heading--white .slash-heading__filter {
  background-color: #f1f1f0;
}
@media (min-width: 400px) {
  .slash-heading--white .slash-heading__tile-image {
    background-image: url("../images/tiles/slash-tile-white.svg");
  }
}

.slash-heading__tile-image {
  position: absolute;
  width: 100%;
  height: 1.25rem;
  background-repeat: repeat-x;
  background-position: left center;
  background-size: 0.6875rem 1.25rem;
  z-index: 10;
}
@media (min-width: 400px) {
  .slash-heading__tile-image {
    background-image: url("../images/tiles/slash-tile-gray.svg");
  }
}

.slash-heading__title {
  margin-top: -0.125rem;
  padding: 0 1.25rem 0 0;
  background-color: #ffffff;
  z-index: 20;
  font-size: 1.375rem;
  color: #505050;
}
@media (min-width: 960px) {
  .slash-heading__title {
    padding: 0 1.875rem 0 0;
    font-size: 1.75rem;
  }
}

.slash-heading__title--uppercase {
  font-weight: bold;
  font-size: 1.125rem;
  text-transform: uppercase;
}

.slash-heading--filter {
  flex-flow: column nowrap;
}
.slash-heading--filter .slash-heading__tile-image {
  display: none;
}
.slash-heading--filter .select-filter {
  padding: 0;
  background-color: #ffffff;
  z-index: 20;
  flex-flow: column nowrap;
  order: 1;
}
.slash-heading--filter .select-filter .btn {
  width: 100%;
  margin-top: 0.625rem;
  margin-left: 0;
}
.slash-heading--filter .slash-heading__title {
  padding-top: 0.75rem;
  padding-right: 0;
  order: 2;
}
@media (min-width: 825px) {
  .slash-heading--filter {
    flex-flow: row nowrap;
  }
  .slash-heading--filter .slash-heading__tile-image {
    display: block;
  }
  .slash-heading--filter .select-filter {
    padding: 0 0 0 1.25rem;
    margin-left: auto;
    order: 0;
  }
  .slash-heading--filter .slash-heading__title {
    padding-top: 0;
    padding-right: 1.25rem;
    order: 0;
  }
}
@media (min-width: 960px) {
  .slash-heading--filter .select-filter {
    flex-flow: row nowrap;
    width: auto;
    padding: 0 0 0 1.875rem;
  }
  .slash-heading--filter .select-filter .btn {
    width: auto;
    margin-top: 0;
    margin-left: 0.625rem;
  }
}

.slash-heading__button {
  margin-left: auto;
  padding: 0.3125rem 0 0.3125rem 0.625rem;
  color: #ffffff;
  background-color: #ffffff;
  z-index: 20;
}
.slash-heading__button a,
.slash-heading__button button {
  padding: 0.3125rem 0.9375rem;
  color: #ffffff;
  background-color: #505050;
}
@media (min-width: 700px) {
  .slash-heading__button {
    padding: 0.3125rem 0 0.3125rem 1.875rem;
  }
}

.hero {
  position: relative;
  height: 50vh;
  min-height: 18.75rem;
  margin: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #000000;
  background-image: url("../images/skeletor/skeletor-03.jpg");
  transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
}
.hero .container {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
}
@media (min-width: 500px) {
  .hero {
    height: 18.75rem;
  }
}
@media (min-width: 700px) {
  .hero {
    height: 25rem;
  }
}
@media (min-width: 1200px) {
  .hero {
    height: 50vh;
  }
}

.hero--small {
  height: 9.375rem;
}
@media (min-width: 500px) {
  .hero--small {
    height: 10.3125rem;
  }
}
@media (min-width: 700px) {
  .hero--small {
    height: 15.625rem;
  }
}
@media (min-width: 1200px) {
  .hero--small {
    height: 18.75rem;
  }
}
@media (min-width: 2200px) {
  .hero--small {
    height: 25rem;
  }
}

.hero__overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.image-fader {
  position: relative;
  display: block;
  overflow: hidden;
  cursor: pointer;
}
.image-fader img {
  position: relative;
  display: block;
  width: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.image-fader:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #e65400;
}
.image-fader:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #e65400;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-fader:hover img {
  transform: scale(1.1);
}
.image-fader:hover:after {
  opacity: 0.8;
}

.logo {
  display: block;
  height: 1.625rem;
  transform: translateZ(0);
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  outline: none;
}
.logo:hover, .logo:focus {
  opacity: 0.5;
}
.logo img {
  height: 1.625rem;
  display: block;
}

.newspaper-columns {
  -moz-columns: 1 auto;
       columns: 1 auto;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (min-width: 700px) {
  .newspaper-columns {
    -moz-columns: 2 auto;
         columns: 2 auto;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}

@media (min-width: 1200px) {
  .newspaper-columns--3-columns {
    -moz-columns: 3 auto;
         columns: 3 auto;
  }
}

.outline-box {
  border: solid 3px #d6d6d6;
  padding: 1.25rem;
}

.outline-box h1 {
  margin-top: auto;
}

.outline-box :last-child {
  margin-bottom: 0;
}

.disclaimer {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.5;
  padding-left: 2.5rem;
  margin: 1.25rem 0;
  color: #505050;
}
.disclaimer:after {
  font-family: "skeletor";
  content: "\e914";
  font-size: 1rem;
  position: absolute;
  top: 0px;
  left: 0px;
  color: #e65400;
}
.disclaimer a {
  text-decoration: underline;
}
@media (min-width: 960px) {
  .disclaimer {
    font-size: 1rem;
  }
  .disclaimer:after {
    top: 2px;
  }
}

.disclaimer--gray:after {
  color: #ababab;
}

@media (min-width: 960px) {
  p + .disclaimer {
    margin-top: 2.5rem;
  }
}

.badge {
  display: inline-block;
  padding: 0.4375rem 0.875rem;
  margin-right: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 3px;
  border: solid 2px #ababab;
  color: #ababab;
}
.badge i {
  color: #ababab;
}
.badge:last-child, .badge:only-child {
  margin-right: 0;
}

.badge .fs-close {
  color: #fdb913;
}

.badge--highlight {
  color: #505050;
  border-color: #fdb913;
  background-color: transparent;
}

.badge--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.badge--inverse {
  color: #505050;
  background-color: #ffffff;
}

.badge--highlight.badge--inverse {
  color: #ffffff;
  background-color: transparent;
}

.tag {
  display: block;
  border: solid 1px #d6d6d6;
}

.tag:hover .tag__text {
  text-decoration: underline;
}

.cards {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-flow: row wrap;
}
.cards > * {
  width: 100%;
  margin-right: 0;
  margin-bottom: 1.25rem;
}
@media (min-width: 500px) {
  .cards > * {
    width: calc(100% / 3 - 1.25rem + 1.25rem / 3);
    margin: 0 1.25rem 1.25rem 0;
  }
  .cards > *:nth-child(n) {
    margin-right: 1.25rem;
  }
  .cards > *:nth-child(3n+3) {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .cards > * {
    width: calc(100% / 3 - 2.5rem + 2.5rem / 3);
    margin: 0 2.5rem 2.5rem 0;
  }
  .cards > *:nth-child(n) {
    margin-right: 2.5rem;
  }
  .cards > *:nth-child(3n+3) {
    margin-right: 0;
  }
}
.card {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  background-color: #ffffff;
}

.card__image {
  flex: 0 0 36%;
}
.card__image img {
  width: 100%;
}
.card__copy {
  width: 100%;
  height: inherit;
  border: solid 1px #d6d6d6;
}

.card__title {
  display: inline-block;
  padding: 0.3125rem 0.625rem;
  margin: 0.625rem 0.625rem 0 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #505050;
  background-color: #fdb913;
}
@media (min-width: 1024px) {
  .card__title {
    margin: 0.9375rem 0.9375rem 0 0.9375rem;
    font-size: 0.875rem;
  }
}

.card__text {
  margin: 0.625rem;
  font-size: 0.75rem;
  color: #505050;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  box-orient: vertical;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .card__text {
    margin: 0.625rem 0.9375rem 0.625rem 0.9375rem;
    font-size: 0.875rem;
  }
}

.cards--stacked {
  flex-flow: column nowrap;
}
.cards--stacked .card {
  align-items: stretch;
  width: 100%;
  margin-right: 0;
  margin-bottom: 1.25rem;
}
.cards--stacked .card:last-child {
  margin-bottom: 0;
}

.card--hero {
  height: 100%;
  flex-flow: column nowrap;
}
.card--hero .card__copy {
  border-top: none;
}
.card--hero .card__text {
  font-size: 1.75rem;
  font-weight: 300;
}

.latest-news-cards {
  overflow: hidden;
  padding: 0 0 2.5rem 0;
}
.latest-news-cards .sub-headline, .latest-news-cards .academic__body-title {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.latest-news-cards .card {
  margin-bottom: 0;
}
.latest-news-cards .card__copy {
  border: none;
}

.metabar {
  display: none;
}
@media (min-width: 700px) {
  .metabar {
    display: block;
    height: 2.8125rem;
    line-height: 2.8125rem;
    text-align: right;
    position: fixed;
    top: 0px;
    right: 2.8125rem;
    z-index: 81;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-end;
  }
}
@media (min-width: 960px) {
  .metabar {
    width: 100%;
    height: 40px;
    line-height: 40px;
    left: 0px;
    background-color: #f1f1f0;
    border-bottom: solid 1px #d6d6d6;
  }
}

.metabar__item {
  display: inline-block;
  margin: 0 0.75rem;
  font-size: 0.875rem;
  color: #505050;
}
.metabar__item a {
  color: #505050;
}
.metabar__item a:hover {
  color: #fdb913;
}
.metabar__item i {
  padding-left: 0.125rem;
  color: #fdb913;
  vertical-align: baseline;
}
@media (min-width: 960px) {
  .metabar__item {
    margin: 0 1rem;
  }
  .metabar__item:last-child {
    margin-right: 0;
  }
}

.metabar--inverse {
  color: #ffffff;
}
.metabar--inverse a,
.metabar--inverse .metabar__item {
  color: #ffffff;
}
@media (min-width: 700px) {
  .metabar--inverse a,
  .metabar--inverse .metabar__item {
    color: #454545;
  }
}
@media (min-width: 960px) {
  .metabar--inverse {
    background-color: #454545;
  }
  .metabar--inverse a,
  .metabar--inverse .metabar__item {
    color: #ffffff;
  }
}

.topbar {
  height: 2.8125rem;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  background-color: #ffffff;
  border-bottom: solid 0.0625rem #d6d6d6;
  box-shadow: 0px 0px 0.125rem rgba(0, 0, 0, 0.2);
  transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-sizing: initial;
}
.topbar > .container {
  height: 45px;
  position: relative;
  padding-right: 0;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 960px) {
  .topbar > .container {
    height: 90px;
    padding-right: 0.9375rem;
  }
}
.topbar.shrink {
  height: 45px;
}
.topbar.shrink > .container {
  height: 45px;
}
@media (min-width: 960px) {
  .topbar {
    height: 90px;
  }
  .topbar > .container {
    height: 90px;
  }
}

.whopper {
  width: 45px;
  height: 45px;
  padding: 0;
  outline: none;
  cursor: pointer;
  order: 3;
}
.whopper i {
  font-size: 1.125rem;
  color: #fdb913;
}
.whopper:hover, .whopper:focus {
  color: #000000;
  background-color: #f1f1f0;
}

.nav--is-on .whopper {
  background-color: #d6d6d6;
}
.nav--is-on .whopper path {
  fill: #505050;
}
.nav--is-on .whopper i {
  color: #505050;
}

.primary-nav {
  width: calc(100% - 45px);
  height: calc(100% - 45px);
  position: fixed;
  top: 45px;
  right: calc(-100% + 45px);
  overflow-y: auto;
  background-color: #f1f1f0;
  visibility: hidden;
  transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.5s, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 500px) {
  .primary-nav {
    width: 20rem;
    right: -20rem;
  }
}
@media (min-width: 960px) {
  .primary-nav {
    width: auto;
    height: auto;
    max-width: initial;
    right: auto;
    top: auto;
    visibility: visible;
    position: relative;
    background-color: transparent;
  }
}

.nav--is-on .primary-nav {
  right: 0;
  visibility: visible;
  box-shadow: 0rem 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.3);
}
@media (min-width: 960px) {
  .nav--is-on .primary-nav {
    box-shadow: none;
  }
}

.nav--is-on {
  overflow: hidden;
}

.shrink .primary-nav .primary-nav__dropdown {
  top: 45px;
}

.primary-nav__block {
  width: 100%;
  margin-right: 1.25rem;
  border-top: solid 0.0625rem #d6d6d6;
  border-bottom: solid 0.0625rem #ffffff;
  color: #d6d6d6;
}
@media (min-width: 960px) {
  .primary-nav__block {
    width: auto;
    margin-right: 1.875rem;
    border: none;
    display: inline-block;
    vertical-align: middle;
  }
  .primary-nav__block:last-child {
    padding-right: 0;
    margin-right: 0;
  }
}

.primary-nav__button,
.primary-nav__link {
  padding: 0.875rem 0.9375rem 0.875rem 0.9375rem;
  margin: 0;
  text-align: left;
  width: 100%;
  display: block;
  border: none;
  font-size: 1.125rem;
  cursor: pointer;
  font-family: "Open Sans";
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #f1f1f0;
  color: #505050;
  position: relative;
}
.primary-nav__button > i,
.primary-nav__link > i {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 2.8125rem;
  height: 100%;
  line-height: 3.25rem;
  text-align: center;
  vertical-align: middle;
  font-size: 0.5rem;
  color: #e65400;
  background-color: #ffffff;
  transform-origin: center;
  transform: rotateZ(0deg);
  transition: color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.primary-nav__button:hover,
.primary-nav__link:hover {
  color: #fdb913;
}
.primary-nav__button:hover > i,
.primary-nav__link:hover > i {
  color: #fdb913;
}
.primary-nav__button:focus, .primary-nav__button.active,
.primary-nav__link:focus,
.primary-nav__link.active {
  color: #fdb913;
  outline: none;
}
.primary-nav__button:focus > i, .primary-nav__button.active > i,
.primary-nav__link:focus > i,
.primary-nav__link.active > i {
  color: #fdb913;
  background-color: #505050;
}
.primary-nav__button.active > i,
.primary-nav__link.active > i {
  transform: rotateZ(180deg);
}
@media (min-width: 960px) {
  .primary-nav__button,
  .primary-nav__link {
    font-size: 0.875rem;
    padding: 0;
    background-color: transparent;
  }
  .primary-nav__button > i,
  .primary-nav__link > i {
    padding: 0.3125rem;
    position: static;
    top: auto;
    right: auto;
    height: auto;
    width: auto;
    display: inline-block;
    line-height: normal;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .primary-nav__button > i:before,
  .primary-nav__link > i:before {
    margin: auto;
  }
  .primary-nav__button:focus > i, .primary-nav__button.active > i,
  .primary-nav__link:focus > i,
  .primary-nav__link.active > i {
    background-color: transparent;
  }
}

.primary-nav__link--outline {
  padding: 0.3125rem 0.625rem;
  border: solid 3px #fdb913;
}

.primary-nav__button {
  padding-right: 1.1875rem;
}

.primary-nav__button:after {
  font-size: 0.375rem;
  width: 12px;
  height: 6px;
  font-family: "skeletor";
  content: "\e919";
  text-align: center;
  position: absolute;
  top: 50%;
  right: 14px;
  margin-top: -3px;
  color: #e65400;
  transform-origin: center;
  transform: rotateZ(0deg);
  transition: transform 300ms cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 960px) {
  .primary-nav__button:after {
    right: 0px;
  }
}

.primary-nav__block.active .primary-nav__button:after {
  transform: rotateZ(180deg);
  color: #fdb913;
}

.primary-nav__block.active .primary-nav__button:hover:after,
.primary-nav__block.active .primary-nav__button:focus:after {
  color: #fdb913;
}

.primary-nav__block.active .primary-nav__button,
.primary-nav__block.active .primary-nav__button:hover,
.primary-nav__block.active .primary-nav__button:focus {
  color: #fdb913;
}

.primary-nav__dropdown {
  overflow: hidden;
  display: none;
  padding: 0.625rem 0;
  background-color: #505050;
  color: #ffffff;
  transition: top 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.primary-nav__dropdown .container {
  padding: 0;
}
@media (min-width: 960px) {
  .primary-nav__dropdown {
    width: 100%;
    margin: 0;
    overflow: hidden;
    list-style: none;
    padding: 0;
    position: fixed;
    left: 0;
    top: 90px;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
  }
  .primary-nav__dropdown .container {
    padding: 0 0.9375rem;
  }
}

.primary-nav__dropdown-item {
  position: relative;
  margin: 0;
}
.primary-nav__dropdown-item:hover a:after {
  width: 4px;
}
@media (min-width: 960px) {
  .primary-nav__dropdown-item {
    display: inline-block;
    padding: 0;
    margin-right: 1.25rem;
  }
  .primary-nav__dropdown-item:last-child {
    margin-right: 0;
  }
  .primary-nav__dropdown-item:hover a:after {
    height: 4px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .primary-nav__dropdown-item {
    margin-right: 1.875rem;
  }
}

.primary-nav__dropdown-link {
  display: block;
  position: relative;
  padding: 0.625rem 0.75rem;
  color: #ffffff;
  font-size: 0.875rem;
  text-align: left;
  line-height: 1.25rem;
}
.primary-nav__dropdown-link:after {
  height: 100%;
  width: 0;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  box-sizing: initial;
  background-color: #fdb913;
  transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 960px) {
  .primary-nav__dropdown-link {
    padding: 0.625rem 0;
    line-height: normal;
  }
  .primary-nav__dropdown-link:after {
    height: 0px;
    width: 100%;
    top: auto;
    bottom: 0px;
    left: 0px;
  }
}
@media (min-width: 1200px) {
  .primary-nav__dropdown-link {
    font-size: 1rem;
  }
}

.primary-nav__dropdown-title {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  padding: 0.9375rem;
  margin-bottom: 0;
  line-height: normal;
}
@media (min-width: 960px) {
  .primary-nav__dropdown-title {
    padding: 1.875rem 0.9375rem 0.4375rem 0;
  }
}

.primary-nav__dropdown-title-link {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.125rem;
  color: #fdb913;
  position: relative;
}
.primary-nav__dropdown-title-link i {
  padding-left: 1.875rem;
  font-size: 0.75rem;
  opacity: 0;
  transition: padding 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s, opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
}
.primary-nav__dropdown-title-link:hover {
  text-decoration: underline;
}
@media (min-width: 1200px) {
  .primary-nav__dropdown-title-link {
    font-size: 1.375rem;
  }
}

.primary-nav__block.active .primary-nav__dropdown-title-link:after {
  display: inline-block;
  margin-left: 0.625rem;
  vertical-align: middle;
  font-family: "skeletor";
  font-size: 1rem;
  content: "\e939";
  color: #fdb913;
  transition: margin-left 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-name: arrowSlide;
          animation-name: arrowSlide;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
}

@-webkit-keyframes arrowSlide {
  from {
    margin-left: 1.25rem;
  }
  to {
    margin-left: 0.625rem;
  }
}

@keyframes arrowSlide {
  from {
    margin-left: 1.25rem;
  }
  to {
    margin-left: 0.625rem;
  }
}
.footer {
  width: 100%;
  padding: 2.5rem 0 0 0;
  background-color: #505050;
  color: #ffffff;
  position: relative;
  right: 0;
  transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav--is-on .footer {
  right: calc(100% - 45px);
}
@media (min-width: 500px) {
  .nav--is-on .footer {
    right: 20rem;
  }
}
@media (min-width: 960px) {
  .nav--is-on .footer {
    right: 0;
  }
}

.footer .logo {
  width: 100%;
  margin-bottom: 1.875rem;
  display: block;
  text-align: center;
}
.footer .logo img {
  display: inline-block;
}
@media (min-width: 1200px) {
  .footer .logo {
    width: auto;
  }
}

.footer__contact {
  width: 100%;
  margin-bottom: 1.875rem;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  flex: 0 3 auto;
}
@media (min-width: 700px) {
  .footer__contact {
    flex-flow: row nowrap;
    justify-content: space-between;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .footer__contact {
    padding-bottom: 1.875rem;
    border-bottom: solid 0.0625rem #626262;
  }
}

.footer__contact-block {
  width: 100%;
}
@media (min-width: 700px) {
  .footer__contact-block {
    width: 25%;
  }
}

.footer__contact-block:nth-child(2),
.footer__contact-block:nth-child(3) {
  width: 50%;
}
@media (min-width: 700px) {
  .footer__contact-block:nth-child(2),
  .footer__contact-block:nth-child(3) {
    width: 25%;
  }
}

.footer__contact-address {
  margin-bottom: 1.25rem;
}
@media (min-width: 700px) {
  .footer__contact-address {
    margin-right: 0.625rem;
    margin-bottom: 0;
  }
}

.footer__contact-phone {
  margin-bottom: 1.875rem;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 700px) {
  .footer__contact-phone {
    margin-bottom: 0;
    flex: 0 0 auto;
    align-items: flex-start;
  }
}

.footer__contact-phone-number {
  color: #fdb913;
}
.footer__contact-phone-number:hover {
  color: #fdb913;
  text-decoration: underline;
}

.footer__contact .btn {
  width: 100%;
  background-color: #454545;
  border: 1px solid #454545;
  color: #ffffff;
}
.footer__contact .btn:hover {
  background-color: #fdb913;
  color: #ffffff;
}
@media (min-width: 700px) {
  .footer__contact .btn {
    width: auto;
    flex: 0 0 auto;
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  .footer__contact .btn {
    margin-left: 0;
  }
}

.footer__links {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  flex: 0 1 auto;
}

.footer__links-group {
  width: 50%;
  padding: 0 0.5rem 1.25rem 0;
}
.footer__links-group li {
  padding-bottom: 0.875rem;
}
.footer__links-group a {
  color: #ffffff;
  font-size: 0.8125rem;
}
.footer__links-group a:hover {
  color: #fdb913;
}
.footer__links-group i {
  font-size: 1rem;
  vertical-align: middle;
  margin-right: 0.625rem;
  min-width: 1.25rem;
  text-align: center;
}
@media (min-width: 500px) {
  .footer__links-group {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .footer__links-group {
    padding-bottom: 0;
    width: auto;
  }
}

.footer__sub-footer {
  padding: 0.9375rem 0;
  text-align: center;
  background-color: #454545;
}
@media (min-width: 960px) {
  .footer__sub-footer {
    padding: 0.625rem 0;
  }
}

.footer__sub-footer .container {
  padding: 0;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
}

.footer__sub-footer-company {
  padding: 0.9375rem 0px 0.625rem 0px;
  font-size: 0.6875rem;
  color: #ffffff;
  order: 2;
}
@media (min-width: 960px) {
  .footer__sub-footer-company {
    padding: 0.625rem 0;
  }
}

.footer__sub-footer-links {
  width: 100%;
}
.footer__sub-footer-links li {
  display: inline-block;
  margin: 0;
}
.footer__sub-footer-links a {
  font-size: 0.75rem;
  color: #ffffff;
  padding: 0rem 0.625rem;
  display: block;
}
.footer__sub-footer-links a:hover {
  text-decoration: underline;
}
@media (min-width: 960px) {
  .footer__sub-footer-links a {
    padding: 0.625rem 0.9375rem;
  }
}

.footer__tagline {
  margin-bottom: 1.875rem;
  text-align: center;
  font-family: "Square Serif", sans-serif;
  font-size: 1.6875rem;
  letter-spacing: 0.00875rem;
  font-weight: 250;
}

.footer__tagline--border-bottom {
  padding-bottom: 1.875rem;
  border-bottom: solid 0.0625rem #626262;
}

.footer__disclaimer p {
  margin-bottom: 2.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #d6d6d6;
}
.footer__disclaimer a {
  color: #d6d6d6;
}

@media (min-width: 700px) {
  .footer .accordion {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media (min-width: 700px) {
  .footer .accordion .accordion-card {
    width: 25%;
  }
}
.footer .accordion .accordion-card__button {
  padding: 1.25rem 0 1.25rem 0;
  background-color: transparent;
  border-color: #626262;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: bold;
  color: #ffffff;
}
@media (min-width: 700px) {
  .footer .accordion .accordion-card__button {
    display: none;
    visibility: hidden;
  }
}
.footer .accordion .accordion-card__button-icon {
  text-align: right;
  line-height: 3.75rem;
  color: #ffffff;
}
@media (min-width: 700px) {
  .footer .accordion .accordion-card__dropdown {
    display: block !important;
    height: auto !important;
  }
}
.footer .accordion .footer__links-group {
  width: auto;
}
.footer .accordion .accordion-card__dropdown-block {
  padding: 0;
}
.footer .accordion .footer-link-titles {
  display: none;
}
@media (min-width: 700px) {
  .footer .accordion .footer-link-titles {
    display: block;
    margin-bottom: 1.25rem;
    font-size: 0.6875rem;
    text-transform: uppercase;
    font-weight: bold;
  }
}
.footer .accordion .social-icons {
  align-items: flex-start;
  justify-content: flex-start;
}
.footer .accordion .social {
  width: 1.875rem;
  height: 1.875rem;
}
.footer .accordion .social-icons__name,
.footer .accordion .social-icons__handle {
  display: none;
  visibility: hidden;
}
.footer .accordion .social-icons__container {
  margin-left: 0;
  margin-right: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 700px) {
  .footer .accordion .accordion-card.be-accordion {
    width: 100%;
  }
}

.be-related-link-container {
  width: auto;
  margin: 0;
  padding: 0;
  padding-bottom: 1.25rem;
}
@media (min-width: 700px) {
  .be-related-link-container {
    margin-top: 1.25rem;
    padding-top: 1.125rem !important;
    padding-bottom: 1.25rem;
    border-top: solid 1px #626262;
  }
}

.be-label {
  display: none !important;
  visibility: hidden !important;
}

@media (min-width: 700px) {
  .be-list {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
  }
}

.be-list-item {
  padding-bottom: 1.25rem;
  text-align: left;
}
@media (min-width: 700px) {
  .be-list-item {
    margin-right: 1.875rem;
    padding-bottom: 0;
  }
  .be-list-item:first-child:before {
    margin-right: 1.875rem;
    font-size: 0.6875rem;
    font-weight: bold;
    text-transform: uppercase;
    content: "Also of Interest:";
  }
  .be-list-item:last-child {
    margin-right: 0;
  }
}

.be-list-item .be-related-link {
  font-size: 0.8125rem;
  color: #ffffff;
}

.accordion-card__button {
  position: relative;
  width: 100%;
  padding: 0.8125rem 1.25rem;
  border: none;
  border-top: solid 1px #d6d6d6;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  text-align: left;
  color: #505050;
  background-color: #f1f1f0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-card__button:hover {
  color: #fdb913;
  background-color: #ececeb;
  cursor: pointer;
}

.accordion-card__button-icon {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 3.125rem;
  height: 100%;
  line-height: 3.25rem;
  text-align: center;
  font-size: 0.5625rem;
  color: #fdb913;
}
.accordion-card__button-icon i {
  transform-origin: center;
  transform: rotateZ(0deg);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.accordion-card__dropdown {
  height: 0; /* Initially collapsed */
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: #505050;
  color: #ffffff;
}

.accordion-card__dropdown-block {
  padding: 1.25rem;
}

.accordion-card--active .accordion-card__button {
  background-color: #eaeae8;
}
.accordion-card--active .accordion-card__button-icon {
  background-color: #505050;
  color: #fdb913;
}
.accordion-card--active .accordion-card__button-icon i {
  transform: rotateZ(180deg);
}

.accordion .sub-headline, .accordion .academic__body-title,
.accordion .headline,
.accordion .form-field__checkbox-text,
.accordion p {
  color: #ffffff;
}
.accordion a {
  color: #fdb913;
}
.accordion img {
  margin-bottom: 1.25rem;
}

.lightbox {
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 100;
  overflow-y: auto;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}

.lightbox__close-surface {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.lightbox__controls {
  position: fixed;
  top: 15px;
  right: 15px;
}
.lightbox__controls i {
  font-size: 1.875rem;
  cursor: pointer;
  transition: color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lightbox__controls:hover i {
  color: #fdb913;
}

.lightbox__content {
  position: relative;
  width: 100%;
  margin: auto auto;
  padding: 2.5rem 2.5rem;
  background-color: #ffffff;
}
.lightbox__content iframe {
  border: none;
  width: 100%;
}
@media (min-width: 960px) {
  .lightbox__content {
    width: 75%;
  }
}

.lightbox--active {
  overflow: hidden;
}
.lightbox--active .lightbox {
  opacity: 1;
  visibility: visible;
}

.lightbox--iframe .lightbox__content {
  padding: 0;
  background-color: #000000;
}
.lightbox--iframe iframe {
  display: block;
}

.selections {
  border: solid 3px #f1f1f0;
}

.selections > * {
  padding: 1.25rem;
}

.selections p {
  margin: 0;
}

.selections__title {
  padding-bottom: 0;
}

.selections__sub-title {
  font-weight: bold;
  color: #505050;
  margin-top: 0.625rem;
}

.selections__label {
  width: 100%;
  display: block;
  padding: 0;
  margin-bottom: 1px;
}
.selections__label:last-child {
  margin-bottom: 0;
}

.selections__input {
  left: -62.5rem;
  position: absolute;
}

.selections__custom-field {
  cursor: pointer;
  color: #505050;
  padding: 0.625rem 1.25rem;
  position: relative;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.selections__custom-field:hover {
  background-color: #fbfbfb;
}

.selections__input:checked + .selections__custom-field {
  background-color: #f1f1f0;
}
.selections__input:checked + .selections__custom-field:after {
  position: absolute;
  right: 0.9375rem;
  top: 0.9375rem;
  font-family: "skeletor" !important;
  content: "\e934";
  color: #e65400;
}

@media (min-width: 960px) {
  .site-search {
    display: inline-block;
    position: relative;
    vertical-align: middle;
  }
}

.site-search__button {
  display: none;
  visibility: hidden;
}
@media (min-width: 960px) {
  .site-search__button {
    padding: 0.625rem;
    display: block;
    visibility: visible;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    font-size: 1rem;
    color: #fdb913;
    background-color: transparent;
    border: none;
    margin: 0;
    cursor: pointer;
    outline: none;
  }
  .site-search__button i {
    vertical-align: middle;
    transition: color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-size: 1rem;
  }
  .site-search__button:hover i, .site-search__button:focus i {
    color: #505050;
  }
}

.site-search__panel .container {
  padding: 0;
}
@media (min-width: 960px) {
  .site-search__panel {
    position: fixed;
    right: 0;
    top: 0;
    overflow: hidden;
    background-color: #f1f1f0;
    width: 0;
    height: 90px;
    transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .site-search__panel .container {
    height: 100%;
    padding: 0 0.9375rem;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
  }
  .site-search__panel i {
    font-size: 0.75rem;
  }
}

@media (min-width: 960px) {
  .shrink .site-search__panel {
    height: 45px;
  }
}

.search--is-on .site-search__panel {
  width: 100%;
}

.site-search__field-group {
  width: 100%;
}

.site-search__field {
  width: 100%;
  padding: 0.875rem 3.125rem 0.875rem 0.9375rem;
  font-size: 1.125rem;
  border: solid 1px #d6d6d6;
  border-left: none;
  border-right: none;
  position: relative;
  outline: none;
  color: #000000;
}
@media (min-width: 960px) {
  .site-search__field {
    padding: 1.25rem 3.125rem 1.25rem 1.5625rem;
    font-size: 1rem;
    visibility: hidden;
    border: none;
    background-color: transparent;
    outline: none;
    transition: padding 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .site-search__field:focus {
    border-bottom: solid 1px #d6d6d6;
  }
}

@media (min-width: 960px) {
  .search--is-on .site-search__field {
    visibility: visible;
  }
}

@media (min-width: 960px) {
  .shrink .site-search__field {
    padding: 0.3125rem 0.625rem;
  }
}

#search_form {
  position: relative;
}

.site-search__submit-button {
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -1.125rem;
  padding-right: 0;
  padding-left: 0;
}
.site-search__submit-button i {
  color: #000000;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  padding: 0.625rem 0.625rem;
}
.site-search__submit-button:hover i, .site-search__submit-button:focus i {
  color: #fdb913;
}

.bling__form {
  margin-top: 1.5625rem;
  position: relative;
  width: 100%;
}
@media (min-width: 960px) {
  .bling__form {
    width: 50%;
  }
}

.bling__input {
  width: 100%;
  margin: 0;
  padding: 0.6875rem 0.875rem;
  padding-right: 2.5rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 1rem;
  border: none;
  color: #505050;
}

.bling__button {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  position: absolute;
  top: 0px;
  right: 0px;
  apperance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.bling__button i {
  font-size: 1.125rem;
  color: #505050;
}

/* Change the white to any color ;) */
.bling__input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 2.5rem white inset;
}

#theBling .bcs-query-rewrite a,
#theBling .bcs-result a {
  display: block;
  padding-bottom: 0.625rem;
  color: #e65400;
  font-size: 1.5rem;
  text-decoration: underline;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: 300;
}
#theBling .bcs-query-rewrite a:hover,
#theBling .bcs-result a:hover {
  color: #505050;
}
#theBling .bcs-query-rewrite {
  font-size: 1rem;
}
#theBling .bcs-query-rewrite a {
  display: inline-block;
  font-size: 1rem;
}
#theBling cite {
  display: none;
}
#theBling .bcs-caption-image {
  display: none;
}
@media (min-width: 960px) {
  #theBling .bcs-caption-image {
    display: block;
  }
}
#theBling .bcs-query-rewrite, #theBling .bcs-result {
  padding-left: 0;
}
#theBling .bcs-result {
  border-bottom: solid 1px #d6d6d6;
  margin-bottom: 1.25rem;
  padding-bottom: 1.875rem;
}
#theBling .bcs-pagination a {
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.5rem;
  font-size: 1rem;
  font-weight: bold;
  color: #e65400;
  text-decoration: underline;
  background-color: #f1f1f0;
  border: solid 1px transparent;
}
#theBling .bcs-pagination a.bcs-current-page {
  background-color: transparent;
  border-color: #505050;
  color: #505050;
  text-decoration: none;
}

@media (min-width: 700px) {
  .off-canvas {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.off-canvas__panel {
  width: calc(100% - 45px);
  height: calc(100% - 45px);
  padding: 1.25rem;
  padding-top: 2.5rem;
  position: fixed;
  top: 45px;
  right: calc(-100% - 45px);
  z-index: 71;
  overflow: auto;
  background-color: #f1f1f0;
  transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 400px) {
  .off-canvas__panel {
    width: 20rem;
    min-width: 20rem;
  }
}
@media (min-width: 700px) {
  .off-canvas__panel {
    min-width: 15rem;
    height: auto;
    position: static;
    top: initial;
    right: initial;
    z-index: auto;
    padding: 0;
    padding-right: 1.875rem;
    margin-right: 1.875rem;
    border-right: solid 1px #d6d6d6;
    background-color: transparent;
  }
}

.off-canvas--is-on .off-canvas__panel {
  right: 0px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}

.off-canvas__panel-close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: absolute;
  top: 0.9375rem;
  right: 0.6875rem;
}
.off-canvas__panel-close i {
  font-size: 1.375rem;
  color: #505050;
}
@media (min-width: 700px) {
  .off-canvas__panel-close {
    display: none;
    visibility: hidden;
  }
}

.off-canvas__panel-title {
  font-size: 1rem;
  font-weight: bold;
  color: #505050;
  margin-bottom: 2.5rem;
}

.off-canvas__panel-label {
  font-weight: bold;
  color: #505050;
  margin-bottom: 1.25rem;
}

.off-canvas__panel fieldset {
  margin-bottom: 1.25rem;
}

.off-canvas-toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  color: #fdb913;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 1.25rem;
}
.off-canvas-toggle i {
  padding-right: 0.625rem;
  font-size: 1.875rem;
}
@media (min-width: 700px) {
  .off-canvas-toggle {
    display: none;
    visibility: hidden;
  }
}

.progress-dots--center {
  text-align: center;
}

.progress-dots__dot {
  height: 20px;
  width: 20px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  margin: 0 0.3125rem;
  border: solid 2px #fdb913;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.progress-dots__dot:first-child {
  margin-left: 0;
}
.progress-dots__dot:last-child {
  margin-right: 0;
}
.progress-dots__dot.active {
  background-color: #fdb913;
}
.progress-dots__dot.active:before {
  width: 17px;
}
.progress-dots__dot:before {
  position: absolute;
  width: 0px;
  height: 6px;
  top: 50%;
  margin-top: -3px;
  left: -18px;
  content: "";
  background-color: #fdb913;
  transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.progress-dots__dot:first-child:before {
  display: none;
}
@media (min-width: 500px) {
  .progress-dots__dot {
    margin: 0 0.625rem;
  }
  .progress-dots__dot:before {
    left: -28px;
  }
  .progress-dots__dot.active:before {
    width: 27px;
  }
}

.dropdown {
  position: relative;
}

.dropdown__toggle {
  position: relative;
  cursor: pointer;
}

.dropdown__menu {
  width: auto;
  padding: 0.4375rem 0;
  position: absolute;
  left: 0;
  background-color: #ffffff;
  border: solid 1px #d6d6d6;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
  z-index: 10;
  min-width: 13.75rem;
  visibility: hidden;
  opacity: 0;
  filter: alpha(opacity=0);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown__title {
  text-transform: uppercase;
  font-size: 0.875rem;
  padding: 0.9375rem 0.625rem;
  font-weight: bold;
  border-bottom: solid 2px #fdb913;
  color: #505050;
}

.dropdown__item {
  width: 100%;
  padding: 0.625rem;
  display: block;
  font-size: 0.875rem;
  text-align: left;
}
.dropdown__item:hover, .dropdown__item:focus {
  background-color: #f1f1f0;
}
.dropdown__item.active {
  background-color: #f1f1f0;
}
.dropdown__item i {
  margin-right: 0.3125rem;
}

a.dropdown__item {
  color: #505050;
}

button.dropdown__item {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  color: #505050;
  margin: 0;
  display: block;
  cursor: pointer;
}

.dropdown__divider,
.dropdown__menu hr {
  display: block;
  height: 1px;
  background-color: #d6d6d6;
}

.dropdown--fluid .dropdown__menu {
  width: 100%;
}

.dropdown.show .dropdown__menu {
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=100);
}

.subbar {
  position: fixed;
  top: 0;
  left: 0px;
  width: 100%;
  height: 2.8125rem;
  z-index: 71;
  background-color: #ffffff;
  transition: top 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-bottom: solid 1px #d6d6d6;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  box-sizing: initial;
}
.subbar .container {
  height: inherit;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  padding-right: 0;
}
.subbar .whopper {
  margin-left: auto;
}
@media (min-width: 960px) {
  .subbar {
    top: 5.6875rem;
    background-color: #505050;
    border-bottom: solid 1px #626262;
  }
  .subbar .container {
    padding-right: 0.9375rem;
  }
  .subbar .whopper {
    display: none;
  }
}

.subbar__title {
  font-family: "Square Serif", sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
  color: #505050;
}
.subbar__title span {
  font-family: "Square Serif", sans-serif;
  font-weight: 500;
}
@media (min-width: 960px) {
  .subbar__title {
    color: #ffffff;
  }
}

.subbar__logo img {
  height: 1.375rem;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}
.subbar__logo img:hover, .subbar__logo img:focus {
  opacity: 0.6;
}
@media (min-width: 1200px) {
  .subbar__logo img {
    height: 1.625rem;
  }
}

.subbar__nav {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 45px);
  height: calc(100% - 45px);
  position: fixed;
  right: calc(-100% + 45px);
  top: 46px;
  z-index: 80;
  background-color: #f1f1f0;
  box-shadow: -1px 2px 3px 0px rgba(0, 0, 0, 0.3);
  visibility: hidden;
  transition: right 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.5s, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 500px) {
  .subbar__nav {
    width: 20rem;
    right: -20rem;
  }
}
@media (min-width: 960px) {
  .subbar__nav {
    flex-flow: row nowrap;
    justify-content: flex-end;
    width: auto;
    height: auto;
    margin-left: auto;
    position: static;
    top: auto;
    right: auto;
    background-color: transparent;
    box-shadow: none;
    visibility: visible;
  }
}

.nav--is-on .subbar__nav {
  right: 0px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.3);
  visibility: visible;
}
@media (min-width: 960px) {
  .nav--is-on .subbar__nav {
    box-shadow: none;
  }
}

.subbar__nav-link {
  width: 100%;
  display: block;
  padding: 0.875rem 0.9375rem;
  border-top: solid 1px #d6d6d6;
  border-bottom: solid 1px #ffffff;
  font-size: 1.125rem;
  font-weight: normal;
  color: #505050;
}
.subbar__nav-link:first-child {
  margin-top: 0;
  border-top: none;
}
.subbar__nav-link:last-child {
  margin-bottom: 0;
  border-color: #d6d6d6;
}
.subbar__nav-link:hover, .subbar__nav-link:focus {
  color: #fdb913;
}
@media (min-width: 960px) {
  .subbar__nav-link {
    display: inline-block;
    width: auto;
    margin: 0 0.9375rem;
    padding: 0;
    border: none;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
  }
  .subbar__nav-link:first-child {
    margin-left: 0;
  }
  .subbar__nav-link:last-child {
    margin-right: 0;
  }
}

@media (min-width: 960px) {
  .subbar--all-links {
    padding: 0.3125rem 0;
  }
}
@media (min-width: 960px) {
  .subbar--all-links .subbar__nav {
    margin-left: 0;
  }
}
@media (min-width: 960px) {
  .subbar--all-links .subbar__nav-link {
    margin-left: 0;
    margin-right: 1.25rem;
    padding: 0.3125rem 0;
  }
}

@media (min-width: 960px) {
  .subbar__nav-link ~ .subbar__search {
    margin-left: -0.9375rem;
  }
}

.subbar__search {
  position: relative;
  width: 100%;
}
@media (min-width: 960px) {
  .subbar__search {
    display: block;
    visibility: visible;
    width: auto;
  }
}

.subbar__search-field {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: solid 1px #d6d6d6;
  margin-left: 0rem;
  padding: 0.875rem 3.125rem 0.875rem 0.9375rem;
  background-color: #ffffff;
  font-size: 1.125rem;
}
.subbar__search-field:hover, .subbar__search-field:focus {
  outline: none;
  border: solid 1px #fdb913;
}
@media (min-width: 960px) {
  .subbar__search-field {
    width: auto;
    margin-left: 2.125rem;
    padding: 0.5rem 2.125rem 0.5rem 0.625rem;
    font-size: 0.8125rem;
  }
}

.subbar__search-button {
  background-color: transparent;
  border: none;
  position: absolute;
  top: 50%;
  right: 0.375rem;
  padding: 0.625rem;
  margin-top: -1.125rem;
}
.subbar__search-button i {
  font-size: 1rem;
}
@media (min-width: 960px) {
  .subbar__search-button {
    top: 0px;
    right: 0px;
    padding: 0.5rem;
    margin-top: auto;
  }
}

.subbar__icon-button {
  margin-left: auto;
  background-color: #fdb913;
}
.subbar__icon-button .btn--icon {
  padding: 0.875rem 1.25rem;
}
.subbar__icon-button span {
  display: none;
}
.subbar__icon-button i {
  color: #ffffff;
}
@media (min-width: 700px) {
  .subbar__icon-button {
    margin-right: 0.3125rem;
    background-color: #ffffff;
    border: solid 3px #fdb913;
  }
  .subbar__icon-button .btn--icon {
    padding: 0.3125rem 0.625rem;
    font-weight: normal;
    color: #505050;
  }
  .subbar__icon-button span {
    display: inline-block;
  }
  .subbar__icon-button i {
    display: none;
  }
}
@media (min-width: 960px) {
  .subbar__icon-button {
    display: none;
  }
}

.subbar__icon-button + .whopper {
  margin-left: 0;
}

.youtube-player {
  position: relative;
  padding-bottom: 56.23%;
  /* Use 75% for 4:3 videos */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 71;
  background: transparent;
}

.youtube-player img {
  bottom: 0;
  display: block;
  left: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  height: auto;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.youtube-player:hover img {
  filter: brightness(75%);
  transform: scale(1.1);
}

.youtube-player .play {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  height: 4.5rem;
  width: 4.5rem;
  left: 50%;
  top: 50%;
  margin-left: -2.25rem;
  margin-top: -2.25rem;
  position: absolute;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.youtube-player .play:after {
  font-family: "skeletor";
  font-size: 4.5rem;
  color: #ffffff;
  content: "\e923";
}

.pagination {
  padding: 1.5625rem;
  padding-left: 0;
  font-size: 1rem;
  text-align: left;
}

.pagination__list {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2.3125rem;
  font-weight: 700;
  background-color: #ffffff;
  color: #cc4b00;
  border: 1px solid #505050;
  text-align: center;
  text-decoration: none;
}

.pagination__list.current {
  border-color: #505050;
  border-width: 1px;
  background-color: #505050;
  color: #ffffff;
  text-decoration: none;
}

.pagination__prev-next {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem 0.9375rem;
  background-color: #ffffff;
  border: 1px solid #505050;
  display: inline-block;
}

.pagination--dark-mode .pagination__list {
  background-color: #000000;
  border-color: #ffffff;
  color: #ffffff;
}
.pagination--dark-mode .pagination__list.current {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #e65400;
}
.pagination--dark-mode .pagination__prev-next {
  background-color: #000000;
  border-color: #ffffff;
  color: #ffffff;
}

.flex-features {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: center;
}

.flex-features__block {
  position: relative;
  width: 100%;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.flex-features__block:last-child .flex-features__body {
  border-right: solid 1px #d6d6d6;
}
.flex-features__block:nth-child(n+4) {
  display: none;
}
.flex-features__block:hover {
  opacity: 0.9;
}
.flex-features__block:hover .flex-features__read-more {
  text-decoration: underline;
}
@media (min-width: 500px) {
  .flex-features__block:first-child {
    min-width: 100%;
  }
}
@media (min-width: 700px) {
  .flex-features__block {
    flex: 1;
    min-width: 18.75rem;
  }
  .flex-features__block:first-child .flex-features__image {
    height: 22.5rem;
  }
}
@media (min-width: 960px) {
  .flex-features__block:first-child {
    min-width: 18.75rem;
  }
  .flex-features__block:first-child .flex-features__image {
    height: 15rem;
  }
}
@media (min-width: 1200px) {
  .flex-features__block:first-child .flex-features__image {
    height: 18.75rem;
  }
}
@media (min-width: 1600px) {
  .flex-features__block:first-child .flex-features__image {
    height: 22.5rem;
  }
  .flex-features__block:nth-child(n+4) {
    display: block;
  }
}
@media (min-width: 2200px) {
  .flex-features__block {
    max-width: 40rem;
  }
}

.flex-features__inner {
  height: 9.125rem;
  border-left: solid 1px #d6d6d6;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
}

.flex-features__image {
  display: block;
  position: relative;
  height: 15rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 960px) {
  .flex-features__image {
    height: 15rem;
  }
}
@media (min-width: 1200px) {
  .flex-features__image {
    height: 18.75rem;
  }
}
@media (min-width: 1600px) {
  .flex-features__image {
    height: 22.5rem;
  }
}

.flex-features__title {
  padding: 0.625rem 1.875rem;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fdb913;
  font-size: 0.875rem;
  font-weight: bold;
  color: #505050;
  text-transform: uppercase;
}

.flex-features__body {
  padding: 1.25rem;
  overflow: hidden;
  text-align: left;
  background-color: #f1f1f0;
  border-left: solid 1px #d6d6d6;
  border-bottom: solid 1px #d6d6d6;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}
.flex-features__body p {
  margin: 0;
  padding: 0.5rem 0;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 300;
}
.flex-features__body i {
  margin-right: 0.9375rem;
  font-size: 3.75rem;
  color: #fdb913;
}

.flex-features__footer {
  position: absolute;
  bottom: 0px;
}

.flex-features__read-more {
  font-size: 0.8125rem;
  color: #505050;
  font-weight: 600;
  padding-left: 1.25rem;
  padding-bottom: 1.25rem;
}
.flex-features__read-more .divider {
  margin-top: 1.25rem;
  margin-bottom: 0;
  padding-bottom: 0;
}
.flex-features__read-more a {
  color: #505050;
}
.flex-features__read-more a:hover {
  text-decoration: underline;
}

.story-zone .story-zone__headline {
  color: #000000;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
  text-align: center;
}
@media (min-width: 500px) {
  .story-zone .story-zone__headline {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media (min-width: 700px) {
  .story-zone .story-zone__headline {
    font-size: 2.625rem;
    line-height: 3.125rem;
  }
}
.story-zone .flex-features__block {
  padding-bottom: 3.375rem;
  min-width: initial;
  border-left: solid 1px #d6d6d6;
}
.story-zone .flex-features__block:last-child .flex-features__body {
  border-right: none;
}
@media (min-width: 700px) {
  .story-zone .flex-features__block:nth-child(1) {
    margin-right: 2.5rem;
  }
}
@media (min-width: 960px) {
  .story-zone .flex-features__block:nth-child(2) {
    margin-right: 2.5rem;
  }
}
.story-zone .flex-features__body {
  background-color: transparent;
  border-bottom: none;
  border-left: none;
  flex-flow: column nowrap;
  align-items: flex-start;
}
.story-zone .flex-features__title {
  position: static;
  left: initial;
  bottom: initial;
  background-color: transparent;
  color: #505050;
  padding: 0;
  text-transform: none;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  width: 100%;
}
.story-zone p {
  font-size: 1rem;
  width: 100%;
}
.story-zone .flex-features__block .flex-features__image {
  height: 15rem;
}
@media (min-width: 960px) {
  .story-zone .flex-features__block .flex-features__image {
    height: 11.25rem;
  }
}
@media (min-width: 2200px) {
  .story-zone .flex-features__block .flex-features__image {
    height: 12.5rem;
  }
}
.story-zone .flex-features__block:nth-child(n+2) {
  display: none;
  visibility: hidden;
}
@media (min-width: 700px) {
  .story-zone .flex-features__block:nth-child(n+2) {
    display: block;
    visibility: visible;
  }
}
.story-zone .flex-features__block:nth-child(n+3) {
  display: none;
  visibility: hidden;
}
@media (min-width: 960px) {
  .story-zone .flex-features__block:nth-child(n+3) {
    display: block;
    visibility: visible;
  }
}

.flexblocks {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.flexblocks__item {
  flex: 1 1 calc(33.33% - 2.5rem);
  box-sizing: border-box;
  margin-right: 2.5rem;
}
.flexblocks__item:nth-child(3n) {
  margin-right: 0;
}

.align-contents-vertical-center {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
}

.align-contents-horizontal-center {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: center;
}

.align-contents-center {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

.dev-tools {
  position: fixed;
  bottom: 0.9375rem;
  right: 0.9375rem;
  background-color: #000000;
  padding: 0.9375rem 2.5rem;
  display: block;
  opacity: 0.8;
  z-index: 100;
  box-shadow: 0 4px 6px 0px rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 0.8125rem;
  border-radius: 3px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bp-monitor {
  font-weight: bold;
}

.bp-monitor span:after {
  content: "MOBILE";
  display: inline-block;
  font-weight: normal;
  color: #d6d6d6;
}
@media (min-width: 400px) {
  .bp-monitor span:after {
    content: "MOBILE LARGE";
  }
}
@media (min-width: 500px) {
  .bp-monitor span:after {
    content: "TABLET SMALL";
  }
}
@media (min-width: 700px) {
  .bp-monitor span:after {
    content: "TABLET";
  }
}
@media (min-width: 825px) {
  .bp-monitor span:after {
    content: "TABLET LARGE";
  }
}
@media (min-width: 960px) {
  .bp-monitor span:after {
    content: "NARROW";
  }
}
@media (min-width: 1024px) {
  .bp-monitor span:after {
    content: "DESKTOP SMALL";
  }
}
@media (min-width: 1200px) {
  .bp-monitor span:after {
    content: "DESKTOP";
  }
}
@media (min-width: 1600px) {
  .bp-monitor span:after {
    content: "DESKTOP LARGE";
  }
}
@media (min-width: 2200px) {
  .bp-monitor span:after {
    content: "WIDE";
  }
}

.dev-visible-grids > * {
  background-color: #f1f1f0;
  padding: 0.625rem;
  border: dashed 2px #d6d6d6;
  color: #505050;
  text-transform: uppercase;
  text-align: center;
  font-size: 0.75rem;
}

.zapados {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-flow: row wrap;
}
.zapados > * {
  width: 100%;
  margin-right: 0;
  margin-bottom: 1.25rem;
}
@media (min-width: 500px) {
  .zapados > * {
    width: calc(100% / 5 - 1.25rem + 1.25rem / 5);
    margin: 0 1.25rem 1.25rem 0;
  }
  .zapados > *:nth-child(n) {
    margin-right: 1.25rem;
  }
  .zapados > *:nth-child(5n+5) {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .zapados > * {
    width: calc(100% / 5 - 2.5rem + 2.5rem / 5);
    margin: 0 2.5rem 2.5rem 0;
  }
  .zapados > *:nth-child(n) {
    margin-right: 2.5rem;
  }
  .zapados > *:nth-child(5n+5) {
    margin-right: 0;
  }
}

.babooz {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-flow: row nowrap;
}
.babooz > * {
  margin: 0;
  width: calc(100% / 10);
}

.krikeyz {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-flow: row wrap;
}
.krikeyz > * {
  margin: 0;
  width: 100%;
}
@media (min-width: 500px) {
  .krikeyz > * {
    width: calc(100% / 7);
    margin: 0;
  }
}

.flattop {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-flow: row wrap;
}
.flattop > * {
  width: 100%;
  margin-right: 0;
  margin-bottom: 1.25rem;
}
@media (min-width: 500px) {
  .flattop > * {
    width: calc(100% / 5 - 1.25rem + 1.25rem / 5);
    margin: 0 1.25rem 1.25rem 0;
  }
  .flattop > *:nth-child(n) {
    margin-right: 1.25rem;
  }
  .flattop > *:nth-child(5n+5) {
    margin-right: 0;
  }
}
@media (min-width: 960px) {
  .flattop > * {
    width: calc(100% / 5 - 2.5rem + 2.5rem / 5);
    margin: 0 2.5rem 2.5rem 0;
  }
  .flattop > *:nth-child(n) {
    margin-right: 2.5rem;
  }
  .flattop > *:nth-child(5n+5) {
    margin-right: 0;
  }
}
.flattop > * {
  margin-bottom: 0;
}

.disabled,
.disabled:hover,
.disabled:focus {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

.fluid,
img.fluid {
  width: 100%;
}

.hide {
  display: none !important;
  visibility: hidden !important;
}

@media (min-width: 960px) {
  .hide-desktop {
    display: none !important;
    visibility: hidden !important;
  }
}

.hide-mobile {
  display: none !important;
  visibility: hidden !important;
}
@media (min-width: 960px) {
  .hide-mobile {
    display: block !important;
    visibility: visible !important;
  }
}

.inline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
}

.inline-list--align-left {
  justify-content: flex-start;
}

.inline-list--margins > * {
  margin-right: 0.625rem;
  margin-left: 0.625rem;
  margin-bottom: 0.625rem;
}

.inline-list--justified {
  justify-content: space-between;
}

.no-padding {
  padding: 0 !important;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-right {
  padding-right: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-padding-left {
  padding-left: 0 !important;
}

.side-padding {
  padding-left: 5% !important;
  padding-right: 5% !important;
}

.no-margins,
.no-margin {
  margin: 0 !important;
}

.no-margin-top {
  margin-top: 0 !important;
}

.no-margin-right {
  margin-right: 0 !important;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.no-margin-left {
  margin-left: 0 !important;
}

.skin-bg-devastator {
  background-color: #454545;
}

.skin-txt-hotrod {
  color: #e65400;
}

.skin-txt-ultramagnus {
  color: #13b5ea;
}

.skin-txt-jetfire {
  color: #ffffff;
}

.skin-txt-bumblebee {
  color: #fdb913;
}

.spacer {
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.spacer-30 {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
}

.spacer-40 {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
}

.spacer-50 {
  display: block;
  width: 3.125rem;
  height: 3.125rem;
}

.spacer-60 {
  display: block;
  width: 3.75rem;
  height: 3.75rem;
}

.snake-mountain {
  position: static;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.snake-mountain .metabar,
.snake-mountain .subbar {
  display: none;
  visibility: hidden;
}

.snake-mountain .wallmaster {
  height: 45px;
}
@media (min-width: 960px) {
  .snake-mountain .wallmaster {
    height: 90px;
  }
}

.snake-mountain--metabar .wallmaster {
  height: 45px;
}
@media (min-width: 960px) {
  .snake-mountain--metabar .wallmaster {
    height: 8.1875rem;
  }
}
@media (min-width: 700px) {
  .snake-mountain--metabar .metabar {
    display: block;
    visibility: visible;
  }
}
.snake-mountain--metabar .topbar {
  top: 0px;
}
@media (min-width: 960px) {
  .snake-mountain--metabar .topbar {
    top: 40px;
  }
}
.snake-mountain--metabar .site-search__panel {
  top: 40px;
}
.snake-mountain--metabar .primary-nav__dropdown {
  top: 131px;
}
.snake-mountain--metabar .shrink .primary-nav__dropdown {
  top: 86px;
}

@media (min-width: 960px) {
  .snake-mountain--subbar .wallmaster {
    height: 8.5rem;
  }
}
.snake-mountain--subbar .subbar {
  display: block;
  visibility: visible;
}
@media (min-width: 960px) {
  .snake-mountain--subbar .subbar.shrink {
    top: 2.875rem;
  }
}
.snake-mountain--subbar .subbar.subbar--all-links {
  height: 2.25rem;
}
.snake-mountain--subbar .topbar {
  display: none;
  visibility: hidden;
}
@media (min-width: 960px) {
  .snake-mountain--subbar .topbar {
    display: block;
    visibility: visible;
  }
}

.snake-mountain--metabar.snake-mountain--subbar .subbar {
  top: 0;
}
@media (min-width: 960px) {
  .snake-mountain--metabar.snake-mountain--subbar .subbar {
    top: 131px;
  }
}

@media (min-width: 960px) {
  .snake-mountain--metabar.snake-mountain--subbar .subbar.shrink {
    top: 5.375rem;
  }
}

.snake-mountain--metabar.snake-mountain--subbar .wallmaster {
  height: 45px;
}
@media (min-width: 960px) {
  .snake-mountain--metabar.snake-mountain--subbar .wallmaster {
    height: 177px;
  }
}

.snake-mountain--metabar.snake-mountain--subbar .shrink .primary-nav__dropdown {
  top: 5.375rem;
}

.snake-mountain--topbar-mini .wallmaster {
  height: 2.8125rem;
}
@media (min-width: 960px) {
  .snake-mountain--topbar-mini .wallmaster {
    height: 5.75rem;
  }
}
.snake-mountain--topbar-mini .topbar {
  display: block;
  visibility: visible;
  height: 45px;
}
.snake-mountain--topbar-mini .topbar > .container {
  height: 45px;
}
.snake-mountain--topbar-mini .subbar {
  top: 0;
}
@media (min-width: 960px) {
  .snake-mountain--topbar-mini .subbar {
    top: 2.875rem;
  }
}

.halo {
  padding-top: 0;
  position: relative;
  background-color: #ffffff;
}

.icon-heading {
  width: 100%;
  margin-bottom: 1.4375rem;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.icon-heading__icon {
  font-size: 3.75rem;
  color: #fdb913;
  margin-right: 0.875rem;
  padding: 0.125rem 0;
}
@media (min-width: 500px) {
  .icon-heading__icon {
    margin-right: 1.25rem;
    font-size: 5rem;
  }
}
@media (min-width: 960px) {
  .icon-heading__icon {
    margin-right: 1.5625rem;
    font-size: 6.25rem;
  }
}

.icon-heading__text {
  font-size: 1.75rem;
  line-height: 1.875rem;
  color: #505050;
}
@media (min-width: 500px) {
  .icon-heading__text {
    font-size: 2.25rem;
    line-height: 2.375rem;
  }
}
@media (min-width: 960px) {
  .icon-heading__text {
    font-size: 3rem;
    line-height: 3.125rem;
  }
}

.halo-help p {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.875rem;
  padding: 0 5%;
}
.halo-help .divider {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 500px) {
  .halo-help p {
    padding: 0 10%;
  }
}

.halo-filter {
  position: absolute;
  left: 0px;
  bottom: -3.5625rem;
  width: 100%;
}
@media (min-width: 700px) {
  .halo-filter {
    right: 0px;
    bottom: 0.1875rem;
    left: auto;
    width: auto;
  }
}
@media (min-width: 960px) {
  .halo-filter {
    bottom: 0.5rem;
  }
}

.halo-filter__container {
  position: relative;
  background-color: #ffffff;
  padding-left: 0;
  margin-left: 0;
}
.halo-filter__container:after {
  font-family: "FSiconakron";
  content: "\e903";
  position: absolute;
  bottom: 18px;
  right: 0.3125rem;
  color: #fdb913;
  font-size: 0.5625rem;
}
@media (min-width: 700px) {
  .halo-filter__container {
    padding-left: 1.25rem;
  }
}

.halo-filter__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1rem;
  font-weight: normal;
  border: solid 1px #d6d6d6;
  border-right: none;
  border-top: none;
  border-radius: 0;
  background-color: transparent;
  margin-left: 0.3125rem;
  padding: 0.625rem;
  padding-right: 1.875rem;
  color: #505050;
  position: relative;
  cursor: pointer;
  width: 100%;
}
@media (min-width: 700px) {
  .halo-filter__select {
    width: auto;
  }
}
@media (min-width: 960px) {
  .halo-filter__select {
    font-size: 1rem;
  }
}

.areas-of-study [class^=grid-] {
  overflow: hidden;
}

.halo-feature-blocks .flex-features__body {
  height: 6.3125rem;
}
.halo-feature-blocks .flex-features__block:not(:first-child) {
  display: none;
}
@media (min-width: 700px) {
  .halo-feature-blocks .flex-features__block:not(:first-child) {
    display: block;
  }
  .halo-feature-blocks .flex-features__block:nth-child(4n) {
    display: none;
  }
}
@media (min-width: 1600px) {
  .halo-feature-blocks .flex-features__block:nth-child(4n) {
    display: block;
  }
}

.video-zone .flex-features__block:nth-child(n+2) {
  display: none;
  visibility: hidden;
}
@media (min-width: 700px) {
  .video-zone .flex-features__block:nth-child(n+2) {
    display: block;
    visibility: visible;
  }
  .video-zone .flex-features__block:nth-child(n+4) {
    display: none;
    visibility: hidden;
  }
}
@media (min-width: 1600px) {
  .video-zone .flex-features__block:nth-child(n+4) {
    display: block;
    visibility: visible;
  }
}
.video-zone .flex-features__body {
  height: 4.9375rem;
}

.story-zone .flex-features__block {
  padding-bottom: 3.375rem;
  min-width: initial;
  border-left: solid 1px #d6d6d6;
}
.story-zone .flex-features__block:last-child .flex-features__body {
  border-right: none;
}
@media (min-width: 700px) {
  .story-zone .flex-features__block:nth-child(1) {
    margin-right: 2.5rem;
  }
}
@media (min-width: 960px) {
  .story-zone .flex-features__block:nth-child(2) {
    margin-right: 2.5rem;
  }
}
.story-zone .flex-features__body {
  background-color: transparent;
  border-bottom: none;
  border-left: none;
  flex-flow: column nowrap;
  align-items: flex-start;
}
.story-zone .flex-features__title {
  position: static;
  left: initial;
  bottom: initial;
  background-color: transparent;
  color: #505050;
  padding: 0;
  text-transform: none;
  font-family: "Square Serif", sans-serif;
  font-size: 1.625rem;
  font-weight: normal;
  width: 100%;
}
.story-zone p {
  font-size: 1rem;
  width: 100%;
}
.story-zone .flex-features__block .flex-features__image {
  height: 15rem;
}
@media (min-width: 960px) {
  .story-zone .flex-features__block .flex-features__image {
    height: 11.25rem;
  }
}
@media (min-width: 2200px) {
  .story-zone .flex-features__block .flex-features__image {
    height: 12.5rem;
  }
}
.story-zone .flex-features__block:nth-child(n+2) {
  display: none;
  visibility: hidden;
}
@media (min-width: 700px) {
  .story-zone .flex-features__block:nth-child(n+2) {
    display: block;
    visibility: visible;
  }
}
.story-zone .flex-features__block:nth-child(n+3) {
  display: none;
  visibility: hidden;
}
@media (min-width: 960px) {
  .story-zone .flex-features__block:nth-child(n+3) {
    display: block;
    visibility: visible;
  }
}

.dpssc .hero-parallax {
  overflow: hidden;
  word-wrap: break-word;
  max-height: 23.75rem;
  position: relative;
}
@media (min-width: 500px) {
  .dpssc .hero-parallax {
    max-height: 27.5rem;
    min-height: 26.25rem;
  }
}
@media (min-width: 700px) {
  .dpssc .hero-parallax {
    max-height: 36.25rem;
    min-height: 35rem;
  }
}
@media (min-width: 960px) {
  .dpssc .hero-parallax {
    max-height: 41.25rem;
    min-height: 40rem;
  }
}
@media (min-width: 1200px) {
  .dpssc .hero-parallax {
    max-height: 46.25rem;
    min-height: 45rem;
  }
}
@media (min-width: 2200px) {
  .dpssc .hero-parallax {
    max-height: 63.75rem;
    min-height: 62.5rem;
  }
}
.dpssc .sports__bg {
  position: absolute;
  width: 100%;
  height: 110%;
  top: -42%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
@media (min-width: 700px) {
  .dpssc .sports__bg {
    background-image: none;
  }
}
@media (min-width: 1600px) {
  .dpssc .sports__bg {
    height: 115%;
  }
}
@media (min-width: 2200px) {
  .dpssc .sports__bg {
    height: 124%;
  }
}
.dpssc .hero-parallax-content {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media (min-width: 700px) {
  .dpssc .hero-parallax-content {
    padding-bottom: 1.875rem;
  }
}
.dpssc .sports-logo {
  width: 90%;
}
@media (min-width: 400px) {
  .dpssc .sports-logo {
    width: 75%;
  }
}
@media (min-width: 700px) {
  .dpssc .sports-logo {
    width: 23.4375rem;
  }
}
@media (min-width: 960px) {
  .dpssc .sports-logo {
    width: 35.3125rem;
  }
}
.dpssc .sports p {
  color: #ffffff;
  font-family: "Square Serif", sans-serif;
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 400px) {
  .dpssc .sports p {
    font-size: 1rem;
  }
}
@media (min-width: 500px) {
  .dpssc .sports p {
    font-size: 1.125rem;
  }
}
@media (min-width: 700px) {
  .dpssc .sports p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .dpssc .sports p {
    font-size: 1.625rem;
  }
}
.dpssc .hero-parallax__alt {
  overflow: hidden;
  word-wrap: break-word;
  height: 18.75rem;
  position: relative;
}
.dpssc .hero-parallax__alt > div {
  height: 110%;
  top: -30%;
}
.dpssc .hero-parallax__alt .container {
  position: relative;
}
.dpssc .hero-parallax__alt .container .center-container {
  position: relative;
}
.dpssc .hero-parallax__alt .center.fadeIn {
  opacity: 1;
  top: 50%;
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (min-width: 500px) {
  .dpssc .hero-parallax__alt {
    height: 27.5rem;
  }
}
@media (min-width: 700px) {
  .dpssc .hero-parallax__alt {
    height: 31.25rem;
  }
}
@media (min-width: 960px) {
  .dpssc .hero-parallax__alt {
    height: 41.25rem;
  }
}
.dpssc .Dan-Quote .center.fadeIn {
  top: 40%;
}
@media (min-width: 960px) {
  .dpssc .Dan-Quote .center.fadeIn {
    top: 50%;
  }
}
@media (min-width: 960px) {
  .dpssc .backstory .cta--secondary, .dpssc .backstory .cta--secondary-alt {
    margin-left: 15%;
  }
}
.dpssc .backstory .span {
  display: inline !important;
}
@media (min-width: 700px) {
  .dpssc .backstory .span {
    display: block !important;
  }
}
.dpssc .backstory h2, .dpssc .curriculum h2,
.dpssc .faculty h2, .dpssc .GusRamsey h2 {
  color: #505050;
  text-align: center;
  margin: 0 auto;
  max-width: 50rem;
  padding-bottom: 0.625rem;
}
@media (min-width: 500px) {
  .dpssc .backstory h2, .dpssc .curriculum h2,
  .dpssc .faculty h2, .dpssc .GusRamsey h2 {
    padding-bottom: 1.25rem;
  }
}
@media (min-width: 960px) {
  .dpssc .backstory h2, .dpssc .curriculum h2,
  .dpssc .faculty h2, .dpssc .GusRamsey h2 {
    padding-bottom: 2.5rem;
  }
}
.dpssc .description {
  color: #505050;
  text-align: center;
  margin: 0 auto;
  max-width: 62.5rem;
}
.dpssc .hero-parallax h2,
.dpssc .hero-parallax p {
  color: #ffffff;
}
.dpssc .watch-video {
  color: #ffffff;
  overflow: auto;
  height: 2.8125rem;
  margin-top: 1.25rem;
}
.dpssc .watch-video:hover, .dpssc .watch-video:focus {
  color: #fdb913;
}
.dpssc .watch-video .span {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.25rem;
}
.dpssc .watch-video .fs {
  font-size: 2.8125rem;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
@media (min-width: 960px) {
  .dpssc .watch-video {
    margin-top: 2.5rem;
    height: 3.25rem;
  }
  .dpssc .watch-video .span {
    font-size: 1.375rem;
  }
  .dpssc .watch-video .fs {
    font-size: 3.25rem;
  }
}
.dpssc .lightbox__content {
  text-align: center;
}
.dpssc .lightbox__content div {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 35px;
  overflow: hidden;
  word-wrap: break-word;
}
.dpssc .Dan-Quote {
  position: relative;
}
.dpssc .Dan-Quote .center.fadeIn {
  top: 40%;
}
@media (min-width: 960px) {
  .dpssc .Dan-Quote .center.fadeIn {
    top: 50%;
  }
}
.dpssc .Dan-Quote__bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  position: relative;
}
@media (min-width: 700px) {
  .dpssc .Dan-Quote__bg {
    background-image: none;
    background-position: top center;
  }
}
.dpssc .Dan-Quote__bg.left {
  background-position: top left;
}
@media (min-width: 700px) {
  .dpssc .Dan-Quote__bg.left {
    background-position: top center;
  }
}
.dpssc .Dan-Quote__content-right,
.dpssc .Dan-Quote__content-left {
  width: 100%;
}
.dpssc .Dan-Quote__content-right .epic-quote--jetfire,
.dpssc .Dan-Quote__content-left .epic-quote--jetfire {
  margin-left: 15px;
  color: #505050;
}
@media (min-width: 700px) {
  .dpssc .Dan-Quote__content-right .epic-quote--jetfire,
  .dpssc .Dan-Quote__content-left .epic-quote--jetfire {
    margin-left: 0;
  }
}
.dpssc .Dan-Quote__content-right .angle-tek-inverted-top:before,
.dpssc .Dan-Quote__content-left .angle-tek-inverted-top:before {
  top: -15%;
}
@media (min-width: 500px) {
  .dpssc .Dan-Quote__content-right .angle-tek-inverted-top:before,
  .dpssc .Dan-Quote__content-left .angle-tek-inverted-top:before {
    top: -20%;
  }
}
@media (min-width: 700px) {
  .dpssc .Dan-Quote__content-right,
  .dpssc .Dan-Quote__content-left {
    position: absolute;
    top: 15%;
    width: 55%;
  }
  .dpssc .Dan-Quote__content-right .epic-quote--jetfire,
  .dpssc .Dan-Quote__content-left .epic-quote--jetfire {
    color: #ffffff;
    text-shadow: 2px 1px 2px rgba(0, 0, 0, 0.9);
    line-height: 1.5;
  }
  .dpssc .Dan-Quote__content-right .epic-quote.epic-quote--jetfire.epic-quote--bumblebee:before,
  .dpssc .Dan-Quote__content-left .epic-quote.epic-quote--jetfire.epic-quote--bumblebee:before {
    font-size: 4.25rem;
    top: -1.875rem;
  }
}
.dpssc .Dan-Quote__content-right {
  display: none;
}
@media (min-width: 700px) {
  .dpssc .Dan-Quote__content-right {
    display: block;
    height: 20rem;
    padding: 1.875rem 1.25rem;
    width: 100%;
  }
}
@media (min-width: 960px) {
  .dpssc .Dan-Quote__content-right {
    padding: 3.125rem 1.25rem 0rem;
    width: 42.5rem;
    right: 1.25rem;
  }
}
.dpssc .Dan-Quote__content-left {
  display: none;
}
@media (min-width: 700px) {
  .dpssc .Dan-Quote__content-left {
    display: block;
    height: 20rem;
    padding: 1.875rem 1.25rem;
    width: 100%;
  }
}
@media (min-width: 960px) {
  .dpssc .Dan-Quote__content-left {
    padding: 3.125rem 1.25rem 0rem;
    left: 3.75rem;
    width: 40.625rem;
  }
}
.dpssc .mobile-quote {
  display: block;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.dpssc .mobile-quote .epic-quote__sig {
  color: #505050;
}
@media (min-width: 700px) {
  .dpssc .mobile-quote {
    display: none;
  }
  .dpssc .mobile-quote .epic-quote__sig {
    color: #ffffff;
  }
}
.dpssc .curriculum .cta--secondary, .dpssc .curriculum .cta--secondary-alt {
  margin-left: 6.5625rem;
}
.dpssc .curriculum .divider {
  margin-left: auto;
  margin-right: auto;
}
.dpssc .curriculum.angle-tek-before--white:before {
  display: none;
}
@media (min-width: 700px) {
  .dpssc .curriculum.angle-tek-before--white:before {
    display: block;
  }
}
.dpssc .curriculum .span {
  display: inline !important;
}
@media (min-width: 700px) {
  .dpssc .curriculum .span {
    display: block !important;
  }
}
.dpssc .curriculum .sub-headline, .dpssc .curriculum .academic__body-title {
  color: #505050;
  text-align: center;
  margin: 0 auto;
  max-width: 50rem;
}
.dpssc .curriculum .curriculum-blocks {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 2.5rem;
}
.dpssc .curriculum .curriculum-block {
  width: 100%;
  position: relative;
  padding-bottom: 1.875rem;
}
.dpssc .curriculum .curriculum-block:last-child {
  padding-bottom: 0rem;
}
@media (min-width: 500px) {
  .dpssc .curriculum .curriculum-block {
    border-left: 1px solid #d6d6d6;
    width: calc(50% - 20px);
    margin-right: 1.875rem;
  }
  .dpssc .curriculum .curriculum-block:nth-child(2) {
    margin-right: 0px;
  }
  .dpssc .curriculum .curriculum-block:last-child {
    display: none;
  }
}
@media (min-width: 700px) {
  .dpssc .curriculum .curriculum-block {
    width: calc(33.33333% - 20px);
    margin-right: 1.875rem;
  }
  .dpssc .curriculum .curriculum-block:nth-child(2) {
    margin-right: 1.875rem;
  }
  .dpssc .curriculum .curriculum-block:last-child {
    margin-right: 0px;
    display: block;
  }
}
.dpssc .curriculum .curriculum-block__inner {
  margin: 0.9375rem 0rem 0rem;
}
.dpssc .curriculum .curriculum-block__inner p {
  display: none;
}
@media (min-width: 500px) {
  .dpssc .curriculum .curriculum-block__inner {
    margin: 0.9375rem 0.3125rem 0.9375rem 0.9375rem;
  }
  .dpssc .curriculum .curriculum-block__inner p {
    display: block;
  }
}
.dpssc .curriculum .degree-block__title {
  font-family: "Square Serif", sans-serif;
  font-size: 1.25rem;
  margin: 0 0 0.625rem 0;
  padding: 0;
  color: #505050;
}
@media (min-width: 960px) {
  .dpssc .curriculum .degree-block__title {
    font-size: 1.625rem;
  }
}
.dpssc .GusRamsey .description {
  margin-bottom: 2.5rem;
}
.dpssc .GusRamsey .epic-quote {
  margin-left: 15px;
}
@media (min-width: 700px) {
  .dpssc .GusRamsey .epic-quote {
    padding: 0 2.5rem 0 1.25rem;
  }
}
@media (min-width: 825px) {
  .dpssc .GusRamsey .epic-quote {
    padding: 0 4.6875rem 0 1.25rem;
  }
}
.dpssc .GusRamsey .grid-7 p {
  margin-left: 2.1875rem;
}
.dpssc .GusRamsey .grid-row {
  margin-top: 0.625rem;
}
@media (min-width: 500px) {
  .dpssc .GusRamsey .grid-row {
    margin-top: 1.25rem;
  }
}
.dpssc .GusRamsey .grid-9 {
  margin: 1.25rem 0;
}
@media (min-width: 500px) {
  .dpssc .GusRamsey .grid-9 {
    margin: 0;
  }
}
.dpssc .GusRamsey .flex-features__block {
  cursor: default;
}
.dpssc .GusRamsey .flex-features__block .flex-features__body {
  cursor: pointer;
}
@media (min-width: 500px) {
  .dpssc .GusRamsey .flex-features__block:first-child .flex-features__image {
    height: 18.75rem;
  }
}
@media (min-width: 700px) {
  .dpssc .GusRamsey .flex-features__block:first-child .flex-features__image {
    height: 15rem;
  }
}
@media (min-width: 1200px) {
  .dpssc .GusRamsey .flex-features__block:first-child .flex-features__image {
    height: 18.75rem;
  }
}
@media (min-width: 1600px) {
  .dpssc .GusRamsey .flex-features__block:first-child .flex-features__image {
    height: 22.5rem;
  }
}
.dpssc .faculty-blocks {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: flex-start;
  margin: 1.25rem 0 1.875rem 0;
}
@media (min-width: 500px) {
  .dpssc .faculty-blocks {
    margin: 2.5rem 0 0 0;
  }
}
.dpssc .faculty-block {
  width: 100%;
  position: relative;
  padding-bottom: 0.625rem;
}
@media (min-width: 500px) {
  .dpssc .faculty-block {
    margin-right: 1.875rem;
    padding-bottom: 1.875rem;
  }
  .dpssc .faculty-block:nth-child(2), .dpssc .faculty-block:nth-child(4) {
    margin-right: 0px;
  }
  .dpssc .faculty-block:last-child {
    width: 100%;
  }
}
@media (min-width: 825px) {
  .dpssc .faculty-block {
    margin-right: 1.875rem;
  }
  .dpssc .faculty-block:last-child, .dpssc .faculty-block:nth-child(3) {
    margin-right: 0px;
  }
}
@media (min-width: 500px) {
  .dpssc .faculty-blocks .owl-wrapper {
    display: flex !important;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
    width: auto !important;
    overflow: hidden;
    word-wrap: break-word;
  }
}
@media (min-width: 500px) {
  .dpssc .faculty-blocks .owl-item {
    width: calc(50% - 20px) !important;
    float: initial;
  }
}
@media (min-width: 825px) {
  .dpssc .faculty-blocks .owl-item {
    width: calc(33.33333% - 20px) !important;
  }
  .dpssc .faculty-blocks .owl-item:last-child, .dpssc .faculty-blocks .owl-item:nth-child(4) {
    width: calc(50% - 20px);
  }
}
.dpssc .faculty-block__inner {
  max-width: 100%;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  margin: 1.875rem 0 0.625rem 0;
}
.dpssc .faculty-block__inner .sub-headline, .dpssc .faculty-block__inner .academic__body-title {
  margin: 0.625rem 0rem 0rem;
}
.dpssc #sportscasting-video .lightbox__controls i {
  color: #ffffff;
}

.compass .logo {
  height: auto;
  margin: 0 auto;
}
.compass .logo img {
  height: 3rem;
}

.compass-video {
  background-color: #000000;
}

video {
  display: block;
}

.destination {
  margin-top: 3.75rem;
}

.newspaper-columns.destination {
  -moz-column-gap: 0;
       column-gap: 0;
}

.location {
  position: relative;
}
.location .content {
  display: none;
  position: absolute;
  top: 0.625rem;
  width: 100%;
  padding: 0 5%;
}
.location .content .h2 {
  color: #e65400;
  margin-bottom: 1.875rem;
}
.location .img {
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
}
.location:hover .content {
  display: block;
}
.location:hover .img {
  opacity: 0.3;
}
@media (min-width: 700px) {
  .location .content .h2 {
    margin-bottom: 3.75rem;
  }
}
@media (min-width: 825px) {
  .location .content .h2 {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 960px) {
  .location .content .h2 {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .location .content .h2 {
    font-size: 2.75rem;
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .location .content {
    top: 1.875rem;
  }
  .location .content .h2 {
    margin-bottom: 2.5rem;
    font-size: 3.25rem;
  }
}

#Mountain {
  background-color: #000000;
  position: relative;
}

#Ocean {
  background-color: #000000;
  position: relative;
}

#Rainforest {
  background-color: #000000;
  position: relative;
}

#Desert {
  background-color: #000000;
  position: relative;
}

.topics {
  margin-bottom: 1.875rem;
}
.topics .ul {
  color: #ffffff;
}
.topics .ul li {
  line-height: 1.25rem;
}
@media (min-width: 825px) {
  .topics {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 960px) {
  .topics {
    margin-bottom: 3.125rem;
  }
}
@media (min-width: 1024px) {
  .topics {
    margin-bottom: 0;
  }
  .topics .ul li {
    line-height: 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .topics .ul li {
    line-height: 1.25rem;
  }
}

.topics.position-right {
  margin-left: 0;
}
@media (min-width: 1024px) {
  .topics.position-right {
    margin-left: 55%;
  }
}
@media (min-width: 1200px) {
  .topics.position-right {
    margin-left: 60%;
  }
}

.film {
  display: none;
}
@media (min-width: 400px) {
  .film {
    display: block;
  }
}
@media (min-width: 700px) {
  .film {
    display: none;
  }
}
@media (min-width: 825px) {
  .film {
    display: block;
  }
}

.production {
  display: none;
}
@media (min-width: 600px) {
  .production {
    display: block;
  }
}
@media (min-width: 700px) {
  .production {
    display: none;
  }
}
@media (min-width: 1024px) {
  .production {
    display: block;
  }
}

#mmm_cookies {
  margin-bottom: 1.875rem;
}
@media (min-width: 960px) {
  #mmm_cookies {
    margin-bottom: 3.75rem;
  }
}
#mmm_cookies .CookieDeclarationTableHeader {
  border-color: #d6d6d6;
}
#mmm_cookies .CookieDeclarationType {
  border-color: #d6d6d6;
}
#mmm_cookies colgroup {
  display: none;
  visibility: hidden;
}
#mmm_cookies table {
  width: 100%;
  padding: 0;
  margin: 0;
  margin-bottom: 0.5rem;
  table-layout: initial;
}
#mmm_cookies thead {
  display: none;
  color: #505050;
  font-size: 0.875rem;
}
@media (min-width: 960px) {
  #mmm_cookies thead {
    display: table-header-group;
  }
}
#mmm_cookies tr {
  display: block;
  width: 100%;
  margin-bottom: 0.625rem;
  padding: 0.4375rem;
  background-color: #f1f1f0;
  border: solid 1px #d6d6d6;
}
@media (min-width: 960px) {
  #mmm_cookies tr {
    display: table-row;
  }
}
#mmm_cookies td {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.4375rem;
  text-align: right;
  font-size: 0.8125rem;
  color: #505050;
  border-bottom: solid 1px #d6d6d6;
}
@media (min-width: 960px) {
  #mmm_cookies td {
    display: table-cell;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }
}
#mmm_cookies td:before {
  content: attr(data-label);
  color: #505050;
  font-size: 13px;
  font-weight: bold;
  margin-right: 0.875rem;
}
@media (min-width: 960px) {
  #mmm_cookies td:before {
    display: none;
  }
}
#mmm_cookies td:last-child {
  border-bottom: none;
}

#CybotCookiebotDialog {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3) !important;
}

#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonAccept,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: auto !important;
  margin: 0;
  margin-right: 0.625rem;
  padding: 0.875rem 1.5rem;
  background-color: #e65400;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.875rem;
  line-height: normal;
  transition: background-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonAccept:hover,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:hover,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection:hover {
  background-color: #505050;
  color: #ffffff;
}
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonAccept:first-child,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:first-child,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection:first-child {
  background-color: #505050;
}
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonAccept:last-child,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll:last-child,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection:last-child {
  margin-right: 0;
}
#CybotCookiebotDialogBody #CybotCookiebotDialog a,
#CybotCookiebotDialogBody #CybotCookiebotDialog div,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyContentControls,
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyContentTitle {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyContentTitle {
  color: #505050;
}
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyContentText {
  margin-bottom: 0.3125rem;
  color: #505050;
}
#CybotCookiebotDialogBody #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelectionWrapper {
  width: 100%;
  margin-bottom: 0.5625rem;
  text-align: center;
}

#CybotCookiebotDialogPoweredbyCybot {
  display: none;
  visibility: hidden;
}

.skip-links__link {
  position: absolute;
  top: -31.25rem;
  z-index: 100;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-links__link:focus, .skip-links__link:active {
  top: 0px;
  width: auto;
  height: auto;
  padding: 0.625rem;
  overflow: visible;
  background-color: #e65400;
  color: #ffffff;
}

#jumplink {
  display: none;
  position: fixed;
  bottom: 0rem;
  right: 0.9375rem;
  z-index: 99;
  font-size: 0.875rem;
  border: none;
  outline: none;
  background-color: #e65400;
  color: #ffffff;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.5);
}
#jumplink:hover {
  background-color: #e65400;
}

.angle-tek {
  position: relative;
  overflow: hidden;
  margin-bottom: -1px;
}

.angle-tek:after {
  content: " ";
  width: 150%;
  height: 100%;
  position: absolute;
  bottom: -100%;
  z-index: 10;
}

.angle-tek-inverted {
  position: relative;
  z-index: 10;
}
.angle-tek-inverted .container {
  position: relative;
  z-index: 20;
}

.angle-tek-bottom:after {
  content: " ";
  width: 150%;
  height: 100%;
  position: absolute;
  bottom: -100%;
}

.angle-tek-top:before {
  content: " ";
  width: 150%;
  height: 100%;
  position: absolute;
  top: -100%;
}

.angle-tek-inverted-top:before {
  content: " ";
  width: 250%;
  height: 100%;
  position: absolute;
  top: -3.125rem;
  right: -20%;
  transform: rotate(-5.4deg);
}

.angle-tek-inverted-top--left:before {
  content: " ";
  width: 250%;
  height: 100%;
  position: absolute;
  top: -3.375rem;
  left: -15%;
  transform: rotate(5.4deg);
}

.angle-tek-inverted-bottom:after {
  content: " ";
  width: 250%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: -15%;
  transform: rotate(-5.4deg);
}

.angle-tek--right:after {
  left: -50%;
  transform: rotate(5.4deg);
  transform-origin: top right;
}

.angle-tek--left:after {
  right: -50%;
  transform: rotate(-5.4deg);
  transform-origin: top left;
}

.angle-tek-top--right:before {
  right: 0;
  transform: rotate(-5.4deg);
  transform-origin: bottom right;
}

.angle-tek-top--left:after {
  right: -50%;
  transform: rotate(-5.4deg);
  transform-origin: bottom left;
}

.angle-tek--white:after {
  background-color: #ffffff;
  border: solid 1px #ffffff;
}

.angle-tek-before--white:before {
  background-color: #ffffff;
}

.angle-tek--tan:after {
  background-color: #f9f5eb;
  border: solid 1px #f9f5eb;
}

.angle-tek-before--tan:before {
  background-color: #f9f5eb;
}

.angle-tek--black:after {
  background-color: #000000;
  border: solid 1px #000000;
  opacity: 0.5;
}

.owl-theme .owl-controls .owl-page.active span {
  background-color: #fdb913;
}

#Glide-artist-relations .glide__slide-image {
  height: 18.75rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 500px) {
  #Glide-artist-relations .glide__slide-image {
    height: 20.625rem;
  }
}
@media (min-width: 700px) {
  #Glide-artist-relations .glide__slide-image {
    height: 31.25rem;
  }
}
@media (min-width: 1200px) {
  #Glide-artist-relations .glide__slide-image {
    height: 37.5rem;
  }
}
@media (min-width: 2200px) {
  #Glide-artist-relations .glide__slide-image {
    height: 50rem;
  }
}
#Glide-artist-relations .glide__bullets {
  bottom: 2.5rem;
}
#Glide-artist-relations .glide__bullet {
  width: 0.9375rem;
  height: 0.9375rem;
  margin: 0.9375rem;
  background-color: transparent;
  border-color: #ffffff;
  border-width: 1px;
}
#Glide-artist-relations .glide__bullet--active {
  background-color: #fdb913;
  border-color: #fdb913;
  border-width: 1px;
}
#Glide-artist-relations .glide__bullet--active:focus {
  border: 2px solid #fdb913;
}
#Glide-artist-relations .glide__bullet:hover {
  border-color: #fdb913;
  background-color: #fdb913;
  border-width: 1px;
  border-color: #fdb913;
}
#Glide-artist-relations .glide__bullet:focus {
  border: 2px solid #fdb913;
}

.slideshow-ticker {
  height: 6.25rem;
  background-color: #454545;
}
.slideshow-ticker img {
  height: 6.25rem;
  margin: 0 auto;
}
.slideshow-ticker .owl-controls {
  display: none;
  visibility: hidden;
}
.slideshow-ticker .owl-item {
  height: 6.25rem;
  padding: 0 1.25rem;
  position: relative;
  border-right: solid 1px #505050;
  min-width: 200px;
}

.slideshow-ticker__item {
  height: 6.25rem;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  font-family: "Square Serif", sans-serif;
  font-weight: 300;
  font-size: 1.125rem;
}

.epk__intro .h1 {
  margin-bottom: 0;
}

.epk__promo-video {
  background-image: url("/assets/images/epk/poster_promo-video.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 18.75rem;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}
.epk__promo-video .fs-play-alt {
  font-size: 3.75rem;
  color: #ffffff;
}
.epk__promo-video .js-lightbox {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.epk__promo-video .h1 {
  margin-bottom: 0.625rem;
  color: #ffffff;
}
@media (min-width: 500px) {
  .epk__promo-video {
    height: 20.625rem;
  }
}
@media (min-width: 700px) {
  .epk__promo-video {
    height: 28.125rem;
  }
  .epk__promo-video .fs-play-alt {
    font-size: 5.625rem;
  }
}

.lightbox {
  transition: opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.35s, visibility 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.35s;
}

.epk__benefits {
  padding: 1.875rem 0;
  background-color: #f1f1f0;
}
.epk__benefits .circle {
  display: inline-block;
  border-radius: 50%;
  width: 3.8125rem;
  height: 3.8125rem;
  line-height: 3.8125rem;
  color: #ffffff;
  font-size: 1.875rem;
  font-weight: bold;
  margin-top: 1.25rem;
  margin-bottom: 1.875rem;
  background-color: #fdb913;
}
@media (min-width: 960px) {
  .epk__benefits {
    padding: 3.75rem 0;
  }
}

.epk__packages .h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
@media (min-width: 960px) {
  .epk__packages .h3 {
    font-size: 2.125rem;
  }
}
.epk__packages .package-title {
  font-family: "Square Serif", sans-serif;
  font-size: 2.875rem;
  font-weight: 300;
  text-align: center;
}
.epk__packages .package-sub-title {
  color: #505050;
  font-size: 20px;
  text-align: center;
  margin-bottom: 1.25rem;
}
.epk__packages .package-primary {
  padding-top: 1.875rem;
  padding-bottom: 3.125rem;
  background-color: #fdb913;
  align-self: stretch;
}
.epk__packages .package-primary .package-title {
  color: #505050;
  padding-top: 1.25rem;
}
.epk__packages .package-secondary {
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  margin: 1.25rem 0;
  background-color: #f1f1f0;
  align-self: stretch;
}
.epk__packages .package-secondary .package-title {
  color: #505050;
}
.epk__packages .package-body {
  font-size: 0.875rem;
  color: #505050;
  padding: 1.25rem 2.5rem;
}
.epk__packages .package-list {
  font-size: 0.875rem;
  color: #505050;
  list-style: initial;
  list-style-position: outside;
  margin: 0 3.125rem;
}
.epk__packages .package-list li {
  margin: 0 0 1.25rem 0;
}
.epk__packages .package-icon {
  width: 6.25rem;
  margin: auto;
}

.extra-package {
  background-color: #f1f1f0;
  text-align: center;
  padding: 3.75rem 5% 2.5rem;
}

.epk__previous-sponsors {
  background-color: #ffffff;
}
.epk__previous-sponsors .h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
@media (min-width: 960px) {
  .epk__previous-sponsors .h3 {
    font-size: 2.125rem;
  }
}
.epk__previous-sponsors .container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.epk__previous-sponsors .partners-logo {
  margin: 0 1.25rem;
}
.epk__previous-sponsors .partners-logo:first-child {
  margin-left: 0;
}
.epk__previous-sponsors .partners-logo:last-child {
  margin-right: 0;
}
.epk__previous-sponsors .partners-logo img {
  width: 100%;
}

.hof-live-stream {
  width: inherit;
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: flex-start;
}

.hof-live-stream__block {
  margin: 0;
  width: 100%;
}
@media (min-width: 700px) {
  .hof-live-stream__block {
    margin: 0.625rem;
    width: calc(50% - 0.625rem * 2);
  }
}

.hof-live-stream__meta {
  margin: 0.625rem 0 1.875rem 0;
  text-align: left;
  font-size: 1rem;
  color: #505050;
  line-height: 1.5rem;
}
.hof-live-stream__meta strong {
  padding-right: 0.3125rem;
}
@media (min-width: 960px) {
  .hof-live-stream__meta {
    margin: 1.25rem 0;
  }
}

.hof-sponsor .hero .header__primary {
  color: #ffffff;
}
.hof-sponsor .hero .headline {
  font-size: 1.5rem;
  color: #ffffff;
}
@media (min-width: 960px) {
  .hof-sponsor .hero .headline {
    font-size: 2rem;
  }
}

.hero-date {
  font-family: "Square Serif", sans-serif;
  font-size: 1.75rem;
  font-weight: 300;
}
@media (min-width: 960px) {
  .hero-date {
    font-size: 2.5rem;
  }
}

.hof-cta-secondary.cta--secondary:after, .hof-cta-secondary.cta--secondary-alt:after {
  display: none;
}

.hof-cta-secondary.cta--secondary:hover, .hof-cta-secondary.cta--secondary-alt:hover {
  background-color: #f1f1f0;
  cursor: default;
}

.hero__overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

.vertical-align-center {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}
.vertical-align-center :last-child {
  margin-bottom: 0;
}

.get-involved, .next-steps, .built-for-students {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-align: center;
  margin-bottom: 0;
  padding: 1.25rem 0;
}
.get-involved .container, .next-steps .container, .built-for-students .container {
  position: relative;
}
.get-involved .grids, .next-steps .grids, .built-for-students .grids {
  height: 100%;
}
.get-involved .h1, .next-steps .h1, .built-for-students .h1 {
  margin-top: 0;
  margin-bottom: 1.25rem;
  font-size: 2.75rem;
  text-align: left;
  color: #fdb913;
}
.get-involved p, .next-steps p, .built-for-students p {
  color: #ffffff;
  text-align: left;
}
.get-involved .overlay, .next-steps .overlay, .built-for-students .overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 500px) {
  .get-involved, .next-steps, .built-for-students {
    height: 20.625rem;
    padding: 0;
  }
}
@media (min-width: 700px) {
  .get-involved, .next-steps, .built-for-students {
    height: 28.125rem;
  }
}

.get-involved-list {
  background-color: #f1f1f0;
  padding: 2.5rem 0;
}

.get-involved-list__title {
  font-weight: bold;
}

.audience-stats {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}
@media (min-width: 500px) {
  .audience-stats {
    flex-flow: row nowrap;
    justify-content: space-between;
  }
}

.audience-stats__block {
  margin: 0.625rem;
}
.audience-stats__block .block {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
@media (min-width: 500px) {
  .audience-stats__block {
    align-self: stretch;
  }
}
@media (min-width: 700px) {
  .audience-stats__block {
    margin: 1.25rem;
  }
}

.audience-stats__number {
  font-family: "Square Serif", sans-serif;
  font-size: 2.5rem;
  color: #e65400;
}
@media (min-width: 700px) {
  .audience-stats__number {
    font-size: 4.375rem;
  }
}

.audience-stats__symbol {
  font-size: 2.5rem;
  color: #e65400;
}

.audience-stats__type {
  text-align: center;
  text-transform: uppercase;
  color: #505050;
}

.built-for-students-list {
  background-color: #f1f1f0;
  padding: 2.5rem 0;
}
.built-for-students-list li {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.built-for-students__circle {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  min-width: 5rem;
  background-color: #fdb913;
  font-size: 2.5rem;
  color: #ffffff;
}

.built-for-students__item {
  margin-left: 1.25rem;
}

.next-steps a {
  color: #fdb913;
}

.previous-sponsors {
  background-color: #ffffff;
}
.previous-sponsors .h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
@media (min-width: 960px) {
  .previous-sponsors .h3 {
    font-size: 2.125rem;
  }
}
.previous-sponsors .container {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.875rem;
}
.previous-sponsors .partners-logo {
  margin: 0 1.25rem;
}
.previous-sponsors .partners-logo:first-child {
  margin-left: 0;
}
.previous-sponsors .partners-logo:last-child {
  margin-right: 0;
}
.previous-sponsors .partners-logo img {
  width: 100%;
}

.iet {
  background-color: #171717;
}
.iet .whopper:hover, .iet .whopper:focus {
  background-color: #13b5ea;
}
.iet .whopper i {
  color: #ffffff;
}
.iet .nav--is-on .whopper {
  background-color: #13b5ea;
}
.iet .subbar {
  background-color: #151515;
  border-bottom: solid 1px #000000;
}
.iet .subbar .subbar__logo img {
  height: 2.25rem;
}
.iet .subbar img.hide-mobile {
  display: block !important;
  visibility: visible !important;
}
.iet .subbar .subbar__nav-link {
  font-weight: 500;
}
.iet .subbar .subbar__nav-link:hover, .iet .subbar .subbar__nav-link:focus {
  color: #13b5ea;
}
.iet .subbar .subbar__nav {
  background-color: #151515;
}
.iet .subbar .subbar__nav .subbar__nav-link {
  border-top: none;
  border-bottom: none;
  color: #ffffff;
}
.iet .subbar .subbar__nav .subbar__nav-link:hover, .iet .subbar .subbar__nav .subbar__nav-link:focus {
  color: #13b5ea;
  border-bottom: solid 0.0625rem #13b5ea;
}
@media (min-width: 700px) {
  .iet .subbar .subbar__nav .subbar__nav-link:hover, .iet .subbar .subbar__nav .subbar__nav-link:focus {
    border-bottom: none;
  }
}
@media (min-width: 960px) {
  .iet .subbar {
    height: 5rem;
  }
  .iet .subbar .subbar__logo img {
    height: 2.875rem;
  }
  .iet .subbar .subbar__nav-link {
    font-size: 1rem;
    margin: 0 0.5625rem;
  }
  .iet .subbar .subbar__nav-link:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .iet .subbar .subbar__nav-link {
    margin: 0 0.75rem;
  }
}
.iet p {
  color: #ffffff;
}
.iet p a {
  color: #13b5ea;
}
.iet p a:hover, .iet p a:focus {
  color: #ffffff;
}
.iet .divider--ultramagnus {
  background-color: #13b5ea;
}
.iet .divider--quarter {
  width: 12.875rem;
  height: 0.125rem;
  background-color: #13b5ea;
  margin: 0 0 1.25rem;
}
@media (min-width: 500px) {
  .iet .divider--quarter {
    width: 17.375rem;
    height: 0.25rem;
    margin: 0 0 2.5rem;
  }
}
@media (min-width: 960px) {
  .iet .divider--quarter {
    width: 23rem;
    margin: 0 0 3.75rem;
  }
}
.iet .hero-gradient {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-image: linear-gradient(0, rgb(23, 23, 23), transparent 80%);
}
@media (min-width: 500px) {
  .iet .hero-gradient {
    background-image: linear-gradient(0, rgb(23, 23, 23), transparent 50%);
  }
}
.iet .hero-gradient--alt {
  width: 100%;
  height: inherit;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(0, rgba(0, 0, 0, 0.8), rgba(23, 23, 23, 0.6));
}
.iet .btn--outline.btn--secondary.btn--inverse {
  font-size: 1rem;
  text-transform: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.iet .footer {
  background-color: #282828;
}
.iet .story-zone .flex-features__block {
  border-left: none;
  border-bottom: solid 0.25rem #13b5ea;
  background-color: #282828;
}
.iet .story-zone .flex-features__block:hover .flex-features__read-more {
  color: #13b5ea;
}
.iet .story-zone .flex-features__title {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
}
.iet .flex-features__body p {
  padding: 0.9375rem 0 1.25rem;
}
.iet .flex-features__read-more {
  color: #ffffff;
  padding-bottom: 1.875rem;
}
.iet .pagination__list {
  background-color: #171717;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.iet .pagination__list:hover {
  color: #13b5ea;
}
.iet .pagination__list.current {
  border-color: #13b5ea;
  background-color: #282828;
  color: #13b5ea;
}
.iet .pagination__prev-next {
  background-color: #171717;
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 0.4375rem 0.9375rem 0.5625rem;
}
.iet .pagination__prev-next:hover {
  color: #13b5ea;
}

.skin-ultramagnus {
  color: #13b5ea;
}

.headliner {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.625rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.25rem;
}
@media (min-width: 700px) {
  .headliner {
    font-size: 2.125rem;
  }
}
@media (min-width: 960px) {
  .headliner {
    font-size: 2.625rem;
    line-height: 3.375rem;
  }
}

.featured-spaces__headline {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.25rem;
}
@media (min-width: 700px) {
  .featured-spaces__headline {
    font-size: 1.75rem;
    text-align: left;
  }
}

.dot-divider {
  width: 1.75rem;
  height: 0.375rem;
  background-image: url("/assets/images/iet/iet-dot-divider.svg");
  background-repeat: no-repeat;
  display: block;
  margin: 1.25rem auto;
}
@media (min-width: 500px) {
  .dot-divider {
    margin: 1.875rem auto;
  }
}
@media (min-width: 960px) {
  .dot-divider {
    margin: 2.5rem auto;
  }
}

.hero__container .container {
  height: inherit;
  display: flex;
  align-content: flex-start;
  justify-content: flex-end;
  text-align: left;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.hero__inner--headline {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 2.625rem;
  font-weight: 200;
  color: #ffffff;
}
@media (min-width: 700px) {
  .hero__inner--headline {
    font-size: 3.8125rem;
  }
}
@media (min-width: 960px) {
  .hero__inner--headline {
    font-size: 4.75rem;
  }
}

.featured-spaces {
  display: block;
  background-color: #282828;
  padding: 1.875rem 0.9375rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 500px) {
  .featured-spaces {
    padding: 1.875rem 2.5rem;
  }
}
@media (min-width: 700px) {
  .featured-spaces {
    padding: 1.875rem 3.75rem;
  }
}
@media (min-width: 960px) {
  .featured-spaces {
    padding: 1.875rem 6.25rem;
  }
}

.featured-spaces__headline .divider {
  margin: 0.625rem auto 1.875rem;
}
@media (min-width: 700px) {
  .featured-spaces__headline .divider {
    margin: 0.625rem 0rem 1.875rem;
  }
}

.featured-spaces__assets {
  display: flex;
  flex-flow: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.25rem;
}

.featured-spaces__assets--img:nth-child(3) {
  display: none;
}
.featured-spaces__assets--img:nth-child(2) {
  display: none;
}
@media (min-width: 500px) {
  .featured-spaces__assets--img:nth-child(2) {
    margin: 0 0 0 5%;
    display: block;
  }
}
@media (min-width: 960px) {
  .featured-spaces__assets--img:nth-child(2) {
    margin: 0 5%;
  }
  .featured-spaces__assets--img:nth-child(3) {
    display: block;
  }
}

.action-items--block {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  height: 8.4375rem;
  align-items: center;
}
.action-items--block .btn--outline.btn--secondary.btn--inverse {
  width: 16.5625rem;
  padding: 0.625rem 0.3125rem;
}
@media (min-width: 500px) {
  .action-items--block {
    flex-flow: row;
    height: auto;
    padding: 2.5rem 0;
    justify-content: space-between;
  }
  .action-items--block .btn--outline.btn--secondary.btn--inverse:first-child {
    margin-right: 0.625rem;
  }
}
@media (min-width: 700px) {
  .action-items--block {
    justify-content: space-around;
  }
}

.hero--pixel-pattern:before {
  width: 11.25rem;
  height: 11.25rem;
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url("/assets/images/iet/Burst-Blue.png");
  background-repeat: no-repeat;
  content: " ";
  opacity: 0.4;
}
@media (min-width: 400px) {
  .hero--pixel-pattern:before {
    width: 13.125rem;
    height: 13.125rem;
  }
}
@media (min-width: 700px) {
  .hero--pixel-pattern:before {
    width: 19.375rem;
    height: 19.375rem;
  }
}
@media (min-width: 960px) {
  .hero--pixel-pattern:before {
    width: 25.625rem;
    height: 25.625rem;
  }
}

.right__burst-top {
  display: block;
  width: 40.625rem;
  height: 40.625rem;
  position: absolute;
  top: 23%;
  right: -20%;
  background-image: url("/assets/images/iet/Burst-White.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0.05;
}

.right__burst-middle {
  display: block;
  width: 40.625rem;
  height: 40.625rem;
  position: absolute;
  top: 50%;
  right: -20%;
  background-image: url("/assets/images/iet/Burst-White.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0.05;
}

.right__burst-bottom {
  display: block;
  width: 40.625rem;
  height: 40.625rem;
  position: absolute;
  bottom: -10%;
  right: -20%;
  background-image: url("/assets/images/iet/Burst-White.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0.05;
}

.left__burst-top {
  display: block;
  width: 40.625rem;
  height: 40.625rem;
  position: absolute;
  top: 23%;
  left: -20%;
  background-image: url("/assets/images/iet/Burst-White.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0.05;
}

.left__burst-middle {
  display: block;
  width: 40.625rem;
  height: 40.625rem;
  position: absolute;
  top: 50%;
  left: -20%;
  background-image: url("/assets/images/iet/Burst-White.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.05;
}

.left__burst-bottom {
  display: block;
  width: 40.625rem;
  height: 40.625rem;
  position: absolute;
  bottom: -10%;
  left: -20%;
  background-image: url("/assets/images/iet/Burst-White.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  opacity: 0.05;
}

.hero__block .container {
  height: inherit;
  display: flex;
  align-items: center;
  align-content: flex-start;
  justify-content: flex-end;
  text-align: center;
}
@media (min-width: 500px) {
  .hero__block .container {
    text-align: left;
    justify-content: center;
  }
}

.hero__content {
  width: 100%;
  margin-bottom: 1.25rem;
}
@media (min-width: 500px) {
  .hero__content {
    margin-bottom: 0;
  }
}
@media (min-width: 825px) {
  .hero__content {
    width: 43.75rem;
  }
}

.hero__content--headline {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.625rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
@media (min-width: 700px) {
  .hero__content--headline {
    font-size: 2.125rem;
  }
}
@media (min-width: 960px) {
  .hero__content--headline {
    font-size: 3.25rem;
    line-height: 3.5rem;
  }
}

@media (min-width: 825px) {
  .hero__content--copy {
    width: 37.5rem;
  }
}
.hero__content--copy p {
  display: none;
}
@media (min-width: 500px) {
  .hero__content--copy p {
    display: block;
  }
}
.hero__content--copy a {
  text-decoration: none;
  color: #ffffff;
}
.hero__content--copy a:hover, .hero__content--copy a:focus {
  color: #13b5ea;
}
.hero__content--copy a:hover i.fs.fs-arrow-right, .hero__content--copy a:focus i.fs.fs-arrow-right {
  background-color: #13b5ea;
  color: #ffffff;
}
.hero__content--copy i.fs.fs-arrow-right {
  background-color: #ffffff;
  color: #000000;
  border-radius: 0.625rem;
  padding: 0.25rem 0.3125rem 0.25rem 0.4375rem;
  font-size: 0.75rem;
  margin-top: -0.25rem;
  margin-right: 0.5rem;
}

@media (min-width: 960px) {
  .iet .hero__overlay {
    background: none;
  }
}

#Glide-iet {
  background-color: #282828;
  padding: 2.5rem 3.75rem;
}
#Glide-iet .h1,
#Glide-iet p {
  opacity: 1;
  transform: scale(1);
}
#Glide-iet a {
  opacity: 1;
  display: block;
  width: 8.625rem;
  margin: 0 auto;
}
@media (min-width: 700px) {
  #Glide-iet a {
    margin: 0;
  }
}
@media (min-width: 960px) {
  #Glide-iet a {
    margin-bottom: 1.25rem;
  }
}
#Glide-iet .h1 {
  margin: 0;
  padding: 0;
  margin-bottom: 1.25rem;
  font-weight: normal;
  font-size: 1.375rem;
  line-height: normal;
  color: #ffffff;
  text-align: center;
}
@media (min-width: 700px) {
  #Glide-iet .h1 {
    text-align: left;
  }
}
@media (min-width: 960px) {
  #Glide-iet .h1 {
    font-size: 1.75rem;
  }
}
#Glide-iet p {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 700px) {
  #Glide-iet p {
    text-align: left;
  }
}
#Glide-iet .glide__slides {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}
#Glide-iet .glide__slide {
  margin: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#Glide-iet .glide__slide--image {
  display: none;
}
@media (min-width: 700px) {
  #Glide-iet .glide__slide--image {
    display: block;
  }
}
#Glide-iet .glide__slide--image img {
  width: 100%;
}
#Glide-iet .glide__arrow {
  border: none;
  padding: 0;
}
#Glide-iet .glide__arrow i {
  font-size: 2.5rem;
}
#Glide-iet .glide__arrow.prev {
  left: 0.9375rem;
}
#Glide-iet .glide__arrow.next {
  right: 0.9375rem;
}
#Glide-iet .glide__slide--active {
  opacity: 1;
}

.focus-squares {
  margin-top: 2.5rem;
}
.focus-squares .grid-6 {
  display: block;
}

.focus-squares--block {
  background-color: #282828;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 2.5rem;
  margin-top: 1.875rem;
  border-bottom: solid 0.25rem #13b5ea;
  text-align: center;
}
.focus-squares--block .focus-squares__headline {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 1.625rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.25rem;
}
@media (min-width: 500px) {
  .focus-squares--block {
    padding: 3.75rem 5rem;
  }
}
@media (min-width: 700px) {
  .focus-squares--block {
    padding: 1.25rem 2.5rem 1.25rem 2.5rem;
    margin-top: 0rem;
    text-align: left;
    align-items: flex-start;
  }
  .focus-squares--block .focus-squares__headline {
    font-size: 1.875rem;
  }
}
@media (min-width: 960px) {
  .focus-squares--block {
    padding: 1.25rem 6.25rem 1.25rem 3.75rem;
  }
  .focus-squares--block .focus-squares__headline {
    font-size: 2.625rem;
    line-height: 3.375rem;
  }
}

img.focus-squares__img {
  margin: 0;
  width: 100%;
}

.focus-squares--container {
  margin-top: 1.875rem;
}

.grids.grids--margins.left.focus-squares--container {
  display: flex;
  flex-flow: column-reverse;
}
@media (min-width: 700px) {
  .grids.grids--margins.left.focus-squares--container {
    flex-flow: row;
  }
}

.about__inner, .intro__inner {
  width: 100%;
  padding: 0 1.25rem;
}
@media (min-width: 700px) {
  .about__inner, .intro__inner {
    width: 45rem;
    margin: 0 auto;
    padding: 0;
  }
}
@media (min-width: 960px) {
  .about__inner, .intro__inner {
    width: 51.25rem;
    margin: 0 auto;
  }
}

.featured-story {
  font-family: "Open Sans", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  color: #505050;
  display: flex;
  justify-content: flex-start;
  flex-flow: row wrap;
  flex-direction: row; /* Chrome, Safari, Opera */
  page-break-inside: avoid; /* Firefox */
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  background-color: #282828;
  padding: 1.25rem;
  margin-bottom: 1.875rem;
}

@media (min-width: 700px) {
  .featured-story__thumb {
    flex: 1;
    margin: 0 1.875rem 0 0;
  }
}

.featured-story__wrapper {
  margin: 1.25rem 0.625rem 0 0;
}
@media (min-width: 700px) {
  .featured-story__wrapper {
    flex: 2;
    margin: 0 0.625rem 0 0;
  }
}

.featured-story__wrapper p {
  margin-bottom: 0;
}

.featured-story__wrapper .divider--ultramagnus {
  margin-top: 0.625rem;
  margin-bottom: 1.875rem;
}

.featured-story__img {
  width: 100%;
  height: auto;
}

.featured-story__headline {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: normal;
  margin: 0 0 0.625rem 0;
  max-width: 100%;
  color: #ffffff;
}
@media (min-width: 960px) {
  .featured-story__headline {
    font-size: 1.625rem;
  }
}

.featured-story__date {
  margin: 0 0 1.25rem 0;
}

.featured-story .divider--large {
  background-color: #4d4d4f;
}

.sponsors__inner {
  display: block;
  background-color: #282828;
  padding: 1.875rem 0.9375rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 500px) {
  .sponsors__inner {
    padding: 1.875rem 2.5rem;
  }
}
@media (min-width: 700px) {
  .sponsors__inner {
    padding: 1.875rem 3.75rem;
  }
}
@media (min-width: 960px) {
  .sponsors__inner {
    padding: 1.875rem 6.25rem;
  }
}

.sponsors__asset {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}

.sponsors__asset--img {
  flex: 1 1 20%;
  margin: 1.25rem 0.9375rem;
}
.sponsors__asset--img:nth-child(2) img {
  margin: 0 auto;
}
.sponsors__asset--img:nth-child(3) img {
  margin: 0 0 0 auto;
}
.sponsors__asset--img:nth-child(5) img {
  margin: 0 auto;
}
.sponsors__asset--img:nth-child(6) img {
  margin: 0 auto;
}
.sponsors__asset--img img {
  max-width: 100%;
}
@media (min-width: 500px) {
  .sponsors__asset--img {
    flex: 1 1 22%;
  }
}
@media (min-width: 700px) {
  .sponsors__asset--img {
    flex: 1 1 25%;
  }
}
@media (min-width: 960px) {
  .sponsors__asset--img {
    flex: 1 1 27%;
  }
}
@media (min-width: 1200px) {
  .sponsors__asset--img {
    flex: 1 1 29%;
  }
}

.awards__inner {
  width: 100%;
  padding: 0 1.25rem;
}
@media (min-width: 700px) {
  .awards__inner {
    padding: 0rem 3.75rem;
  }
}
@media (min-width: 960px) {
  .awards__inner {
    padding: 0rem 7.5rem;
  }
}

.awards__body--button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  margin-bottom: 5rem;
}
@media (min-width: 500px) {
  .awards__body--button {
    margin-top: 1.875rem;
    margin-bottom: 0;
  }
}

.about-tech__inner {
  width: 100%;
  padding: 0 0.9375rem;
}
@media (min-width: 700px) {
  .about-tech__inner {
    margin: 0 auto;
    padding: 0rem 3.75rem;
  }
}
@media (min-width: 960px) {
  .about-tech__inner {
    padding: 0rem 6.25rem;
  }
}

.focus__inner {
  display: block;
}
.focus__inner .slash-heading {
  flex-flow: column nowrap;
  align-items: center;
}
.focus__inner .slash-heading__title {
  margin-top: 1.25rem;
  order: 2;
  background-color: transparent;
  font-size: 1.625rem;
  color: #ffffff;
  text-align: center;
}
.focus__inner .select-filter {
  background-color: transparent;
  margin-left: 0;
  padding-left: 0;
  flex-flow: column nowrap;
}
.focus__inner .form-field__select select {
  background-color: transparent;
  color: #ffffff;
}
.focus__inner .form-field__select:after {
  color: #13b5ea;
}
.focus__inner .btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
  border-width: 0.1875rem;
  padding-top: 0.6875rem;
  padding-bottom: 0.6875rem;
}
.focus__inner .select-filter .form-field--select + .btn {
  width: 100%;
  margin-left: 0;
  margin-top: 0.625rem;
}
@media (min-width: 700px) {
  .focus__inner {
    padding: 1.875rem 3.75rem;
  }
  .focus__inner .slash-heading {
    flex-flow: row nowrap;
    align-items: flex-start;
  }
  .focus__inner .select-filter {
    margin-left: auto;
    padding-left: 1.25rem;
  }
  .focus__inner .headliner {
    text-align: left;
  }
  .focus__inner .dot-divider {
    margin: 1.875rem 0;
  }
  .focus__inner .slash-heading__title {
    order: 0;
    margin-top: 0;
    font-size: 2.125rem;
    text-align: left;
  }
}
@media (min-width: 960px) {
  .focus__inner .dot-divider {
    margin: 2.5rem 0;
  }
  .focus__inner .slash-heading__title {
    font-size: 2.625rem;
  }
  .focus__inner .select-filter {
    flex-flow: row nowrap;
  }
  .focus__inner .select-filter .form-field--select + .btn {
    margin-top: 0;
    margin-left: 0.625rem;
    width: auto;
  }
}

.academic__inner {
  display: block;
  background-color: #282828;
  color: #ffffff;
  padding: 1.875rem 0.9375rem;
  margin-bottom: 1.875rem;
}
@media (min-width: 500px) {
  .academic__inner {
    padding: 1.875rem 2.5rem;
  }
}
@media (min-width: 700px) {
  .academic__inner {
    padding: 1.875rem 3.75rem;
  }
}
.academic__body-title {
  color: #13b5ea;
}

.academic__body-button-wrapper {
  margin: 0 0.625rem 0.9375rem 0;
}

.academic__body-button {
  height: inherit;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 1.25rem;
}
@media (min-width: 500px) {
  .academic__body-button {
    justify-content: flex-start;
  }
}

.gamelab__hero {
  height: 18.75rem;
  margin: 0;
  background-repeat: no-repeat;
  background-position: 50% 30%;
  background-size: cover;
  background-color: #000000;
  position: relative;
  transition: height 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) 0.25s;
}
.gamelab__hero .container {
  position: relative;
  height: inherit;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
}
@media (min-width: 500px) {
  .gamelab__hero {
    height: 20rem;
  }
}

.gamelab__inner {
  text-align: center;
  display: block;
  color: #ffffff;
  padding: 0rem 0.9375rem;
}
@media (min-width: 500px) {
  .gamelab__inner {
    padding: 0rem 2.5rem;
  }
}
@media (min-width: 700px) {
  .gamelab__inner {
    padding: 0rem 3.75rem;
  }
}
@media (min-width: 960px) {
  .gamelab__inner {
    padding: 0rem 6.25rem;
  }
}

.gamelab__inner-body {
  max-width: 31.25rem;
  margin-bottom: 1.875rem;
}

.partners__inner {
  display: block;
  color: #ffffff;
  padding: 0rem 0.9375rem;
  text-align: center;
}
@media (min-width: 500px) {
  .partners__inner {
    padding: 0rem 2.5rem;
  }
}
@media (min-width: 700px) {
  .partners__inner {
    padding: 0rem 3.75rem;
  }
}
@media (min-width: 960px) {
  .partners__inner {
    padding: 0rem 6.25rem;
  }
}

.partners__inner--body {
  max-width: 45rem;
  margin: 0 auto;
}

.partners__block {
  background-color: #282828;
  color: #ffffff;
  padding: 1.875rem 0.9375rem;
  height: inherit;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.partners__block img {
  max-width: 100%;
}
@media (min-width: 500px) {
  .partners__block {
    padding: 1.875rem 2.5rem;
  }
}
@media (min-width: 700px) {
  .partners__block {
    padding: 1.875rem 3.75rem;
  }
}
.partners__block-img {
  margin-right: 0.9375rem;
}
.partners__block-img:last-child {
  margin: 0;
}

.content__inner {
  display: block;
  width: 100%;
  padding: 0 1.25rem;
  color: #ffffff;
}
@media (min-width: 700px) {
  .content__inner {
    padding: 0rem 3.75rem;
  }
}
@media (min-width: 960px) {
  .content__inner {
    padding: 0rem 7.5rem;
  }
}

.content__body-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  margin-bottom: 5rem;
}
@media (min-width: 500px) {
  .content__body-button {
    margin-top: 1.875rem;
    margin-bottom: 0;
  }
}

.header__primary {
  font-weight: 400;
}

.flex-table td:before {
  text-align: left;
}
/*# sourceMappingURL=app.css.map */
