@charset "UTF-8";
/* ============ LIBRARIES ============ */
/* _flexbox-grid.scss */
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
.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%;
  overflow-x: hidden;
}

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

body.locked {
  overflow: hidden;
}

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

article header {
  display: none;
}

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

img {
  object-fit: cover;
  object-position: center;
}

img,
svg {
  max-width: 100%;
}

a img,
a svg {
  display: block;
}

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

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

.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;
}

.tns-visually-hidden {
  display: none;
}

/* _typography.scss */
/* ============ FONTS ============ */
/* ============ TAGS ============ */
body {
  background-color: #E3E3E3;
}

body,
button,
input,
select,
textarea,
p,
li {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  color: #000000;
}
@media only screen and (min-width: 1024px) {
  body,
  button,
  input,
  select,
  textarea,
  p,
  li {
    font-size: 18px;
    line-height: 32px;
  }
}

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

h1, h2, h3, h4, h6 {
  clear: both;
  overflow-wrap: normal;
  vertical-align: top;
  text-transform: uppercase;
  color: #023C59;
  font-family: "Oswald", serif;
}

h1,
h2,
h3 {
  font-weight: 600;
}

h1 {
  font-size: 60px;
  line-height: 1;
}
@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 90px;
    line-height: 80px;
  }
}

h2 {
  font-size: 52px;
  line-height: 60px;
}
@media only screen and (min-width: 1024px) {
  h2 {
    font-size: 70px;
    line-height: 80px;
  }
}

h3 {
  font-size: 46px;
  line-height: 56px;
}
@media only screen and (min-width: 1024px) {
  h3 {
    font-size: 60px;
    line-height: 64px;
  }
}

h4 {
  font-weight: 300;
  font-size: 40px;
  line-height: 50px;
}
@media only screen and (min-width: 1024px) {
  h4 {
    font-size: 52px;
    line-height: 60px;
  }
}

h5 {
  font-weight: 400;
  font-size: 30px;
  line-height: 34px;
  font-family: "Oswald", serif;
  font-weight: 400;
  color: #000000;
}

h6 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 1.6px;
}
@media only screen and (min-width: 1024px) {
  h6 {
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 1.8px;
  }
}

p {
  margin: 0 0 2rem 0;
}

ul, ol {
  padding: 0 0 0 30px;
}
.page .text-block ul {
  padding: 0;
}
.page .text-block ul li {
  background: url("../inc/assets/icons/menu-list-icon.svg") no-repeat left center;
  padding: 5px 10px 5px 30px;
  list-style: none;
  margin: 0;
  vertical-align: middle;
}

a {
  color: #DB001E;
  transition: all 0.3s ease 0s;
}
a:hover {
  color: black;
}

.button {
  position: relative;
  width: auto;
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  text-align: center;
  background-color: #DB001E;
  cursor: pointer;
  z-index: 1;
  width: fit-content;
  transition: all 0.3s ease 0s;
}

/*-- added class "wpBakeryButton" to fix spacing issues without impacting menu buttons.
 * Corresponding code added to wp-content\themes\source\inc\lib\shortcodes\sc-button.php, GS 11/15/23 --*/

.wpBakeryButton{
    margin: 20px 0px;
}

.button,
.button a {
  font-size: 18px;
  line-height: 24px;
  font-family: "Oswald", serif;
  letter-spacing: 1.8px;
  font-weight: 600;
  text-transform: uppercase;
}
p .button, td .button {
  margin: 1rem 0 0 0;
}
.button, .button a, .button:hover, .button:hover a {
  text-decoration: none;
  color: #FFFFFF;
}
.button:hover {
  background-color: #023C59;
}

.button-white-borders {
  position: relative;
  width: auto;
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  text-align: center;
  background-color: #DB001E;
  cursor: pointer;
  z-index: 1;
  width: fit-content;
  transition: all 0.3s ease 0s;
  background-color: unset;
  border: 2px solid #FFFFFF;
}
.button-white-borders,
.button-white-borders a {
  font-size: 18px;
  line-height: 24px;
  font-family: "Oswald", serif;
  letter-spacing: 1.8px;
  font-weight: 600;
  text-transform: uppercase;
}
p .button-white-borders, td .button-white-borders {
  margin: 1rem 0 0 0;
}
.button-white-borders, .button-white-borders a, .button-white-borders:hover, .button-white-borders:hover a {
  text-decoration: none;
  color: #FFFFFF;
}
.button-white-borders:hover {
  background-color: #023C59;
}
.button-white-borders:hover {
  background-color: #FFFFFF;
  color: #023C59;
}

.button-blue {
  position: relative;
  width: auto;
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  text-align: center;
  background-color: #DB001E;
  cursor: pointer;
  z-index: 1;
  width: fit-content;
  transition: all 0.3s ease 0s;
  background-color: #023C59;
}
.button-blue,
.button-blue a {
  font-size: 18px;
  line-height: 24px;
  font-family: "Oswald", serif;
  letter-spacing: 1.8px;
  font-weight: 600;
  text-transform: uppercase;
}
p .button-blue, td .button-blue {
  margin: 1rem 0 0 0;
}
.button-blue, .button-blue a, .button-blue:hover, .button-blue:hover a {
  text-decoration: none;
  color: #FFFFFF;
}
.button-blue:hover {
  background-color: #023C59;
}
.button-blue:hover {
  background-color: #DB001E;
}

.button-black-borders {
  position: relative;
  width: auto;
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  text-align: center;
  background-color: #DB001E;
  cursor: pointer;
  z-index: 1;
  width: fit-content;
  transition: all 0.3s ease 0s;
  background-color: unset;
  border: 2px solid #000000;
}
.button-black-borders,
.button-black-borders a {
  font-size: 18px;
  line-height: 24px;
  font-family: "Oswald", serif;
  letter-spacing: 1.8px;
  font-weight: 600;
  text-transform: uppercase;
}
p .button-black-borders, td .button-black-borders {
  margin: 1rem 0 0 0;
}
.button-black-borders, .button-black-borders a, .button-black-borders:hover, .button-black-borders:hover a {
  text-decoration: none;
  color: #FFFFFF;
}
.button-black-borders:hover {
  background-color: #023C59;
}
.button-black-borders, .button-black-borders a, .button-black-borders:hover, .button-black-borders:hover a {
  color: #000000;
}
.button-black-borders:hover {
  background-color: #000000;
  color: #FFFFFF;
}

/* ============ COMPONENTS ============ */
#mc_embed_signup_scroll {
  background: white;
  padding: 50px;
}
@media only screen and (min-width: 768px) {
  #mc_embed_signup_scroll {
    padding: 80px;
  }
}
#mc_embed_signup_scroll h2 {
  font-weight: 300;
}
#mc_embed_signup_scroll label {
  color: #DB001E;
  font-family: "Oswald", serif;
  font-weight: 600;
  margin: 0 0 10px;
  text-transform: uppercase;
}
#mc_embed_signup_scroll .mc-field-group {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px;
}
#mc_embed_signup_scroll .mc-field-group input[type=email], #mc_embed_signup_scroll .mc-field-group input[type=text], #mc_embed_signup_scroll .mc-field-group textarea {
  border: 1px solid #023C59;
  padding: 5px;
}
#mc_embed_signup_scroll .clear {
  display: flex;
  justify-content: flex-end;
}
#mc_embed_signup_scroll .clear .button {
  border: none;
  margin: 20px 0 0 0;
  padding: 15px 20px;
}

/* _header.scss */
header {
  background-color: #FFFFFF;
  border-bottom: 3px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 99;
}
header .custom-logo-link {
  position: relative;
  top: 10px;
  display: block;
  width: 150px;
  height: fit-content;
}
header .custom-logo-link img {
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 1024px) {
  header {
    border-bottom: 4px solid #000000;
  }
  header .custom-logo-link {
    width: 200px;
    top: 14px;
  }
}

@keyframes subMenuAppear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.header-menu {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .header-menu {
    display: flex;
    align-items: flex-end;
    gap: 65px;
    position: relative;
  }
  .header-menu > ul {
    padding: unset;
    margin: unset;
    list-style-type: none;
    display: flex;
    align-items: flex-end;
    gap: 65px;
  }
  .header-menu > ul li,
  .header-menu > ul a {
    display: block;
    padding: unset;
    margin: unset;
  }
  .header-menu > ul > li {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 0 0 32px 0;
    max-width: 150px;
  }
  .header-menu > ul > li.current-menu-item > a {
    color: #DB001E;
  }
  .header-menu > ul > li > a {
    font-size: 22px;
    line-height: 32px;
    font-family: "Oswald", serif;
    color: #000000;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    white-space: pre;
  }
  .header-menu > ul > li:hover > a {
    color: #DB001E;
  }
  .header-menu > ul > li:hover ul {
    display: flex;
  }
  .header-menu > ul > li ul {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: absolute;
    top: 60%;
    width: 170px;
    height: fit-content;
    background-color: #DB001E;
    padding: 20px;
    animation: subMenuAppear 0.33s ease;
  }
  .header-menu > ul > li ul li {
    max-width: unset;
    padding: unset;
  }
  .header-menu > ul > li ul li,
  .header-menu > ul > li ul li a {
    display: block;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    font-family: "Oswald", serif;
    font-weight: 400;
    text-transform: unset;
    text-align: center;
  }
  .header-menu > ul > li ul li:hover,
  .header-menu > ul > li ul li a:hover {
    color: white;
  }
  .header-menu__search {
    cursor: pointer;
    display: block;
    width: 18px;
    height: 18px;
    background: url("../inc/assets/icons/search-icon-black.svg") no-repeat center;
    background-size: contain;
    margin: 0 0 38px 0;
    position: absolute;
    right: -70px;
  }
}

.header-ctas {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .header-ctas {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
  }
  .header-ctas ul {
    padding: unset;
    margin: unset;
    list-style-type: none;
    display: flex;
    justify-content: space-between;
  }
  .header-ctas ul li:nth-child(odd) {
    background-color: #023C59;
  }
  .header-ctas ul li:nth-child(odd):hover {
    background-color: #DB001E;
  }
}

.sticky-mobile-menu {
  position: fixed;
  left: 0;
  bottom: -1px;
  width: 100%;
  z-index: 9100;
  display: grid;
  grid-template-columns: auto auto 55px;
  box-shadow: 0 -2.3px 0 0 #000000;
}
.sticky-mobile-menu li,
.sticky-mobile-menu #sidecar-toggle {
  width: 100%;
}
.sticky-mobile-menu li {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: unset;
  padding: 12px 20px;
  border-right: 3px solid #000000;
}
.sticky-mobile-menu li,
.sticky-mobile-menu li a {
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1.4px;
}
.sticky-mobile-menu li:nth-child(odd) {
  background-color: #023C59;
}
.sticky-mobile-menu li:nth-child(odd):hover {
  background-color: #DB001E;
}
@media only screen and (min-width: 1024px) {
  .sticky-mobile-menu {
    display: none;
  }
}

.search-modal {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .search-modal {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    z-index: 99;
    background: #000000;
    padding: 30px;
    transform: translateY(-100%);
    transition: transform 0.33s ease;
  }
  .search-modal__close {
    cursor: pointer;
    display: block;
    position: absolute;
    background: url("../inc/assets/icons/sidecar-icon-black-active.svg") no-repeat center;
    background-size: 20px auto;
    width: 45px;
    height: 45px;
    right: 30px;
    top: calc(50% - 22.5px);
    color: transparent;
  }
  .search-modal form {
    margin: 0 auto;
    max-width: 700px;
    display: grid;
    grid-template-columns: auto 150px;
    column-gap: 12px;
  }
  .search-modal form label {
    display: none;
  }
  .search-modal form input {
    display: block;
    border: unset;
    width: 100% !important;
    height: 45px;
  }
  .search-modal form .field {
    background-color: #FFFFFF;
    font-size: 16px;
    line-height: 20px;
    color: #000000;
    padding: 0 20px;
    font-family: "Montserrat", sans-serif;
  }
  .search-modal form .submit {
    position: relative;
    width: auto;
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    text-align: center;
    background-color: #DB001E;
    cursor: pointer;
    z-index: 1;
    width: fit-content;
    transition: all 0.3s ease 0s;
  }
  .search-modal form .submit,
  .search-modal form .submit a {
    font-size: 18px;
    line-height: 24px;
    font-family: "Oswald", serif;
    letter-spacing: 1.8px;
    font-weight: 600;
    text-transform: uppercase;
  }
  p .search-modal form .submit, td .search-modal form .submit {
    margin: 1rem 0 0 0;
  }
  .search-modal form .submit, .search-modal form .submit a, .search-modal form .submit:hover, .search-modal form .submit:hover a {
    text-decoration: none;
    color: #FFFFFF;
  }
  .search-modal form .submit:hover {
    background-color: #023C59;
  }
  .search-modal.active {
    transform: translateY(0);
  }
}

/* _flex-nav.scss */
nav.flex-nav {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0;
}
nav.flex-nav ul#mainnav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.flex-nav ul#mainnav li {
  flex: 0 1 auto;
}
nav.flex-nav ul#mainnav li a {
  display: flex;
}
nav.flex-nav ul#mainnav li a:hover {
  background: #ddd;
}
nav.flex-nav ul#mainnav li > a.current {
  background: #ddd;
}
nav.flex-nav ul#mainnav li ul {
  display: none;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 2000;
}
nav.flex-nav ul#mainnav li ul > li {
  display: block;
  position: relative;
  white-space: nowrap;
  z-index: 999;
}
nav.flex-nav ul#mainnav li ul > li a {
  background: #eee;
  display: block;
  padding: 8px 12px;
  width: 100%;
}
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: black;
  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: block;
  color: transparent;
  height: 45px;
  border: unset;
  margin: unset;
  padding: unset;
  background-color: #FFFFFF;
  background-image: url("../inc/assets/icons/sidecar-icon-black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px auto;
}
#sidecar-toggle.active {
  background-color: #000000;
  background-image: url("../inc/assets/icons/sidecar-icon-black-active.svg");
  background-size: 16px auto;
  background-position: 48% 50%;
}

#sidecar {
  background-color: #FFFFFF;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  right: -100%;
  text-align: left;
  top: 0;
  width: 100%;
  z-index: 9000 !important;
  transition: right 0.44s ease;
}
#sidecar #close-sidecar {
  background: none;
  border: 2px solid black;
  border-radius: 4px;
  color: black;
  font: bold 1.6rem sans-serif;
  padding: 12px 48px 12px 24px;
  position: absolute;
  top: 16px;
  right: 16px;
}
#sidecar #close-sidecar::after {
  content: "";
  height: 16px;
  pointer-events: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
}
#sidecar ul#mainnav {
  right: 0;
}

#sidecar.slide-right {
  left: inherit;
  opacity: 1;
  right: -100%;
  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;
}

nav#sidecar ul#mainnav {
  -webkit-padding-start: 0px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: auto;
  margin: 50px auto 80px auto;
  position: relative;
  width: calc(100% - 64px);
}
nav#sidecar ul#mainnav #mn-home {
  display: none;
}
nav#sidecar ul#mainnav li {
  background: transparent;
  display: block;
  float: none;
  height: auto;
  margin: unset;
  padding: unset;
  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 a {
  display: block;
  font-size: 40px;
  line-height: 45px;
  font-family: "Oswald", serif;
  text-transform: uppercase;
  color: #000000;
  font-weight: 600;
  height: auto;
  opacity: 0;
  position: relative;
  transition: all 0.44s ease;
  width: 100%;
}
nav#sidecar ul#mainnav li a.expand {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: unset;
  padding: unset;
  position: absolute;
  top: 0;
  right: 0;
}
nav#sidecar ul#mainnav li a.expand::before {
  content: "+";
  display: block;
  font-size: 65px;
  line-height: 0.5;
  color: #000000;
  font-family: "Oswald", serif;
  position: relative;
  top: -2px;
}
nav#sidecar ul#mainnav li a.expand.active::before {
  content: "-";
  top: -7px;
}
nav#sidecar ul#mainnav li ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  float: none;
  margin: unset;
  max-height: 0px;
  overflow: hidden;
  padding: 0 28px;
  position: relative;
  transition: max-height 0.25s ease-in;
}
nav#sidecar ul#mainnav li ul li:first-of-type {
  margin: 15px 0 0 0;
}
nav#sidecar ul#mainnav li ul li a {
  text-transform: unset;
  font-size: 36px;
  line-height: 40px;
  color: #023C59;
  font-weight: 400;
}
nav#sidecar ul#mainnav li ul.active {
  float: none;
  max-height: 800px;
  transition: max-height 1s ease;
}

.sidecar-search form label,
.sidecar-search form .submit {
  display: none;
}
.sidecar-search form .field {
  height: 64px;
  display: block;
  width: 100%;
  outline: none;
  padding: 0 32px 0 72px;
  border: unset;
  background: #E3E3E3 url("../inc/assets/icons/search-icon-black.svg") no-repeat center;
  background-size: 18px auto;
  background-position: 32px 50%;
}
.sidecar-search form .field::placeholder {
  opacity: 0;
  display: none;
}

/* _alert.scss */
/* Updated style for page-alert and subclasses - GS 3/4/24 */
/* Added page-alert__message and page-alert__button classes - GS 4/23/24 */
/* Adjusted width of page-alert and page-alert__image to be responsive - GS 10/23/24 */
.page-alert {
  background-color: #023C59;
  left: 50%;
  opacity: 0;
  padding: 24px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease 0.2s;
  visibility: hidden;
  z-index: -100;
  color: white;
}
.page-alert--active {
  opacity: 1;
  visibility: visible;
  z-index: 101;
}
.page-alert__dismiss {
  cursor: pointer;
  font-size: 40px;
  text-align: right;
}
.page-alert__message {

}
.page-alert__button {
    position: relative;
    width: auto;
    display: block;
    padding: 10px 20px;
    white-space: nowrap;
    text-align: center;
    background-color: #DB001E;
    cursor: pointer;
    z-index: 1;
    width: fit-content;
    transition: all 0.3s ease 0s;
    font-size: 18px;
    line-height: 24px;
    font-family: "Oswald", serif;
    letter-spacing: 1.8px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}
.page-alert__button:hover {
    background-color: #333333;
    color: white;
}
.page-alert__image{
    max-width: 75vw;
    max-height: 500px;
}

/* _footer.scss */
footer {
  background-color: #000000;
  padding: 20px 0 25px 0;
}
@media only screen and (min-width: 1024px) {
  footer {
    padding: 40px 0;
  }
}

.footer-container {
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}
.footer-logo {
  order: 1;
  width: 170px;
  height: fit-content;
  margin: 0 0 15px 0;
}
.footer-logo,
.footer-logo img {
  display: block;
}
.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.footer-content {
  order: 2;
  text-align: center;
  margin: 0 0 40px 0;
}
.footer-content span,
.footer-content span a, .footer-content__heading {
  color: #FFFFFF;
}
.footer-content__heading {
  margin: 0 0 10px 0;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  letter-spacing: unset;
}
.footer-content span,
.footer-content span a {
  font-family: "Oswald", serif;
  font-size: 16px;
  line-height: 36px;
  font-weight: 300;
}
/* commented out the "|" to reduce footer contact to a single item - GS 2/3/25 */
.footer-content span a:first-of-type::after {
  //content: "|";
  margin: 0 5px 0 8px;
}
.footer-content span:first-of-type::after {
  content: ", ";
}
.footer-content span:last-of-type {
  display: block;
}
.footer-copyright {
  order: 3;
}
.footer-copyright__credits {
  display: block;
  text-align: center;
  width: calc(100% - 35px);
  max-width: 240px;
  margin: 0 auto;
}
.footer-copyright__credits,
.footer-copyright__credits a {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  font-family: "Oswald", serif;
}
.footer-copyright__signup {
  color: white;
  display: flex;
  gap: 15px;
  flex-direction: column;
  margin: 0 0 40px;
  text-align: center;
}
.footer-copyright__signup #mc_embed_signup_scroll {
  background: black;
  display: flex;
  justify-content: center;
  padding: 0;
}
.footer-copyright__signup #mc_embed_signup_scroll .mc-field-group {
  margin: 0;
}
.footer-copyright__signup #mc_embed_signup_scroll .clear .button {
  border: 1px solid white;
  margin: 0;
  padding: 10x 20px;
}
.footer-copyright__signup #mc_embed_signup_scroll input[type=email] {
  border-left: 1px solid white;
  border-top: 1px solid white;
  border-bottom: 1px solid white;
  border-right: #DB001E;
  background: black;
  color: white;
  height: 100%;
  padding: 10px;
}
.footer-copyright__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  align-items: center;
  justify-content: center;
  margin: 0 0 40px 0;
}
.footer-copyright__socials ul {
  align-items: center;
  list-style-type: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}
.footer-copyright__socials ul li {
  list-style-image: none;
}
.footer-copyright__socials a {
  width: 28px;
  height: fit-content;
}
.footer-copyright__socials a,
.footer-copyright__socials a svg {
  display: block;
}
.footer-copyright__socials a svg {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    align-items: center;
    width: 100%;
  }
  .footer-logo, .footer-content, .footer-copyright {
    order: unset;
    margin: unset;
  }
  .footer-copyright {
    width: calc(50% - 100px);
  }
  .footer-copyright__socials {
    gap: 40px;
    margin: 0 0 20px 0;
  }
  .footer-copyright__socials a {
    width: 24px;
  }
  .footer-copyright__credits {
    width: unset;
    max-width: unset;
  }
  .footer-copyright__credits,
  .footer-copyright__credits a {
    font-size: 18px;
    line-height: 26px;
  }
  .footer-logo {
    width: 200px;
  }
  .footer-content {
    width: calc(50% - 100px);
  }
  .footer-content__heading {
    font-size: 24px;
    line-height: 32px;
    margin: 0 0 25px 0;
  }
  .footer-content span {
    display: block;
  }
  .footer-content span,
  .footer-content span a {
    font-size: 20px;
    line-height: 30px;
  }
  .footer-content span:first-of-type::after {
    content: unset;
  }
  .footer-content span:last-of-type {
    margin: 25px 0 0 0;
  }
}

/* _gdpr.scss */
#gdpr-bar {
  background: black;
  color: white;
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translateX(-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;
}
/* _flex-nav.scss */
.lightbox {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  transition: visibilty 0s ease 0.6s, opacity 0.6s ease 0s;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
}
.lightbox.open {
  transition: visibilty 0s ease 0s, opacity 0.3s ease 0s;
  visibility: visible;
  opacity: 1;
}
.lightbox-content {
  position: relative;
  width: 85.714285%;
  height: calc(100% - 120px);
  display: block;
  margin: 60px auto;
  padding: 0;
  z-index: 1;
}
.lightbox-content > img, .lightbox-content > .video-wrapper, .lightbox-content > audio {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lightbox .gallery-list {
  position: relative;
  width: 85.714285%;
  height: calc(100% - 120px);
  display: block;
  margin: 60px auto;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  z-index: 1;
}
.lightbox .gallery-list__item {
  position: relative;
  width: 100%;
  height: 100%;
  display: inline-block;
  margin: 0;
  padding: 0;
  white-space: normal;
  vertical-align: top;
}
.lightbox .gallery-list__item > img, .lightbox .gallery-list__item > .video-wrapper, .lightbox .gallery-list__item > audio {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.lightbox .carousel-controls {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  z-index: 0;
}
.lightbox .carousel-controls span {
  width: 7.142857%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  font-size: 30px;
  line-height: 30px;
  color: white;
  text-align: center;
  transition: all 0.3s ease 0s;
  opacity: 1;
  cursor: pointer;
  vertical-align: top;
}
.lightbox .carousel-controls span:hover {
  opacity: 0.5;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.33);
  mix-blend-mode: multiply;
  z-index: 0;
}

.close-lightbox {
  position: absolute;
  width: 30px;
  display: block;
  top: 20px;
  right: 20px;
  margin: 0;
  padding: 0;
  font-size: 30px;
  line-height: 30px;
  color: white;
  transition: all 0.3s ease 0s;
  opacity: 1;
  cursor: pointer;
  z-index: 99;
}

/* ============ 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;
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* _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%;
}

/* ============ Better Browser Alert ============ */
iframe.get-a-better-browser {
  background: white;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 1000;
}

/* _animate.scss */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

/* 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);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

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

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

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

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

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

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.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: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.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);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

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

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

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

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

@-webkit-keyframes 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);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

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

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

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

@-webkit-keyframes 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;
  }
}
.flipOutX {
  -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;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

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

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

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

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

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

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

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

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

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* 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: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* 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);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

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

@-webkit-keyframes 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);
  }
}
.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);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

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

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

@-webkit-keyframes 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;
  }
}
.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-transform-origin: center bottom;
    transform-origin: center bottom;
    -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-transform-origin: center bottom;
    transform-origin: center bottom;
    -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);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-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);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@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);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-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);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@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);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-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-transform-origin: center bottom;
    transform-origin: center bottom;
    -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-transform-origin: center bottom;
    transform-origin: center bottom;
    -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);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

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

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

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

@-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);
  }
}
.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);
  }
}
.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);
  }
}
.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);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* ============ ELEMENTS ============ */
.accordions {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.accordions__tab {
  width: 100%;
  display: block;
  margin: 0 0 20px 0;
  padding: 0;
}
.accordions__tab-toggle {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 0;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}
.accordions__tab-toggle, .accordions__tab-toggle::after {
  font-family: "Oswald", serif;
  color: #FFFFFF;
}
.accordions__tab-toggle::after {
  content: "+";
  display: block;
  font-size: 40px;
  line-height: 1;
}
.accordions__tab-content {
  width: 100%;
  display: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.accordions__tab.active .accordions__tab-toggle::after {
  content: "-";
}

.image-carousel {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 0 20px 0;
  padding: 0;
}
.image-carousel__slides {
  width: 100%;
  display: block;
  margin: 0 0 20px 0;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
}
.image-carousel__slides-item {
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 66.666667% 0 0 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  vertical-align: top;
}
.image-carousel .carousel-controls {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.image-carousel .carousel-controls span {
  width: 20px;
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 60px;
  cursor: pointer;
  vertical-align: top;
}
.image-carousel .carousel-controls .carousel-indices {
  width: calc(100% - 80px);
  display: inline-block;
  margin: 0 15px;
  padding: 0;
  text-align: center;
  vertical-align: top;
}
.image-carousel .carousel-controls .carousel-indices .carousel-index {
  width: 60px;
  height: 60px;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}

.image-gallery {
  width: calc(100% + 20px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -10px;
  padding: 0;
}
.image-gallery__item {
  width: calc(100% - 20px);
  display: inline-block;
  flex: 0 1 auto;
  margin: 0 10px 20px 10px;
  padding: calc((100% - 20px) * 0.666667) 0 0 0;
  transition: all 0.3s ease 0s;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  vertical-align: top;
  cursor: pointer;
}
@media (min-width: 840px) {
  .image-gallery.col-span-6 .image-gallery__item {
    width: calc(50% - 20px);
    padding-top: calc((50% - 20px) * 0.666667);
  }
}
@media (min-width: 840px) {
  .image-gallery.col-span-4 .image-gallery__item {
    width: calc(50% - 20px);
    padding-top: calc((50% - 20px) * 0.666667);
  }
}
@media (min-width: 1280px) {
  .image-gallery.col-span-4 .image-gallery__item {
    width: calc(33.333334% - 20px);
    padding-top: calc((33.333334% - 20px) * 0.666667);
  }
}
@media (min-width: 840px) {
  .image-gallery.col-span-3 .image-gallery__item {
    width: calc(50% - 20px);
    padding-top: calc((50% - 20px) * 0.666667);
  }
}
@media (min-width: 1280px) {
  .image-gallery.col-span-3 .image-gallery__item {
    width: calc(25% - 20px);
    padding-top: calc((25% - 20px) * 0.666667);
  }
}
@media (min-width: 840px) {
  .image-gallery.col-span-2 .image-gallery__item {
    width: calc(50% - 20px);
    padding-top: calc((50% - 20px) * 0.666667);
  }
}
@media (min-width: 1280px) {
  .image-gallery.col-span-2 .image-gallery__item {
    width: calc(25% - 20px);
    padding-top: calc((25% - 20px) * 0.666667);
  }
}
@media (min-width: 1440px) {
  .image-gallery.col-span-2 .image-gallery__item {
    width: calc(16.666667% - 20px);
    padding-top: calc((16.666667% - 20px) * 0.666667);
  }
}

.image-content {
  margin: 0 0 60px 0;
}
.image-content__image {
  display: block;
  width: 100%;
  max-height: 400px;
}
.image-content__content {
  background-color: #DB001E;
  padding: 40px 0;
}
.image-content__container {
  width: 80%;
  margin: 0 auto;
}
.image-content__small-heading {
  margin: 0 0 5px 0;
  color: #000000;
}
.image-content__heading, .image-content__description {
  color: #FFFFFF;
}
.image-content__heading {
  margin: 0 0 12px 0;
}
.image-content__description {
  margin: 0 0 40px 0;
}
.image-content__button:hover {
  background-color: #FFFFFF;
  color: #023C59;
}
@media only screen and (min-width: 1024px) {
  .image-content.left .image-content__wrapper {
    justify-content: flex-start;
  }
  .image-content {
    margin: 0 0 80px 0;
    padding: 80px 0 80px 0;
  }
  .image-content__image {
    display: none;
  }
  .image-content__wrapper {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
  }
  .image-content__content {
    max-width: 600px;
    padding: 60px;
  }
  .image-content__container {
    width: unset;
    margin: unset;
  }
}

.media-gallery {
  width: calc(100% + 20px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -10px;
  padding: 0;
}
.media-gallery__item {
  width: calc(100% - 20px);
  display: inline-block;
  flex: 0 1 auto;
  margin: 0 10px 20px 10px;
  padding: calc((100% - 20px) * 0.666667) 0 0 0;
  transition: all 0.3s ease 0s;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  vertical-align: top;
  cursor: pointer;
}
@media (min-width: 840px) {
  .media-gallery.col-span-6 .media-gallery__item {
    width: calc(50% - 20px);
    padding-top: calc((50% - 20px) * 0.666667);
  }
}
@media (min-width: 840px) {
  .media-gallery.col-span-4 .media-gallery__item {
    width: calc(50% - 20px);
    padding-top: calc((50% - 20px) * 0.666667);
  }
}
@media (min-width: 1280px) {
  .media-gallery.col-span-4 .media-gallery__item {
    width: calc(33.333334% - 20px);
    padding-top: calc((33.333334% - 20px) * 0.666667);
  }
}
@media (min-width: 840px) {
  .media-gallery.col-span-3 .media-gallery__item {
    width: calc(50% - 20px);
    padding-top: calc((50% - 20px) * 0.666667);
  }
}
@media (min-width: 1280px) {
  .media-gallery.col-span-3 .media-gallery__item {
    width: calc(25% - 20px);
    padding-top: calc((25% - 20px) * 0.666667);
  }
}
@media (min-width: 840px) {
  .media-gallery.col-span-2 .media-gallery__item {
    width: calc(50% - 20px);
    padding-top: calc((50% - 20px) * 0.666667);
  }
}
@media (min-width: 1280px) {
  .media-gallery.col-span-2 .media-gallery__item {
    width: calc(25% - 20px);
    padding-top: calc((25% - 20px) * 0.666667);
  }
}
@media (min-width: 1440px) {
  .media-gallery.col-span-2 .media-gallery__item {
    width: calc(16.666667% - 20px);
    padding-top: calc((16.666667% - 20px) * 0.666667);
  }
}

.page-portals {
  width: calc(100% + 20px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -10px;
  padding: 0;
}
.page-portals__item {
  position: relative;
  width: calc(100% - 20px);
  display: inline-block;
  flex: 1 1 auto;
  margin: 0 10px 20px 10px;
  padding: calc(100% - 20px) 0 0 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 15px solid #DB001E;
  vertical-align: top;
}
@media (min-width: 840px) {
  .page-portals__item {
    width: calc(50% - 20px);
    padding-top: calc(50% - 20px);
  }
}
@media (min-width: 1080px) {
  .page-portals__item {
    width: calc(33.333334% - 20px);
    padding-top: calc(33.333334% - 20px);
  }
}
.page-portals__item:hover .page-portals__item-underlay {
  opacity: 0.9;
}
.page-portals__item-underlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  background: #023C59;
  transition: all 0.3s ease 0s;
  opacity: 0.7;
  z-index: 0;
}
.page-portals__item-content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  top: 0;
  left: 0;
  margin: 0;
  padding: 40px 20px;
  text-align: center;
  z-index: 2;
}
.page-portals__item-content h3 {
  color: white;
  margin: auto 0;
}

.posts-list {
  width: 100%;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  padding: 0;
  margin: 0 0 30px;
}
.posts-list__header {
  width: 100%;
  display: block;
  margin: 0 0 20px 0;
  padding: 0 10px;
}
.posts-list__item {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  vertical-align: top;
}
.posts-list__item-thumb {
  width: 100%;
  display: block;
  flex: 0 1 auto;
  margin: 0;
  padding: 66.666667% 0 0 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.posts-list__item-content {
  background: white;
  width: 100%;
  display: block;
  flex: 1 0 auto;
  margin: 0;
  padding: 4rem;
}

.image-block {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 0 20px 0;
  padding: 0;
}
.image-block a {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  text-align: inherit;
}
.image-block .image-crop {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
/* Made formatting changes to image captions to improve functionality on small screens and narrow images, GS 11/29/23 */
.image-block .image-caption {
  background: rgba(2, 60, 89, 0.8);
  color: white;
  padding: 10px 20px;
  position: relative;
  width: 100%;
}
.image-block.has-lightbox {
  cursor: pointer;
}
.image-block img {
  width: 100%;
  max-height: 400px;
}

/* Added carousel-caption class for use in image-carousel-v2, GS 5/24/24 */

.carousel-caption {
  background: rgba(2, 60, 89, 0.8);
  color: white;
  padding: 10px 20px;
  position: relative;
  text-wrap: wrap;
  width: 100%;
}

.tabbed-content {
  width: 100%;
  display: block;
  margin: 0 0 20px 0;
  padding: 0;
}
.tabbed-content__toggles {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.tabbed-content__toggles-item {
  width: auto;
  display: inline-block;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 900;
  text-transform: uppercase;
  vertical-align: top;
  cursor: pointer;
}
.tabbed-content__tab {
  width: 100%;
  display: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.text-block {
  width: 100%;
  display: block;
  margin: 0 0 20px 0;
  padding: 0;
}

.video-block {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 0 20px 0;
  padding: 0;
}

.video-embed {
  position: relative;
  width: 100%;
  display: block;
  margin: 0;
  padding: 56.25% 0 0 0;
}
.video-embed iframe, .video-embed video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  margin: 0;
}
.video-embed .wp-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-element {
  margin: 80px auto;
  width: 100%;
  max-width: 850px;
  text-align: center;
}
.video-element__video {
  display: block;
  margin: 0 0 25px 0;
}
.video-element__title {
  margin: 0 0 12px 0;
  font-size: 32px;
  line-height: 38px;
  font-weight: 700;
  color: #023C59;
}
.video-element__sub-heading {
  margin: unset;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 1.8px;
}
@media only screen and (min-width: 1024px) {
  .video-element {
    text-align: left;
  }
  .video-element__video {
    margin: 0 0 12px 0;
  }
  .video-element__title {
    font-size: 40px;
    line-height: 46px;
  }
}

.row {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: unset;
  padding: unset;
  gap: 60px;
}

/*-- Fixing excessive vertical gaps on mobile, GS 11/15/23 --*/

@media only screen and (max-width: 768px) {
    .row {
        gap: 0px;
    }
}

.row.vertical-center {
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .row {
    flex-direction: row;
    justify-content: space-between;
  }
}

.column {
  margin: unset;
  padding: unset;
  vertical-align: top;
}

.span-1 {
  width: calc((100% - 40px) / 2);
}
@media (min-width: 480px) {
  .span-1 {
    width: calc((100% - 80px) / 3);
  }
}
@media (min-width: 840px) {
  .span-1 {
    width: calc((100% - 120px) / 4);
  }
}
@media (min-width: 1080px) {
  .span-1 {
    width: calc((100% - 200px) / 6);
  }
}
@media (min-width: 1280px) {
  .span-1 {
    width: calc((100% - 440px) / 12);
  }
}

.span-2 {
  width: 100%;
}
@media (min-width: 840px) {
  .span-2 {
    width: calc((100% - 80px) / 3);
  }
}
@media (min-width: 1280px) {
  .span-2 {
    width: calc((100% - 200px) / 6);
  }
}

.span-2_4 {
  width: 100%;
}
@media (min-width: 600px) {
  .span-2_4 {
    width: calc((100% - 40px) / 2);
  }
}
@media (min-width: 960px) {
  .span-2_4 {
    width: calc((100% - 80px) / 3);
  }
}
@media (min-width: 1280px) {
  .span-2_4 {
    width: calc((100% - 160px) / 5);
  }
}

.span-3 {
  width: 100%;
}
@media (min-width: 840px) {
  .span-3 {
    width: calc((100% - 40px) / 2);
  }
}
@media (min-width: 1280px) {
  .span-3 {
    width: calc((100% - 120px) / 4);
  }
}

.span-4 {
  width: 100%;
}
@media (min-width: 840px) {
  .span-4 {
    width: calc((100% - 40px) / 2);
  }
}
@media (min-width: 1280px) {
  .span-4 {
    width: calc((100% - 80px) / 3);
  }
}

.span-6 {
  width: 100%;
}
@media (min-width: 840px) {
  .span-6 {
    width: calc((100% - 40px) / 2);
  }
}

.span-8 {
  width: 100%;
}
@media (min-width: 840px) {
  .span-8 {
    width: calc((100% - 40px) / 2);
  }
}
@media (min-width: 1280px) {
  .span-8 {
    width: calc((100% - 80px) / 3 * 2);
  }
}

.span-9 {
  width: 100%;
}
@media (min-width: 840px) {
  .span-9 {
    width: calc((100% - 40px) / 2);
  }
}
@media (min-width: 1280px) {
  .span-9 {
    width: calc((100% - 120px) / 4 * 3);
  }
}

.span-10 {
  width: 100%;
}
@media (min-width: 840px) {
  .span-10 {
    width: calc((100% - 80px) / 3 * 2);
  }
}
@media (min-width: 1280px) {
  .span-10 {
    width: 83.333334%;
    width: calc((100% - 160px) / 6 * 5);
  }
}

.span-12 {
  width: 100%;
}
/* changed bottom margin from 80px to 0 to reduce excessive gaps, GS 11/29/23 */
/* corrected overcorrection on 11/29/23 - changed bottom margin to 20px, GS 2/5/25 */
.testimonial-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  text-align: center;
  width: 100%;
  max-width: 670px;
  margin: 0 auto 20px auto;
  padding: unset;
}
.testimonial-block::before {
  content: "“";
  font-family: "Oswald", serif;
  font-size: 100px;
  line-height: 1;
  color: #DB001E;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  height: 45px;
}
.testimonial-block__quote, .testimonial-block__author {
  display: block;
}
.testimonial-block__quote {
  margin: unset;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  font-style: italic;
  color: #000000;
}
.testimonial-block__author {
  font-family: "Oswald", serif;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: #DB001E;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
/* changed bottom margin from 100px to 0 to reduce excessive gaps, GS 11/29/23 */
/* corrected overcorrection on 11/29/23 - changed bottom margin to 20px, GS 2/5/25 */
@media only screen and (min-width: 1024px) {
  .testimonial-block {
    margin: 0 auto 20px auto;
    gap: 12px;
  }
  .testimonial-block::before {
    height: 50px;
  }
}

.staff-grid {
  margin: 0 0 80px 0;
}
.staff-grid__heading {
  text-align: center;
  margin: 0 0 25px 0;
  font-weight: 300;
  font-size: 52px;
  line-height: 60px;
}
.staff-grid__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.staff-grid__member {
  display: block;
  text-align: center;
}
.staff-grid__member-picture, .staff-grid__member-name, .staff-grid__member-role {
  display: block;
}
.staff-grid__member-picture {
  width: 100%;
  height: 300px;
  margin: 0 0 24px 0;
}
.staff-grid__member-name {
  font-family: "Oswald", serif;
  font-size: 28px;
  line-height: 35px;
  font-weight: 700;
  margin: 0 0 12px 0;
  text-transform: uppercase;
  color: #023C59;
}
.staff-grid__member-role {
  margin: unset;
}
@media only screen and (min-width: 630px) {
  .staff-grid__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 950px) {
  .staff-grid__container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .staff-grid {
    margin: 0 0 100px 0;
  }
}

.three-columns {
  margin: 135px auto 60px auto;
  gap: unset;
  background-color: #FFFFFF;
  padding: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.three-columns::before {
  content: "";
  display: block;
  width: calc(100% - 40px);
  height: 18vw;
  position: absolute;
  top: -17.5vw;
  left: 20px;
  background: url("../inc/assets/plan-your-visit-landscape.svg") no-repeat center bottom;
  background-size: contain;
}
.three-columns .column {
  width: 100%;
}
.three-columns .column:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #E3E3E3;
  margin: 40px auto;
}
.three-columns .column .text-block {
  text-align: center;
  margin: unset;
}
.three-columns .column .text-block h6 {
  margin: 0 0 12px 0;
  font-size: 18px;
  line-height: 24px;
  color: #DB001E;
  letter-spacing: 1.8px;
}
.three-columns .column .text-block p {
  font-family: "Oswald", serif;
  font-size: 20px;
  line-height: 40px;
  font-weight: 300;
}
.three-columns .column .text-block p:first-of-type {
  margin-top: unset;
}
.three-columns .column .text-block p:last-of-type {
  margin-bottom: unset;
}
.three-columns .column .button {
  margin: 24px auto;
}
.three-columns .column .image-block {
  margin: 24px 0;
}
.three-columns .column .image-block:last-of-type {
  margin-bottom: unset;
}
.three-columns .column img {
  display: block;
}
.three-columns .column iframe {
  display: block;
  width: 100%;
  height: 300px;
}
/* Changed top margin from 270px to 135px to fix excessive gap - GS 10/22/24 */
/* Changed ::before to fix spacing issues - GS 11/25/24 */
@media only screen and (min-width: 1024px) {
  .three-columns {
    margin: 135px auto 80px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 130px;
    padding: 50px 60px;
  }
  .three-columns::before {
    left: 150px;
    width: calc(100% - 300px);
  }
  .three-columns .column {
    position: relative;
  }
  .three-columns .column:not(:last-of-type)::after {
    top: -15px;
    right: -65px;
    position: absolute;
    height: calc(100% + 30px);
    width: 2px;
    margin: unset;
  }
  .three-columns .column .text-block h6 {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 2px;
  }
  .three-columns .column .text-block p {
    font-size: 24px;
    line-height: 36px;
  }
}
/* Added media query to adjust top margin to 80px for mobile devices - GS 10/22/24 */
@media only screen and (max-width: 768px){
    .three-columns{
        margin: 80px auto 80px auto;
    }
}

.accordions.themed {
  margin: 0 0 60px 0;
}
.accordions.themed .accordions__tab {
  margin: 0 0 1px 0;
  background: #023C59;
  transition: background 0.33s ease;
}
.accordions.themed .accordions__tab-toggle {
  padding: 16px 28px;
}
.accordions.themed .accordions__tab-toggle i {
  color: #FFFFFF;
}
.accordions.themed .accordions__tab-content {
  padding: 0 28px 28px 28px;
}
.accordions.themed .accordions__tab-content * {
  color: #FFFFFF;
}
.accordions.themed .accordions__tab-content p:first-of-type {
  margin-top: unset;
}
.accordions.themed .accordions__tab-content p:last-of-type {
  margin-bottom: unset;
}
.accordions.themed .accordions__tab.active {
  background: #000000;
}
@media only screen and (min-width: 1024px) {
  .accordions.themed {
    margin: 0 0 100px 0;
  }
  .accordions.themed .accordions__tab-toggle {
    padding: 24px 40px;
  }
  .accordions.themed .accordions__tab-content {
    padding: 0 40px 24px 40px;
  }
}

.image-carousel.themed {
  margin: 0 0 4rem 0;
}
.image-carousel.themed .image-carousel__slides {
  margin: 0 0 2rem 0;
}
.image-carousel.themed .carousel-controls span {
  color: #DB001E;
  transition: all 0.3s ease 0s;
}
.image-carousel.themed .carousel-controls span:hover {
  color: black;
}
.image-carousel.themed .carousel-controls .carousel-indices .carousel-index {
  border: 0 solid #DB001E;
}
.image-carousel.themed .carousel-controls .carousel-indices .carousel-index.active {
  border-width: 0.2rem;
}

.image-gallery.themed, .media-gallery.themed {
  width: calc(100% + 2rem);
  margin: 0 -1rem 4rem -1rem;
}
.image-gallery.themed .image-gallery__item, .image-gallery.themed .media-gallery__item, .media-gallery.themed .image-gallery__item, .media-gallery.themed .media-gallery__item {
  transition: all 0.3s ease 0s;
  opacity: 1;
}
.image-gallery.themed .image-gallery__item:hover, .image-gallery.themed .media-gallery__item:hover, .media-gallery.themed .image-gallery__item:hover, .media-gallery.themed .media-gallery__item:hover {
  opacity: 0.5;
}

.image-block.has-lightbox.themed {
  transition: all 0.3s ease 0s;
}
.image-block.has-lightbox.themed:hover {
  opacity: 0.5;
}

.tabbed-content.themed {
  margin: 0 0 4rem 0;
}
.tabbed-content.themed .tabbed-content__toggles {
  border-bottom: 0.1rem solid #ededed;
}
.tabbed-content.themed .tabbed-content__toggles-item {
  margin: 0 2rem 0 0;
  padding: 0 0 0.2rem 0;
  color: grey;
  border-bottom: 0.3rem solid transparent;
  transition: all 0.3s ease 0s;
}
.tabbed-content.themed .tabbed-content__toggles-item.active {
  color: black;
  border-bottom-color: #DB001E;
}
.tabbed-content.themed .tabbed-content__tab {
  padding: 2rem 0 0 0;
}

/* ============ PAGES ============ */
/* _home.scss */
.home #content {
  overflow: hidden;
}

/* Adjusted home-hero min-height from 550px to 750px, GS 4-12-24 */
/* Updated background-image, GS 4-17-24 */

.home-hero {
  background-color: #555;
  background-image: url("https://battleshiptexas.org/wp-content/uploads/2024/04/herodefaultimage.webp");
  /* background-image: url("../inc/assets/home-hero-image.png"); */
  min-height: 750px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.home-hero::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  height: 170px;
  top: unset;
  bottom: 0;
  background: linear-gradient(to top, #E3E3E3 0%, rgba(255, 255, 255, 0.65), transparent 100%);
  z-index: 1;
}
.home-hero__container {
  height: fit-content;
  padding: 25px;
  background-color: #FFFFFF;
  margin: 80px;
  text-align: center;
  position: relative;
}

/* Fixing hours box placement on mobile - GS 4/3/24 */
/* Fixing home-hero dead space caused by increasing min-height - GSH 4/12/24 */

@media only screen and (max-width: 768px){
    .home-hero__container{
	margin: 80px auto;
    }
    .home-hero{
        min-height: 550px;
    }
}

.home-hero__video {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  width: 135%;
}
@media only screen and (min-width: 768px) {
  .home-hero__video {
    width: 165%;
  }
}
@media only screen and (min-width: 1024px) {
  .home-hero__video {
    width: 100%;
  }
}
.home-hero iframe {
  flex-grow: 1;
  height: 205%;
  justify-content: center;
  position: absolute;
  width: 205%;
  z-index: 0;
}
@media only screen and (min-width: 768px) {
  .home-hero iframe {
    height: 200%;
    position: relative;
    width: 200%;
  }
}
.home-hero__close {
  cursor: pointer;
  display: block;
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  width: 25px;
  height: 25px;
  background: url("../inc/assets/icons/close-x-black.svg") no-repeat center;
  background-size: contain;
  transform: rotate(45deg);
  transform-origin: center;
}
.home-hero__heading {
  margin: 0 0 5px 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #DB001E;
}
.home-hero__description {
  display: block;
  font-family: "Oswald", serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
  margin: 0 0 12px 0;
}
.home-hero__hours {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .home-hero {
    z-index: 1;
  }
  .home-hero::after {
    height: 200px;
  }
  .home-hero__container {
    padding: 40px;
  }
  .home-hero__heading {
    font-size: 16px;
    margin: 0 0 12px 0;
  }
  .home-hero__description {
    font-size: 18px;
    line-height: 24px;
  }
  .home-hero__hours {
    display: block;
    font-family: "Oswald", serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 24px 0;
    color: #000000;
  }
  .home-hero__hours::after {
    content: "";
    display: block;
    width: 14px;
    height: 12px;
    background: url("../inc/assets/icons/arrow-right-black.svg") no-repeat center;
    background-size: contain;
  }
}

.home-about {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin: 0 0 60px 0;
  gap: 10px;
  position: relative;
  z-index: 2;
  background-color: #E3E3E3;
}
.home-about__ship {
  display: block;
  z-index: -1;
  position: absolute;
  top: 160px;
  width: 120%;
  max-width: unset;
  height: auto;
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.home-about__content {
  max-width: 80%;
}
.home-about__heading {
  margin: 0 0 12px 0;
}
.home-about__description {
  margin: 0 0 30px 0;
  font-weight: 500;
}
.home-about__images {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  column-gap: 12px;
  position: relative;
  z-index: 1;
}
.home-about__images::before {
  content: "";
  z-index: -1;
  display: block;
  background: url("../inc/assets/home-about-star-icon.svg") no-repeat center;
  background-size: contain;
  width: 135px;
  height: 135px;
  position: absolute;
  top: -30px;
  right: -10px;
}
.home-about__images img {
  display: block;
  width: 100%;
}
.home-about__images img:first-of-type {
  height: 165px;
}
.home-about__images img:last-of-type {
  margin: 80px 0 0 0;
  align-self: flex-end;
  height: 145px;
}
@media only screen and (min-width: 1024px) {
  .home-about {
    margin: unset;
    padding: 50px 0 230px 0;
    display: block;
  }
  .home-about__ship {
    top: unset;
    width: 780px;
    left: 17vw;
    bottom: -90px;
    opacity: 0.5;
  }
  .home-about__content {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .home-about__heading, .home-about__description {
    width: 50%;
  }
  .home-about__heading, .home-about__description, .home-about__button {
    max-width: 650px;
  }
  .home-about__heading {
    margin: 0 0 24px 0;
  }
  .home-about__description {
    margin: 0 0 35px 0;
  }
  .home-about__images {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 45%;
    max-width: 620px;
    position: absolute;
    top: -110px;
    right: 0;
  }
  .home-about__images::before {
    width: 320px;
    height: 320px;
    top: 80px;
    right: -100px;
  }
  .home-about__images img:first-of-type {
    width: 70%;
    height: unset;
    aspect-ratio: 1/1;
  }
  .home-about__images img:last-of-type {
    margin: unset;
    width: 80%;
    height: 370px;
  }
}

.home-donate {
  padding: 65px 0;
  text-align: center;
  position: relative;
  z-index: 3;
}
.home-donate::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  background-color: #023C59;
  opacity: 0.85;
}
.home-donate__container {
  width: 80%;
  margin: 0 auto;
}
.home-donate__heading, .home-donate__description {
  color: #FFFFFF;
}
.home-donate__heading {
  display: block;
  width: fit-content;
  margin: 0 auto 25px auto;
  position: relative;
  z-index: 1;
}
.home-donate__heading::before {
  content: "";
  display: block;
  z-index: -1;
  position: absolute;
  bottom: -10px;
  left: -15px;
  width: calc(100% + 30px);
  height: 35px;
  background-color: #DB001E;
}
.home-donate__description {
  max-width: 660px;
  margin: 0 auto 30px auto;
  font-family: "Oswald", serif;
  font-weight: 300;
  font-size: 24px;
  line-height: 34px;
}
.home-donate__button {
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  .home-donate {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 125px 0 110px 0;
  }
  .home-donate__container {
    width: unset;
    margin: unset;
  }
  .home-donate__description {
    margin: 0 auto 45px auto;
  }
}

.home-exhibits {
  margin: 0 0 60px 0;
}
.home-exhibits__image {
  display: block;
  width: 100%;
  max-height: 400px;
}
.home-exhibits__content {
  background-color: #DB001E;
  padding: 40px 0;
}
.home-exhibits__container {
  width: 80%;
  margin: 0 auto;
}
.home-exhibits__small-heading {
  margin: 0 0 5px 0;
  color: #000000;
}
.home-exhibits__heading, .home-exhibits__description {
  color: #FFFFFF;
}
.home-exhibits__heading {
  margin: 0 0 12px 0;
}
.home-exhibits__description {
  margin: 0 0 40px 0;
}
.home-exhibits__button:hover {
  background-color: #FFFFFF;
  color: #023C59;
}
@media only screen and (min-width: 1024px) {
  .home-exhibits {
    margin: -90px 0 80px 0;
    padding: 170px 0 115px 0;
  }
  .home-exhibits__image {
    display: none;
  }
  .home-exhibits__wrapper {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
  }
  .home-exhibits__content {
    max-width: 600px;
    padding: 60px;
  }
  .home-exhibits__container {
    width: unset;
    margin: unset;
  }
}

/* Home News Slider styling */

.home-news {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 80%;
  margin: 0 auto 80px auto;
}
.home-news__heading {
  font-family: "Oswald", serif;
  font-weight: 300;
  color: #000000;
  margin: 0 0 20px 0;
}
.home-news__slider {
  display: flex;
}
.home-news .tns-outer {
  position: relative;
}
.home-news .tns-ovh {
  position: relative;
  z-index: 1;
}
/* Updated styling to fix home news slider alignment - GS 3/6/25 */
.home-news .tns-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: calc(50% - 22.5px);
  left: -22px;
  width: calc(100% + 44px);
  height: fit-content;
}
.home-news .tns-controls button {
  display: block;
  border: unset;
  width: 47px;
  height: 45px;
  background: #DB001E url("../inc/assets/icons/events-button-arrow.svg") no-repeat center;
  background-size: 23px auto;
  cursor: pointer;
  position: relative;
  z-index: 2;
  padding: unset;
}
.home-news .tns-controls button[data-controls=prev] {
  transform: scaleX(-1);
}
.home-news .tns-controls button:disabled {
  background-color: #AAAAAA;
  cursor: not-allowed;
}
.home-news__item-wrapper, .home-news__item-image {
  display: block;
}
.home-news__item-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}
/* Changed height to 200px to improve image/text ratio, GS 11/29/23 */
.home-news__item-image {
  width: 100%;
  height: 200px;
}
.home-news__item-content {
  background-color: #FFFFFF;
  padding: 24px 36px 36px 36px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.home-news__item-smallheading {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1.4px;
  color: #DB001E;
}
.home-news__item-smallheading span:not(:last-of-type)::after {
  content: ", ";
}
.home-news__item-smallheading:empty {
  display: none;
}
.home-news__item-smallheading, .home-news__item-heading {
  margin: 0 0 12px 0;
}
.home-news__item-date {
  display: block;
  margin: auto 0 0 0;
}
.home-news__item-button {
  padding: 12px 20px;
  background-color: #023C59;
  color: #FFFFFF;
  font-family: "Oswald", serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.home-news__item-button::after {
  content: "";
  display: block;
  background: url("../inc/assets/icons/events-button-arrow.svg") no-repeat center;
  background-size: contain;
  width: 16px;
  height: 14px;
}
@media only screen and (min-width: 1024px) {
  .home-news {
    display: block;
    width: 67%;
    position: relative;
    margin: 0 35px 120px auto;
  }
  /* Look, my brain hurts right now but I fixed it okay, GS 3/6/25 */
  .home-news__content {
    width: 350px;
    height: 100%;
    position: absolute;
    top: 0;
    left: -33%;
    z-index: 0;
    background-color: #E3E3E3;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .home-news__heading {
    max-width: 200px;
    margin: 0 0 24px 0;
  }
  /* Removed unnecessary padding, GS 3/6/25 */
  .home-news__slider {
    //padding: 0 0 0 100px;
  }
  /* Removed unnecessary position/width, GS 3/6/25 */
  /* .home-news .tns-controls {
    left: unset;
    right: calc(-50% + 32px);
    width: calc(100% + 17vw);
  } */
}
/* Changed width from calc(100% + 19vw) to calc(100% + 44px), GS 3/6/25 */
@media only screen and (min-width: 1024px) and (min-width: 1440px) {
  .home-news .tns-controls {
    width: calc(100% + 44px);
  }
}
@media only screen and (min-width: 1024px) {
  .home-news .tns-controls button {
    width: 44px;
    height: 42px;
    background-size: 20px auto;
  }
}

/* Sitewrench Calendar styling */

.CalendarEventsDetail__eventCalendarFront {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 30px !important;
}
.CalendarEventsDetail__eventCalendarFront > div {
  width: 100%;
}
.CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter {
  padding: 0;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter {
    //width: calc(100% - 344px);
  }
}
.CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter__button {
  background-color: #DB001E !important;
  border-radius: 0 !important;
  border: none !important;
  color: white !important;
  font: 600 22px/22px "Oswald", serif !important;
  padding: 10px !important;
  text-transform: uppercase;
  transition: 0.3s;
}
.CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter__button:hover {
  background-color: #023C59 !important;
}
.CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter__search {
  background-color: transparent;
  background-image: url("/wp-content/themes/source/inc/assets/icons/mag-glass-red.svg");
  background-position: calc(100% - 15px);
  background-repeat: no-repeat;
  background-size: 18px;
  border: 2px solid #023C59 !important;
  border-radius: 0 !important;
  padding: 5px 15px;
}
.CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter .css-1pahdxg-control {
  border: 2px solid #DB001E !important;
  box-shadow: 0 0 10px rgba(2, 61, 89, 0.2);
}
.CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter .css-1s2u09g-control, .CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter .css-1pahdxg-control {
  background-color: transparent !important;
  border: 2px solid #023C59 !important;
  border-radius: 0 !important;
}
.CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter .css-1s2u09g-control .css-tlfecz-indicatorContainer svg, .CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter .css-1s2u09g-control .css-1gtu0rj-indicatorContainer svg, .CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter .css-1pahdxg-control .css-tlfecz-indicatorContainer svg, .CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter .css-1pahdxg-control .css-1gtu0rj-indicatorContainer svg {
  height: 30px !important;
  width: 30px !important;
}
.CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter .css-1s2u09g-control .css-tlfecz-indicatorContainer svg path, .CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter .css-1s2u09g-control .css-1gtu0rj-indicatorContainer svg path, .CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter .css-1pahdxg-control .css-tlfecz-indicatorContainer svg path, .CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter .css-1pahdxg-control .css-1gtu0rj-indicatorContainer svg path {
  fill: #DB001E !important;
}
.CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter .css-1s2u09g-control .css-1okebmr-indicatorSeparator, .CalendarEventsDetail__eventCalendarFront .CalendarMonthFilter .css-1pahdxg-control .css-1okebmr-indicatorSeparator {
  display: none !important;
}
.CalendarEventsDetail__eventCalendarFront .CalendarMenu {
  border: 2px solid #023C59;
  display: none !important;
  flex: none;
  margin: 0;
  width: fit-content;
}
@media only screen and (min-width: 1024px) {
  .CalendarEventsDetail__eventCalendarFront .CalendarMenu {
    display: flex !important;
  }
}
.CalendarEventsDetail__eventCalendarFront .CalendarMenu a {
  color: #023C59;
  font: 600 18px "Oswald", serif;
  padding: 10px;
}
.CalendarEventsDetail__eventCalendarFront .CalendarMenu__currentItem {
  background: #023C59;
  border-bottom: none !important;
  color: white !important;
}

.swCalEvents .CalendarWrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.swCalEvents .CalendarListEvent {
  background: white;
  flex-wrap: wrap;
  margin-top: 0 !important;
}
.swCalEvents .CalendarListEvent__title {
  font: 100 30px/30px "Oswald", serif;
  margin: 5px 0 15px;
}
.swCalEvents .CalendarListEvent__date_time {
  font: 100 18px/18px "Montserrat", sans-serif;
  margin: 0 0 15px;
}
.swCalEvents .CalendarListEvent__wrap {
  display: flex;
  gap: 10px;
  padding: 30px 20px;
}
.swCalEvents .CalendarListEvent__description {
  color: #082030;
  font: 500 16px/22px "Montserrat", sans-serif;
}
.swCalEvents .CalendarListEvent__tags a {
  font: 600 16px/16px "Oswald", serif;
  text-transform: uppercase;
}
.swCalEvents .CalendarListEvent__header {
  width: 60px;
  background: white;
}
.swCalEvents .CalendarListEvent__header_date {
  background-color: white;
  width: 100%;
}
.swCalEvents .CalendarListEvent__header_date-month {
  color: #DB001E;
  font-family: "Oswald", serif;
  font-size: 24px;
  margin-bottom: 15px;
  margin-top: 0;
}
/* Adjusted font-size from 60px to 58px to fix responsive issue - GS 10/22/24 */
.swCalEvents .CalendarListEvent__header_date-date {
  color: #DB001E;
  font-family: "Oswald", serif;
  font-size: 58px;
}
.swCalEvents .CalendarListEvent__content {
  margin-left: 0;
  width: calc(100% - 60px);
}
.swCalEvents .CalendarListEvent > a {
  align-items: center;
  background: #023C59;
  color: white;
  display: flex;
  font: 600 20px/20px "Oswald", serif;
  gap: 5px;
  justify-content: flex-end;
  padding: 15px 20px;
  position: relative;
  text-align: right;
  width: 100%;
}
.swCalEvents .CalendarListEvent > a:after {
  background-image: url("/wp-content/themes/source/inc/assets/icons/arrow-right-white.svg");
  background-size: contain;
  content: "";
  height: 14px;
  position: relative;
  right: 0;
  transition: 0.3s;
  width: 16px;
}
.swCalEvents .CalendarListEvent > a:hover {
  background: #082030;
}
.swCalEvents .CalendarListEvent > a:hover:after {
  right: -5px;
}
/* Updated styling to match event search bar - GS 10/21/24 */
.full-width-container .CalendarMonthFilter input {
  border: 2px solid #023C59;
  background-color: transparent;
  border-radius: 0;
  padding: 6px 15px;
  line-height: inherit !important;
  
}

/* Added following CSS to fix issue in which 48px is 100% of 50px - is this the boy math everybody was talking about? - GS 10/21/24 */
.full-width-container .CalendarMonthFilter .fields__col{
  height: 50px;
} 

/* Removed display: none; - GS 10/21/24 */
.full-width-container .CalendarMonthFilter__dateRange {

}

.swCalEvents .CalendarListFooter {
  border-bottom: 2px solid #082030;
  grid-column: 1/5;
  border-top: 2px solid #082030;
}
.swCalEvents .CalendarListPagination {
  height: auto;
}
.swCalEvents .CalendarListPagination .CalendarListPager__item {
  color: #DB001E;
}
.swCalEvents .CalendarListPagination .CalendarListPager__current {
  background: #DB001E;
  color: white;
}
.swCalEvents .CalendarListSummary {
  color: #082030;
  line-height: 1.7;
}

.CalendarMonthNavigation__action {
  color: #023C59 !important;
  font-size: 20px;
  font-weight: 600;
}
.CalendarMonthNavigation__header h2 {
  font-size: 38px !important;
}

.CalendarMonth__header_label {
  background-color: #023C59 !important;
  font-size: 16px !important;
}

.CalendarGridDay__header {
  background: white !important;
  border-bottom: none !important;
  padding: 0.5rem 2rem !important;
  text-align: right;
}
.CalendarGridDay__content {
  background: white;
}
.CalendarGridDay--current-day .CalendarGridDay__header {
  background: #DB001E !important;
}

.CalendarGridDayEvent > a {
  color: #DB001E !important;
}
.CalendarGridDayEvent > a:hover {
  color: #DB001E !important;
}
.CalendarGridDayEvent > a > span {
  display: flex;
  flex-direction: column;
}
.CalendarGridDayEvent > a svg path {
  fill: #DB001E !important;
}
.CalendarGridDayEvent__title, .CalendarGridDayEvent__time {
  color: #DB001E;
  font-size: 15px;
  line-height: 1;
}
.CalendarGridDayEvent__title {
  font-weight: 100;
}
.CalendarGridDayEvent__time {
  font-weight: 600;
}

.CalendarGridDayEventPopover {
  padding: 10px !important;
}
.CalendarGridDayEventPopover h3 {
  font-size: 2.5rem !important;
}
.CalendarGridDayEventPopover__time {
  line-height: 1.5 !important;
  margin: 10px 0 !important;
}
.CalendarGridDayEventPopover__content--image {
  display: none !important;
}
.CalendarGridDayEventPopover__content--text {
  line-height: 1.4 !important;
  text-align: center !important;
}

.CalendarEvent__featuredImage {
  aspect-ratio: 16/9;
}
.CalendarEvent__box {
  display: flex !important;
  flex-direction: column !important;
  margin: 30px 0 0 0;
  gap: 40px;
}
@media only screen and (min-width: 768px) {
  .CalendarEvent__box {
    flex-direction: row !important;
  }
}
.CalendarEvent__box h3 {
  border-bottom: 2px solid #023C59 !important;
  font-size: 20px !important;
  line-height: 36px !important;
}
.CalendarEvent__details {
  order: 1;
  padding: 0 !important;
  flex: 1;
}
@media only screen and (min-width: 768px) {
  .CalendarEvent__details {
    flex: 2;
    order: 0;
  }
}
.CalendarEvent__meta {
  flex: 1;
  order: 0;
}
@media only screen and (min-width: 768px) {
  .CalendarEvent__meta {
    order: 1;
  }
}
.CalendarEvent__location {
  display: flex;
  flex-direction: column;
}
.CalendarEvent__date_time, .CalendarEvent__location, .CalendarEvent .CalendarListEvent__tags, .CalendarEvent__contactName, .CalendarEvent__contactPhone, .CalendarEvent__contactEmail {
  padding: 0 0 0 20px;
}
.CalendarEvent__date_time a, .CalendarEvent__location a, .CalendarEvent .CalendarListEvent__tags a, .CalendarEvent__contactName a, .CalendarEvent__contactPhone a, .CalendarEvent__contactEmail a {
  font-weight: 600;
}
.CalendarEvent__tag {
  border: none !important;
  font-family: "Oswald", serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 20px;
}

/* Overwriting external CSS to fix responsive issue in Calendar event list display - GS 4/2/24 */

@media (max-width: 768px) {
    .CalendarListEvent .CalendarListEvent__header{
       width: 60px !important; 
    }
}

/* End Sitewrench Calendar styling */

/* _default.scss */
#page {
  width: 100%;
  display: block;
}

article.page header,
article.page footer {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .default-content .home-donate {
    width: 100%;
    padding: 40px 0;
  }
  .default-content .home-donate__heading, .default-content .home-donate__description, .default-content .home-donate__button {
    max-width: calc(100% - 80px);
  }
}

.page-id-146 .default-hero__heading {
  top: -20px;
}

/* Fixed responsive issue on restoration tours page - GS 10/23/24 */
@media only screen and (max-width: 1024px){
  .page-id-1896 .default-hero__heading{
    font-size: 42px;
  }
}

/* Fixed responsive issue on misc page headings - GS 4/30/25 */

@media only screen and (max-width: 768px){
	.page-id-229 .default-hero__heading{
		font-size: 42px;
	}
	
	.page-id-226 .default-hero__heading{
		font-size: 42px;
	}
	
	.page-id-230 .default-hero__heading{
		font-size: 42px;
	}
}

.default-hero {
  padding: 50px 0 0 0;
  position: relative;
  z-index: 1;
  min-height: 180px;
  display: flex;
  align-items: flex-end;
}
.default-hero::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  content: "";
  background-color: #023C59;
  opacity: 0.6;
}
.default-hero__heading {
  color: #E3E3E3;
  width: 80%;
  margin: 0 auto;
  position: relative;
  top: 4px;
}
@media only screen and (min-width: 1024px) {
  .default-hero {
    min-height: 300px;
  }
  .default-hero__heading {
    width: 90%;
    max-width: 1280px;
    top: unset;
  }
}

/* Added #normandyhero ID for Normandy map exhibit thingy - GS 5/29/24 */

#normandyhero {
    height: 400px;
}

@media only screen and (max-width: 1024px) {
    #normandyhero{
        height: 130px;
    }
}

/* Added .centerAlignedColumn for various purposes - GS 5/29/24 */

.centerAlignedColumn{
    display: flex;
    align-items: center;
}

.default-grid {
  width: 80%;
  margin: 40px auto 80px auto;
}
@media only screen and (min-width: 1024px) {
  .default-grid {
    width: 90%;
    max-width: 1280px;
    margin: 60px auto 120px auto;
    display: grid;
    grid-template-columns: 310px auto;
    column-gap: 125px;
  }
}

.default-sidebar {
  display: none;
  background-color: #000000;
  padding: 35px 50px 50px 50px;
  position: sticky;
  height: fit-content;
  top: 200px;
}
/* Changed font-size from 38px to 36px to fix text wrap issues - GS 2/14/24 */
.default-sidebar__parent {
  display: block;
  position: relative;
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 42px;
  font-weight: 600;
  font-family: "Oswald", serif;
  padding: 0 10px;
}
.default-sidebar__parent, .default-sidebar__parent:hover {
  color: #FFFFFF;
}
.default-sidebar__parent.current-page:after {
  background: #DB001E;
  bottom: 0;
  content: "";
  height: calc(100% - 20px);
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.default-sidebar ul {
  padding: unset;
  margin: unset;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.default-sidebar ul li {
  position: relative;
}
.default-sidebar ul li:first-of-type {
  margin: 30px 0 0 0;
}
.default-sidebar ul li.current_page_item a:after {
  background: #DB001E;
  bottom: 0;
  content: "";
  height: calc(100% - 20px);
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
.default-sidebar ul li,
.default-sidebar ul li a {
  display: block;
  padding: unset;
  position: relative;
  margin: unset;
  text-align: center;
}
.default-sidebar ul li a {
  font-size: 28px;
  line-height: 34px;
  font-family: "Oswald", serif;
  font-weight: 300;
}
.default-sidebar ul li a, .default-sidebar ul li a:hover {
  color: #FFFFFF;
}
.default-sidebar ul li ul {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .default-sidebar {
    display: block;
  }
}

/* _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 hr {
  margin: 50px 0 20px;
}

.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);
}

.blog-filters,
.blog-grid,
.blog-grid__heading,
.blog-reset {
  width: 80%;
  max-width: 1280px;
}
@media only screen and (min-width: 1300px) {
  .blog-filters,
  .blog-grid,
  .blog-grid__heading,
  .blog-reset {
    width: 90%;
  }
}

.blog-filters {
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blog-filters__search, .blog-filters__dropdown-heading {
  height: 50px;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #082030;
  background-color: transparent;
}
.blog-filters__search, .blog-filters__dropdown-heading::after {
  background-repeat: no-repeat;
}
.blog-filters__search {
  padding: 0 60px 0 24px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #000000;
  background-image: url("../inc/assets/icons/search-icon-red.svg");
  background-size: 18px auto;
  background-position: center right 24px;
}
.blog-filters__search, .blog-filters__dropdown {
  position: relative;
  z-index: 2;
}
.blog-filters__search, .blog-filters__dropdown, .blog-filters__dropdown-list {
  background-color: #E3E3E3;
}
.blog-filters__dropdown-heading {
  cursor: pointer;
  padding: 0 24px;
  font-family: "Oswald", serif;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.blog-filters__dropdown-heading::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("../inc/assets/icons/dropdown-arrow-red.svg");
  background-size: contain;
  background-position: center;
  position: relative;
  top: -1.5px;
}
.blog-filters__dropdown-heading.active::after {
  transform: rotate(180deg);
  top: 3px;
}
.blog-filters__dropdown-list {
  display: none;
  flex-direction: column;
  gap: 15px;
  padding: 24px;
  margin: unset;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  height: fit-content;
  border: 1px solid #082030;
  border-top: unset;
  list-style-type: none;
}
.blog-filters__dropdown-list li,
.blog-filters__dropdown-list li a {
  display: block;
  padding: unset;
  margin: unset;
  cursor: pointer;
}
.blog-filters__dropdown-list li a {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}
.blog-filters__dropdown-list.active {
  display: flex;
}
@media only screen and (min-width: 1024px) {
  .blog-filters {
    display: grid;
    grid-template-columns: auto 320px;
    gap: 40px;
    margin: 60px auto;
  }
}

.blog-reset {
  display: none;
  margin: 0 auto 40px auto;
}
.blog-reset__heading {
  margin: 0 auto 30px auto;
  max-width: 820px;
  text-align: center;
}
.blog-reset__button {
  position: relative;
  width: auto;
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  text-align: center;
  background-color: #DB001E;
  cursor: pointer;
  z-index: 1;
  width: fit-content;
  transition: all 0.3s ease 0s;
  border: unset;
  margin: 0 auto;
}
.blog-reset__button,
.blog-reset__button a {
  font-size: 18px;
  line-height: 24px;
  font-family: "Oswald", serif;
  letter-spacing: 1.8px;
  font-weight: 600;
  text-transform: uppercase;
}
p .blog-reset__button, td .blog-reset__button {
  margin: 1rem 0 0 0;
}
.blog-reset__button, .blog-reset__button a, .blog-reset__button:hover, .blog-reset__button:hover a {
  text-decoration: none;
  color: #FFFFFF;
}
.blog-reset__button:hover {
  background-color: #023C59;
}
@media only screen and (min-width: 1024px) {
  .blog-reset {
    margin: 0 auto 60px auto;
  }
}

.blog-grid {
  margin: 0 auto 80px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.blog-grid__heading {
  margin: 40px auto;
  text-align: center;
}
.blog-grid__item-content {
  min-height: 230px;
}
@media only screen and (min-width: 700px) {
  .blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    margin: 0 auto 120px auto;
  }
}
@media only screen and (min-width: 1300px) {
  .blog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.blog-detail {
  width: 80%;
  max-width: 850px;
  margin: 40px auto 60px auto;
}
.blog-detail__heading {
  font-weight: 300;
  margin: 0 0 24px 0;
}
.blog-detail__information {
  font-weight: 500;
  margin: 0 0 24px 0;
}
.blog-detail__tags {
  margin: 0 0 40px 0;
}
.blog-detail__tags a {
  color: #DB001E;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 24px;
  font-family: "Oswald", serif;
  letter-spacing: 1.6px;
  font-weight: 700;
}
.blog-detail__tags a:not(:last-of-type)::after {
  content: ", ";
}
/* Changed height: 240px to max-height to resolve cropping issues on some images, GS 11/29/23 */
.blog-detail__image {
  display: block;
  width: 100%;
  max-height: 240px;
  margin: 0 0 40px 0;
}
.blog-detail__content {
  margin: 0 auto;
  width: calc(100% - 24px);
}
.blog-detail__navigation {
  width: 80%;
  max-width: 1280px;
  margin: 0 auto 80px auto;
}
.blog-detail__navigation .nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blog-detail__navigation .nav-links :is(.nav-previous, .nav-next) {
  display: block;
  width: 100%;
}
.blog-detail__navigation .nav-links :is(.nav-previous, .nav-next) a {
  display: block;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  background-color: #023C59;
  font-size: 18px;
  line-height: 20px;
  font-family: "Oswald", serif;
  font-weight: 500;
  color: #FFFFFF;
}
.blog-detail__navigation .nav-links :is(.nav-previous, .nav-next) a::after {
  content: "";
  display: block;
  width: 16px;
  height: 14px;
  background: url("../inc/assets/icons/events-button-arrow.svg") no-repeat center;
  background-size: contain;
}
.blog-detail__navigation .nav-links .nav-previous a {
  flex-direction: row-reverse;
}
.blog-detail__navigation .nav-links .nav-previous a::after {
  transform: scaleX(-1);
}
.blog-detail__navigation .nav-links .nav-next {
  margin: 0 0 0 auto;
}
@media only screen and (min-width: 1024px) {
  .blog-detail {
    margin: 60px auto;
  }
  /* Changed height: 400px to max-height: 600px to improve cropping issues on some images, GS 11/29/23 */
  .blog-detail__image {
    max-height: 600px;
  }
  .blog-detail__content {
    width: 100%;
  }
  .blog-detail__navigation {
    margin: 0 auto 120px auto;
  }
  .blog-detail__navigation .nav-links {
    flex-direction: row;
    justify-content: space-between;
    gap: unset;
  }
  .blog-detail__navigation .nav-links :is(.nav-previous, .nav-next) {
    max-width: 290px;
  }
}

.full-width-container {
  width: 80%;
  margin: 30px auto 80px auto;
}
@media only screen and (min-width: 1024px) {
  .full-width-container {
    width: 90%;
    max-width: 1280px;
    margin: 60px auto 120px auto;
  }
}

.search-container {
  margin: 60px auto;
}
.search-container__heading {
  width: 80%;
  max-width: 1280px;
  margin: 0 auto;
}
.search-container .blog-grid {
  margin-top: 60px;
}
.search-container .blog-detail {
  margin: unset;
}
.search-container .blog-detail__heading {
  color: #023C59;
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
}
@media only screen and (min-width: 1300px) {
  .search-container__heading {
    width: 90%;
  }
}

/* CSS for WP Job Openings plugin - 12/15/23 GS */
.awsm-job-post-title {
    line-height: 36px;
}
.awsm-job-form-inner{
    background: unset;
}

/* CSS to fix strong tag not bolding text - 3/28/24 GS */
strong{
    font-weight: bold;
}

/* CSS to fix unstyled text on archives and author pages - 8/7/24 GS */
.archive-description{
  margin: 40px auto;
  text-align: center;
  width: 80%;
  max-width: 1280px;
}

/* New class for max-width-page template - 8/16/24 GS */
.max-width-container{
    width: 100%;
}

/* Nav buttons for news page - 10/12/24 GS */
nav.navigation.posts-navigation{
    margin: auto;
    width: 1280px;
    height: 64px;
}

nav.navigation.posts-navigation div.nav-links{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
}

nav.navigation.posts-navigation div.nav-links div.nav-previous a,
nav.navigation.posts-navigation div.nav-links div.nav-next a{
    color: white;
    background-color: #023C59;
    padding: 12px 20px;
    font-family: "Oswald", serif;
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    gap: 12px;
    justify-content: space-around;
}

nav.navigation.posts-navigation div.nav-links div.nav-previous a::after{
    content: "";
    background: url("../inc/assets/icons/events-button-arrow.svg") no-repeat center;
    background-size: auto;
    background-size: contain;
    width: 16px;
    height: 14px;
}

nav.navigation.posts-navigation div.nav-links div.nav-next a::before{
    content: "";
    background: url("../inc/assets/icons/events-button-arrow.svg") no-repeat center;
    background-size: auto;
    background-size: contain;
    width: 16px;
    height: 14px;
    transform: rotate(180deg);
}

/* Added spacer class for general use - 12/3/24 GS */
.standardSpacer{
	height: 100px;
}

@media only screen and (max-width: 1024px){
	.standardSpacer{
		height: 0px;
	}
}

/* Added classes to vertically align columns and stack columns for mobile R->L - 12/5/24 GS */
@media only screen and (max-width: 768px){
    .row.stackReverse{
        flex-direction: column-reverse;
    }
}

@media only screen and (min-width: 768px){
    .row.alignVertical{
        align-items: center;
    }
}