.slbOverlay,
.slbWrapOuter,
.slbWrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.slbOverlay {
  overflow: hidden;
  z-index: 2000;
  background-color: #000;
  opacity: 0.7;
  -webkit-animation: slbOverlay 0.5s;
  -moz-animation: slbOverlay 0.5s;
  animation: slbOverlay 0.5s
}

.slbWrapOuter {
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2010
}

.slbWrap {
  position: absolute;
  text-align: center
}

.slbWrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle
}

.slbContentOuter {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0px auto;
  padding: 0 1em;
  box-sizing: border-box;
  z-index: 2020;
  text-align: left;
  max-width: 100%
}

.slbContentEl .slbContentOuter {
  padding: 5em 1em
}

.slbContent {
  position: relative
}

.slbContentEl .slbContent {
  -webkit-animation: slbEnter 0.3s;
  -moz-animation: slbEnter 0.3s;
  animation: slbEnter 0.3s;
  background-color: #fff;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.4)
}

.slbImageWrap {
  -webkit-animation: slbEnter 0.3s;
  -moz-animation: slbEnter 0.3s;
  animation: slbEnter 0.3s;
  position: relative
}

.slbImageWrap:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5em;
  bottom: 5em;
  display: block;
  z-index: -1;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6);
  background-color: #FFF
}

.slbDirectionNext .slbImageWrap {
  -webkit-animation: slbEnterNext 0.4s;
  -moz-animation: slbEnterNext 0.4s;
  animation: slbEnterNext 0.4s
}

.slbDirectionPrev .slbImageWrap {
  -webkit-animation: slbEnterPrev 0.4s;
  -moz-animation: slbEnterPrev 0.4s;
  animation: slbEnterPrev 0.4s
}

.slbImage {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 5em 0;
  margin: 0 auto
}

.slbCaption {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  font-size: 1.4em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .71429em 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  text-align: center
}

.slbCloseBtn,
.slbArrow {
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none
}

.slbCloseBtn::-moz-focus-inner,
.slbArrow::-moz-focus-inner {
  padding: 0;
  border: 0
}

.slbCloseBtn:hover,
.slbArrow:hover {
  opacity: 0.5
}

.slbCloseBtn:active,
.slbArrow:active {
  opacity: 0.8
}

.slbCloseBtn {
  -webkit-animation: slbEnter 0.3s;
  -moz-animation: slbEnter 0.3s;
  animation: slbEnter 0.3s;
  font-size: 3em;
  width: 1.66667em;
  height: 1.66667em;
  line-height: 1.66667em;
  position: absolute;
  right: -.33333em;
  top: 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  text-align: center
}

.slbLoading .slbCloseBtn {
  display: none
}

.slbLoadingText {
  font-size: 1.4em;
  color: #fff;
  color: rgba(255, 255, 255, 0.9)
}

.slbArrows {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0
}

.slbLoading .slbArrows {
  display: none
}

.slbArrow {
  position: absolute;
  top: 50%;
  margin-top: -5em;
  width: 5em;
  height: 10em;
  opacity: 0.7;
  text-indent: -999em;
  overflow: hidden
}

.slbArrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -.8em 0 0 -.8em;
  border: .8em solid transparent
}

.slbArrow.next {
  right: 0
}

.slbArrow.next:before {
  border-left-color: #fff
}

.slbArrow.prev {
  left: 0
}

.slbArrow.prev:before {
  border-right-color: #fff
}

.slbIframeCont {
  width: 80em;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  margin: 5em 0
}

.slbIframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6);
  background: #000
}

@-webkit-keyframes slbOverlay {
  from {
    opacity: 0
  }

  to {
    opacity: 0.7
  }
}

@-moz-keyframes slbOverlay {
  from {
    opacity: 0
  }

  to {
    opacity: 0.7
  }
}

@keyframes slbOverlay {
  from {
    opacity: 0
  }

  to {
    opacity: 0.7
  }
}

@-webkit-keyframes slbEnter {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -1em, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0)
  }
}

@-moz-keyframes slbEnter {
  from {
    opacity: 0;
    -moz-transform: translate3d(0, -1em, 0)
  }

  to {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0)
  }
}

@keyframes slbEnter {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -1em, 0);
    -moz-transform: translate3d(0, -1em, 0);
    -ms-transform: translate3d(0, -1em, 0);
    -o-transform: translate3d(0, -1em, 0);
    transform: translate3d(0, -1em, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@-webkit-keyframes slbEnterNext {
  from {
    opacity: 0;
    -webkit-transform: translate3d(4em, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0)
  }
}

@-moz-keyframes slbEnterNext {
  from {
    opacity: 0;
    -moz-transform: translate3d(4em, 0, 0)
  }

  to {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0)
  }
}

@keyframes slbEnterNext {
  from {
    opacity: 0;
    -webkit-transform: translate3d(4em, 0, 0);
    -moz-transform: translate3d(4em, 0, 0);
    -ms-transform: translate3d(4em, 0, 0);
    -o-transform: translate3d(4em, 0, 0);
    transform: translate3d(4em, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

@-webkit-keyframes slbEnterPrev {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-4em, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0)
  }
}

@-moz-keyframes slbEnterPrev {
  from {
    opacity: 0;
    -moz-transform: translate3d(-4em, 0, 0)
  }

  to {
    opacity: 1;
    -moz-transform: translate3d(0, 0, 0)
  }
}

@keyframes slbEnterPrev {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-4em, 0, 0);
    -moz-transform: translate3d(-4em, 0, 0);
    -ms-transform: translate3d(-4em, 0, 0);
    -o-transform: translate3d(-4em, 0, 0);
    transform: translate3d(-4em, 0, 0)
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
  }
}

/*
 * .-----------------------------------------------------.
 * |                    WEBFLOW CUSTOM                   |
 * '-----------------------------------------------------'
 */

textarea,
input.text,
input[type="text"],
input[type="email"],
input[type="phone"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  -webkit-appearance: none;
}

.w-select {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-border-radius: 30px;
  appearance: none;
}

.w-video iframe {
  border: none;
}

ol {
  list-style-type: none;
  position: relative;
  counter-reset: item;
}

ol li {
  //counter-increment: step-counter;

  background-image: none;
  padding-left: 15px;
}

ol li::before {
  //content: counter(step-counter);
  content: counters(item, " ");
  counter-increment: item;
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  font-size: 12px;
  color: white;
  font-weight: 500;
  background-color: #2b2b2b;
  border-radius: 99px;
  text-align: center;
  line-height: 18px;
  margin-top: 4px;
}

ol li ol {
  padding-top: 10px;
}

ol li li:before {
  content: counters(item, ".")" ";
  counter-increment: item;
}

ol li li li:before {
  display: none;
}

ol li li li {
  list-style: lower-alpha;
}

/* Every step down from here will take this property */

ol li li li li {
  list-style: lower-roman;
}

/* Override with classes */

ol.alpha li {
  list-style: lower-alpha;
}

.last-child-no-r-margin>*:last-child {
  margin-right: 0;
}

.hide_download {
  display: none;
}

.section.dark h1,
.section.dark h2,
.section.dark h3,
.section.dark h4,
.section.dark h5,
.section.dark h6,
.section.dark .faux-h1,
.section.dark .faux-h2,
.section.dark .faux-h3,
.section.dark .faux-h4,
.section.dark .faux-h5,
.section.dark .faux-h6,
.section.dark blockquote,
.section.dark p,
.dropdown-trigger.invert,
.dropdown-link.invert,
.select-field.invert,
.icon-button.invert {}

.tint .text-field.search {
  border-style: solid;
  border-width: 1px;
  border-color: #d1d7d7;
}

.section.dark .highlighted-text {
  color: #514853;
}

.page-no a:hover {
  text-decoration: none
}

.header._w-bg-img {
  overflow-x: hidden;
}

.section.blue {
  background-color: #2375bb ; /* #1ba9e0; */
  position: relative;
}

.section.blue:not(.footer):after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: #f7f7f7;
}

.invert a {
  color: #fff;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
}

/*
 * .-----------------------------------------------------.
 * |                     Shortcode Style                 |
 * '-----------------------------------------------------'
 */
 
 .box-wrapper {  padding: 34px;}
 .box-wrapper._33-p{width: 33.3%;
   -webkit-box-flex: 0;
   -webkit-flex: 0 auto;
   -ms-flex: 0 auto;
   flex: 0 auto;}
.box-wrapper.align-left {float: left; padding-left: 0;padding-top: 0}
 .box-wrapper.align-right {float: right; padding-right: 0;padding-top: 0}
 @media (max-width: 960px) {
       .box-wrapper._33-p{width: 50%;}
   }
@media (max-width:768px) {
     .box-wrapper._33-p{width: 100%;}
      .box-wrapper.align-left {float: none;padding: 20px 0px 18px ;}
      .box-wrapper.align-right {float: none;padding: 20px 0px 18px ;}
      
  }
/*
 * .-----------------------------------------------------.
 * |                         Modal Style                 |
 * '-----------------------------------------------------'
 */
.element-hidden {
  display: none;
}

.modal-wrap {
  position: fixed;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1001;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: scroll;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f7f7f7;
}

.modal-close-button {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  height: 60px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #1ba9e0;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  cursor: pointer;
}

.modal.modal-show {
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  transform-style: preserve-3d;
  opacity: 1;
  display: flex;
}

.modal-video {
  width: 95vh;
  max-width: 90vw;
}

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}

@media screen and (min-width: 1440px) {
  .modal-video {
    width: 100vh;
    max-width: none;
  }
}

/*
 * .-----------------------------------------------------.
 * |               Native Wordpress Video player fix     |
 * '-----------------------------------------------------'
 */

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.play-btn {
  position: absolute;
  right: 65px;
  bottom: 73px;
  width: 90px;
  height: 90px;
  font-size: 0;
  background: url(../images/play-button-arrowhead.svg);
  background-repeat: no-repeat;
  background-position: 25px center;
  background-size: 40px 40px;
  border: 3px solid #fff;
  border-radius: 100%;
  background-color: #FFFFFF26;
}

.play-btn:hover {
  background-color: #1ba9e0
}

.wp-video,
video.wp-video-shortcode,
.mejs-container,
.mejs-overlay.load {
  width: 100% !important;
  height: 100% !important;
}

.mejs-container {
  padding-top: 56.25%;
}

.wp-video,
video.wp-video-shortcode {
  max-width: 100% !important;
}

video.wp-video-shortcode {
  position: relative;
}

.mejs-mediaelement {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.mejs-controls {
  display: none;
}

.mejs-overlay-play {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto !important;
  height: auto !important;
}

@media screen and (max-width: 991px) {
  .single-fact .fluid-cell._67-p {
    width: 100%;
  }
}

/*
 * .-----------------------------------------------------.
 * |                    CONTACT FORM 7                   |
 * '-----------------------------------------------------'
 */

.form-horizontal-inside form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 12px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.form-horizontal-inside form .button-input {
  padding: 0;
  line-height: 50px;
}

.form-horizontal-inside form .wpcf7-spinner {
  position: absolute;
  bottom: 0;
  left: 0;
  top: 0;
  margin: auto;
  opacity: .3;
}

@media screen and (max-width: 991px) {
  .form-horizontal-inside form {
    padding-top: 24px;
    padding-right: 5%;
    padding-left: 5%;
  }
}

@media screen and (max-width: 767px) {
  .form-horizontal-inside form {
    padding-top: 12px;
    padding-right: 0;
    padding-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
}

.wpcf7-form span.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
  margin-right: 24px;
}

.wpcf7-form span.wpcf7-form-control-wrap input {
  margin-right: 0;
}

.form-horizontal-inside .ajax-loader,
.form-horizontal-inside .wpcf7-response-output {
  display: none !important;
}

/*
 * .-----------------------------------------------------.
 * |                     IMAGES                          |
 * '-----------------------------------------------------'
 */

.wp-caption {
  max-width: 100%;
}

.wp-caption img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
  min-width: 120%;
  margin: 60px auto 60px -10%;
}

.wp-caption .wp-caption-text {
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  font-size: 14px;
  line-height: 24px;
  margin-top: -36px;
  margin-bottom: 60px;
  font-style: italic;
}

.gallery_columns {
  flex-wrap: wrap;
}

.graph-image-wrap {
  width: 100%;
}

.graph-image-wrap.columns-2 {
  width: calc(100% / 2);
}

.graph-image-wrap.columns-3 {
  width: calc(100% / 3);
}

.graph-image-wrap.columns-4 {
  width: calc(100% / 4);
}

.graph-image-wrap.columns-5 {
  width: calc(100% / 5);
}

.graph-image-wrap.columns-6 {
  width: calc(100% / 6);
}

@media (max-width:900px) {

  .graph-image-wrap.columns-5,
  .graph-image-wrap.columns-6 {
    width: calc(100% / 4);
  }
}


@media (max-width:768px) {

  .graph-image-wrap.columns-2,
  .graph-image-wrap.columns-3,
  .graph-image-wrap.columns-4,
  .graph-image-wrap.columns-5,
  .graph-image-wrap.columns-6 {
    width: 90%;
    margin: 0 5% 5px;
  }
}

/*
 * .-----------------------------------------------------.
 * |                         CTA BLOCK                   |
 * '-----------------------------------------------------'
 */

.cta-section .button.invert {
  background-color: #fff;
  color: #1ba9e0;
}

.cta-section .button.invert:hover {
  color: #2b2b2b
}

.section.cta_section.blue .content-container {
  background-color: #1ba9e0;
  /* border-color: transparent */
}

.section.cta_section.tint .content-container {
  background-color: rgb(247, 247, 247);
  /* border-color: transparent */
}


/*
 * .-----------------------------------------------------.
 * |                     CONTENT BLOCK                   |
 * '-----------------------------------------------------'
 */
.faux-h3 a {
  color: 15171c;
}

.faux-h3 a:hover {
  text-decoration: none
}

.faux-h3.invert a {
  color: #fff;
}

.block.white {
  background: #fff;
  color: #2b2b2b;
}

.text_wrap {
  padding-top: 24px;
  padding-bottom: 24px;
}

.highlighted-text {
  background-color: #1ba9e0;
  box-shadow: -6px 0 0 0 #1ba9e0, 6px 0 0 0 #1ba9e0;
  color: #fff
}

.block.white {
  border-style: solid;
  border-width: 1px;
  border-color: #d1d7d7;
  background-color: #fff;
  color: #2b2b2b;
}

.content-container.center_align {
  align-items: center;
  justify-content: center;
}
.block.blue a {
  color: #fff;
  color: hsl(0deg 0% 90%);
}
.fluid-cell._67-p.offset-33 {
  margin-right: auto;
}
.fluid-cell.no-t-padding  {
      padding-top: 0px;
  }

.block p {padding-bottom: 13px;}
@media screen and (max-width: 960px) {
  .fluid-cell._25-p {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  .fluid-cell._25-p {
    width: 100%;
  }

  a.play-btn.inline_video {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}


/* *-----------------------------------------------------.
 * |                     FOOTER                          |
 * '-----------------------------------------------------'
 */

.section.blue.footer .content-container {
  background-color: #2375bb ; /* #1ba9e0; */
  /* border-color: transparent */
}

.footer_logo {
  width: 170px;
}

.footer .fluid-cell._67-p {
  margin: auto;
}

.copy-text p {
  font-size: 15px;
}

.footer .content-container {
  border-bottom: 0;
  padding: 40px;
  font-size: 90%;
  }

.pink,
.invert a.pink {
  color: #f0ebf8
}
@media screen and (min-width: 1440px) {
  .footer .content-container {
        max-width: 1240px;
    }
}

@media screen and (max-width: 1440px) {
  
 

  .section.blue .content-container {
    background-color: #2375bb ; /* #1ba9e0; */
    /* border-color: transparent */
  }

  .tint .content-container {
    background: #f7f7f7
  }

  .blue blockquote {
    border-color: #fff
  }

  .blue blockquote p {
    color: #fff
  }

 
}