@charset "UTF-8";
/* _master.scss */
/* ============ LIBRARIES ============ */
/* _flexbox-grid.scss */
@import "external/tiny-slider-2.9.2.min.css";
@import "external/glightbox.min.css";
@import url("../../global/CSS/global.css");
.flex-container,
.flex-container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

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

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

.flex-col.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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

.flex-col-xs-12 {
  -ms-flex-preferred-size: 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 {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}

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

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

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

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

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

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

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

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

.last-xs {
  -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 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .flex-col-sm {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .flex-col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .flex-col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .flex-col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .flex-col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .flex-col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .flex-col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .flex-col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .flex-col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .flex-col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .flex-col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .flex-col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .flex-col-sm-12 {
    -ms-flex-preferred-size: 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 {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-sm {
    -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 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .flex-col-md {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .flex-col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .flex-col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .flex-col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .flex-col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .flex-col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .flex-col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .flex-col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .flex-col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .flex-col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .flex-col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .flex-col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .flex-col-md-12 {
    -ms-flex-preferred-size: 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 {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-md {
    -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 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .flex-col-lg {
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .flex-col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .flex-col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .flex-col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .flex-col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .flex-col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .flex-col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .flex-col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .flex-col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .flex-col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .flex-col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .flex-col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .flex-col-lg-12 {
    -ms-flex-preferred-size: 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 {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
/* ============ VARIABLES ============ */
/* _variables.scss */
/* ============ Colors ============ */
/* ============ Fonts ============ */
/* ============ Breakpoints ============ */
/*
.example { 
  width: 100%;

  @include bp-sm {
    width: 50%;
  }
}
*/
/* ============ 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;
  -webkit-transition: opacity 0.25s ease;
  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;
}

/* ============ Backgrounds ============ */
.leaf-background,
.leaf-background-reverse {
  position: relative;
}
.leaf-background::before,
.leaf-background-reverse::before {
  aspect-ratio: 5/3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 120rem;
  z-index: -2;
}
@media only screen and (min-width: 1024px) {
  .leaf-background::before,
  .leaf-background-reverse::before {
    width: 120vw;
  }
}
@media only screen and (min-width: 1440px) {
  .leaf-background::before,
  .leaf-background-reverse::before {
    width: 105vw;
  }
}

.leaf-background::before {
  background-image: url("../images/shape-leaf-bg-beige-1.png");
}

.leaf-background-reverse::before {
  background-image: url("../images/shape-leaf-bg-beige-2.png");
}

.plant-background {
  padding-bottom: 16rem;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .plant-background {
    padding-bottom: 8rem;
  }
}
.plant-background::after {
  aspect-ratio: 1/1;
  background: url("../images/svg/plant-sidebar.svg") center/contain no-repeat;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 38rem;
  z-index: -1;
}

.shape-background {
  position: relative;
}
.shape-background::before {
  aspect-ratio: 1/2.75;
  background: url("../images/background-shape-right.png") center/contain no-repeat;
  content: "";
  position: absolute;
  right: -2.4rem;
  top: 100%;
  -webkit-transform: translate(1px, -50%);
          transform: translate(1px, -50%);
  width: 40rem;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .shape-background::before {
    right: -4rem;
  }
}
@media only screen and (min-width: 1024px) {
  .shape-background::before {
    right: -8rem;
  }
}
@media only screen and (min-width: 1440px) {
  .shape-background::before {
    right: -12vw;
    width: 48rem;
  }
}
@media (max-width: 767px) {
  .shape-background::before {
    display: none;
  }
}

.shape-background-center,
.shape-background-center-reverse {
  position: relative;
}
.shape-background-center::before,
.shape-background-center-reverse::before {
  aspect-ratio: 800/899;
  background: url("../images/background-shape-center.png") center/contain no-repeat;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100vw + 2px);
  z-index: -1;
}
@media (max-width: 767px) {
  .shape-background-center::before,
  .shape-background-center-reverse::before {
    display: none;
  }
}
@media only screen and (min-width: 1440px) {
  .shape-background-center::before,
  .shape-background-center-reverse::before {
    aspect-ratio: unset;
    background-size: 100% 100%;
    height: 1620px;
  }
}

.shape-background-center-reverse::before {
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
          transform: translate(-50%, -50%) scaleX(-1);
}

/* ============ Hidden Content ============ */
.sr-only,
.dn,
.hidden {
  display: none;
}

/* ============ Text Color ============ */
.white {
  color: white !important;
}

.invert, .page-alert-message {
  color: white;
}
.invert *, .page-alert-message * {
  color: white;
}

/* ============ 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%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

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

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

.flex-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex-spread {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.center-block {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.center-block h1, .center-block h2, .center-block h3, .center-block h4, .center-block h5, .center-block h6, .center-block p, .center-block ul, .center-block ol, .center-block blockquote, .center-block hr {
  max-width: 100%;
  width: 96rem;
}

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

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

.transition {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

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

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

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

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

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

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

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

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

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

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

/* ============ Tiny Slider Styles ============ */
.tns-controls {
  outline: none;
}
.tns-controls button {
  outline: none;
}

/* ============ GLightbox Styles ============ */
#glightbox-slider .gdesc-inner {
  background-color: #f8ecd7;
}
#glightbox-slider .gslide-title {
  font-family: brother-1816, sans-serif;
  margin: 0;
}

/* ============ Search Results ============ */
.pageSearch h1 {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* _animations.scss */
.children-slide-in > * {
  opacity: 0;
  -webkit-transform: translate(-24px);
          transform: translate(-24px);
}
.children-slide-in > *:nth-child(1) {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
}
.children-slide-in > *:nth-child(2) {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
}
.children-slide-in > *:nth-child(3) {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}
.children-slide-in > *:nth-child(4) {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
}
.children-slide-in > *:nth-child(5) {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
}
.children-slide-in > *:nth-child(6) {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
}
.children-slide-in > *:nth-child(7) {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
}
.children-slide-in > *:nth-child(8) {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
}
.children-slide-in > *:nth-child(9) {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
}
.children-slide-in > *:nth-child(10) {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
}
.children-slide-in > *:nth-child(11) {
  -webkit-animation-delay: 2.2s !important;
          animation-delay: 2.2s !important;
}
.children-slide-in > *:nth-child(12) {
  -webkit-animation-delay: 2.4s !important;
          animation-delay: 2.4s !important;
}
.children-slide-in > *:nth-child(13) {
  -webkit-animation-delay: 2.6s !important;
          animation-delay: 2.6s !important;
}
.children-slide-in > *:nth-child(14) {
  -webkit-animation-delay: 2.8s !important;
          animation-delay: 2.8s !important;
}

.children-slide-in.load > * {
  -webkit-animation: slide-in 0.25s ease-out forwards;
          animation: slide-in 0.25s ease-out forwards;
}

@-webkit-keyframes slide-in {
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes slide-in {
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.children-fade-in > *:not(span) {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
}
.children-fade-in > *:not(span):nth-child(1) {
  -webkit-animation-delay: 0.1s !important;
          animation-delay: 0.1s !important;
}
.children-fade-in > *:not(span):nth-child(2) {
  -webkit-animation-delay: 0.2s !important;
          animation-delay: 0.2s !important;
}
.children-fade-in > *:not(span):nth-child(3) {
  -webkit-animation-delay: 0.3s !important;
          animation-delay: 0.3s !important;
}
.children-fade-in > *:not(span):nth-child(4) {
  -webkit-animation-delay: 0.4s !important;
          animation-delay: 0.4s !important;
}
.children-fade-in > *:not(span):nth-child(5) {
  -webkit-animation-delay: 0.5s !important;
          animation-delay: 0.5s !important;
}
.children-fade-in > *:not(span):nth-child(6) {
  -webkit-animation-delay: 0.6s !important;
          animation-delay: 0.6s !important;
}
.children-fade-in > *:not(span):nth-child(7) {
  -webkit-animation-delay: 0.7s !important;
          animation-delay: 0.7s !important;
}
.children-fade-in > *:not(span):nth-child(8) {
  -webkit-animation-delay: 0.8s !important;
          animation-delay: 0.8s !important;
}
.children-fade-in > *:not(span):nth-child(9) {
  -webkit-animation-delay: 0.9s !important;
          animation-delay: 0.9s !important;
}
.children-fade-in > *:not(span):nth-child(10) {
  -webkit-animation-delay: 1s !important;
          animation-delay: 1s !important;
}
.children-fade-in > *:not(span):nth-child(11) {
  -webkit-animation-delay: 1.1s !important;
          animation-delay: 1.1s !important;
}
.children-fade-in > *:not(span):nth-child(12) {
  -webkit-animation-delay: 1.2s !important;
          animation-delay: 1.2s !important;
}
.children-fade-in > *:not(span):nth-child(13) {
  -webkit-animation-delay: 1.3s !important;
          animation-delay: 1.3s !important;
}
.children-fade-in > *:not(span):nth-child(14) {
  -webkit-animation-delay: 1.4s !important;
          animation-delay: 1.4s !important;
}
.children-fade-in > *:not(span):nth-child(15) {
  -webkit-animation-delay: 1.5s !important;
          animation-delay: 1.5s !important;
}
.children-fade-in > *:not(span):nth-child(16) {
  -webkit-animation-delay: 1.6s !important;
          animation-delay: 1.6s !important;
}
.children-fade-in > *:not(span):nth-child(17) {
  -webkit-animation-delay: 1.7s !important;
          animation-delay: 1.7s !important;
}
.children-fade-in > *:not(span):nth-child(18) {
  -webkit-animation-delay: 1.8s !important;
          animation-delay: 1.8s !important;
}
.children-fade-in > *:not(span):nth-child(19) {
  -webkit-animation-delay: 1.9s !important;
          animation-delay: 1.9s !important;
}
.children-fade-in > *:not(span):nth-child(20) {
  -webkit-animation-delay: 2s !important;
          animation-delay: 2s !important;
}
.children-fade-in > *:not(span):nth-child(21) {
  -webkit-animation-delay: 2.1s !important;
          animation-delay: 2.1s !important;
}
.children-fade-in > *:not(span):nth-child(22) {
  -webkit-animation-delay: 2.2s !important;
          animation-delay: 2.2s !important;
}
.children-fade-in > *:not(span):nth-child(23) {
  -webkit-animation-delay: 2.3s !important;
          animation-delay: 2.3s !important;
}
.children-fade-in > *:not(span):nth-child(24) {
  -webkit-animation-delay: 2.4s !important;
          animation-delay: 2.4s !important;
}
.children-fade-in > *:not(span):nth-child(25) {
  -webkit-animation-delay: 2.5s !important;
          animation-delay: 2.5s !important;
}
.children-fade-in > *:not(span):nth-child(26) {
  -webkit-animation-delay: 2.6s !important;
          animation-delay: 2.6s !important;
}
.children-fade-in > *:not(span):nth-child(27) {
  -webkit-animation-delay: 2.7s !important;
          animation-delay: 2.7s !important;
}
.children-fade-in > *:not(span):nth-child(28) {
  -webkit-animation-delay: 2.8s !important;
          animation-delay: 2.8s !important;
}
.children-fade-in > *:not(span):nth-child(29) {
  -webkit-animation-delay: 2.9s !important;
          animation-delay: 2.9s !important;
}

.children-fade-in.load > *:not(span) {
  -webkit-animation: fade-in 0.25s ease-out forwards;
          animation: fade-in 0.25s ease-out forwards;
}

@-webkit-keyframes fade-in {
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes fade-in {
  to {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.slide-in-from-right {
  opacity: 0;
  -webkit-transform: translate(40px, 0);
          transform: translate(40px, 0);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.slide-in-from-right.load {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.slide-in-from-left {
  opacity: 0;
  -webkit-transform: translate(-40px, 0);
          transform: translate(-40px, 0);
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
.slide-in-from-left.load {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  75% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  75% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes wobble {
  0% {
    padding: 1.2rem 2.4rem 1.2rem 2.4rem;
  }
  25% {
    padding: 1.2rem 2rem 1.2rem 2.8rem;
  }
  50% {
    padding: 1.2rem 2.8rem 1.2rem 2rem;
  }
  75% {
    padding: 1.2rem 2.2rem 1.2rem 2.6rem;
  }
  100% {
    padding: 1.2rem 2.4rem 1.2rem 2.4rem;
  }
}
/* ============ BASE ============ */
/* _reset.scss */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
}

body {
  margin: 0;
  padding: 0;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #fff9e4;
  height: 100%;
}

body.locked {
  overflow: hidden;
}

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

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

img {
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

*::-moz-selection {
  background-color: #7d9a2d;
  color: #ffffff;
}

*::selection {
  background-color: #7d9a2d;
  color: #ffffff;
}

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

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

.clearfix::after {
  clear: both;
}

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

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

*:target:focus {
  outline: none;
}

hr {
  width: 100%;
}

input {
  outline: none;
}

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

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

/* _typography.scss */
body {
  font-size: 1.8rem;
  font-family: brother-1816, sans-serif;
}

body h1,
body .h1 {
  font-family: brother-1816-printed, sans-serif;
  font-weight: bold;
  font-size: 52px;
  line-height: 60px;
  margin: 0 0 3rem;
}
@media only screen and (min-width: 1024px) {
  body h1,
  body .h1 {
    font-size: 108px;
    line-height: 112px;
  }
}
body h2 {
  color: #6d7e29;
  font-family: brother-1816, sans-serif;
  font-weight: bold;
  font-size: 40px;
  line-height: 48px;
  margin: 0 0 2.4rem;
}
@media only screen and (min-width: 1024px) {
  body h2 {
    font-size: 60px;
    line-height: 65px;
  }
}
body h3 {
  font-family: brother-1816, sans-serif;
  font-weight: bolder;
  font-size: 36px;
  line-height: 40px;
  margin: 0 0 2rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  body h3 {
    font-size: 42px;
    line-height: 48px;
  }
}
body h4 {
  font-weight: 500;
  font-family: brother-1816, sans-serif;
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 1.5rem;
}
@media only screen and (min-width: 1024px) {
  body h4 {
    font-size: 24px;
    line-height: 30px;
  }
}
body em {
  font-style: italic;
}
body p {
  color: #293215;
  font-family: brother-1816, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 1.6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
blockquote,
hr {
  max-width: 96rem;
}
h1[style*="text-align: center;"], h1[style*="text-align:center;"],
h2[style*="text-align: center;"],
h2[style*="text-align:center;"],
h3[style*="text-align: center;"],
h3[style*="text-align:center;"],
h4[style*="text-align: center;"],
h4[style*="text-align:center;"],
h5[style*="text-align: center;"],
h5[style*="text-align:center;"],
h6[style*="text-align: center;"],
h6[style*="text-align:center;"],
p[style*="text-align: center;"],
p[style*="text-align:center;"],
ul[style*="text-align: center;"],
ul[style*="text-align:center;"],
ol[style*="text-align: center;"],
ol[style*="text-align:center;"],
blockquote[style*="text-align: center;"],
blockquote[style*="text-align:center;"],
hr[style*="text-align: center;"],
hr[style*="text-align:center;"] {
  margin-left: auto;
  margin-right: auto;
}

.center h1,
.center h2,
.center h3,
.center h4,
.center h5,
.center h6,
.center p,
.center blockquote,
[style*="text-align: center;"] h1,
[style*="text-align: center;"] h2,
[style*="text-align: center;"] h3,
[style*="text-align: center;"] h4,
[style*="text-align: center;"] h5,
[style*="text-align: center;"] h6,
[style*="text-align: center;"] p,
[style*="text-align: center;"] blockquote,
[style*="text-align:center;"] h1,
[style*="text-align:center;"] h2,
[style*="text-align:center;"] h3,
[style*="text-align:center;"] h4,
[style*="text-align:center;"] h5,
[style*="text-align:center;"] h6,
[style*="text-align:center;"] p,
[style*="text-align:center;"] blockquote {
  margin-left: auto;
  margin-right: auto;
}

ul.column-count-3,
ol.column-count-3 {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  ul.column-count-3,
  ol.column-count-3 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media only screen and (min-width: 1024px) {
  ul.column-count-3,
  ol.column-count-3 {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
ul.column-count-2,
ol.column-count-2 {
  -webkit-column-count: 1;
     -moz-column-count: 1;
          column-count: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  ul.column-count-2,
  ol.column-count-2 {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
ul li,
ol li {
  color: #293215;
  font-family: brother-1816, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.6;
}

a {
  color: #293215;
  font-family: brother-1816, sans-serif;
  font-weight: bold;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}
a:hover {
  color: #000000;
  text-decoration: underline;
}

hr {
  border: none;
  border-top: 2px solid #f2ddb8;
  margin: 4rem 0;
  max-width: 96rem;
}

blockquote {
  border-left: 2px solid #7d9a2d;
  color: #143319;
  font: bold 2.4rem brother-1816, sans-serif;
  margin: 4rem 0;
  padding-left: 2.4rem;
}

input,
textarea {
  font-family: brother-1816, sans-serif;
}

@media screen and (max-width: 767px) {
  .templatecontent img.sw-image-side {
    float: none !important;
    margin: 0 auto !important;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  div.table-responsive {
    width: 100% !important;
    max-width: 100% !important;
  }
  table {
    max-width: 100% !important;
    width: 100% !important;
    min-width: 100% !important;
  }
  table tr td {
    font-size: 1rem !important;
  }
  table tr td p, table tr td span, table tr td em, table tr td li, table tr td strong {
    font-size: 1rem !important;
  }
}
.templatecontent video {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  max-width: 900px;
  margin: 0 auto;
}

/* _buttons.scss */
.button, #aspnetForm .swform .swformactions .swformsubmit .swformsubmit__btn {
  border-radius: 4rem;
  border: none;
  cursor: pointer;
  display: inline-block;
  font: bold 1.1rem brother-1816, sans-serif;
  outline: none;
  padding: 1.2rem 2.4rem;
  position: relative;
  text-align: center;
  text-decoration: none !important;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
  background-color: #dd4039;
  color: #ffffff !important;
}
.button:hover, #aspnetForm .swform .swformactions .swformsubmit .swformsubmit__btn:hover {
  -webkit-animation: rotate 0.7s ease-in-out both, wobble 0.7s ease-in-out 0.06s both;
          animation: rotate 0.7s ease-in-out both, wobble 0.7s ease-in-out 0.06s both;
}
@media only screen and (min-width: 1024px) {
  .button, #aspnetForm .swform .swformactions .swformsubmit .swformsubmit__btn {
    font-size: 1.6rem;
  }
}
.button[disabled], #aspnetForm .swform .swformactions .swformsubmit [disabled].swformsubmit__btn {
  pointer-events: none;
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  75% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes wobble {
  0% {
    padding: 1.2rem 2.4rem 1.2rem 2.4rem;
  }
  25% {
    padding: 1.2rem 2rem 1.2rem 2.8rem;
  }
  50% {
    padding: 1.2rem 2.8rem 1.2rem 2rem;
  }
  75% {
    padding: 1.2rem 2.2rem 1.2rem 2.6rem;
  }
  100% {
    padding: 1.2rem 2.4rem 1.2rem 2.4rem;
  }
}
.satisfi_chat-button img {
  display: inline-block;
}

/* _tables.scss */
.templatecontent table {
  background-color: #f2ddb8;
  border: none;
  border-collapse: collapse;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 100%;
  min-width: 48rem;
  text-align: left;
}
.templatecontent table th {
  border: 2px solid #f2ddb8;
  padding: 1.6rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  .templatecontent table th {
    padding: 2.4rem;
  }
}
.templatecontent table td {
  background-color: #ffffff;
  border: 2px solid #f2ddb8;
  padding: 1.6rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  .templatecontent table td {
    padding: 2.4rem;
  }
}
.templatecontent table td:not(:first-child):last-child {
  color: #4281a4;
  font-weight: bold;
}

.table-container {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .table-container {
    margin: 4rem 0;
  }
}
@media only screen and (min-width: 1440px) {
  .table-container {
    margin: 6.4rem 0;
  }
}
@media only screen and (min-width: 1440px) {
  .table-container {
    margin: 8rem 0;
  }
}

.table-decoration {
  background: url("../images/table-left-top.png") left top/12rem 10rem no-repeat, url("../images/table-right-top.png") right top/12rem 10rem no-repeat, url("../images/table-center-bottom.png") center bottom/32rem 16rem no-repeat;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  padding: 4rem 0;
}
@media only screen and (min-width: 768px) {
  .table-decoration {
    background: url("../images/table-left-top.png") left top/12rem 10rem no-repeat, url("../images/table-right-top.png") right top/12rem 10rem no-repeat, url("../images/table-left-bottom.png") left bottom/12rem 16rem no-repeat, url("../images/table-right-bottom.png") right bottom/12rem 14rem no-repeat;
    margin: 0 -6.4rem;
    padding: 4rem 6.4rem 0;
  }
  .table-decoration.short {
    background: url("../images/table-left-top.png") left top/12rem 10rem no-repeat, url("../images/table-right-top.png") right top/12rem 10rem no-repeat;
  }
}

.table-responsive {
  overflow: auto;
  padding-bottom: 1.6rem;
}
.table-responsive::-webkit-scrollbar {
  -webkit-appearance: none;
}
.table-responsive::-webkit-scrollbar:vertical {
  width: 0;
}
.table-responsive::-webkit-scrollbar:horizontal {
  height: 12px;
}
.table-responsive::-webkit-scrollbar-thumb {
  background-color: #7d9a2d;
  border: 2px solid #1B391F;
  border-radius: 10px;
}

/* ============ SITEWRENCH ============ */
/* _alert.scss */
.page-alert-wrapper {
  display: none !important;
}

.page-alert-message {
  background-color: #dd4039;
  border-radius: 0;
  border: none;
  color: white;
  font: normal 1.6rem/1.5 brother-1816, sans-serif;
  left: unset;
  margin: 0;
  padding: 2rem 6.4rem 2rem 2rem;
  position: relative;
  top: unset;
  width: 100%;
}
@media only screen and (min-width: 1440px) {
  .page-alert-message {
    font-size: 2rem;
    padding-left: calc((100vw - 1000px) / 2);
    padding-right: calc((100vw - 1000px) / 2);
    text-align: center;
  }
}
.page-alert-message .controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.page-alert-message .controls #page-alert-dismiss {
  background: transparent url("../images/svg/icon-close.svg") center/contain no-repeat;
  border: none;
  cursor: pointer;
  font-size: 0;
  height: 3.2rem;
  width: 3.2rem;
}

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

#aspnetForm .swform {
  max-width: 96rem;
}
#aspnetForm .swform .swformfield__label, #aspnetForm .swform .swformfieldlist__label {
  font-weight: bold;
}
#aspnetForm .swform .swformfieldlist__label {
  margin-bottom: 0.8rem;
}
#aspnetForm .swform .swformfield input[type=text],
#aspnetForm .swform .swformfield input[type=email],
#aspnetForm .swform .swformfield input[type=tel],
#aspnetForm .swform .swformfield input[type=number],
#aspnetForm .swform .swformfield input[type=date],
#aspnetForm .swform .swformfield textarea,
#aspnetForm .swform .swformfield select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: white;
  border: 2px solid #f2ddb8;
  font: normal 1.8rem brother-1816, sans-serif;
  padding: 0.8rem 1.6rem;
  width: 100%;
}
#aspnetForm .swform .swformfield select {
  background: white url("../images/svg/icon-arrow-accordions.svg") calc(100% - 1.6rem) center/1.6rem auto no-repeat;
}
#aspnetForm .swform .swformfield--checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#aspnetForm .swform .swformfield--checkbox .swformfield__label {
  margin-left: 0.8rem;
}
#aspnetForm .swform .swformfield--file .swformfieldwrapper {
  background-color: white;
  border: 2px solid #f2ddb8;
  margin-top: 0.8rem;
  padding: 1.6rem;
}
#aspnetForm .swform .swformactions .swformsubmit .swformsubmit__btn img {
  -webkit-filter: brightness(2);
          filter: brightness(2);
  vertical-align: 1px;
}

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

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

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

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

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

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

#camp-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[5];
  grid-template-columns: repeat(5, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  border-top: 1px solid #f2ddb8;
  border-bottom: 1px solid #f2ddb8;
}

#camp-grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

#camp-grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}

#camp-grid > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}

#camp-grid > *:nth-child(4) {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
}

#camp-grid > *:nth-child(5) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
@media screen and (max-width: 767px) {
  #camp-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    border-top: none;
    border-bottom: none;
  }
}
#camp-grid .header {
  text-align: center;
  padding: 1rem;
  border-left: 1px solid #f2ddb8;
  border-bottom: 1px solid #f2ddb8;
  background-color: rgba(255, 255, 255, 0.5);
}
#camp-grid .header:last-of-type {
  border-right: 1px solid #f2ddb8;
}
@media screen and (max-width: 767px) {
  #camp-grid .header {
    display: none;
  }
}
#camp-grid .block {
  border-left: 1px solid #f2ddb8;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  #camp-grid .block {
    display: none;
  }
}
#camp-grid .camp {
  border-radius: 14px;
  margin: 1rem;
  font-size: 14;
  padding: 1rem;
}
@media screen and (min-width: 767px) {
  #camp-grid .camp {
    text-align: center;
  }
}
#camp-grid .camp .camp-header {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: bold;
}
#camp-grid .camp * {
  font-size: 1em;
  margin-bottom: 10px;
  word-break: break-word;
}
@media screen and (max-width: 767px) {
  #camp-grid .camp[data-duplicate=true] {
    display: none;
  }
}

/* ============ COMPONENTS ============ */
/* _header.scss */
.masthead {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1B391F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 2rem 2rem 0;
  position: relative;
  width: 100%;
  z-index: 1000;
}
.masthead::before, .masthead::after {
  content: "";
  height: 128px;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 1px);
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .masthead::before, .masthead::after {
    height: 171px;
  }
}
@media only screen and (min-width: 1024px) {
  .masthead::before, .masthead::after {
    height: 240px;
  }
}
.masthead::before {
  background: url("../images/svg/header-curve-top-layer.svg") center bottom/auto 100% no-repeat;
  z-index: -1;
}
@media only screen and (min-width: 1440px) {
  .masthead::before {
    background-image: url("../images/svg/header-curve-top-layer-stretch.svg");
    background-size: 100% 100%;
  }
}
.masthead::after {
  background: url("../images/svg/header-curve-bottom-layer.svg") center bottom/auto 100% no-repeat;
  z-index: -2;
}
@media only screen and (min-width: 1440px) {
  .masthead::after {
    background-image: url("../images/svg/header-curve-bottom-layer-stretch.svg");
    background-size: 100% 100%;
  }
}
@-webkit-keyframes sway {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(0.4rem);
            transform: translateX(0.4rem);
  }
  35% {
    -webkit-transform: translateX(-0.8rem);
            transform: translateX(-0.8rem);
  }
  65% {
    -webkit-transform: translateX(0.8rem);
            transform: translateX(0.8rem);
  }
  90% {
    -webkit-transform: translateX(-0.4rem);
            transform: translateX(-0.4rem);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes sway {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10% {
    -webkit-transform: translateX(0.4rem);
            transform: translateX(0.4rem);
  }
  35% {
    -webkit-transform: translateX(-0.8rem);
            transform: translateX(-0.8rem);
  }
  65% {
    -webkit-transform: translateX(0.8rem);
            transform: translateX(0.8rem);
  }
  90% {
    -webkit-transform: translateX(-0.4rem);
            transform: translateX(-0.4rem);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.masthead .logo-wrap {
  margin: 0;
}
.masthead .logo {
  display: block;
  height: 4.8rem;
  min-width: 21.2rem;
  width: auto;
}
@media only screen and (min-width: 768px) {
  .masthead .logo:hover {
    -webkit-animation: rotateLogo 0.7s ease-in-out both;
            animation: rotateLogo 0.7s ease-in-out both;
  }
}
@media only screen and (min-width: 1440px) {
  .masthead .logo {
    height: 6.4rem;
    min-width: 28rem;
  }
}
.masthead .hours {
  background: url("../images/svg/hours-background-shape.svg") center/contain no-repeat;
  padding: 2.4rem;
  position: absolute;
  right: 2rem;
  top: 7.2rem;
  text-align: center;
}
@media (min-width: 1200px) {
  .masthead .hours {
    padding: 4rem 6.4rem;
    right: 12rem;
    top: 8rem;
  }
}
.masthead .hours .matrix-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.masthead .hours__title {
  font-size: 1.2rem;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .masthead .hours__title {
    font-size: 1.6rem;
  }
}
@media (min-width: 1200px) {
  .masthead .hours__ranges {
    margin-bottom: 1.6rem;
  }
}
.masthead .hours__range {
  display: none;
}
.masthead .hours__open, .masthead .hours__close {
  color: #7d9a2d;
  font: bold 2rem brother-1816, sans-serif;
  position: relative;
}
@media (min-width: 1200px) {
  .masthead .hours__open, .masthead .hours__close {
    font-size: 3.2rem;
    font-weight: 900;
  }
}
.masthead .hours__open span, .masthead .hours__close span {
  display: none;
}
@media (min-width: 1200px) {
  .masthead .hours__open span, .masthead .hours__close span {
    color: #143319;
    display: block;
    font: normal 1.2rem brother-1816, sans-serif;
    left: 50%;
    position: absolute;
    top: calc(100% - 1rem);
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.masthead .hours__open::after {
  content: "–";
  margin: 0 2px;
}
.masthead .hours__link {
  font: 900 1.6rem brother-1816, sans-serif;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
@media (max-width: 1199px) {
  .masthead .hours__link {
    display: none;
  }
}
.masthead .hours__link::before {
  background: url("../images/svg/icon-calendar.svg") center/contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.6rem;
  margin-right: 0.4rem;
  width: 1.6rem;
  vertical-align: -1px;
}
.masthead .hours__button::before {
  background: url("../images/svg/icon-ticket.svg") center/contain no-repeat;
  content: "";
  display: inline-block;
  height: 2rem;
  margin-right: 0.4rem;
  width: 2rem;
  vertical-align: -2px;
}
@media (max-width: 1199px) {
  .masthead .hours__button {
    background: none;
    color: #000000 !important;
    font-size: 1.4rem;
    padding: 0;
  }
  .masthead .hours__button::before {
    background: url("../images/svg/icon-ticket-red.svg") center/contain no-repeat;
    height: 1.6rem;
    width: 1.6rem;
    vertical-align: -4px;
  }
}
.masthead .utility {
  clip-path: polygon(-4rem 0, 4rem 0, 4rem 100%, -4rem 100%);
  display: block;
  left: 2.4rem;
  position: absolute;
  top: 55vh;
  -webkit-transition: clip-path 0.5s ease;
  transition: clip-path 0.5s ease;
}
@media (max-width: 1199px), (max-height: 800px) {
  .masthead .utility {
    display: none;
  }
}
.masthead .utility--active {
  clip-path: polygon(-4rem 0, 100% 0, 100% 100%, -4rem 100%);
}
.masthead .utility--active .utility__toggle {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.masthead .utility--active ul {
  -webkit-transform: translateX(-2.6rem) !important;
          transform: translateX(-2.6rem) !important;
}
.masthead .utility.sticky {
  position: fixed;
  top: 8rem !important;
}
.masthead .utility__toggle {
  cursor: pointer;
  display: inline-block;
  position: relative;
  -webkit-transform: translateX(-1.6rem) rotate(-180deg);
          transform: translateX(-1.6rem) rotate(-180deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 1;
}
.masthead .utility ul {
  background: url("../images/svg/hero-active-menu-bg.svg") center/contain no-repeat;
  list-style: none;
  margin: -7.2rem 0 0;
  padding: 8rem 3.4rem 8rem 3.6rem;
  position: relative;
  -webkit-transform: translateX(calc(-100% - 2.4rem));
          transform: translateX(calc(-100% - 2.4rem));
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 0;
}
.masthead .utility li {
  display: block;
}
.masthead .utility li:not(:last-child) {
  margin-bottom: 0.4rem;
}
.masthead .utility a {
  color: #ffffff;
  font: 500 1.4rem brother-1816, sans-serif;
  text-transform: uppercase;
}
.masthead .utility a::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 1.6rem;
  margin-right: 0.8rem;
  width: 1.6rem;
  vertical-align: -2px;
}
.masthead .utility a[href*=tickets]::before {
  background-image: url("../images/svg/icon-ticket.svg");
}
.masthead .utility a[href*=member]::before {
  background-image: url("../images/svg/icon-member.svg");
}
.masthead .utility a[href*=donate]::before {
  background-image: url("../images/svg/icon-donate.svg");
}
.masthead .utility a[href*=event]::before {
  background-image: url("../images/svg/icon-calendar-white.svg");
}
.masthead .utility a[href*=adopt]::before {
  background-image: url("../images/svg/icon-adopt.svg");
}
.masthead .utility a[href*=shop]::before {
  background-image: url("../images/svg/fwz-shopicon.svg");
}
.masthead .utility a[href*=search]::before {
  background-image: url("../images/svg/icon-search.svg");
}
.masthead .header-curve {
  left: -25%;
  position: absolute;
  top: 50%;
  width: 150vw;
  z-index: -1;
}

.site-search {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(20, 51, 25, 0.9);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  -webkit-transition: opacity 0.25s ease, z-index 0s 0.25s;
  transition: opacity 0.25s ease, z-index 0s 0.25s;
  width: 100vw;
  z-index: -1;
}
.site-search.open {
  opacity: 1;
  pointer-events: all;
  -webkit-transition: opacity 0.25s ease, z-index 0s;
  transition: opacity 0.25s ease, z-index 0s;
  z-index: 1000;
}

#search-close {
  background: transparent url("../images/svg/icon-close.svg") center/contain no-repeat;
  cursor: pointer;
  height: 3.2rem;
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 3.2rem;
}

.searchPanel {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.searchPanel #searchField {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-bottom: 2px solid white;
  color: white;
  font: normal 3.2rem brother-1816, sans-serif;
  padding: 0.8rem 4.8rem 0.8rem 0;
}
.searchPanel #searchButton {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: white url("../images/svg/icon-arrow-events-search.svg") center/2.4rem no-repeat;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  font-size: 0;
  height: 4rem;
  margin-left: -4rem;
  padding: 0;
  position: relative;
  width: 4rem;
  z-index: 1;
}

@media (min-width: 1200px) {
  body:not(.home) .hours {
    right: 4rem;
  }
}

@-webkit-keyframes rotateLogo {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  75% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@keyframes rotateLogo {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(3deg);
            transform: rotate(3deg);
  }
  50% {
    -webkit-transform: rotate(-3deg);
            transform: rotate(-3deg);
  }
  75% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes wobbleLogo {
  0% {
    padding: 0.8rem 1rem 0.8rem 1rem;
  }
  25% {
    padding: 0.8rem 1rem 0.8rem 1.2rem;
  }
  50% {
    padding: 0.8rem 1.2rem 0.8rem 1rem;
  }
  75% {
    padding: 0.8rem 1.1rem 0.8rem 1rem;
  }
  100% {
    padding: 0.8rem 1.1rem 0.8rem 1.2rem;
  }
}
@keyframes wobbleLogo {
  0% {
    padding: 0.8rem 1rem 0.8rem 1rem;
  }
  25% {
    padding: 0.8rem 1rem 0.8rem 1.2rem;
  }
  50% {
    padding: 0.8rem 1.2rem 0.8rem 1rem;
  }
  75% {
    padding: 0.8rem 1.1rem 0.8rem 1rem;
  }
  100% {
    padding: 0.8rem 1.1rem 0.8rem 1.2rem;
  }
}
/* _flex-nav.scss */
nav.flex-nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: 3.2rem;
  padding: 0;
}
@media screen and (max-width: 1199px) {
  nav.flex-nav {
    display: none;
  }
}
nav.flex-nav ul#mainnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 0;
  max-width: none;
  padding: 0;
}
nav.flex-nav ul#mainnav .sw-menucode-item {
  position: relative;
}
nav.flex-nav ul#mainnav .sw-menucode-item:not(:last-child) {
  margin-right: 36px;
}
nav.flex-nav ul#mainnav .sw-menucode-item:nth-last-child(2) > ul, nav.flex-nav ul#mainnav .sw-menucode-item:last-child > ul {
  left: auto;
  right: 0;
}
nav.flex-nav ul#mainnav .sw-menucode-item:nth-last-child(2) > ul ul, nav.flex-nav ul#mainnav .sw-menucode-item:last-child > ul ul {
  right: 100%;
  left: auto;
  top: 0;
}
nav.flex-nav ul#mainnav .sw-menucode-item:nth-last-child(2) > ul > li:not(:first-child) ul, nav.flex-nav ul#mainnav .sw-menucode-item:last-child > ul > li:not(:first-child) ul {
  top: -2px;
}
nav.flex-nav ul#mainnav .sw-menucode-item.hasChild::after {
  content: url("../images/svg/icon-arrow-down.svg");
  pointer-events: none;
  position: absolute;
  right: -1.6rem;
  top: -0.6rem;
  -webkit-transform-origin: center;
          transform-origin: center;
  z-index: 1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
nav.flex-nav ul#mainnav .sw-menucode-item.hasChild:hover::after {
  content: url("../images/svg/icon-arrow-up-green.svg");
  top: 0.2rem;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
nav.flex-nav ul#mainnav li {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}
nav.flex-nav ul#mainnav li .sw-menucode-item__link {
  transition: color 0.3s ease-out;
  -webkit-transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  -ms-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  font-size: 15px;
  letter-spacing: -0.2px;
  line-height: 24px;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
}
nav.flex-nav ul#mainnav li .sw-menucode-item__link:hover {
  background-color: transparent;
  color: #7d9a2d;
}
nav.flex-nav ul#mainnav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
nav.flex-nav ul#mainnav li .sw-menucode-list {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 2000;
  padding: 0;
  border-top: 0.8rem solid transparent;
}
nav.flex-nav ul#mainnav li .sw-menucode-list__item {
  background-color: #f8ecd7;
  display: block;
  position: relative;
  white-space: nowrap;
  padding: 0;
  -webkit-transition: background-color 0.25s ease;
  transition: background-color 0.25s ease;
  z-index: 999;
}
nav.flex-nav ul#mainnav li .sw-menucode-list__item.hasChild::after {
  content: url("../images/svg/icon-arrow-down-green.svg");
  pointer-events: none;
  position: absolute;
  right: 0.8rem;
  top: 0.2rem;
  -webkit-transform-origin: center;
          transform-origin: center;
  z-index: 1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
nav.flex-nav ul#mainnav li .sw-menucode-list__item.hasChild:hover::after {
  content: url("../images/svg/icon-arrow-down-green-light.svg");
  top: 0.8rem;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
nav.flex-nav ul#mainnav li .sw-menucode-list__item:not(:last-child) {
  border-bottom: 2px solid #f2ddb8;
}
nav.flex-nav ul#mainnav li .sw-menucode-list__item:hover {
  background-color: #f2ddb8;
}
nav.flex-nav ul#mainnav li .sw-menucode-list__item .sw-menucode-item__link {
  background: transparent;
  display: block;
  padding: 0.8rem 2.8rem 0.8rem 1.6rem;
  width: 100%;
}
nav.flex-nav ul#mainnav li .sw-menucode-list__item > a {
  padding-bottom: 0;
  text-transform: capitalize;
  color: #1B391F;
  -webkit-transition: background-color 0.25s ease, color 0.25s ease;
  transition: background-color 0.25s ease, color 0.25s ease;
}
nav.flex-nav ul#mainnav li .sw-menucode-list__item > a:hover {
  background-color: #f2ddb8;
}
nav.flex-nav ul#mainnav li .sw-menucode-list__item ul {
  background-color: #f2ddb8;
  border-bottom: 2px solid #f2ddb8;
  border-top: 2px solid #f2ddb8;
  left: 100%;
  max-width: none;
  top: -2px;
}
nav.flex-nav ul#mainnav li .sw-menucode-list__item ul li {
  background-color: transparent;
}
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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

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

.body-overlay {
  background: #000000;
  cursor: col-resize;
  display: block;
  height: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  -webkit-transition-delay: 0.44s !important;
          transition-delay: 0.44s !important;
  -webkit-transition: opacity 0.55s ease;
  transition: opacity 0.55s ease;
  visibility: hidden;
  width: 0;
  z-index: -100;
}
@media only screen and (min-width: 1024px) {
  .body-overlay {
    display: none;
  }
}
.body-overlay.active {
  height: 100%;
  opacity: 0.6;
  -webkit-transition-delay: 0.2s !important;
          transition-delay: 0.2s !important;
  -webkit-transition: opacity 0.55s ease;
  transition: opacity 0.55s ease;
  visibility: visible;
  width: 100%;
  z-index: 100;
}

#sidecar-toggle {
  background: url("../images/svg/icon-hamburger.svg") center no-repeat;
  border-radius: 0;
  display: block;
  height: 25px;
  width: 45px;
  margin-left: auto;
}
@media (min-width: 1200px) {
  #sidecar-toggle {
    display: none;
  }
}

/* ============ Sidecar Drawer ============ */
#sidecar {
  background: #143319 url("../images/svg/pattern-bamboo-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  right: -100%;
  text-align: left;
  top: 0;
  -webkit-transition: right 0.44s ease;
  transition: right 0.44s ease;
  width: 100%;
  z-index: 99999 !important;
}
#sidecar #close-sidecar {
  background: none;
  position: absolute;
  top: 3.2rem;
  right: 3.2rem;
}
#sidecar ul#mainnav {
  right: 0px;
}

#sidecar.slide-right {
  left: 100%;
  opacity: 1;
  -webkit-transition: -webkit-transform 0.44s ease-in-out;
  transition: -webkit-transform 0.44s ease-in-out;
  transition: transform 0.44s ease-in-out;
  transition: transform 0.44s ease-in-out, -webkit-transform 0.44s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.4rem;
  width: 36rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#sidecar.slide-right::-webkit-scrollbar {
  display: none;
}
@media only screen and (min-width: 1200px) {
  #sidecar.slide-right {
    display: none;
  }
}
#sidecar.slide-right.active {
  -webkit-box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
#sidecar.slide-right.active ul#mainnav li a {
  margin-left: 1.2rem;
  opacity: 1;
}

.slide-right__footer {
  height: auto;
  background-image: url("../images/svg/shape-sidecar-bg-curve.svg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  margin: auto -2.4rem -2.4rem -2.4rem;
  padding: 4rem;
}
.slide-right__footer ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1.6rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
  list-style: none;
  margin: 0 0 3.2rem;
  padding: 0;
}
.slide-right__footer a {
  transition: color 0.3s ease-out;
  -webkit-transition: color 0.3s ease-out;
  -moz-transition: color 0.3s ease-out;
  -ms-transition: color 0.3s ease-out;
  -o-transition: color 0.3s ease-out;
  color: #f2ddb8;
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-weight: normal;
}
.slide-right__footer a:focus {
  color: #7d9a2d;
}
.slide-right__footer-socials ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1.6666666667rem auto 1.6666666667rem auto 1.6666666667rem auto 1.6666666667rem auto;
  grid-template-columns: repeat(5, auto);
  gap: 1.6666666667rem;
  margin: 0;
}
.slide-right__footer-socials a {
  display: block;
  font-size: 0;
}
.slide-right__footer-socials a::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 3.2rem;
  width: 3.2rem;
}
.slide-right__footer-socials a[href*=facebook]::before {
  background-image: url("../images/svg/icon-facebook.svg");
}
.slide-right__footer-socials a[href*=twitter]::before {
  background-image: url("../images/svg/icon-twitter.svg");
}
.slide-right__footer-socials a[href*=instagram]::before {
  background-image: url("../images/svg/icon-instagram.svg");
}
.slide-right__footer-socials a[href*=youtube]::before {
  background-image: url("../images/svg/icon-youtube.svg");
}
.slide-right__footer-socials a[href*=tiktok]::before {
  background-image: url("../images/svg/icon-tiktok.svg");
}

/* ============ Sidecar Menu ============ */
nav#sidecar ul#mainnav {
  -webkit-padding-start: 0px;
  background: transparent;
  height: auto;
  padding-left: 2.4rem;
  position: relative;
  width: 100%;
}
nav#sidecar ul#mainnav #mn-home {
  display: none;
}
nav#sidecar ul#mainnav #mn-explore::before {
  content: url("../images/svg/menu-explore.svg");
}
nav#sidecar ul#mainnav #mn-conservation::before {
  content: url("../images/svg/menu-conservation.svg");
}
nav#sidecar ul#mainnav #mn-programs-and-camps::before {
  content: url("../images/svg/menu-programs.svg");
}
nav#sidecar ul#mainnav #mn-events::before {
  content: url("../images/svg/menu-events.svg");
}
nav#sidecar ul#mainnav #mn-support-the-zoo::before {
  content: url("../images/svg/menu-support.svg");
}
nav#sidecar ul#mainnav #mn-adoptions::before {
  content: url("../images/svg/icon-adopt.svg");
}
nav#sidecar ul#mainnav #mn-plan-an-event-::before {
  content: url("../images/svg/menu-icon-plan-an-event.svg");
}
nav#sidecar ul#mainnav > li {
  background: transparent;
  display: block;
  float: none;
  height: auto;
  margin: 0 0 1.6rem;
  padding: 0;
  position: relative;
  text-align: left;
  width: 100%;
}
nav#sidecar ul#mainnav > li:nth-child(1) a {
  -webkit-transition-delay: 0.05s !important;
          transition-delay: 0.05s !important;
}
nav#sidecar ul#mainnav > li:nth-child(2) a {
  -webkit-transition-delay: 0.1s !important;
          transition-delay: 0.1s !important;
}
nav#sidecar ul#mainnav > li:nth-child(3) a {
  -webkit-transition-delay: 0.15s !important;
          transition-delay: 0.15s !important;
}
nav#sidecar ul#mainnav > li:nth-child(4) a {
  -webkit-transition-delay: 0.2s !important;
          transition-delay: 0.2s !important;
}
nav#sidecar ul#mainnav > li:nth-child(5) a {
  -webkit-transition-delay: 0.25s !important;
          transition-delay: 0.25s !important;
}
nav#sidecar ul#mainnav > li:nth-child(6) a {
  -webkit-transition-delay: 0.3s !important;
          transition-delay: 0.3s !important;
}
nav#sidecar ul#mainnav > li:nth-child(7) a {
  -webkit-transition-delay: 0.35s !important;
          transition-delay: 0.35s !important;
}
nav#sidecar ul#mainnav > li:nth-child(8) a {
  -webkit-transition-delay: 0.4s !important;
          transition-delay: 0.4s !important;
}
nav#sidecar ul#mainnav > li:nth-child(9) a {
  -webkit-transition-delay: 0.45s !important;
          transition-delay: 0.45s !important;
}
nav#sidecar ul#mainnav > li::before {
  position: absolute;
  left: -20px;
  top: 8px;
}
nav#sidecar ul#mainnav > li > ul {
  display: block;
  float: none;
  margin: 0;
  max-height: 0px;
  overflow: hidden;
  padding: 0 0 0 0;
  position: relative;
  -webkit-transition: max-height 0.25s ease-in;
  transition: max-height 0.25s ease-in;
}
nav#sidecar ul#mainnav > li > ul.active {
  display: block;
  float: none;
  max-height: 530px;
  -webkit-transition: max-height 0.44s ease-in;
  transition: max-height 0.44s ease-in;
}
nav#sidecar ul#mainnav > li > ul > li {
  display: block;
  margin: 0.8rem 0 0;
  position: relative;
}
nav#sidecar ul#mainnav > li > ul > li > a {
  border: none;
  padding: 5px 0 5px 0;
  color: #ffffff;
  font-size: 1.8rem;
}
nav#sidecar ul#mainnav > li > ul > li > ul {
  display: block;
  float: none;
  margin: 0;
  max-height: 0px;
  overflow: hidden;
  padding: 0 0 0 0;
  position: relative;
  -webkit-transition: max-height 0.25s ease-in;
  transition: max-height 0.25s ease-in;
}
nav#sidecar ul#mainnav > li > ul > li > ul.active {
  display: block;
  float: none;
  max-height: 500px;
  -webkit-transition: max-height 0.44s ease-in;
  transition: max-height 0.44s ease-in;
}
nav#sidecar ul#mainnav > li > ul > li > ul > li {
  display: block;
  margin: 0.8rem 0 0;
  position: relative;
}
nav#sidecar ul#mainnav > li > ul > li > ul > li a {
  font-size: 1.6rem;
  font-weight: lighter;
  padding-left: 8px;
}
nav#sidecar ul#mainnav > li .expand.active .sw-menucode-item__link {
  color: #7d9a2d;
}
nav#sidecar ul#mainnav > li a {
  color: #ffffff;
  display: inline-block;
  height: auto;
  opacity: 0;
  padding-right: 4.8rem;
  position: relative;
  -webkit-transition: all 0.44s ease;
  transition: all 0.44s ease;
  font-family: brother-1816, sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  width: 100%;
}
nav#sidecar ul#mainnav > li a.expand {
  background: url("../images/svg/icon-arrow-down.svg") center no-repeat;
  cursor: pointer;
  display: block;
  height: 40px;
  padding: 16px;
  position: absolute;
  right: 0.2rem;
  top: -2px;
  width: 40px;
}
nav#sidecar ul#mainnav > li a.expand.active {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background-image: url("../images/svg/icon-arrow-up-green.svg");
}
nav#sidecar ul#mainnav > li a.expand.active.sw-menucode-item__link {
  color: #7d9a2d;
}

/* _footer.scss */
.footer {
  background: url("../images/svg/illustration-leaf-footer-center.svg") center calc(100% - 2.4rem)/120% auto no-repeat, url("../images/svg/pattern-bamboo-bg.svg") center top/100vw;
  margin-top: 20rem;
  padding: 8rem 2.4rem;
  position: relative;
  text-align: center;
  z-index: 0;
}
@media only screen and (min-width: 768px) {
  .footer {
    background: url("../images/svg/illustration-leaf-footer-right.svg") calc(100% + 60vw) bottom/auto 100% no-repeat, url("../images/svg/pattern-bamboo-bg.svg") center top/100vw;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4fr 2fr;
    grid-template-columns: 1fr 4fr 2fr;
    margin-top: 24rem;
    padding: 12rem 4rem 8rem;
    text-align: left;
  }
}
@media only screen and (min-width: 1024px) {
  .footer {
    background: url("../images/svg/illustration-leaf-footer-right.svg") calc(100% + 20vw) 50%/auto 80% no-repeat, url("../images/svg/pattern-bamboo-bg.svg") center top/50vw;
    margin-top: 32rem;
    padding: 12rem 6.4rem 8rem;
  }
}
@media only screen and (min-width: 1440px) {
  .footer {
    background: url("../images/svg/illustration-leaf-footer-right.svg") calc(100% + 15vw) 100%/auto 80% no-repeat, url("../images/svg/pattern-bamboo-bg.svg") center top/50vw;
    -ms-grid-columns: 1fr 6fr 2fr;
    grid-template-columns: 1fr 6fr 2fr;
    margin-top: 24vw;
    padding: 16rem 10rem 8rem;
  }
}
.footer::before {
  aspect-ratio: 2/1;
  background: url("../images/svg/pattern-bg-shape-beige.svg") center/auto 100% no-repeat;
  bottom: calc(100% + 4rem);
  content: "";
  left: 50%;
  pointer-events: none;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 140rem;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .footer::before {
    width: 120vw;
  }
}
.footer::after {
  background: url("../images/svg/footer-curve-shape.svg") center/auto 100% no-repeat;
  bottom: calc(100% - 12rem);
  content: "";
  height: 33rem;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100vw;
}
@media only screen and (min-width: 1024px) {
  .footer::after {
    bottom: calc(100% - 14rem);
    height: 32vw;
  }
}
@media only screen and (min-width: 1440px) {
  .footer::after {
    bottom: calc(100% - 18rem);
  }
}
@media (min-width: 1920px) {
  .footer::after {
    bottom: calc(100% - 20rem);
  }
}
@media (min-width: 2240px) {
  .footer::after {
    bottom: calc(100% - 24rem);
  }
}
.footer__logo {
  display: inline-block;
  max-width: 16rem;
}
@media only screen and (min-width: 768px) {
  .footer__logo {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-area: 1/3/2/4;
    -ms-grid-column-align: center;
        justify-self: center;
  }
}
@media only screen and (min-width: 768px) {
  .footer__socials {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
}
.footer__socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 2.4rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 4rem 0;
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .footer__socials ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
}
.footer__socials li {
  display: block;
}
.footer__socials a {
  display: block;
  font-size: 0;
  height: 4rem;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  width: 4rem;
}
.footer__socials a::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 4rem;
  width: 4rem;
}
.footer__socials a[href*=facebook]::before {
  background-image: url("../images/svg/icon-facebook.svg");
}
.footer__socials a[href*=instagram]::before {
  background-image: url("../images/svg/icon-instagram.svg");
}
.footer__socials a[href*=youtube]::before {
  background-image: url("../images/svg/icon-youtube.svg");
}
.footer__socials a[href*=tiktok]::before {
  background-image: url("../images/svg/icon-tiktok.svg");
}
.footer__socials a[href*=twitter]::before {
  background-image: url("../images/svg/x-twitter.svg");
  -webkit-filter: invert(1);
          filter: invert(1);
}
.footer__socials a:hover {
  opacity: 0.75;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media only screen and (min-width: 768px) {
  .footer__content-wrap {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
}
.footer__contact {
  margin-bottom: 1.6rem;
}
@media only screen and (min-width: 1024px) {
  .footer__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__contact-text {
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .footer__contact-text {
    display: inline-block;
  }
  .footer__contact-text:nth-child(even) {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
    margin-left: 1.2rem;
    padding-left: 1.2rem;
    position: relative;
  }
  .footer__contact-text:nth-child(even)::before {
    background-color: #ffffff;
    content: "";
    display: inline-block;
    height: 1.6rem;
    -webkit-transform: translateX(-1.2rem);
            transform: translateX(-1.2rem);
    width: 1px;
  }
}
@media only screen and (min-width: 1440px) {
  .footer__contact-text:nth-child(even) {
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
}
.footer__security-text {
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .footer__security-text {
    display: inline-block;
  }
}
.footer__form {
  margin: 4rem 0;
  text-align: left;
}
.footer__form h2 {
  font-size: 3.6rem;
  margin-bottom: 0.8rem;
}
.footer__form .swform {
  position: relative;
}
.footer__form .swformfield__label {
  display: none !important;
}
.footer__form .swformfield__control {
  background-color: #f8ecd7 !important;
  border: none !important;
  color: #000000;
  font: normal 2rem brother-1816, sans-serif !important;
  padding: 1.2rem 1.6rem !important;
  width: 100%;
}
.footer__form .swformfield__errortxt {
  font-style: italic;
}
.footer__form .swformsubmit__btn {
  -webkit-animation: none !important;
          animation: none !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #0f1f44 url("../images/svg/icon-arrow-email-signup.svg") center/2rem no-repeat !important;
  border: none;
  border-radius: 50% !important;
  cursor: pointer;
  font-size: 0 !important;
  height: 3.2rem;
  padding: 0 !important;
  position: absolute !important;
  right: 1.6rem;
  top: 3.4rem !important;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3.2rem;
}
.footer__form .swformsubmit__btn img {
  display: none !important;
}
.footer__form .swformmsg {
  border: 2px solid #ffffff;
  padding: 0.4rem 0.8rem;
}
.footer__associations {
  margin: 4rem 0;
}
.footer__associations a, .footer__associations img {
  display: inline-block;
}
.footer__site-links {
  display: none;
}
@media only screen and (min-width: 768px) {
  .footer__site-links {
    display: block;
    margin: 4rem 0;
  }
  .footer__site-links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .footer__site-links li {
    margin: 0 4rem 1.6rem 0;
  }
  .footer__site-links a:hover {
    color: #ffffff;
  }
}
@media only screen and (min-width: 1024px) {
  .footer__end {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer__end-text {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
@media only screen and (min-width: 1024px) {
  .footer__end-text {
    margin: 0 3.2rem 0.8rem 0;
  }
}
.footer__end .site-credit-link {
  font-size: 1.6rem;
  font-weight: normal;
}
.footer__end .site-credit-link:hover {
  color: #ffffff;
}

body.home .footer {
  margin-top: 0;
  padding-top: 4rem;
}
@media only screen and (min-width: 1024px) {
  body.home .footer {
    padding-top: 2.4rem;
  }
}
@media only screen and (min-width: 1440px) {
  body.home .footer {
    background: url("../images/svg/illustration-leaf-footer-right.svg") calc(100% + 15vw) 50%/auto 100% no-repeat, url("../images/svg/pattern-bamboo-bg.svg") center top/50vw;
  }
}
body.home .footer::before, body.home .footer::after {
  display: none;
}

/* _gdpr.scss */
#gdpr-bar {
  background: black;
  color: white;
  position: fixed;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  width: 100vw;
  z-index: 101;
}
#gdpr-bar.active {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
#gdpr-bar p, #gdpr-bar a {
  color: white;
}
.popup {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #6d7e29;
  -webkit-box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
          box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
  display: none;
  visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  left: 50%;
  max-height: calc(100vh - 8rem);
  max-width: calc(100vw - 4rem);
  overflow-y: scroll;
  padding: 2rem;
  position: fixed;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 96rem;
  z-index: 2000;
}
@media only screen and (min-width: 1024px) {
  .popup {
    -ms-grid-columns: 1fr 4rem 2fr;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 4rem;
  }
}
.popup--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: visible;
}
@media only screen and (min-width: 1024px) {
  .popup--active {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.popup__dismiss {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent url("../images/ui/x-light.svg") center/2.4rem 2.4rem no-repeat;
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0;
  height: 3.2rem;
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  width: 3.2rem;
}
.popup__dismiss:hover {
  background-color: #dd4039;
}
.popup__content {
  width: 100%;
}
> .popup__content:first-child {
  padding-right: 2.4rem;
}
.popup__media {
  min-width: 60%;
  width: 100%;
}
.popup__media video {
  width: 100%;
}

/* _news.scss */
@media only screen and (min-width: 768px) {
  .news div[id*=SideMenu] {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 2.4rem 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0 2.4rem;
  }
}
.news div[id*=SideMenu] h2:first-of-type,
.news div[id*=SideMenu] ul:first-of-type {
  display: none;
}
.news div[id*=SideMenu] h2 {
  background: white url("../images/svg/icon-arrow-accordions.svg") calc(100% - 1.6rem) center/1.6rem auto no-repeat;
  border: 2px solid #f2ddb8;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: -2px;
  margin-top: 1.6rem;
  padding: 0.8rem 1.6rem;
}
.news div[id*=SideMenu] h2.open {
  background-image: url("../images/svg/icon-arrow-accordions-flip.svg");
}
.news div[id*=SideMenu] ul {
  background-color: white;
  border: 2px solid #f2ddb8;
  border-top: none;
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.news div[id*=SideMenu] li {
  display: block;
  font-size: 1.6rem;
  padding: 0.8rem 1.6rem;
}
.news div[id*=SideMenu] .archives {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}
.news div[id*=SideMenu] .tags {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
}

.blog {
  margin: 4rem 0;
}
@media only screen and (min-width: 768px) {
  .blog {
    margin: 6.4rem 0;
  }
}
.blog [id*=blogEntriesRendered] {
  display: -ms-grid;
  display: grid;
  grid-gap: 6.4rem 1.6rem;
}
.blog [id*=blogEntriesRendered] > h3 {
  grid-column: 1/-1;
}
@media only screen and (min-width: 768px) {
  .blog [id*=blogEntriesRendered] {
    -ms-grid-columns: 1fr 1.6rem 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  .blog [id*=blogEntriesRendered] {
    -ms-grid-columns: 1fr 1.6rem 1fr 1.6rem 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.blog-entry-listing {
  border-bottom: none !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 !important;
  padding-bottom: 0 !important;
  position: relative;
  z-index: 1;
}
.blog-entry-listing::after {
  aspect-ratio: 75/32;
  background: center top/100% auto no-repeat;
  content: "";
  display: block;
  width: 100%;
}
.blog-entry-listing:nth-child(odd)::after {
  border-top: 0.3px solid #6f9cb2;
}
.blog-entry-listing:nth-child(odd)::after {
  background-image: url("../images/svg/portal-bg-concave.svg");
}
.blog-entry-listing:nth-child(even)::after {
  background-image: url("../images/svg/portal-bg-convex.svg");
  margin-bottom: -2.4rem;
}
.blog-entry-listing:hover:nth-child(odd)::after {
  background-image: url("../images/svg/portal-bg-concave-hover.svg");
}
.blog-entry-listing:hover:nth-child(even)::after {
  background-image: url("../images/svg/portal-bg-convex-hover.svg");
}
.blog-entry-listing:hover .post-meta {
  background-color: #7d9a2d;
}
.blog-entry-listing .post-meta {
  background-color: #4281a4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1.6rem 2.4rem;
}
.blog-entry-listing .post-title {
  margin: 0 0 0.8rem;
}
.blog-entry-listing .post-title a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}
.blog-entry-listing .post-tags a {
  color: #ffffff;
  font: normal 1.4rem brother-1816, sans-serif;
  text-decoration: none;
}
.blog-entry-listing .post-tags a:not(:first-child) {
  margin-left: 1.6rem;
}
.blog-entry-listing .post-body {
  margin-top: 0.8rem;
}
.blog-entry-listing .post-body a {
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
}
.blog-entry-details {
  border-bottom: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.blog-entry-details .back-to-blog {
  color: #4281a4;
  display: table;
  font: bold 1.6rem brother-1816, sans-serif;
  letter-spacing: 1px;
  margin-bottom: 2.4rem;
  text-transform: uppercase;
}
.blog-entry-details .post-image {
  margin-bottom: 4rem;
}
.blog-entry-details .post-image img {
  margin: 0 auto;
}
.blog-entry-details .post-meta {
  margin-left: auto;
  margin-right: auto;
  max-width: 96rem;
}
.blog-entry-details .post-date {
  font: normal 1.4rem brother-1816, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-entry-details .post-title {
  color: #6d7e29;
  margin-bottom: 4rem;
}
.blog-entry-details .post-tags {
  margin-bottom: 4rem;
  margin-top: -3.2rem;
}
.blog-entry-details .post-tags a {
  color: #4281a4;
  font: normal 1.6rem brother-1816, sans-serif;
}
.blog-entry-details .post-tags a:not(:first-child) {
  margin-left: 1.6rem;
}

.blog .sw-blog-entry-nav {
  border-top: 2px solid #f2ddb8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  grid-column: 1/-1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style: none;
  margin: 4rem auto 0;
  padding: 4rem 0 0;
  width: 100%;
}
@media only screen and (min-width: 1440px) {
  .blog .sw-blog-entry-nav {
    margin-top: 8rem;
    padding-top: 8rem;
  }
}
.blog .sw-blog-entry-nav li {
  display: block;
  float: none;
  margin: 0 3.2rem;
  width: auto;
}
.blog .sw-blog-entry-nav img {
  height: 6.4rem;
  width: 6.4rem;
}
.blog .sw-blog-entry-nav img:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}

.blog .sw-blog-nav-prev img {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.blog .sw-blog-nav-next img {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/* _calendar.scss */
#aspnetForm .CalendarEventsDetail__eventCalendarFront {
  margin-bottom: 4rem !important;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--search {
  position: relative;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--search--input {
  background-color: white;
  background-position: calc(100% - 1.6rem) 50%;
  background-repeat: no-repeat;
  border: 2px solid #f2ddb8;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 0.8rem 1.6rem;
  width: 100%;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--search--button {
  height: 100%;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.8rem;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filters {
  margin-top: 1.6rem;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filter {
  background-color: #7d9a2d;
  border: none;
  border-radius: 4rem;
  color: white !important;
  font-size: 1.6rem;
  margin-right: 0.8rem !important;
  padding: 0.8rem 1.6rem;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filter:hover {
  background-color: #6d7e29;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--clear--button {
  display: none !important;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filter--selected {
  background-color: #f2ddb8;
  border: none;
  border-radius: 4rem;
  color: black !important;
  margin-right: 0.8rem !important;
  padding: 0.8rem 1.6rem;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filter--selected svg {
  height: 10px;
  margin: 0 -6px 0 4px;
  width: 10px;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filter--selected svg path {
  stroke: black;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filterButton {
  background-color: #f2ddb8;
  border: none;
  border-radius: 4rem;
  font-size: 1.6rem;
  margin: 0 0.8rem 0.8rem 0;
  padding: 0.8rem 1.6rem;
  width: auto;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filterButton:hover {
  background-color: #eed3a2;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filterButton--selected {
  color: #6d7e29;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filterButton svg {
  vertical-align: -2px;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filterButton svg * {
  fill: black;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filterButton--clear svg {
  vertical-align: -6px;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filterButton--clear svg circle {
  fill: black;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--header h2 {
  font-size: 2.4rem;
  margin: 0;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--header button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  background-color: #f2ddb8;
  border: none;
  border-radius: 4rem;
  color: black;
  font-family: brother-1816, sans-serif;
  margin: 0 0.8rem 0.8rem 0;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--dateTypeSelector {
  margin-top: 2.4rem;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--dateTypeSelector h3 {
  font-size: 1.6rem;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filterFooter {
  margin-top: 2.4rem;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--actionButton {
  background-color: #7d9a2d;
  border: none;
  border-radius: 4rem;
  color: white !important;
  padding: 0.8rem 1.6rem;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--actionButton:hover {
  background-color: #6d7e29;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--cancelButton {
  background-color: #f2ddb8;
  border-radius: 4rem;
  color: black !important;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-size: 1.6rem;
  margin-right: 0.8rem !important;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--actionButton {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  font-size: 1.6rem;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--listHeader {
  display: none;
}
#aspnetForm .CalendarEventsDetail__AdvancedFilter--filterCalendar .DayPicker {
  margin: 2.4rem 0 0;
}
#aspnetForm .swCalEvents {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
#aspnetForm .swCalEvents > p:first-child {
  padding: 0 2.4rem;
}
@media only screen and (min-width: 1440px) {
  #aspnetForm .swCalEvents > p:first-child {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) {
  #aspnetForm .swCalEvents {
    margin-top: 8rem;
  }
}
@media only screen and (min-width: 1440px) {
  #aspnetForm .swCalEvents {
    margin-left: auto;
    margin-right: auto;
  }
}
#aspnetForm .CalendarListEvent {
  padding: 4.8rem 2.4rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #aspnetForm .CalendarListEvent {
    display: -ms-grid;
    display: grid;
    grid-gap: 4rem;
    -ms-grid-columns: auto 4rem 32rem;
    grid-template-columns: auto 32rem;
    padding: 12rem 4rem 8rem;
  }
}
@media only screen and (min-width: 1024px) {
  #aspnetForm .CalendarListEvent {
    padding: 6.4rem 6.4rem 6.4rem 12rem;
  }
}
#aspnetForm .CalendarListEvent:nth-child(even) {
  background-color: #f2ddb8;
}
#aspnetForm .CalendarListEvent:nth-child(even) .CalendarListEvent__header-date::before {
  background-image: url("../images/leaf-vertical-1.png");
}
#aspnetForm .CalendarListEvent:nth-child(odd) {
  background-color: white;
}
#aspnetForm .CalendarListEvent:nth-child(odd) .CalendarListEvent__header-date::before {
  background-image: url("../images/leaf-vertical-2.png");
}
#aspnetForm .CalendarListEvent__header-date {
  display: inline-block;
  margin-top: -4rem;
  position: relative;
  text-align: center;
  width: 8rem;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  #aspnetForm .CalendarListEvent__header-date {
    margin: 0;
    position: absolute;
    top: -1.6rem;
    left: 4rem;
  }
}
@media only screen and (min-width: 1024px) {
  #aspnetForm .CalendarListEvent__header-date {
    left: 2.4rem;
    top: 0.8rem;
  }
}
@media only screen and (min-width: 1440px) {
  #aspnetForm .CalendarListEvent__header-date {
    left: -4rem;
    top: 3.2rem;
    width: 12rem;
  }
}
#aspnetForm .CalendarListEvent__header-date::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: calc(100% + 8rem);
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 4rem);
  z-index: -1;
}
@media only screen and (min-width: 1440px) {
  #aspnetForm .CalendarListEvent__header-date::before {
    height: calc(100% + 12rem);
  }
}
#aspnetForm .CalendarListEvent__header-date-date {
  color: white;
  font: bold 5.6rem brother-1816, sans-serif;
  line-height: 1;
}
@media only screen and (min-width: 1440px) {
  #aspnetForm .CalendarListEvent__header-date-date {
    font-size: 8rem;
    line-height: 0.8;
  }
}
#aspnetForm .CalendarListEvent__header-date-month {
  color: white;
  font: bold 1.4rem brother-1816, sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media only screen and (min-width: 1440px) {
  #aspnetForm .CalendarListEvent__header-date-month {
    font-size: 2.8rem;
  }
}
#aspnetForm .CalendarListEvent__header-featured-image {
  aspect-ratio: 3/2;
  margin-bottom: 1.6rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #aspnetForm .CalendarListEvent__header-featured-image {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
}
@media only screen and (min-width: 768px) {
  #aspnetForm .CalendarListEvent__content {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
}
#aspnetForm .CalendarListEvent__date-time {
  color: #143319;
  font: 900 1.8rem brother-1816, sans-serif;
  letter-spacing: 1px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}
#aspnetForm .CalendarListEvent__title {
  color: #6d7e29;
  font-weight: 900;
}
#aspnetForm .CalendarListEvent__description {
  color: #293215;
}
#aspnetForm .CalendarListEvent__description a {
  display: table;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 1.6rem;
  text-transform: uppercase;
}
#aspnetForm .CalendarListFooter {
  margin-top: 4rem;
  padding: 0 2.4rem;
}
@media only screen and (min-width: 1440px) {
  #aspnetForm .CalendarListFooter {
    padding: 0;
  }
}
#aspnetForm .CalendarMenu__btn--back {
  background: none !important;
  border: none !important;
  color: #4281a4 !important;
  display: inline-block !important;
  font: bold 1.6rem brother-1816, sans-serif !important;
  letter-spacing: 1px !important;
  margin-bottom: 2.4rem !important;
  padding: 0 !important;
  text-transform: uppercase !important;
  width: auto !important;
}
#aspnetForm [id*=eventContent].swCalEvents {
  margin-left: auto;
  margin-right: auto;
}
#aspnetForm .CalendarEvent {
  padding-bottom: 4rem;
}
#aspnetForm .CalendarEvent__title {
  color: #6d7e29;
  font-weight: 900;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  #aspnetForm .CalendarEvent__details {
    display: -ms-grid;
    display: grid;
    grid-gap: 4rem;
    -ms-grid-columns: 1fr 4rem 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 768px) {
  #aspnetForm .CalendarEvent__featuredImageBox {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/2/3;
  }
}
#aspnetForm .CalendarEvent__featuredImage {
  margin-bottom: 1.6rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #aspnetForm .CalendarEvent__description {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 1/1/2/2;
  }
}
#aspnetForm .CalendarEvent__meta {
  margin-top: 4rem;
}
#aspnetForm .CalendarEvent__meta h3 {
  font-size: 2.4rem;
}

/* _featured-events.scss */
.featured-events {
  margin: 2.4rem 0;
}
.featured-events::after {
  content: url("../images/svg/portal-bg-concave-hover.svg") url("../images/svg/portal-bg-convex-hover.svg");
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .featured-events {
    margin: 4rem 0;
  }
}
@media only screen and (min-width: 1024px) {
  .featured-events {
    margin: 6.4rem 0;
  }
}
@media only screen and (min-width: 1440px) {
  .featured-events {
    margin: 8rem 0;
  }
}
@media only screen and (min-width: 1440px) {
  .featured-events__content {
    margin-bottom: 4rem;
  }
}
.featured-events__event {
  position: relative;
  text-decoration: none !important;
}
.featured-events__event:nth-child(even) {
  margin-top: 1.6rem;
}
.featured-events__event::after {
  aspect-ratio: 75/32;
  background: center top/100% auto no-repeat;
  content: "";
  display: block;
  width: 100%;
}
.featured-events__event:nth-child(odd)::after {
  background-image: url("../images/svg/portal-bg-concave.svg");
}
.featured-events__event:nth-child(even)::after {
  background-image: url("../images/svg/portal-bg-convex.svg");
}
.featured-events__event:hover:nth-child(odd)::after {
  background-image: url("../images/svg/portal-bg-concave-hover.svg");
}
.featured-events__event:hover:nth-child(even)::after {
  background-image: url("../images/svg/portal-bg-convex-hover.svg");
}
.featured-events__event:hover .featured-events__meta {
  background-color: #7d9a2d;
}
.featured-events__image {
  aspect-ratio: 4/3;
  margin-bottom: -1px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.featured-events__meta {
  background-color: #4281a4;
  padding: 1.6rem 2.4rem;
}
.featured-events__calendar-link {
  display: table;
  margin: 2.4rem auto;
}
.featured-events .tns-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -2.4rem;
  position: relative;
  z-index: 1;
}
.featured-events .tns-controls button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #0f1f44 url("../images/svg/icon-arrow-email-signup.svg") center/2rem no-repeat;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0;
  height: 4.8rem;
  width: 4.8rem;
}
.featured-events .tns-controls button[data-controls=prev] {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.featured-events .tns-controls button[data-controls=next] {
  margin-left: auto;
}
.featured-events .tns-controls button[disabled] {
  display: none;
}

/* _featured-news.scss */
.featured-news {
  margin: 2.4rem 0;
}
.featured-news::after {
  content: url("../images/svg/portal-bg-concave-hover.svg") url("../images/svg/portal-bg-convex-hover.svg");
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .featured-news {
    margin: 4rem 0;
  }
}
@media only screen and (min-width: 1024px) {
  .featured-news {
    margin: 6.4rem 0;
  }
}
@media only screen and (min-width: 1440px) {
  .featured-news {
    margin: 8rem 0;
  }
}
@media only screen and (min-width: 1440px) {
  .featured-news__content {
    margin-bottom: 4rem;
  }
}
.featured-news__post {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  text-decoration: none !important;
}
.featured-news__post:nth-child(even) {
  margin-top: 1.6rem;
}
.featured-news__post::after {
  aspect-ratio: 75/32;
  background: center top/100% auto no-repeat;
  content: "";
  display: block;
  width: 100%;
}
.featured-news__post:nth-child(odd)::after {
  background-image: url("../images/svg/portal-bg-concave.svg");
}
.featured-news__post:nth-child(even)::after {
  background-image: url("../images/svg/portal-bg-convex.svg");
}
.featured-news__post:hover:nth-child(odd)::after {
  background-image: url("../images/svg/portal-bg-concave-hover.svg");
}
.featured-news__post:hover:nth-child(even)::after {
  background-image: url("../images/svg/portal-bg-convex-hover.svg");
}
.featured-news__post:hover .featured-news__meta {
  background-color: #7d9a2d;
}
.featured-news__image {
  aspect-ratio: 4/3;
  margin-bottom: -1px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.featured-news__meta {
  background-color: #4281a4;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 1.6rem 2.4rem;
}
.featured-news__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: -0.8rem auto 0.8rem;
  padding: 0;
}
.featured-news__tags li {
  display: inline-block;
  line-height: 1;
  margin-right: 0.8rem;
  text-transform: capitalize;
}
.featured-news__tags a, .featured-news__tags span {
  font: normal 1.4rem brother-1816, sans-serif;
}
.featured-news__blog-link {
  display: table;
  margin: 2.4rem auto;
}
.featured-news .tns-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: -2.4rem;
  position: relative;
  z-index: 1;
}
.featured-news .tns-controls button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #0f1f44 url("../images/svg/icon-arrow-email-signup.svg") center/2rem no-repeat;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0;
  height: 4.8rem;
  width: 4.8rem;
}
.featured-news .tns-controls button[data-controls=prev] {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.featured-news .tns-controls button[data-controls=next] {
  margin-left: auto;
}
.featured-news .tns-controls button[disabled] {
  display: none;
}

/* _media-block.scss */
.media-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
  margin: 2.4rem auto;
  max-width: 144rem;
}
@media only screen and (min-width: 768px) {
  .media-block {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4rem;
    margin: 4rem auto;
  }
  .media-block--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
@media only screen and (min-width: 1024px) {
  .media-block {
    gap: 4.4rem;
    margin: 4.4rem auto;
  }
}
@media only screen and (min-width: 1440px) {
  .media-block {
    gap: 5rem;
    margin: 5rem auto;
  }
}
@media only screen and (min-width: 768px) {
  .media-block__text {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 40%;
  }
}
@media only screen and (min-width: 1024px) {
  .media-block__text {
    -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    width: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  .media-block__text {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
  }
}
.media-block__image {
  margin: 0 0 2.4rem;
  min-width: 0;
}
@media only screen and (min-width: 768px) {
  .media-block__image {
    margin: 0;
    max-width: 50vw;
  }
}
.media-block__image img {
  width: 100%;
}
.media-block__image figcaption {
  font-style: italic;
}

body.default:not(.full-width) .media-block {
  margin-left: 0;
  max-width: 96rem;
}
@media only screen and (min-width: 1024px) {
  body.default:not(.full-width) .media-block__image {
    max-width: 50%;
  }
  body.default:not(.full-width) .media-block__image figcaption {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 1440px) {
  body.default:not(.full-width) .media-block__image {
    max-width: 50%;
  }
}

/* _accordion-block.scss */
.accordion-block {
  background-color: #ffffff;
  margin: 2.4rem 0;
  padding: 2.4rem 2.4rem 0;
}
@media only screen and (min-width: 768px) {
  .accordion-block {
    margin: 4rem 0;
    padding: 4rem;
  }
}
@media only screen and (min-width: 1024px) {
  .accordion-block {
    margin: 6.4rem 0;
    padding: 6.4rem;
  }
}
@media only screen and (min-width: 1440px) {
  .accordion-block {
    margin: 8rem 0;
  }
}
.accordion-block__title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
  max-width: none;
  font-size: 2.2rem;
  line-height: 20px;
}
@media only screen and (min-width: 768px) {
  .accordion-block__title {
    font-size: 3.6rem;
    line-height: 40px;
  }
}
.accordion-block__title > img {
  width: 80px;
}
@media only screen and (min-width: 768px) {
  .accordion-block__title > img {
    width: 100px;
  }
}

.accordion {
  border-bottom: 2px solid #f2ddb8;
  margin: 0 -2.4rem;
}
@media only screen and (min-width: 768px) {
  .accordion {
    margin: 4rem auto 0;
  }
}
@media only screen and (min-width: 1024px) {
  .accordion {
    margin-top: 6.4rem;
  }
}
.accordion__tab {
  border-top: 2px solid #f2ddb8;
  color: #293215;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: 500 2.2rem brother-1816, sans-serif;
  gap: 2.4rem;
  padding: 2.4rem;
  position: relative;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
  font-size: 18px;
  line-height: 20px;
}
@media only screen and (min-width: 768px) {
  .accordion__tab {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1024px) {
  .accordion__tab {
    padding: 2.4rem 4rem;
  }
}
.accordion__tab::after {
  background: url("../images/svg/icon-arrow-accordions.svg") center/contain no-repeat;
  content: "";
  display: block;
  height: 2rem;
  margin-left: auto;
  margin-top: 0.8rem;
  min-width: 2rem;
}
.accordion__tab--active {
  background-color: #f8ecd7;
}
.accordion__tab--active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.accordion__drawer {
  height: 0;
  margin-right: auto;
  overflow: hidden;
  -webkit-transition: background-color 0.4s ease, height 0.4s ease;
  transition: background-color 0.4s ease, height 0.4s ease;
}
.accordion__drawer--active {
  background-color: #f8ecd7;
}
.accordion__drawer-inner {
  padding: 0 2.4rem 2.4rem;
}
.accordion__drawer-inner > *:last-child {
  margin-bottom: 0;
}
.accordion__drawer-inner p {
  max-width: none;
}
@media only screen and (min-width: 1024px) {
  .accordion__drawer-inner {
    padding: 0 4rem 4rem;
  }
}

/* _page-portals.scss */
.portals {
  display: -ms-grid;
  display: grid;
  grid-gap: 4rem;
  margin: 2.4rem 0;
}
@media only screen and (min-width: 768px) {
  .portals {
    -ms-grid-columns: 1fr 4rem 1fr;
    grid-template-columns: 1fr 1fr;
    margin: 4rem 0;
  }
}
@media only screen and (min-width: 1024px) {
  .portals {
    grid-gap: 6.4rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin: 6.4rem 0;
  }
}
@media only screen and (min-width: 1440px) {
  .portals {
    grid-gap: 8rem;
    margin: 8rem 0;
  }
}

.portal {
  text-align: center;
}
.portal:hover {
  text-decoration: none;
}
.portal:hover .portal__image {
  opacity: 0.75;
}
.portal:hover .portal__title {
  color: #7d9a2d;
}
.portal__image {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  width: 100%;
}
.portal__image--contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.portal__title {
  color: #000000;
  margin: 1.6rem 0 0;
  -webkit-transition: color 0.25s ease;
  transition: color 0.25s ease;
}

.countries .portal .portal__image {
  -o-object-fit: contain;
     object-fit: contain;
}

div.portal .portal__image {
  opacity: 1 !important;
}

div.portal .portal__title {
  color: #000000 !important;
}

/* _column_portals.scss */
.columns {
  margin: 2.4rem 0;
}
@media only screen and (min-width: 768px) {
  .columns {
    margin: 4rem 0;
  }
}
@media only screen and (min-width: 1024px) {
  .columns {
    margin: 6.4rem 0;
  }
}
@media only screen and (min-width: 1440px) {
  .columns {
    margin: 8rem 0;
  }
}
@media only screen and (min-width: 768px) {
  .columns__content {
    padding-bottom: 2.4rem;
  }
}
@media only screen and (min-width: 1024px) {
  .columns__content {
    padding-bottom: 4rem;
    width: calc(50% - 3.2rem);
  }
}
@media only screen and (min-width: 1024px) {
  .columns__content--right {
    margin-left: calc(50% + 3.2rem);
  }
}
@media only screen and (min-width: 768px) {
  .columns__portals {
    display: -ms-grid;
    display: grid;
    grid-gap: 4rem;
    -ms-grid-columns: 1fr 4rem 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 1024px) {
  .columns__portals {
    grid-gap: 6.4rem;
  }
}
@media only screen and (min-width: 1440px) {
  .columns__portals {
    grid-gap: 8rem;
  }
}
.columns__portal {
  display: block;
  margin-bottom: 2.4rem;
  overflow: hidden;
  position: relative;
}
.columns__portal:hover .columns__portal-title::before {
  -webkit-transform: translate(-50%, -50%) scale(1.05) rotate(-2deg);
          transform: translate(-50%, -50%) scale(1.05) rotate(-2deg);
}
@media only screen and (min-width: 768px) {
  .columns__portal {
    margin-bottom: 0;
  }
}
.columns__portal:nth-child(4n+1) .columns__portal-title::before {
  background-image: url("../images/leaf-4.png");
}
.columns__portal:nth-child(4n+2) .columns__portal-title::before {
  background-image: url("../images/leaf-2.png");
}
.columns__portal:nth-child(4n+3) .columns__portal-title::before {
  background-image: url("../images/leaf-3.png");
}
.columns__portal:nth-child(4n+4) .columns__portal-title::before {
  background-image: url("../images/leaf-1.png");
}
.columns__portal-image {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  width: 100%;
  z-index: 0;
}
.columns__portal-title {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0;
  padding: 2.4rem 0 2.4rem 2.4rem;
  position: absolute;
  width: 66%;
  z-index: 1;
}
@media only screen and (min-width: 1440px) {
  .columns__portal-title {
    padding: 2.4rem;
    width: 50%;
  }
}
.columns__portal-title.top {
  top: 0;
}
.columns__portal-title.right {
  right: 0;
}
.columns__portal-title.bottom {
  bottom: 0;
}
.columns__portal-title.left {
  left: 0;
}
.columns__portal-title:not(.top, .right, .bottom, .left) {
  bottom: 0;
  left: 0;
}
.columns__portal-title::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50vw;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.25s ease;
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
  width: 105vw;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .columns__portal-title::before {
    height: 25vw;
    width: 50vw;
  }
}
@media only screen and (min-width: 1440px) {
  .columns__portal-title::before {
    height: 20vw;
    width: 35vw;
  }
}

/* _resources-block.scss */
.resources {
  margin: 2.4rem 0;
  padding: 4rem 0;
  position: relative;
  text-align: center;
  z-index: 1;
}
.resources::before {
  background-color: #143319;
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .resources {
    margin: 6.4rem 0;
    padding: 6.4rem 0;
  }
}
@media only screen and (min-width: 1024px) {
  .resources {
    margin: 8rem 0;
    padding: 8rem 0;
  }
}
@media only screen and (min-width: 1440px) {
  .resources {
    margin: 12rem 0;
    padding: 12rem 0;
  }
}
.resources__background {
  height: 100%;
  left: 50%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
}
.resources__intro {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.resources__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  list-style: none;
  margin: 2.4rem 0 0;
  max-width: none;
  padding: 0;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .resources__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2.4rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 1024px) {
  .resources__list {
    gap: 3.2rem;
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 1440px) {
  .resources__list {
    gap: 6.4rem;
  }
}
.resources__list-item {
  display: block;
}
@media only screen and (min-width: 768px) {
  .resources__list-item {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .resources__list-item {
    -ms-flex-preferred-size: 30%;
        flex-basis: 30%;
  }
}
.resources__list-item h4 {
  font-weight: bold;
  margin: 0 auto;
  text-transform: uppercase;
}
@media only screen and (min-width: 1440px) {
  .resources__list-item h4 {
    font-size: 3.6rem;
  }
}
.resources__list-item a:hover {
  color: white;
}

/* _gallery.scss */
.gallery {
  display: -ms-grid;
  display: grid;
  grid-gap: 1.6rem;
  margin: 2.4rem 0;
}
@media only screen and (min-width: 768px) {
  .gallery {
    -ms-grid-columns: 1fr 1.6rem 1fr;
    grid-template-columns: 1fr 1fr;
    margin: 4rem 0;
  }
}
@media only screen and (min-width: 1024px) {
  .gallery {
    -ms-grid-columns: 1fr 1.6rem 1fr 1.6rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    margin: 6.4rem 0;
  }
}
@media only screen and (min-width: 1440px) {
  .gallery {
    -ms-grid-columns: 1fr 1.6rem 1fr 1.6rem 1fr 1.6rem 1fr;
    grid-template-columns: repeat(4, 1fr);
    margin: 8rem 0;
  }
}
.gallery__content {
  grid-column: 1/-1;
}
.gallery__link {
  background-color: #143319;
  display: block;
}
.gallery__link:hover .gallery__image {
  opacity: 0.75;
}
.gallery__link--video {
  position: relative;
}
.gallery__link--video::before {
  background: url("../images/svg/icon-play.svg") center/contain no-repeat;
  content: "";
  height: 6.4rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 6.4rem;
  z-index: 1;
}
.gallery__image {
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  width: 100%;
}

/* _collections.scss */
@media only screen and (min-width: 768px) {
  .initial-view .row {
    display: -ms-grid;
    display: grid;
    grid-gap: 4rem;
    -ms-grid-columns: 1fr 4rem 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1280px) {
  .initial-view .row {
    grid-gap: 6.4rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.initial-view .row > div {
  margin-bottom: 4rem;
  width: 100%;
}
@media (min-width: 1280px) {
  .initial-view .row > div {
    margin-bottom: 6.4rem;
  }
}
.initial-view .row > div #exhibit-img {
  position: relative;
}
.initial-view .row > div #exhibit-img:hover img {
  opacity: 0.75;
}
.initial-view .row > div #exhibit-img:hover .exhibit-detail {
  opacity: 1;
}
.initial-view .row > div #exhibit-img img {
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  width: 100%;
}
.initial-view .row > div #exhibit-img .exhibit-detail {
  bottom: 2.4rem;
  left: 2.4rem;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.initial-view .row > div #exhibit-img .exhibit-detail a {
  color: white;
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: capitalize;
}
.initial-view .row > div #exhibit-img .exhibit-detail .exhibit-title {
  font-size: 0;
}
.initial-view .row > div .exhibit-item-title {
  margin: 1.6rem 0 0;
  text-align: center;
}
.initial-view .row > div .exhibit-item-title a {
  text-decoration: none;
}

.collection-view .header-container .exhibit-banner {
  border-bottom: 2px solid #f2ddb8;
  border-top: 2px solid #f2ddb8;
  margin: 1.6rem 0;
  padding: 1.6rem 0;
}
@media only screen and (min-width: 768px) {
  .collection-view .header-container .exhibit-banner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.collection-view .header-container .exhibit-banner .exhibit-detail-banner {
  display: none;
}
@media only screen and (min-width: 768px) {
  .collection-view .header-container .exhibit-banner .exhibit-detail-banner {
    width: 50%;
  }
}
.collection-view .header-container .exhibit-banner .exhibit-title-wrapper {
  width: 100%;
}
.collection-view .header-container .exhibit-banner .exhibit-detail-banner-title {
  font-size: 5.6rem;
  line-height: 1.5;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .collection-view #rowTemplate {
    display: -ms-grid;
    display: grid;
    grid-gap: 4rem;
    -ms-grid-columns: 1fr 4rem 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1280px) {
  .collection-view #rowTemplate {
    grid-gap: 6.4rem;
    -ms-grid-columns: 1fr 6.4rem 1fr 6.4rem 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}
.collection-view #rowTemplate > div {
  margin-bottom: 4rem;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .collection-view #rowTemplate > div {
    margin-bottom: 0;
  }
}
.collection-view #rowTemplate > div #exhibit-img {
  position: relative;
}
.collection-view #rowTemplate > div #exhibit-img:hover img {
  opacity: 0.75;
}
.collection-view #rowTemplate > div #exhibit-img:hover .exhibit-detail {
  opacity: 1;
}
.collection-view #rowTemplate > div #exhibit-img img {
  aspect-ratio: 1;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  width: 100%;
}
.collection-view #rowTemplate > div #exhibit-img .exhibit-detail {
  bottom: 2.4rem;
  left: 2.4rem;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.collection-view #rowTemplate > div #exhibit-img .exhibit-detail a {
  color: white;
  text-decoration: none !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  text-transform: capitalize;
}
.collection-view #rowTemplate > div #exhibit-img .exhibit-detail .exhibit-title {
  font-size: 0;
}
.collection-view #rowTemplate > div .exhibit-item-title {
  margin: 1.6rem 0 0;
  text-align: center;
}
.collection-view #rowTemplate > div .exhibit-item-title a {
  text-decoration: none;
}

.item-view .exhibit-banner {
  border-bottom: 2px solid #f2ddb8;
  border-top: 2px solid #f2ddb8;
  margin: 1.6rem 0;
  padding: 1.6rem 0;
}
.item-view .exhibit-banner .exhibit-detail-banner {
  display: none;
}
.item-view .exhibit-detail-banner-title {
  font-size: 5.6rem;
  line-height: 1.5;
  margin: 1.6rem 0 2.4rem;
}
.item-view .exhibit-detail-banner {
  margin: 0 0 4rem;
}
@media only screen and (min-width: 768px) {
  .item-view .exhibit-detail-banner {
    float: right;
    margin: 4rem 0 4rem 4rem;
    padding-right: calc((100% - 96rem) / 2);
    width: 50%;
  }
}
.item-view .exhibit-description {
  margin: 4rem auto 0;
  max-width: 96rem;
}
.item-view .exhibit-description > h5:first-of-type {
  display: none;
}
.item-view .exhibit-description img {
  -o-object-fit: contain;
     object-fit: contain;
}

.exhibit-banner + .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.exhibit-btn {
  color: #4281a4;
  display: table;
  font: bold 1.6rem brother-1816, sans-serif;
  letter-spacing: 1px;
  margin-bottom: 2.4rem;
  text-transform: uppercase;
}
.exhibit-btn-prev::before {
  background: url("../images/svg/icon-arrow-accordions.svg") center/contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.6rem;
  margin-right: 0.8rem;
  position: relative;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  width: 1.6rem;
  vertical-align: -1px;
}
.exhibit-btn-next {
  margin-left: auto;
  text-align: right;
}
.exhibit-btn-next::after {
  background: url("../images/svg/icon-arrow-accordions.svg") center/contain no-repeat;
  content: "";
  display: inline-block;
  height: 1.6rem;
  margin-left: 0.8rem;
  position: relative;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  width: 1.6rem;
  vertical-align: -1px;
}

/* ============ PAGES ============ */
/* _home.scss */
.hero {
  position: relative;
  height: 620px;
  width: 100vw;
}
@media only screen and (min-width: 1024px) {
  .hero {
    height: 100vh;
    min-height: 900px;
  }
}
.hero_images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #7d9a2d;
}
.hero_images-background {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero_images-background:first-child {
  z-index: 1;
}
.hero_images-background:not(:first-child) {
  opacity: 0;
}
.hero_images-background-outer, .hero_images-background-inner {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
}
.hero_images-background-inner {
  position: relative;
}
.hero_images-background-inner-text-wrap {
  position: absolute;
  top: 130px;
  left: 20px;
  z-index: 400;
  padding-right: 8rem;
}
@media only screen and (min-width: 768px) {
  .hero_images-background-inner-text-wrap {
    top: 180px;
  }
}
@media only screen and (min-width: 1024px) {
  .hero_images-background-inner-text-wrap {
    left: 80px;
    padding-right: 16rem;
    top: 240px;
  }
  .hero_images-background-inner-text-wrap .button, .hero_images-background-inner-text-wrap #aspnetForm .swform .swformactions .swformsubmit .swformsubmit__btn, #aspnetForm .swform .swformactions .swformsubmit .hero_images-background-inner-text-wrap .swformsubmit__btn {
    margin-left: 24rem;
  }
}
.hero_images-background-inner-header {
  -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  font-size: 2.2222222222rem;
  line-height: 2.6666666667rem;
  color: #ffffff;
  margin-block: 0;
  margin-bottom: 1.3333333333rem;
  max-width: none;
}
@media only screen and (min-width: 1024px) {
  .hero_images-background-inner-header {
    margin-left: 6.6111111111rem;
    margin-bottom: 2.2222222222rem;
    font-size: 4.6666666667rem;
    line-height: 4rem;
  }
}
.hero_images-background-inner-header-text {
  -webkit-filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
  background: url("../images/pattern-heading-mask.png");
  color: transparent;
  font-size: 6.4rem;
  font-weight: 900;
  margin-bottom: 1.6rem;
  max-width: none;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (min-width: 1024px) {
  .hero_images-background-inner-header-text {
    font-size: 10rem;
  }
}
.hero_images-background-inner__web-header-bg {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .hero_images-background-inner__web-header-bg {
    display: block;
  }
}
@media only screen and (min-width: 1024px) {
  .hero_images-background-inner__mobile-header-bg {
    display: none;
  }
}
.hero_images-background-inner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero .video-container {
  background-position: center;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.hero .video-container .embed-container {
  height: 100%;
  padding: 0;
}
.hero .video-container iframe {
  height: 160vw;
  left: 50%;
  min-width: 300vw;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
  width: 100vw;
}
@media only screen and (min-width: 768px) {
  .hero .video-container iframe {
    height: 80vw;
  }
}
@media only screen and (min-width: 1024px) {
  .hero .video-container iframe {
    height: 95vw;
  }
}
@media only screen and (min-width: 1440px) {
  .hero .video-container iframe {
    height: 75vw;
  }
}
.hero_top-controls {
  position: absolute;
  height: 200px;
  width: 10px;
  top: 180px;
  right: 82px;
  z-index: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media (max-width: 1200px) {
  .hero_top-controls {
    -webkit-filter: drop-shadow(0 2px 8px black);
            filter: drop-shadow(0 2px 8px black);
    right: 40px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.hero_top-controls-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  row-gap: 22px;
  cursor: pointer;
}
.hero_top-controls .scroll-down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-right: 0.1111111111rem;
}
.hero_top-controls .scroll-down__vertical-line {
  border-left: 1px solid #ffffff;
  height: 121px;
  margin-top: 30.5px;
}
.hero_top-controls .scroll-down__text {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  color: #ffffff;
  font-size: 1rem;
  line-height: 4rem;
  margin-right: -1.8rem;
  margin-top: 1.1111111111rem;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .hero_top-controls .scroll-down {
    display: none;
  }
}
.hero_top-button-outer {
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 50vh;
  -webkit-border-radius: 50vh;
  -moz-border-radius: 50vh;
  -ms-border-radius: 50vh;
  -o-border-radius: 50vh;
  height: 5px;
  width: 5px;
  background-color: #ffffff;
  border: none;
  outline: none;
  position: relative;
}
.hero_top-button-outer span {
  border-radius: 50vh;
  -webkit-border-radius: 50vh;
  -moz-border-radius: 50vh;
  -ms-border-radius: 50vh;
  -o-border-radius: 50vh;
  position: absolute;
  background-color: transparent;
  width: 25px;
  height: 25px;
}
.hero_top-button-outer[data-active=true] {
  background-color: #dd4039;
}
.hero_top-button-outer[data-active=true] span {
  border: 1px solid #dd4039;
  opacity: 1;
  visibility: visible;
  width: 25px;
  height: 25px;
}
.hero_top-controls-button {
  border-radius: 50vh;
  -webkit-border-radius: 50vh;
  -moz-border-radius: 50vh;
  -ms-border-radius: 50vh;
  -o-border-radius: 50vh;
  height: 5px;
  width: 5px;
  background-color: white;
}
.hero_top-controls-button[data-active=true] {
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 50vh;
  -webkit-border-radius: 50vh;
  -moz-border-radius: 50vh;
  -ms-border-radius: 50vh;
  -o-border-radius: 50vh;
  height: 5px;
  width: 5px;
  background-color: #dd4039;
  position: relative;
}
.hero_top-controls-button[data-active=true]::after {
  content: "";
  position: absolute;
  border: 1px solid #dd4039;
  background-color: transparent;
  width: 15px;
  height: 15px;
  border-radius: 50vh;
  -webkit-border-radius: 50vh;
  -moz-border-radius: 50vh;
  -ms-border-radius: 50vh;
  -o-border-radius: 50vh;
}
.hero_top-controls-button-span[data-active=true] {
  border-radius: 50vh;
  -webkit-border-radius: 50vh;
  -moz-border-radius: 50vh;
  -ms-border-radius: 50vh;
  -o-border-radius: 50vh;
  background-color: #dd4039;
  width: 5px;
  height: 5px;
}

#home-main {
  min-height: 64rem;
  position: relative;
  z-index: 1;
}
#home-main::before {
  background: url("../images/svg/title-curve-top-mobile.svg") 2% top/auto 60% no-repeat, -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(60%, transparent), color-stop(60%, #143319), to(#143319));
  background: url("../images/svg/title-curve-top-mobile.svg") 2% top/auto 60% no-repeat, linear-gradient(transparent, transparent 60%, #143319 60%, #143319);
  bottom: calc(100% - 1px);
  content: "";
  height: 32rem;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -2;
}
@media only screen and (min-width: 768px) {
  #home-main::before {
    display: none;
  }
}
#home-main::after {
  aspect-ratio: 400/313;
  background: url("../images/home-main-bg.png") center/contain no-repeat;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  top: -18rem;
  width: 768px;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  #home-main::after {
    top: -26rem;
    width: 1024px;
  }
}
@media only screen and (min-width: 1024px) {
  #home-main::after {
    top: -38rem;
    width: 1440px;
  }
}
@media only screen and (min-width: 1440px) {
  #home-main::after {
    aspect-ratio: unset;
    background-size: 100% 100%;
    height: 112rem;
    width: 100%;
  }
}
#home-main .main__leaf {
  -webkit-animation: leaf-sway 12s ease-in-out infinite;
          animation: leaf-sway 12s ease-in-out infinite;
  bottom: 100%;
  height: auto;
  pointer-events: none;
  position: absolute;
  right: -8rem;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  width: 16rem;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  #home-main .main__leaf {
    bottom: calc(100% + 4rem);
    width: 24rem;
  }
}
@media only screen and (min-width: 1024px) {
  #home-main .main__leaf {
    width: 32rem;
  }
}
@media only screen and (min-width: 1440px) {
  #home-main .main__leaf {
    width: 40rem;
  }
}
#home-main main {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  padding: 0 2rem;
}
@media only screen and (min-width: 768px) {
  #home-main main {
    padding: 0 4rem;
  }
}
@media only screen and (min-width: 1024px) {
  #home-main main {
    padding: 0 6.4rem;
  }
}
@media only screen and (min-width: 1440px) {
  #home-main main {
    padding: 0 10rem;
  }
}
#home-main .cta-banner {
  margin-top: 8rem;
  padding-bottom: 32rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  #home-main .cta-banner {
    margin-top: 16rem;
  }
}
@media only screen and (min-width: 1024px) {
  #home-main .cta-banner {
    margin-top: 24rem;
    padding-bottom: 40rem;
  }
}
@media only screen and (min-width: 1440px) {
  #home-main .cta-banner {
    padding-bottom: 56rem;
  }
}
#home-main .cta-banner::before {
  aspect-ratio: 150/17;
  background: url("../images/svg/wave-top-beige.svg") center/cover no-repeat;
  content: "";
  left: 50%;
  position: absolute;
  top: -1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  z-index: 1;
}
#home-main .cta-banner::after {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  content: "";
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  z-index: 0;
}
#home-main .cta-banner__background {
  bottom: 0;
  height: calc(100% - 8rem);
  left: 50%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  #home-main .cta-banner__background {
    height: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  #home-main .cta-banner__background {
    -o-object-position: center 66%;
       object-position: center 66%;
  }
}
#home-main .cta-banner__title {
  display: inline-block;
  position: relative;
  z-index: 2;
}
#home-main .cta-banner__title::before {
  aspect-ratio: 379/176;
  background: url("../images/event-bg.png") center/contain no-repeat;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.5);
          transform: translate(-50%, -50%) scale(1.5);
  width: 100%;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  #home-main .cta-banner__title::before {
    -webkit-transform: translate(-50%, -50%) scale(1.75);
            transform: translate(-50%, -50%) scale(1.75);
  }
}
@media only screen and (min-width: 1440px) {
  #home-main .cta-banner__title::before {
    width: 125%;
  }
}
#home-main .cta-banner__content {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1024px) {
  #home-main .cta-banner__content {
    margin-left: 50%;
    margin-top: -4rem;
    width: 50%;
  }
}
@media only screen and (min-width: 1440px) {
  #home-main .cta-banner__content {
    margin-top: 0;
    width: 40%;
  }
}
@media (max-width: 767px) {
  #home-main .media-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-top: 8rem;
  }
}
#home-main .columns__portal-title h4 {
  font-size: 3.2rem;
  font-weight: bold;
  text-transform: uppercase;
}
#home-main .featured-events {
  margin: 8rem 0;
}
@media only screen and (min-width: 768px) {
  #home-main .featured-events {
    margin: 12rem 0;
  }
}
@media only screen and (min-width: 1024px) {
  #home-main .featured-events {
    margin: 20rem 0 12rem;
  }
}
@media only screen and (min-width: 1440px) {
  #home-main .featured-events {
    margin: 12rem 0;
  }
}
#home-main .featured-events .tns-ovh {
  overflow: visible;
}
@media only screen and (min-width: 768px) {
  #home-main .featured-events .tns-outer {
    margin: 0 -2rem;
  }
}
@media only screen and (min-width: 1024px) {
  #home-main .featured-events .tns-outer {
    margin: 0 -4.8rem;
  }
}
@media only screen and (min-width: 1440px) {
  #home-main .featured-events .tns-outer {
    margin: 0 -8rem;
  }
}
#home-main .featured-news {
  margin: 8rem 0;
}
@media only screen and (min-width: 768px) {
  #home-main .featured-news {
    margin: 8rem 0 12rem;
  }
}
@media only screen and (min-width: 1024px) {
  #home-main .featured-news {
    margin: 16rem 0 12rem;
  }
}
@media only screen and (min-width: 1440px) {
  #home-main .featured-news {
    margin: 16rem 0 12rem;
  }
}
#home-main .featured-news .tns-ovh {
  overflow: visible;
}
@media only screen and (min-width: 768px) {
  #home-main .featured-news .tns-outer {
    margin: 0 -2rem;
  }
}
@media only screen and (min-width: 1024px) {
  #home-main .featured-news .tns-outer {
    margin: 0 -4.8rem;
  }
}
@media only screen and (min-width: 1440px) {
  #home-main .featured-news .tns-outer {
    margin: 0 -8rem;
  }
}

.pre-footer {
  aspect-ratio: 375/48;
  background-image: url("../images/svg/pattern-bamboo-bg.svg");
  background-position: center;
  background-repeat: repeat;
  background-size: 100vw;
  clip-path: url(#footerWave);
  position: absolute;
  -webkit-transform: translateY(calc(-100% + 2px));
          transform: translateY(calc(-100% + 2px));
  width: 100%;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .pre-footer {
    background-size: 50vw;
  }
}

/* _default.scss */
#default-banner {
  aspect-ratio: 1/1;
  background-color: #0d2110;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  #default-banner {
    aspect-ratio: 3/2;
  }
}
@media only screen and (min-width: 1024px) {
  #default-banner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    aspect-ratio: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 80rem;
    padding: 24rem 6.4rem 32rem;
  }
}
@media only screen and (min-width: 1440px) {
  #default-banner {
    padding: 24rem 10rem 32rem;
  }
}
#default-banner img {
  aspect-ratio: 1/1;
  max-height: 100%;
  width: 100vw;
}
@media only screen and (min-width: 768px) {
  #default-banner img {
    aspect-ratio: 3/2;
  }
}
@media only screen and (min-width: 1024px) {
  #default-banner img {
    aspect-ratio: unset;
    height: 100%;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
#default-banner p {
  margin: 0;
}
#default-banner .banner__title {
  background-color: #143319;
  padding: 2rem 2rem 12rem;
  position: relative;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 768px) {
  #default-banner .banner__title {
    background: none;
    padding: 0;
    position: absolute;
    top: 16rem;
    left: 4rem;
  }
}
@media only screen and (min-width: 1024px) {
  #default-banner .banner__title {
    left: auto;
    position: relative;
    top: auto;
  }
}
@media (min-width: 1200px) {
  #default-banner .banner__title {
    width: 80%;
  }
}
#default-banner .banner__title::before, #default-banner .banner__title::after {
  content: "";
  height: 180px;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #default-banner .banner__title::before, #default-banner .banner__title::after {
    display: none;
  }
}
#default-banner .banner__title::before {
  background: url("../images/svg/title-curve-top-mobile.svg") 2% bottom/auto 100% no-repeat;
  bottom: calc(100% - 1px);
}
#default-banner .banner__title::after {
  background: url("../images/svg/title-curve-bottom-mobile.svg") 50% bottom/auto 100% no-repeat;
  bottom: 0;
}
@media only screen and (min-width: 768px) {
  #default-banner .banner__title--right {
    left: unset;
    right: 4rem;
    text-align: right;
  }
}
@media only screen and (min-width: 1024px) {
  #default-banner .banner__title--right {
    right: 6.4rem;
  }
}
@media (min-width: 1200px) {
  #default-banner .banner__title--right {
    right: 12rem;
  }
}
@media only screen and (min-width: 1440px) {
  #default-banner .banner__title--right {
    right: 16rem;
  }
}
#default-banner .banner__title h1 {
  margin: 0;
  max-width: none;
}

#default-main {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  #default-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (min-width: 1200px) {
  #default-main {
    padding-top: 4rem;
  }
}
#default-main .main__leaf {
  -webkit-animation: leaf-sway 12s ease-in-out infinite;
          animation: leaf-sway 12s ease-in-out infinite;
  bottom: 100%;
  height: auto;
  pointer-events: none;
  position: absolute;
  right: -8rem;
  -webkit-transform-origin: right top;
          transform-origin: right top;
  width: 16rem;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  #default-main .main__leaf {
    bottom: calc(100% + 4rem);
    width: 24rem;
  }
}
@media only screen and (min-width: 1024px) {
  #default-main .main__leaf {
    width: 32rem;
  }
}
@media only screen and (min-width: 1440px) {
  #default-main .main__leaf {
    width: 40rem;
  }
}
@-webkit-keyframes leaf-sway {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  12% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  35% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  65% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  88% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes leaf-sway {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  12% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  35% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  65% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  88% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
#default-main::before, #default-main::after {
  content: "";
  height: 0;
  left: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  #default-main::before, #default-main::after {
    height: 240px;
  }
}
@media only screen and (min-width: 1024px) {
  #default-main::before, #default-main::after {
    height: 340px;
  }
}
#default-main::before {
  background: url("../images/svg/default-curve-top-layer.svg") center bottom/auto 100% no-repeat;
  bottom: calc(100% - 2px);
  z-index: -1;
}
@media only screen and (min-width: 1440px) {
  #default-main::before {
    background-image: url("../images/svg/default-curve-top-layer-stretch.svg");
    background-size: 100% 100%;
  }
}
#default-main::after {
  background: url("../images/svg/default-curve-bottom-layer.svg") center bottom/auto 100% no-repeat;
  bottom: calc(100% - 1px);
  z-index: -2;
}
@media only screen and (min-width: 1440px) {
  #default-main::after {
    background-image: url("../images/svg/default-curve-bottom-layer-stretch.svg");
    background-size: 100% 100%;
  }
}
#default-main aside.sidenav {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #default-main aside.sidenav {
    display: block;
    height: 80rem;
    min-width: 32rem;
    overflow-y: scroll;
    position: relative;
    width: 32rem;
    z-index: 1;
    overflow: hidden !important;
  }
}
#default-main aside.sidenav div[id*=SideMenu] {
  padding-left: 6.4rem;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  width: 32rem;
  overflow: hidden !important;
}
#default-main aside.sidenav div[id*=SideMenu].sticky {
  position: fixed;
  top: 8rem;
  overflow: hidden;
}
#default-main aside.sidenav div[id*=SideMenu].duck {
  opacity: 0;
  pointer-events: none;
}
@media only screen and (min-width: 1440px) {
  #default-main aside.sidenav div[id*=SideMenu] {
    padding-left: 10rem;
  }
}
#default-main aside.sidenav div[id*=SideMenu] .sw-menucode-child {
  font: bold 2.4rem/1.5 brother-1816, sans-serif;
}
#default-main aside.sidenav div[id*=SideMenu] .sw-menucode-child a {
  color: #6d7e29;
}
#default-main aside.sidenav div[id*=SideMenu] #subnav {
  list-style: none;
  margin: 0;
  padding: 0;
}
#default-main aside.sidenav div[id*=SideMenu] #subnav li {
  border-bottom: 2px solid #f2ddb8;
  display: block;
}
#default-main aside.sidenav div[id*=SideMenu] #subnav li:last-child {
  border: none;
  margin: 0;
}
#default-main aside.sidenav div[id*=SideMenu] #subnav li a {
  color: #143319;
  display: block;
  font-weight: normal;
  padding: 0.8rem 3.2rem 0.8rem 0;
  -webkit-transition: background-color 0.2s ease, padding 0.2s ease;
  transition: background-color 0.2s ease, padding 0.2s ease;
}
#default-main aside.sidenav div[id*=SideMenu] #subnav li a.current {
  color: #6d7e29;
  font-weight: bold;
  pointer-events: none;
}
#default-main aside.sidenav div[id*=SideMenu] #subnav li a:hover {
  background-color: #f8ecd7;
  color: black;
  padding: 0.8rem 1.6rem;
  text-decoration: none;
}
#default-main main {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  min-height: 60vh;
  padding: 0 2rem;
}
#default-main main > div:first-of-type {
  margin-top: 0;
}
#default-main main > div:first-of-type section {
  margin-top: 0;
}
#default-main main > div:last-of-type {
  margin-bottom: 0;
}
#default-main main > div:last-of-type section {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  #default-main main {
    padding: 0 4rem;
  }
}
@media only screen and (min-width: 1024px) {
  #default-main main {
    padding: 0 2rem;
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1440px) {
  #default-main main {
    padding: 0 10rem;
  }
}
@media (min-width: 1920px) {
  #default-main main {
    min-height: 40vw;
  }
}

/* _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 */
body > form.http-404 .masthead .hours {
  display: none;
}
@media only screen and (min-width: 768px) {
  body > form.http-404 #default-banner {
    aspect-ratio: unset;
    height: 56rem;
  }
}
@media only screen and (min-width: 1024px) {
  body > form.http-404 #default-banner {
    height: 64rem;
  }
}
@media (min-width: 1200px) {
  body > form.http-404 #default-banner {
    height: 72rem;
  }
}
body > form.http-404 .banner__title {
  aspect-ratio: 1;
}
@media only screen and (min-width: 768px) {
  body > form.http-404 .banner__title {
    aspect-ratio: unset;
  }
}
body > form.http-404 .sidenav {
  display: none !important;
}
@media (min-width: 1200px) {
  body > form.http-404 main {
    padding-left: 28rem !important;
  }
}

/* _styleguide.scss */
.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);
}