/* _master.scss */
/* ============ LIBRARIES ============ */
/* _flexbox-grid.scss */
@import url("https://use.typekit.net/pif8wjr.css");
@import url("https://use.typekit.net/pif8wjr.css");
@import url("../../global/CSS/global.css");
.flex-container,
.flex-container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.flex-row {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

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

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

.flex-col-xs,
.flex-col-xs-1,
.flex-col-xs-2,
.flex-col-xs-3,
.flex-col-xs-4,
.flex-col-xs-5,
.flex-col-xs-6,
.flex-col-xs-7,
.flex-col-xs-8,
.flex-col-xs-9,
.flex-col-xs-10,
.flex-col-xs-11,
.flex-col-xs-12 {
  box-sizing: border-box;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.flex-col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  -webkit-flex-basis: 0;
  flex-basis: 0;
  max-width: 100%;
}

.flex-col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  -webkit-flex-basis: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.flex-col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  -webkit-flex-basis: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.flex-col-xs-3 {
  -ms-flex-preferred-size: 25%;
  -webkit-flex-basis: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.flex-col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  -webkit-flex-basis: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.flex-col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  -webkit-flex-basis: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.flex-col-xs-6 {
  -ms-flex-preferred-size: 50%;
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.flex-col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  -webkit-flex-basis: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.flex-col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  -webkit-flex-basis: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.flex-col-xs-9 {
  -ms-flex-preferred-size: 75%;
  -webkit-flex-basis: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.flex-col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  -webkit-flex-basis: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.flex-col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  -webkit-flex-basis: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.flex-col-xs-12 {
  -ms-flex-preferred-size: 100%;
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.flex-col-xs-offset-1 {
  margin-left: 8.333%;
}

.flex-col-xs-offset-2 {
  margin-left: 16.667%;
}

.flex-col-xs-offset-3 {
  margin-left: 25%;
}

.flex-col-xs-offset-4 {
  margin-left: 33.333%;
}

.flex-col-xs-offset-5 {
  margin-left: 41.667%;
}

.flex-col-xs-offset-6 {
  margin-left: 50%;
}

.flex-col-xs-offset-7 {
  margin-left: 58.333%;
}

.flex-col-xs-offset-8 {
  margin-left: 66.667%;
}

.flex-col-xs-offset-9 {
  margin-left: 75%;
}

.flex-col-xs-offset-10 {
  margin-left: 83.333%;
}

.flex-col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}

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

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

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

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

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

.around-xs {
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

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

.first-xs {
  -webkit-order: -1;
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

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

@media only screen and (min-width: 768px) {
  .flex-container {
    width: 750px;
  }
  .flex-col-sm,
  .flex-col-sm-1,
  .flex-col-sm-2,
  .flex-col-sm-3,
  .flex-col-sm-4,
  .flex-col-sm-5,
  .flex-col-sm-6,
  .flex-col-sm-7,
  .flex-col-sm-8,
  .flex-col-sm-9,
  .flex-col-sm-10,
  .flex-col-sm-11,
  .flex-col-sm-12 {
    box-sizing: border-box;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .flex-col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .flex-col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    -webkit-flex-basis: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .flex-col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    -webkit-flex-basis: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .flex-col-sm-3 {
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .flex-col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    -webkit-flex-basis: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .flex-col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    -webkit-flex-basis: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .flex-col-sm-6 {
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .flex-col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    -webkit-flex-basis: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .flex-col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    -webkit-flex-basis: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .flex-col-sm-9 {
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .flex-col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    -webkit-flex-basis: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .flex-col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    -webkit-flex-basis: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .flex-col-sm-12 {
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .flex-col-sm-offset-0 {
    margin-left: 0;
  }
  .flex-col-sm-offset-1 {
    margin-left: 8.333%;
  }
  .flex-col-sm-offset-2 {
    margin-left: 16.667%;
  }
  .flex-col-sm-offset-3 {
    margin-left: 25%;
  }
  .flex-col-sm-offset-4 {
    margin-left: 33.333%;
  }
  .flex-col-sm-offset-5 {
    margin-left: 41.667%;
  }
  .flex-col-sm-offset-6 {
    margin-left: 50%;
  }
  .flex-col-sm-offset-7 {
    margin-left: 58.333%;
  }
  .flex-col-sm-offset-8 {
    margin-left: 66.667%;
  }
  .flex-col-sm-offset-9 {
    margin-left: 75%;
  }
  .flex-col-sm-offset-10 {
    margin-left: 83.333%;
  }
  .flex-col-sm-offset-11 {
    margin-left: 91.667%;
  }
  .start-sm {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-sm {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -webkit-order: -1;
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-sm {
    -webkit-order: 1;
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .flex-container {
    width: 970px;
  }
  .flex-col-md,
  .flex-col-md-1,
  .flex-col-md-2,
  .flex-col-md-3,
  .flex-col-md-4,
  .flex-col-md-5,
  .flex-col-md-6,
  .flex-col-md-7,
  .flex-col-md-8,
  .flex-col-md-9,
  .flex-col-md-10,
  .flex-col-md-11,
  .flex-col-md-12 {
    box-sizing: border-box;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .flex-col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .flex-col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    -webkit-flex-basis: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .flex-col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    -webkit-flex-basis: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .flex-col-md-3 {
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .flex-col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    -webkit-flex-basis: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .flex-col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    -webkit-flex-basis: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .flex-col-md-6 {
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .flex-col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    -webkit-flex-basis: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .flex-col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    -webkit-flex-basis: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .flex-col-md-9 {
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .flex-col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    -webkit-flex-basis: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .flex-col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    -webkit-flex-basis: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .flex-col-md-12 {
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .flex-col-md-offset-0 {
    margin-left: 0;
  }
  .flex-col-md-offset-1 {
    margin-left: 8.333%;
  }
  .flex-col-md-offset-2 {
    margin-left: 16.667%;
  }
  .flex-col-md-offset-3 {
    margin-left: 25%;
  }
  .flex-col-md-offset-4 {
    margin-left: 33.333%;
  }
  .flex-col-md-offset-5 {
    margin-left: 41.667%;
  }
  .flex-col-md-offset-6 {
    margin-left: 50%;
  }
  .flex-col-md-offset-7 {
    margin-left: 58.333%;
  }
  .flex-col-md-offset-8 {
    margin-left: 66.667%;
  }
  .flex-col-md-offset-9 {
    margin-left: 75%;
  }
  .flex-col-md-offset-10 {
    margin-left: 83.333%;
  }
  .flex-col-md-offset-11 {
    margin-left: 91.667%;
  }
  .start-md {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-md {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-md {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -webkit-order: -1;
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-md {
    -webkit-order: 1;
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media only screen and (min-width: 1440px) {
  .flex-container {
    width: 1240px;
  }
  .flex-col-lg,
  .flex-col-lg-1,
  .flex-col-lg-2,
  .flex-col-lg-3,
  .flex-col-lg-4,
  .flex-col-lg-5,
  .flex-col-lg-6,
  .flex-col-lg-7,
  .flex-col-lg-8,
  .flex-col-lg-9,
  .flex-col-lg-10,
  .flex-col-lg-11,
  .flex-col-lg-12 {
    box-sizing: border-box;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .flex-col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .flex-col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    -webkit-flex-basis: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .flex-col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    -webkit-flex-basis: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .flex-col-lg-3 {
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .flex-col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    -webkit-flex-basis: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .flex-col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    -webkit-flex-basis: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .flex-col-lg-6 {
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .flex-col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    -webkit-flex-basis: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .flex-col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    -webkit-flex-basis: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .flex-col-lg-9 {
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .flex-col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    -webkit-flex-basis: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .flex-col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    -webkit-flex-basis: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .flex-col-lg-12 {
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .flex-col-lg-offset-0 {
    margin-left: 0;
  }
  .flex-col-lg-offset-1 {
    margin-left: 8.333%;
  }
  .flex-col-lg-offset-2 {
    margin-left: 16.667%;
  }
  .flex-col-lg-offset-3 {
    margin-left: 25%;
  }
  .flex-col-lg-offset-4 {
    margin-left: 33.333%;
  }
  .flex-col-lg-offset-5 {
    margin-left: 41.667%;
  }
  .flex-col-lg-offset-6 {
    margin-left: 50%;
  }
  .flex-col-lg-offset-7 {
    margin-left: 58.333%;
  }
  .flex-col-lg-offset-8 {
    margin-left: 66.667%;
  }
  .flex-col-lg-offset-9 {
    margin-left: 75%;
  }
  .flex-col-lg-offset-10 {
    margin-left: 83.333%;
  }
  .flex-col-lg-offset-11 {
    margin-left: 91.667%;
  }
  .start-lg {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-lg {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -webkit-order: -1;
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-lg {
    -webkit-order: 1;
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
/* ============ BASE ============ */
/* _variables.scss */
/* ============ Colors ============ */
/* ============ Fonts ============ */
/* ============ Breakpoints ============ */
/*
.example {
  width: 100%;

  @include bp-sm {
    width: 50%;
  }
}
*/
/* _reset.scss */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body {
  margin: 0;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.locked {
  overflow: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

img {
  max-width: 100%;
}

*::selection {
  background-color: #EF8D31;
  color: white;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.clearfix::before, .clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}

*:target::before {
  content: "";
  display: block;
  height: 90px;
  margin: -90px 0 0;
}

*:target::before:focus {
  outline: none;
}

*:target:focus {
  outline: none;
}

hr {
  width: 100%;
}

a, a:visited, a:hover, a:focus, input, input:hover {
  transition: all 0.33s ease;
  text-decoration: none;
}

.grecaptcha-badge {
  z-index: 99999;
}

/* _typography.scss */
/* ============ FONTS ============ */
/* ============ TAGS ============ */
h1 {
  font-family: "regulator-nova";
  color: #244173;
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 600;
}

h2 {
  font-family: "regulator-nova";
  color: #244173;
  text-transform: uppercase;
  font-size: 48px;
  font-weight: 600;
}

h3 {
  font-family: "regulator-nova";
  color: #244173;
  text-transform: uppercase;
  font-size: 36px;
  font-weight: 600;
}

h4 {
  font-family: "regulator-nova";
  color: #244173;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
}

h5 {
  font-family: "source-serif-pro", serif;
  color: #244173;
  font-size: 18px;
}

h6 {
  font-family: "source-serif-pro", serif;
  color: #244173;
  font-size: 16px;
}

p {
  font-family: "source-serif-pro", serif;
  color: black;
  font-size: 16px;
  line-height: 2;
}

ul li, ol li {
  font-family: "source-serif-pro", serif;
  font-size: 16px;
  list-style: none;
  padding: 1em 0;
}

a {
  color: #6BA43A;
  font-family: "source-serif-pro", serif;
  font-size: 16px;
  transition: all 0.33s ease-in-out;
}
a:hover {
  color: #244173;
}

.orange-text {
  color: #EF8D31;
}

.dark-blue-text {
  color: #244173;
}

.light-blue-text {
  color: #00B4DE;
}

.pink-text {
  color: #D52B8A;
}

.green-text {
  color: #6BA43A;
}

.gray-text {
  color: #C8C8C8;
}

.orange-background {
  background-color: #EF8D31;
}

.dark-blue-background {
  background-color: #244173;
}

.light-blue-background {
  background-color: #00B4DE;
}

.pink-background {
  background-color: #D52B8A;
}

.green-background {
  background-color: #6BA43A;
}

.gray-background {
  background-color: #C8C8C8;
}

/* _buttons.scss */
.standard-button-orange {
  cursor: pointer;
  color: white;
  letter-spacing: 1px;
  background-color: #EF8D31;
  text-transform: none;
  padding: 1em 3em;
  font-size: 16px;
  font-family: "source-sans-pro", sans-serif;
  margin: 1em;
  position: relative;
  text-decoration: none;
  transition: all 0.33s ease-in-out;
}
.standard-button-orange:after {
  content: "";
  border: 4px solid #EF8D31;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  left: -10px;
  top: -10px;
  transition: all 0.33s ease-in-out;
}
.standard-button-orange:hover {
  color: white !important;
}

.standard-button-navy {
  cursor: pointer;
  color: white;
  letter-spacing: 1px;
  background-color: #244173;
  text-transform: none;
  padding: 1em 3em;
  font-size: 16px;
  font-family: "source-sans-pro", sans-serif;
  margin: 1em;
  position: relative;
  text-decoration: none;
  transition: all 0.33s ease-in-out;
}
.standard-button-navy:after {
  content: "";
  border: 4px solid #244173;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  left: -10px;
  top: -10px;
  transition: all 0.33s ease-in-out;
}
.standard-button-navy:hover {
  color: #244173 !important;
  background-color: white;
}
.standard-button-navy:hover:after {
  border: 10px solid #244173;
}

.button {
  margin: 6em 0;
}
.button a {
  cursor: pointer;
  color: white;
  letter-spacing: 1px;
  background-color: #244173;
  text-transform: none;
  padding: 1em;
  font-size: 16px;
  font-family: "source-sans-pro", sans-serif;
  margin: 1em;
  position: relative;
  text-decoration: none;
  transition: all 0.33s ease-in-out;
}
.button a:after {
  content: "";
  border: 4px solid #244173;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  position: absolute;
  left: -10px;
  top: -10px;
  transition: all 0.33s ease-in-out;
}
.button a:hover {
  color: #244173 !important;
  background-color: white;
}
.button a:hover:after {
  border: 10px solid #244173;
}

/* ============ SITEWRENCH ============ */
/* _alert.scss */
/* _forms.scss */
.formmodule {
  display: block;
  position: relative;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
}
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage {
  animation: tada 1s ease-out 0.3s normal 1;
  background: #4EB75E;
  border-radius: 2px;
  border: 1px solid #419c4f;
  color: #fff !important;
  font-size: 1.6rem;
  margin: 0 0 30px 0;
  overflow: hidden;
  padding-left: 45px !important;
  padding: 8px;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage,
  .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage {
    padding: 12px;
  }
}
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage::before, .formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage::after,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage::before,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage::after {
  background: #fff;
  border-radius: 1px;
  content: "";
  display: block;
  left: 24px;
  position: absolute;
  top: 50%;
}
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage::before,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage::before {
  height: 20px;
  margin: -10px 0 0 0px;
  transform: rotate(42deg);
  width: 4px;
}
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_1_pnlMessage::after,
.formmodule div#ctl00_cphPageBody_public_partctrl_cphPageBody_2_pnlMessage::after {
  height: 10px;
  margin: -1px 0 0 -8px;
  transform: rotate(-47deg);
  width: 4px;
}
.formmodule h3:first-of-type:empty {
  display: none;
}
.formmodule .formmodule-form table, .formmodule .formmodule-form tbody, .formmodule .formmodule-form tr, .formmodule .formmodule-form td {
  display: inline-block;
  width: 100%;
}
.formmodule .formmodule-form table tbody tr.formmodule-row, .formmodule .formmodule-form table tbody tr.formmodule-altrow {
  margin: 0 0 10px 0;
}
@media only screen and (min-width: 1024px) {
  .formmodule .formmodule-form table tbody tr.formmodule-row, .formmodule .formmodule-form table tbody tr.formmodule-altrow {
    margin: 0 0 15px 0;
  }
}
.formmodule .formmodule-form table tbody tr td {
  padding: 0;
}
.formmodule .formmodule-form table tbody tr td span, .formmodule .formmodule-form table tbody tr td label {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: normal;
}
.formmodule .formmodule-form table tbody tr td input[type=text],
.formmodule .formmodule-form table tbody tr td input[type=file],
.formmodule .formmodule-form table tbody tr td textarea {
  background: #fff;
  border-radius: 2px;
  border: 1px solid #dcdcdc;
  color: #222;
  font-size: 1.6rem;
  padding: 4px 8px;
  width: 100%;
}
.formmodule .formmodule-form table tbody tr td input[type=text]:-moz-placeholder, .formmodule .formmodule-form table tbody tr td input[type=text]::-moz-placeholder, .formmodule .formmodule-form table tbody tr td input[type=text]:-ms-input-placeholder, .formmodule .formmodule-form table tbody tr td input[type=text]::-webkit-input-placeholder,
.formmodule .formmodule-form table tbody tr td input[type=file]:-moz-placeholder,
.formmodule .formmodule-form table tbody tr td input[type=file]::-moz-placeholder,
.formmodule .formmodule-form table tbody tr td input[type=file]:-ms-input-placeholder,
.formmodule .formmodule-form table tbody tr td input[type=file]::-webkit-input-placeholder,
.formmodule .formmodule-form table tbody tr td textarea:-moz-placeholder,
.formmodule .formmodule-form table tbody tr td textarea::-moz-placeholder,
.formmodule .formmodule-form table tbody tr td textarea:-ms-input-placeholder,
.formmodule .formmodule-form table tbody tr td textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
@media only screen and (min-width: 1024px) {
  .formmodule .formmodule-form table tbody tr td input[type=text],
  .formmodule .formmodule-form table tbody tr td input[type=file],
  .formmodule .formmodule-form table tbody tr td textarea {
    padding: 8px 12px;
  }
}
.formmodule .formmodule-form table tbody tr td input.formmodule-phone {
  margin: 0 2% 0 0;
  text-align: center;
  width: 32%;
}
.formmodule .formmodule-form table tbody tr td input.formmodule-phone:nth-of-type(3) {
  margin-right: 0;
}
.formmodule .formmodule-form table tbody tr td select,
.formmodule .formmodule-form table tbody tr td input[type=file] {
  clear: both;
  display: block;
}
.formmodule .formmodule-form table tbody tr td input[type=file] {
  background: #f7f7f7;
}
.formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td input[type=checkbox],
.formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td input[type=radio],
.formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td input[type=checkbox],
.formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td input[type=radio] {
  margin: 2px 0;
}
.formmodule .formmodule-form table tbody tr td table.formmodule-checkboxlist tbody tr td label,
.formmodule .formmodule-form table tbody tr td table.formmodule-radiobuttonlist tbody tr td label {
  font-size: 1.4rem;
  margin: 0 0 0 6px;
  padding: 4px 0;
}
.formmodule .formmodule-form table tbody tr td.formmodule-column1 {
  margin: 0;
}
.formmodule .formmodule-form table tbody tr td.formmodule-column2 span[style*="color: red;"] {
  background: #E63A3A;
  border-radius: 2px;
  border: 1px solid #ce2233;
  color: #fff !important;
  font-size: 1.3rem;
  padding: 5px 8px;
  position: relative;
}
.formmodule .formmodule-form table tbody tr td.formmodule-column2 span[style*="color: red;"]::before {
  background: #E63A3A;
  border-left: 1px solid #ce2233;
  border-top-left-radius: 2px;
  border-top: 1px solid #ce2233;
  content: "";
  display: block;
  height: 10px;
  left: 8px;
  position: absolute;
  top: -6px;
  transform: rotate(45deg);
  width: 10px;
}
.formmodule .form-bot-stopper {
  margin: 0 0 15px 0;
}
.formmodule .form-bot-stopper .form-bot-stopper-info {
  font-size: 1.4rem;
}
.formmodule .form-bot-stopper .form-bot-stopper-question {
  font-size: 1.4rem;
}
.formmodule .form-bot-stopper .form-bot-stopper-question input.form-bot-stopper-value {
  background: #fff;
  border-radius: 2px;
  border: 1px solid #dcdcdc;
  color: #222;
  font-size: 1.6rem;
  height: 32px;
  padding: 4px;
  text-align: center;
  width: 40px !important;
}
.formmodule .formmodule-errors {
  margin: 15px 0 0 0;
}
.formmodule .formmodule-errors div {
  animation: shake 1s ease-out 0.3s normal 1;
  background: #e63a3a;
  border-radius: 2px;
  border: 1px solid #ce2233;
  color: #fff !important;
  font-size: 1.4rem;
  padding-left: 38px !important;
  padding: 8px;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .formmodule .formmodule-errors div {
    padding: 12px;
  }
}
.formmodule .formmodule-errors div::before, .formmodule .formmodule-errors div::after {
  background: #fff;
  border-radius: 1px;
  content: "";
  display: block;
  height: 18px;
  left: 18px;
  margin: -9px 0 0 -2px;
  position: absolute;
  top: 50%;
  width: 4px;
}
.formmodule .formmodule-errors div::before {
  transform: rotate(-45deg);
}
.formmodule .formmodule-errors div::after {
  transform: rotate(45deg);
}

/* _photo-gallery.scss */
#lightbox-container-image-box {
  height: auto !important;
  max-width: 90vw;
  min-height: 30vw;
}
#lightbox-container-image-box #lightbox-container-image {
  max-height: 90vh;
}

#lightbox-container-image-data-box {
  max-width: 90vw;
  width: 100% !important;
}
#lightbox-container-image-data-box #lightbox-container-image-data #lightbox-image-details #lightbox-image-details-caption {
  word-break: break-word;
}

/* _tabbed-content.scss */
.nav-tabs-bottom ul.nav-tabs {
  border: 0 none;
  border-top: 1px solid #ddd;
}
.nav-tabs-bottom ul.nav-tabs > li > a {
  border-radius: 0 0 4px 4px;
  margin-top: -1px;
}
.nav-tabs-bottom ul.nav-tabs > li.active > a {
  border: 1px solid #ddd;
  border-top-color: transparent;
}

@media only screen and (min-width: 1440px) {
  .nav-tabs-left {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .nav-tabs-left ul.nav-tabs {
    border-right: 1px solid #ddd;
    border: 0 none;
    display: flex;
    flex-direction: column;
    margin-right: 2%;
    width: 25%;
  }
  .nav-tabs-left ul.nav-tabs > li {
    float: none;
    margin: 0;
  }
  .nav-tabs-left ul.nav-tabs > li > a {
    border-radius: 4px 0 0 4px;
    margin: 0 -1px 0 0;
  }
  .nav-tabs-left ul.nav-tabs > li.active > a {
    border: 1px solid #ddd;
    border-right: transparent;
  }
  .nav-tabs-left div.tab-content {
    width: 70%;
  }
}

@media only screen and (min-width: 1440px) {
  .nav-tabs-right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .nav-tabs-right ul.nav-tabs {
    border-left: 1px solid #ddd;
    border: 0 none;
    display: flex;
    flex-direction: column;
    margin-left: 2%;
    width: 25%;
  }
  .nav-tabs-right ul.nav-tabs > li {
    float: none;
    margin: 0;
  }
  .nav-tabs-right ul.nav-tabs > li > a {
    border-radius: 0 4px 4px 0;
    margin: 0 0 0 -1px;
  }
  .nav-tabs-right ul.nav-tabs > li.active > a {
    border: 1px solid #ddd;
    border-left: transparent;
  }
  .nav-tabs-right div.tab-content {
    width: 70%;
  }
}

.sw-accordion h3.ui-accordion-header {
  background: #eee;
  border-bottom: 2px solid #eee;
  border-radius: 2px !important;
  color: #EF8D31;
  cursor: pointer;
  display: block;
  font-size: 1.8rem;
  margin: 13px 0 0 0;
  outline: 0;
  padding: 16px 48px 16px 16px;
  position: relative;
  transition: all 0.2s ease-out;
}
@media only screen and (min-width: 1024px) {
  .sw-accordion h3.ui-accordion-header {
    font-size: 2rem;
    margin: 16px 0 0 0;
  }
}
@media only screen and (min-width: 1440px) {
  .sw-accordion h3.ui-accordion-header {
    font-size: 2.2rem;
    margin: 18px 0 0 0;
  }
}
.sw-accordion h3.ui-accordion-header:hover {
  border-color: #ccc;
}
.sw-accordion h3.ui-accordion-header .ui-icon {
  background-image: none;
  cursor: pointer;
  display: block;
  height: 32px;
  left: unset;
  margin: -18px 0 0 0;
  position: absolute;
  right: 16px;
  top: 50%;
  transition: all 0.2s ease-out;
  width: 32px;
  z-index: 10;
}
.sw-accordion h3.ui-accordion-header .ui-icon::before, .sw-accordion h3.ui-accordion-header .ui-icon::after {
  background: #333;
  border-radius: 4px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin: -7px 0 0 -1px;
  position: absolute;
  top: 50%;
  transform-origin: center;
  width: 2px;
}
.sw-accordion h3.ui-accordion-header .ui-icon::after {
  transform: rotate(90deg);
}
.sw-accordion h3.ui-accordion-header::after {
  bottom: -2px;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transition: width 0.4s ease-out;
  width: 0;
}
.sw-accordion h3.ui-accordion-header.ui-state-active .ui-icon {
  transform: rotate(-135deg);
}
.sw-accordion h3.ui-accordion-header.ui-state-active::after {
  width: 100%;
}
.sw-accordion .ui-accordion-content {
  background: #fbfbfb;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 1px solid #eee;
  border-top: none;
  display: block;
  padding: 8px;
  width: 100% !important;
}
@media only screen and (min-width: 1024px) {
  .sw-accordion .ui-accordion-content {
    padding: 16px;
  }
}

.portals {
  display: grid;
  grid-gap: 2rem;
  margin: 40px auto;
  max-width: 1400px;
  width: calc(100% - 40px);
}
.portals-item {
  border-radius: 14px;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
  color: #FFF;
}
.portals-item__heading {
  margin: 0 0 auto 0;
}
.portals-item__heading--title {
  margin: 0;
  color: inherit;
}
.portals-item__heading--subtitle {
  margin: 0;
  color: inherit;
}
.portals-item__content {
  margin: 0 0 1em 0;
}
.portals-item__content * {
  color: inherit;
  line-height: 25px;
}
.portals-item__content ul li, .portals-item__content ol li {
  padding: 0.5rem 0;
}
.portals-item__content ul li {
  list-style: disc;
}
.portals-item__content a {
  color: #FFF !important;
  font-size: inherit;
  font-family: inherit;
  text-decoration: underline;
}
.portals-item__cta {
  margin: auto 0 0 0;
  display: flex;
  justify-content: flex-start;
  transition: all 0.22s ease;
  padding: 0;
  position: relative;
  color: #FFF;
  width: 100%;
}
.portals-item__cta img {
  display: inline-block;
  max-width: 15px;
  align-self: center;
  position: absolute;
  left: -100%;
  opacity: 0;
}
.portals-item__cta span {
  font-weight: bold;
}
.portals-item__cta:hover {
  padding-left: 25px;
  color: #FFF;
}
.portals-item__cta:hover img {
  left: 0;
  opacity: 1;
}
.portals-item:hover {
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.3);
}

/* ============ COMPONENTS ============ */
/* _header.scss */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  height: 100px;
  width: 100%;
  z-index: 10000;
  background-color: white;
}
header:after {
  content: "";
  background: #c8c8c8;
  position: absolute;
  bottom: 0;
  left: 2%;
  height: 1px;
  width: 96%;
}
@media only screen and (min-width: 1024px) {
  header {
    height: 185px;
  }
}
header .logo-wrap {
  width: 70%;
}
header .logo-wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4em 0;
}
header .logo-wrap a img {
  width: 100%;
  margin-left: 2em;
  max-height: 75px;
}
@media only screen and (min-width: 1024px) {
  header .logo-wrap a img {
    width: 80%;
    max-height: none;
  }
}
@media only screen and (min-width: 768px) {
  header .logo-wrap {
    width: 40%;
  }
}
header .navigations {
  display: none;
  width: 60%;
}
@media only screen and (min-width: 1024px) {
  header .navigations {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
  }
  header .navigations .flex-nav {
    width: 100%;
    margin: 0 auto;
  }
  header .navigations .flex-nav div {
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1440px) {
  header .navigations .flex-nav {
    width: 80%;
  }
}
header .navigations .utility-nav {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1em;
}
@media only screen and (min-width: 1440px) {
  header .navigations .utility-nav {
    width: 80%;
  }
}
header .navigations .utility-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  width: 80%;
  padding: 0;
}
header .navigations .utility-nav ul li a {
  font-family: "source-sans-pro", sans-serif;
  font-size: 22px;
  color: black;
  transition: all 0.33s ease-in-out;
}
header .navigations .utility-nav ul li a:hover {
  color: #D52B8A;
}
header .navigations .utility-nav ul li input {
  border: 1px solid #244173;
  padding: 0.5em;
  font-family: "source-sans-pro", sans-serif;
  font-size: 16px;
  color: black;
}
header .navigations .utility-nav ul li ::placeholder {
  font-family: "source-sans-pro", sans-serif;
  color: #C8C8C8;
  font-size: 16px;
}
header .navigations .utility-nav ul .search-button {
  position: relative;
  margin-left: 2em;
}
header .navigations .utility-nav ul .search-button:before {
  color: #244173;
  content: "\f002";
  font-size: 20px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 18px;
  left: -35px;
}
@media only screen and (min-width: 1024px) {
  header #sidecar-toggle {
    display: none;
  }
}

@media only screen and (min-width: 1024px) {
  .scrolled {
    height: 100px;
  }
  .scrolled .logo-wrap .logo-link {
    justify-content: flex-start;
  }
  .scrolled .logo-wrap .logo-link .logo {
    width: 55%;
  }
  .scrolled .navigations .utility-nav {
    display: none;
  }
  .scrolled .navigations .flex-nav {
    width: 95%;
  }
}

/* _flex-nav.scss */
nav.flex-nav {
  display: none;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 1em;
}
@media only screen and (min-width: 1024px) {
  nav.flex-nav {
    display: flex;
  }
}
nav.flex-nav ul#mainnav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.flex-nav ul#mainnav li {
  flex: 0 1 auto;
  padding: 1em;
}
nav.flex-nav ul#mainnav li a {
  display: flex;
  font-family: "regulator-nova";
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 600;
  color: #244173;
  transition: all 0.33s ease-in-out;
}
nav.flex-nav ul#mainnav li a:after {
  color: #D52B8A;
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-size: 22px;
  font-weight: 600;
  position: relative;
  left: 10px;
  top: 2px;
}
nav.flex-nav ul#mainnav li ul {
  display: none;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 2000;
  min-width: 250px;
  background-color: white;
  border-top: 6px solid #D52B8A;
  border-left: 6px solid #D52B8A;
  min-height: 150px;
  margin-top: 1em;
}
nav.flex-nav ul#mainnav li ul > li {
  display: block;
  position: relative;
  white-space: nowrap;
  padding: 0;
  z-index: 999;
  transition: all 0.33s ease-in-out;
}
nav.flex-nav ul#mainnav li ul > li a {
  background: white;
  color: #244173;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 16px;
  font-family: "source-sans-pro", sans-serif;
  text-transform: none;
  display: block;
  padding: 8px 12px;
  width: 100%;
  transition: all 0.33s ease-in-out;
}
nav.flex-nav ul#mainnav li ul > li a:after {
  content: "";
}
nav.flex-nav ul#mainnav li ul > li a:hover {
  background: #eeeeee;
}
nav.flex-nav ul#mainnav li ul > li ul {
  left: 100%;
  top: 0;
}
nav.flex-nav ul#mainnav a {
  text-decoration: none;
}
nav.flex-nav ul#mainnav > li:hover > ul,
nav.flex-nav ul#mainnav > li > ul > li:hover > ul {
  display: flex;
}

/* _sidecar.scss */
#siteWrapper {
  background-color: white;
  min-height: 100vh;
  position: relative;
}

.body-overlay {
  background: black;
  cursor: col-resize;
  display: block;
  height: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition-delay: 0.44s !important;
  transition: opacity 0.55s ease;
  visibility: hidden;
  width: 0;
  z-index: -100;
}
.body-overlay.active {
  height: 100%;
  opacity: 0.6;
  transition-delay: 0.2s !important;
  transition: opacity 0.55s ease;
  visibility: visible;
  width: 100%;
  z-index: 100;
}

#sidecar-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "source-sans-pro", sans-serif;
  border: 3px solid #244173;
  border-radius: 0px;
  padding: 6px;
  right: 2%;
  color: #244173;
  position: relative;
  cursor: pointer;
}
@media only screen and (min-width: 1440px) {
  #sidecar-toggle {
    display: none;
  }
}

/* ============ Sidecar Drawer ============ */
#sidecar {
  background-image: url("/sitefiles/2797/images/sidecar-background.png");
  background-repeat: no-repeat;
  background-position-y: 50px;
  background-position-x: 50%;
  background-size: cover;
  background-color: white;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  right: -300px;
  text-align: left;
  top: 0;
  transition: right 0.44s ease;
  width: 300px;
  z-index: 99999 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#sidecar .logo-wrap {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 60%;
}
#sidecar #close-sidecar {
  background: url("/sitefiles/2797/images/ui/catalina-close.png");
  background-repeat: no-repeat;
  background-position: center;
  font: bold 1.6rem sans-serif;
  padding: 16px;
  position: absolute;
  top: 16px;
  right: 16px;
  transition: all 0.33s ease-in-out;
}
#sidecar #close-sidecar::after {
  content: "";
  height: 16px;
  pointer-events: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
}
#sidecar ul#mainnav {
  right: 0px;
}
#sidecar .search-button {
  margin-top: 250px;
  width: 90%;
}
#sidecar .search-button input {
  border: 1px solid #244173;
  padding: 13px;
  font-family: "source-sans-pro", sans-serif;
  font-size: 16px;
  color: black;
  width: 70%;
}
#sidecar .search-button ::placeholder {
  font-family: "source-sans-pro", sans-serif;
  color: #C8C8C8;
  font-size: 16px;
}
#sidecar .search-button button {
  font-weight: 600;
  padding: 11px;
  font-size: 16px;
  border: 3px solid white;
  background-color: #244173;
  color: white;
  font-family: "regulator-nova";
  width: 28%;
}
#sidecar .utility-nav {
  width: 100%;
}
#sidecar .utility-nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  width: 100%;
  padding: 0;
  transition: all 0.33s ease-in-out;
}
#sidecar .utility-nav ul li a {
  font-family: "source-sans-pro", sans-serif;
  font-size: 16px;
  color: white;
}
#sidecar .utility-nav ul li:hover a {
  color: #D52B8A;
}
#sidecar .social-icons {
  display: flex;
  width: 90%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}
#sidecar .social-icons a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#sidecar .social-icons a:before {
  content: "";
  position: absolute;
  top: 120%;
  left: 0;
  width: 0%;
  height: 3px;
  transition: all 0.33s ease;
  background-color: #d52b8a;
}
#sidecar .social-icons a:hover:before {
  width: 100%;
}
#sidecar .social-icons a:hover img {
  animation: bounce 1.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

#sidecar.slide-right {
  left: inherit;
  opacity: 1;
  right: -300px;
  transition: transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out;
}
#sidecar.slide-right.active {
  box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.3);
  opacity: 1;
  right: 0;
  transition: all 0.44s ease;
}
#sidecar.slide-right.active ul#mainnav li a {
  margin-left: 0px;
  opacity: 1;
}

/* ============ Sidecar Menu ============ */
nav#sidecar ul#mainnav {
  -webkit-padding-start: 0px;
  background: transparent;
  display: block;
  height: auto;
  margin: 25px 0 40px;
  position: relative;
  width: 100%;
}
nav#sidecar ul#mainnav #mn-home {
  display: none;
}
nav#sidecar ul#mainnav li {
  background: transparent;
  display: block;
  float: none;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}
nav#sidecar ul#mainnav li:nth-child(1) a {
  transition-delay: 0.05s !important;
}
nav#sidecar ul#mainnav li:nth-child(2) a {
  transition-delay: 0.1s !important;
}
nav#sidecar ul#mainnav li:nth-child(3) a {
  transition-delay: 0.15s !important;
}
nav#sidecar ul#mainnav li:nth-child(4) a {
  transition-delay: 0.2s !important;
}
nav#sidecar ul#mainnav li:nth-child(5) a {
  transition-delay: 0.25s !important;
}
nav#sidecar ul#mainnav li:nth-child(6) a {
  transition-delay: 0.3s !important;
}
nav#sidecar ul#mainnav li:nth-child(7) a {
  transition-delay: 0.35s !important;
}
nav#sidecar ul#mainnav li:nth-child(8) a {
  transition-delay: 0.4s !important;
}
nav#sidecar ul#mainnav li:nth-child(9) a {
  transition-delay: 0.45s !important;
}
nav#sidecar ul#mainnav li ul {
  background: rgba(0, 0, 0, 0.2);
  display: block;
  float: none;
  margin: 0;
  max-height: 0px;
  overflow: hidden;
  padding: 0 0 0 0px;
  position: relative;
  transition: max-height 0.25s ease-in;
}
nav#sidecar ul#mainnav li ul li a {
  border: none;
  font-family: "regulator-nova";
  font-size: 16px;
  padding: 8px 0px 8px 16px;
  color: white;
}
nav#sidecar ul#mainnav li ul.active {
  display: block;
  float: none;
  max-height: 500px;
  transition: max-height 0.44s ease-in;
}
nav#sidecar ul#mainnav li a {
  display: inline-block;
  font-family: "regulator-nova";
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 16px;
  color: white;
  height: auto;
  opacity: 0;
  padding: 8px 16px;
  position: relative;
  transition: all 0.33s ease;
  width: 100%;
}
nav#sidecar ul#mainnav li a.expand {
  background: url("/sitefiles/2797/images/ui/expand-sidecar.png") center/50% no-repeat;
  cursor: pointer;
  display: block;
  height: 20px;
  padding: 16px;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
nav#sidecar ul#mainnav li a.expand.active {
  transform: rotate(180deg);
}

/* _footer.scss */
footer .footer-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  margin-top: 4em;
}
@media only screen and (min-width: 1024px) {
  footer .footer-content {
    flex-direction: row;
    width: 90%;
    border-top: 1px solid #C8C8C8;
    padding-top: 35px;
  }
}
footer .footer-content .mc-newsletter {
  border: none;
  height: 280px;
  padding: 2em 0;
  border-top: 1px solid #c8c8c8;
}
@media only screen and (min-width: 1024px) {
  footer .footer-content .mc-newsletter {
    border-top: none;
    width: 35%;
    margin-right: 5%;
  }
}
footer .footer-content .footer-resources {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #c8c8c8;
}
footer .footer-content .footer-resources ul {
  padding: 0;
  margin: 0px;
}
footer .footer-content .footer-resources ul li {
  padding: 0;
  padding-bottom: 2em;
}
@media only screen and (min-width: 1024px) {
  footer .footer-content .footer-resources {
    width: 25%;
    border-left: 1px solid #c8c8c8;
    align-items: center;
    border-top: none;
  }
}
footer .footer-content .footer-connected {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #c8c8c8;
}
footer .footer-content .footer-connected .social-icons {
  display: flex;
  width: 100%;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
}
footer .footer-content .footer-connected .social-icons a {
  position: relative;
}
footer .footer-content .footer-connected .social-icons a:before {
  content: "";
  position: absolute;
  top: 110%;
  left: 0;
  width: 0%;
  height: 3px;
  transition: all 0.33s ease;
  background-color: #d52b8a;
}
footer .footer-content .footer-connected .social-icons a:hover:before {
  width: 100%;
}
footer .footer-content .footer-connected .social-icons a:hover img {
  animation: bounce 1.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}
@media only screen and (min-width: 1024px) {
  footer .footer-content .footer-connected {
    width: 35%;
    border-left: 1px solid #c8c8c8;
    border-top: none;
  }
  footer .footer-content .footer-connected h4 {
    margin-left: 1em;
  }
  footer .footer-content .footer-connected .social-icons {
    width: 90%;
  }
}
footer .site-map {
  text-align: center;
  padding: 4em 0;
}
footer .site-map a {
  font-size: 12px;
}

#mc_embed_signup {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  #mc_embed_signup {
    width: 40%;
    border-top: none;
    margin: 2.3em 1em 0 1em;
  }
}
#mc_embed_signup #mc_embed_signup_scroll {
  height: 100%;
}
@media only screen and (min-width: 1024px) {
  #mc_embed_signup #mc_embed_signup_scroll {
    padding: 0;
  }
}
#mc_embed_signup #mc_embed_signup_scroll label {
  font-family: "regulator-nova" !important;
  font-size: 24px;
  font-weight: 600;
  color: #244173;
  text-transform: uppercase;
}
#mc_embed_signup #mc_embed_signup_scroll .email {
  width: 100%;
  border: 1px solid #244173;
  border-radius: 0px;
  padding: 12px;
  margin: 1.5em 0;
}
@media only screen and (min-width: 1024px) {
  #mc_embed_signup #mc_embed_signup_scroll .email {
    width: 85%;
  }
}
#mc_embed_signup #mc_embed_signup_scroll .email::placeholder {
  text-transform: capitalize;
  color: #C8C8C8;
}
#mc_embed_signup #mc_embed_signup_scroll .clear {
  width: 100%;
}
#mc_embed_signup #mc_embed_signup_scroll .clear .button {
  background-color: #244173;
  font-family: "source-sans-pro", sans-serif;
  font-size: 14px;
  padding: 5px;
  border-radius: 0px;
  outline: 5px solid #244173;
  outline-offset: 5px;
  margin: 2em 0.65em;
  height: auto;
}
#mc_embed_signup #mc_embed_signup_scroll .clear .button:hover {
  background-color: white;
  color: #244173;
  outline: 10px solid #244173;
}

/* _gdpr.scss */
#gdpr-bar {
  background: black;
  color: white;
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  transition: transform 0.25s ease;
  width: 100vw;
  z-index: 101;
}
#gdpr-bar.active {
  transform: translate(0, 0);
}
#gdpr-bar p, #gdpr-bar a {
  color: white;
}
/* ============ HELPERS ============ */
/* _mixins.scss */
/* ============ Pseudo Element Overlay ============ */
.shade {
  position: relative;
}
.shade::before {
  background: black;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.5;
  position: absolute;
  top: 0;
  transition: opacity 0.25s ease;
  width: 100%;
  z-index: 0;
}

/* ============ BG Images ============ */
.bg-image,
.bg-image-js {
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ============ Paddding Adjustments ============ */
.no-border {
  border: 0;
}

.no-padding {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.cushion-sm {
  padding: 2%;
}

.cushion-md {
  padding: 5%;
}

.cushion-lg {
  padding: 10%;
}

.cushion-v-sm {
  padding: 2% 0;
}

.cushion-v-md {
  padding: 5% 0;
}

.cushion-v-lg {
  padding: 10% 0;
}

.cushion-h-sm {
  padding: 0 2%;
}

.cushion-h-md {
  padding: 0 5%;
}

.cushion-h-lg {
  padding: 0 10%;
}

.white {
  color: white !important;
}

/* ============ Alignment ============ */
.center {
  text-align: center;
}

.centered {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.v-centered {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.h-centered {
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.flex-center {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

/* ============ Transitions ============ */
.transition-cubic {
  transition: all 0.55s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.transition-fast {
  transition: all 0.2s ease;
}

.transition {
  transition: all 0.5s ease;
}

.transition-slow {
  transition: all 1s ease;
}

.transition-bounce {
  transition: all 0.3s cubic-bezier(0.33, 2, 0.8, 1);
}

.easeInOutBack {
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============ Animation delays ============ */
.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.delay-6 {
  animation-delay: 0.6s;
}

/* _helpers.scss */
/* ============ Responsive Embed Wrapper ============ */
.embed-container {
  height: 0;
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  border: none;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* ============ PAGES ============ */
/* _home.scss */
@media only screen and (min-width: 1024px) {
  #home-hero {
    margin-top: 20em;
  }
}

.mobile-video {
  top: 20%;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  height: calc(100vh + 250px);
}
@media only screen and (min-width: 1024px) {
  .mobile-video {
    display: none;
  }
}

.desktop-video {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .desktop-video {
    display: block;
    max-height: 800px;
    min-height: 600px;
  }
}

.video-container {
  height: 100vh;
}
.video-container .embed-container {
  height: calc(100vh + 75px);
}
@media only screen and (min-width: 1024px) {
  .video-container .embed-container {
    max-height: 1000px;
    min-height: 1000px;
  }
}

.hero {
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  position: relative;
  width: 100%;
  height: calc(100vh + 450px);
  margin-top: 100px;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .hero {
    height: 100vh;
    margin-top: 0px;
    max-height: 800px;
    min-height: 600px;
  }
}
.hero:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.3);
}
.hero #open_close {
  font-family: "source-sans-pro", sans-serif;
  text-transform: capitalize;
  font-size: 24px;
  color: white;
  background: transparent;
  padding: 2em 1em;
}
.hero #open_close:before {
  color: white;
  content: "\f017";
  font-size: 25px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  position: relative;
  top: 2px;
  left: -10px;
}
.hero .featured-exhibit {
  position: absolute;
  top: 0px;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .hero .featured-exhibit {
    flex-direction: row;
  }
}
.hero .featured-exhibit .featured-exhibit-title {
  background-color: white;
  text-transform: uppercase;
  font-weight: 100;
  width: 100%;
  margin: 0;
  padding: 1em;
  display: flex;
  justify-content: center;
  align-content: center;
  position: relative;
  animation: slideInLeft 1s;
}
@media only screen and (min-width: 1024px) {
  .hero .featured-exhibit .featured-exhibit-title {
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .hero .featured-exhibit .featured-exhibit-title:after {
    content: url("/sitefiles/2797/images/orange-border.svg");
    position: absolute;
    bottom: -30px;
    right: 20px;
  }
}
.hero .featured-exhibit .featured-exhibit-title h2 {
  font-weight: 500;
  letter-spacing: 1px;
}
@media only screen and (min-width: 1024px) {
  .hero .featured-exhibit .featured-exhibit-title h2 {
    width: 90%;
  }
}
.hero .featured-exhibit .featured-exhibit-description {
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .hero .featured-exhibit .featured-exhibit-description {
    width: 50%;
  }
}
.hero .featured-exhibit .featured-exhibit-description .content {
  background: white;
  width: 100%;
  padding: 1em;
  animation: slideInRight 1s;
}
.hero .featured-exhibit .featured-exhibit-description .content p {
  width: 90%;
}
.hero .featured-exhibit .featured-exhibit-description .content a {
  display: inline-block;
  text-align: right;
  width: 90%;
  color: #244173;
  font-size: 16px;
  padding: 1em;
  transition: all 0.33s ease-in-out;
  font-family: "source-sans-pro", sans-serif;
}
.hero .featured-exhibit .featured-exhibit-description .content a:after {
  color: #00B4DE;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 17px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}
.hero .featured-exhibit .featured-exhibit-description .content a:hover {
  color: #00B4DE;
}
.hero .featured-exhibit .featured-exhibit-description .content a:hover:after {
  transform: translateX(10px);
}
.hero .featured-exhibit .featured-exhibit-description .content:after {
  content: url("/sitefiles/2797/images/orange-border.svg");
  position: absolute;
  bottom: 100px;
  right: 20px;
}
@media only screen and (min-width: 1024px) {
  .hero .featured-exhibit .featured-exhibit-description .content:after {
    content: "";
  }
}
.hero .hero-section {
  position: absolute;
  bottom: 200px;
  right: 25px;
  text-transform: uppercase;
  font-size: 24px;
  text-align: right;
}
@media only screen and (min-width: 1024px) {
  .hero .hero-section {
    right: 50px;
    bottom: 100px;
    text-align: center;
  }
}
.hero .hero-section .hero-title {
  color: white !important;
  width: 95%;
}
@media only screen and (min-width: 1024px) {
  .hero .hero-section .hero-title {
    width: 100%;
  }
}

.about {
  background-color: #f0f0f0;
  position: relative;
  z-index: 20;
  margin-top: -1em;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .about {
    flex-direction: row;
  }
}
.about .featured-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about .featured-image:before {
  content: "";
  width: 6px;
  height: 450px;
  background-color: #6BA43A;
  top: -8%;
  left: 10%;
  z-index: 40;
  position: absolute;
}
@media only screen and (min-width: 768px) {
  .about .featured-image:before {
    top: -11%;
  }
}
@media only screen and (min-width: 1024px) {
  .about .featured-image:before {
    top: -13%;
    left: 3%;
  }
}
.about .featured-image:after {
  content: "";
  width: 400px;
  height: 6px;
  background-color: #6BA43A;
  top: -8%;
  left: 10%;
  z-index: 40;
  position: absolute;
}
@media only screen and (min-width: 768px) {
  .about .featured-image:after {
    top: -11%;
  }
}
@media only screen and (min-width: 1024px) {
  .about .featured-image:after {
    top: -13%;
    left: 3%;
  }
}
@media only screen and (min-width: 1024px) {
  .about .featured-image {
    width: 50%;
    position: relative;
  }
}
.about .featured-image .photo-mask {
  position: relative;
  top: -100px;
  width: 90%;
  height: 600px;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  overflow: hidden;
  border-radius: 2px;
}
.about .about-intro {
  width: 100%;
  padding: 0 3em;
  margin-top: -3em;
  margin-bottom: 5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about .about-intro .button-container {
  margin: 5em 0;
}
@media only screen and (min-width: 768px) {
  .about .about-intro .button-container {
    float: right;
    text-align: right;
    margin: 5em 0;
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .about .about-intro {
    width: 50%;
    padding: 3em;
    margin: 0;
  }
}

.section-title {
  width: 80%;
  margin: 0 auto;
  margin-top: 8em;
}

.section-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6em;
}

.home-upcoming-events {
  border: 4px solid #EF8D31;
  width: 90%;
  margin: 0 auto;
  margin-top: 8em;
}

.upcoming-events-heading {
  text-align: center;
}

.wp-block-gallery {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0em !important;
}
.wp-block-gallery li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  height: auto;
  margin: 1em;
}
.wp-block-gallery li .upcoming-events-image {
  float: none;
  margin: 0;
  width: 100%;
}
.wp-block-gallery li .upcoming-events-image img {
  height: 150px;
  width: 100%;
  object-fit: contain;
}
.wp-block-gallery li .upcoming-events-date {
  font-size: 16px;
  color: #6BA43A;
  margin-top: 1em;
  width: 90%;
}
.wp-block-gallery li .upcoming-events-name {
  width: 90%;
  margin: 0;
}
.wp-block-gallery li .upcoming-events-name a {
  font-family: "regulator-nova";
  text-transform: uppercase;
  font-weight: 600;
  margin: 0.5em 0;
  font-size: 22px;
  color: #244173;
  line-height: 1.25;
  position: relative;
  margin: 0;
}
.wp-block-gallery li .upcoming-events-name a:before, .wp-block-gallery li .upcoming-events-name a:after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 0px;
  height: 3px;
  margin: 5px 0 0;
  transition: all 0.44s ease-in-out;
  opacity: 0;
  background-color: #D52B8A;
  left: 0;
}
.wp-block-gallery li .upcoming-events-name a:hover:before, .wp-block-gallery li .upcoming-events-name a:hover:after {
  width: 100%;
  opacity: 1;
}
.wp-block-gallery li .upcoming-events-details {
  width: 90%;
  margin: 0;
}
.wp-block-gallery li .learn-more-link {
  width: 90%;
  text-align: right;
}
.wp-block-gallery li .learn-more-link a {
  text-align: right;
  color: #244173;
  font-size: 16px;
  width: 90%;
  transition: all 0.33s ease-in-out;
  font-family: "source-sans-pro", sans-serif;
}
.wp-block-gallery li .learn-more-link a:after {
  color: #00B4DE;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 17px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}
.wp-block-gallery li .learn-more-link a:hover {
  color: #00B4DE;
}
.wp-block-gallery li .learn-more-link a:hover:after {
  transform: translateX(10px);
}

.tns-outer {
  overflow: hidden;
}

#tns1 > .tns-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tns-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  margin: 2em 0;
}
.tns-controls button {
  border: none;
  background: none;
  height: 50px;
  width: 50px;
  font-size: 3em;
  color: #00B4DE;
}

.tns-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2em 0;
}
.tns-nav button {
  height: 14px;
  width: 10px;
  border-radius: 50px;
  border: 1px solid #00B4DE;
  background: white;
  margin: 0.5em;
}
.tns-nav .tns-nav-active {
  border: none;
  background: #00B4DE;
  width: 14px;
}

@media only screen and (min-width: 768px) {
  .wp-block-gallery {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0em !important;
  }
  .wp-block-gallery li {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    height: 450px;
    margin: 2em;
  }
  .wp-block-gallery li .upcoming-events-image {
    float: none;
    margin: 0;
    width: 100%;
  }
  .wp-block-gallery li .upcoming-events-image img {
    height: 150px;
    width: 100%;
    object-fit: contain;
  }
  .wp-block-gallery li .upcoming-events-date {
    font-size: 16px;
    color: #6BA43A;
    margin-top: 1em;
  }
  .wp-block-gallery li .upcoming-events-name a {
    font-family: "regulator-nova";
    text-transform: uppercase;
    font-weight: 600;
    margin: 0.5em 0;
    font-size: 22px;
    color: #244173;
    line-height: 1.5;
    position: relative;
    margin: 0;
  }
  .wp-block-gallery li .upcoming-events-name a:before, .wp-block-gallery li .upcoming-events-name a:after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 0px;
    height: 3px;
    margin: 5px 0 0;
    transition: all 0.44s ease-in-out;
    opacity: 0;
    background-color: #D52B8A;
    left: 0;
  }
  .wp-block-gallery li .upcoming-events-name a:hover:before, .wp-block-gallery li .upcoming-events-name a:hover:after {
    width: 100%;
    opacity: 1;
  }
  .wp-block-gallery li .learn-more-link a {
    text-align: right;
    color: #244173;
    font-size: 16px;
    width: 90%;
    transition: all 0.33s ease-in-out;
    font-family: "source-sans-pro", sans-serif;
  }
  .wp-block-gallery li .learn-more-link a:after {
    color: #00B4DE;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 17px;
    margin-left: 5px;
    position: relative;
    top: 2px;
  }
  .wp-block-gallery li .learn-more-link a:hover {
    color: #00B4DE;
  }
  .wp-block-gallery li .learn-more-link a:hover:after {
    transform: translateX(10px);
  }
  .tns-outer {
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
    max-width: 1050px;
  }
  .tns-outer .tns-ovh {
    height: 370px;
  }
  .tns-controls {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .tns-controls button {
    border: none;
    background: none;
    height: 50px;
    width: 50px;
    font-size: 3em;
    color: #00B4DE;
  }
}
@media only screen and (min-width: 1024px) {
  #tns1 > .tns-item {
    display: block;
  }
  .tns-controls {
    position: absolute;
    display: flex !important;
    justify-content: space-between !important;
    width: 80%;
    left: 50%;
    margin-top: -7em;
    transform: translate(-50%);
    max-width: 1100px;
  }
  .tns-nav {
    position: absolute;
    margin-top: -5em;
    left: 50%;
    transform: translate(-50%);
  }
  .home-upcoming-events {
    border: none;
    background-image: url("/sitefiles/2797/images/full-border-orange-mobile.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    margin: 0 auto;
    height: 1450px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 6em;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 768px) {
  .home-upcoming-events {
    background-image: url("/sitefiles/2797/images/full-orange-border.svg");
    height: 800px;
    background-size: contain;
    width: 90%;
  }
}
@media only screen and (min-width: 1024px) {
  .wp-block-gallery {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 330%;
    padding: 0 !important;
  }
  .wp-block-gallery li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 350px;
    margin: 2em;
    overflow: scroll;
  }
  .wp-block-gallery li .upcoming-events-image {
    float: none;
    margin: 0;
  }
  .wp-block-gallery li .upcoming-events-image img {
    height: 150px;
    width: 100%;
    object-fit: contain;
  }
  .wp-block-gallery li .upcoming-events-date {
    font-size: 16px;
    color: #6BA43A;
    margin-top: 1em;
  }
  .wp-block-gallery li .upcoming-events-name a {
    font-family: "regulator-nova";
    text-transform: uppercase;
    font-weight: 600;
    margin: 0.5em 0;
    font-size: 22px;
    color: #244173;
    line-height: 1.5;
  }
  .tns-outer {
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
    max-width: 1050px;
  }
  .tns-outer .tns-ovh {
    height: 470px;
  }
}
#home-rent {
  position: relative;
  margin-top: 30em;
}
#home-rent:before {
  content: url("/sitefiles/2797/images/wave-top.svg");
  position: absolute;
  top: -146px;
  width: 100%;
  right: 70px;
  animation: shakeX 15s infinite;
}
#home-rent .rent-museum {
  background-color: #f0f0f0;
  margin-top: -1em;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  #home-rent .rent-museum {
    flex-direction: row;
  }
}
#home-rent .rent-museum .featured-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1;
}
@media only screen and (min-width: 1024px) {
  #home-rent .rent-museum .featured-image {
    width: 50%;
    position: relative;
    order: 2;
  }
}
#home-rent .rent-museum .featured-image .photo-mask {
  position: relative;
  top: -100px;
  width: 90%;
  height: 600px;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  overflow: hidden;
  border-radius: 2px;
}
#home-rent .rent-museum .featured-image .photo-mask:after {
  content: url("/sitefiles/2797/images/green-border.svg");
  position: absolute;
  top: 50px;
  right: 10px;
  transform: rotate(90deg);
}
#home-rent .rent-museum .rent-details {
  width: 100%;
  padding: 0 3em;
  margin-top: -3em;
  margin-bottom: 5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  order: 2;
}
#home-rent .rent-museum .rent-details h3 {
  text-align: left;
  width: 100%;
}
#home-rent .rent-museum .rent-details .button-container {
  margin: 5em 0;
}
@media only screen and (min-width: 768px) {
  #home-rent .rent-museum .rent-details .button-container {
    float: right;
    text-align: right;
    margin: 5em 0;
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  #home-rent .rent-museum .rent-details {
    width: 50%;
    padding: 3em;
    margin: 0;
    order: 1;
  }
}

.social-media-feed .title {
  padding: 1em 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  .social-media-feed .title {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.social-media-feed .title .social-accounts {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (min-width: 1024px) {
  .social-media-feed .title .social-accounts {
    width: 50%;
  }
}
.social-media-feed .title .social-accounts a {
  padding: 6px;
}

.eapps-instagram-feed-container .eapps-instagram-feed-title-container .eui-widget-title {
  display: none !important;
}
.eapps-instagram-feed-container .eapps-instagram-feed-content .eapps-instagram-feed-posts-item-template-tile {
  padding: 5px;
}
@media only screen and (min-width: 1024px) {
  .eapps-instagram-feed-container .eapps-instagram-feed-content .eapps-instagram-feed-posts-item-template-tile {
    padding: 10px;
  }
}

.eapps-instagram-feed-posts-grid-load-more-container {
  display: none !important;
}

/* _default.scss */
#banner {
  display: flex;
  flex-direction: column-reverse;
  margin-top: 100px;
}
@media only screen and (min-width: 1024px) {
  #banner {
    margin-top: 20em;
  }
}
#banner .banner-title {
  text-align: center;
  position: relative;
  width: fit-content;
  margin: 0 auto;
  margin-top: 1em;
  margin-bottom: 1em;
}
#banner .banner-title:before {
  content: "";
  height: calc(100% + 20px);
  width: 4px;
  background-color: orange;
  position: absolute;
  display: block;
  right: -30px;
}
#banner .banner-title:after {
  content: "";
  height: 4px;
  width: 60%;
  background-color: orange;
  position: absolute;
  display: block;
  bottom: -20px;
  right: -30px;
}
#banner .banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.templatecontent {
  margin: 0 auto;
  width: 90%;
}
@media only screen and (min-width: 1024px) {
  .templatecontent {
    width: 80%;
  }
}
.templatecontent ul li {
  list-style: circle;
  font-family: "source-serif-pro", serif;
  font-size: 16px;
  padding: 0em;
}

.swRotator {
  margin-top: 10em;
}
@media only screen and (min-width: 1024px) {
  .swRotator {
    width: 80%;
    margin: 0 auto;
    margin-top: 10em;
  }
}
.swRotator .scrollable .items .item img {
  width: 100%;
  object-fit: contain;
  height: 100%;
}
@media only screen and (min-width: 1024px) {
  .swRotator .scrollable .items .item img {
    width: 100%;
    margin: 0 auto;
  }
}
.swRotator .pager {
  display: none !important;
}
@media only screen and (min-width: 1024px) {
  .swRotator .pager {
    display: flex !important;
    width: 100%;
    justify-content: center;
    padding: 1em;
  }
}
.swRotator .pager a {
  padding: 1em;
}
.swRotator .pager a span img {
  width: 100%;
}
.swRotator .browse {
  font-size: 2.5em;
  color: #495757;
}
@media only screen and (min-width: 1024px) {
  .swRotator .browse {
    display: none !important;
  }
}
.swRotator .right {
  float: right;
  padding-right: 1em;
}
@media only screen and (min-width: 1024px) {
  .swRotator .right {
    display: none !important;
  }
}
.swRotator .left {
  padding: 1em;
}

.sitemap {
  width: 80%;
  margin: 0 auto;
}

.pageSearch {
  width: 80%;
  margin: 0 auto;
}

#ctl00_cphPageBody_pnlNotActive {
  width: 80%;
  margin: 0 auto;
}

/* _sitemap.scss */
.sitemap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap ul li {
  display: block;
}
.sitemap ul > li {
  font: bold 2.4rem serif;
  margin-top: 12px;
}
.sitemap ul > li > ul {
  padding-left: 16px;
}
.sitemap ul > li > ul > li {
  font: bold 2rem sans-serif;
  margin-top: 8px;
}
.sitemap ul > li > ul > li > ul {
  padding-left: 16px;
}
.sitemap ul > li > ul > li > ul > li {
  font: normal 1.6rem sans-serif;
  margin-top: 4px;
}

/* _404.scss */
/* _styleguide.scss */
body.styleguide header {
  top: 0px;
}
body.styleguide main {
  width: 80%;
  margin: 0 auto;
  margin-top: 15em;
}
@media only screen and (min-width: 1024px) {
  body.styleguide main {
    margin-top: 30em;
  }
}
body.styleguide main .row {
  margin: 4em 0;
}
body.styleguide main .row h1 {
  margin: 0;
}

.styleguide-title {
  border-bottom: 3px solid #EF8D31;
  text-align: center;
  margin: 2em 0;
  text-align: center;
}
.styleguide-title h1 {
  margin: 1em 0;
}

.styling-headings {
  display: grid;
  grid-gap: 2em;
}
@media only screen and (min-width: 1024px) {
  .styling-headings {
    grid-template-columns: 1fr 1fr;
  }
}
.styling-headings .heading {
  border: 1px solid #EF8D31;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2em;
}
.styling-headings .heading h1 {
  margin: 1em 0;
  animation: none;
}

.inline-styling {
  display: grid;
  grid-gap: 2em;
}
@media only screen and (min-width: 1024px) {
  .inline-styling {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.inline-styling .span-4 {
  border: 1px solid #EF8D31;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 1em;
}

.styleguide-buttons {
  display: grid;
  grid-gap: 2em;
  margin-bottom: 4em;
}
@media only screen and (min-width: 1024px) {
  .styleguide-buttons {
    grid-template-columns: 1fr 1fr;
  }
}
.styleguide-buttons .buttons {
  border: 1px solid #EF8D31;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 1em;
}

.styleguide-colors {
  display: grid;
  grid-gap: 2em;
  margin-bottom: 4em;
}
@media only screen and (min-width: 1024px) {
  .styleguide-colors {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.styleguide-colors .color {
  padding: 1em;
  height: 100px;
  display: flex;
  border: 1px solid black;
  justify-content: center;
  align-items: center;
}
.styleguide-colors .orange {
  background-color: #EF8D31;
  color: white;
}
.styleguide-colors .dark-blue {
  background-color: #244173;
}
.styleguide-colors .dark-blue h4 {
  color: white;
}
.styleguide-colors .light-blue {
  background-color: #00B4DE;
  color: black;
}
.styleguide-colors .pink {
  background-color: #D52B8A;
  color: white;
}
.styleguide-colors .green {
  background-color: #6BA43A;
}
.styleguide-colors .gray {
  background-color: #C8C8C8;
}

.color-examples {
  margin: 2em 0;
  display: grid;
  grid-gap: 2em;
}
@media only screen and (min-width: 1024px) {
  .color-examples {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.color-examples .color-text {
  border: 1px solid #D52B8A;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  text-align: center;
}

.image-sizing {
  margin-top: 4em;
}

.adding-classes {
  margin-top: 4em;
}
.adding-classes .class-steps {
  display: grid;
  margin-top: 6em;
}
@media only screen and (min-width: 1024px) {
  .adding-classes .class-steps {
    grid-template-columns: 1fr 1fr;
  }
}

.swatch {
  background: var(--color);
  border-radius: 8px;
  display: inline-block;
  height: 80px;
  margin: 0 8px 8px 0;
  text-align: center;
  width: 80px;
}
.swatch::after {
  content: attr(color);
  display: block;
  font: normal 16px monospace;
  margin-bottom: 16px;
  position: relative;
  top: calc(100% + 4px);
}

.about-museum {
  background-color: #f0f0f0;
  padding: 2em 0;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .about-museum {
    flex-direction: row;
  }
}
.about-museum .featured-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 7em;
}
@media only screen and (min-width: 1024px) {
  .about-museum .featured-image {
    width: 50%;
    position: relative;
  }
}
.about-museum .featured-image .photo-mask {
  position: relative;
  width: 90%;
  height: 600px;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  overflow: hidden;
  border-radius: 2px;
}
.about-museum .featured-image .photo-mask:after {
  content: url("/sitefiles/2797/images/green-border.svg");
  position: absolute;
  top: -25px;
  left: -25px;
  transform: scale(0.75);
}
.about-museum .about-details {
  width: 100%;
  padding: 0 3em;
  margin-top: -3em;
  margin-bottom: 5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .about-museum .about-details {
    width: 50%;
    padding: 3em;
    margin: 0;
  }
}
.about-museum .about-details p #pdf {
  color: #6BA43A;
  transition: all 0.33s ease-in-out;
}
.about-museum .about-details p #pdf:before {
  content: url("/sitefiles/2797/images/pdf-symbol.svg");
  position: relative;
  top: 11px;
  left: -10px;
}
.about-museum .about-details p #pdf:hover {
  color: #244173;
}

.full-width-image-content-area {
  margin-top: 8em;
}
@media only screen and (min-width: 1024px) {
  .full-width-image-content-area {
    width: 80%;
    margin: 0 auto;
    margin-top: 8em;
  }
}
.full-width-image-content-area .image-container {
  position: relative;
}
.full-width-image-content-area .image-container:after {
  content: url("/sitefiles/2797/images/orange-border.svg");
  position: absolute;
  bottom: -25px;
  right: 25px;
}
.full-width-image-content-area .image-container img {
  height: 450px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.full-width-image-content-area h3 {
  width: 80%;
  margin: 0 auto;
  margin-top: 2em;
}
@media only screen and (min-width: 1024px) {
  .full-width-image-content-area h3 {
    width: 100%;
  }
}
.full-width-image-content-area .content {
  width: 80%;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  .full-width-image-content-area .content {
    width: 100%;
  }
}
.full-width-image-content-area .content p #pdf {
  color: #6BA43A;
  transition: all 0.33s ease-in-out;
}
.full-width-image-content-area .content p #pdf:before {
  content: url("/sitefiles/2797/images/pdf-symbol.svg");
  position: relative;
  top: 11px;
  left: -10px;
}
.full-width-image-content-area .content p #pdf:hover {
  color: #244173;
}

.side-image-container {
  background-color: #f0f0f0;
  margin-top: -1em;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .side-image-container {
    flex-direction: row;
  }
}
.side-image-container .featured-image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 7em;
}
@media only screen and (min-width: 1024px) {
  .side-image-container .featured-image:before {
    top: -3%;
    content: "";
    width: 6px;
    height: 450px;
    background-color: #6BA43A;
    left: 10%;
    z-index: 40;
    position: absolute;
  }
}
@media only screen and (min-width: 1024px) {
  .side-image-container .featured-image:after {
    top: -3%;
    content: "";
    width: 400px;
    height: 6px;
    background-color: #6BA43A;
    left: 10%;
    z-index: 40;
    position: absolute;
  }
}
@media only screen and (min-width: 1024px) {
  .side-image-container .featured-image {
    width: 50%;
    position: relative;
  }
}
.side-image-container .featured-image .photo-mask {
  position: relative;
  width: 90%;
  height: 600px;
  padding: 1rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  overflow: hidden;
  border-radius: 2px;
}
.side-image-container .featured-image .photo-mask:after {
  content: url("/sitefiles/2797/images/green-border.svg");
  position: absolute;
  top: -25px;
  left: -25px;
  transform: scale(0.75);
}
@media only screen and (min-width: 1024px) {
  .side-image-container .featured-image .photo-mask:after {
    display: none;
  }
}
.side-image-container .description {
  width: 100%;
  padding: 0 3em;
  margin-top: -3em;
  margin-bottom: 5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.side-image-container .description h3 {
  text-align: left;
  width: 100%;
}
.side-image-container .description .button-container {
  margin: 5em 0;
}
@media only screen and (min-width: 768px) {
  .side-image-container .description .button-container {
    float: right;
    text-align: right;
    margin: 5em 0;
    width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .side-image-container .description {
    width: 50%;
    padding: 3em;
    margin: 0;
  }
}

.info-boxes {
  display: grid;
  grid-template-columns: 1fr;
  margin: 4em 0;
  grid-gap: 4em;
  width: 90%;
  margin: 0 auto;
  margin-top: 8em;
}
@media only screen and (min-width: 768px) {
  .info-boxes {
    grid-template-columns: 1fr 1fr;
  }
}
.info-boxes .box {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.info-boxes .box h3 {
  text-align: left;
  width: 100%;
}
.info-boxes .box .button-container {
  margin: 5em 0;
}
@media only screen and (min-width: 768px) {
  .info-boxes .box .button-container {
    float: right;
    text-align: right;
    margin: 5em 0;
    width: 100%;
  }
}
.info-boxes .box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.exhibits {
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 768px) {
  .exhibits {
    grid-template-columns: 1fr 1fr;
  }
}
.exhibits .box {
  position: relative;
  background-color: black;
}
.exhibits .box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.exhibits .box .box-content {
  position: absolute;
  background-color: white;
  bottom: 0px;
  width: 80%;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5em;
}
.exhibits .box .box-content h4 {
  position: relative;
  margin: 0;
}
.exhibits .box .box-content h4:before, .exhibits .box .box-content h4:after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 0px;
  height: 3px;
  margin: 5px 0 0;
  transition: all 0.44s ease-in-out;
  opacity: 0;
  background-color: #EF8D31;
  left: 0;
}
.exhibits .box .box-content h4:hover:before, .exhibits .box .box-content h4:hover:after {
  width: 90%;
  opacity: 1;
}
.exhibits .box .box-content p {
  margin: 0;
  color: #6BA43A;
}

@media only screen and (min-width: 1024px) {
  .box-content {
    height: 0px !important;
    transition: all 0.33s ease-in-out;
  }
  .box-content p {
    display: none;
  }
  .box-content a {
    display: none;
  }
  .box img {
    transition: all 0.33s ease-in-out;
  }
  .box:hover img {
    opacity: 0.5;
  }
  .box:hover .box-content {
    height: 150px !important;
  }
  .box:hover .box-content p {
    display: block;
  }
  .box:hover .box-content a {
    display: block;
  }
}
.current-exhibits {
  margin-top: 8em;
  position: relative;
}
.current-exhibits:before {
  content: url(/sitefiles/2797/images/pink-upper-border.svg);
  position: absolute;
  top: -150px;
  left: -115px;
  z-index: 1;
  transform: scale(0.5);
}
@media only screen and (min-width: 768px) {
  .current-exhibits:before {
    left: -80px;
  }
}
.current-exhibits:after {
  content: url(/sitefiles/2797/images/pink-lower-border.svg);
  position: absolute;
  bottom: -150px;
  right: -115px;
  z-index: 1;
  transform: scale(0.5);
}
@media only screen and (min-width: 768px) {
  .current-exhibits:after {
    right: -80px;
  }
}

.section-title {
  width: 80%;
  margin: 0 auto;
  margin-top: 8em;
}

.exhibit-detail-page h2 {
  width: 80%;
  margin: 0 auto;
  margin-top: 1em;
  margin-bottom: 1em;
  color: #D52B8A;
}
.exhibit-detail-page img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}
.exhibit-detail-page .content {
  width: 80%;
  margin: 0 auto;
  margin-top: 8em;
  margin-bottom: 8em;
}

.CalendarMenu {
  display: flex;
  justify-content: center !important;
  align-items: center;
}
.CalendarMenu .CalendarMenuCenter {
  display: none;
}
@media (min-width: 1000px) {
  .CalendarMenu .CalendarMenuCenter {
    display: flex;
    border-radius: 50px;
    background-color: #00B4DE;
    padding: 0.3em;
  }
  .CalendarMenu .CalendarMenuCenter .CalendarMenu__currentItem {
    border: none;
    background-color: white;
    border: 2px solid white;
    padding: 0.3em;
    border-radius: 26px;
    font-size: 14px;
    color: #D52B8A;
  }
  .CalendarMenu .CalendarMenuCenter .CalendarMenu__currentItem:hover {
    letter-spacing: 1px;
    color: #D52B8A !important;
  }
  .CalendarMenu .CalendarMenuCenter a {
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 0.9em;
    transition: all 0.33s ease-in-out;
    font-family: "regulator-nova";
    font-size: 14px;
  }
  .CalendarMenu .CalendarMenuCenter a:hover {
    letter-spacing: 2px;
    text-decoration: none;
    color: white !important;
  }
}

.CalendarEventsDetail__eventCalendarFront {
  width: 90%;
  margin: 0 auto !important;
  margin-top: 4em !important;
  margin-bottom: 4em !important;
}
.CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter button {
  background-color: #00B4DE !important;
  font-family: "source-sans-pro", sans-serif !important;
  transition: all 0.33s ease-in-out;
  border: none !important;
}
.CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter button:hover {
  background-color: #244173 !important;
}

.swCalEvents {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 5em;
  width: 90%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .swCalEvents {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  .swCalEvents {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.swCalEvents .CalendarListEvent {
  display: flex;
  flex-direction: column;
}
.swCalEvents .CalendarListEvent .CalendarListEvent__header {
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  background-color: white;
}
.swCalEvents .CalendarListEvent .CalendarListEvent__header .CalendarListEvent__header_date {
  display: none;
}
.swCalEvents .CalendarListEvent .CalendarListEvent__header img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
.swCalEvents .CalendarListEvent .CalendarListEvent__content {
  margin: 0;
}
.swCalEvents .CalendarListEvent .CalendarListEvent__content .CalendarListEvent__title {
  font-family: "regulator-nova";
  text-transform: uppercase;
  font-weight: 600;
  margin: 0.5em 0;
  font-size: 22px;
  color: #244173;
}
.swCalEvents .CalendarListEvent .CalendarListEvent__content .CalendarListEvent__date_time {
  font-size: 16px;
  font-family: "source-serif-pro", serif;
}
.swCalEvents .CalendarListEvent .CalendarListEvent__content .CalendarListEvent__date_time .CalendarListEvent__header_date-month {
  color: #6BA43A;
  font-size: 16px;
  margin: 0;
  margin-top: 1em;
}
.swCalEvents .CalendarListEvent .CalendarListEvent__content .CalendarListEvent__description {
  font-family: "source-serif-pro", serif !important;
  font-size: 16px !important;
  color: black !important;
}
.swCalEvents .CalendarListEvent .CalendarListEvent__content .learn-more-link {
  padding-top: 1em;
  text-align: right;
}
.swCalEvents .CalendarListEvent .CalendarListEvent__content .learn-more-link a {
  color: #244173;
  font-size: 16px;
  padding: 1em 0;
  width: 90%;
  transition: all 0.33s ease-in-out;
  font-family: "source-sans-pro", sans-serif;
}
.swCalEvents .CalendarListEvent .CalendarListEvent__content .learn-more-link a:after {
  color: #00B4DE;
  content: "\f105";
  font-size: 17px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  margin-left: 5px;
  position: relative;
  top: 2px;
}
.swCalEvents .CalendarListEvent .CalendarListEvent__content .learn-more-link a:hover {
  color: #00B4DE;
}
.swCalEvents .CalendarListEvent .CalendarListEvent__content .learn-more-link a:hover:after {
  transform: translateX(10px);
}
.swCalEvents .CalendarListFooter {
  grid-column-start: 1;
  font-family: "source-sans-pro", sans-serif;
}
.swCalEvents .CalendarListFooter strong {
  font-family: "source-sans-pro", sans-serif;
}

.detailed-calendar-list {
  grid-column-start: 1;
  grid-column-end: 4;
}
@media only screen and (min-width: 1024px) {
  .detailed-calendar-list .CalendarEvent__details {
    width: 70%;
  }
}
@media only screen and (min-width: 1024px) {
  .detailed-calendar-list .CalendarEvent__meta {
    width: 20%;
  }
}
.detailed-calendar-list .CalendarEvent__meta .CalendarEvent__date_time {
  font-family: "source-serif-pro", serif;
  font-size: 14px;
}
.detailed-calendar-list .CalendarEvent__meta .CalendarEvent__location {
  font-family: "source-serif-pro", serif;
  font-size: 14px;
}
