/* _master.scss */
/* ============ LIBRARIES ============ */
/* _flexbox-grid.scss */
@import url("https://fonts.googleapis.com/css2?family=Antonio:wght@100;200;300;400;500;600;700&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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: flex;
  flex: 0 1 auto;
  flex-direction: row;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.flex-row.reverse {
  flex-direction: row-reverse;
}

.flex-col.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;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}

.flex-col-xs {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.flex-col-xs-12 {
  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 {
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  justify-content: center;
  text-align: center;
}

.end-xs {
  justify-content: flex-end;
  text-align: end;
}

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

.middle-xs {
  align-items: center;
}

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

.around-xs {
  justify-content: space-around;
}

.between-xs {
  justify-content: space-between;
}

.first-xs {
  order: -1;
}

.last-xs {
  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;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .flex-col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .flex-col-sm-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .flex-col-sm-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .flex-col-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .flex-col-sm-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .flex-col-sm-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .flex-col-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .flex-col-sm-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .flex-col-sm-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .flex-col-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .flex-col-sm-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .flex-col-sm-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .flex-col-sm-12 {
    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 {
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    align-items: flex-start;
  }
  .middle-sm {
    align-items: center;
  }
  .bottom-sm {
    align-items: flex-end;
  }
  .around-sm {
    justify-content: space-around;
  }
  .between-sm {
    justify-content: space-between;
  }
  .first-sm {
    order: -1;
  }
  .last-sm {
    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;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .flex-col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .flex-col-md-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .flex-col-md-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .flex-col-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .flex-col-md-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .flex-col-md-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .flex-col-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .flex-col-md-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .flex-col-md-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .flex-col-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .flex-col-md-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .flex-col-md-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .flex-col-md-12 {
    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 {
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    justify-content: center;
    text-align: center;
  }
  .end-md {
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    align-items: flex-start;
  }
  .middle-md {
    align-items: center;
  }
  .bottom-md {
    align-items: flex-end;
  }
  .around-md {
    justify-content: space-around;
  }
  .between-md {
    justify-content: space-between;
  }
  .first-md {
    order: -1;
  }
  .last-md {
    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;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .flex-col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .flex-col-lg-1 {
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .flex-col-lg-2 {
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .flex-col-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }
  .flex-col-lg-4 {
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .flex-col-lg-5 {
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .flex-col-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }
  .flex-col-lg-7 {
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .flex-col-lg-8 {
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .flex-col-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }
  .flex-col-lg-10 {
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .flex-col-lg-11 {
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .flex-col-lg-12 {
    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 {
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    align-items: flex-start;
  }
  .middle-lg {
    align-items: center;
  }
  .bottom-lg {
    align-items: flex-end;
  }
  .around-lg {
    justify-content: space-around;
  }
  .between-lg {
    justify-content: space-between;
  }
  .first-lg {
    order: -1;
  }
  .last-lg {
    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 {
  transition: all 0s;
}

.tns-slider > .tns-item {
  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%;
  transition: transform 0s, opacity 0s;
}

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

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

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

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

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

.tns-ah {
  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: -moz-calc(100% * 70 / 3);
  width: 2333.3333333333%;
  position: absolute;
  right: 0;
}

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

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


.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  backface-visibility: hidden;
  outline: 0;
}

.glightbox-container.inactive {
  display: none;
}

.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}

.glightbox-container .gslider {
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex !important;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}

.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}

.glightbox-container .gslide-inner-content {
  width: 100%;
}

.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}

.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
  flex-direction: column;
}

.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}

.gslide iframe, .gslide video {
  outline: 0 !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  touch-action: auto;
}

.gslide:not(.current) {
  pointer-events: none;
}

.gslide-image {
  align-items: center;
}

.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: 0;
  border: none;
  -webkit-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  object-fit: cover;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}

.desc-bottom .gslide-image img, .desc-top .gslide-image img {
  width: auto;
}

.desc-left .gslide-image img, .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}

.gslide-image img.zoomable {
  position: relative;
}

.gslide-image img.dragging {
  cursor: grabbing !important;
  transition: none;
}

.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}

.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}

.gslide-video .gvideo-wrapper {
  width: 100%;
  margin: auto;
}

.gslide-video::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}

.gslide-video.playing::before {
  display: none;
}

.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}

.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}

.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}

.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}

.gslide-inline .dragging {
  cursor: grabbing !important;
  transition: none;
}

.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}

.gslide-external {
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}

.gslide-media {
  display: flex;
  width: auto;
}

.zoomed .gslide-media {
  box-shadow: none !important;
}

.desc-bottom .gslide-media, .desc-top .gslide-media {
  margin: 0 auto;
  flex-direction: column;
}

.gslide-description {
  position: relative;
  flex: 1 0 100%;
}

.gslide-description.description-left, .gslide-description.description-right {
  max-width: 100%;
}

.gslide-description.description-bottom, .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}

.gslide-description p {
  margin-bottom: 12px;
}

.gslide-description p:last-child {
  margin-bottom: 0;
}

.zoomed .gslide-description {
  display: none;
}

.glightbox-button-hidden {
  display: none;
}

.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: 700;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}

.gdesc-open .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 0.4;
}

.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
  transition: opacity 0.5s ease;
  opacity: 1;
}

.greset {
  transition: all 0.3s ease;
}

.gabsolute {
  position: absolute;
}

.grelative {
  position: relative;
}

.glightbox-desc {
  display: none !important;
}

.glightbox-open {
  overflow: hidden;
}

.gloader {
  height: 25px;
  width: 25px;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}

.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}

.glightbox-mobile .goverlay {
  background: #000;
}

.gclose, .gnext, .gprev {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.gclose svg, .gnext svg, .gprev svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}

.gclose.disabled, .gnext.disabled, .gprev.disabled {
  opacity: 0.1;
}

.gclose .garrow, .gnext .garrow, .gprev .garrow {
  stroke: #fff;
}

.gbtn.focused {
  outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
  opacity: 0;
}

.glightbox-closing .gclose, .glightbox-closing .gnext, .glightbox-closing .gprev {
  opacity: 0 !important;
}

.glightbox-clean .gslide-description {
  background: #fff;
}

.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}

.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: 400;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}

.glightbox-clean .gslide-video {
  background: #000;
}

.glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}

.glightbox-clean .gclose path, .glightbox-clean .gnext path, .glightbox-clean .gprev path {
  fill: #fff;
}

.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}

.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}

.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}

.glightbox-clean .gclose:hover {
  opacity: 1;
}

.gfadeIn {
  animation: gfadeIn 0.5s ease;
}

.gfadeOut {
  animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
  animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
  animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
  animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
  animation: gslideInRight 0.3s ease;
}

.gzoomIn {
  animation: gzoomIn 0.5s ease;
}

.gzoomOut {
  animation: gzoomOut 0.5s ease;
}
@keyframes lightboxLoader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    transform: translate3d(60%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image, .glightbox-container .ginner-container.desc-top .gslide-image img {
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left, .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner, .glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gclose, .glightbox-clean .gnext, .glightbox-clean .gprev {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gclose:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
/* ============ BASE ============ */
/* _variables.scss */
/* ============ Colors ============ */
/* ============ Fonts ============ */
/* ============ Breakpoints ============ */
.hidden {
  visibility: hidden !important;
  opacity: 0 !important;
  display: none !important;
}

/* _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: #0B5991;
  color: white;
}

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

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

.clearfix::after {
  clear: both;
}

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

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

*:target:focus {
  outline: none;
}

hr {
  width: 100%;
}

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

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

/* _typography.scss */
/* ============ FONTS ============ */
/* ============ TAGS ============ */
a,
ul,
ol,
li,
blockquote,
p,
div {
  font-family: "Raleway", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0.6em 0;
  letter-spacing: 0.03em;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "Antonio", sans-serif;
}

h1 {
  font-size: 4em;
  line-height: 1.2em;
}

h2 {
  font-size: 3em;
  line-height: 1.2em;
}

h3 {
  font-size: 2.5em;
}

h4 {
  font-size: 2em;
}

h5 {
  font-size: 2em;
}

h6 {
  font-size: 20px;
}

p {
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 2em;
}

ul,
ol {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
}
ul li,
ol li {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #003C6F;
}
a:hover {
  color: #318722;
  text-decoration: underline;
}

address {
  line-height: 1.7;
  font-size: 16px;
  font-family: "Raleway", sans-serif;
}

blockquote {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.blue {
  color: #0B5991;
}

.ltblue {
  color: #3EB7D4;
}

.dkblue {
  color: #003C6F;
}

.green {
  color: #318722;
}

.ltgreen {
  color: #91E256;
}

hr {
  background: #3EB7D4;
  border: 1px solid #3EB7D4;
  margin: 30px 0;
}

blockquote {
  width: 100%;
  margin: 10px 0;
  padding: 15px;
  border: 1px solid #3EB7D4;
  border-radius: 10px;
  font-family: "Antonio", sans-serif;
  font-weight: normal;
  font-size: 17px;
  color: #003C6F;
  line-height: 1.7;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  blockquote {
    width: 50%;
    margin: 15px 0 15px 15px;
  }
}
blockquote:after, blockquote:before {
  content: "";
  position: absolute;
  font-family: "Antonio", sans-serif;
  font-weight: bold;
  font-size: 80px;
  background: url("https://assets.speakcdn.com/assets/2777/quote.png") no-repeat center;
  background-size: cover;
  height: 50px;
  width: 50px;
}
blockquote:before {
  top: -20px;
  left: -20px;
}
blockquote:after {
  bottom: -20px;
  right: -20px;
  transform: rotate(180deg);
}

.bg-blue {
  background: #0B5991;
}

.bg-ltblue {
  background: #3EB7D4;
}

.bg-dkblue {
  background: #003C6F;
}

.bg-green {
  background: #318722;
}

.bg-ltgreen {
  background: #91E256;
}

.bg-fade-ltblue {
  background: rgba(63, 184, 212, 0.1);
}

.bg-fade-green {
  background: rgba(50, 135, 34, 0.1);
}

ul.col2 {
  column-count: 1;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  ul.col2 {
    column-count: 2;
  }
}
ul.col2 li {
  text-align: center;
  list-style: none;
}
@media only screen and (min-width: 1024px) {
  ul.col2 li {
    text-align: left;
  }
}

ul.col4 {
  column-count: 1;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  ul.col4 {
    column-count: 4;
  }
}
ul.col4 li {
  text-align: center;
  list-style: none;
}
@media only screen and (min-width: 1024px) {
  ul.col4 li {
    text-align: left;
  }
}

.johnhandcock {
  background: rgba(63, 184, 212, 0.1);
}

.blue-container {
  padding: 30px;
  background: #0B5991;
  border-radius: 20px 0 20px;
}
.blue-container p,
.blue-container h1,
.blue-container h3,
.blue-container h4,
.blue-container h5,
.blue-container h6,
.blue-container h2 {
  color: white;
}
.blue-container p.blue,
.blue-container h1.blue,
.blue-container h3.blue,
.blue-container h4.blue,
.blue-container h5.blue,
.blue-container h6.blue,
.blue-container h2.blue {
  color: #0B5991;
}
.blue-container p.ltblue,
.blue-container h1.ltblue,
.blue-container h3.ltblue,
.blue-container h4.ltblue,
.blue-container h5.ltblue,
.blue-container h6.ltblue,
.blue-container h2.ltblue {
  color: #3EB7D4;
}
.blue-container p.dkblue,
.blue-container h1.dkblue,
.blue-container h3.dkblue,
.blue-container h4.dkblue,
.blue-container h5.dkblue,
.blue-container h6.dkblue,
.blue-container h2.dkblue {
  color: #003C6F;
}
.blue-container p.green,
.blue-container h1.green,
.blue-container h3.green,
.blue-container h4.green,
.blue-container h5.green,
.blue-container h6.green,
.blue-container h2.green {
  color: #318722;
}
.blue-container p.ltgreen,
.blue-container h1.ltgreen,
.blue-container h3.ltgreen,
.blue-container h4.ltgreen,
.blue-container h5.ltgreen,
.blue-container h6.ltgreen,
.blue-container h2.ltgreen {
  color: #91E256;
}

.templatecontent.pb0 {
  padding-bottom: 0 !important;
}
.templatecontent.pt0 {
  padding-top: 0 !important;
}

/* _buttons.scss */
.btn {
  border: 2px solid;
  padding: 10px 40px;
  font-size: 20px;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  transition: ease 0.3s;
}
.btn:hover {
  text-decoration: none;
}
.btn--blue {
  border-color: #3EB7D4;
  background: rgba(45, 76, 115, 0.65);
}
.btn--blue:hover {
  background: #003c6f;
}
.btn--ltblue {
  background: #3EB7D4;
}
.btn--ltblue:hover {
  color: #3EB7D4;
  background: #003C6F;
  border-color: #3EB7D4;
}
.btn--green {
  border-color: #91E256;
  background: rgba(40, 88, 38, 0.65);
}
.btn--green:hover {
  background: white;
  color: #91E256;
}

.arrow_btn {
  position: relative;
  color: #003C6F;
  font-weight: bold;
}
.arrow_btn:after {
  content: " >>";
  font-size: 12px;
  position: absolute;
  font-weight: bold;
  top: 50%;
  right: 0;
  transform: translate(120%, -50%);
  margin-bottom: 10px;
}

/* ============ SITEWRENCH ============ */
.page-alert-message {
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 0;
  overflow-y: scroll;
  transform: translate(-50%, -50%);
  top: 50%;
  margin: 0;
  height: 80vh;
  width: 80vw;
  padding: 30px 20px 20px;
}
@media (min-width: 767px) {
  .page-alert-message {
    width: 50vw;
  }
}
.page-alert-message div.controls {
  position: absolute;
  top: 0;
  right: 15px;
  width: 30px;
  height: 30px;
  border: 2px solid #0B5991;
  border-radius: 50%;
  transition: 0.3s ease;
}
.page-alert-message div.controls:before, .page-alert-message div.controls:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 2px;
  width: 70%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #0B5991;
  border-radius: 3px;
}
.page-alert-message div.controls:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.page-alert-message div.controls input {
  height: 100%;
  width: 100%;
  border: none;
  background: transparent;
  opacity: 0;
}
.page-alert-message div.controls:hover {
  border-color: #3EB7D4;
}
.page-alert-message div.controls:hover:before, .page-alert-message div.controls:hover:after {
  background: #3EB7D4;
}

/* _forms.scss */
.formmodule {
  display: block;
  position: relative;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-6px);
  }
  20%, 40%, 60%, 80% {
    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);
}

#default-main .formmodule .swform > div:first-of-type {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-gap: 20px;
}
@media only screen and (min-width: 1024px) {
  #default-main .formmodule .swform > div:first-of-type {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
#default-main .formmodule .swform > div:first-of-type .swformfield {
  width: 100%;
}
#default-main .formmodule .swform > div:first-of-type .swformfield.swformfield--textarea {
  grid-column: span 1;
}
@media only screen and (min-width: 1024px) {
  #default-main .formmodule .swform > div:first-of-type .swformfield.swformfield--textarea {
    grid-column: span 2;
  }
}
#default-main .formmodule .swform > div:first-of-type .swformfield.swformfield--textarea label {
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #003C6F;
}
#default-main .formmodule .swform > div:first-of-type .swformfield label {
  width: 100%;
  display: none;
}
#default-main .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper {
  width: 100%;
}
#default-main .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type=text],
#default-main .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type=email],
#default-main .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type=tel],
#default-main .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper textarea {
  width: 100%;
  border-color: #3EB7D4;
  background: #ebebeb;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #003C6F;
  height: 250px;
}
#default-main .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type=text]:not(textarea),
#default-main .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type=email]:not(textarea),
#default-main .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type=tel]:not(textarea),
#default-main .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper textarea:not(textarea) {
  padding: 10px 15px;
  height: auto;
}
#default-main .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type=text]::placeholder,
#default-main .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type=email]::placeholder,
#default-main .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type=tel]::placeholder,
#default-main .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper textarea::placeholder {
  font-weight: 600;
  color: #003C6F;
}
#default-main .formmodule .swform > div:first-of-type .swformfieldlist.swformfield--checkboxlists .swformfieldlist__label {
  color: #0B5991 !important;
  font-weight: bold;
}
#default-main .formmodule .swform > div:first-of-type .swformfieldlist.swformfield--checkboxlists label {
  font-size: 16px;
  display: block !important;
}
#default-main .formmodule .swform > div:first-of-type .swformfieldlist.swformfield--checkboxlists .swformfieldlist__helptxt {
  font-size: 16px;
}
#default-main .formmodule .swform > div:first-of-type .swformfieldlist.swformfield--checkboxlists .swformfield.swformfield--checkbox {
  display: flex;
  margin: 20px 0;
}
#default-main .formmodule .swform > div:first-of-type .swformfieldlist.swformfield--checkboxlists .swformfield.swformfield--checkbox div.swformfieldwrapper input {
  color: black;
}
#default-main .formmodule .swform .swformactions .swformsubmit {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  #default-main .formmodule .swform .swformactions .swformsubmit {
    justify-content: flex-end;
  }
}
#default-main .formmodule .swform .swformactions .swformsubmit button.swformsubmit__btn {
  background: #3EB7D4;
  color: #003C6F;
  border: 1px solid #003C6F;
  padding: 10px 60px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
}

body.mailchimp-body #mc_embed_signup {
  background: transparent;
  width: 100%;
}
body.mailchimp-body #mc_embed_signup form {
  margin: 0;
}
body.mailchimp-body #mc_embed_signup form #mc_embed_signup_scroll .clear input:hover {
  background: white;
}
body.mailchimp-body #mc_embed_signup h2 {
  display: none;
}
body.mailchimp-body #mc_embed_signup .button {
  height: inherit;
}

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

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

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

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

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

.sw-accordion h3.ui-accordion-header {
  background: #eee;
  border-bottom: 2px solid #eee;
  border-radius: 2px !important;
  color: #0B5991;
  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;
  }
}

.chart-wrapper {
  margin: 0 auto 2em auto;
  padding: 2em 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .chart-wrapper {
    flex-direction: column;
  }
}
.chart-wrapper .custom-chart {
  max-width: 250px;
  aspect-ratio: 1/1;
  height: auto;
  width: 100%;
  margin: 0;
  position: relative;
  right: -100px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .chart-wrapper .custom-chart {
    position: static;
    margin: 0 auto;
  }
}
.chart-wrapper .chart-info {
  padding: 20px 40px 20px 120px;
  border-radius: 4px;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .chart-wrapper .chart-info {
    padding: 20px;
    margin: 0 auto;
  }
}
.chart-wrapper .chart-info .chart-heading {
  color: #0B5991;
}
.chart-wrapper .chart-info .data-item {
  margin-bottom: 1em;
}
.chart-wrapper .chart-info .data-item .value {
  display: block;
  font-size: 2.5em;
  font-weight: bold;
}
.chart-wrapper .chart-info .data-item .name {
  font-size: 1.5em;
  display: block;
  color: #0B5991;
}

.pp-media-archive {
  display: flex;
  position: relative;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .pp-media-archive {
    flex-direction: column;
  }
}
.pp-media-archive .filter-side {
  display: block;
  width: 100%;
}
@media (max-width: 768px) {
  .pp-media-archive .filter-side {
    margin-bottom: 50px;
  }
}
@media (min-width: 768px) {
  .pp-media-archive .filter-side {
    padding-right: 25px;
    flex-basis: 200px;
    position: sticky;
    top: 200px;
  }
}
.pp-media-archive .filter-side .filter-group {
  transition: all 0.33s ease;
  position: relative;
}
.pp-media-archive .filter-side .filter-group:before {
  width: 10px;
  height: 23px;
  right: calc(100% + 8px);
  top: 7px;
  background: #0B5991;
  position: absolute;
  content: "";
  opacity: 0;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.pp-media-archive .filter-side .filter-group:not(:first-child) {
  margin-top: 0px;
}
.pp-media-archive .filter-side .filter-group h5 {
  margin: 0;
  padding: 10px 0;
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pp-media-archive .filter-side .filter-group h5 span {
  display: inline-block;
  width: 15px;
  height: 15px;
  position: relative;
}
.pp-media-archive .filter-side .filter-group h5 span:before, .pp-media-archive .filter-side .filter-group h5 span:after {
  width: 100%;
  height: 2px;
  background: black;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  content: "";
  position: absolute;
  transition: all 0.33s ease;
}
.pp-media-archive .filter-side .filter-group h5 span:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.pp-media-archive .filter-side .filter-group h5 + * {
  max-height: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.33s ease;
  margin-bottom: 0;
}
.pp-media-archive .filter-side .filter-group ul {
  margin: 0;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pp-media-archive .filter-side .filter-group ul li {
  display: block;
  cursor: pointer;
}
.pp-media-archive .filter-side .filter-group ul li.active {
  font-weight: bold;
}
.pp-media-archive .filter-side .filter-group ul li:hover {
  color: #318722;
}
.pp-media-archive .filter-side .filter-group select {
  width: 100%;
  min-height: 35px;
  outline: none;
  border: 2px solid #000;
  padding: 8px;
}
.pp-media-archive .filter-side .filter-group.input-search {
  opacity: 1 !important;
}
.pp-media-archive .filter-side .filter-group.input-search input {
  border: none;
  border-bottom: 2px solid #000;
  display: block;
  width: 100%;
  outline: none;
  margin: 0 0 25px 0;
  min-height: 40px;
  position: relative;
  padding: 8px 0px;
}
.pp-media-archive .filter-side .filter-group.input-search input:hover, .pp-media-archive .filter-side .filter-group.input-search input:focus, .pp-media-archive .filter-side .filter-group.input-search input:focus-within {
  border-color: #3EB7D4;
}
.pp-media-archive .filter-side .filter-group:not(.active) {
  opacity: 0.5;
}
.pp-media-archive .filter-side .filter-group:not(.active):hover {
  opacity: 1;
}
.pp-media-archive .filter-side .filter-group:not(.active) select {
  display: none;
}
.pp-media-archive .filter-side .filter-group.active h5 span:after {
  width: 0;
}
.pp-media-archive .filter-side .filter-group.active h5 + * {
  max-height: 300px;
  overflow: auto;
  opacity: 1;
  visibility: visible;
  margin-bottom: 15px;
}
.pp-media-archive .filter-side .filter-group.selected {
  opacity: 1;
}
.pp-media-archive .filter-side .filter-group.selected:before {
  opacity: 1;
}
.pp-media-archive .filter-side #clearAll {
  display: block;
  padding: 6px 10px;
  font-size: 11px;
  background: black;
  color: white;
  letter-spacing: 1px;
  max-height: 35px;
  transition: all 0.33s ease;
  padding: 13px 10px;
  margin-bottom: 10px;
  cursor: pointer;
}
.pp-media-archive .filter-side #clearAll:hover {
  background: #318722;
}
.pp-media-archive .filter-side #clearAll.hiding {
  padding: 0 10px;
  max-height: 0px;
}
.pp-media-archive .list-side {
  flex-basis: calc(100% - 250px);
  overflow: hidden;
}
.pp-media-archive .list-side ul.media-archive-list {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  gap: 20px 10px;
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable {
  align-items: stretch;
  margin: 0;
  flex-basis: 100%;
}
@media (min-width: 1024px) {
  .pp-media-archive .list-side ul.media-archive-list > li.searchable {
    flex-basis: calc(50% - 5px);
  }
}
@media (min-width: 1440px) {
  .pp-media-archive .list-side ul.media-archive-list > li.searchable {
    flex-basis: calc(33.3333333333% - 10px);
  }
}
@media (min-width: 1600px) {
  .pp-media-archive .list-side ul.media-archive-list > li.searchable {
    flex-basis: calc(25% - 8px);
  }
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable .m-img-link {
  display: block;
  width: 100%;
  height: 160px;
  position: relative;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable .m-img-link .lazybg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center 20%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: all 0.33s ease;
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable .m-img-link:hover .lazybg {
  transform: scale(1.1);
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.25);
  border-top: none;
  padding: 15px 10px 20px;
  border-radius: 0 0 8px 8px;
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper p, .pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper h4 {
  margin: 0;
  line-height: 1;
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper p.m-date, .pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper h4.m-date {
  font-size: 13px;
  font-style: italic;
  opacity: 0.9;
  text-align: right;
  margin-top: 25px;
  padding-top: 15px;
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper p.m-series, .pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper h4.m-series {
  display: block;
  margin: 0px 0 0;
  color: #000;
  cursor: pointer;
  opacity: 0.6;
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper p.m-series:hover, .pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper h4.m-series:hover {
  color: #318722;
  opacity: 1;
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper h4 {
  display: block;
  text-transform: none;
  position: relative;
  line-height: 1.1;
  font-size: 18px;
  margin: 0 0 15px 0;
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper h4 a {
  text-decoration: none;
  font-size: inherit;
  font-weight: 700;
  position: relative;
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper ul.tags-list {
  display: flex;
  margin: 25px 0 -30px;
  padding: 0;
  list-style: none;
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper ul.tags-list:before {
  position: relative;
  content: "\f02c";
  font-family: fontawesome;
  margin: 3px 10px 0px 0;
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper ul.tags-list li {
  margin: 0 8px 8px 0;
  border-radius: 8px;
  background: #318722;
  padding: 5px 12px;
  font-size: 12px;
  color: white;
  font-weight: 600;
  display: inline-block;
  cursor: pointer;
  transition: all 0.33s ease;
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable .meta-wrapper ul.tags-list li:hover {
  background: black;
  color: white;
}
.pp-media-archive .list-side ul.media-archive-list > li.searchable.series-blocked, .pp-media-archive .list-side ul.media-archive-list > li.searchable.year-blocked, .pp-media-archive .list-side ul.media-archive-list > li.searchable.tag-blocked {
  display: none;
}

#media-archive-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  transition: all 0.33s ease;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#media-archive-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
}
#media-archive-modal.active .modal-content {
  animation: fadeInDown 0.33s ease forwards;
}
#media-archive-modal .modal-background {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: zoom-out;
}
#media-archive-modal .modal-content {
  height: 500px;
  max-height: 90vh;
  width: 800px;
  max-width: calc(100% - 30px);
  background: white;
  z-index: 1;
  display: flex;
  opacity: 0;
  box-shadow: 0 20px 45px -8px rgba(0, 0, 0, 0.65);
  border-radius: 8px;
}
@media (max-width: 767px) {
  #media-archive-modal .modal-content {
    flex-direction: column;
  }
}
#media-archive-modal .modal-content .modal-close {
  position: absolute;
  bottom: calc(100% + 2px);
  right: 0;
}
#media-archive-modal .modal-content .modal-close span {
  color: white;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 25px 25px 0;
  cursor: pointer;
  transition: all 0.33s ease;
}
#media-archive-modal .modal-content .modal-close span:before, #media-archive-modal .modal-content .modal-close span:after {
  content: "";
  position: absolute;
  left: calc(100% - 10px);
  background: white;
  width: 2px;
  height: 19px;
  top: 50%;
  transition: all 0.33s ease;
  transform: translateY(-50%) rotate(45deg);
}
#media-archive-modal .modal-content .modal-close span:after {
  transform: translateY(-50%) rotate(-45deg);
}
#media-archive-modal .modal-content .modal-close span:hover {
  letter-spacing: 3px;
}
#media-archive-modal .modal-content .modal-close span:hover:before {
  transform: translateY(-50%) rotate(-45deg);
}
#media-archive-modal .modal-content .modal-close span:hover:after {
  transform: translateY(-50%) rotate(45deg);
}
#media-archive-modal .modal-content .modal-video {
  flex-basis: 45%;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  #media-archive-modal .modal-content .modal-video {
    border-radius: 8px 0 0 8px;
  }
}
#media-archive-modal .modal-content .modal-video iframe {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
#media-archive-modal .modal-content .modal-meta {
  flex-basis: 55%;
  padding: 25px;
  height: 100%;
  overflow: auto;
}
#media-archive-modal .modal-content .modal-meta .modal-date {
  text-align: center;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  font-style: italic;
}
#media-archive-modal .modal-content .modal-meta .modal-title {
  text-align: center;
  margin: 0;
}
#media-archive-modal .modal-content .modal-meta .modal-series {
  text-align: center;
  margin: 30px 0 25px;
}
#media-archive-modal .modal-content .modal-meta .modal-series:not(:empty):before {
  content: "Series";
  width: 100%;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}
#media-archive-modal .modal-content .modal-meta .modal-description {
  border-top: 1px dashed rgba(0, 0, 0, 0.25);
}
#media-archive-modal .modal-content .modal-meta ul.modal-tags {
  text-align: center;
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
#media-archive-modal .modal-content .modal-meta ul.modal-tags:not(:empty):before {
  content: "\f02c";
  font-family: fontawesome;
  text-align: center;
  flex-basis: 100%;
}
#media-archive-modal .modal-content .modal-meta ul.modal-tags li:not(:last-child):after {
  content: ",";
  margin-right: 7px;
}

.pp-media-archive-detail .video-meta {
  margin-top: 50px;
}
.pp-media-archive-detail .video-meta h2 {
  margin-bottom: 0;
}
.pp-media-archive-detail .video-meta .video-date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}
.pp-media-archive-detail .video-meta ul.video-tags {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.pp-media-archive-detail .video-meta ul.video-tags:not(:empty):before {
  content: "\f02c";
  font-family: fontawesome;
  text-align: left;
  display: block;
  flex-basis: 100%;
  margin-bottom: 10px;
}
.pp-media-archive-detail .video-meta ul.video-tags li {
  opacity: 0.5;
}
.pp-media-archive-detail .video-meta ul.video-tags li:not(:last-child):after {
  content: ",";
  margin-right: 7px;
  opacity: 1;
}

.pp-photo-gallery {
  margin: 25px 0 40px;
}
.pp-photo-gallery > ul {
  display: none;
}
.pp-photo-gallery .tns-outer {
  position: relative;
}
.pp-photo-gallery .tns-outer .tns-controls button {
  opacity: 0.8;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  transition: all 0.33s ease;
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.25);
  border: 1px solid black;
}
.pp-photo-gallery .tns-outer .tns-controls button[data-controls=prev] {
  left: -20px;
}
.pp-photo-gallery .tns-outer .tns-controls button[data-controls=prev] div {
  transform: rotate(90deg);
}
.pp-photo-gallery .tns-outer .tns-controls button[data-controls=next] {
  right: -20px;
}
.pp-photo-gallery .tns-outer .tns-controls button[data-controls=next] div {
  transform: rotate(-90deg);
}
.pp-photo-gallery .tns-outer .tns-controls button div {
  width: 100%;
  height: 100%;
  background: url("/sitefiles/2777/images/ui/arrow-dark.svg") no-repeat center;
  background-size: 30px;
  transition: all 0.33s ease;
}
.pp-photo-gallery .tns-outer .tns-controls button:hover {
  opacity: 0.9;
}
.pp-photo-gallery .tns-outer .tns-controls button:active div {
  background-size: 25px;
}
.pp-photo-gallery .tns-outer .tns-ovh .tns-inner ul.gallery-list {
  padding: 0;
  list-style: none;
  margin: 0;
}
.pp-photo-gallery .tns-outer .tns-ovh .tns-inner ul.gallery-list li a {
  position: relative;
  display: block;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.pp-photo-gallery .tns-outer .tns-ovh .tns-inner ul.gallery-list li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  position: absolute;
  transition: all 0.33s ease;
  transform: scale(1);
}
.pp-photo-gallery .tns-outer .tns-ovh .tns-inner ul.gallery-list li a .caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 11px;
  font-style: italic;
  transition: all 0.33s ease;
  letter-spacing: 0.8px;
  opacity: 1;
}
.pp-photo-gallery .tns-outer .tns-ovh .tns-inner ul.gallery-list li a:hover img {
  transform: scale(1.05);
}
.pp-photo-gallery .tns-outer .tns-ovh .tns-inner ul.gallery-list li a:hover .caption {
  bottom: -20px;
  opacity: 0;
}
.pp-photo-gallery .tns-outer .tns-nav {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}
.pp-photo-gallery .tns-outer .tns-nav button {
  opacity: 0.75;
  border: none;
  margin: 0 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-appearance: none;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.8);
}
.pp-photo-gallery .tns-outer .tns-nav button.tns-nav-active {
  background: black;
  opacity: 1;
}
.pp-photo-gallery .tns-outer .tns-nav button:hover {
  opacity: 1;
}

/* ============ COMPONENTS ============ */
/* _header.scss */
header {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: auto;
  background: url("/sitefiles/2777/images/blue-grain.jpeg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  top: 0;
}
header.active {
  z-index: 30;
}
header .utility-nav {
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  max-width: 100%;
  justify-content: flex-end;
  padding: 1rem;
}
header .utility-nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
header .utility-nav ul li {
  display: inline-block;
  margin-left: 10px;
}
header .utility-nav ul li a {
  color: #fff;
  font-size: 16px;
  font-family: "Antonio", sans-serif;
  text-transform: uppercase;
}
header .header-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo-wrap {
  width: 15%;
  padding: 40px 0 40px 20px;
  position: relative;
  z-index: 1;
}
header .logo-wrap .logo-link .logo {
  max-width: 230px;
}
header .cityscape {
  position: absolute;
  bottom: 0;
  left: 0;
  display: none;
}
@media only screen and (min-width: 768px) {
  header .cityscape {
    display: block;
  }
}
header .flex-nav {
  width: 85%;
  display: none;
  justify-content: flex-end;
}
header .flex-nav #mainnav li#mn-home {
  display: none;
}
@media only screen and (min-width: 1024px) {
  header .flex-nav {
    display: flex;
  }
}
header #sidecar-toggle {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0 20px;
  width: 30vw;
  background: #3EB7D4;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  transform: all 1s ease;
}
header #sidecar-toggle:before, header #sidecar-toggle:after {
  display: block;
  content: "";
  width: 60px;
  height: 5px;
  background: #003c6f;
  position: absolute;
  z-index: 30;
  transition: transform 200ms;
}
header #sidecar-toggle:before {
  top: 40px;
}
header #sidecar-toggle:after {
  top: 85px;
}
header #sidecar-toggle span {
  color: #003C6F;
  font-size: 20px;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
}
header #sidecar-toggle.active {
  right: 70vw;
  z-index: 9999;
  transform: all 1s ease;
}
header #sidecar-toggle.active span {
  display: none;
}
header #sidecar-toggle.active:before, header #sidecar-toggle.active:after {
  top: 50% !important;
}
header #sidecar-toggle.active:before {
  transform: rotate(45deg);
}
header #sidecar-toggle.active:after {
  transform: rotate(-45deg);
}

@media (max-width: 1155px) {
  header #mainnav > li > a {
    padding: 45px 10px !important;
  }
}
/* _flex-nav.scss */
nav.flex-nav {
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  padding: 0;
}
nav.flex-nav ul#mainnav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav.flex-nav ul#mainnav li {
  flex: 0 1 auto;
}
nav.flex-nav ul#mainnav li a {
  display: flex;
}
nav.flex-nav ul#mainnav li a:hover {
  background: #ddd;
}
nav.flex-nav ul#mainnav li ul {
  display: none;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 2000;
}
nav.flex-nav ul#mainnav li ul > li {
  display: block;
  position: relative;
  white-space: nowrap;
  z-index: 999;
}
nav.flex-nav ul#mainnav li ul > li a {
  background: #eee;
  display: block;
  padding: 8px 12px;
  width: 100%;
}
nav.flex-nav ul#mainnav li ul > li ul {
  left: 100%;
  top: 0;
}
nav.flex-nav ul#mainnav a {
  text-decoration: none;
}
nav.flex-nav ul#mainnav > li > a.current {
  color: #3EB7D4 !important;
  background: #003C6F !important;
}
nav.flex-nav ul#mainnav > li > a.current:after {
  display: block;
}
nav.flex-nav ul#mainnav > li:hover > ul,
nav.flex-nav ul#mainnav > li > ul > li:hover > ul {
  display: flex;
}

.flex-nav {
  height: 100%;
}
.flex-nav div:first-of-type {
  height: 100%;
}
.flex-nav #mainnav {
  height: 100%;
}
.flex-nav #mainnav > li > a {
  position: relative;
  color: #fff;
  padding: 45px 20px;
  font-size: 22px;
  font-family: "Antonio", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  height: 100%;
}
.flex-nav #mainnav > li > a:after {
  content: "";
  position: absolute;
  width: 80%;
  height: 4px;
  background: #3EB7D4;
  top: 65%;
  left: 50%;
  transform: translate(-50%, 0%);
  display: none;
}
.flex-nav #mainnav > li:hover {
  background: #003C6F !important;
}
.flex-nav #mainnav > li:hover > a {
  color: #3EB7D4 !important;
  background: #003C6F !important;
}
.flex-nav #mainnav > li:hover > a:after {
  display: block;
}
.flex-nav #mainnav > li > ul {
  padding-bottom: 20px !important;
  background: #003C6F;
  width: auto !important;
}
.flex-nav #mainnav > li > ul > li {
  background: #003C6F;
}
.flex-nav #mainnav > li > ul > li > a {
  background: #003C6F !important;
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  width: auto;
}
.flex-nav #mainnav > li > ul > li > a:hover {
  color: #3EB7D4;
}

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

.body-overlay {
  background: rgba(0, 0, 0, 0.8);
  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-overlay {
  background: rgba(62, 183, 212, 0.8);
  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;
}
.sidecar-overlay.active {
  height: 100%;
  opacity: 0.6;
  transition-delay: 0.2s !important;
  transition: opacity 0.55s ease;
  visibility: visible;
  width: 100%;
  z-index: 10;
}

#sidecar-toggle {
  display: flex;
}
@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: -70vw;
  text-align: left;
  top: 0;
  transition: right 0.44s ease;
  width: 70vw;
  z-index: 99999 !important;
}
#sidecar #close-sidecar {
  background: none;
  border: 2px solid black;
  border-radius: 4px;
  color: black;
  font: bold 1.6rem sans-serif;
  padding: 12px 48px 12px 24px;
  position: absolute;
  top: 16px;
  right: 16px;
}
#sidecar #close-sidecar::after {
  content: "";
  height: 16px;
  pointer-events: none;
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
}
#sidecar ul#mainnav {
  right: 0px;
}

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

/* ============ Sidecar Menu ============ */
nav#sidecar ul#mainnav {
  -webkit-padding-start: 0px;
  background: transparent;
  display: block;
  height: auto;
  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;
  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;
  padding: 8px 0px 8px 16px;
}
nav#sidecar ul#mainnav li ul.active {
  display: block;
  float: none;
  max-height: 500px;
  transition: max-height 0.44s ease-in;
}
nav#sidecar ul#mainnav li a {
  display: inline-block;
  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/2777/images/ui/arrow-light.svg") center/50% no-repeat;
  cursor: pointer;
  display: block;
  height: 40px;
  padding: 16px;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
}
nav#sidecar ul#mainnav li a.expand.active {
  transform: rotate(180deg);
}

#sidecar {
  background: #003C6F;
}
#sidecar #mainnav {
  margin: 20px 0;
}
#sidecar #mainnav > li > a {
  font-size: 22px;
  font-family: "Antonio", sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  padding: 18px 16px !important;
}
#sidecar #mainnav > li a.expand {
  height: 64px !important;
  width: 64px !important;
}
#sidecar #mainnav > li ul li a {
  color: white;
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  padding: 13px 0 13px 16px !important;
}

/* _footer.scss */
footer {
  background: #003C6F;
}
footer .footer-wrapper {
  display: flex;
  flex-direction: column;
  padding: 20px 0 0;
}
@media only screen and (min-width: 1024px) {
  footer .footer-wrapper {
    flex-direction: row;
  }
}
footer .footer-wrapper a {
  text-decoration: none;
}
footer .footer-wrapper > div.sw-public-page-part {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  footer .footer-wrapper > div.sw-public-page-part {
    width: 70%;
  }
}
footer .footer-wrapper > div.sw-public-page-part .m-footer {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  footer .footer-wrapper > div.sw-public-page-part .m-footer {
    flex-direction: row;
  }
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  footer .footer-wrapper > div.sw-public-page-part .m-footer__info {
    width: 30%;
  }
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__info a {
  text-align: center;
  color: white;
}
@media only screen and (min-width: 1024px) {
  footer .footer-wrapper > div.sw-public-page-part .m-footer__info a {
    text-align: unset;
  }
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__info a:hover {
  color: #3EB7D4;
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__info a img {
  width: 50%;
}
@media only screen and (min-width: 1024px) {
  footer .footer-wrapper > div.sw-public-page-part .m-footer__info a img {
    width: 85%;
  }
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__location {
  padding: 0;
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__location li {
  color: white;
  list-style-type: none;
  margin: 0 0 10px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  footer .footer-wrapper > div.sw-public-page-part .m-footer__location li {
    text-align: unset;
  }
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__quick-links {
  display: none;
  flex-wrap: wrap;
  padding: 0 30px;
}
@media only screen and (min-width: 1024px) {
  footer .footer-wrapper > div.sw-public-page-part .m-footer__quick-links {
    width: 70%;
    display: flex;
  }
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__quick-link {
  width: 50%;
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__quick-link h5 {
  margin: 0;
  text-transform: none;
  line-height: 15px;
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__quick-link h5 a {
  color: white;
  font-size: 18px;
  font-weight: bold !important;
  font-family: "Raleway", sans-serif;
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__quick-link h5 a:hover {
  text-decoration: none;
  color: #3EB7D4;
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__quick-link ul {
  margin: 0;
  padding: 0;
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__quick-link ul li {
  list-style-type: none;
  margin: 7.5px 0;
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__quick-link ul li a {
  color: white;
  font-size: 14px;
}
footer .footer-wrapper > div.sw-public-page-part .m-footer__quick-link ul li a:hover {
  color: #3EB7D4;
  text-decoration: none;
}
footer .footer-wrapper div.news-social-wrapper {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  footer .footer-wrapper div.news-social-wrapper {
    width: 30%;
  }
}
footer .footer-wrapper .formmodule {
  margin-bottom: 30px;
}
footer .footer-wrapper .formmodule .swform {
  display: flex;
  align-items: flex-end;
  position: relative;
}
footer .footer-wrapper .formmodule .swform > div:first-of-type {
  position: relative;
}
footer .footer-wrapper .formmodule .swform > div:first-of-type div.swformsection .swformsection__header {
  margin: 0 0 10px;
  font-size: 16px;
  color: white;
  font-family: "Raleway", sans-serif;
  font-weight: normal;
  line-height: 1.7em;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  footer .footer-wrapper .formmodule .swform > div:first-of-type div.swformsection .swformsection__header {
    text-align: left;
  }
}
footer .footer-wrapper .formmodule .swform > div:first-of-type .swformfield {
  margin: 0 !important;
}
footer .footer-wrapper .formmodule .swform > div:first-of-type .swformfield .swformfield__errortxt {
  color: white;
  font-size: 13px;
}
footer .footer-wrapper .formmodule .swform > div:first-of-type .swformfield label {
  display: none;
}
footer .footer-wrapper .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type=text],
footer .footer-wrapper .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type=email],
footer .footer-wrapper .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper textarea {
  width: 100%;
  font-family: "Raleway", sans-serif;
  padding: 15px 10px;
  background: rgba(63, 184, 212, 0.58);
  color: white !important;
  font-size: 14px;
  border-radius: none;
  outline: none;
  border: 1px solid #3EB7D4;
}
footer .footer-wrapper .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type=text]::placeholder,
footer .footer-wrapper .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper input[type=email]::placeholder,
footer .footer-wrapper .formmodule .swform > div:first-of-type .swformfield .swformfieldwrapper textarea::placeholder {
  color: white !important;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
}
footer .footer-wrapper .formmodule .swform .swformactions .swformsubmit button.swformsubmit__btn {
  color: transparent;
  background: transparent;
  border: none;
  position: relative;
  height: 30px;
  margin: 0;
  padding: 0;
  width: 30px;
}
footer .footer-wrapper .formmodule .swform .swformactions .swformsubmit button.swformsubmit__btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  transform: translate(-50%, -50%) rotate(-90deg);
  background: url("/sitefiles/2777/images/ui/arrow-light.svg") center/100% no-repeat;
}
footer .footer__copyright {
  padding: 20px 0;
  text-align: center;
}
footer .footer__copyright span {
  font-size: 14px;
  color: #227fa6;
}
footer .footer__copyright span a {
  font-size: 14px;
  color: #3EB7D4;
}

.socials {
  width: 100%;
}
.socials__top h4 {
  color: white;
  text-align: center;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
}
@media only screen and (min-width: 1024px) {
  .socials__top h4 {
    text-align: left;
  }
}
.socials__links {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .socials__links {
    justify-content: flex-start;
  }
}
.socials__link {
  width: 36px;
  height: 36px;
  background: #3EB7D4;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px 0 0;
  border-radius: 50%;
}
.socials__link:hover {
  text-decoration: none;
  background: white;
}
.socials__link i {
  font-size: 20px;
  color: #003C6F;
}

.http-404 #banner {
  background: url("https://assets.speakcdn.com/assets/2777/banner-istock_000052955428large.jpeg");
}

#mc_embed_signup_scroll {
  font-size: 12px;
}
#mc_embed_signup_scroll > h2 {
  color: white;
  margin-bottom: 10px;
}
#mc_embed_signup_scroll .indicates-required {
  color: white;
  margin-bottom: 10px;
}
#mc_embed_signup_scroll .mc-field-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#mc_embed_signup_scroll .mc-field-group label {
  color: #fff;
}
#mc_embed_signup_scroll .mc-field-group input {
  width: 100%;
  border-color: #3EB7D4;
  background: #ebebeb;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  color: #003C6F;
  border-width: 1px;
}
#mc_embed_signup_scroll .clear input {
  background: #3EB7D4;
  color: #003C6F;
  border: 1px solid #003C6F;
  padding: 5px 30px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Raleway", sans-serif;
}

/* ============ 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 {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}

/* Back exits */
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

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

/* Rotating entrances */
@keyframes rotateIn {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  from {
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}

/* Rotating exits */
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}

/* Specials */
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}

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

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

/* Zooming entrances */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}

/* Zooming exits */
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}

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

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

/* ============ PAGES ============ */
/* _home.scss */
.home #banner {
  height: 70vh;
  margin-top: 168px;
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
  min-height: 600px;
}
.home #banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.home #banner .content {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  width: 80vw;
}
@media only screen and (min-width: 1024px) {
  .home #banner .content {
    width: 60vw;
  }
}
.home #banner .content h1 {
  margin-top: 0 !important;
  font-size: 5em;
  text-transform: uppercase;
}
@media only screen and (min-width: 1024px) {
  .home #banner .content h1 {
    font-size: 7em;
  }
}
.home #banner .content p {
  font-size: 24px;
  line-height: 2em;
  margin-bottom: 50px;
  text-shadow: 3px 0 7px #000;
}
.home #banner .content * {
  color: white;
}
.home #banner #bgvid {
  height: 70vh;
}
@media only screen and (min-width: 1024px) {
  .home #banner #bgvid {
    display: none;
  }
}
.home #banner .embed-container {
  display: none;
  height: 100%;
}
@media only screen and (min-width: 1024px) {
  .home #banner .embed-container {
    display: block;
  }
}
.home #banner .scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: auto;
  transform: translate(-50%, -50%);
}
.home #banner .scroll img {
  height: 50px;
  width: 50px;
}
.home #banner .home-hero-v2 {
  height: 70vh;
  min-height: 600px;
  position: relative;
}
.home #banner .home-hero-v2 .video-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home #banner .home-hero-v2 .video-container iframe {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  transition: all 1s ease;
}
.home #banner .home-hero-v2 .video-container iframe.loaded {
  opacity: 1;
}
.home #banner .home-hero-v2 #bgvid {
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  min-height: 600px;
  opacity: 0;
  animation: fadeIn 1s ease 3s forwards;
}

#spotlights {
  display: flex;
  flex-wrap: wrap;
}
#spotlights .sw-public-page-part {
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  #spotlights .sw-public-page-part {
    width: 50%;
  }
}
#spotlights .sw-public-page-part:first-child {
  background: #0B5991;
}
#spotlights .sw-public-page-part:last-child {
  background: #318722;
}

.challenge {
  padding: 0 20px 50px;
}
.challenge * {
  color: white;
}
.challenge__top {
  text-align: center;
}
.challenge__top h3 {
  font-size: 4em;
  margin-top: 50px;
  font-family: "Antonio", sans-serif;
}
.challenge__top p {
  padding: 0 10px;
}
.challenge__stats {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 50px;
}
.challenge__stats p {
  text-align: center;
}
.challenge__stat {
  flex-basis: 100%;
  display: flex;
  margin: 10px 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1024px) {
  .challenge__stat {
    flex-basis: 33.333%;
    padding: 0 5px;
    margin: 0;
  }
}
.challenge__statNumberWrap {
  height: 180px;
  width: 180px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}
.challenge__statNumberWrap h1,
.challenge__statNumberWrap h5 {
  color: #0B5991;
  margin: 0;
  text-align: center;
}
.challenge__statNumberWrap h1 {
  font-size: 6em;
  margin: 0;
}
.challenge__statNumberWrap h1:after {
  content: "%";
}

.opportunity {
  padding: 0 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.opportunity * {
  color: white;
}
.opportunity__top {
  text-align: center;
}
.opportunity__top h3 {
  margin-top: 50px;
  font-size: 4em;
  font-family: "Antonio", sans-serif;
}
.opportunity__top p {
  padding: 0 10px;
}
.opportunity__items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}
.opportunity__item {
  flex-basis: 100%;
  padding: 10px 30px;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .opportunity__item {
    flex-basis: 50%;
    padding: 0 30px;
  }
}
.opportunity__icon {
  text-align: center;
}

.approach {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 20px 0;
}
.approach:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.approach__top, .approach__portals, .approach__embed {
  z-index: 1;
  position: relative;
}
.approach__top *, .approach__portals *, .approach__embed * {
  color: white;
}
.approach__top {
  padding: 0 20px;
}
.approach__top h3 {
  text-align: center;
  font-size: 5em;
}
@media only screen and (min-width: 1024px) {
  .approach__top h3 {
    font-size: 7em;
  }
}
.approach__portals {
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .approach__portals {
    flex-direction: row;
    align-items: unset;
    justify-content: center;
  }
}
.approach__portal {
  flex-basis: 33.33%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.approach__portal h3 {
  font-size: 4em;
  color: #91E256;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .approach__portal {
    margin-bottom: 0;
  }
}
.approach__content {
  margin-bottom: 50px;
}
.approach__content p {
  text-align: center;
}
.approach__embed {
  margin: 80px 0;
  background: #318722;
  display: none;
  padding: 5px 0;
}
@media only screen and (min-width: 1024px) {
  .approach__embed {
    display: block;
  }
}
.approach__embed h3 {
  font-size: 20px;
  font-family: "Raleway", sans-serif;
  text-align: center;
}
.approach__embed h3 span {
  text-align: center;
}
.approach__embed h3 span .play-btn {
  background: url("/sitefiles/2777/images/ui/play_btn.png");
  height: 90px;
  width: 90px;
  position: absolute;
  top: -20px;
}

div.embedmodal {
  display: none;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 101;
  background: white;
  padding: 50px 20px;
  top: 50%;
  left: 50%;
  width: 90vw;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1440px) {
  div.embedmodal {
    width: 50vw;
  }
}
div.embedmodal button.close-modal {
  position: absolute;
  top: -17.5px;
  right: -17.5px;
  background: black;
  border: 2px solid white;
  border-radius: 50%;
  height: 35px;
  width: 35px;
  z-index: 9999;
}
div.embedmodal button.close-modal i {
  color: white;
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
div.embedmodal.active {
  display: flex;
}
div.embedmodal div.embed-container {
  width: 100%;
}

.home .get-involved {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 20px 0 50px 0;
}
.home .get-involved:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.home .get-involved__top, .home .get-involved__portals {
  z-index: 1;
  position: relative;
}
.home .get-involved__top *, .home .get-involved__portals * {
  color: white;
}
.home .get-involved__top {
  padding: 0 20px;
}
.home .get-involved__top h3 {
  text-align: center;
  font-size: 5em;
}
@media only screen and (min-width: 1024px) {
  .home .get-involved__top h3 {
    font-size: 7em;
  }
}
.home .get-involved__portals {
  padding: 0 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .home .get-involved__portals {
    padding: 0 150px;
    flex-direction: row;
    align-items: unset;
    justify-content: center;
  }
}
.home .get-involved__portal {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  background: rgba(0, 61, 111, 0.55);
  border: 1px solid #3eb7d4;
  padding: 0 20px 50px 20px;
}
.home .get-involved__portal:hover {
  text-decoration: none;
}
.home .get-involved__portal h3 {
  font-size: 2.8em;
  color: #3EB7D4;
  text-align: center;
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .home .get-involved__portal {
    flex-basis: 31.33%;
    margin-bottom: 0;
    margin: 0 24px 40px 0;
  }
}
.home .get-involved__portal:hover {
  background: #003C6F;
}

/* _default.scss */
#default-main {
  margin-top: 50px;
  margin-bottom: 100px;
}
@media only screen and (min-width: 1024px) {
  #default-main {
    margin-top: 50px;
  }
}

body.default #banner {
  margin-top: 168px;
  height: 45vh;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  opacity: 0;
  min-height: 350px;
  animation: fadeIn 0.66s ease 0.33s forwards;
}
@media only screen and (min-width: 1024px) {
  body.default #banner {
    margin-bottom: 0 !important;
  }
}
body.default #banner .banner-text {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
body.default #banner .banner-text h1 {
  font-size: 5em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  body.default #banner .banner-text h1 {
    font-size: 7em;
  }
}
body.default #banner .banner-text ul {
  position: relative;
  bottom: -70%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 95%;
  height: fit-content;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  background: #0B5991;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  body.default #banner .banner-text ul {
    bottom: 0;
    position: absolute;
    flex-direction: row;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
}
body.default #banner .banner-text ul li {
  list-style: none;
  padding: 20px;
  position: relative;
  transition: ease 0.3s;
}
body.default #banner .banner-text ul li.current, body.default #banner .banner-text ul li:hover {
  background: #003C6F;
}
body.default #banner .banner-text ul li.current a, body.default #banner .banner-text ul li:hover a {
  color: #3EB7D4;
  text-decoration: none;
}
body.default #banner .banner-text ul li a {
  font-family: "Antonio", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: bold;
}
body.default #banner .banner-text * {
  color: white;
  text-align: center;
}
body.default #banner .templatecontent {
  display: none;
}
body.default #banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: 1;
}

.staff {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .staff {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.staff__staff-member {
  flex-basis: 28.3333333333%;
  margin: 0 20px;
  padding: 0 0 40px;
}
.staff__image {
  text-align: center;
}
.staff__image img {
  width: 90%;
}
@media only screen and (min-width: 1024px) {
  .staff__image img {
    width: 100%;
  }
}
.staff__name, .staff__name a {
  font-size: 20px;
  color: #003C6F;
  text-transform: none;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  text-align: center;
}
.staff__job-title {
  text-align: center;
  font-size: 16px;
  display: block;
  color: #414042;
  line-height: 23px;
}
.staff--inner {
  display: block;
}
.staff--inner .staff__image img {
  width: 90%;
}
@media only screen and (min-width: 1024px) {
  .staff--inner .staff__image img {
    width: 25%;
  }
}
.staff--inner .staff__job-title {
  font-size: 20px;
  margin: 0;
}

.newsroom__title {
  color: #003C6F;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .newsroom__title {
    text-align: left;
  }
}
.newsroom__date, .newsroom__link {
  color: #0B5991;
  font-weight: bold;
  margin: 0 10px;
}
.newsroom__link {
  position: relative;
}
.newsroom__link:after {
  content: " >>";
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(120%, -50%);
  margin-bottom: 10px;
}
@media only screen and (min-width: 1024px) {
  .newsroom__date {
    margin-left: 0;
  }
}
.newsroom__press-release {
  border-bottom: 1px solid #3EB7D4;
  margin-bottom: 30px;
}
.newsroom__press-release p {
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .newsroom__press-release p {
    justify-content: flex-start;
  }
}

.community {
  padding: 0 20px;
}
@media only screen and (min-width: 1024px) {
  .community {
    padding: 0 200px;
  }
}
.community__program {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .community__program {
    margin-bottom: 80px;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 1024px) {
  .community__program:nth-child(even) .community__logo {
    margin-left: -70px;
    order: 1;
  }
}
.community__program:nth-child(even) .community__content {
  background: rgba(50, 135, 34, 0.1);
}
@media only screen and (min-width: 1024px) {
  .community__program:nth-child(even) .community__content {
    padding: 20px 150px 20px 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .community__program:nth-child(odd) .community__logo {
    margin-right: -70px;
  }
}
.community__program:nth-child(odd) .community__content {
  background: rgba(63, 184, 212, 0.1);
}
@media only screen and (min-width: 1024px) {
  .community__program:nth-child(odd) .community__content {
    padding: 20px 20px 20px 150px;
  }
}
.community__logo {
  margin-bottom: -30px;
  width: 50%;
  display: flex;
  margin-top: 20px;
  padding: 10px;
  justify-content: center;
  background: white;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .community__logo {
    width: 15%;
  }
}
.community__logo img {
  background-color: white;
}
.community__content {
  width: 100%;
  padding: 50px 20px 20px;
}
@media only screen and (min-width: 1024px) {
  .community__content {
    width: 85%;
  }
}
.community__content h3 {
  color: #003C6F;
}

@media (max-width: 1170px) {
  .default-portal__portals {
    padding: 0 20px !important;
  }
}
.default-portal {
  position: relative;
  padding: 20px 0 50px 0;
}
.default-portal__top, .default-portal__portals {
  z-index: 1;
  position: relative;
}
.default-portal__top *, .default-portal__portals * {
  color: #003C6F;
}
.default-portal__top {
  padding: 0 20px;
  display: flex;
  justify-content: center;
}
.default-portal__top h3 {
  text-align: center;
  font-size: 3em;
  margin-bottom: 100px;
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .default-portal__top h3 {
    max-width: 70%;
    font-size: 4em;
  }
}
.default-portal__top h3:before, .default-portal__top h3:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 25%;
  height: 4px;
  background: #3EB7D4;
  transform: translate(0%, -50%);
}
.default-portal__top h3:before {
  left: -30%;
}
.default-portal__top h3:after {
  right: -30%;
}
.default-portal__portals {
  padding: 0 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  .default-portal__portals {
    padding: 0 150px;
    flex-direction: row;
    align-items: unset;
    justify-content: center;
  }
}
.default-portal__portal {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  border: 1px solid #3eb7d4;
  padding: 0 20px 20px 20px;
}
.default-portal__portal:hover {
  text-decoration: none;
  background: transparent !important;
}
.default-portal__portal h3 {
  font-size: 2.8em;
  color: #003C6F;
  text-align: center;
  margin-bottom: 0;
}
@media only screen and (min-width: 1024px) {
  .default-portal__portal {
    flex-basis: 31.33%;
    margin-bottom: 0;
    margin: 0 24px 40px 0;
  }
}
.default-portal__portal p {
  text-align: center;
}
.default-portal__portal:hover {
  background: #003C6F;
}

div.blog > div:first-of-type div.blog-entry-wrapper {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  grid-gap: 40px;
}
div.blog > div:first-of-type div.blog-entry-wrapper .category {
  grid-row: auto;
}
@media only screen and (min-width: 768px) {
  div.blog > div:first-of-type div.blog-entry-wrapper .category {
    grid-area: 1/1/1/1;
  }
}
@media only screen and (min-width: 1024px) {
  div.blog > div:first-of-type div.blog-entry-wrapper .category {
    grid-area: 1/1/2/3;
  }
}
@media only screen and (min-width: 768px) {
  div.blog > div:first-of-type div.blog-entry-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  div.blog > div:first-of-type div.blog-entry-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
div.blog > div:first-of-type div.blog-entry-wrapper .featured-post {
  grid-area: 1/1/1/1;
  position: relative;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  div.blog > div:first-of-type div.blog-entry-wrapper .featured-post {
    grid-area: 1/1/1/1;
  }
}
@media only screen and (min-width: 1024px) {
  div.blog > div:first-of-type div.blog-entry-wrapper .featured-post {
    grid-area: 1/1/2/3;
  }
}
@media only screen and (min-width: 1024px) {
  div.blog > div:first-of-type div.blog-entry-wrapper .featured-post {
    min-height: 500px;
  }
}
div.blog > div:first-of-type div.blog-entry-wrapper .featured-post .post-image .post-date {
  background: rgba(50, 135, 34, 0.7) !important;
}
div.blog > div:first-of-type div.blog-entry-wrapper .featured-post .post-content .post-title a {
  color: #318722 !important;
}
div.blog > div:first-of-type div.blog-entry-wrapper .blog-entry,
div.blog > div:first-of-type div.blog-entry-wrapper .featured-post {
  margin: 0;
  border: none;
  position: relative;
  min-height: 600px;
}
@media only screen and (min-width: 1024px) {
  div.blog > div:first-of-type div.blog-entry-wrapper .blog-entry,
  div.blog > div:first-of-type div.blog-entry-wrapper .featured-post {
    min-height: 500px;
  }
}
div.blog > div:first-of-type div.blog-entry-wrapper .blog-entry.remove,
div.blog > div:first-of-type div.blog-entry-wrapper .featured-post.remove {
  display: none;
}
div.blog > div:first-of-type div.blog-entry-wrapper .blog-entry .post-image,
div.blog > div:first-of-type div.blog-entry-wrapper .featured-post .post-image {
  min-height: 400px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}
div.blog > div:first-of-type div.blog-entry-wrapper .blog-entry .post-image .post-date,
div.blog > div:first-of-type div.blog-entry-wrapper .featured-post .post-image .post-date {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 10px 15px;
  font-size: 20px;
  background: rgba(11, 89, 145, 0.7);
  font-weight: bold;
  color: white;
}
div.blog > div:first-of-type div.blog-entry-wrapper .blog-entry .post-content,
div.blog > div:first-of-type div.blog-entry-wrapper .featured-post .post-content {
  width: 85%;
  padding: 15px 20px 15px 0;
  background: white;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 5%;
}
@media only screen and (min-width: 1024px) {
  div.blog > div:first-of-type div.blog-entry-wrapper .blog-entry .post-content,
  div.blog > div:first-of-type div.blog-entry-wrapper .featured-post .post-content {
    padding: 15px 20px;
  }
}
div.blog > div:first-of-type div.blog-entry-wrapper .blog-entry .post-content .post-title a,
div.blog > div:first-of-type div.blog-entry-wrapper .featured-post .post-content .post-title a {
  font-size: 1.4em;
  font-family: "Antonio", sans-serif;
  font-weight: bold;
  color: #0B5991;
}
div.blog > div:first-of-type div.blog-entry-wrapper .blog-entry .post-content .post-title a:hover,
div.blog > div:first-of-type div.blog-entry-wrapper .featured-post .post-content .post-title a:hover {
  text-decoration: none;
}
div.blog > div:first-of-type div.blog-entry-wrapper .blog-entry .post-content .post-body,
div.blog > div:first-of-type div.blog-entry-wrapper .featured-post .post-content .post-body {
  font-size: 16px;
  line-height: 1.7em;
}
div.blog > div:first-of-type div.blog-entry-wrapper .blog-entry .post-content .post-summary-read-more,
div.blog > div:first-of-type div.blog-entry-wrapper .featured-post .post-content .post-summary-read-more {
  position: absolute;
  bottom: 0;
  left: 100%;
}
div.blog > div:first-of-type .sw-blog-entry-nav li a {
  color: #0B5991;
  font-weight: bold;
}

body.blog #default-main {
  padding: 0 20px;
}
@media only screen and (min-width: 1024px) {
  body.blog #default-main {
    padding: 0 50px;
  }
}
body.blog #default-main #subnav:not(.tags, .archives, .categories) {
  display: none;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  flex-direction: column;
}
@media only screen and (min-width: 1024px) {
  body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu {
    flex-direction: row;
  }
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .filter {
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .filter {
    width: 33.33%;
  }
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .filter h2#filter-title {
  font-weight: bold;
  color: white;
  font-size: 17px;
  padding: 10px 15px;
  margin: 0;
  display: flex;
  justify-content: space-between;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .filter h2#filter-title span {
  position: relative;
  height: auto;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .filter h2#filter-title span:after, body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .filter h2#filter-title span:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  height: 2px;
  width: 10px;
  background: white;
  border-radius: 3px;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .filter h2#filter-title span:after {
  transform: rotate(90deg);
  transition: ease 0.3s;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .filter h2#filter-title.active span:after {
  transform: rotate(0deg);
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .filter ul {
  width: 100%;
  display: none;
  position: absolute;
  margin: 0;
  padding: 0;
  background: white;
  flex-direction: column;
  z-index: 2;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .filter ul li {
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .filter ul li a {
  color: #000;
  width: 100%;
  padding: 10px 20px;
  text-transform: capitalize;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .tags {
  margin: 0 20px 0 0;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .tags h2 {
  background: #318722;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .tags ul {
  border-bottom: 6px solid #318722;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .tags ul li a {
  background: rgba(50, 135, 34, 0.33);
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .archives {
  margin: 20px 0;
}
@media only screen and (min-width: 1024px) {
  body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .archives {
    margin: 0 20px;
  }
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .archives h2 {
  background: #0B5991;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .archives > ul {
  border-bottom: #0B5991 6px solid;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .archives > ul > li {
  background: rgba(11, 89, 145, 0.4);
  color: #000;
  width: 100%;
  text-transform: capitalize;
  position: relative;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .archives > ul > li span {
  padding: 10px 20px;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .archives > ul > li .arrow {
  position: absolute;
  right: 15px;
  height: auto;
  top: 18px;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .archives > ul > li .arrow:after, body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .archives > ul > li .arrow:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 5px;
  height: 2px;
  width: 10px;
  background: black;
  border-radius: 3px;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .archives > ul > li .arrow:after {
  transform: rotate(90deg);
  transition: ease 0.3s;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .archives > ul > li.active .arrow:after {
  transform: rotate(0deg);
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .archives > ul > li > ul {
  margin: 0;
  padding: 0;
  position: relative;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .archives > ul > li > ul > li > a {
  padding: 10px 20px;
  background: rgba(11, 89, 145, 0.25);
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .categories {
  margin: 0;
}
@media only screen and (min-width: 1024px) {
  body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .categories {
    margin: 0 0 0 20px;
  }
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .categories h2 {
  background: #000;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .categories ul {
  border-bottom: #000 solid 6px;
}
body.blog #default-main #ctl00_cphSideMenu_swSiblingMenu_pnlSideMenu .categories ul li a {
  background: rgba(0, 0, 0, 0.2);
}

div.blog .blog-entry-details .post-date {
  margin: 0;
  font-size: 25px;
  color: #0B5991;
}
div.blog .blog-entry-details .post-tags a {
  text-transform: capitalize;
}
div.blog .blog-entry-details .post-tags a:after {
  content: ",";
  margin-right: 4px;
}
div.blog .blog-entry-details .post-tags a:last-child:after {
  display: none;
}

.annual-report #default-main {
  margin-bottom: 0;
}
.annual-report #default-main .templatecontent {
  padding: 30px 20px;
}
.annual-report #default-main .templatecontent * {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .annual-report #default-main .templatecontent {
    padding: 40px 200px 30px;
  }
  .annual-report #default-main .templatecontent * {
    text-align: left;
  }
}
.annual-report #our-supporters {
  background: rgba(50, 135, 34, 0.1);
  padding-bottom: 40px;
}
.annual-report #our-supporters .templatecontent {
  padding: 30px 20px;
}
.annual-report #our-supporters .templatecontent * {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .annual-report #our-supporters .templatecontent {
    padding: 40px 200px 30px;
  }
  .annual-report #our-supporters .templatecontent * {
    text-align: left;
  }
}
.annual-report #our-supporters .sw-public-page-part {
  padding: 0 20px;
  margin: 0 0 30px;
}
@media only screen and (min-width: 1024px) {
  .annual-report #our-supporters .sw-public-page-part {
    padding: 0 200px 30px;
  }
}
.annual-report #full-width {
  position: relative;
}
.annual-report #full-width:before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: 300px;
  z-index: 1;
  transform: translate(0%, -50%);
  background: url("/sitefiles/2777/images/cityline.png");
}
.annual-report #full-width:after {
  position: absolute;
  content: "";
  height: 60%;
  width: 100%;
  background: rgba(63, 184, 212, 0.1);
  bottom: 0;
  left: 0;
}
.annual-report #full-width .templatecontent {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
}
.annual-report #full-width .templatecontent * {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  .annual-report #full-width .templatecontent {
    padding: 40px 200px 30px;
  }
  .annual-report #full-width .templatecontent * {
    text-align: left;
  }
}
.annual-report #bottom {
  margin-bottom: 0;
}
.annual-report #bottom .templatecontent {
  padding: 30px 20px;
}
@media only screen and (min-width: 1024px) {
  .annual-report #bottom .templatecontent {
    padding: 30px 200px;
  }
  .annual-report #bottom .templatecontent * {
    text-align: left;
  }
}

.custom-layout {
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
}
.custom-layout .blue-container,
.custom-layout .green-container {
  margin-top: 20px;
}
.custom-layout--green {
  background: rgba(50, 135, 34, 0.1);
}
.custom-layout--blue {
  background: #ebf8fb;
}
@media (min-width: 1024px) {
  .custom-layout {
    padding: 0 100px;
  }
}
.custom-layout__left--normal, .custom-layout__left--reverse {
  width: 100%;
}
.custom-layout__left--reverse {
  order: -1;
}
@media (min-width: 1024px) {
  .custom-layout__left--normal {
    width: 60%;
    padding-right: 65px;
  }
  .custom-layout__left--reverse {
    width: 40%;
  }
}
.custom-layout__right--normal, .custom-layout__right--reverse {
  width: 100%;
  order: -1;
}
.custom-layout__right--normal {
  order: 3;
}
@media (min-width: 1024px) {
  .custom-layout__right--normal {
    width: 40%;
    order: unset;
  }
  .custom-layout__right--reverse {
    order: unset;
    width: 60%;
    padding-left: 65px;
  }
}

.green-container {
  padding: 30px;
  background: rgba(50, 135, 34, 0.1);
  border-radius: 20px 0 20px;
}

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

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

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