/* _master.scss */
/* ============ LIBRARIES ============ */
/* _flexbox-grid.scss */
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&display=swap");
@import url("../../global/CSS/global.css");
.flex-container,
.flex-container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tns-outer {
  padding: 0 !important; }

.tns-outer [hidden] {
  display: none !important; }

.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer; }

.tns-slider {
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  transition: all 0s; }

.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.tns-horizontal.tns-subpixel {
  white-space: nowrap; }

.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal; }

.tns-horizontal.tns-no-subpixel:after {
  content: '';
  display: table;
  clear: both; }

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left; }

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%; }

.tns-no-calc {
  position: relative;
  left: 0; }

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px; }

.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -moz-transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s; }

.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important; }

.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  -moz-transition: all 0.25s;
  transition: all 0.25s; }

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

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6; }

.tns-lazy-img.tns-complete {
  opacity: 1; }

.tns-ah {
  -webkit-transition: height 0s;
  -moz-transition: height 0s;
  transition: height 0s; }

.tns-ovh {
  overflow: hidden; }

.tns-visually-hidden {
  position: absolute;
  left: -10000em; }

.tns-transparent {
  opacity: 0;
  visibility: hidden; }

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0; }

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1; }

.tns-vpfix {
  white-space: nowrap; }

.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block; }

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden; }

.tns-t-ct {
  width: 2333.3333333%;
  width: -webkit-calc(100% * 70 / 3);
  width: -moz-calc(100% * 70 / 3);
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0; }

.tns-t-ct:after {
  content: '';
  display: table;
  clear: both; }

.tns-t-ct > div {
  width: 1.4285714%;
  width: -webkit-calc(100% / 70);
  width: -moz-calc(100% / 70);
  width: calc(100% / 70);
  height: 10px;
  float: left; }

/*# sourceMappingURL=sourcemaps/tiny-slider.css.map */
/* ============ BASE ============ */
/* _variables.scss */
/* ============ Colors ============ */
/* ============ Breakpoints ============ */
/*
.example {
  width: 100%;
  
  @include bp-sm {
    width: 50%;
  }
}
*/
/* _reset.scss */
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%; }

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

body.locked {
  overflow: hidden; }

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

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

img {
  max-width: 100%; }

*::selection {
  background-color: #00502E;
  color: white; }

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

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

.clearfix::after {
  clear: both; }

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

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

*:target:focus {
  outline: none; }

hr {
  width: 100%; }

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

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

/* _typography.scss */
/* ============ FONTS ============ */
/* ============ Fonts ============ */
/* ============ TAGS ============ */
body {
  font-family: "Montserrat"; }

h1 {
  font-family: "Cinzel";
  color: #759E2E;
  font-size: 70px;
  font-weight: normal; }
  @media (max-width: 1023px) {
    h1 {
      font-size: 40px; } }
h2 {
  font-family: "Cinzel";
  color: #759E2E;
  font-size: 50px;
  font-weight: normal; }
  @media only screen and (max-width: 767px) {
    h2 {
      font-size: 30px; } }
h3 {
  font-family: "Montserrat";
  font-size: 27px;
  color: #00502E; }
  @media only screen and (max-width: 767px) {
    h3 {
      font-size: 21px; } }
h4 {
  font-family: "Montserrat";
  font-size: 30px;
  color: #00502E;
  line-height: 1.5;
  font-weight: 600; }
  @media only screen and (max-width: 767px) {
    h4 {
      line-height: 1.4;
      font-size: 25px; } }
h5 {
  font-family: "Montserrat";
  font-size: 20px;
  color: #00502E;
  line-height: 1; }

h6 {
  font-family: "Montserrat";
  color: #00502E;
  font-size: 18px; }

p {
  font-family: "Montserrat";
  color: #00502E;
  font-size: 16px;
  line-height: 28px; }

ul li,
ol li {
  font-size: 16px;
  font-family: "Montserrat";
  color: #00502E;
  line-height: 28px; }

a {
  font-family: "Montserrat";
  font-size: 16px;
  color: #00502E; }
  a:hover {
    color: #008752; }

/* _buttons.scss */
.button {
  border-image: linear-gradient(to right, #05894e, #77a423) 1;
  background-color: white;
  border-radius: 0;
  border: 2px solid;
  border-bottom: 8px solid;
  color: #05894e !important;
  font-size: 18px !important;
  font-weight: bold !important;
  text-transform: uppercase;
  font-family: "Montserrat";
  text-align: center;
  padding: 0.8em !important;
  margin: 2em 0;
  transition: all 150ms ease-in-out;
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
  cursor: pointer; }
  @media only screen and (min-width: 768px) {
    .button {
      display: inline-block;
      margin-right: 1em; } }
  @media only screen and (min-width: 1024px) {
    .button {
      padding: 0.5em !important; } }
  @media only screen and (min-width: 1024px) {
    .button {
      min-width: 250px; } }
  .button:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 110%;
    height: 0%;
    background-image: linear-gradient(to left, #759E2E, #008752);
    z-index: -1;
    -webkit-transition: height 150ms ease-in-out;
    transition: height 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
  .button:hover {
    color: white;
    transition: all 150ms ease-in-out; }
    .button:hover:after {
      height: 100%; }
    .button:hover a {
      color: white; }
  .button a {
    color: #008752;
    width: 100%; }

.btn-green,
.swformsubmit button {
  border-image: linear-gradient(to right, #05894e, #77a423) 1;
  background-color: white;
  border-radius: 0;
  border: 2px solid;
  border-bottom: 8px solid;
  color: #05894e !important;
  font-size: 18px !important;
  font-weight: bold !important;
  text-transform: uppercase;
  font-family: "Montserrat";
  text-align: center;
  padding: 0.8em !important;
  margin: 2em 0;
  transition: all 150ms ease-in-out;
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out;
  color: #008752;
  max-width: 100%;
  transition: all .33s ease;
  margin: 0 15px 15px 0;
  position: relative;
  transition: all .33s ease;
  background: white; }
  @media only screen and (min-width: 768px) {
    .btn-green,
    .swformsubmit button {
      display: inline-block;
      margin-right: 1em; } }
  @media only screen and (min-width: 1024px) {
    .btn-green,
    .swformsubmit button {
      padding: 0.5em !important; } }
  @media only screen and (min-width: 1024px) {
    .btn-green,
    .swformsubmit button {
      min-width: 250px; } }
  .btn-green:after,
  .swformsubmit button:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 110%;
    height: 0%;
    background-image: linear-gradient(to left, #759E2E, #008752);
    z-index: -1;
    -webkit-transition: height 150ms ease-in-out;
    transition: height 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
  .btn-green:hover,
  .swformsubmit button:hover {
    color: white;
    transition: all 150ms ease-in-out; }
    .btn-green:hover:after,
    .swformsubmit button:hover:after {
      height: 100%; }
    .btn-green:hover a,
    .swformsubmit button:hover a {
      color: white; }
  .btn-green a,
  .swformsubmit button a {
    color: #008752;
    width: 100%; }
  .btn-green:after,
  .swformsubmit button:after {
    transition: all .33s ease;
    top: inherit;
    bottom: 0;
    width: 100%;
    left: 0;
    transform: none;
    height: 0; }
  .btn-green:hover,
  .swformsubmit button:hover {
    color: white !important;
    border-image: linear-gradient(to right, #05894e, #77a423) 1;
    background-color: white; }

.button-outline {
  border-image: linear-gradient(to right, #05894e, #77a423) 1;
  background-color: white;
  border-radius: 0;
  border: 2px solid;
  border-bottom: 8px solid;
  color: #05894e !important;
  font-size: 18px !important;
  font-weight: bold !important;
  text-transform: uppercase;
  font-family: "Montserrat";
  text-align: center;
  padding: 0.8em !important;
  margin: 2em 0;
  transition: all 150ms ease-in-out;
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: color 150ms ease-in-out;
  transition: color 150ms ease-in-out; }
  @media only screen and (min-width: 768px) {
    .button-outline {
      display: inline-block;
      margin-right: 1em; } }
  @media only screen and (min-width: 1024px) {
    .button-outline {
      padding: 0.5em !important; } }
  @media only screen and (min-width: 1024px) {
    .button-outline {
      min-width: 250px; } }
  .button-outline:after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 110%;
    height: 0%;
    background-image: linear-gradient(to left, #759E2E, #008752);
    z-index: -1;
    -webkit-transition: height 150ms ease-in-out;
    transition: height 150ms ease-in-out;
    transition: all 150ms ease-in-out; }
  .button-outline:hover {
    color: white;
    transition: all 150ms ease-in-out; }
    .button-outline:hover:after {
      height: 100%; }
    .button-outline:hover a {
      color: white; }
  .button-outline a {
    color: #008752;
    width: 100%; }

/* ============ SITEWRENCH ============ */
/* _alert.scss */
/* _forms.scss */
.formmodule {
  display: block;
  position: relative; }

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

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

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px); } }

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

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

#lightbox-container-image-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; }

ul.photo-list {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  max-width: 90%;
  margin: 10px auto; }
  ul.photo-list li {
    flex-basis: calc((100% / 5 ) - 10px);
    position: relative;
    min-height: 100px;
    margin: 5px;
    bottom: 0px;
    transition: all .33s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
    opacity: 0; }
    @media (max-width: 767px) {
      ul.photo-list li {
        flex-basis: calc((100% / 4) - 10px); } }
    ul.photo-list li a {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-size: 120%;
      background-repeat: no-repeat;
      background-position: center 20%; }
      @media (max-width: 767px) {
        ul.photo-list li a {
          background-size: cover; } }
    ul.photo-list li:hover {
      border-radius: 0;
      bottom: 5px;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); }
      ul.photo-list li:hover a {
        background-size: 110%;
        background-position: center 40%; }
  ul.photo-list.inview li {
    animation: fadeInUp 1s ease forwards; }
    ul.photo-list.inview li:nth-child(1) {
      animation-delay: 0.1111111111s; }
    ul.photo-list.inview li:nth-child(2) {
      animation-delay: 0.2222222222s; }
    ul.photo-list.inview li:nth-child(3) {
      animation-delay: 0.3333333333s; }
    ul.photo-list.inview li:nth-child(4) {
      animation-delay: 0.4444444444s; }
    ul.photo-list.inview li:nth-child(5) {
      animation-delay: 0.5555555556s; }
    ul.photo-list.inview li:nth-child(6) {
      animation-delay: 0.6666666667s; }
    ul.photo-list.inview li:nth-child(7) {
      animation-delay: 0.7777777778s; }
    ul.photo-list.inview li:nth-child(8) {
      animation-delay: 0.8888888889s; }
    ul.photo-list.inview li:nth-child(9) {
      animation-delay: 1s; }
    ul.photo-list.inview li:nth-child(10) {
      animation-delay: 1.1111111111s; }
    ul.photo-list.inview li:nth-child(11) {
      animation-delay: 1.2222222222s; }
    ul.photo-list.inview li:nth-child(12) {
      animation-delay: 1.3333333333s; }
    ul.photo-list.inview li:nth-child(13) {
      animation-delay: 1.4444444444s; }
    ul.photo-list.inview li:nth-child(14) {
      animation-delay: 1.5555555556s; }
    ul.photo-list.inview li:nth-child(15) {
      animation-delay: 1.6666666667s; }
    ul.photo-list.inview li:nth-child(16) {
      animation-delay: 1.7777777778s; }
    ul.photo-list.inview li:nth-child(17) {
      animation-delay: 1.8888888889s; }
    ul.photo-list.inview li:nth-child(18) {
      animation-delay: 2s; }
    ul.photo-list.inview li:nth-child(19) {
      animation-delay: 2.1111111111s; }
    ul.photo-list.inview li:nth-child(20) {
      animation-delay: 2.2222222222s; }
    ul.photo-list.inview li:nth-child(21) {
      animation-delay: 2.3333333333s; }
    ul.photo-list.inview li:nth-child(22) {
      animation-delay: 2.4444444444s; }
    ul.photo-list.inview li:nth-child(23) {
      animation-delay: 2.5555555556s; }
    ul.photo-list.inview li:nth-child(24) {
      animation-delay: 2.6666666667s; }
    ul.photo-list.inview li:nth-child(25) {
      animation-delay: 2.7777777778s; }
    ul.photo-list.inview li:nth-child(26) {
      animation-delay: 2.8888888889s; }
    ul.photo-list.inview li:nth-child(27) {
      animation-delay: 3s; }
    ul.photo-list.inview li:nth-child(28) {
      animation-delay: 3.1111111111s; }
    ul.photo-list.inview li:nth-child(29) {
      animation-delay: 3.2222222222s; }
    ul.photo-list.inview li:nth-child(30) {
      animation-delay: 3.3333333333s; }

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

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

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

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

.sw-accordion .ui-accordion-content {
  background: #fbfbfb;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border: 1px solid #eee;
  border-top: none;
  display: block;
  padding: 8px;
  width: 100% !important; }
  @media only screen and (min-width: 1024px) {
    .sw-accordion .ui-accordion-content {
      padding: 16px; } }
/* ============ COMPONENTS ============ */
/* _header.scss */
header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  width: 100%;
  background-color: white;
  z-index: 100;
  border-bottom: 1px solid #00502E;
  outline: 4px solid #00502E;
  outline-offset: 3px;
  height: 100px;
  top: 0;
  transition: all .33s ease; }
  header .inner-wrapper {
    width: 1200px;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 30px;
    position: relative; }
    @media (max-width: 1023px) {
      header .inner-wrapper {
        padding: 0 15px; } }
    header .inner-wrapper .utility-nav {
      display: none; }
      @media (max-width: 1023px) {
        header .inner-wrapper .utility-nav {
          display: none; } }
      @media only screen and (min-width: 1024px) {
        header .inner-wrapper .utility-nav {
          display: inline-block;
          margin-left: 1em;
          height: 50px; }
          header .inner-wrapper .utility-nav ul.utility-links {
            display: flex;
            flex-direction: row;
            list-style: none;
            padding-left: 40px;
            margin: 10px 0 0; }
            header .inner-wrapper .utility-nav ul.utility-links li {
              padding: 0;
              margin-right: 35px;
              display: flex;
              justify-content: center;
              align-items: center; }
              header .inner-wrapper .utility-nav ul.utility-links li:before {
                left: -10px;
                top: 50%; }
              header .inner-wrapper .utility-nav ul.utility-links li a {
                line-height: 14px;
                color: #008752;
                padding-left: 34px; }
                header .inner-wrapper .utility-nav ul.utility-links li a:hover {
                  color: #00502E; }
            header .inner-wrapper .utility-nav ul.utility-links .news-link {
              position: relative; }
              header .inner-wrapper .utility-nav ul.utility-links .news-link:before {
                position: absolute;
                left: 0px;
                top: 50%;
                transform: translateY(-50%);
                content: "";
                background-image: url("/sitefiles/2780/images/speaker-news.svg");
                height: 25px;
                width: 25px;
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center bottom;
                transition: transform 0.33s ease-in-out; }
              header .inner-wrapper .utility-nav ul.utility-links .news-link a {
                font-weight: bold;
                font-size: 12px; }
              header .inner-wrapper .utility-nav ul.utility-links .news-link:hover:before {
                top: 5px;
                transform: rotate(-25deg); }
            header .inner-wrapper .utility-nav ul.utility-links .calendar-link {
              position: relative; }
              header .inner-wrapper .utility-nav ul.utility-links .calendar-link:before {
                position: absolute;
                left: 0px;
                top: 60%;
                transform: translateY(-50%);
                content: "";
                background-image: url("/sitefiles/2780/images/calendar-icon.svg");
                height: 20px;
                width: 20px;
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center bottom;
                transition: transform 0.33s ease-in-out; }
              header .inner-wrapper .utility-nav ul.utility-links .calendar-link a {
                font-weight: bold;
                font-size: 12px; }
              header .inner-wrapper .utility-nav ul.utility-links .calendar-link:hover:before {
                top: 5px;
                transform: rotate(-15deg); }
            header .inner-wrapper .utility-nav ul.utility-links .blog-link {
              position: relative; }
              header .inner-wrapper .utility-nav ul.utility-links .blog-link:before {
                position: absolute;
                left: 0px;
                top: 60%;
                transform: translateY(-50%);
                content: "";
                background-image: url("/sitefiles/2780/images/blog_icon.png");
                height: 20px;
                width: 20px;
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center bottom;
                transition: transform 0.33s ease-in-out; }
              header .inner-wrapper .utility-nav ul.utility-links .blog-link a {
                font-weight: bold;
                font-size: 12px; }
              header .inner-wrapper .utility-nav ul.utility-links .blog-link:hover:before {
                top: 5px;
                transform: rotate(-15deg); } }
    header .inner-wrapper .main-nav {
      display: flex;
      flex-direction: column;
      justify-content: center; }
      header .inner-wrapper .main-nav .logo-wrap {
        display: none; }
        @media only screen and (min-width: 1024px) {
          header .inner-wrapper .main-nav .logo-wrap {
            display: block;
            position: absolute;
            top: 0;
            margin-top: 5px;
            left: 50%;
            transform: translate(-50%, 0);
            width: 200px; } }
        header .inner-wrapper .main-nav .logo-wrap a.logo-link {
          display: block;
          width: 100%;
          height: 100%; }
    header .inner-wrapper .mobile-buttons {
      display: flex; }
      header .inner-wrapper .mobile-buttons .mobile-logo {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 125px; }
        @media only screen and (min-width: 1024px) {
          header .inner-wrapper .mobile-buttons .mobile-logo {
            display: none; } }
  header .scroll-progress {
    position: absolute;
    bottom: -8px;
    background: #B0BC22;
    height: 4px;
    content: ""; }
  header.header-hide {
    top: -100px; }
  header.header-show .scroll-progress {
    width: 0% !important; }

.home header {
  transition: all 0s; }
  @media only screen and (min-width: 1024px) {
    .home header {
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: absolute;
      top: calc(100vh - 100px);
      width: 100%;
      background-color: white;
      z-index: 100;
      border-bottom: 1px solid #00502E;
      outline: 4px solid #00502E;
      outline-offset: 3px; }
      .home header .utility-nav {
        display: none; } }
    @media only screen and (min-width: 1024px) and (min-width: 1024px) {
      .home header .utility-nav {
        display: inline-block;
        margin-left: 1em;
        height: 50px; }
        .home header .utility-nav ul {
          display: flex;
          flex-direction: row;
          list-style: none; }
          .home header .utility-nav ul li {
            padding: 1em;
            padding-right: 3em; }
            .home header .utility-nav ul li a {
              color: #008752; }
              .home header .utility-nav ul li a:hover {
                color: #00502E; }
          .home header .utility-nav ul .news-link {
            position: relative;
            display: none; }
            .home header .utility-nav ul .news-link:before {
              position: absolute;
              left: 0px;
              top: 50%;
              transform: translateY(-50%);
              content: "";
              background-image: url("/sitefiles/2780/images/speaker-news.svg");
              height: 25px;
              width: 25px;
              background-size: contain;
              background-repeat: no-repeat;
              background-position: center bottom;
              transition: transform 0.33s ease-in-out; }
            .home header .utility-nav ul .news-link a {
              padding-left: 23px;
              font-weight: bold;
              font-size: 12px; }
            .home header .utility-nav ul .news-link:hover:before {
              top: 5px;
              transform: rotate(-25deg); }
          .home header .utility-nav ul .calendar-link {
            position: relative; }
            .home header .utility-nav ul .calendar-link:before {
              position: absolute;
              left: 0px;
              top: 60%;
              transform: translateY(-50%);
              content: "";
              background-image: url("/sitefiles/2780/images/calendar-icon.svg");
              height: 20px;
              width: 20px;
              background-size: contain;
              background-repeat: no-repeat;
              background-position: center bottom;
              transition: transform 0.33s ease-in-out; }
            .home header .utility-nav ul .calendar-link a {
              padding-left: 20px;
              font-weight: bold;
              font-size: 12px; }
            .home header .utility-nav ul .calendar-link:hover:before {
              top: 5px;
              transform: rotate(-15deg); } }
  @media only screen and (min-width: 1024px) {
      .home header .mobile-buttons {
        display: flex; }
      .home header .mobile-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 125px; } }
    @media only screen and (min-width: 1024px) and (min-width: 1024px) {
      .home header .mobile-logo {
        display: none; } }
  @media only screen and (min-width: 1024px) {
      .home header .logo-wrap {
        display: none; } }
    @media only screen and (min-width: 1024px) and (min-width: 1024px) {
      .home header .logo-wrap {
        display: block;
        position: absolute;
        top: 45px;
        left: 50%;
        transform: translate(-50%, 0);
        width: 200px; } }
.home .navbar-fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; }

/* _flex-nav.scss */
nav.flex-nav {
  display: none; }
  @media only screen and (min-width: 1024px) {
    nav.flex-nav {
      align-items: center;
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: center;
      text-align: center;
      padding: 0; }
      nav.flex-nav div:first-child {
        width: 100%; }
      nav.flex-nav ul#mainnav {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        list-style: none;
        margin: 0;
        padding: 0;
        flex-wrap: nowrap;
        align-items: flex-end; }
        nav.flex-nav ul#mainnav li {
          flex: 0 1 auto;
          padding: 2em;
          flex-basis: auto;
          position: relative; } }
      @media only screen and (min-width: 1024px) and (min-width: 1440px) {
        nav.flex-nav ul#mainnav li {
          flex-basis: 13%; } }
  @media only screen and (min-width: 1024px) {
          nav.flex-nav ul#mainnav li:last-child a {
            color: #008850;
            font-weight: bold; }
          nav.flex-nav ul#mainnav li a {
            display: flex;
            font-size: 15px;
            color: darkgreen;
            text-transform: uppercase;
            font-weight: normal;
            font-family: "Montserrat";
            transition-duration: 0s;
            justify-content: center; }
            nav.flex-nav ul#mainnav li a:hover {
              color: #008752; }
          nav.flex-nav ul#mainnav li ul {
            display: none;
            flex-direction: column;
            list-style: none;
            margin: 0;
            padding: 0;
            position: absolute;
            z-index: 2000;
            transform: translateX(-50%);
            left: 50%;
            background-image: url("/sitefiles/2780/images/ohs-dropdownmenu-longer2.svg");
            background-repeat: no-repeat;
            background-size: cover; }
            nav.flex-nav ul#mainnav li ul > li {
              display: block;
              position: relative;
              white-space: nowrap;
              z-index: 999; }
              nav.flex-nav ul#mainnav li ul > li:last-child a {
                color: white;
                font-weight: normal; }
              nav.flex-nav ul#mainnav li ul > li a {
                background: #00502E;
                color: white;
                display: block;
                width: 100%;
                font-weight: normal;
                text-transform: none; }
                nav.flex-nav ul#mainnav li ul > li a:hover {
                  color: #B0BC22; }
              nav.flex-nav ul#mainnav li ul > li > a.current {
                border-bottom: none;
                color: white;
                padding-bottom: 0; }
                nav.flex-nav ul#mainnav li ul > li > a.current:hover {
                  color: #B0BC22; }
              nav.flex-nav ul#mainnav li ul > li ul {
                left: 100%;
                top: 0; }
        nav.flex-nav ul#mainnav a {
          text-decoration: none; }
        nav.flex-nav ul#mainnav > li:hover > ul,
        nav.flex-nav ul#mainnav > li > ul > li:hover > ul {
          display: flex;
          min-height: 230px;
          min-width: 236px; }
        nav.flex-nav ul#mainnav > li {
          padding: 0;
          flex: inherit;
          flex-basis: 15%; }
          nav.flex-nav ul#mainnav > li > a {
            font-weight: 600;
            transition: all .33s ease;
            padding: 5px 10px;
            line-height: 1;
            font-size: 14px;
            position: relative; }
            nav.flex-nav ul#mainnav > li > a:after {
              content: "";
              position: absolute;
              width: 0%;
              left: 50%;
              bottom: -5px;
              height: 3px;
              background-color: #00502E;
              transform: translateX(-50%);
              transition: all .33s ease; }
            nav.flex-nav ul#mainnav > li > a.current {
              color: #759E2E; }
              nav.flex-nav ul#mainnav > li > a.current:after {
                width: 100%; }
          nav.flex-nav ul#mainnav > li:nth-child(1) > ul {
            left: 0;
            transform: none; }
          nav.flex-nav ul#mainnav > li:nth-child(3) {
            margin-right: 100px; }
          nav.flex-nav ul#mainnav > li:nth-child(4) {
            margin-left: 100px; }
          nav.flex-nav ul#mainnav > li[id*="parent-portal"] a {
            color: #759E2E;
            font-weight: 900; }
            nav.flex-nav ul#mainnav > li[id*="parent-portal"] a:before {
              height: 100%;
              font-family: fontawesome;
              content: '\f054';
              position: absolute;
              left: 100%;
              top: 50%;
              transform: translateY(-50%);
              border: 2px solid #008752;
              padding: 3px 3px 3px 6px;
              text-align: right;
              display: flex;
              flex-direction: column;
              justify-content: center;
              align-items: flex-end;
              width: 23px;
              background: white;
              z-index: -1;
              transition: all .33s ease; }
            nav.flex-nav ul#mainnav > li[id*="parent-portal"] a:after {
              display: none; }
            nav.flex-nav ul#mainnav > li[id*="parent-portal"] a:hover:before {
              left: 0%;
              width: calc(100% + 10px);
              padding: 5px 5px 5px 6px;
              box-shadow: 0px 5px 3px rgba(0, 0, 0, 0.2);
              height: 150%; }
          nav.flex-nav ul#mainnav > li > ul {
            min-height: 0;
            border: none;
            background-repeat: repeat-y;
            background-size: cover;
            padding-top: 25px;
            padding-bottom: 25px;
            filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1)); }
            nav.flex-nav ul#mainnav > li > ul > li {
              padding: 0;
              white-space: inherit;
              opacity: 0; }
              nav.flex-nav ul#mainnav > li > ul > li > a {
                background: transparent;
                padding: 8px 25px;
                display: inline-flex;
                width: calc(100% - 40px);
                margin: 0 auto;
                transition: all .33s ease;
                font-weight: 500; }
                nav.flex-nav ul#mainnav > li > ul > li > a:hover {
                  color: #B0BC22; }
              nav.flex-nav ul#mainnav > li > ul > li > ul {
                display: none; }
          nav.flex-nav ul#mainnav > li:hover > a {
            color: #759E2E; }
            nav.flex-nav ul#mainnav > li:hover > a:after {
              width: 100%; }
          nav.flex-nav ul#mainnav > li:hover > ul > li {
            animation: fadeIn .8s ease forwards; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(1) {
              animation-delay: 0.0555555556s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(2) {
              animation-delay: 0.1111111111s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(3) {
              animation-delay: 0.1666666667s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(4) {
              animation-delay: 0.2222222222s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(5) {
              animation-delay: 0.2777777778s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(6) {
              animation-delay: 0.3333333333s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(7) {
              animation-delay: 0.3888888889s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(8) {
              animation-delay: 0.4444444444s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(9) {
              animation-delay: 0.5s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(10) {
              animation-delay: 0.5555555556s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(11) {
              animation-delay: 0.6111111111s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(12) {
              animation-delay: 0.6666666667s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(13) {
              animation-delay: 0.7222222222s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(14) {
              animation-delay: 0.7777777778s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(15) {
              animation-delay: 0.8333333333s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(16) {
              animation-delay: 0.8888888889s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(17) {
              animation-delay: 0.9444444444s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(18) {
              animation-delay: 1s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(19) {
              animation-delay: 1.0555555556s; }
            nav.flex-nav ul#mainnav > li:hover > ul > li:nth-child(20) {
              animation-delay: 1.1111111111s; } }
/* _sidecar.scss */
#siteWrapper {
  background-color: white;
  min-height: 100vh;
  position: relative; }

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

#sidecar-toggle {
  background-image: url("/sitefiles/2780/images/mobile-menu-icon.svg");
  margin-left: auto;
  display: block;
  background-repeat: no-repeat;
  background-position: center right;
  height: 100px;
  width: 140px;
  cursor: pointer; }
  @media only screen and (min-width: 1024px) {
    #sidecar-toggle {
      display: none; } }
/* ============ Sidecar Drawer ============ */
#sidecar {
  background-color: white;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  right: -300px;
  text-align: left;
  top: 0;
  transition: right 0.44s ease;
  width: 300px;
  z-index: 99999 !important; }
  #sidecar #close-sidecar {
    background-image: url("/sitefiles/2780/images/menu-close.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    color: white;
    font-size: 16px;
    font-family: "Montserrat";
    text-transform: uppercase;
    padding: 30px 48px 12px 32px;
    position: absolute;
    top: 16px;
    right: 16px;
    height: 80px;
    width: 110px; }
    #sidecar #close-sidecar::after {
      content: "";
      height: 16px;
      pointer-events: none;
      position: absolute;
      top: 16px;
      right: 16px;
      width: 16px; }
  #sidecar ul#mainnav {
    right: 0px; }

#sidecar.slide-right {
  left: inherit;
  opacity: 1;
  right: -300px;
  transition: transform 0.44s ease-in-out, left 0.44s ease-in-out, right 0.44s ease-in-out; }
  #sidecar.slide-right.active {
    box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.3);
    opacity: 1;
    right: 0;
    transition: all 0.44s ease;
    width: 80%;
    background-color: #00502E;
    background-position: center; }
    #sidecar.slide-right.active ul#mainnav li a {
      margin-left: 0px;
      opacity: 1;
      font-family: "Montserrat";
      font-size: 20px;
      color: white;
      font-weight: normal;
      text-align: center;
      text-transform: uppercase; }

/* ============ Sidecar Menu ============ */
nav#sidecar ul#mainnav {
  -webkit-padding-start: 0px;
  background: transparent;
  display: block;
  height: auto;
  margin: 135px 0 40px;
  position: relative;
  width: 100%; }
  nav#sidecar ul#mainnav #mn-home {
    display: none; }
  nav#sidecar ul#mainnav li {
    background: transparent;
    display: block;
    float: none;
    height: auto;
    margin: 0;
    padding: 1em;
    position: relative;
    text-align: left;
    width: 100%; }
    nav#sidecar ul#mainnav li:nth-child(1) a {
      transition-delay: 0.05s !important; }
    nav#sidecar ul#mainnav li:nth-child(2) a {
      transition-delay: 0.1s !important; }
    nav#sidecar ul#mainnav li:nth-child(3) a {
      transition-delay: 0.15s !important; }
    nav#sidecar ul#mainnav li:nth-child(4) a {
      transition-delay: 0.2s !important; }
    nav#sidecar ul#mainnav li:nth-child(5) a {
      transition-delay: 0.25s !important; }
    nav#sidecar ul#mainnav li:nth-child(6) a {
      transition-delay: 0.3s !important; }
    nav#sidecar ul#mainnav li:nth-child(7) a {
      transition-delay: 0.35s !important; }
    nav#sidecar ul#mainnav li:nth-child(8) a {
      transition-delay: 0.4s !important; }
    nav#sidecar ul#mainnav li:nth-child(9) a {
      transition-delay: 0.45s !important; }
    nav#sidecar ul#mainnav li ul {
      background: rgba(0, 0, 0, 0.2);
      display: block;
      float: none;
      margin: 0;
      max-height: 0px;
      overflow: hidden;
      padding: 0 0 0 0px;
      position: relative;
      transition: max-height 0.25s ease-in; }
      nav#sidecar ul#mainnav li ul li a {
        border: none;
        font: normal 1.6rem sans-serif;
        padding: 8px 0px 8px 16px;
        color: #008752; }
      nav#sidecar ul#mainnav li ul.active {
        display: block;
        float: none;
        max-height: 500px;
        transition: max-height 0.44s ease-in; }
    nav#sidecar ul#mainnav li a {
      color: white;
      display: inline-block;
      font: normal 2rem sans-serif;
      height: auto;
      opacity: 0;
      padding: 8px 16px;
      position: relative;
      transition: all 0.44s ease;
      width: 100%; }
      nav#sidecar ul#mainnav li a.expand {
        background: url("/sitefiles/2780/images/ui/arrow-light.svg") center/50% no-repeat;
        cursor: pointer;
        display: block;
        height: 40px;
        padding: 16px;
        position: absolute;
        right: 0;
        top: 10px;
        width: 40px; }
        nav#sidecar ul#mainnav li a.expand.active {
          transform: rotate(180deg); }

.utility-nav-sidecar {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center; }
  .utility-nav-sidecar .utility-links-sidecar {
    list-style: none;
    padding: 0; }
    .utility-nav-sidecar .utility-links-sidecar li {
      padding: 2em;
      color: white; }
      .utility-nav-sidecar .utility-links-sidecar li .mobile-news {
        display: none;
        position: relative;
        color: white; }
        .utility-nav-sidecar .utility-links-sidecar li .mobile-news:before {
          position: absolute;
          left: -35px;
          top: 7px;
          transform: translateY(-50%);
          content: "";
          background-image: url("/sitefiles/2780/images/mobile-news-icon.svg");
          height: 25px;
          width: 25px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center bottom;
          transition: transform 0.33s ease-in-out; }
        .utility-nav-sidecar .utility-links-sidecar li .mobile-news a {
          padding-left: 23px;
          font-weight: bold;
          font-size: 12px; }
        .utility-nav-sidecar .utility-links-sidecar li .mobile-news:hover:before {
          top: 5px;
          transform: rotate(-25deg); }
      .utility-nav-sidecar .utility-links-sidecar li .mobile-events {
        position: relative;
        color: white; }
        .utility-nav-sidecar .utility-links-sidecar li .mobile-events:before {
          position: absolute;
          left: -30px;
          top: 7px;
          transform: translateY(-50%);
          content: "";
          background-image: url("/sitefiles/2780/images/mobile-event-icon.svg");
          height: 20px;
          width: 20px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center bottom;
          transition: transform 0.33s ease-in-out; }
        .utility-nav-sidecar .utility-links-sidecar li .mobile-events a {
          padding-left: 23px;
          font-weight: bold;
          font-size: 12px; }
        .utility-nav-sidecar .utility-links-sidecar li .mobile-events:hover:before {
          top: 5px;
          transform: rotate(-25deg); }
      .utility-nav-sidecar .utility-links-sidecar li .mobile-blog {
        position: relative;
        color: white; }
        .utility-nav-sidecar .utility-links-sidecar li .mobile-blog:before {
          position: absolute;
          left: -30px;
          top: 7px;
          transform: translateY(-50%);
          content: "";
          background-image: url("/sitefiles/2780/images/mobile_blog_icon.png");
          height: 20px;
          width: 20px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center bottom;
          transition: transform 0.33s ease-in-out; }
        .utility-nav-sidecar .utility-links-sidecar li .mobile-blog a {
          padding-left: 23px;
          font-weight: bold;
          font-size: 12px; }
        .utility-nav-sidecar .utility-links-sidecar li .mobile-blog:hover:before {
          top: 5px;
          transform: rotate(-25deg); }

/* _footer.scss */
footer {
  background-size: cover;
  width: 100%;
  height: 1000px;
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative; }
  @media only screen and (min-width: 1024px) {
    footer {
      height: 900px;
      background-size: cover; } }
  @media only screen and (min-width: 1700px) {
    footer {
      height: 1100px; } }
  footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 100px;
    width: 100%;
    height: 400px; }
    @media only screen and (min-width: 1024px) {
      footer .footer-content {
        flex-direction: row;
        position: absolute;
        bottom: 50px; } }
    footer .footer-content .footer-social {
      text-align: center; }
      @media only screen and (min-width: 1024px) {
        footer .footer-content .footer-social {
          width: 30%;
          order: 2;
          margin-top: -2em; } }
      footer .footer-content .footer-social .footer-logo {
        width: 150px;
        height: 100px; }
        @media only screen and (min-width: 1024px) {
          footer .footer-content .footer-social .footer-logo {
            width: 300px;
            height: 200px; } }
      footer .footer-content .footer-social .social-links {
        text-align: center; }
        footer .footer-content .footer-social .social-links img {
          padding: 1em;
          transition: transform 0.33s ease-in-out; }
          footer .footer-content .footer-social .social-links img:hover {
            transform: translateY(-5px); }
        footer .footer-content .footer-social .social-links .instagram {
          background-color: white;
          border-radius: 50%;
          margin: 0.98em;
          padding: 9px; }
    footer .footer-content .footer-links {
      text-align: center;
      padding-bottom: 2em;
      line-height: 35px;
      display: flex;
      flex-direction: column; }
      @media only screen and (min-width: 1024px) {
        footer .footer-content .footer-links {
          order: 1;
          width: 20%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          text-align: left;
          margin-top: 2em; } }
      footer .footer-content .footer-links a {
        color: white;
        font-weight: bold; }
        footer .footer-content .footer-links a:hover {
          color: #008752; }
    footer .footer-content .footer-contact {
      text-align: center;
      line-height: 25px; }
      @media only screen and (min-width: 1024px) {
        footer .footer-content .footer-contact {
          order: 3;
          width: 20%;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          text-align: center;
          margin-top: 2em; } }
      footer .footer-content .footer-contact a {
        color: white;
        font-size: 16px;
        font-family: "Montserrat";
        font-weight: 500; }
        footer .footer-content .footer-contact a:hover {
          color: #008752; }
  footer .site-credentials {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: white;
    color: #00502E;
    position: absolute;
    bottom: 0;
    text-align: center;
    padding: 0.25em;
    font-family: "Montserrat";
    font-size: 12px; }
    footer .site-credentials p {
      font-size: 12px;
      margin: 0; }
    footer .site-credentials .site-credit-link {
      padding: 3px; }
    footer .site-credentials a {
      color: #00502E;
      font-size: 12px; }
      footer .site-credentials a:hover {
        color: #008752; }

/* ============ HELPERS ============ */
/* _mixins.scss */
/* ============ Pseudo Element Overlay ============ */
.shade {
  position: relative; }
  .shade::before {
    background: black;
    content: '';
    height: 100%;
    left: 0;
    opacity: 0.5;
    position: absolute;
    top: 0;
    transition: opacity 0.25s ease;
    width: 100%;
    z-index: 0; }

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

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

.no-padding {
  padding: 0; }

.no-margin {
  margin: 0; }

.cushion-sm {
  padding: 2%; }

.cushion-md {
  padding: 5%; }

.cushion-lg {
  padding: 10%; }

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

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

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

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

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

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

.white {
  color: white !important; }

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

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

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

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

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

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

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

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

.transition {
  transition: all 0.5s ease; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 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: calc(1 * 3);
  animation-iteration-count: calc(1 * 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: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2); }

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

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

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

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

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

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

.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -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: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -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: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -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: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -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: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -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: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -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: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -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; }

@keyframes hoverSummary {
  0% {
    width: 0%;
    opacity: .2; }
  50% {
    opacity: .4; }
  100% {
    opacity: 0;
    width: 100%; } }

@keyframes sweep {
  0% {
    opacity: 0;
    margin-left: -10px; }
  100% {
    opacity: 1;
    margin-left: 0px; } }

@keyframes bgShrinkSwap {
  0% {
    -webkit-mask-size: 100%; }
  50% {
    -webkit-mask-size: 0px; }
  100% {
    -webkit-mask-size: 100%; } }

@keyframes scrollDown {
  0% {
    top: 20%;
    background: white; }
  50% {
    background: white; }
  100% {
    top: 80%;
    background: rgba(255, 255, 255, 0.05); } }

@keyframes zoomInRight2 {
  from {
    opacity: 0;
    transform: scale(0) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutLeft2 {
  from {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0); } }

@keyframes spotLight {
  0% {
    transform: rotate(0deg); }
  50% { }
  100% {
    transform: rotate(360deg); } }

@keyframes waveIt {
  0%,
  100% {
    -webkit-mask-position: -100% center; }
  50% {
    -webkit-mask-position: 100% center; } }

/* ============ PAGES ============ */
/* _home.scss */
.home footer {
  background-color: #B0BC22; }

#homebanner .home-banner {
  display: block;
  position: relative; }
  @media (max-width: 1023px) {
    #homebanner .home-banner {
      height: 100vh;
      height: calc(100vh - 100px);
      min-height: 500px;
      text-align: center;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      margin-top: 100px; }
      #homebanner .home-banner .home-banner_logo {
        display: none; }
      #homebanner .home-banner .line-one {
        padding-top: 60px;
        margin-bottom: 0; }
      #homebanner .home-banner .line-two {
        margin-top: 0; } }
  @media only screen and (min-width: 1024px) {
    #homebanner .home-banner {
      background-size: cover;
      background-repeat: no-repeat;
      background-attachment: fixed;
      width: 100%;
      height: calc(100vh - 100px);
      min-height: 500px;
      background-position: top;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      animation: fadeIn 1s ease; }
      #homebanner .home-banner img {
        width: 200px;
        position: absolute;
        top: 10px; }
      #homebanner .home-banner h1 {
        color: #00502E;
        font-size: 50px;
        text-align: center;
        width: 60%;
        margin: auto;
        text-transform: uppercase;
        font-weight: normal;
        position: absolute;
        top: 120px;
        animation: fadeInDown 2s; } }
    @media only screen and (min-width: 1024px) and (min-width: 1440px) {
      #homebanner .home-banner h1 {
        font-size: 70px; } }
  @media only screen and (min-width: 1024px) {
      #homebanner .home-banner .line-two {
        top: 180px;
        opacity: 0;
        animation: fadeInDown 2s ease 1.5s forwards; } }
    @media only screen and (min-width: 1024px) and (min-width: 1440px) {
      #homebanner .home-banner .line-two {
        top: 200px; } }
  #homebanner .home-banner .announcement {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2em;
    background-color: #00502E; }
    #homebanner .home-banner .announcement .announcement-icon {
      width: 50px;
      position: relative;
      top: 0px; }
    #homebanner .home-banner .announcement h5 {
      color: white;
      font-size: 14px;
      width: 50%;
      text-transform: uppercase; }
    #homebanner .home-banner .announcement button {
      background-color: #B0BC22;
      color: #00502E;
      text-transform: uppercase;
      border: none;
      padding: 1em;
      font-family: "Montserrat";
      font-weight: bold;
      cursor: pointer;
      transition: all 0.33s ease-in-out; }
      #homebanner .home-banner .announcement button:hover {
        background-color: white;
        color: #00502E; }
  #homebanner .home-banner .close-announcement {
    display: none; }
  #homebanner .home-banner .scroll-indicator {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 30px;
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px; }
    #homebanner .home-banner .scroll-indicator:before {
      content: "scroll down";
      position: absolute;
      color: rgba(255, 255, 255, 0.9);
      text-align: center;
      left: 50%;
      transform: translate(-50%, -50%);
      text-transform: uppercase;
      font-size: 10px;
      top: -23px;
      letter-spacing: 1px; }
      @media (max-width: 767px) {
        #homebanner .home-banner .scroll-indicator:before {
          content: "swipe up"; } }
    @media (max-width: 767px) {
      #homebanner .home-banner .scroll-indicator {
        border-radius: 0; } }
    #homebanner .home-banner .scroll-indicator span {
      animation: scrollDown 2s ease infinite;
      transform: translate(-50%, -50%);
      width: 4px;
      height: 4px;
      position: absolute;
      left: 50%;
      border-radius: 50%; }
      @media (max-width: 767px) {
        #homebanner .home-banner .scroll-indicator span {
          animation-direction: reverse; } }
@media only screen and (min-width: 1024px) {
  #learningexperience {
    margin-top: -15em;
    background-image: url("/sitefiles/2780/images/ohs-hp-left-section.svg"), url("/sitefiles/2780/images/ohs-hp-right-section.svg");
    background-repeat: no-repeat;
    background-position-x: -25em, 115em !important; } }

@media only screen and (min-width: 1440px) {
  #learningexperience {
    background-position-x: -25em, 145em !important; } }

@media (min-width: 1024px) {
  #learningexperience > .sw-public-page-part:nth-child(2) {
    padding-bottom: 240px; } }

.home-intro {
  margin: 15em 2em 0em 2em; }
  .home-intro h1 {
    font-family: "Cinzel";
    color: #759e2e;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: normal;
    animation: fadeInLeft 1s ease; }
  .home-intro p {
    animation: fadeInRight 1s ease; }
  @media only screen and (min-width: 1024px) {
    .home-intro {
      width: 80%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: auto;
      margin-top: 25em;
      padding-top: 13em;
      margin-bottom: 5em; }
      .home-intro h1 {
        font-family: "Cinzel";
        color: #759e2e;
        font-size: 60px;
        font-weight: normal;
        line-height: 65px;
        text-transform: uppercase;
        margin: 0;
        text-align: right;
        width: 530px; }
      .home-intro p {
        font-family: "Montserrat";
        color: #00502e;
        font-size: 16px;
        line-height: 20px;
        width: 300px;
        margin: 0;
        padding-left: 4em; } }
.home-portals {
  margin: 10em 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5em;
  flex-direction: column;
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px; }
  @media only screen and (min-width: 1024px) {
    .home-portals {
      flex-direction: row;
      height: 300px; } }
  .home-portals .portal {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    mask-image: url("/sitefiles/2780/images/flipped-photo-mask.svg");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    width: 550px;
    min-height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: scale(1);
    height: inherit;
    transition: all .33s ease;
    position: relative; }
    @media only screen and (min-width: 768px) {
      .home-portals .portal {
        background-size: cover;
        width: 100%;
        min-height: 500px; } }
    @media only screen and (min-width: 1024px) {
      .home-portals .portal {
        background-size: cover;
        width: 100%;
        min-height: 375px; }
        .home-portals .portal.prek {
          margin-right: -7em; }
        .home-portals .portal.upper-school {
          margin-left: -2em; }
        .home-portals .portal.learning-services {
          margin-left: -7em; } }
    .home-portals .portal:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: #00502E;
      opacity: .6; }
    .home-portals .portal .normal-state {
      display: block;
      justify-content: center;
      align-items: center;
      width: 50%;
      flex-direction: column;
      position: relative; }
      @media only screen and (min-width: 768px) {
        .home-portals .portal .normal-state {
          width: 70%; } }
      .home-portals .portal .normal-state h4 {
        text-transform: uppercase;
        color: white;
        text-align: center;
        margin: 0;
        margin-bottom: 0.5em;
        font-size: 44px; }
        @media only screen and (min-width: 1024px) {
          .home-portals .portal .normal-state h4 {
            margin: 1em 0;
            font-size: 30px; } }
      @media only screen and (min-width: 1024px) {
        .home-portals .portal .normal-state a {
          display: none; } }
    .home-portals .portal .hover-state {
      display: block;
      position: relative;
      transition: all .33s ease 0s;
      display: block;
      max-height: 0;
      visibility: hidden;
      opacity: 0;
      z-index: 1;
      width: 80%;
      text-align: center; }
      .home-portals .portal .hover-state h4 {
        color: white;
        text-transform: uppercase;
        margin: 0;
        width: 35%;
        text-align: center;
        font-size: 20px; }
      .home-portals .portal .hover-state p {
        color: white;
        font-size: 12px;
        line-height: 15px;
        width: 100%;
        margin: 5px;
        text-align: center; }
      .home-portals .portal .hover-state a {
        margin: 0;
        margin-top: 15px;
        min-width: 200px; }
    .home-portals .portal:hover {
      mask-image: url("/sitefiles/2780/images/hover-state-portal.svg") !important;
      animation: bgShrinkSwap .66s ease forwards;
      transition: -webkit-mask-image .33s ease .5s, all .33s ease;
      z-index: 2; }
      .home-portals .portal:hover .normal-state {
        display: block; }
      .home-portals .portal:hover .hover-state {
        max-height: 500px;
        visibility: visible;
        opacity: 1;
        transition: all 1s ease .5s; }
    @media (max-width: 767px) {
      .home-portals .portal {
        mask-image: url("/sitefiles/2780/images/hover-state-portal.svg") !important;
        animation: bgShrinkSwap .66s ease forwards;
        transition: -webkit-mask-image .33s ease .5s, all .33s ease;
        z-index: 2; }
        .home-portals .portal .normal-state {
          display: block; }
        .home-portals .portal .hover-state {
          max-height: 500px;
          visibility: visible;
          opacity: 1;
          transition: all 1s ease .5s; } }
  .home-portals .alternate {
    mask-image: url("/sitefiles/2780/images/ohs-tree-ring-photo-mask.svg"); }
    @media only screen and (min-width: 1024px) {
      .home-portals .alternate {
        margin-top: 200px; } }
    .home-portals .alternate:hover {
      mask-image: url("/sitefiles/2780/images/alternate-hover-state-portal.svg") !important; }

.home-portals2 {
  display: block;
  position: relative;
  z-index: 9; }
  .home-portals2 .inner-wrapper {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px; }
    .home-portals2 .inner-wrapper ul.home-portal-links {
      display: flex;
      flex-wrap: nowrap;
      padding-left: 0;
      list-style: none;
      justify-content: space-between; }
      @media (max-width: 1000px) {
        .home-portals2 .inner-wrapper ul.home-portal-links {
          flex-wrap: wrap; } }
      .home-portals2 .inner-wrapper ul.home-portal-links li {
        flex-basis: calc((100% / 4) - 15px);
        text-align: center;
        min-height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        padding: 3% 2%; }
        @media (max-width: 767px) {
          .home-portals2 .inner-wrapper ul.home-portal-links li {
            flex-basis: calc((100% / 1) - 15px); } }
        @media (min-width: 768px) and (max-width: 1000px) {
          .home-portals2 .inner-wrapper ul.home-portal-links li {
            flex-basis: calc((100% / 2) - 15px); } }
        .home-portals2 .inner-wrapper ul.home-portal-links li .normal-background,
        .home-portals2 .inner-wrapper ul.home-portal-links li .hover-background {
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);
          width: 110%;
          height: 110%;
          min-width: 350px;
          min-height: 350px;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: center;
          -webkit-mask-image: url("/sitefiles/2780/images/flipped-photo-mask.svg");
          -webkit-mask-size: contain;
          -webkit-mask-repeat: no-repeat;
          -webkit-mask-position: center;
          transition: all 0.33s ease; }
          @media (max-width: 767px) {
            .home-portals2 .inner-wrapper ul.home-portal-links li .normal-background,
            .home-portals2 .inner-wrapper ul.home-portal-links li .hover-background {
              width: 100%;
              height: 100%; } }
          @media (min-width: 1200px) {
            .home-portals2 .inner-wrapper ul.home-portal-links li .normal-background,
            .home-portals2 .inner-wrapper ul.home-portal-links li .hover-background {
              width: 120%;
              height: 120%;
              min-width: 400px;
              min-height: 400px; } }
          .home-portals2 .inner-wrapper ul.home-portal-links li .normal-background:before,
          .home-portals2 .inner-wrapper ul.home-portal-links li .hover-background:before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: #00502E;
            opacity: 0.6; }
        .home-portals2 .inner-wrapper ul.home-portal-links li .hover-background {
          min-height: 0;
          min-width: 0;
          transform: translate(-50%, -50%);
          width: 0;
          height: 0;
          -webkit-mask-image: url("/sitefiles/2780/images/alternate-hover-state-portal.svg"); }
        .home-portals2 .inner-wrapper ul.home-portal-links li h4 {
          position: relative;
          color: white;
          text-transform: uppercase;
          line-height: 1.2;
          font-size: 25px;
          margin-bottom: 20px; }
        .home-portals2 .inner-wrapper ul.home-portal-links li p {
          color: white;
          position: relative;
          margin-top: 0;
          margin-bottom: 0;
          visibility: hidden;
          opacity: 0;
          max-height: 0;
          transition: all 0.33s ease;
          line-height: 1.3;
          font-weight: 500;
          font-size: 14px; }
          @media (max-width: 767px) {
            .home-portals2 .inner-wrapper ul.home-portal-links li p {
              display: none; }
              .home-portals2 .inner-wrapper ul.home-portal-links li p:last-child {
                display: block;
                visibility: visible;
                max-height: 150px;
                opacity: 1; } }
        .home-portals2 .inner-wrapper ul.home-portal-links li .btn-green {
          margin-right: 0;
          margin-bottom: 0;
          min-width: 0;
          padding-left: 25px !important;
          padding-right: 25px !important; }
        @media (min-width: 768px) {
          .home-portals2 .inner-wrapper ul.home-portal-links li:hover {
            z-index: 1; }
            .home-portals2 .inner-wrapper ul.home-portal-links li:hover .normal-background {
              transform: translate(-50%, -50%);
              width: 0;
              height: 0;
              min-width: 0;
              min-height: 0; }
            .home-portals2 .inner-wrapper ul.home-portal-links li:hover .hover-background {
              width: 130%;
              height: 130%; }
            .home-portals2 .inner-wrapper ul.home-portal-links li:hover p {
              margin-bottom: 10px;
              visibility: visible;
              max-height: 300px;
              opacity: 1; }
              .home-portals2 .inner-wrapper ul.home-portal-links li:hover p:last-child {
                margin-bottom: 0; } }
        .home-portals2 .inner-wrapper ul.home-portal-links li:nth-child(odd) .hover-background {
          -webkit-mask-image: url("/sitefiles/2780/images/hover-state-portal.svg"); }
        .home-portals2 .inner-wrapper ul.home-portal-links li:nth-child(even) .normal-background {
          -webkit-mask-image: url("/sitefiles/2780/images/ohs-tree-ring-photo-mask.svg"); }

.remote-learning {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  @media only screen and (min-width: 1024px) {
    .remote-learning {
      flex-direction: row;
      width: 80%;
      margin: auto;
      margin-top: 15em;
      padding-bottom: 18em; } }
  .remote-learning img {
    order: 2;
    width: 90%;
    position: relative; }
    @media only screen and (min-width: 1024px) {
      .remote-learning img {
        order: 1;
        width: 40%;
        object-fit: cover;
        margin: 0 10em 0 0;
        height: 500px; } }
  .remote-learning .remote-content {
    margin: 2em; }
    @media only screen and (min-width: 1024px) {
      .remote-learning .remote-content {
        order: 2;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 500px;
        height: 500px;
        margin: 0; } }
    .remote-learning .remote-content h2 {
      font-size: 35px;
      position: relative;
      text-transform: uppercase; }
      @media only screen and (min-width: 1024px) {
        .remote-learning .remote-content h2 {
          font-size: 60px;
          margin: 0;
          font-weight: normal;
          line-height: 50px; } }
    .remote-learning .remote-content h5 {
      font-family: "Montserrat";
      text-transform: uppercase;
      position: relative;
      font-size: 24px;
      color: #00502E;
      margin: 1em 0 0 0;
      font-weight: normal; }
    .remote-learning .remote-content p {
      line-height: 32px;
      position: relative; }
      @media only screen and (min-width: 1024px) {
        .remote-learning .remote-content p {
          line-height: 28px; } }
    .remote-learning .remote-content button {
      border-image: linear-gradient(to right, #05894e, #77a423) 1;
      background-color: white;
      border-radius: 0;
      border-bottom: 8px solid;
      cursor: pointer;
      color: #05894e;
      font-size: 18px !important;
      font-weight: bold !important;
      text-transform: uppercase;
      font-family: "Montserrat";
      text-align: left;
      padding: 0.8em !important;
      position: relative;
      overflow: hidden;
      z-index: 1;
      -webkit-transition: color 150ms ease-in-out;
      transition: color 150ms ease-in-out;
      width: 100%; }
      @media only screen and (min-width: 1024px) {
        .remote-learning .remote-content button {
          width: 250px; } }
      .remote-learning .remote-content button:after {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 110%;
        height: 0%;
        background: #008850;
        z-index: -1;
        -webkit-transition: height 150ms ease-in-out;
        transition: height 150ms ease-in-out;
        transition: background-image 1s ease-in-out; }
      .remote-learning .remote-content button:hover {
        background-image: linear-gradient(to left, #759E2E, #008752);
        color: white; }

section#foundation .inner-wrapper {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 15px; }

section#foundation .foundation-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
  position: relative;
  overflow: hidden; }
  @media (min-width: 768px) {
    section#foundation .foundation-section {
      min-height: 700px; } }
  @media (max-width: 767px) {
    section#foundation .foundation-section {
      min-height: 650px;
      background: #008850;
      background: linear-gradient(180deg, #008850 0%, #00502e 100%); } }
  section#foundation .foundation-section:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("/sitefiles/2780/images/ui/tree-lines.svg");
    background-repeat: no-repeat;
    background-attachment: fixed; }
  section#foundation .foundation-section ul.slider-images {
    top: 0;
    left: 0;
    list-style: none;
    padding-left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0; }
    @media (max-width: 767px) {
      section#foundation .foundation-section ul.slider-images {
        display: none; } }
    section#foundation .foundation-section ul.slider-images li {
      top: 0;
      left: 0;
      position: absolute;
      width: 100%;
      height: 100%;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      opacity: 0;
      background-attachment: fixed;
      -webkit-mask-image: url("/sitefiles/2780/images/ui/wave-white.svg");
      -webkit-mask-repeat: repeat-x;
      -webkit-mask-position: -200% center;
      transition: all 5s ease 1s; }
      @media (min-width: 768px) {
        section#foundation .foundation-section ul.slider-images li {
          -webkit-mask-size: 1730px; } }
      section#foundation .foundation-section ul.slider-images li:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.2); }
      section#foundation .foundation-section ul.slider-images li.active {
        animation: zoomInRight2 1s ease forwards; }
      section#foundation .foundation-section ul.slider-images li:not(.active) {
        animation: zoomOutLeft2 1s ease forwards; }
  section#foundation .foundation-section .controls-container {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 30px);
    left: 15px;
    z-index: 10; }
    @media (min-width: 768px) {
      section#foundation .foundation-section .controls-container {
        width: calc(100% - 50px);
        left: 25px; } }
    section#foundation .foundation-section .controls-container div {
      width: 40px;
      height: 40px;
      position: absolute;
      background-position: center;
      background-repeat: no-repeat;
      background-size: contain;
      cursor: pointer;
      transform: scale(1);
      transition: all .33s ease; }
      @media (max-width: 767px) {
        section#foundation .foundation-section .controls-container div {
          filter: brightness(900%) grayscale(100%); } }
      section#foundation .foundation-section .controls-container div.prev-slide {
        background-image: url("/sitefiles/2780/images/ui/chev-left.svg"); }
      section#foundation .foundation-section .controls-container div.next-slide {
        right: 0;
        background-image: url("/sitefiles/2780/images/ui/chev-right.svg"); }
      section#foundation .foundation-section .controls-container div:hover {
        transform: scale(1.1); }
  section#foundation .foundation-section .inner-wrapper {
    padding: 100px 15px;
    position: relative;
    z-index: 10; }
    section#foundation .foundation-section .inner-wrapper .quote-mark {
      z-index: 1;
      position: absolute;
      width: 70px;
      height: 70px;
      top: calc(50% + 15px);
      left: 15px;
      background-image: url("/sitefiles/2780/images/ui/left-quotes.svg");
      background-size: contain;
      background-repeat: no-repeat;
      opacity: 1; }
      @media (max-width: 767px) {
        section#foundation .foundation-section .inner-wrapper .quote-mark {
          opacity: .4; } }
    section#foundation .foundation-section .inner-wrapper > h2 {
      z-index: 1;
      position: relative;
      color: #00502E;
      margin: 0;
      transition: all .33s ease;
      opacity: 0; }
      @media (max-width: 767px) {
        section#foundation .foundation-section .inner-wrapper > h2 {
          color: white; } }
      @media (min-width: 768px) {
        section#foundation .foundation-section .inner-wrapper > h2 {
          text-shadow: 0 0 10px white; } }
    section#foundation .foundation-section .inner-wrapper > h4 {
      transition: all .33s ease;
      margin-top: 0;
      font-size: 20px;
      position: relative;
      text-transform: uppercase;
      z-index: 1;
      opacity: 0; }
      @media (max-width: 767px) {
        section#foundation .foundation-section .inner-wrapper > h4 {
          color: white; } }
      @media (min-width: 768px) {
        section#foundation .foundation-section .inner-wrapper > h4 {
          text-shadow: 0 0 10px white; } }
    section#foundation .foundation-section .inner-wrapper .tns-outer .tns-inner ul.foundation-slides {
      padding-left: 0;
      margin-left: 50px; }
      @media (max-width: 767px) {
        section#foundation .foundation-section .inner-wrapper .tns-outer .tns-inner ul.foundation-slides {
          margin-right: 25px;
          margin-left: 25px; } }
      @media (min-width: 768px) {
        section#foundation .foundation-section .inner-wrapper .tns-outer .tns-inner ul.foundation-slides {
          max-width: 550px; }
          section#foundation .foundation-section .inner-wrapper .tns-outer .tns-inner ul.foundation-slides:before {
            z-index: -1;
            content: "";
            width: 40vw;
            height: 40vw;
            background-color: rgba(255, 255, 255, 0.7);
            filter: blur(50px);
            position: absolute;
            left: 0;
            top: -14vw;
            transform-origin: 45% 48%;
            border-radius: 50%;
            animation: spotLight 10s linear infinite; } }
      section#foundation .foundation-section .inner-wrapper .tns-outer .tns-inner ul.foundation-slides li {
        z-index: 1; }
        section#foundation .foundation-section .inner-wrapper .tns-outer .tns-inner ul.foundation-slides li .slide-copy {
          z-index: 3; }
          @media (max-width: 767px) {
            section#foundation .foundation-section .inner-wrapper .tns-outer .tns-inner ul.foundation-slides li .slide-copy > *:not([class]) {
              color: white; } }
          @media (min-width: 768px) {
            section#foundation .foundation-section .inner-wrapper .tns-outer .tns-inner ul.foundation-slides li .slide-copy > *:not([class]) {
              text-shadow: 0 0 10px white; } }
          section#foundation .foundation-section .inner-wrapper .tns-outer .tns-inner ul.foundation-slides li .slide-copy .btn-green {
            text-shadow: none; }
          section#foundation .foundation-section .inner-wrapper .tns-outer .tns-inner ul.foundation-slides li .slide-copy p {
            position: relative;
            font-weight: 500;
            line-height: 1.4; }
            @media (max-width: 767px) {
              section#foundation .foundation-section .inner-wrapper .tns-outer .tns-inner ul.foundation-slides li .slide-copy p {
                font-weight: 400; } }
        section#foundation .foundation-section .inner-wrapper .tns-outer .tns-inner ul.foundation-slides li.fSlideIN {
          animation: fadeInUp 1s ease forwards; }
        section#foundation .foundation-section .inner-wrapper .tns-outer .tns-inner ul.foundation-slides li.fSlideOUT {
          animation: fadeOutDown .33s ease forwards; }
  section#foundation .foundation-section.inview .inner-wrapper > h2 {
    animation: fadeInDown 1s ease forwards 1s; }
  section#foundation .foundation-section.inview .inner-wrapper > h4 {
    animation: fadeInLeft 1s ease forwards 2s; }

.foundation-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; }
  @media only screen and (max-width: 1024px) {
    .foundation-banner {
      background-image: url("/sitefiles/2780/images/ohs-tree-trunk-shape.svg") !important;
      background-repeat: no-repeat;
      background-size: cover;
      height: 1200px; } }
  @media only screen and (min-width: 768px) {
    .foundation-banner {
      height: 800px; } }
  @media only screen and (min-width: 1024px) {
    .foundation-banner {
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      height: 850px;
      margin-top: -8em;
      background-attachment: fixed;
      -webkit-mask-image: url("/sitefiles/2780/images/ui/wave-white.svg");
      -webkit-mask-size: 2150px;
      opacity: 0;
      transition: all 1s ease; } }
  .foundation-banner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    opacity: 0.25; }
    @media only screen and (min-width: 1024px) {
      .foundation-banner:before {
        opacity: .5;
        transition: all 1s ease; } }
  .foundation-banner > div {
    z-index: 2; }
  @media only screen and (min-width: 1024px) {
    .foundation-banner .foundation-title {
      padding-left: 5em;
      width: 50%;
      opacity: 0; }
      .foundation-banner .foundation-title > * {
        position: relative; }
        .foundation-banner .foundation-title > *:before {
          background: rgba(255, 255, 255, 0.5);
          position: absolute;
          width: 100%;
          height: 100%;
          left: 0;
          top: 0;
          content: "";
          z-index: -1;
          filter: blur(12px); } }
  .foundation-banner .foundation-title h2 {
    color: white;
    text-transform: uppercase;
    font-size: 50px;
    margin: 0 15px;
    line-height: 60px;
    position: relative; }
    @media only screen and (min-width: 1024px) {
      .foundation-banner .foundation-title h2 {
        color: #00502E;
        font-size: 60px;
        margin: 0; } }
  .foundation-banner .foundation-title h4 {
    text-transform: uppercase;
    color: white;
    font-weight: normal;
    font-size: 19px;
    position: relative;
    margin: 15px;
    font-weight: 600; }
    @media only screen and (min-width: 1024px) {
      .foundation-banner .foundation-title h4 {
        color: #00502E;
        font-size: 21px;
        margin: 0.5em 0; } }
  .foundation-banner .foundation-content {
    position: relative;
    margin: 0 40px;
    font-weight: 500; }
    @media only screen and (min-width: 1024px) {
      .foundation-banner .foundation-content {
        width: 50%;
        margin-left: 10em;
        opacity: 0;
        position: relative; }
        .foundation-banner .foundation-content:before {
          transform-origin: 50% 20%;
          animation: rotate 10s linear forwards infinite;
          content: "";
          width: 200px;
          height: 200px;
          position: absolute;
          left: -115px;
          top: 20px;
          background-size: contain;
          background-position: center;
          background-repeat: no-repeat;
          background-image: url("/sitefiles/2780/images/quotation.svg"); }
        .foundation-banner .foundation-content > * {
          position: relative; }
          .foundation-banner .foundation-content > *:before {
            background: rgba(255, 255, 255, 0.2);
            position: absolute;
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
            content: "";
            z-index: -1;
            filter: blur(12px); } }
    .foundation-banner .foundation-content h3 {
      color: white;
      text-transform: uppercase;
      margin-bottom: 15px;
      position: relative; }
      @media only screen and (min-width: 1024px) {
        .foundation-banner .foundation-content h3 {
          color: #00502E; } }
    .foundation-banner .foundation-content p {
      color: white;
      margin-top: 0;
      position: relative; }
      @media only screen and (min-width: 1024px) {
        .foundation-banner .foundation-content p {
          color: #00502E; } }
    .foundation-banner .foundation-content img {
      position: relative;
      top: -502px;
      left: -40px;
      width: 85px; }
      @media only screen and (min-width: 768px) {
        .foundation-banner .foundation-content img {
          top: -220px;
          left: -290px; } }
    .foundation-banner .foundation-content a button {
      border-image: linear-gradient(to right, #05894e, #77a423) 1;
      background-color: white;
      border-radius: 0;
      border-bottom: 8px solid;
      color: #05894e;
      font-size: 18px !important;
      font-weight: bold !important;
      text-transform: uppercase;
      font-family: "Montserrat";
      text-align: left;
      padding: 0.8em !important;
      position: relative;
      overflow: hidden;
      z-index: 1;
      -webkit-transition: color 150ms ease-in-out;
      transition: color 150ms ease-in-out;
      width: 100%;
      cursor: pointer; }
      @media only screen and (min-width: 768px) {
        .foundation-banner .foundation-content a button {
          width: 250px; } }
      .foundation-banner .foundation-content a button:after {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 110%;
        height: 0%;
        background: #008850;
        z-index: -1;
        -webkit-transition: height 150ms ease-in-out;
        transition: height 150ms ease-in-out; }
      .foundation-banner .foundation-content a button:hover {
        background-image: linear-gradient(to left, #759E2E, #008752);
        color: white; }
  @media (min-width: 1024px) {
    .foundation-banner.inview {
      opacity: 1; }
      .foundation-banner.inview:before {
        opacity: 0.2; }
      .foundation-banner.inview .foundation-title {
        animation: fadeInLeft 1s ease forwards 1s; }
      .foundation-banner.inview .foundation-content {
        animation: fadeInLeft 1s ease forwards 1.33s; } }
@media only screen and (min-width: 1024px) {
  #faith {
    width: 80%;
    margin: 0 auto; } }

.faith-video {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 10em;
  margin-top: 5em; }
  @media only screen and (min-width: 1024px) {
    .faith-video {
      flex-direction: row;
      margin: 10em; } }
  .faith-video > * {
    flex-basis: 50%;
    position: relative; }
    @media (max-width: 1000px) {
      .faith-video > * {
        width: 90%; } }
  .faith-video .embed-container {
    margin: 0 auto; }
    @media only screen and (min-width: 1024px) {
      .faith-video .embed-container {
        padding-bottom: 350px; } }
  .faith-video .faith-image {
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.33s ease, box-shadow 0.05s ease 0s;
    transform: rotate(0deg) scale(1);
    opacity: 0; }
    @media (min-width: 1440px) {
      .faith-video .faith-image {
        box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0.5); } }
    @media (max-width: 1023px) {
      .faith-video .faith-image {
        height: 400px;
        width: 100%;
        display: block;
        flex-basis: 400px;
        margin-bottom: 50px; } }
    .faith-video .faith-image:hover {
      background-size: 150%;
      transform: rotate(2deg) scale(1.3);
      transition: all 0.33s ease, box-shadow 0.33s ease 0.33s; }
      @media (min-width: 1440px) {
        .faith-video .faith-image:hover {
          box-shadow: 0 25px 25px -14px rgba(0, 0, 0, 0.5); } }
    .faith-video .faith-image.inview {
      animation: fadeInLeft 1s ease forwards; }
  .faith-video .faith-video-description {
    margin: 0 auto;
    opacity: 0; }
    .faith-video .faith-video-description.inview {
      animation: fadeInRight 1s ease forwards; }
    .faith-video .faith-video-description h2 {
      margin: 0; }
    .faith-video .faith-video-description a button {
      border-image: linear-gradient(to right, #05894e, #77a423) 1;
      background-color: white;
      border-radius: 0;
      border-bottom: 8px solid;
      color: #05894e;
      font-size: 18px !important;
      font-weight: bold !important;
      text-transform: uppercase;
      font-family: "Montserrat";
      text-align: left;
      padding: 0.8em !important;
      position: relative;
      overflow: hidden;
      z-index: 1;
      -webkit-transition: color 150ms ease-in-out;
      transition: color 150ms ease-in-out;
      width: 100%;
      cursor: pointer; }
      @media only screen and (min-width: 1024px) {
        .faith-video .faith-video-description a button {
          width: 250px; } }
      .faith-video .faith-video-description a button:after {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 110%;
        height: 0%;
        background: #008850;
        z-index: -1;
        -webkit-transition: height 150ms ease-in-out;
        transition: height 150ms ease-in-out; }
      .faith-video .faith-video-description a button:hover {
        background-image: linear-gradient(to left, #759E2E, #008752);
        color: white; }
    @media only screen and (min-width: 1024px) {
      .faith-video .faith-video-description {
        padding-left: 8em; } }
    .faith-video .faith-video-description h2 {
      font-weight: normal;
      text-transform: uppercase; }

.tour-section {
  padding-bottom: 5em; }

.tour {
  width: 90%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 8em; }
  @media only screen and (min-width: 1024px) {
    .tour {
      width: 50%; } }
  .tour h2 {
    text-align: center;
    margin: 0; }
  .tour a {
    width: 100%; }
    @media only screen and (min-width: 1024px) {
      .tour a {
        text-align: center; } }
    .tour a button {
      border-image: linear-gradient(to right, #05894e, #77a423) 1;
      background-color: white;
      border-radius: 0;
      border-bottom: 8px solid;
      color: #05894e;
      cursor: pointer;
      font-size: 18px !important;
      font-weight: bold !important;
      text-transform: uppercase;
      font-family: "Montserrat";
      text-align: center;
      padding: 0.8em !important;
      position: relative;
      overflow: hidden;
      z-index: 1;
      -webkit-transition: color 150ms ease-in-out;
      transition: color 150ms ease-in-out;
      width: 100%; }
      @media only screen and (min-width: 1024px) {
        .tour a button {
          width: 250px; } }
      .tour a button:after {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 110%;
        height: 0%;
        background: #008850;
        z-index: -1;
        -webkit-transition: height 150ms ease-in-out;
        transition: height 150ms ease-in-out; }
      .tour a button:hover {
        background-image: linear-gradient(to left, #759E2E, #008752);
        color: white; }

#this-week {
  background-image: linear-gradient(#008752, #759E2E);
  padding: 20px; }
  @media only screen and (min-width: 1024px) {
    #this-week {
      padding: 50px; } }
  @media only screen and (min-width: 1024px) {
    #this-week .news-title {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin: 0 auto; } }
  #this-week h1 {
    font-weight: normal;
    color: white;
    text-align: left;
    font-size: 50px;
    text-transform: uppercase;
    line-height: 50px; }
    @media only screen and (min-width: 1024px) {
      #this-week h1 {
        width: 100%; } }
  #this-week a button {
    border-image: linear-gradient(to right, #05894e, #77a423) 1;
    background-color: white;
    border-radius: 0;
    border-bottom: 8px solid;
    color: #05894e;
    cursor: pointer;
    font-size: 18px !important;
    font-weight: bold !important;
    text-transform: uppercase;
    font-family: "Montserrat";
    text-align: left;
    padding: 0.8em !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: color 150ms ease-in-out;
    transition: color 150ms ease-in-out;
    width: 100%; }
    @media only screen and (min-width: 1024px) {
      #this-week a button {
        width: 250px; } }
    #this-week a button:after {
      content: "";
      position: absolute;
      display: block;
      top: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 110%;
      height: 0%;
      background: #008850;
      z-index: -1;
      -webkit-transition: height 150ms ease-in-out;
      transition: height 150ms ease-in-out; }
    #this-week a button:hover {
      background-image: linear-gradient(to left, #759E2E, #008752);
      color: white; }
  #this-week .featured-event-wrapper .upcoming-events {
    padding-left: 0;
    margin: 2em 0; }
    #this-week .featured-event-wrapper .upcoming-events .featured-event-item {
      background-color: none;
      display: flex;
      margin-bottom: 2em;
      align-items: flex-start; }
      #this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-DateTime {
        background-color: #B0BC22;
        color: #00502E;
        text-align: center;
        flex-basis: 10%;
        line-height: 1;
        flex-basis: 80px;
        height: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; }
        #this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-DateTime .CalendarListEvent__header_date-date {
          text-transform: uppercase;
          font-weight: lighter;
          font-size: 15px;
          font-family: "Montserrat"; }
        #this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-DateTime .CalendarListEvent__header_date-month {
          font-size: 30px;
          text-transform: uppercase;
          font-family: "Montserrat"; }
      #this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info {
        padding-left: 1em;
        font-family: "Montserrat";
        width: 100%; }
        #this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-name {
          margin: 0; }
          #this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-name p {
            margin: 0;
            line-height: 16px; }
          #this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-name a {
            color: white;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 14px;
            font-weight: bold; }
        #this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-details {
          display: flex; }
          @media (max-width: 768px) {
            #this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-details {
              flex-direction: column; } }
          #this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-details p {
            margin: 0;
            margin-right: 1em;
            position: relative;
            flex-basis: 50%;
            color: white;
            font-size: 12px; }
          #this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-details .CalendarListEvent__location {
            display: none; }
            @media only screen and (min-width: 1024px) {
              #this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-details .CalendarListEvent__location {
                margin: 0;
                margin-right: 1em;
                position: relative;
                padding-left: 20px;
                flex-basis: 50%; } }
  #this-week .CalendarEventsDetail__eventCalendarFront {
    width: 100%; }
  #this-week .CalendarMonth {
    display: none; }
    @media only screen and (min-width: 1024px) {
      #this-week .CalendarMonth {
        display: block; }
        #this-week .CalendarMonth .CalendarGridDay__events {
          background-color: white; }
        #this-week .CalendarMonth .CalendarGridDay__content {
          padding: 0;
          background-color: #fff; }
        #this-week .CalendarMonth .CalendarGridDay--current-day .CalendarGridDay__header {
          background-color: #008850;
          color: white !important; } }
  #this-week .active {
    display: flex !important; }
  #this-week .CalendarMenu {
    display: none; }
  #this-week .CalendarMonthFilter {
    display: none; }
  #this-week .CalendarMonthNavigation {
    display: none; }

#social-media {
  background-image: linear-gradient(#759E2E, #B0BC22);
  padding: 5em; }
  #social-media h1 {
    color: white;
    font-weight: normal;
    font-size: 50px;
    text-transform: uppercase; }

.tree-background {
  background-image: url("/sitefiles/2780/images/ohs-hp-left-section.svg"), url("/sitefiles/2780/images/ohs-hp-right-section.svg");
  background-repeat: no-repeat;
  background-position-x: -25em, 115em !important;
  background-position-y: 10em; }
  @media only screen and (min-width: 1440px) {
    .tree-background {
      background-position-x: -25em, 145em !important; } }
@media (max-width: 1023px) {
  .skrollr-leaves > .scrollmagic-pin-spacer {
    display: none !important; } }

@media only screen and (min-width: 1024px) {
  .skrollr-leaves > .scrollmagic-pin-spacer {
    display: block;
    z-index: 9; } }

@media only screen and (min-width: 1024px) {
  .skrollr-leaves {
    display: block;
    position: relative; }
    .skrollr-leaves > div {
      z-index: 1; }
    .skrollr-leaves div[class*="skrollr"] {
      position: absolute;
      width: 200px;
      height: 200px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      position: absolute; }
      .skrollr-leaves div[class*="skrollr"].leaf1 {
        background-image: url("/sitefiles/2780/images/ui/green-leaf.svg");
        top: 20%;
        left: 10%; }
      .skrollr-leaves div[class*="skrollr"].leaf2 {
        background-image: url("/sitefiles/2780/images/ui/leaf-2.svg");
        top: 50%;
        left: 80%; }
      .skrollr-leaves div[class*="skrollr"].acorn1 {
        background-image: url("/sitefiles/2780/images/ui/acorn.svg");
        top: 50%;
        left: 20%;
        width: 150px;
        height: 150px; }
      .skrollr-leaves div[class*="skrollr"].acorn2 {
        background-image: url("/sitefiles/2780/images/ui/acorn-2.svg");
        top: 50%;
        left: 70%;
        width: 150px;
        height: 150px; } }

/* _default.scss */
.banner-container {
  background-color: #00502E; }

section#default-banner {
  margin-top: 100px;
  min-height: 400px; }
  @media (min-width: 1440px) {
    section#default-banner {
      min-height: 470px; } }
  section#default-banner .banner-container {
    position: relative; }

.banner {
  background-size: cover;
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-color: white;
  position: relative;
  background-image: url("/sitefiles/2780/images/ui/hero-background.svg"); }
  @media only screen and (min-width: 1440px) {
    .banner {
      height: 470px;
      margin-top: 8em; } }
  .banner img {
    width: 150px;
    height: 150px;
    position: absolute;
    top: 115px;
    right: 40px;
    animation: fadeInDown 1s ease; }
    @media only screen and (min-width: 1440px) {
      .banner img {
        width: 200px;
        height: 200px;
        top: 175px;
        right: 200px; } }
    @media (max-width: 767px) {
      .banner img {
        opacity: .3; } }
.banner-title {
  color: white;
  font-size: 5em;
  font-weight: lighter;
  margin: 0;
  position: absolute;
  top: 250px;
  left: 30px;
  animation: fadeInLeft 1s ease; }
  @media only screen and (min-width: 1440px) {
    .banner-title {
      font-size: 7em;
      font-weight: lighter;
      top: 250px;
      left: 65px;
      width: 70%; } }
.sw-public-page-part {
  width: 100%; }

.templatecontent {
  width: 90%;
  margin: 0 auto; }
  @media only screen and (min-width: 768px) {
    .templatecontent {
      width: 90%; } }
  .templatecontent img {
    width: 100%;
    height: auto;
    margin: 0; }
  .templatecontent ul:not([class]) {
    list-style: none;
    padding: 0; }
    .templatecontent ul:not([class]) li {
      padding-bottom: 15px;
      opacity: 0;
      animation: fadeInLeft 1s ease forwards 1s; }
      .templatecontent ul:not([class]) li:nth-child(1) {
        animation-delay: 0.125s; }
      .templatecontent ul:not([class]) li:nth-child(2) {
        animation-delay: 0.25s; }
      .templatecontent ul:not([class]) li:nth-child(3) {
        animation-delay: 0.375s; }
      .templatecontent ul:not([class]) li:nth-child(4) {
        animation-delay: 0.5s; }
      .templatecontent ul:not([class]) li:nth-child(5) {
        animation-delay: 0.625s; }
      .templatecontent ul:not([class]) li:nth-child(6) {
        animation-delay: 0.75s; }
      .templatecontent ul:not([class]) li:nth-child(7) {
        animation-delay: 0.875s; }
      .templatecontent ul:not([class]) li:nth-child(8) {
        animation-delay: 1s; }
      .templatecontent ul:not([class]) li:nth-child(9) {
        animation-delay: 1.125s; }
      .templatecontent ul:not([class]) li:nth-child(10) {
        animation-delay: 1.25s; }
      .templatecontent ul:not([class]) li:nth-child(11) {
        animation-delay: 1.375s; }
      .templatecontent ul:not([class]) li:nth-child(12) {
        animation-delay: 1.5s; }
      .templatecontent ul:not([class]) li:nth-child(13) {
        animation-delay: 1.625s; }
      .templatecontent ul:not([class]) li:nth-child(14) {
        animation-delay: 1.75s; }
      .templatecontent ul:not([class]) li:nth-child(15) {
        animation-delay: 1.875s; }
      .templatecontent ul:not([class]) li:nth-child(16) {
        animation-delay: 2s; }
      .templatecontent ul:not([class]) li:nth-child(17) {
        animation-delay: 2.125s; }
      .templatecontent ul:not([class]) li:nth-child(18) {
        animation-delay: 2.25s; }
      .templatecontent ul:not([class]) li:nth-child(19) {
        animation-delay: 2.375s; }
      .templatecontent ul:not([class]) li:nth-child(20) {
        animation-delay: 2.5s; }
      .templatecontent ul:not([class]) li p {
        margin: 0;
        position: relative;
        padding-left: 25px; }
        .templatecontent ul:not([class]) li p:before {
          position: absolute;
          left: -28px;
          top: 10px;
          transform: translateY(-50%);
          content: "";
          background-image: url("/sitefiles/2780/images/ohs-acorn.svg");
          height: 25px;
          width: 25px;
          left: -5px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center bottom; }

.templatecontent img[style*="float: right"] {
  opacity: 0;
  animation: fadeInRight 1s ease forwards 1s;
  box-shadow: 0 25px 25px -14px rgba(0, 0, 0, 0.3);
  height: auto !important; }
  @media (max-width: 767px) {
    .templatecontent img[style*="float: right"] {
      float: none !important;
      margin: 15px auto !important; } }
  @media (min-width: 1350px) {
    .templatecontent img[style*="float: right"] {
      margin-right: -100px !important;
      position: relative; } }
.templatecontent img[style*="float: left"] {
  height: auto !important;
  opacity: 0;
  animation: fadeInLeft 1s ease forwards 1s;
  box-shadow: 0 25px 25px -14px rgba(0, 0, 0, 0.3); }
  @media (max-width: 767px) {
    .templatecontent img[style*="float: left"] {
      float: none !important;
      margin: 15px auto !important; } }
  @media (min-width: 1350px) {
    .templatecontent img[style*="float: left"] {
      margin-left: -70px !important;
      position: relative; } }
.templatecontent img[style*="float: right"] {
  opacity: 0;
  animation: fadeInRight 1s ease forwards 1s;
  box-shadow: 0 25px 25px -14px rgba(0, 0, 0, 0.3);
  height: auto !important; }
  @media (max-width: 767px) {
    .templatecontent img[style*="float: right"] {
      float: none !important;
      margin: 15px auto !important; } }
  @media (min-width: 1350px) {
    .templatecontent img[style*="float: right"] {
      margin-right: -100px !important;
      position: relative; } }
.templatecontent img[style*="float: left"] {
  height: auto !important;
  opacity: 0;
  animation: fadeInLeft 1s ease forwards 1s;
  box-shadow: 0 25px 25px -14px rgba(0, 0, 0, 0.3); }
  @media (max-width: 767px) {
    .templatecontent img[style*="float: left"] {
      float: none !important;
      margin: 15px auto !important; } }
  @media (min-width: 1350px) {
    .templatecontent img[style*="float: left"] {
      margin-left: -70px !important;
      position: relative; } }
.templatecontent .alted-image {
  position: relative; }
  .templatecontent .alted-image:after {
    width: 100%;
    content: attr(data-alt);
    position: absolute;
    top: calc(100% + 8px);
    text-align: right;
    left: 0;
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    color: #00502E; }
  .templatecontent .alted-image[style*="float: right"] {
    opacity: 0;
    animation: fadeInRight 1s ease forwards 1s;
    height: auto !important; }
    @media (max-width: 767px) {
      .templatecontent .alted-image[style*="float: right"] {
        float: none !important;
        margin: 15px auto !important; } }
    @media (min-width: 1350px) {
      .templatecontent .alted-image[style*="float: right"] {
        margin-right: -100px !important;
        position: relative; } }
  .templatecontent .alted-image[style*="float: left"] {
    height: auto !important;
    opacity: 0;
    animation: fadeInLeft 1s ease forwards 1s; }
    @media (max-width: 767px) {
      .templatecontent .alted-image[style*="float: left"] {
        float: none !important;
        margin: 15px auto !important; } }
    @media (min-width: 1350px) {
      .templatecontent .alted-image[style*="float: left"] {
        margin-left: -70px !important;
        position: relative; } }
  .templatecontent .alted-image img {
    box-shadow: 0 25px 25px -14px rgba(0, 0, 0, 0.3); }

body:not(.athletics) #default-main .default-container {
  width: 1200px;
  max-width: 100%;
  margin: 50px auto; }

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

body.landing section#landing-main .inner-wrapper {
  display: flex;
  width: 1200px;
  margin: 0 auto;
  max-width: 100%;
  padding: 25px 15px 0;
  justify-content: space-between; }
  @media (max-width: 767px) {
    body.landing section#landing-main .inner-wrapper {
      flex-direction: column; } }
  body.landing section#landing-main .inner-wrapper .left-side {
    flex-basis: 45%;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    opacity: 0; }
    @media (max-width: 767px) {
      body.landing section#landing-main .inner-wrapper .left-side {
        min-height: 400px;
        margin-bottom: 25px; } }
    body.landing section#landing-main .inner-wrapper .left-side.inview {
      animation: fadeInLeft 1s ease forwards; }
    body.landing section#landing-main .inner-wrapper .left-side .templatecontent {
      display: none; }
    body.landing section#landing-main .inner-wrapper .left-side .swRotator {
      position: relative; }
      body.landing section#landing-main .inner-wrapper .left-side .swRotator .scrollable {
        height: 450px !important; }
        body.landing section#landing-main .inner-wrapper .left-side .swRotator .scrollable:before {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          height: 70px;
          z-index: 1;
          width: 100%;
          opacity: .2;
          background: black;
          transition: all .33s ease; }
        body.landing section#landing-main .inner-wrapper .left-side .swRotator .scrollable .items {
          overflow: hidden; }
          body.landing section#landing-main .inner-wrapper .left-side .swRotator .scrollable .items .item {
            height: 450px !important;
            background-size: cover;
            background-repeat: no-repeat; }
      body.landing section#landing-main .inner-wrapper .left-side .swRotator .pager {
        position: absolute;
        width: calc(100% - 30px);
        height: 55px;
        bottom: 5px;
        left: 15px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 2; }
        body.landing section#landing-main .inner-wrapper .left-side .swRotator .pager a {
          width: 40px;
          height: 40px;
          display: inline-block;
          margin-left: 3px;
          margin-right: 3px;
          bottom: 0;
          border: 2px solid transparent;
          transition: all .33s ease;
          position: relative; }
          body.landing section#landing-main .inner-wrapper .left-side .swRotator .pager a span.pager-index {
            width: 100%;
            height: 100%; }
            body.landing section#landing-main .inner-wrapper .left-side .swRotator .pager a span.pager-index img {
              width: 100%;
              height: 100%;
              object-fit: contain; }
          body.landing section#landing-main .inner-wrapper .left-side .swRotator .pager a.current {
            border-color: white; }
      body.landing section#landing-main .inner-wrapper .left-side .swRotator:hover .scrollable:before {
        opacity: .6; }
  body.landing section#landing-main .inner-wrapper .right-side {
    flex-basis: 50%;
    opacity: 0; }
    body.landing section#landing-main .inner-wrapper .right-side.inview {
      animation: fadeInRight 1s ease forwards; }
    body.landing section#landing-main .inner-wrapper .right-side .templatecontent {
      width: 100%; }
      body.landing section#landing-main .inner-wrapper .right-side .templatecontent > *:nth-child(1) {
        margin-top: 0; }

body.landing section#children-portals .inner-wrapper {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0px 15px 25px 15px; }
  body.landing section#children-portals .inner-wrapper > ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    padding-left: 0;
    list-style: none;
    flex-wrap: wrap; }
    @media only screen and (min-width: 1024px) {
      body.landing section#children-portals .inner-wrapper > ul {
        flex-direction: row;
        min-height: 300px; } }
    body.landing section#children-portals .inner-wrapper > ul > li {
      position: relative;
      flex-basis: calc(100% / 4);
      margin: 0;
      opacity: 0; }
      @media (max-width: 1023px) {
        body.landing section#children-portals .inner-wrapper > ul > li {
          flex-basis: calc(100% / 2); } }
      body.landing section#children-portals .inner-wrapper > ul > li > ul {
        display: none; }
      body.landing section#children-portals .inner-wrapper > ul > li a {
        position: relative;
        text-align: center;
        width: 100%;
        mask-image: url("/sitefiles/2780/images/flipped-photo-mask.svg");
        -webkit-mask-image: url("/sitefiles/2780/images/flipped-photo-mask.svg");
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-size: contain;
        background-size: 400px;
        background-position: center 30%;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        margin: 0;
        font-weight: 900;
        padding: 25% 30%;
        transition: all .33s ease-in-out;
        text-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
        letter-spacing: 0px; }
        body.landing section#children-portals .inner-wrapper > ul > li a:hover {
          background-size: 350px;
          letter-spacing: 1px; }
        @media (max-width: 1023px) {
          body.landing section#children-portals .inner-wrapper > ul > li a {
            min-height: 300px;
            width: 100%;
            font-size: 20px; } }
        @media only screen and (min-width: 1024px) {
          body.landing section#children-portals .inner-wrapper > ul > li a {
            width: 100%;
            min-height: 310px;
            margin: 1em 0;
            font-size: 20px; } }
        body.landing section#children-portals .inner-wrapper > ul > li a:before {
          z-index: -1;
          content: "";
          position: absolute;
          width: 100%;
          height: 100%;
          background-color: rgba(0, 0, 0, 0.3); }
      @media (max-width: 1023px) {
        body.landing section#children-portals .inner-wrapper > ul > li:nth-child(even) {
          margin: 10px 0; } }
      @media (max-width: 1023px) {
        body.landing section#children-portals .inner-wrapper > ul > li:nth-child(odd) {
          margin: 10px 0; } }
      body.landing section#children-portals .inner-wrapper > ul > li:nth-child(odd) a {
        -webkit-mask-image: url("/sitefiles/2780/images/ohs-tree-ring-photo-mask.svg"); }
      @media (min-width: 1024px) {
        body.landing section#children-portals .inner-wrapper > ul > li:nth-child(1n + 5) {
          margin-top: -80px !important;
          margin-bottom: 0 !important; } }
    body.landing section#children-portals .inner-wrapper > ul.inview li {
      animation: fadeIn 1s ease forwards; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(1) {
        animation-delay: 0.1666666667s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(2) {
        animation-delay: 0.3333333333s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(3) {
        animation-delay: 0.5s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(4) {
        animation-delay: 0.6666666667s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(5) {
        animation-delay: 0.8333333333s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(6) {
        animation-delay: 1s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(7) {
        animation-delay: 1.1666666667s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(8) {
        animation-delay: 1.3333333333s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(9) {
        animation-delay: 1.5s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(10) {
        animation-delay: 1.6666666667s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(11) {
        animation-delay: 1.8333333333s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(12) {
        animation-delay: 2s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(13) {
        animation-delay: 2.1666666667s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(14) {
        animation-delay: 2.3333333333s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(15) {
        animation-delay: 2.5s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(16) {
        animation-delay: 2.6666666667s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(17) {
        animation-delay: 2.8333333333s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(18) {
        animation-delay: 3s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(19) {
        animation-delay: 3.1666666667s; }
      body.landing section#children-portals .inner-wrapper > ul.inview li:nth-child(20) {
        animation-delay: 3.3333333333s; }

/* _404.scss */
/* _styleguide.scss */
body.styleguide hr {
  margin: 50px 0 20px; }

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

.athletics .banner {
  background-color: #00502E !important; }

.sports-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 3em;
  background-color: #00502E; }
  @media only screen and (min-width: 1440px) {
    .sports-intro {
      flex-direction: row; } }
  .sports-intro .intro-image-mobile {
    order: 2;
    width: 100%;
    height: 350px;
    background-size: cover;
    background-repeat: no-repeat; }
    @media only screen and (min-width: 1440px) {
      .sports-intro .intro-image-mobile {
        display: none; } }
  .sports-intro .intro-image-desktop {
    order: 1;
    width: 50%;
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
    display: none;
    animation: fadeInLeft 1.5s ease; }
    @media only screen and (min-width: 1440px) {
      .sports-intro .intro-image-desktop {
        display: block; } }
  .sports-intro .intro-paragraph {
    order: 1;
    padding: 3em 2em;
    font-size: 15px;
    line-height: 32px;
    animation: fadeInRight 1.5s ease; }
    .sports-intro .intro-paragraph p {
      color: white;
      margin: 0; }
    @media only screen and (min-width: 768px) {
      .sports-intro .intro-paragraph {
        padding: 4em; } }
    @media only screen and (min-width: 1440px) {
      .sports-intro .intro-paragraph {
        order: 2;
        width: 50%; } }
.portals-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2em;
  padding: 0;
  padding: 3em;
  background-color: #00502E;
  margin: -1px;
  padding-bottom: 5em; }
  @media only screen and (min-width: 768px) {
    .portals-list {
      grid-template-columns: 1fr 1fr 1fr 1fr;
      padding: 5em; } }
  .portals-list li {
    display: inline;
    max-width: 100%;
    background-size: cover; }
    .portals-list li .normal-state {
      display: none; }
    .portals-list li .hover-state {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      visibility: visible;
      opacity: 1;
      max-height: fit-content;
      padding: 1em; }
      .portals-list li .hover-state .portal-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 3em; }
        .portals-list li .hover-state .portal-icon img {
          width: 80px; }
      .portals-list li .hover-state h5 {
        font-size: 4em;
        color: white;
        text-transform: uppercase;
        text-align: center;
        margin: 0.5em; }
        @media only screen and (min-width: 768px) {
          .portals-list li .hover-state h5 {
            font-size: 2em; } }
      .portals-list li .hover-state p {
        color: white;
        font-size: 15px;
        padding: 0 1em;
        text-align: center;
        line-height: 2;
        margin: 0; }

@media only screen and (min-width: 768px) {
  .portals-list {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 2em;
    padding: 0;
    padding: 3em;
    background-color: #00502E;
    margin: -1px;
    padding-bottom: 5em; } }
  @media only screen and (min-width: 768px) and (min-width: 768px) {
    .portals-list {
      grid-template-columns: 1fr 1fr 1fr 1fr;
      padding: 5em; } }
@media only screen and (min-width: 768px) {
    .portals-list li {
      display: inline;
      max-width: 400px;
      background-size: cover;
      margin: 0 auto;
      width: 100%;
      transform: scale(1);
      transition: transform 0.33s ease-in-out; } }
    @media only screen and (min-width: 768px) and (min-width: 1024px) {
      .portals-list li:hover {
        transform: scale(1.2);
        border: 2px solid #00502E; } }
@media only screen and (min-width: 768px) {
      .portals-list li .normal-state {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column; }
        .portals-list li .normal-state .portal-icon {
          display: flex;
          justify-content: center;
          align-items: center;
          margin-top: 3em;
          width: 100%; }
          .portals-list li .normal-state .portal-icon img {
            width: 30%; }
        .portals-list li .normal-state h5 {
          font-size: 4em;
          color: white;
          text-transform: uppercase;
          text-align: center;
          margin: 0.5em; } }
        @media only screen and (min-width: 768px) and (min-width: 768px) {
          .portals-list li .normal-state h5 {
            font-size: 3em; } }
@media only screen and (min-width: 768px) {
      .portals-list li .hover-state {
        max-height: 0;
        visibility: hidden;
        opacity: 0; }
      .portals-list li:hover .normal-state {
        max-height: 0;
        visibility: hidden;
        opacity: 0; }
      .portals-list li:hover .hover-state {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        visibility: visible;
        opacity: 1;
        max-height: fit-content;
        padding: 1em; }
        .portals-list li:hover .hover-state .portal-icon {
          display: flex;
          justify-content: center;
          align-items: center;
          margin-top: 3em; }
          .portals-list li:hover .hover-state .portal-icon img {
            width: 80px; }
        .portals-list li:hover .hover-state h5 {
          font-size: 4em;
          color: white;
          text-transform: uppercase;
          text-align: center;
          margin: 0.5em; } }
        @media only screen and (min-width: 768px) and (min-width: 768px) {
          .portals-list li:hover .hover-state h5 {
            font-size: 2em; } }
@media only screen and (min-width: 768px) {
        .portals-list li:hover .hover-state p {
          color: white;
          font-size: 15px;
          padding: 0 1em;
          text-align: center;
          line-height: 2;
          margin: 0; } }

.sports-gallery-description {
  padding: 3em; }
  @media only screen and (min-width: 1024px) {
    .sports-gallery-description {
      padding: 5em;
      width: 75%;
      margin: 0 auto; } }
.sports-gallery .scrollable {
  height: 200px !important; }
  @media only screen and (min-width: 1024px) {
    .sports-gallery .scrollable {
      height: 650px !important; } }
  .sports-gallery .scrollable .items {
    height: 100%; }
    .sports-gallery .scrollable .items .item {
      background-size: cover;
      background-position: center;
      width: 100%;
      text-align: center; }
      .sports-gallery .scrollable .items .item img {
        max-width: 80%; }

.sports-gallery .pager a {
  display: none !important; }

.browse {
  display: none; }

@media only screen and (min-width: 768px) {
  .sw-accordion-matrix {
    width: 90%;
    margin: 0 auto; } }

.sw-accordion-matrix #sw-accordion-matrix__details- {
  border-bottom: 2px solid #00502E;
  outline: none; }
  .sw-accordion-matrix #sw-accordion-matrix__details- #sw-accordion-matrix__summary- {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    outline: none; }
    .sw-accordion-matrix #sw-accordion-matrix__details- #sw-accordion-matrix__summary-:before {
      position: absolute;
      left: 0;
      top: 0;
      background-color: #E5EEE9;
      width: 0%;
      height: 100%;
      content: ""; }
    .sw-accordion-matrix #sw-accordion-matrix__details- #sw-accordion-matrix__summary-:hover:before {
      animation: hoverSummary 1s ease forwards; }
    .sw-accordion-matrix #sw-accordion-matrix__details- #sw-accordion-matrix__summary- h4 {
      font-size: 20px;
      text-transform: uppercase;
      color: #00502E;
      margin-left: 1em;
      width: 85%;
      position: relative; }
      @media only screen and (min-width: 1024px) {
        .sw-accordion-matrix #sw-accordion-matrix__details- #sw-accordion-matrix__summary- h4 {
          margin-left: 4em; } }
    .sw-accordion-matrix #sw-accordion-matrix__details- #sw-accordion-matrix__summary- img {
      height: 40px;
      transition: transform 0.33s ease-in-out; }
  .sw-accordion-matrix #sw-accordion-matrix__details- .sw-accordion-matrix__body .sw-accordion-matrix__body--content {
    margin: auto;
    width: 100%; }
    @media only screen and (min-width: 1024px) {
      .sw-accordion-matrix #sw-accordion-matrix__details- .sw-accordion-matrix__body .sw-accordion-matrix__body--content {
        width: 87%; } }
    .sw-accordion-matrix #sw-accordion-matrix__details- .sw-accordion-matrix__body .sw-accordion-matrix__body--content table {
      width: 100% !important;
      border: none !important;
      padding-bottom: 2em; }
      .sw-accordion-matrix #sw-accordion-matrix__details- .sw-accordion-matrix__body .sw-accordion-matrix__body--content table thead tr {
        font-size: 16px;
        text-transform: uppercase;
        font-family: "Montserrat";
        color: #00502E; }
        .sw-accordion-matrix #sw-accordion-matrix__details- .sw-accordion-matrix__body .sw-accordion-matrix__body--content table thead tr th {
          border: none;
          border-bottom: 2px solid #00502E; }
          @media only screen and (min-width: 1024px) {
            .sw-accordion-matrix #sw-accordion-matrix__details- .sw-accordion-matrix__body .sw-accordion-matrix__body--content table thead tr th {
              padding: 1em; } }
      .sw-accordion-matrix #sw-accordion-matrix__details- .sw-accordion-matrix__body .sw-accordion-matrix__body--content table tbody tr td {
        border: none;
        font-size: 14px;
        color: #00502E;
        font-family: "Montserrat";
        padding: 1em; }

.sw-accordion-matrix #sw-accordion-matrix__details- .sw-accordion-matrix__body {
  box-shadow: 0 0px 0px 0px rgba(0, 0, 0, 0);
  transition: all 1s ease 1s; }
  .sw-accordion-matrix #sw-accordion-matrix__details- .sw-accordion-matrix__body td {
    font-size: 14px; }
  @media (min-width: 1024px) {
    .sw-accordion-matrix #sw-accordion-matrix__details- .sw-accordion-matrix__body .sw-accordion-matrix__body--content {
      width: 100%; } }
.sw-accordion-matrix #sw-accordion-matrix__details-[open] summary ~ * {
  animation: sweep .5s ease-in-out; }

.sw-accordion-matrix #sw-accordion-matrix__details-[open] .sw-accordion-matrix__body {
  box-shadow: 0 25px 25px -14px rgba(0, 0, 0, 0.5); }

.sw-accordion-matrix details[open] img {
  -webkit-transform: rotate(180deg) !important;
  transform: rotate(180deg) !important; }

.athletics-this-week {
  padding: 20px; }
  @media only screen and (min-width: 1024px) {
    .athletics-this-week {
      padding: 50px; } }
  @media only screen and (min-width: 1024px) {
    .athletics-this-week .news-title {
      display: flex;
      justify-content: center;
      align-items: center; } }
  .athletics-this-week h1 {
    font-weight: normal;
    color: #00502E;
    text-align: left;
    font-size: 50px;
    text-transform: uppercase;
    line-height: 50px;
    width: 100%; }
  .athletics-this-week a button {
    border-image: linear-gradient(to right, #05894e, #77a423) 1;
    background-color: white;
    border-radius: 0;
    border-bottom: 8px solid;
    color: #05894e;
    cursor: pointer;
    font-size: 18px !important;
    font-weight: bold !important;
    text-transform: uppercase;
    font-family: "Montserrat";
    text-align: left;
    padding: 0.8em !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    -webkit-transition: color 150ms ease-in-out;
    transition: color 150ms ease-in-out;
    width: 100%; }
    @media only screen and (min-width: 1024px) {
      .athletics-this-week a button {
        width: 250px; } }
    .athletics-this-week a button:after {
      content: "";
      position: absolute;
      display: block;
      top: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 110%;
      height: 0%;
      background: #008850;
      z-index: -1;
      -webkit-transition: height 150ms ease-in-out;
      transition: height 150ms ease-in-out; }
    .athletics-this-week a button:hover {
      background-image: linear-gradient(to left, #759E2E, #008752);
      color: white; }
  .athletics-this-week .featured-event-wrapper .upcoming-events {
    padding-left: 0;
    margin: 2em 0; }
    @media only screen and (min-width: 1024px) {
      .athletics-this-week .featured-event-wrapper .upcoming-events {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr; } }
    .athletics-this-week .featured-event-wrapper .upcoming-events .featured-event-item {
      background-color: none;
      display: flex;
      margin-bottom: 2em;
      align-items: flex-start; }
      .athletics-this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-DateTime {
        background-color: #B0BC22;
        color: #00502E;
        text-align: center;
        flex-basis: 10%;
        line-height: 1;
        flex-basis: 80px;
        height: 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center; }
        .athletics-this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-DateTime .CalendarListEvent__header_date-date {
          text-transform: uppercase;
          font-weight: lighter;
          font-size: 15px;
          font-family: "Montserrat"; }
        .athletics-this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-DateTime .CalendarListEvent__header_date-month {
          font-size: 30px;
          text-transform: uppercase;
          font-family: "Montserrat"; }
      .athletics-this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info {
        padding-left: 1em;
        font-family: "Montserrat";
        width: 100%; }
        .athletics-this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-name {
          margin: 0; }
          .athletics-this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-name p {
            margin: 0;
            line-height: 16px; }
          .athletics-this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-name a {
            color: #00502E;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 14px;
            font-weight: bold; }
        .athletics-this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-details {
          display: flex; }
          @media (max-width: 768px) {
            .athletics-this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-details {
              flex-direction: column; } }
          .athletics-this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-details p {
            margin: 0;
            margin-right: 1em;
            position: relative;
            flex-basis: 50%;
            color: #00502E;
            font-size: 12px; }
          .athletics-this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-details .CalendarListEvent__location {
            display: none; }
            @media only screen and (min-width: 1024px) {
              .athletics-this-week .featured-event-wrapper .upcoming-events .featured-event-item .featured-event-info .featured-event-details .CalendarListEvent__location {
                margin: 0;
                margin-right: 1em;
                position: relative;
                padding-left: 20px;
                flex-basis: 50%; } }
body.athletics #default-main .swRotator .scrollable .items {
  width: 100%; }
  body.athletics #default-main .swRotator .scrollable .items .item {
    width: 100% !important;
    background-attachment: fixed; }

.tree-sidebar {
  display: none; }
  @media only screen and (min-width: 1024px) {
    .tree-sidebar {
      background-image: linear-gradient(to bottom, white, rgba(255, 255, 255, 0)), url("/sitefiles/2780/images/sidenav-trunk.svg");
      position: absolute;
      left: 0;
      top: 0;
      width: 350px;
      height: 100%;
      content: "";
      display: block;
      background-position: right; } }
section#sidebar-main .sidebar-container {
  width: 1200px;
  margin: 50px auto;
  max-width: 100%;
  display: flex;
  align-items: flex-start; }
  section#sidebar-main .sidebar-container #sidemenu {
    position: relative; }
    section#sidebar-main .sidebar-container #sidemenu > div:first-child {
      padding-top: 0; }
      section#sidebar-main .sidebar-container #sidemenu > div:first-child h2 {
        margin-top: 0; }
    section#sidebar-main .sidebar-container #sidemenu h2 {
      opacity: 0;
      animation: fadeIn 1s ease forwards; }
    section#sidebar-main .sidebar-container #sidemenu #subnav li {
      opacity: 0;
      animation: fadeInLeft 1s ease forwards; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(1) {
        animation-delay: 0.1666666667s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(2) {
        animation-delay: 0.3333333333s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(3) {
        animation-delay: 0.5s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(4) {
        animation-delay: 0.6666666667s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(5) {
        animation-delay: 0.8333333333s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(6) {
        animation-delay: 1s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(7) {
        animation-delay: 1.1666666667s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(8) {
        animation-delay: 1.3333333333s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(9) {
        animation-delay: 1.5s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(10) {
        animation-delay: 1.6666666667s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(11) {
        animation-delay: 1.8333333333s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(12) {
        animation-delay: 2s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(13) {
        animation-delay: 2.1666666667s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(14) {
        animation-delay: 2.3333333333s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(15) {
        animation-delay: 2.5s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(16) {
        animation-delay: 2.6666666667s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(17) {
        animation-delay: 2.8333333333s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(18) {
        animation-delay: 3s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(19) {
        animation-delay: 3.1666666667s; }
      section#sidebar-main .sidebar-container #sidemenu #subnav li:nth-child(20) {
        animation-delay: 3.3333333333s; }
  section#sidebar-main .sidebar-container .sidebar-body {
    min-height: 600px;
    max-width: 100%; }

.sidebar-container {
  display: flex; }
  .sidebar-container #sidemenu {
    display: none; }
    @media only screen and (min-width: 1024px) {
      .sidebar-container #sidemenu {
        width: 400px;
        display: flex;
        justify-content: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: right; }
        .sidebar-container #sidemenu h2 {
          font-size: 35px;
          margin-bottom: 0.25em;
          position: relative; }
          .sidebar-container #sidemenu h2 a {
            font-size: 1em;
            font-family: "Montserrat";
            color: #B0BC22;
            font-weight: bold;
            text-transform: uppercase; }
        .sidebar-container #sidemenu ul {
          list-style: none;
          padding: 0; }
          .sidebar-container #sidemenu ul li {
            padding-bottom: 15px; }
            .sidebar-container #sidemenu ul li a {
              color: #008752;
              font-size: 16px;
              font-weight: bold;
              position: relative; }
              .sidebar-container #sidemenu ul li a:hover {
                color: #759E2E; }
            .sidebar-container #sidemenu ul li .current {
              color: #759E2E; }
              .sidebar-container #sidemenu ul li .current:before {
                position: absolute;
                left: -28px;
                top: 9px;
                transform: translateY(-50%);
                content: "";
                background-image: url("/sitefiles/2780/images/ohs-acorn.svg");
                height: 25px;
                width: 25px;
                background-size: contain;
                background-repeat: no-repeat;
                background-position: center bottom; } }
  .sidebar-container #sidemenu div:first-child {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 35px;
    padding-top: 5em; }
  .sidebar-container .sidebar-body {
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0em 1em 4em 1em; }
    @media only screen and (min-width: 1024px) {
      .sidebar-container .sidebar-body {
        width: 100%;
        max-width: 1300px;
        padding: 5em;
        margin: 0 auto; } }
.standard-first-section .standard-first-description {
  margin: 2em; }
  .standard-first-section .standard-first-description h2 {
    font-size: 5em;
    font-weight: normal; }
    @media only screen and (min-width: 1024px) {
      .standard-first-section .standard-first-description h2 {
        margin-bottom: 0; } }
  .standard-first-section .standard-first-description h3 {
    text-transform: uppercase;
    color: #00502E;
    margin-top: 0.5em; }
  .standard-first-section .standard-first-description .standard-first-image {
    background-repeat: no-repeat;
    float: right;
    animation: fadeInRight 1s ease; }
    .standard-first-section .standard-first-description .standard-first-image img {
      padding: 3.7em;
      animation: fadeInRight 0.7s ease; }
      @media only screen and (min-width: 768px) {
        .standard-first-section .standard-first-description .standard-first-image img {
          padding: 4em;
          width: 400px; } }
.standard-video-section {
  margin: 2em; }
  .standard-video-section img {
    width: 100%; }

.standard-second-section {
  margin: 2em; }
  @media only screen and (min-width: 1440px) {
    .standard-second-section {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 5em; } }
  .standard-second-section .standard-second-image {
    background-repeat: no-repeat;
    float: left; }
    .standard-second-section .standard-second-image img {
      padding: 3.7em; }
      @media only screen and (min-width: 768px) {
        .standard-second-section .standard-second-image img {
          padding: 5em;
          width: 400px; } }
      @media only screen and (min-width: 1440px) {
        .standard-second-section .standard-second-image img {
          padding: 5em;
          width: 400px; } }
.standard-third-section {
  margin: 2em; }
  @media only screen and (min-width: 1440px) {
    .standard-third-section {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 5em; } }
  .standard-third-section .standard-third-content img {
    float: right;
    margin: 10em 0em 5em 5em; }

.CalendarEventsDetail__eventCalendarFront {
  width: 80%;
  display: flex;
  flex-direction: column;
  margin: auto !important;
  padding-top: 5em; }
  .CalendarEventsDetail__eventCalendarFront a {
    color: #00502E !important;
    font-size: 14px; }

.react-selectize-control {
  border-bottom: 3px solid #00502E !important;
  background-color: #e9e9e9 !important; }

.fields__col {
  border-bottom: 3px solid #008752 !important; }
  .fields__col .form-control {
    background-color: rgba(0, 80, 48, 0.05) !important;
    border: none !important;
    border-radius: 0px !important; }

.CalendarMonth__header_label {
  background-color: #B0BC22 !important;
  color: #00502E !important;
  font-family: "Montserrat" !important; }

.swCalEvents {
  width: 80% !important;
  margin: auto !important; }
  .swCalEvents .CalendarListEvent {
    align-items: center !important;
    padding: 4em 0 !important;
    border-bottom: 1px solid #acacac !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: row !important; }
    .swCalEvents .CalendarListEvent .CalendarListEvent__header {
      height: 75px !important;
      width: 75px !important; }
      .swCalEvents .CalendarListEvent .CalendarListEvent__header .CalendarListEvent__header_date {
        display: flex !important;
        height: 75px !important;
        width: 75px !important;
        background-color: #B0BC22 !important; }
        .swCalEvents .CalendarListEvent .CalendarListEvent__header .CalendarListEvent__header_date .CalendarListEvent__header_date-date {
          font-family: "Montserrat" !important;
          font-size: 4em !important;
          color: #00502E !important;
          font-weight: bold !important; }
        .swCalEvents .CalendarListEvent .CalendarListEvent__header .CalendarListEvent__header_date .CalendarListEvent__header_date-month {
          font-family: "Montserrat" !important;
          font-size: 1.5em !important;
          color: #00502E !important;
          font-weight: bold !important; }
    .swCalEvents .CalendarListEvent .CalendarListEvent__content {
      display: flex !important;
      justify-content: center !important;
      flex-direction: column !important; }
      .swCalEvents .CalendarListEvent .CalendarListEvent__content .CalendarListEvent__title {
        font-family: "Montserrat" !important;
        text-transform: uppercase !important;
        color: #00502E !important;
        font-weight: bold !important;
        font-size: 1.25rem !important;
        padding: 1rem !important; }
        @media only screen and (min-width: 1024px) {
          .swCalEvents .CalendarListEvent .CalendarListEvent__content .CalendarListEvent__title {
            font-size: 2rem !important;
            padding: 0.5rem !important; } }
      .swCalEvents .CalendarListEvent .CalendarListEvent__content .CalendarListEvent__date_time {
        font-weight: normal !important;
        color: #00502E !important;
        font-family: "Montserrat" !important;
        padding-left: 1rem !important;
        font-size: 1.2rem !important; }
        @media only screen and (min-width: 1024px) {
          .swCalEvents .CalendarListEvent .CalendarListEvent__content .CalendarListEvent__date_time {
            padding: 0.5rem 0 !important;
            font-size: 1.5rem !important; } }
      .swCalEvents .CalendarListEvent .CalendarListEvent__content .CalendarListEvent__location {
        display: none !important; }
      .swCalEvents .CalendarListEvent .CalendarListEvent__content .CalendarListEvent__description {
        display: none !important; }

.CalendarListSummary {
  font-family: "Montserrat" !important;
  color: #00502E !important; }

.CalendarListPagination .CalendarListPager__item {
  color: #008752 !important; }

.CalendarListPagination .CalendarListPager__current {
  background: #008752 !important;
  color: white !important; }

.CalendarMenu {
  display: flex;
  justify-content: flex-end !important; }

.CalendarMenuCenter a {
  border: 2px solid #008850 !important;
  border-bottom: 5px solid #008850 !important;
  padding: 0.5em !important;
  font-size: 16px !important;
  color: #008752 !important;
  text-transform: uppercase !important;
  font-family: "Montserrat" !important;
  font-weight: bolder !important; }
  .CalendarMenuCenter a:hover {
    background-color: #B0BC22; }

.CalendarMenuCenter .CalendarMenu__currentItem {
  background-color: #008850 !important;
  color: white !important; }

.react-selectize-control {
  height: 50px;
  background-color: rgba(0, 80, 48, 0.05) !important;
  border-radius: 0px !important;
  border-bottom: 3px solid #008752 !important; }

.react-selectize-toggle-button-container {
  height: 50px; }

.CalendarMonthFilter__dateSeparator {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Montserrat";
  color: #008752; }

.CalendarMonthFilter__date .fields .fields__col .form-control {
  height: 50px;
  font-family: "Montserrat";
  color: #008752; }

.CalendarMonthFilter__search {
  border: none !important;
  background-color: rgba(0, 80, 48, 0.05) !important;
  border-radius: 0px !important;
  border-bottom: 3px solid #008752 !important;
  font-size: 12px !important;
  font-family: "Montserrat" !important; }

::placeholder {
  color: #008752 !important;
  font-family: "Montserrat" !important; }

.CalendarMonthFilter__button {
  background-color: white !important;
  text-transform: uppercase !important;
  font-weight: bolder !important;
  font-family: "Montserrat" !important;
  border-width: 5px !important;
  border-image-slice: 1 !important;
  color: #008850 !important;
  padding: 0.5em !important;
  border-image-source: linear-gradient(to left, #759E2E, #008752) !important; }

.CalendarMonth__header_label {
  padding: 2rem 0 !important;
  font-size: 14px !important; }

.CalendarGridDayEvent__title {
  font-size: 12px;
  color: #00502E; }

.CalendarGridDayEvent__time {
  font-size: 12px;
  color: #00502E;
  font-family: "Montserrat"; }

.CalendarGridDay__header {
  padding: 1em !important;
  font-size: 16px !important;
  color: #00502E !important;
  font-family: "Montserrat" !important; }

.popover-title {
  color: #00502E !important;
  font-weight: bolder !important;
  padding: 2em !important;
  padding-bottom: 1em !important; }

.CalendarGridDayEventPopover__time {
  color: #00502E !important;
  font-size: 14px i !important; }

.CalendarGridDayEventPopover__content--image {
  display: none !important; }

.CalendarGridDayEventPopover__content--text {
  display: none !important; }

.CalendarGridDay--current-day .CalendarGridDay__header {
  color: white !important; }

.swCalEvents .CalendarEvent .CalendarEvent__date_time {
  font-size: 16px;
  margin-bottom: 50px; }

.swCalEvents .CalendarEvent .CalendarListEvent__tags a {
  display: inline-block;
  margin: 0 5px 5px;
  padding: 3px 9px; }
  .swCalEvents .CalendarEvent .CalendarListEvent__tags a:hover {
    color: white;
    background: #008752; }

.enrichment-introduction {
  width: 90%;
  margin: auto;
  margin-bottom: 5em;
  margin-top: 5em; }
  @media only screen and (min-width: 1024px) {
    .enrichment-introduction {
      width: 50%; } }
  .enrichment-introduction p {
    text-align: center; }

.enrichment-classes {
  display: none; }
  @media only screen and (min-width: 1024px) {
    .enrichment-classes {
      display: grid; } }
  @media only screen and (min-width: 1024px) and (min-width: 1024px) {
    .enrichment-classes {
      grid-template-columns: 1fr 1fr 1fr; } }
  @media only screen and (min-width: 1024px) {
      .enrichment-classes .enrichment-class {
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        height: 400px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        background-image: url("/sitefiles/2780/images/ohs-tree-ring-dark-green.svg"); }
        .enrichment-classes .enrichment-class:nth-child(even) {
          background-image: url("/sitefiles/2780/images/alternate-tree-ring.svg"); }
        .enrichment-classes .enrichment-class .class-icon {
          height: 75px;
          width: 75px;
          margin: 1em; }
        .enrichment-classes .enrichment-class .class-name {
          text-align: center;
          font-size: 2.5em;
          color: white;
          width: 40%;
          margin-top: 0; } }
@media only screen and (min-width: 1024px) {
  #tns1-mw {
    width: 80%;
    margin: 0 auto; } }

#tns1-ow {
  display: flex;
  flex-direction: column-reverse; }
  #tns1-ow .tns-controls {
    position: relative;
    bottom: 35px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 95%; }
    #tns1-ow .tns-controls button {
      text-transform: uppercase;
      background-color: #00502E;
      color: white;
      border: none; }
      #tns1-ow .tns-controls button span:before {
        font-size: 20px; }
  #tns1-ow .tns-nav {
    position: relative;
    margin: 0 auto;
    bottom: 35px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center; }
    #tns1-ow .tns-nav button {
      border-radius: 50%;
      border: none;
      height: 12px;
      width: 5px;
      margin: 0 1em; }
    #tns1-ow .tns-nav .tns-nav-active {
      background-color: #B0BC22; }

#our-modal #tns1 > .tns-item {
  background-color: #00502E; }
  #our-modal #tns1 > .tns-item .slide-content {
    display: flex;
    padding: 4em;
    padding-bottom: 5em;
    flex-direction: column; }
    @media only screen and (min-width: 1024px) {
      #our-modal #tns1 > .tns-item .slide-content {
        flex-direction: row; } }
    #our-modal #tns1 > .tns-item .slide-content .slide-info .title {
      display: flex;
      align-items: center;
      flex-direction: column; }
      @media only screen and (min-width: 1024px) {
        #our-modal #tns1 > .tns-item .slide-content .slide-info .title {
          flex-direction: row; } }
      #our-modal #tns1 > .tns-item .slide-content .slide-info .title .slide-icon {
        height: 65px; }
      #our-modal #tns1 > .tns-item .slide-content .slide-info .title h3 {
        color: white; }
      #our-modal #tns1 > .tns-item .slide-content .slide-info .title img {
        width: 250px !important; }
        @media only screen and (min-width: 1024px) {
          #our-modal #tns1 > .tns-item .slide-content .slide-info .title img {
            width: 75px !important; } }
    #our-modal #tns1 > .tns-item .slide-content .slide-info p {
      color: white;
      font-size: 14px;
      line-height: 24px; }
    #our-modal #tns1 > .tns-item .slide-content img {
      object-fit: cover;
      height: 250px; }
      @media only screen and (min-width: 1024px) {
        #our-modal #tns1 > .tns-item .slide-content img {
          height: auto; } }
.enrichment-video {
  display: flex;
  flex-direction: column;
  justify-content: center; }
  @media only screen and (min-width: 1024px) {
    .enrichment-video {
      flex-direction: row;
      margin: 10em; } }
  .enrichment-video > * {
    flex-basis: 50%;
    position: relative; }
    @media (max-width: 800px) {
      .enrichment-video > * {
        flex-basis: 100%; } }
  .enrichment-video .embed-container {
    padding-bottom: 350px; }
  .enrichment-video .enrichment-video-description {
    padding: 1em; }
    @media only screen and (min-width: 1024px) {
      .enrichment-video .enrichment-video-description {
        padding-left: 4em; } }
    .enrichment-video .enrichment-video-description h2 {
      font-weight: normal;
      text-transform: uppercase; }

@media (max-width: 767px) {
  .enrichment .default-container .enrichment-classes {
    display: none; } }

@media (min-width: 768px) {
  .enrichment .default-container #our-modal {
    position: fixed;
    z-index: 99999;
    width: 950px;
    max-width: 90%;
    top: 100px;
    height: inherit;
    max-height: calc(100vh - 100px);
    overflow: auto;
    left: calc((100vw - 950px) / 2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.33s ease; }
    .enrichment .default-container #our-modal.active {
      opacity: 1;
      visibility: visible; } }

.enrichment .default-container #our-modal .close-btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 25px;
  margin: 10px;
  background-image: url("/sitefiles/2780/images/ui/x-light.svg");
  z-index: 1;
  cursor: pointer; }

.enrichment .default-container #our-modal .tns-outer#tns1-ow {
  display: block; }
  .enrichment .default-container #our-modal .tns-outer#tns1-ow .tns-ovh {
    width: 100%; }
    .enrichment .default-container #our-modal .tns-outer#tns1-ow .tns-ovh .slide .slide-content {
      display: inline-flex;
      justify-content: space-between; }
      .enrichment .default-container #our-modal .tns-outer#tns1-ow .tns-ovh .slide .slide-content .slide-info {
        flex-basis: 50%; }
        .enrichment .default-container #our-modal .tns-outer#tns1-ow .tns-ovh .slide .slide-content .slide-info .title h3 {
          margin: 0; }
        .enrichment .default-container #our-modal .tns-outer#tns1-ow .tns-ovh .slide .slide-content .slide-info .title img {
          width: 75px;
          margin-right: 1em; }
      .enrichment .default-container #our-modal .tns-outer#tns1-ow .tns-ovh .slide .slide-content .slide-image-side {
        flex-basis: 45%; }
        .enrichment .default-container #our-modal .tns-outer#tns1-ow .tns-ovh .slide .slide-content .slide-image-side ul.slide-images {
          padding-left: 0; }
          .enrichment .default-container #our-modal .tns-outer#tns1-ow .tns-ovh .slide .slide-content .slide-image-side ul.slide-images li .slide-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 250px;
            background-size: contain;
            background-position: center bottom;
            background-repeat: no-repeat; }
        .enrichment .default-container #our-modal .tns-outer#tns1-ow .tns-ovh .slide .slide-content .slide-image-side .tns-nav {
          bottom: -10px; }

.oak-fund-intro {
  padding-bottom: 4em; }

.giving-levels {
  padding-bottom: 4em; }
  .giving-levels h3 {
    text-transform: uppercase;
    color: #00502E; }
  .giving-levels .levels {
    display: grid; }
    @media only screen and (min-width: 1024px) {
      .giving-levels .levels {
        grid-template-columns: 1fr 1fr; } }
    .giving-levels .levels .column-one p {
      padding: 0.25em; }
    .giving-levels .levels .column-two p {
      padding: 0.25em; }

.formmodule {
  margin-top: 5em; }

.swformfield__label {
  font-size: 18px !important;
  color: #00502E !important;
  font-family: "Montserrat" !important; }

.swformfield__control {
  color: #00502E !important;
  font-family: "Montserrat" !important; }

.swformfieldlist__label {
  font-size: 18px !important;
  color: #00502E !important;
  font-family: "Montserrat" !important; }

.swformfield--checkbox {
  padding: 1em 0; }
  .swformfield--checkbox input {
    height: 25px !important; }

div.blog #ctl00_cphPageBody_public_partctrl_cphPageBody_1_blogEntriesRendered {
  padding-top: 6em;
  display: grid;
  width: 95%;
  margin: 0 auto;
  grid-gap: 3em;
  grid-template-columns: 1fr; }
  @media screen and (min-width: 1024px) {
    div.blog #ctl00_cphPageBody_public_partctrl_cphPageBody_1_blogEntriesRendered {
      grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); } }
  div.blog #ctl00_cphPageBody_public_partctrl_cphPageBody_1_blogEntriesRendered .blog-entry-listing {
    background-color: #E5EEE9;
    position: relative;
    padding: 2em;
    margin: 0; }
    div.blog #ctl00_cphPageBody_public_partctrl_cphPageBody_1_blogEntriesRendered .blog-entry-listing .post-date {
      font-size: 16px;
      text-transform: uppercase;
      color: #00502E;
      margin: 0; }
    div.blog #ctl00_cphPageBody_public_partctrl_cphPageBody_1_blogEntriesRendered .blog-entry-listing .post-title {
      margin: 0; }
      div.blog #ctl00_cphPageBody_public_partctrl_cphPageBody_1_blogEntriesRendered .blog-entry-listing .post-title a {
        font-family: "Montserrat";
        color: #00502E;
        text-transform: uppercase;
        font-weight: bolder;
        font-size: 24px; }
    div.blog #ctl00_cphPageBody_public_partctrl_cphPageBody_1_blogEntriesRendered .blog-entry-listing .post-body {
      font-family: "Montserrat";
      color: #00502E;
      line-height: 24px;
      font-size: 15px; }
      div.blog #ctl00_cphPageBody_public_partctrl_cphPageBody_1_blogEntriesRendered .blog-entry-listing .post-body .post-summary-read-more {
        border: 2px solid #008752;
        border-bottom: 5px solid #008752;
        font-size: 16px;
        font-weight: bold;
        text-transform: uppercase;
        color: #008752;
        padding: 0.5em 3em 0.5em 1em;
        background-color: white;
        display: block;
        margin-top: 16px; }
        div.blog #ctl00_cphPageBody_public_partctrl_cphPageBody_1_blogEntriesRendered .blog-entry-listing .post-body .post-summary-read-more:hover {
          background-color: #008752;
          color: white !important; }
    div.blog #ctl00_cphPageBody_public_partctrl_cphPageBody_1_blogEntriesRendered .blog-entry-listing .post-profileinfo, div.blog #ctl00_cphPageBody_public_partctrl_cphPageBody_1_blogEntriesRendered .blog-entry-listing .post-tags {
      display: none; }

.directory .sort {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 0 auto;
  margin-top: 3em; }
  @media only screen and (min-width: 1024px) {
    .directory .sort {
      flex-direction: row; } }
  .directory .sort .filter {
    width: 100%; }
    @media only screen and (min-width: 1024px) {
      .directory .sort .filter {
        width: 50%; } }
    .directory .sort .filter select {
      border: none;
      width: 100%;
      padding: 0.5em;
      background-color: rgba(0, 80, 48, 0.05);
      border-bottom: 3px solid #00502E;
      font-size: 16px;
      color: #00502E;
      font-family: "Montserrat"; }
  .directory .sort .search {
    width: 100%;
    margin-top: 2em;
    display: flex;
    flex-direction: row;
    border-bottom: 3px solid #00502e; }
    @media only screen and (min-width: 1024px) {
      .directory .sort .search {
        width: 50%;
        margin-left: 3em;
        margin-top: 0; } }
    .directory .sort .search input {
      width: 100%;
      border: none;
      padding: 0.5em;
      background-color: rgba(0, 80, 48, 0.05);
      font-size: 16px;
      color: #00502e;
      font-family: "Montserrat"; }
    .directory .sort .search button {
      border: none;
      padding: 0.5em;
      font-size: 16px;
      background-color: rgba(0, 80, 48, 0.05);
      color: #00502E;
      cursor: pointer; }

.staff-directory {
  display: none; }
  @media only screen and (min-width: 1024px) {
    .staff-directory {
      display: grid;
      grid-gap: 3em;
      list-style: none;
      width: 90%;
      margin: auto;
      margin-top: 4em;
      padding: 0; } }
  @media only screen and (min-width: 1024px) and (min-width: 1024px) {
    .staff-directory {
      grid-template-columns: 1fr 1fr; } }
  @media only screen and (min-width: 1024px) {
      .staff-directory .staff-member {
        background-color: #00502E;
        display: flex;
        height: 300px; }
        .staff-directory .staff-member .staff-info {
          padding: 2em;
          background-image: url("/sitefiles/2780/images/ohs-directory.svg");
          margin-right: -2em;
          z-index: 1;
          background-repeat: no-repeat;
          background-position: center;
          background-size: cover;
          width: 50%;
          display: flex;
          flex-direction: column;
          justify-content: space-evenly; }
          .staff-directory .staff-member .staff-info h4 {
            color: white;
            text-transform: uppercase;
            font-size: 24px;
            margin: 0; }
          .staff-directory .staff-member .staff-info p {
            color: white;
            font-size: 14px;
            margin: 0; }
          .staff-directory .staff-member .staff-info .staff-title {
            text-transform: uppercase;
            font-weight: bold; }
          .staff-directory .staff-member .staff-info .staff-education {
            font-style: italic; }
        .staff-directory .staff-member .staff-image {
          background-color: #008752;
          width: 75%; }
          .staff-directory .staff-member .staff-image img {
            height: 100%;
            width: 100%;
            object-fit: cover; }
          .staff-directory .staff-member .staff-image .staff-bio {
            display: none;
            position: relative;
            top: -300px;
            text-align: right;
            width: 80%;
            margin: auto;
            margin-right: 3em;
            align-items: center;
            justify-content: center;
            height: 100%; }
            .staff-directory .staff-member .staff-image .staff-bio p {
              color: white;
              font-size: 12px;
              line-height: 18px; } }
.staff-directory-mobile {
  margin-bottom: 4em !important;
  display: grid;
  grid-gap: 3em;
  list-style: none;
  width: 90%;
  margin: auto;
  margin-top: 4em;
  padding: 0;
  grid-template-columns: 1fr; }
  @media only screen and (min-width: 1024px) {
    .staff-directory-mobile {
      display: none; } }
  .staff-directory-mobile .staff-member {
    background-color: #00502E;
    display: flex;
    flex-direction: column; }
    .staff-directory-mobile .staff-member .staff-image {
      background-color: #008752;
      width: 100%; }
      .staff-directory-mobile .staff-member .staff-image img {
        height: 100%;
        width: 100%;
        object-fit: cover; }
    .staff-directory-mobile .staff-member .staff-info {
      padding: 2em;
      background-image: url("/sitefiles/2780/images/ohs-blog-block.svg");
      z-index: 1;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      background-color: #00502E; }
      .staff-directory-mobile .staff-member .staff-info h4 {
        color: white;
        text-transform: uppercase;
        font-size: 24px;
        margin: 0; }
      .staff-directory-mobile .staff-member .staff-info p {
        color: white;
        font-size: 16px;
        margin: 0; }
      .staff-directory-mobile .staff-member .staff-info .staff-title {
        text-transform: uppercase;
        font-weight: bold; }
      .staff-directory-mobile .staff-member .staff-info .staff-education {
        font-style: italic; }
    .staff-directory-mobile .staff-member .staff-bio {
      display: none;
      height: 0px;
      text-align: left;
      padding: 2em;
      margin: auto;
      align-items: center;
      justify-content: center;
      background-color: #008752;
      width: 100%;
      -webkit-transition: height 0.5s linear;
      -moz-transition: height 0.5s linear;
      -ms-transition: height 0.5s linear;
      -o-transition: height 0.5s linear;
      transition: height 0.5s linear; }
      .staff-directory-mobile .staff-member .staff-bio i {
        width: 100%;
        text-align: center;
        color: white; }
        .staff-directory-mobile .staff-member .staff-bio i:before {
          font-size: 2em; }
      .staff-directory-mobile .staff-member .staff-bio p {
        color: white;
        font-size: 16px;
        line-height: 24px; }
    .staff-directory-mobile .staff-member .open {
      height: 100%;
      -webkit-transition: height 0.5s linear;
      -moz-transition: height 0.5s linear;
      -ms-transition: height 0.5s linear;
      -o-transition: height 0.5s linear;
      transition: height 0.5s linear; }

li.staff-member .staff-image .staff-imageless {
  width: 100%;
  height: 100%;
  background-size: 45%;
  background-image: url("/sitefiles/2780/images/ohs-logo-filler.svg");
  background-position: center;
  background-repeat: no-repeat;
  transition: all .33s ease; }
  @media (max-width: 1023px) {
    li.staff-member .staff-image .staff-imageless {
      min-height: 250px;
      background-size: 150px; } }
.trustee-directory {
  display: grid;
  grid-gap: 3em;
  list-style: none;
  width: 100%;
  margin: auto;
  margin-top: 4em;
  padding: 0;
  grid-template-columns: 1fr 1fr; }
  @media screen and (max-width: 767px) {
    .trustee-directory {
      grid-template-columns: 1fr; } }
  .trustee-directory .trustee {
    background-color: #00502E;
    display: flex;
    height: 300px; }
    .trustee-directory .trustee .trustee-link {
      width: 100%;
      display: flex; }
      .trustee-directory .trustee .trustee-link .trustee-info {
        padding: 2em;
        background-image: url(/sitefiles/2780/images/ohs-directory.svg);
        margin-right: -2em;
        z-index: 1;
        background-repeat: no-repeat;
        background-position: center right;
        background-size: cover;
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center; }
        .trustee-directory .trustee .trustee-link .trustee-info h4 {
          color: white;
          text-transform: uppercase;
          font-size: 24px;
          margin: 0; }
        .trustee-directory .trustee .trustee-link .trustee-info h3 {
          font-size: 18px;
          color: #FFF;
          font-style: italic;
          margin: 0; }
        .trustee-directory .trustee .trustee-link .trustee-info .trustee-bio {
          font-style: italic; }
          .trustee-directory .trustee .trustee-link .trustee-info .trustee-bio p {
            color: #FFF; }
      .trustee-directory .trustee .trustee-link .trustee-image {
        background-color: #008752;
        width: 75%; }
        .trustee-directory .trustee .trustee-link .trustee-image img {
          height: 100%;
          width: 100%;
          object-fit: cover;
          object-position: center; }
        .trustee-directory .trustee .trustee-link .trustee-image .trustee-imageless {
          width: 100%;
          height: 100%;
          background-size: 45%;
          background-image: url(/sitefiles/2780/images/ohs-logo-filler.svg);
          background-position: center;
          background-repeat: no-repeat;
          transition: all 0.33s ease; }

.trustee-back-btn {
  width: 100%;
  flex-basis: 100%; }
  .trustee-back-btn a {
    padding: 10px 15px;
    background-color: #00502E;
    color: #FFF;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: bold; }

.trustee-detailed {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #00502E;
  padding: 3em; }
  .trustee-detailed .trustee-image {
    flex-basis: 30%;
    width: 30%;
    margin-right: auto; }
  .trustee-detailed .trustee-bio {
    flex-basis: 66%;
    width: 66%;
    margin-left: auto; }
    .trustee-detailed .trustee-bio h4 {
      color: #FFF; }
    .trustee-detailed .trustee-bio h3 {
      font-size: 18px;
      color: #FFF;
      font-style: italic;
      margin: 0; }
    .trustee-detailed .trustee-bio p {
      color: #FFF; }
  @media screen and (max-width: 767px) {
    .trustee-detailed .trustee-image {
      flex-basis: 100%;
      width: 100%;
      margin: auto; }
    .trustee-detailed .trustee-bio {
      flex-basis: 100%;
      width: 100%;
      margin: auto; }
      .trustee-detailed .trustee-bio h4 {
        color: #FFF; }
      .trustee-detailed .trustee-bio h3 {
        font-size: 18px;
        color: #FFF;
        font-style: italic;
        margin: 0; } }
.job-intro {
  width: 60%;
  margin: auto;
  text-align: center; }
  .job-intro a {
    color: #B0BC22;
    position: relative;
    padding: 3px; }
    .job-intro a:before {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 1px;
      background: #008850;
      content: "";
      -webkit-transition: -webkit-transform 0.3s;
      -moz-transition: -moz-transform 0.3s;
      transition: transform 0.3s;
      -webkit-transform: scale(0.85);
      -moz-transform: scale(0.85);
      transform: scale(0.85); }
    .job-intro a:after {
      opacity: 0;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      height: 1px;
      background: #008850;
      content: "";
      -webkit-transition: -webkit-transform 0.3s;
      -moz-transition: -moz-transform 0.3s;
      transition: transform 0.3s;
      -webkit-transform: scale(0.85);
      -moz-transform: scale(0.85);
      transform: scale(0.85);
      -webkit-transition: top 0.3s, opacity 0.3s, -webkit-transform 0.3s;
      -moz-transition: top 0.3s, opacity 0.3s, -moz-transform 0.3s;
      transition: top 0.3s, opacity 0.3s, transform 0.3s; }
    .job-intro a:hover:after {
      opacity: 1;
      top: 0%; }

.job-filter .sort {
  display: flex;
  flex-direction: row;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 5em;
  margin-top: 3em; }
  .job-filter .sort .filter {
    width: 50%; }
    .job-filter .sort .filter select {
      border: none;
      width: 100%;
      padding: 0.5em;
      background-color: rgba(0, 80, 48, 0.05);
      border-bottom: 3px solid #00502E;
      font-size: 16px;
      color: #00502E;
      font-family: "Montserrat"; }
  .job-filter .sort .search {
    width: 50%;
    margin-left: 3em;
    display: flex;
    flex-direction: row;
    border-bottom: 3px solid #00502e; }
    .job-filter .sort .search input {
      width: 100%;
      border: none;
      padding: 0.5em;
      background-color: rgba(0, 80, 48, 0.05);
      font-size: 16px;
      color: #00502e;
      font-family: "Montserrat"; }
    .job-filter .sort .search button {
      border: none;
      padding: 0.5em;
      font-size: 16px;
      background-color: rgba(0, 80, 48, 0.05);
      color: #00502E;
      cursor: pointer; }

.job-directory {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 3em;
  margin: auto;
  width: 80%;
  padding: 0; }
  .job-directory .job {
    background-color: white;
    background-image: url("/sitefiles/2780/images/ohs-blog-block.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2em;
    max-width: 385px; }
    .job-directory .job h5 {
      color: white;
      text-align: center;
      text-transform: uppercase;
      font-size: 16px;
      font-weight: normal; }
    .job-directory .job h4 {
      color: white;
      text-align: center;
      text-transform: uppercase;
      font-size: 24px;
      margin: 0.5em 0; }
    .job-directory .job a {
      margin: 1em;
      padding: 0.5em 1.5em;
      background-color: white;
      text-transform: uppercase;
      font-weight: bolder;
      font-family: "Montserrat";
      border-width: 5px;
      border-image-slice: 1;
      color: #008850;
      border-image-source: linear-gradient(to left, #759E2E, #008752); }
      .job-directory .job a:hover {
        background-image: linear-gradient(to left, #759E2E, #008752);
        color: white; }

.equality {
  width: 50%;
  margin: auto;
  margin-top: 6em; }

.job-description {
  width: 80%;
  margin: 0 auto 80px;
  margin-top: 8em; }
  .job-description .responsibilities ul {
    list-style: none; }
    .job-description .responsibilities ul li {
      position: relative; }
      .job-description .responsibilities ul li:before {
        position: absolute;
        left: -35px;
        content: "";
        background-image: url("/sitefiles/2780/images/ohs-acorn.svg");
        height: 25px;
        width: 25px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center bottom; }
  .job-description .skills {
    margin: 6em 0; }
    .job-description .skills ul {
      list-style: none; }
      .job-description .skills ul li {
        position: relative; }
        .job-description .skills ul li:before {
          position: absolute;
          left: -35px;
          content: "";
          background-image: url("/sitefiles/2780/images/ohs-acorn.svg");
          height: 25px;
          width: 25px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center bottom; }

ul.share-job-list {
  list-style: none;
  padding-left: 0;
  margin: 0 15px 15px 0;
  display: block;
  margin-block-start: 0;
  padding-inline-start: 0;
  position: relative; }
  ul.share-job-list > li {
    background-color: #008752;
    display: inline-flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    padding: 10px 25px;
    transition: all .33s ease;
    cursor: pointer;
    position: relative;
    min-height: 45px; }
    ul.share-job-list > li span {
      font-size: 16px;
      color: white; }
      ul.share-job-list > li span:before {
        margin-right: 5px;
        content: "\f064";
        font-family: fontawesome;
        color: white; }
    ul.share-job-list > li > ul {
      position: absolute;
      visibility: hidden;
      opacity: 0;
      max-height: 0;
      transition: all .33s ease;
      top: 100%;
      left: 0%;
      display: flex;
      list-style: none;
      padding-left: 0; }
      ul.share-job-list > li > ul li a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: black;
        position: relative; }
        ul.share-job-list > li > ul li a:before {
          color: white;
          position: absolute;
          font-family: fontawesome; }
      ul.share-job-list > li > ul li.facebook a {
        background: #4267B2; }
        ul.share-job-list > li > ul li.facebook a:hover {
          background: rgba(66, 103, 178, 0.6); }
        ul.share-job-list > li > ul li.facebook a:before {
          content: "\f09a"; }
      ul.share-job-list > li > ul li.twitter a {
        background: #1DA1F2; }
        ul.share-job-list > li > ul li.twitter a:hover {
          background: rgba(29, 161, 242, 0.6); }
        ul.share-job-list > li > ul li.twitter a:before {
          content: "\f099"; }
      ul.share-job-list > li > ul li.pinterest a {
        background: #e60123; }
        ul.share-job-list > li > ul li.pinterest a:hover {
          background: rgba(230, 1, 35, 0.6); }
        ul.share-job-list > li > ul li.pinterest a:before {
          content: "\f0d2"; }
      ul.share-job-list > li > ul li.linkedin a {
        background: #2867B2; }
        ul.share-job-list > li > ul li.linkedin a:hover {
          background: rgba(40, 103, 178, 0.6); }
        ul.share-job-list > li > ul li.linkedin a:before {
          content: "\f0e1"; }
      ul.share-job-list > li > ul li.email a:hover {
        background: rgba(0, 0, 0, 0.6); }
      ul.share-job-list > li > ul li.email a:before {
        content: "\f0e0"; }
    ul.share-job-list > li:hover, ul.share-job-list > li.active {
      background-color: rgba(0, 135, 82, 0.6); }
      ul.share-job-list > li:hover ul, ul.share-job-list > li.active ul {
        visibility: visible;
        max-height: 40px;
        opacity: 1; }

@media only screen and (min-width: 1024px) {
  .alumni-news .default-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .alumni-news .default-container > *:not(.formmodule) {
      flex-basis: calc(100% - 400px); }
    .alumni-news .default-container .alumni-blog {
      grid-column-start: 2;
      grid-column-end: 4;
      grid-row-start: 1;
      grid-row-end: 10; } }

.alumni-contact {
  width: 90%;
  margin: 0 auto;
  margin-top: 3em; }
  @media only screen and (min-width: 1024px) {
    .alumni-contact {
      width: 100%;
      animation: fadeInLeft 1s ease; } }
  .alumni-contact .swformsection__header {
    font-size: 35px !important;
    color: #759E2E !important;
    font-weight: bold !important;
    font-family: "Montserrat" !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    line-height: 40px !important; }
  .alumni-contact .swformfield__label::after {
    display: none !important; }

.support-oak-hill {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 20px;
  height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; }
  @media only screen and (min-width: 768px) {
    .support-oak-hill {
      width: 100%; } }
  @media only screen and (min-width: 1024px) {
    .support-oak-hill {
      background-size: contain;
      background-position: center;
      min-height: 550px; } }
  .support-oak-hill h3 {
    font-family: "Cinzel";
    font-size: 40px;
    width: 100%;
    text-align: center;
    color: #00502E;
    font-weight: normal;
    line-height: 35px; }
    @media only screen and (min-width: 1024px) {
      .support-oak-hill h3 {
        font-size: 25px;
        text-align: center;
        margin: 0; } }
  .support-oak-hill p {
    font-family: "Montserrat";
    color: #00502e;
    font-size: 16px;
    line-height: 20px;
    width: 100%;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .support-oak-hill p {
        width: 70%; } }
    @media only screen and (min-width: 1024px) {
      .support-oak-hill p {
        font-size: 15px;
        width: 50%; } }
.alumni-blog {
  width: 90%;
  margin: 0 auto;
  animation: fadeInRight 1s ease; }
  @media only screen and (min-width: 1024px) {
    .alumni-blog {
      width: 90%;
      position: relative;
      z-index: 50; } }
  .alumni-blog .matrix-content {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 3em; }
    @media only screen and (min-width: 1024px) {
      .alumni-blog .matrix-content {
        grid-template-columns: 1fr 1fr; } }
.alumni-blog {
  margin-bottom: 4em; }
  .alumni-blog .blog-entry-listing {
    background-image: linear-gradient(#008752, #00502E);
    border-bottom: 0;
    position: relative;
    height: 550px; }
    .alumni-blog .blog-entry-listing .post-info {
      background-repeat: no-repeat;
      background-image: url("/sitefiles/2780/images/ohs-blog-block.svg");
      background-repeat: no-repeat;
      position: absolute;
      background-size: cover;
      background-position: center;
      bottom: 0; }
    .alumni-blog .blog-entry-listing .post-date {
      margin: 2em;
      font-size: 16px;
      text-transform: uppercase;
      color: white;
      margin-top: 0 !important;
      margin-bottom: 0 !important; }
    .alumni-blog .blog-entry-listing .post-title {
      margin-left: 0.75em;
      margin-bottom: 1em;
      margin: 1em; }
      .alumni-blog .blog-entry-listing .post-title a {
        font-family: "Montserrat";
        color: white;
        text-transform: uppercase;
        font-weight: bolder;
        font-size: 24px; }
    .alumni-blog .blog-entry-listing .post-image {
      overflow: hidden; }
      .alumni-blog .blog-entry-listing .post-image a img {
        transition: transform 0.5s ease-in-out;
        overflow: hidden;
        object-fit: cover;
        width: 100%; }
        .alumni-blog .blog-entry-listing .post-image a img:hover {
          transform: scale(1.1);
          overflow: hidden; }
    .alumni-blog .blog-entry-listing .post-body {
      margin: 2em;
      font-family: "Montserrat";
      color: white;
      line-height: 24px;
      font-size: 15px;
      margin-top: 1em !important; }
      .alumni-blog .blog-entry-listing .post-body .post-summary-read-more {
        border: 2px solid #008752;
        border-bottom: 5px solid #008752;
        font-size: 16px;
        font-weight: bold;
        text-transform: uppercase;
        color: #008752;
        padding: 0.5em 3em 0.5em 1em;
        background-color: white; }
        .alumni-blog .blog-entry-listing .post-body .post-summary-read-more:hover {
          background-color: #008752;
          color: white !important; }
    .alumni-blog .blog-entry-listing .post-profileinfo {
      display: none; }
    .alumni-blog .blog-entry-listing .post-tags {
      display: none; }

@media (min-width: 768px) {
  .formmodule {
    flex-basis: 350px !important; } }

.formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper {
  margin-bottom: 0;
  margin-top: 0;
  padding-bottom: 0;
  position: relative; }
  .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type="text"],
  .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type="email"],
  .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper textarea {
    width: 100%;
    outline: none;
    border: none;
    border-bottom: 3px solid rgba(0, 135, 82, 0.5);
    background-color: rgba(117, 158, 46, 0.05);
    transition: all .33s ease;
    position: relative;
    padding-bottom: 0;
    margin: 0;
    display: block;
    padding: 11px 15px;
    transition: all .33s ease;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0); }
    .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type="text"]::placeholder,
    .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type="email"]::placeholder,
    .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper textarea::placeholder {
      font-style: italic;
      line-height: 1.4; }
  .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper textarea {
    min-height: 15rem; }
  .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper:after {
    content: "";
    position: absolute;
    left: 0;
    top: calc(100% - 3px);
    width: 0%;
    height: 3px;
    z-index: 1;
    background-color: #008752;
    transition: all 1s ease; }
  .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper:hover:after, .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper:focus:after, .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper:focus-within:after {
    width: 100%; }
  .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper:hover input[type="text"],
  .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper:hover input[type="email"],
  .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper:hover textarea, .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper:focus input[type="text"],
  .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper:focus input[type="email"],
  .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper:focus textarea, .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper:focus-within input[type="text"],
  .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper:focus-within input[type="email"],
  .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper:focus-within textarea {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(117, 158, 46, 0.01);
    border-bottom: 3px solid rgba(0, 135, 82, 0.9); }

.formmodule .swform .swformfield__errortxt,
.formmodule .swform .swformmsg__text {
  font-size: 13px !important; }

.support-intro-section {
  margin: 2em; }
  @media only screen and (min-width: 1024px) {
    .support-intro-section {
      margin: 0; } }
  .support-intro-section .support-intro-description {
    display: flex;
    flex-direction: column; }
    @media only screen and (min-width: 1024px) {
      .support-intro-section .support-intro-description {
        display: block;
        width: 80%;
        margin: 0 auto; } }
    .support-intro-section .support-intro-description .support-intro-image {
      background-repeat: no-repeat;
      float: right;
      animation: fadeInRight 1s ease;
      margin: 2em 0;
      order: 4; }
      @media only screen and (min-width: 1024px) {
        .support-intro-section .support-intro-description .support-intro-image {
          margin: 2em; } }
      .support-intro-section .support-intro-description .support-intro-image img {
        padding: 3.7em;
        animation: fadeInRight 0.7s ease; }
        @media only screen and (min-width: 768px) {
          .support-intro-section .support-intro-description .support-intro-image img {
            padding: 8em; } }
        @media only screen and (min-width: 1440px) {
          .support-intro-section .support-intro-description .support-intro-image img {
            padding: 7em;
            width: 650px; } }
    .support-intro-section .support-intro-description h2 {
      font-size: 5em;
      font-weight: normal; }
      @media only screen and (min-width: 1024px) {
        .support-intro-section .support-intro-description h2 {
          margin-bottom: 0; } }
    .support-intro-section .support-intro-description h3 {
      text-transform: uppercase;
      color: #00502E;
      margin-top: 0.5em; }
    .support-intro-section .support-intro-description a button {
      border-image: linear-gradient(to right, #05894e, #77a423) 1;
      background-color: white;
      border-radius: 0;
      border-bottom: 8px solid;
      color: #05894e;
      cursor: pointer;
      font-size: 18px !important;
      font-weight: bold !important;
      text-transform: uppercase;
      font-family: "Montserrat";
      text-align: left;
      padding: 0.8em !important;
      position: relative;
      overflow: hidden;
      z-index: 1;
      -webkit-transition: color 150ms ease-in-out;
      transition: color 150ms ease-in-out;
      width: 100%; }
      @media only screen and (min-width: 768px) {
        .support-intro-section .support-intro-description a button {
          width: 250px; } }
      .support-intro-section .support-intro-description a button:after {
        content: "";
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 110%;
        height: 0%;
        background: #008850;
        z-index: -1;
        -webkit-transition: height 150ms ease-in-out;
        transition: height 150ms ease-in-out; }
      .support-intro-section .support-intro-description a button:hover {
        background-image: linear-gradient(to left, #759E2E, #008752);
        color: white; }

.support-video-section {
  margin: 2em;
  margin-bottom: 8em; }
  @media only screen and (min-width: 1024px) {
    .support-video-section {
      width: 65%;
      margin: 0 auto;
      margin-top: 4em;
      margin-bottom: 8em; } }
  .support-video-section > * {
    flex-basis: 50%;
    position: relative; }

.facts-section {
  margin-bottom: 100px;
  text-align: center; }
  .facts-section a.btn-green {
    text-align: center;
    margin: 50px auto; }

.ohs-facts {
  display: grid;
  grid-template-columns: 1fr;
  margin: 4em;
  text-align: center;
  grid-gap: 3em; }
  @media only screen and (min-width: 1024px) {
    .ohs-facts {
      grid-template-columns: 1fr 1fr 1fr; } }
  .ohs-facts .ohs-fact {
    box-shadow: 5px 5px rgba(0, 80, 46, 0.4), 10px 10px rgba(0, 80, 46, 0.3), 15px 15px rgba(0, 80, 46, 0.2), 20px 20px rgba(0, 80, 46, 0.1), 25px 25px rgba(0, 80, 46, 0.05);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    transition: all 0.33s ease-in-out;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 300px;
    overflow: hidden; }
    .ohs-facts .ohs-fact .info {
      padding: 1em;
      width: 100%;
      transition: all 0.33s ease-in-out;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative; }
      .ohs-facts .ohs-fact .info:before {
        background-color: white;
        opacity: 0.7;
        position: absolute;
        content: "";
        width: 100%;
        top: 0;
        left: 0;
        height: 100%;
        transition: all 0.33s ease-in-out; }
      .ohs-facts .ohs-fact .info .fact-number {
        margin: 0;
        font-size: 90px;
        transition: all 0.33s ease-in-out;
        opacity: 1;
        position: relative; }
      .ohs-facts .ohs-fact .info .percentage:after {
        content: "%"; }
      .ohs-facts .ohs-fact .info .ratio:after {
        content: ":1"; }
      .ohs-facts .ohs-fact .info .fact-info {
        margin: 15px;
        transition: all 0.33s ease-in-out;
        text-transform: uppercase;
        opacity: 1;
        position: relative; }
    .ohs-facts .ohs-fact:hover {
      background-color: #008752;
      box-shadow: none; }
      .ohs-facts .ohs-fact:hover .info:before {
        background-color: #008752;
        opacity: 0.8; }
      .ohs-facts .ohs-fact:hover .info .fact-number {
        color: white; }
      .ohs-facts .ohs-fact:hover .info .fact-info {
        color: white; }
  @media only screen and (min-width: 1024px) {
    .ohs-facts div:nth-child(1) {
      grid-column-start: 1;
      grid-column-end: 4; } }
/* ============ Content Blocks ============ */
/* ============ Content Blocks ============ */
.accordion-wrap {
  margin: 30px 0px; }

.accordion {
  background-color: #fff;
  cursor: pointer;
  padding: 30px 20px;
  width: 100%;
  border-top: 3px solid #006E7F;
  text-align: left;
  transition: 0.4s;
  display: flex; }

.accordion_title {
  flex: 1;
  font-size: 22px;
  line-height: 28px;
  font-family: "Open Sans", sans-serif; }

.accordion .accordion_icon {
  transform: rotate(180deg);
  transition: transform 0.4s linear; }

.accordion.active .accordion_icon {
  transform: rotate(0deg);
  transition: transform 0.4s linear; }

.panel {
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  font-size: 16px;
  line-height: 24px; }

.panel_content {
  padding: 0px 20px 30px 20px; }

.panel:last-of-type {
  border-bottom: 3px solid #006E7F; }

.column-wrap {
  margin: 30px 0px; }
  .column-wrap .columns {
    display: flex;
    flex-flow: row nowrap; }
    .column-wrap .columns .column {
      display: flex;
      flex-flow: column nowrap;
      align-items: center;
      text-align: center; }
      .column-wrap .columns .column .column_image {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
        height: 90px;
        width: auto; }
        .column-wrap .columns .column .column_image img {
          height: 90px;
          width: auto; }
      .column-wrap .columns .column .column_title {
        font-size: 1.22em;
        font-weight: 700;
        margin-bottom: 20px; }
    .column-wrap .columns.two-columns .column {
      width: 49%;
      margin-right: 2%; }
      .column-wrap .columns.two-columns .column:last-of-type {
        margin-right: 0px; }
    .column-wrap .columns.three-columns .column {
      width: 32%;
      margin-right: 2%; }
      .column-wrap .columns.three-columns .column:last-of-type {
        margin-right: 0px; }
    .column-wrap .columns.four-columns .column {
      width: 24%;
      margin-right: 2%; }
      .column-wrap .columns.four-columns .column:last-of-type {
        margin-right: 0px; }

.glightbox-photo-gallery,
.glightbox-video-gallery {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  list-style: none;
  margin: 0px 0px 30px 0px;
  padding: 0px; }
  .glightbox-photo-gallery li,
  .glightbox-video-gallery li {
    display: flex;
    width: 30%;
    margin: 0 5% 30px 0;
    padding: 0; }
    .glightbox-photo-gallery li:nth-child(3n),
    .glightbox-video-gallery li:nth-child(3n) {
      margin-right: 0px; }
    .glightbox-photo-gallery li a img,
    .glightbox-video-gallery li a img {
      width: 100%;
      height: auto;
      border-radius: 20px; }

.photo-gallery-description,
.video-gallery-description {
  margin-bottom: 30px; }

.photo-gallery-wrap,
.video-gallery-wrap {
  margin: 30px 0px; }

.quote-wrap {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  padding: 60px;
  text-align: center;
  margin: 30px 0px; }
  .quote-wrap .quote-mark {
    margin-bottom: 80px; }
  .quote-wrap.has-background .quote-author,
  .quote-wrap.has-background .quote-author p {
    color: #E5EEE9; }
  .quote-wrap.has-background p {
    color: #E5EEE9; }
  .quote-wrap .quote-author {
    display: flex;
    flex-flow: row nowrap;
    font-weight: 700;
    font-size: 1.1em;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px; }
    .quote-wrap .quote-author p {
      font-weight: 700; }

.tabs-wrap {
  margin: 30px 0px; }

ul.nav-tabs {
  list-style: none;
  padding: 0;
  margin: 0; }
  ul.nav-tabs li {
    display: inline-flex; }
    ul.nav-tabs li a {
      font: "Open Sans", sans-serif;
      text-decoration: none;
      padding: 20px 20px;
      transition: all .3s ease-in-out;
      border: 1px solid #6D6E71;
      border-bottom: 1px solid transparent;
      color: #E5EEE9;
      font-size: 22px;
      line-height: 1;
      font-weight: 700;
      border-radius: 25px 25px 0px 0px;
      background: #6D6E71; }
      ul.nav-tabs li a:hover {
        color: #6D6E71;
        background: #E5EEE9; }

.nav-tabs .active a {
  border-bottom: 1px solid #E5EEE9;
  background: #E5EEE9;
  position: relative;
  bottom: -2px;
  color: #6D6E71; }
  .nav-tabs .active a:hover {
    color: #6D6E71;
    background: #E5EEE9; }

.tab-pane-wrap .tab-pane {
  display: none;
  padding: 30px;
  border: 1px solid #6D6E71;
  background: #E5EEE9;
  color: #6D6E71;
  font: "Open Sans", sans-serif; }
  .tab-pane-wrap .tab-pane p, .tab-pane-wrap .tab-pane h1, .tab-pane-wrap .tab-pane h2, .tab-pane-wrap .tab-pane h3, .tab-pane-wrap .tab-pane h4, .tab-pane-wrap .tab-pane h5, .tab-pane-wrap .tab-pane h6 {
    color: #6D6E71;
    font: "Open Sans", sans-serif; }

.tab-pane.active {
  display: block; }

.icons-full-wrap {
  display: flex;
  flex-flow: column nowrap; }

.icons-wrap {
  display: flex;
  flex-flow: row wrap; }
  .icons-wrap .icon-wrap {
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 60px;
    width: 100%; }
    @media screen and (min-width: 720px) {
      .icons-wrap .icon-wrap {
        width: 45%;
        margin-right: 10%; } }
    .icons-wrap .icon-wrap:nth-child(2n) {
      margin-right: 0; }
    .icons-wrap .icon-wrap .icon-icon {
      flex: 0 0 65px;
      margin-right: 40px; }
    .icons-wrap .icon-wrap .icon-content {
      display: flex;
      flex-flow: column nowrap; }
      .icons-wrap .icon-wrap .icon-content h4 {
        color: #00502E;
        font-size: 18px;
        line-height: 18px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-top: 0px;
        margin-bottom: 20px; }
      .icons-wrap .icon-wrap .icon-content p {
        font-size: 16px;
        line-height: 24px;
        color: #008752;
        margin: 0px; }

table {
  border-spacing: 0px;
  border: none;
  margin-bottom: 30px; }
  table thead tr th {
    background: #008752;
    color: #E5EEE9;
    border: none;
    font-size: 22px;
    line-height: 22px;
    font-weight: bold;
    padding: 30px 15px; }
  table tbody tr td {
    background: rgba(0, 110, 127, 0.2);
    border: none;
    padding: 15px;
    font-weight: 400;
    border-bottom: 2px solid #008752;
    text-align: center;
    color: #6D6E71; }
  table tbody tr:nth-child(2n) td {
    background: rgba(0, 110, 127, 0.4); }
  table tbody tr:last-of-type td {
    border-bottom: none; }

.square-links-full-wrap {
  display: flex;
  flex-flow: column nowrap; }

.square-links-description {
  margin: 30px 0px; }

.square-links-wrap {
  display: flex;
  flex-flow: row wrap; }
  .square-links-wrap .link-wrap {
    display: flex;
    flex-flow: column nowrap;
    margin-bottom: 60px;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 250px; }
    @media screen and (min-width: 720px) {
      .square-links-wrap .link-wrap {
        width: 30%;
        margin-right: 5%;
        position: relative;
        border: 2px solid #00502E; } }
    .square-links-wrap .link-wrap:nth-child(3n) {
      margin-right: 0; }
    .square-links-wrap .link-wrap .link-icon {
      margin-bottom: 20px;
      transition: all 0.5s ease; }
    .square-links-wrap .link-wrap .link-content {
      display: flex;
      flex-flow: column nowrap; }
      .square-links-wrap .link-wrap .link-content h4 {
        color: #008752;
        font-size: 18px;
        line-height: 18px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-top: 0px;
        margin-bottom: 0px;
        text-align: center; }
      .square-links-wrap .link-wrap .link-content p {
        height: 0px;
        opacity: 0;
        transition: all 0.5s ease; }
        @media screen and (max-width: 768px) {
          .square-links-wrap .link-wrap .link-content p {
            font-size: 16px;
            line-height: 26px;
            color: #00502E;
            margin: 0px;
            text-align: center; } }
    .square-links-wrap .link-wrap:hover .link-icon {
      margin-top: -60px;
      background: #E5EEE9; }
    .square-links-wrap .link-wrap:hover .link-content {
      display: flex;
      flex-flow: column nowrap; }
      .square-links-wrap .link-wrap:hover .link-content h4 {
        color: #008752;
        font-size: 18px;
        line-height: 18px;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-top: 0px;
        margin-bottom: 20px;
        text-align: center; }
      .square-links-wrap .link-wrap:hover .link-content p {
        display: flex;
        font-size: 16px;
        line-height: 26px;
        color: #00502E;
        margin: 0px;
        text-align: center;
        height: auto;
        width: auto;
        opacity: 1; }

.swform .swformsection .swformsection__header {
  font-size: 36px;
  line-height: 26px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #008752; }

.swform .swformfield.swformfield--text .swformfieldwrapper input.swformfield__control {
  padding: 15px;
  font-size: 15px;
  line-height: 15px;
  color: #6D6E71;
  border-radius: 0px; }
  @media screen and (max-width: 700px) {
    .swform .swformfield.swformfield--text .swformfieldwrapper input.swformfield__control {
      width: 100%; } }
  .swform .swformfield.swformfield--text .swformfieldwrapper input.swformfield__control[type=url], .swform .swformfield.swformfield--text .swformfieldwrapper input.swformfield__control[type=email] {
    width: 100%; }
  .swform .swformfield.swformfield--text .swformfieldwrapper input.swformfield__control[type=text] {
    min-width: 50%; }

.swform .swformfield .swformfield--checkbox .swformfield__label, .swform .swformfield .swformfield--radio .swformfield__label, .swform .swformfieldlist .swformfield--checkbox .swformfield__label, .swform .swformfieldlist .swformfield--radio .swformfield__label {
  font-size: 15px;
  line-height: 15px;
  text-transform: uppercase;
  color: #6D6E71; }

.swformfield.swformfield--textarea .swformfieldwrapper textarea.swformfield__control {
  padding: 15px !important;
  font-size: 16px !important;
  line-height: 16px !important;
  color: #6D6E71;
  border-radius: 0px !important;
  min-width: 50%;
  min-height: 100px; }

.swform .swformfield.swformfield--select .swformfieldwrapper .swformfield__control {
  font-size: 16px;
  line-height: 16px;
  color: #6D6E71;
  border-radius: 0px; }

.swform .sw-form-module__date-simple-input-wrapper {
  max-width: 80px; }

.swform .swformfield,
.swformfieldlist.swformfield--checkboxlists,
.swformfieldlist.swformfield--radiolist {
  margin-bottom: 30px; }

.swform .swformfield.swformfield--select .swformfield__label,
.swform .swformfield.swformfield--text .swformfield__label,
.swform .swformfield.swformfield--textarea .swformfield__label,
.swform .swformfieldlist.swformfield--select .swformfield__label,
.swform .swformfieldlist.swformfield--text .swformfield__label,
.swform .swformfieldlist.swformfield--textarea .swformfield__label,
.swform .swformfield .swformfieldlist__label, .swform .swformfieldlist .swformfieldlist__label,
.swformfield.swformfield--file label {
  font-size: 16px;
  color: #6D6E71;
  margin-bottom: 10px; }

.swform .swformfield .swformfield__helptxt, .swform .swformfield .swformfieldlist__helptxt, .swform .swformfieldlist .swformfield__helptxt, .swform .swformfieldlist .swformfieldlist__helptxt, .swformfield__helptxt, .swformsection .swformsection__header .swformsection__instructions {
  font-size: 16px !important;
  line-height: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-weight: 400;
  margin-bottom: 15px !important; }
