.w-layout-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-row-gap: 16px;
  grid-column-gap: 16px;
}

body {
  background-color: #edeff2;
  font-family: 'Open Sans', sans-serif;
  color: #6a859c;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 38px;
  line-height: 44px;
  font-weight: 700;
}

h2 {
  margin-top: 0px;
  margin-bottom: 10px;
  color: #676770;
  font-size: 32px;
  line-height: 36px;
  font-weight: 300;
  text-align: center;
}

h3 {
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: 'Nunito Sans', sans-serif;
  color: #141447;
  font-size: 36px;
  line-height: 42px;
  font-weight: 800;
  text-align: left;
  text-transform: none;
}

h4 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-family: 'Nunito Sans', sans-serif;
  color: #fff;
  font-size: 32px;
  line-height: 42px;
  font-weight: 800;
  text-align: left;
}

h5 {
  margin-top: 0px;
  margin-bottom: 20px;
  color: #676770;
  font-size: 18px;
  line-height: 20px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
}

h6 {
  margin-top: 0px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 700;
}

p {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: 'Nunito Sans', sans-serif;
  color: #161616;
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  text-align: left;
}

a {
  font-family: 'Nunito Sans', sans-serif;
  color: #05c46b;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  text-decoration: underline;
}

.navigation-link {
  padding-right: 30px;
  padding-left: 30px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  font-family: 'Nunito Sans', sans-serif;
  color: #161616;
  font-size: 14px;
  font-weight: 600;
}

.navigation-link:hover {
  color: #2e9dff;
}

.navigation-link.login {
  display: none;
  background-color: #141447;
  color: #edeff2;
}

.navigation-link.login:hover {
  background-color: #3636a1;
}

.navigation-link.login.w--current:hover {
  background-color: #3636a1;
}

.navigation-bar {
  background-color: #fff;
}

.brand-link {
  padding-top: 16px;
  padding-bottom: 16px;
}

.section {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding: 40px 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  text-align: center;
}

.section.dark-blue {
  padding-bottom: 80px;
  background-color: #3636a1;
}

.section-heading {
  margin-top: 0px;
  margin-bottom: 16px;
}

.section-heading.centered {
  margin-bottom: 10px;
  font-family: 'Nunito Sans', sans-serif;
  color: #141447;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
}

.section-heading.centered.mission {
  margin-bottom: 0px;
  font-size: 36px;
}

.section-title-group {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  margin-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-title-group.pills {
  margin-top: 40px;
  margin-bottom: 0px;
}

.section-title-group.laptop {
  margin-bottom: 20px;
}

.section-body {
    width: 100%;
    max-width: 790px;
    margin-top: 10px;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    text-align: left;
}

.box {
  padding: 15px 15px 15px 0px;
  text-align: left;
}

.box.rightpad {
  padding-right: 140px;
}

.box.hero {
  padding: 0px;
}

.box.hero._2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -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;
}

.box.right {
  text-align: right;
}

.columns {
  position: relative;
  margin-top: 0px;
}

.columns.laptop {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 1000px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.container.internal {
  display: block;
}

.p-symbol {
  position: absolute;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  height: 900px;
}

.slide-contain {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding-bottom: 40px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, hsla(0, 0%, 100%, 0)), color-stop(80%, hsla(0, 0%, 100%, 0.8)));
  background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0) 50%, hsla(0, 0%, 100%, 0.8) 80%);
}

.slide-contain._04 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-image: none;
}

.slide-section {
  overflow: hidden;
  margin-bottom: 0px;
  padding-top: 0px;
  background-color: hsla(0, 0%, 100%, 0);
}

.body {
  background-color: #fff;
}

.slider-heading {
  width: 75%;
  color: #141447;
  font-size: 36px;
  line-height: 54px;
  text-align: right;
}

.slider-heading.center {
  font-weight: 700;
  text-align: center;
}

.slider-heading.center.big {
  margin-top: 60px;
  padding-top: 40px;
  padding-bottom: 20px;
  border-top: 1px solid #141447;
  font-size: 50px;
  font-weight: 600;
}

.paragraph-center {
  text-align: center;
}

.paragraph-center._65percent {
  width: 65%;
  font-size: 20px;
  line-height: 30px;
}

.horizontal {
  display: block;
  margin-bottom: 10px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
}

.image-2 {
  position: static;
  left: 10px;
  top: 10px;
  right: auto;
  bottom: auto;
  width: 700px;
  height: auto;
}

.column {
  position: static;
}

.learn-more-button {
  margin-top: 20px;
  padding: 0px 30px;
  border-style: solid;
  border-width: 2px;
  border-color: #0a253e;
  background-color: #fff;
  color: #0a253e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.link-light {
  display: block;
  margin-bottom: 0px;
  opacity: 1;
  -webkit-transition: color 400ms ease, opacity 400ms ease, -webkit-transform 400ms ease;
  transition: color 400ms ease, opacity 400ms ease, -webkit-transform 400ms ease;
  transition: color 400ms ease, transform 400ms ease, opacity 400ms ease;
  transition: color 400ms ease, transform 400ms ease, opacity 400ms ease, -webkit-transform 400ms ease;
  color: #f0f0f0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.link-light:hover {
  opacity: 1;
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
  color: #8e8e9c;
}

.link-light:active {
  opacity: 0.9;
  -webkit-transform: translate(0px, -1px);
  -ms-transform: translate(0px, -1px);
  transform: translate(0px, -1px);
}

.footer1 {
  margin-bottom: 0px;
  padding-top: 30px;
  border-top: 1px solid rgba(17, 18, 18, 0.06);
  background-color: #fff;
}

._3-col {
  display: inline-block;
  width: 220px;
  margin-right: 20px;
}

._3-col._3-col-last {
  width: 250px;
  margin-right: 0px;
}

.footer-address {
  display: block;
  margin-bottom: 10px;
  opacity: 1;
  -webkit-transition: color 400ms ease, opacity 400ms ease, -webkit-transform 400ms ease;
  transition: color 400ms ease, opacity 400ms ease, -webkit-transform 400ms ease;
  transition: color 400ms ease, transform 400ms ease, opacity 400ms ease;
  transition: color 400ms ease, transform 400ms ease, opacity 400ms ease, -webkit-transform 400ms ease;
  color: #f0f0f0;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
}

.brand-link-footer {
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand-link-footer.w--current {
  position: static;
  display: block;
  float: none;
  clear: none;
}

.home-footer-socicon-wrap {
  margin-right: 20px;
}

.home-footer-socicon-wrap.home-footer-socicon-wrap-last {
  margin-right: 0px;
}

.internal-hero-section {
  padding-top: 242px;
  padding-bottom: 242px;
}

.internal-hero-section.centered {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 340px;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px none #000;
  text-align: center;
}

.internal-hero-section.centered.about {
  background-image: url('../images/health-bkgrd.jpg');
  background-position: 50% 0%;
}

.internal-hero-section.centered.contact {
  height: 200px;
  padding-bottom: 20px;
  background-image: url('../images/health-bkgrd.jpg');
  background-position: 50% 0%;
}

.text-block {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'Nunito Sans', sans-serif;
  color: #161616;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
  text-align: left;
}

.list {
  position: relative;
  width: 500px;
  min-width: 500px;
  margin-top: 10px;
  font-family: 'Nunito Sans', sans-serif;
  color: #161616;
  font-size: 20px;
  line-height: 30px;
  font-weight: 300;
  text-align: left;
}

.list-item {
  margin-bottom: 20px;
}

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

.paragraph-3 {
  width: 500px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.div-block-4 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-right: 60px;
  padding-left: 60px;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.div-block-4.center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -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;
}

.div-block-headline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
  flex: 5
}

.div-block-headline.bookend {
  flex: 1
}

.heading-5 {
  color: #8c0a09;
  font-size: 48px;
  line-height: 60px;
  font-weight: 700;
  text-align: center;
}

.heading-5.counterup {
  font-weight: 700;
}

.div-block-5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
}

.text-block-2 {
  font-family: 'Nunito Sans', sans-serif;
  color: #141447;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  text-align: center;
}

.paragraph-4 {
  font-size: 20px;
  line-height: 30px;
}

.pills-heading {
  margin-top: 0px;
  margin-bottom: 16px;
  font-family: 'Nunito Sans', sans-serif;
  color: #141447;
  font-size: 37px;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
}

.top-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 60px;
  padding-bottom: 60px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #141447;
}

.heading-6 {
  font-family: 'Nunito Sans', sans-serif;
  color: #edeff2;
  font-size: 36px;
  line-height: 50px;
  text-align: center;
}

.button-2 {
  margin-top: 30px;
  padding-right: 40px;
  padding-left: 40px;
  border: 2px solid #edeff2;
  border-radius: 20px;
  background-color: #141447;
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
  font-weight: 700;
}

.button-2:hover {
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(hsla(0, 0%, 100%, 0.1)));
  background-image: linear-gradient(180deg, transparent, hsla(0, 0%, 100%, 0.1));
}

.button-2.hero {
  border-width: 1px;
  background-color: #f0f0f0;
  color: #3636a1;
}

.heading-4-copy {
  margin-bottom: 10px;
  font-family: 'Nunito Sans', sans-serif;
  color: #05c46b;
  font-size: 30px;
  line-height: 30px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-heading-copy {
  margin-bottom: 30px;
  font-family: 'Nunito Sans', sans-serif;
  color: #141447;
  font-size: 40px;
  line-height: 50px;
  font-weight: 700;
  text-align: left;
}

.address {
  display: block;
  margin-top: 40px;
  margin-bottom: 20px;
  opacity: 1;
  -webkit-transition: color 400ms ease, opacity 400ms ease, -webkit-transform 400ms ease;
  transition: color 400ms ease, opacity 400ms ease, -webkit-transform 400ms ease;
  transition: color 400ms ease, transform 400ms ease, opacity 400ms ease;
  transition: color 400ms ease, transform 400ms ease, opacity 400ms ease, -webkit-transform 400ms ease;
  color: #161616;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
}

.link-light-copy {
  display: block;
  margin-bottom: 10px;
  opacity: 1;
  -webkit-transition: color 400ms ease, opacity 400ms ease, -webkit-transform 400ms ease;
  transition: color 400ms ease, opacity 400ms ease, -webkit-transform 400ms ease;
  transition: color 400ms ease, transform 400ms ease, opacity 400ms ease;
  transition: color 400ms ease, transform 400ms ease, opacity 400ms ease, -webkit-transform 400ms ease;
  color: #161616;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}

.link-light-copy:hover {
  opacity: 1;
  -webkit-transform: translate(0px, -2px);
  -ms-transform: translate(0px, -2px);
  transform: translate(0px, -2px);
  color: #111212;
}

.link-light-copy:active {
  opacity: 0.9;
  -webkit-transform: translate(0px, -1px);
  -ms-transform: translate(0px, -1px);
  transform: translate(0px, -1px);
}

.text-block-4 {
  margin-bottom: 40px;
  font-family: 'Nunito Sans', sans-serif;
  color: #141447;
  font-size: 30px;
  line-height: 40px;
}

.div-block-9 {
  margin-left: 20px;
}

.image-5 {
  height: 50px;
}

.text-block-5 {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 0px;
  font-family: 'Nunito Sans', sans-serif;
  color: #141447;
  font-size: 14px;
  text-align: center;
}

.link {
  color: #141447;
  font-size: 14px;
}

.utility-page-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 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;
}

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.hero-paragraph {
  color: #f0f0f0;
}

.hero-paragraph.small {
  font-size: 16px;
  line-height: 22px;
}

.hero-heading-white {
  margin-top: 0px;
  margin-bottom: 16px;
  font-family: 'Nunito Sans', sans-serif;
  color: #f0f0f0;
  font-size: 37px;
  line-height: 50px;
  font-weight: 400;
  text-align: left;
}

.cta8-grid {
  display: -ms-grid;
  display: grid;
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  grid-column-gap: 36px;
  grid-row-gap: 0px;
  -ms-grid-columns: repeat(20, 1fr);
  grid-template-columns: repeat(20, 1fr);
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.quote-grid {
  display: -ms-grid;
  display: grid;
  width: 100%;
  max-width: 1200px;
  margin-top: 30px;
  margin-right: auto;
  margin-left: auto;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  grid-column-gap: 60px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.hero-div-4column {
  padding-top: 10px;
  -ms-grid-column: span 5;
  grid-column-start: span 5;
  -ms-grid-column-span: 5;
  grid-column-end: span 5;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

.hero-div-4column-bottom {
  padding-bottom: 10px;
  -ms-grid-column: span 5;
  grid-column-start: span 5;
  -ms-grid-column-span: 5;
  grid-column-end: span 5;
  -ms-grid-row: span -1;
  grid-row-start: -1;
  -ms-grid-row-span: 1;
  grid-row-end: -1;
}

.hero-div-5column {
  padding-top: 10px;
  border-top: 1px solid #fff;
  -ms-grid-column: span 4;
  grid-column-start: span 4;
  -ms-grid-column-span: 4;
  grid-column-end: span 4;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

.text-block-6 {
  font-family: 'Nunito Sans', sans-serif;
  color: #f0f0f0;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
}

.footer-2 {
  background-color: #141447;
  padding-top: 50px;
  padding-bottom: 50px;
}

.wrap-2 {
  display: block;
  width: 940px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

.wrap-2.w50-spcbetween {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #fff;

}

.wrap-2.w20 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
}

.home-footer-notices {
  font-size: 11px;
  font-weight: 400px;
  color: #fff;
}

.home-footer-socicon-2 {
  opacity: 1;
}

.home-footer-socicon-2:hover {
  opacity: 1;
}

.home-footer-socicon-2:active {
  opacity: 0.85;
}

.div-block-10 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.div-block-11 {
  margin-left: 20px;
}

._5-col-2 {
  display: inline-block;
  width: 380px;
  margin-right: 20px;
}

._7-col {
  display: inline-block;
  width: 540px;
  margin-right: 20px;
}

._7-col._7-col-last {
  display: inline-block;
  margin-right: 0px;
}

.text-block-small {
  margin-top: 20px;
  margin-bottom: 20px;
  font-family: 'Nunito Sans', sans-serif;
  color: #161616;
  font-size: 18px;
  line-height: 24px;
  font-weight: 300;
  text-align: left;
}

._4-col {
  display: inline-block;
  width: 300px;
  margin-right: 20px;
}

.div-block-12 {
  position: relative;
  padding: 10px;
  border: 1px solid #8e8e9c;
  background-color: #fff;
}

.paragraph-footer {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.text-block-7 {
  color: #141447;
  font-weight: 700;
}

.text-block-headline {
  color: #141447;
  font-weight: 500;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 18px;
}

.button-3 {
  padding-right: 20px;
  padding-left: 20px;
  border: 1px solid #8e8e9c;
  border-radius: 20px;
  background-color: #fff;
  -webkit-transition: background-color 200ms ease;
  transition: background-color 200ms ease;
  color: #141447;
  font-weight: 700;
}

.button-3:hover {
  background-color: #141447;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(hsla(0, 0%, 100%, 0.1)));
  background-image: linear-gradient(180deg, transparent, hsla(0, 0%, 100%, 0.1));
  color: #f0f0f0;
}

.grid-faq {
  display: none;
  width: 100%;
  max-width: 790px;
  margin-top: 10px;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.accordion-item {
  position: relative;
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: hsla(0, 0%, 100%, 0.15);
  background-color: transparent;
}

.accordion-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 28px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: padding 200ms cubic-bezier(.25, .46, .45, .94);
  transition: padding 200ms cubic-bezier(.25, .46, .45, .94);
  cursor: pointer;
}

.accordion-header:hover {
  padding-left: 34px;
}

.heading-accordion {
  margin-bottom: 0px;
  font-family: 'Nunito Sans', sans-serif;
  color: #141447;
  font-size: 16px;
}

.icon-accordion {
  width: 20px;
  height: 20px;
  margin-left: 10px;
}

.accordion-content {
  overflow: hidden;
  padding-right: 28px;
  padding-left: 28px;
}

.into-view-fill {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 100;
  width: 100%;
  height: 0%;
  margin-top: auto;
  background-color: #141414;
}

.paragraph-6 {
  font-size: 16px;
  line-height: 24px;
}

.column-4 {
  padding-left: 0px;
}

.image-6 {
  max-width: 120%;
}

.playpause {
  position:absolute;
  top:65%;
  left:50%;
  margin:auto;
  background-size:contain;
  background-position: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.laptop_frame {
  position: absolute;
  width: 920px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  -webkit-transform: translate(-50%, -58%);
  -ms-transform: translate(-50%, -58%);
  z-index: -1
}

.explainer {
  width: 720px;
  height: 405px;
  margin-bottom: 100px;
}

@media screen and (max-width: 1071px) {
  .navigation-link {
    color: hsla(0, 0%, 100%, 0.52);
  }

  .navigation-link.w--current {
    color: #fff;
  }

  .hamburger-button.w--open {
    background-color: #3b99d9;
  }

  .navigation-menu {
    background-color: #3b99d9;
  }

  .box.rightpad {
    padding-right: 15px;
  }

  .container {
    width: 730px;
  }

  .slide-section {
    overflow: hidden;
  }

  .slider-heading {
    width: 90%;
    font-size: 30px;
    line-height: 48px;
  }

  .image-2 {
    position: relative;
  }

  .footer1 {
    text-align: center;
  }

  ._3-col {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }

  .paragraph-3 {
    width: auto;
  }

  .div-block-headline {
    flex: 50
  }

  .heading-5 {
    font-size: 38px;
  }

  .text-block-2 {
    font-size: 18px;
    line-height: 24px;
  }

  .paragraph-4 {
    font-size: 22px;
    line-height: 32px;
  }

  .pills-heading {
    font-size: 32px;
  }

  .hero-heading-white {
    font-size: 32px;
  }

  .cta8-grid {
    width: 100%;
    max-width: 738px;
    grid-column-gap: 24px;
    grid-row-gap: 30px;
    -ms-grid-columns: repeat(12, 1fr);
    grid-template-columns: repeat(12, 1fr);
  }

  .wrap-2 {
    width: 645px;
  }

  .wrap-2.w50-spcbetween {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .wrap-2.w20 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .home-footer-socicons-wrap-2 {
    margin-top: 20px;
  }

  ._5-col-2 {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }

  ._7-col {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
  }

  ._4-col {
    display: inline-block;
    width: 100%;
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
  }

  .paragraph-footer {
    width: auto;
  }

  .image-6 {
    max-width: 110%;
  }
}

@media screen and (max-width: 767px) {
  .box {
    margin-bottom: 30px;
  }

  .container {
    width: 550px;
  }

  .p-symbol {
    height: auto;
  }

  .slider-heading {
    width: 100%;
    font-size: 24px;
    line-height: 32px;
  }

  .link-light {
    text-align: left;
  }

  ._3-col._3-col-last {
    width: 100%;
    margin-left: 30px;
  }

  .footer-address {
    text-align: left;
  }

  .brand-link-footer.w--current {
    padding-left: 0px;
  }

  .internal-hero-section.centered {
    padding-top: 119px;
    padding-bottom: 119px;
  }

  .internal-hero-section.centered.about {
    padding-bottom: 10px;
  }

  .internal-hero-section.centered.contact {
    padding-bottom: 10px;
  }

  .list {
    width: 450px;
    min-width: 450px;
  }

  .heading-5 {
    font-size: 32px;
    line-height: 40px;
  }

  .heading-6 {
    font-size: 28px;
    line-height: 40px;
  }

  .hero-heading-copy {
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 50px;
  }

  .container-3 {
    padding-right: 10px;
    padding-left: 10px;
  }

  .address {
    display: none;
    text-align: left;
  }

  .link-light-copy {
    display: none;
    text-align: left;
  }

  .cta8-grid {
    max-width: none;
    grid-column-gap: 20px;
    -ms-grid-columns: repeat(12, 1fr);
    grid-template-columns: repeat(12, 1fr);
  }

  .wrap-2 {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .home-footer-socicons-wrap-2 {
    margin-top: 20px;
  }

  .image-6 {
    max-width: 100%;
  }

  .column-5 {
    padding-left: 20px;
  }
}

@media screen and (max-width: 479px) {
  .container {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }

  .slide-contain {
    padding-bottom: 10px;
  }

  .image-2 {
    left: -20px;
  }

  .learn-more-button {
    font-size: 14px;
  }

  .link-light {
    text-align: left;
  }

  ._3-col._3-col-last {
    width: 100%;
    margin-left: 0px;
  }

  .footer-address {
    text-align: left;
  }

  .internal-hero-section.centered {
    padding-top: 60px;
    padding-bottom: 60px;
    background-position: 70% 50%;
  }

  .list {
    width: 300px;
    min-width: 300px;
  }

  .paragraph-4 {
    font-size: 18px;
    line-height: 28px;
  }

  .hero-heading-copy {
    line-height: 50px;
  }

  .address {
    text-align: left;
  }

  .link-light-copy {
    text-align: left;
  }

  .cta8-grid {
    grid-column-gap: 12px;
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .heading-accordion {
    text-align: left;
  }

  .image-6 {
    max-width: 110%;
  }
}

@media screen and (max-width: 1071px) {
  .hero-div-4column {
    -ms-grid-column: span 6;
    grid-column-start: span 6;
    -ms-grid-column-span: 6;
    grid-column-end: span 6;
  }

  .hero-div-5column {
    -ms-grid-column: span 4;
    grid-column-start: span 4;
    -ms-grid-column-span: 4;
    grid-column-end: span 4;
  }

  .laptop_frame {
    display: none
  }
  
  .explainer {
    border:rgba(17, 18, 18, 0.06) 2px outset
  }
}

@media screen and (max-width: 767px) {
  .hero-div-4column {
    -ms-grid-column: span 4;
    grid-column-start: span 4;
    -ms-grid-column-span: 4;
    grid-column-end: span 4;
  }
  .hero-div-5column {
    -ms-grid-column: span 4;
    grid-column-start: span 4;
    -ms-grid-column-span: 4;
    grid-column-end: span 4;
  }

  .w-slider-mask {
    height: 80px;
  }

  .explainer {
    width: 480px;
    height: 270px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 479px) {
  .hero-div-4column {
    -ms-grid-column: span 4;
    grid-column-start: span 4;
    -ms-grid-column-span: 4;
    grid-column-end: span 4;
  }
  .hero-div-5column {
    -ms-grid-column: span 4;
    grid-column-start: span 4;
    -ms-grid-column-span: 4;
    grid-column-end: span 4;
  }

  .w-slider-mask {
    height: 80px;
  }
  .explainer {
    width: 320px;
    height: 180px;
    margin-bottom: 50px;
  }
}

@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-ExtraLightItalic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-ExtraBold.ttf') format('truetype'), url('../fonts/NunitoSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-ExtraBoldItalic.ttf') format('truetype'), url('../fonts/NunitoSans-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-BlackItalic.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}