@charset "UTF-8";
/* Grid sizes: */
/* http://gridcalculator.dk/#/1020/12/20/10 -- 65px col */
/* Colors */
@media (min-width: 48em) {
  .era {
    margin-top: 4rem;
  }
}
@media (min-width: 81.25em) {
  .era {
    margin-top: 6rem;
  }
}
@media (min-width: 100em) {
  .era {
    margin-top: 8rem;
  }
}
@media (min-width: 112.5em) {
  .era {
    margin-top: 10rem;
  }
}

.alert {
  background: #ff4d00;
  color: #fff;
  padding: 1rem 2.25rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  opacity: 0;
  z-index: 1000;
}
@media (min-width: 48em) {
  .alert {
    padding: 1rem 4rem;
  }
  .alert .table {
    display: block;
    max-width: 1200px;
  }
}
@media (min-width: 81.25em) {
  .alert {
    padding: 1rem 4rem;
  }
}
.alert a {
  color: #fff;
  display: block;
}
.alert:hover {
  background: #00c1de;
}
.alert:hover .close svg {
  fill: #00c1de;
}
.alert.reveal {
  opacity: 1;
}
.alert h1 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}
@media (min-width: 48em) {
  .alert h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    padding-right: 1rem;
  }
}
.alert p {
  margin-bottom: 1rem;
  vertical-align: middle;
  text-align: center;
}
@media (min-width: 81.25em) {
  .alert p {
    font-size: 1.2rem;
  }
}
@media (min-width: 100em) {
  .alert p {
    font-size: 1.3rem;
  }
}
@media (min-width: 112.5em) {
  .alert p {
    font-size: 1.4rem;
  }
}
.alert p em {
  display: table;
  padding: 0.1rem 0.2rem;
  margin-top: 0.2rem;
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.2);
  font-style: italic;
}
.alert .buttons {
  margin-top: 0.75rem;
  display: block;
}
.alert .buttons span, .alert .buttons a {
  border-color: #fff;
  color: #fff;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  display: inline-block;
  margin-top: 0;
}
.alert .buttons span:hover, .alert .buttons a:hover {
  background: #fff;
  color: #00c1de;
}
.alert .close {
  background: #fff;
  border-radius: 50%;
  width: 1.4rem;
  height: 1.4rem;
  padding: 0.35rem;
  position: absolute;
  right: 0.25rem;
  top: 0.25rem;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media (min-width: 48em) {
  .alert .close {
    width: 1.75rem;
    height: 1.75rem;
    padding: 0.5rem;
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.alert .close svg {
  width: 100%;
  height: auto;
  fill: #ff4d00;
  -webkit-transition: fill 0.2s ease-in-out;
  transition: fill 0.2s ease-in-out;
}
.alert .close:hover {
  background: #510c76;
}
.alert .close:hover svg {
  fill: #fff;
}

.hero {
  height: 75vh;
  margin-bottom: 2em;
  position: relative;
  z-index: 100;
}
@media only screen and (max-width : 58.875rem) {
  .hero {
    background: #510c76;
  }
}
@media (min-width: 48em) {
  .hero {
    max-height: 450px;
  }
}
@media (min-width: 81.25em) {
  .hero {
    max-height: none;
  }
}
.hero .photo {
  background-repeat: no-repeat;
  background-position: -7rem top;
  background-size: auto 75%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
@media (min-width: 48em) {
  .hero .photo {
    background-position: left top;
    background-size: auto 100%;
  }
}
@media (min-width: 81.25em) {
  .hero .photo {
    background-size: cover;
  }
}
.hero .photo.reveal {
  opacity: 1;
}
.hero picture {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
.hero picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero.reveal picture {
  opacity: 1;
}
.hero .center {
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
}
.hero article {
  padding: 1rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  padding-bottom: 4rem;
  z-index: 100;
}
@media (min-width: 48em) {
  .hero article {
    background: transparent;
    max-width: 775px;
    padding-right: 2.6em;
    padding-bottom: 0;
    margin-left: 46%;
    text-align: left;
    position: relative;
    bottom: auto;
  }
}
@media (min-width: 81.25em) {
  .hero article {
    background: transparent;
    max-width: 775px;
    padding-left: 2em;
    padding-bottom: 0;
    margin-left: 50%;
    text-align: left;
    position: relative;
    bottom: auto;
  }
}
.hero article h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: #ffce06;
  margin-bottom: 0.75rem;
}
@media (min-width: 48em) {
  .hero article h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 81.25em) {
  .hero article h1 {
    font-size: 4.25rem;
  }
}
@media (min-width: 100em) {
  .hero article h1 {
    font-size: 5rem;
  }
}
@media (min-width: 112.5em) {
  .hero article h1 {
    font-size: 6rem;
  }
}
.hero article h1 span {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
}
.hero article h1 .step1 {
  -webkit-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
}
.hero article h1 .step2 {
  -webkit-transition-delay: 0.8s !important;
          transition-delay: 0.8s !important;
}
.hero article h1 .step3 {
  -webkit-transition-delay: 1.2s !important;
          transition-delay: 1.2s !important;
}
.hero article h1 .step4 {
  -webkit-transition-delay: 1.6s !important;
          transition-delay: 1.6s !important;
}
.hero article p {
  font-size: 1rem;
  line-height: 1.3;
  color: #fff;
  opacity: 0;
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  -webkit-transition-delay: 2s !important;
          transition-delay: 2s !important;
}
@media (min-width: 48em) {
  .hero article p {
    font-size: 1rem;
  }
}
@media (min-width: 81.25em) {
  .hero article p {
    font-size: 1.3rem;
  }
}
@media (min-width: 100em) {
  .hero article p {
    font-size: 1.5rem;
  }
}
@media (min-width: 112.5em) {
  .hero article p {
    font-size: 1.6rem;
  }
}
.hero article.reveal h1 span, .hero article.reveal p {
  opacity: 1;
}
.hero .buttons {
  margin-top: 1rem;
  opacity: 0;
  -webkit-transition-delay: 2.6s !important;
          transition-delay: 2.6s !important;
}
.hero .buttons a {
  font-size: 1rem;
  display: inline-block;
  border: 1.5px solid #ffce06;
  color: #ffce06;
  margin-right: 0.15rem;
  margin-top: 0;
  padding: 0.75rem 1rem;
}
@media (min-width: 48em) {
  .hero .buttons a {
    font-size: 1.1rem;
    margin-right: 0.15rem;
  }
}
@media (min-width: 81.25em) {
  .hero .buttons a {
    font-size: 1.3rem;
  }
}
@media (min-width: 100em) {
  .hero .buttons a {
    font-size: 1.5rem;
    margin-right: 0.5rem;
  }
}
@media (min-width: 112.5em) {
  .hero .buttons a {
    font-size: 1.7rem;
    margin-right: 0.75rem;
  }
}
.hero .buttons a:hover {
  background: #ffce06;
  color: #510c76;
}
.hero .reveal .buttons {
  opacity: 1;
}
.hero .sliding-scale-container {
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transition-delay: 2.7s !important;
          transition-delay: 2.7s !important;
  position: relative;
  z-index: 110;
}
.hero .sliding-scale-container .sliding-scale {
  background: #00c1de;
  max-width: 80%;
  color: #fff;
  font-size: 1rem;
  border-radius: 1.5rem;
  white-space: nowrap;
  padding: 0.65rem 0.7rem 0.65rem;
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 110;
  -webkit-transform: translateX(-50%) translateY(50%);
          transform: translateX(-50%) translateY(50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 48em) {
  .hero .sliding-scale-container .sliding-scale {
    font-size: 1.2rem;
    display: table;
    max-width: none;
    border-radius: 1.5rem;
    padding: 0.9rem 1.3rem 0.85rem;
  }
}
@media (min-width: 81.25em) {
  .hero .sliding-scale-container .sliding-scale {
    font-size: 1.4rem;
  }
}
@media (min-width: 100em) {
  .hero .sliding-scale-container .sliding-scale {
    font-size: 1.6rem;
  }
}
@media (min-width: 112.5em) {
  .hero .sliding-scale-container .sliding-scale {
    font-size: 1.8rem;
  }
}
.hero .sliding-scale-container .sliding-scale strong {
  font-size: inherit;
  font-weight: 700;
}
@media only screen and (max-width : 58.875rem) {
  .hero .sliding-scale-container .sliding-scale strong {
    font-size: 1.3rem;
    display: block;
  }
}
@media (min-width: 48em) {
  .hero .sliding-scale-container .sliding-scale strong {
    display: inline-block;
    font-size: inherit;
  }
}
.hero .sliding-scale-container .sliding-scale:hover {
  background: #ff4d00;
  -webkit-box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
}
.hero .shape {
  z-index: 100;
}
.hero .shape.bottom.left {
  width: 3rem;
  height: auto;
  left: -0.5rem;
  bottom: 2.5rem;
}
@media (min-width: 48em) {
  .hero .shape.bottom.left {
    width: 3.5rem;
    left: 1rem;
    bottom: -1rem;
  }
}
@media (min-width: 81.25em) {
  .hero .shape.bottom.left {
    width: 4rem;
  }
}
@media (min-width: 100em) {
  .hero .shape.bottom.left {
    width: 5rem;
  }
}
@media (min-width: 112.5em) {
  .hero .shape.bottom.left {
    width: 6rem;
  }
}
.hero .shape.bottom.left > * {
  -webkit-transition-delay: 0.3s !important;
          transition-delay: 0.3s !important;
}
.hero .shape.top.right {
  width: 1.5rem;
  right: -0.35rem;
  top: 0.5rem;
  fill: #ffce06;
}
@media (min-width: 48em) {
  .hero .shape.top.right {
    width: 1.6rem;
    right: -0.35rem;
    top: 1rem;
  }
}
@media (min-width: 81.25em) {
  .hero .shape.top.right {
    width: 1.8rem;
  }
}
@media (min-width: 100em) {
  .hero .shape.top.right {
    width: 2rem;
  }
}
@media (min-width: 112.5em) {
  .hero .shape.top.right {
    width: 2.2rem;
  }
}
.hero .shape.top.right > * {
  -webkit-transition-delay: 0.6s !important;
          transition-delay: 0.6s !important;
}
.hero .shape > * {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.hero.reveal .sliding-scale-container {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.animate .hero .shape > * {
  opacity: 1;
}

@media (min-width: 48em) {
  .language-es .hero .sliding-scale strong {
    display: block;
  }
}
@media (min-width: 81.25em) {
  .language-es .hero .sliding-scale strong {
    display: inline-block;
  }
}
.language-es .hero h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffce06;
  margin-bottom: 0.75rem;
}
@media (min-width: 48em) {
  .language-es .hero h1 {
    font-size: 2.85rem;
  }
}
@media (min-width: 81.25em) {
  .language-es .hero h1 {
    font-size: 3.25rem;
  }
}
@media (min-width: 100em) {
  .language-es .hero h1 {
    font-size: 3.8rem;
  }
}
@media (min-width: 112.5em) {
  .language-es .hero h1 {
    font-size: 4.5rem;
  }
}

.walkin {
  position: relative;
  z-index: 100;
}
.walkin .pad {
  max-width: 1100px;
  padding: 5em 0;
  position: relative;
}
@media (min-width: 48em) {
  .walkin .pad {
    padding: 5.25em 0;
  }
}
@media (min-width: 81.25em) {
  .walkin .pad {
    padding: 5.5em 0;
  }
}
@media (min-width: 100em) {
  .walkin .pad {
    padding: 6em 0;
  }
}
@media (min-width: 112.5em) {
  .walkin .pad {
    padding: 7em 0;
  }
}
.walkin h2 {
  color: #510c76;
  font-size: 2.5rem;
  line-height: 0.8;
  font-weight: 900;
}
@media (min-width: 48em) {
  .walkin h2 {
    font-size: 3rem;
  }
}
@media (min-width: 81.25em) {
  .walkin h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 100em) {
  .walkin h2 {
    font-size: 4rem;
  }
}
@media (min-width: 112.5em) {
  .walkin h2 {
    font-size: 5rem;
  }
}
.walkin h2 em {
  color: #00c1de;
  font-size: 60%;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
  -webkit-transition-delay: 0.2s !important;
          transition-delay: 0.2s !important;
}
.walkin h2 span {
  display: block;
  -webkit-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
}
.walkin p {
  font-size: 1.2rem;
  line-height: 1.4;
  -webkit-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
}
@media (min-width: 48em) {
  .walkin p {
    font-size: 1.25rem;
    max-width: 700px;
  }
}
@media (min-width: 81.25em) {
  .walkin p {
    font-size: 1.3rem;
    max-width: none;
  }
}
@media (min-width: 100em) {
  .walkin p {
    font-size: 1.35rem;
  }
}
@media (min-width: 112.5em) {
  .walkin p {
    font-size: 1.4rem;
  }
}
.walkin .buttons {
  -webkit-transition-delay: 0.6s !important;
          transition-delay: 0.6s !important;
}
.walkin .buttons .button {
  border: 1.5px solid #00c1de;
  color: #00c1de;
}
.walkin .buttons .button:hover {
  background: #00c1de;
  color: #fff;
}
.walkin .shape.bottom.left {
  width: 2rem;
  height: auto;
  left: 0;
  bottom: 15%;
}
@media (min-width: 48em) {
  .walkin .shape.bottom.left {
    width: 2.4rem;
    bottom: 30%;
  }
}
@media (min-width: 81.25em) {
  .walkin .shape.bottom.left {
    width: 2.6rem;
  }
}
@media (min-width: 100em) {
  .walkin .shape.bottom.left {
    width: 2.8rem;
  }
}
@media (min-width: 112.5em) {
  .walkin .shape.bottom.left {
    width: 3rem;
  }
}
.walkin .shape.bottom.left > * {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
}
.walkin .shape.top.right {
  width: 1.5rem;
  right: 0;
  top: 15%;
}
@media (min-width: 48em) {
  .walkin .shape.top.right {
    width: 1.8rem;
    top: 20%;
  }
}
@media (min-width: 81.25em) {
  .walkin .shape.top.right {
    width: 1.9rem;
  }
}
@media (min-width: 100em) {
  .walkin .shape.top.right {
    width: 2rem;
  }
}
@media (min-width: 112.5em) {
  .walkin .shape.top.right {
    width: 2.2rem;
  }
}
.walkin .shape.top.right > * {
  -webkit-transition-delay: 1.4s !important;
          transition-delay: 1.4s !important;
}

/* -------- News-------- */
.news {
  position: relative;
  z-index: 100;
}
@media (min-width: 48em) {
  .news {
    padding: 4rem 0 4rem;
  }
}
@media (min-width: 81.25em) {
  .news {
    padding: 6rem 0 6rem;
  }
}
@media (min-width: 100em) {
  .news {
    padding: 8rem 0 8rem;
  }
}
@media (min-width: 112.5em) {
  .news {
    padding: 10rem 0 10rem;
  }
}
.news .grid {
  max-width: 1300px;
  position: relative;
  z-index: 100;
}
@media (min-width: 48em) {
  .news .grid {
    max-width: 1300px;
    -ms-grid-columns: 1fr 4rem 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.news article {
  position: relative;
  margin-bottom: 3em;
}
@media (min-width: 48em) {
  .news article {
    margin-bottom: 0;
  }
  .news article:nth-child(2) {
    top: 3rem;
  }
  .news article.event-item {
    -webkit-transition-delay: 0.5s !important;
            transition-delay: 0.5s !important;
  }
}
.news article header {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  display: block;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 48em) {
  .news article header {
    font-size: 1.2rem;
  }
}
.news article header a {
  background: #510c76;
  color: #ffce06;
  font-size: 0.9rem;
  border-radius: 1.5rem;
  padding: 0.65rem 0.75rem 0.65rem;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.news article header a span {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.news article header a svg {
  width: 0;
  height: 0.6rem;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  stroke: #fff;
  opacity: 0;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.news article header a:hover {
  background: #61a60e;
  padding: 0.65rem 1.15rem 0.65rem 1.3rem;
  -webkit-box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.2);
}
.news article header a:hover svg {
  width: 0.6rem;
  opacity: 1;
}
.news article header a:hover span {
  -webkit-transform: translateX(-0.45rem);
          transform: translateX(-0.45rem);
}
.news article.event-item header a {
  background: #0071ce;
}
.news article.event-item header a:hover {
  background: #61a60e;
}
.news article .aspect-ratio {
  background: #fff;
  position: relative;
  height: 0;
  z-index: 99;
  padding-bottom: 100%;
  -webkit-box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.news article .aspect-ratio:hover {
  -webkit-box-shadow: 0 0 2.3rem 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 2.3rem 0 rgba(0, 0, 0, 0.3);
}
.news article .center {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
  padding: 2em;
}
@media (min-width: 48em) {
  .news article .center {
    padding: 2.2em;
  }
}
@media (min-width: 81.25em) {
  .news article .center {
    padding: 2.6em;
  }
}
@media (min-width: 100em) {
  .news article .center {
    padding: 3em;
  }
}
@media (min-width: 112.5em) {
  .news article .center {
    padding: 4em;
  }
}
.news article a:hover h3 {
  color: #61a60e;
}
.news article h3 {
  font-size: 1.5rem;
  color: #510c76;
  font-weight: 500;
  margin-bottom: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 48em) {
  .news article h3 {
    font-size: 1.4rem;
  }
}
@media (min-width: 81.25em) {
  .news article h3 {
    font-size: 1.6rem;
  }
}
@media (min-width: 100em) {
  .news article h3 {
    font-size: 1.9rem;
  }
}
@media (min-width: 112.5em) {
  .news article h3 {
    font-size: 2.25rem;
  }
}
.news article.event-item h3 {
  color: #0071ce;
}
.news article .wiggle {
  width: 5rem;
  max-height: 1rem;
  fill: #00c1de;
  margin: 0.75rem auto;
}
@media (min-width: 48em) {
  .news article .wiggle {
    margin: 1rem auto;
  }
}
@media (min-width: 48em) {
  .news article .wiggle {
    margin: 1.3rem auto;
  }
}
@media (min-width: 81.25em) {
  .news article .wiggle {
    margin: 1.6rem auto;
  }
}
@media (min-width: 100em) {
  .news article .wiggle {
    margin: 1.8rem auto;
  }
}
@media (min-width: 112.5em) {
  .news article .wiggle {
    margin: 2rem auto;
  }
}
.news article p {
  color: #363636;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0;
}
@media (min-width: 81.25em) {
  .news article p {
    font-size: 1.2rem;
  }
}
@media (min-width: 112.5em) {
  .news article p {
    font-size: 1.3rem;
  }
}
.news article time {
  margin-top: 1em;
  display: block;
  color: #363636;
  font-size: 0.9rem;
}
@media (min-width: 48em) {
  .news article time {
    margin-top: 1.6rem;
    font-size: 1rem;
  }
}
@media (min-width: 81.25em) {
  .news article time {
    margin-top: 2rem;
    font-size: 1.1rem;
  }
}
@media (min-width: 100em) {
  .news article time {
    margin-top: 2.6rem;
    font-size: 1.2rem;
  }
}
@media (min-width: 112.5em) {
  .news article time {
    margin-top: 3rem;
    font-size: 1.3rem;
  }
}
.news article:first-child .shape {
  width: 4rem;
  height: auto;
  right: -0.7rem;
  bottom: -0.7rem;
  fill: #00c1de;
}
@media (min-width: 48em) {
  .news article:first-child .shape {
    width: 4.5rem;
    right: -1.3rem;
    bottom: -1.3rem;
  }
}
@media (min-width: 81.25em) {
  .news article:first-child .shape {
    width: 6rem;
  }
}
@media (min-width: 100em) {
  .news article:first-child .shape {
    width: 7rem;
  }
}
@media (min-width: 112.5em) {
  .news article:first-child .shape {
    width: 8rem;
  }
}
.news article:first-child .shape > * {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
}
.news article:last-child .shape {
  width: 4rem;
  left: -0.5rem;
  bottom: -0.75rem;
  fill: #ffce06;
}
@media (min-width: 48em) {
  .news article:last-child .shape {
    width: 5rem;
    right: -2rem;
    top: -1.5rem;
    bottom: auto;
    left: auto;
  }
}
@media (min-width: 81.25em) {
  .news article:last-child .shape {
    width: 6rem;
  }
}
@media (min-width: 100em) {
  .news article:last-child .shape {
    width: 7rem;
  }
}
@media (min-width: 112.5em) {
  .news article:last-child .shape {
    width: 8rem;
  }
}
.news article:last-child .shape > * {
  -webkit-transition-delay: 0.6s !important;
          transition-delay: 0.6s !important;
}

.square-promo {
  padding: 2em 0;
  position: relative;
  z-index: 200;
}
@media (min-width: 48em) {
  .square-promo {
    max-width: 1300px;
    padding: 2em 0;
  }
}
@media (min-width: 48em) {
  .square-promo .grid {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .square-promo:nth-child(even) .grid {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
  }
  .square-promo:nth-child(even) .grid figcaption {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .square-promo:nth-child(even) .grid figure {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
    -ms-grid-row: 1;
        grid-row-start: 1;
  }
  .square-promo:nth-child(even) .grid .center:before {
    left: auto !important;
    right: 0 !important;
  }
}
@media (min-width: 100em) {
  .square-promo .grid {
    -ms-grid-columns: 60% 40%;
    grid-template-columns: 60% 40%;
  }
  .square-promo:nth-child(even) .grid {
    -ms-grid-columns: 40% 60%;
    grid-template-columns: 40% 60%;
  }
}
.square-promo figure .aspect-ratio {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  -webkit-transition: -webkit-box-shadow 0.6s ease-in-out;
  transition: -webkit-box-shadow 0.6s ease-in-out;
  transition: box-shadow 0.6s ease-in-out;
  transition: box-shadow 0.6s ease-in-out, -webkit-box-shadow 0.6s ease-in-out;
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
  -webkit-box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.3);
}
.square-promo figure .center {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 100;
  overflow: hidden;
}
.square-promo figure .center:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  -webkit-transition: width 0.8s cubic-bezier(0.215, 0.6, 0.35, 1);
  transition: width 0.8s cubic-bezier(0.215, 0.6, 0.35, 1);
}
.square-promo figure .center svg,
.square-promo figure .center img {
  width: 70%;
  height: auto;
  max-height: 15em;
  fill: #fff;
  position: relative;
  z-index: 300;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
  -webkit-transition: opacity 1.2s ease-in-out, -webkit-transform 0.7s cubic-bezier(0.8, 0.5, 0.2, 1.1);
  transition: opacity 1.2s ease-in-out, -webkit-transform 0.7s cubic-bezier(0.8, 0.5, 0.2, 1.1);
  transition: transform 0.7s cubic-bezier(0.8, 0.5, 0.2, 1.1), opacity 1.2s ease-in-out;
  transition: transform 0.7s cubic-bezier(0.8, 0.5, 0.2, 1.1), opacity 1.2s ease-in-out, -webkit-transform 0.7s cubic-bezier(0.8, 0.5, 0.2, 1.1);
}
@media (min-width: 48em) {
  .square-promo figure .center svg,
  .square-promo figure .center img {
    -webkit-transition-delay: 1s !important;
            transition-delay: 1s !important;
  }
}
.square-promo figure .center .photo {
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 200;
  -webkit-transition-delay: 0.6s !important;
          transition-delay: 0.6s !important;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
@media (min-width: 48em) {
  .square-promo figure .center .photo {
    -webkit-transition-delay: 0.8s !important;
            transition-delay: 0.8s !important;
  }
}
.square-promo figure .center address {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 400;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 1rem;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-transition-delay: 0.8s !important;
          transition-delay: 0.8s !important;
  opacity: 1;
}
@media (min-width: 48em) {
  .square-promo figure .center address {
    font-size: 0.9rem;
    -webkit-transition-delay: 1.4s !important;
            transition-delay: 1.4s !important;
  }
}
@media (min-width: 81.25em) {
  .square-promo figure .center address {
    font-size: 1.15rem;
  }
}
@media (min-width: 100em) {
  .square-promo figure .center address {
    font-size: 1.3rem;
  }
}
.square-promo figure .center address .seperator {
  background-color: #ffce06;
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  margin: 0 0.5rem;
  vertical-align: middle;
  position: relative;
  top: -0.1em;
}
@media (min-width: 48em) {
  .square-promo figure .center address .seperator {
    margin: 0 0.75rem;
  }
}
@media (min-width: 81.25em) {
  .square-promo figure .center address .seperator {
    margin: 0 1rem;
  }
}
.square-promo figcaption {
  text-align: center;
  padding: 2em 0;
}
@media (min-width: 48em) {
  .square-promo figcaption {
    text-align: left;
    padding: 2em;
  }
}
.square-promo figcaption span {
  display: block;
}
.square-promo figcaption p {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0;
}
@media (min-width: 48em) {
  .square-promo figcaption p {
    font-size: 1.4rem;
  }
}
@media (min-width: 81.25em) {
  .square-promo figcaption p {
    font-size: 1.8rem;
  }
}
@media (min-width: 100em) {
  .square-promo figcaption p {
    font-size: 2rem;
  }
}
@media (min-width: 112.5em) {
  .square-promo figcaption p {
    font-size: 2.4rem;
  }
}
.square-promo figcaption p strong {
  font-weight: 700;
  color: #510c76;
}
.square-promo figcaption .buttons {
  text-align: center;
}
@media (min-width: 48em) {
  .square-promo figcaption .buttons {
    text-align: left;
  }
}
.square-promo figcaption .buttons a {
  display: inline-block;
  margin-top: 0;
}
.square-promo.blue .aspect-ratio .center:before {
  background-color: #0071ce;
}
.square-promo.blue p strong {
  color: #0071ce;
}
.square-promo.yellow .aspect-ratio .center:before {
  background-color: #ffce06;
}
.square-promo.yellow p strong {
  color: #ffce06;
}
.square-promo.green .aspect-ratio .center:before {
  background-color: #61a60e;
}
.square-promo.green p strong {
  color: #61a60e;
}
.square-promo.light-blue .aspect-ratio .center:before {
  background-color: #00c1de;
}
.square-promo.light-blue p strong {
  color: #00c1de;
}
.square-promo.orange .aspect-ratio .center:before {
  background-color: #ff4d00;
}
.square-promo.orange p strong {
  color: #ff4d00;
}
.square-promo .shape.bottom.left {
  width: 4rem;
  height: auto;
  left: -0.7rem;
  bottom: -0.7rem;
  fill: #ffce06;
}
@media (min-width: 48em) {
  .square-promo .shape.bottom.left {
    width: 5rem;
    left: -1.3rem;
    bottom: -1.3rem;
  }
}
@media (min-width: 81.25em) {
  .square-promo .shape.bottom.left {
    width: 6rem;
  }
}
@media (min-width: 100em) {
  .square-promo .shape.bottom.left {
    width: 7rem;
  }
}
@media (min-width: 112.5em) {
  .square-promo .shape.bottom.left {
    width: 8rem;
  }
}
.square-promo .shape.bottom.left > * {
  -webkit-transition-delay: 0.8s !important;
          transition-delay: 0.8s !important;
}
.square-promo .shape.top.right {
  width: 4rem;
  right: -0.5rem;
  top: -0.7rem;
  fill: #0071ce;
}
@media (min-width: 48em) {
  .square-promo .shape.top.right {
    width: 5rem;
    right: -2rem;
    top: -1.5rem;
  }
}
@media (min-width: 81.25em) {
  .square-promo .shape.top.right {
    width: 6rem;
  }
}
@media (min-width: 100em) {
  .square-promo .shape.top.right {
    width: 7rem;
  }
}
@media (min-width: 112.5em) {
  .square-promo .shape.top.right {
    width: 8rem;
  }
}
.square-promo .shape.top.right > * {
  -webkit-transition-delay: 0.8s !important;
          transition-delay: 0.8s !important;
}
.square-promo:nth-child(odd) .shape.top.right, .square-promo:nth-child(even) .shape.bottom.left {
  display: none;
}

.era {
  margin-bottom: 2rem;
  position: relative;
  z-index: 100;
  min-height: 75vh;
}
@media (min-width: 48em) {
  .era {
    min-height: 50vh;
    margin-bottom: 2rem;
    top: -4rem;
  }
}
@media (min-width: 81.25em) {
  .era {
    min-height: 80vh;
  }
}
.era:before {
  background: #0071ce;
  display: block;
  content: "";
  width: 0%;
  height: 35vh;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
}
@media (min-width: 48em) {
  .era:before {
    height: 100%;
  }
}
.era .mask {
  width: 100%;
  height: 60%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 101;
  overflow: hidden;
}
@media (min-width: 48em) {
  .era .mask {
    height: 100%;
  }
}
.era .mask .photo {
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  width: 100%;
  height: 35vh;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 101;
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
  -webkit-transition: all 1s ease-out;
  transition: all 1s ease-out;
  opacity: 1;
}
@media (min-width: 48em) {
  .era .mask .photo {
    height: 100%;
    background-size: auto 100%;
    background-position: 15% top;
  }
}
@media (min-width: 81.25em) {
  .era .mask .photo {
    background-position: 12% top;
  }
}
@media (min-width: 100em) {
  .era .mask .photo {
    background-position: left top;
  }
}
.era article {
  background: #fff;
  width: 90%;
  padding: 2.25rem 1.5rem 1.5rem;
  z-index: 400;
  position: absolute;
  bottom: 1rem;
  left: 5%;
  -webkit-box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 1.5rem 0 rgba(0, 0, 0, 0.3);
}
@media (min-width: 48em) {
  .era article {
    width: 45%;
    position: absolute;
    right: 5%;
    left: auto;
    bottom: -2em;
    padding: 3rem 1.5rem 2rem;
    -webkit-transition-delay: 1s !important;
            transition-delay: 1s !important;
  }
}
@media (min-width: 81.25em) {
  .era article {
    padding: 4em 3rem 3rem;
  }
}
@media (min-width: 100em) {
  .era article {
    padding: 5em 4rem 4rem;
  }
}
@media (min-width: 112.5em) {
  .era article {
    padding: 6rem 5rem 5rem;
  }
}
.era article .logo, .era article img {
  margin-bottom: 2em;
  display: block;
  width: 80% !important;
  height: auto !important;
}
.era article .logo svg, .era article img svg {
  width: 100%;
}
.era article .blurb {
  font-size: 1.1rem;
  line-height: 1.4;
  display: block;
  margin-bottom: 0;
}
@media (min-width: 48em) {
  .era article .blurb {
    font-size: 1.15rem;
    line-height: 1.5;
    -webkit-transition-delay: 1.2s !important;
            transition-delay: 1.2s !important;
  }
}
@media (min-width: 81.25em) {
  .era article .blurb {
    font-size: 1.4rem;
  }
}
@media (min-width: 100em) {
  .era article .blurb {
    font-size: 1.6rem;
  }
}
@media (min-width: 112.5em) {
  .era article .blurb {
    font-size: 1.8rem;
  }
}
.era article .wiggle {
  width: 8rem;
  max-width: 30%;
  max-height: 1rem;
  fill: #ff4d00;
  margin: 1.3rem auto;
}
@media (min-width: 48em) {
  .era article .wiggle {
    -webkit-transition-delay: 1.4s !important;
            transition-delay: 1.4s !important;
  }
}
@media (min-width: 48em) {
  .era article nav {
    -webkit-transition-delay: 1.6s !important;
            transition-delay: 1.6s !important;
  }
}
.era article nav a {
  font-weight: 700;
  font-size: 0.9rem;
  color: #510c76;
  display: inline-block;
  padding: 0.75rem 1rem;
  position: relative;
}
.era article nav a:hover {
  color: #ff4d00;
}
@media (min-width: 48em) {
  .era article nav a {
    font-size: 1rem;
    padding: 0.75rem 0.8rem;
  }
}
@media (min-width: 81.25em) {
  .era article nav a {
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
  }
}
@media (min-width: 100em) {
  .era article nav a {
    font-size: 1.2rem;
    padding: 0.75rem 1.2rem;
  }
}
@media (min-width: 112.5em) {
  .era article nav a {
    font-size: 1.4rem;
    padding: 0.75rem 2rem;
  }
}
.era article nav a:after {
  background-color: #00c1de;
  content: " ";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateX(50%) translateY(-50%);
          transform: translateX(50%) translateY(-50%);
}
.era article nav a.nobullet:after {
  display: none;
}
.era article.reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.era article.reveal .logo, .era article.reveal img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.era article.reveal .blurb, .era article.reveal .wiggle, .era article.reveal nav {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.era .shape {
  z-index: 300;
}
.era .shape.top.left {
  width: 3rem;
  left: 1rem;
  top: -0.5rem;
}
@media (min-width: 48em) {
  .era .shape.top.left {
    width: 4rem;
    top: 2rem;
    left: -0.5rem;
  }
}
@media (min-width: 81.25em) {
  .era .shape.top.left {
    width: 5rem;
    left: 2rem;
  }
}
@media (min-width: 100em) {
  .era .shape.top.left {
    width: 5.5rem;
  }
}
@media (min-width: 112.5em) {
  .era .shape.top.left {
    width: 6rem;
  }
}
.era .shape.top.left > rect {
  -webkit-transition-delay: 1s !important;
          transition-delay: 1s !important;
}
.era .shape.bottom.right {
  fill: #00c1de;
  width: 4rem;
  height: auto;
  right: -0.5rem;
  bottom: -3rem;
}
@media (min-width: 48em) {
  .era .shape.bottom.right {
    width: 5rem;
    right: 1rem;
    bottom: -4rem;
  }
}
@media (min-width: 81.25em) {
  .era .shape.bottom.right {
    width: 6.5rem;
  }
}
@media (min-width: 100em) {
  .era .shape.bottom.right {
    width: 8rem;
  }
}
@media (min-width: 112.5em) {
  .era .shape.bottom.right {
    width: 9rem;
  }
}
.era .shape.bottom.right > * {
  -webkit-transition-delay: 1.2s !important;
          transition-delay: 1.2s !important;
}

.partners {
  padding: 3rem 2rem 2rem;
}
@media (min-width: 48em) {
  .partners {
    padding: 3rem 2rem 2rem;
  }
}
@media (min-width: 81.25em) {
  .partners {
    padding: 4rem 2rem 2rem;
  }
}
@media (min-width: 100em) {
  .partners {
    padding: 5rem 2rem 3rem;
  }
}
@media (min-width: 112.5em) {
  .partners {
    padding: 6rem 2rem 4rem;
  }
}
.partners h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #510c76;
  text-transform: uppercase;
}
@media (min-width: 48em) {
  .partners h3 {
    font-size: 2.3rem;
  }
}
@media (min-width: 81.25em) {
  .partners h3 {
    font-size: 2.8rem;
  }
}
@media (min-width: 100em) {
  .partners h3 {
    font-size: 3.5rem;
  }
}
@media (min-width: 112.5em) {
  .partners h3 {
    font-size: 4rem;
  }
}
.partners h3 em {
  font-size: 1rem;
  color: #363636;
  text-transform: none;
  display: block;
  font-weight: 400;
}
@media only screen and (min-width : 58.875rem) {
  .partners h3 em {
    font-size: 1.7rem;
  }
}
.partners h3.reveal {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.partners .wiggle {
  width: 6rem;
  max-width: 30%;
  max-height: 1rem;
  fill: var(--yellow);
  margin: 1.5rem auto;
}
@media (min-width: 48em) {
  .partners .wiggle {
    margin: 1.75rem auto;
  }
}
@media (min-width: 112.5em) {
  .partners .wiggle {
    margin: 2rem auto;
  }
}
.partners .partner-logos {
  position: relative;
}
@media only screen and (min-width : 58.875rem) {
  .partners .partner-logos {
    max-width: 1400px;
    padding: 1rem;
  }
}
.partners .partner-logos .logo {
  padding: 1.3rem;
}
@media only screen and (min-width : 58.875rem) {
  .partners .partner-logos .logo {
    padding: 2rem;
  }
}
.partners .partner-logos .logo * {
  width: 100%;
  height: auto !important;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.slide-controls {
  cursor: pointer;
  width: 0.5rem;
  position: absolute;
  top: 50%;
  z-index: 100;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width : 58.875rem) {
  .slide-controls {
    width: 1rem;
  }
}
.slide-controls svg {
  width: 100%;
  fill: #510c76;
  -webkit-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
}
.slide-controls:hover svg {
  fill: #ff4d00;
}
.slide-controls.prev-slide {
  left: -1rem;
}
@media only screen and (min-width : 58.875rem) {
  .slide-controls.prev-slide {
    left: 0;
  }
}
.slide-controls.next-slide {
  right: -1rem;
}
@media only screen and (min-width : 58.875rem) {
  .slide-controls.next-slide {
    right: 0;
  }
}

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

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

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

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

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

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