.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 {
  font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  color: #596671;
  font-size: 14px;
  line-height: 20px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 36px;
  font-weight: 900;
}

p {
  margin-bottom: 15px;
}

li {
  margin-bottom: 20px;
}

.section {
  min-height: 100vh;
}

.section.header {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 21px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -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: #000;
}

.menu-btn {
  position: fixed;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 94px;
  height: 94px;
  -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: rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

.logo-container {
  position: fixed;
  left: 0%;
  top: 0%;
  right: auto;
  bottom: auto;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 94px;
  height: 94px;
  padding: 20px;
  -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;
}

.menu-container {
  position: fixed;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 99;
  display: none;
  padding: 42px;
  -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: #fff;
}

.close-btn {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 94px;
  height: 94px;
  -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;
  cursor: pointer;
}

.menu-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 800px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.menu-item {
  width: 200px;
  height: 200px;
  margin: 10px;
  padding: 10px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transition: background-color 200ms ease-in;
  transition: background-color 200ms ease-in;
  text-decoration: none;
}

.menu-item.audacious {
  border-right-color: #2743a3;
  border-bottom-color: #2743a3;
  color: #2743a3;
}

.menu-item.audacious:hover {
  background-color: #2743a3;
  color: #fff;
}

.menu-item.audacious.w--current {
  background-color: #2743a3;
  color: #fff;
}

.menu-item.barriers {
  border-right-color: #c0da65;
  border-bottom-color: #c0da65;
  color: #c0da65;
}

.menu-item.barriers:hover {
  background-color: #c0da65;
  color: #fff;
}

.menu-item.barriers.w--current {
  background-color: #c0da65;
  color: #fff;
}

.menu-item.black-women {
  border-right-color: #ff6271;
  border-bottom-color: #ff6271;
  color: #ff6271;
}

.menu-item.black-women:hover {
  background-color: #ff6271;
  color: #fff;
}

.menu-item.black-women.w--current {
  background-color: #ff6271;
  color: #fff;
}

.menu-item.empower {
  border-right-color: #ff4c1e;
  border-bottom-color: #ff4c1e;
  color: #ff4c1e;
}

.menu-item.empower:hover {
  background-color: #ff4c1e;
  color: #fff;
}

.menu-item.empower.w--current {
  background-color: #ff4c1e;
  color: #fff;
}

.menu-item.alone {
  border-right-color: #30557a;
  border-bottom-color: #30557a;
  color: #30557a;
}

.menu-item.alone:hover {
  background-color: #30557a;
  color: #fff;
}

.menu-item.alone.w--current {
  background-color: #30557a;
  color: #fff;
}

.menu-item.entrepreneurs {
  border-right-color: #31b7e1;
  border-bottom-color: #31b7e1;
  color: #31b7e1;
}

.menu-item.entrepreneurs:hover {
  background-color: #31b7e1;
  color: #fff;
}

.menu-item.entrepreneurs.w--current {
  background-color: #31b7e1;
  color: #fff;
}

.menu-item.silicon {
  border-right-color: #ffc533;
  border-bottom-color: #ffc533;
  color: #ffc533;
}

.menu-item.silicon:hover {
  background-color: #ffc533;
  color: #fff;
}

.menu-item.silicon.w--current {
  background-color: #ffc533;
  color: #fff;
}

.menu-item.money {
  border-right-color: #3fb26f;
  border-bottom-color: #3fb26f;
  color: #3fb26f;
}

.menu-item.money:hover {
  background-color: #3fb26f;
  color: #fff;
}

.menu-item.money.w--current {
  background-color: #3fb26f;
  color: #fff;
}

.menu-item.crazy {
  border-right-color: #ff7323;
  border-bottom-color: #ff7323;
  color: #ff7323;
}

.menu-item.crazy:hover {
  background-color: #ff7323;
  color: #fff;
}

.menu-item.crazy.w--current {
  background-color: #ff7323;
  color: #fff;
}

.menu-text {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.section-header {
  position: relative;
  min-height: 100vh;
  margin-bottom: 140px;
  padding-right: 20px;
  padding-left: 20px;
}

.section-header.intro {
  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;
  background-image: url('../images/intro-photo.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-header.audacious {
  position: relative;
  background-image: url('../images/audacious_photo-min.jpg');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-header.barriers {
  background-image: url('../images/barriers-min.jpg');
  background-position: 50% 10%;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-header.black-women {
  background-image: url('../images/blackwomen-min.jpg');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-header.empower {
  background-image: url('../images/empower-min.jpg');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-header.alone {
  background-image: url('../images/alone-min.jpg');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-header.entreprenuers {
  background-image: url('../images/entreprenuer-min.jpg');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-header.silicon {
  background-image: url('../images/silicon.jpg');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-header.money {
  background-image: url('../images/intromoney-min.jpg');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-header.crazy {
  background-image: url('../images/crazy-min.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

.intro-heading {
  color: #fff;
  font-size: 120px;
  line-height: 1;
  text-align: center;
}

.truth-container {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: -42px;
  max-width: 980px;
  margin-top: -5%;
  margin-right: auto;
  margin-left: auto;
  padding: 65px 40px;
  color: #fff;
  text-align: center;
}

.truth-container.bg-audacious {
  background-color: #2743a3;
}

.truth-container.bg-barriers {
  background-color: #c0da65;
}

.truth-container.bg-black-women {
  background-color: #ff6271;
}

.truth-container.bg-empower {
  background-color: #ff4c1e;
}

.truth-container.bg-alone {
  background-color: #30557a;
}

.truth-container.bg-entrepreneurs {
  background-color: #31b7e1;
}

.truth-container.bg-silicon {
  background-color: #ffc533;
}

.truth-container.bg-crazy {
  background-color: #ff7323;
}

.truth-container.bg-money {
  background-color: #3fb26f;
}

.truth-count {
  position: absolute;
  top: -16px;
  right: 0px;
  font-size: 29px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 14px;
  text-transform: uppercase;
}

.truth-count.barriers-color {
  color: #c0da65;
}

.truth-count.audacious-color {
  color: #2743a3;
}

.truth-count.alone-color {
  color: #30557a;
}

.truth-count.entrepreneurs-color {
  color: #31b7e1;
}

.truth-count.black-women-color {
  color: #ff6271;
}

.truth-count.empower-color {
  color: #ff4c1e;
}

.truth-count.money-color {
  color: #3fb26f;
}

.truth-count.money-color {
  color: #ffc533;
}

.truth-count.green-color {
  color: #3fb26f;
}

.truth-title {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 60px;
  line-height: 1.3;
}

.truth-text {
  font-size: 24px;
  line-height: 1.3;
  font-style: italic;
}

.body {
  font-family: 'Aktifo a', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.content-container {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding: 100px 21px;
}

.content-container.header {
  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;
}

.stripe {
  position: relative;
  z-index: 1;
  height: 62px;
  max-width: 1038px;
  margin-right: auto;
  margin-left: auto;
}

.stripe.move-up {
  margin-top: -31px;
}

.stripe.long {
  max-width: 100%;
}

.stripe.long.overlap-bottom {
  margin-bottom: -31px;
}

.stripe.long.barriers.area-of-focus {
  width: 100%;
  height: 62px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.stripe.long.overlap-top {
  margin-top: -31px;
}

.stripe.long.white.grindset-stripe {
  width: 125px;
  height: 100%;
  -webkit-transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg);
  transform: rotateX(0deg) rotateY(180deg) rotateZ(0deg);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.stripe.grid-block-top {
  width: 100%;
  height: 52px;
}

.stripe.grid-block-bottom {
  width: 100%;
  height: 52px;
}

.stripe.entrepreneur-feature-stripe {
  width: 112%;
}

.intro-content-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 42px;
  margin-bottom: 42px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #a2b5bf;
  font-weight: 900;
}

.header-main-image {
  max-width: 65vw;
}

.header-main-text {
  max-width: 475px;
  margin-top: 50px;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  color: #ff6271;
}

.scroll-icon {
  position: absolute;
  left: auto;
  top: auto;
  right: auto;
  bottom: 30px;
}

.active-section-indicator {
  position: absolute;
  left: -150px;
  top: 0%;
  right: auto;
  bottom: 0%;
  width: 120px;
}

.truth-footer {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 60px;
}

.section-content {
  position: relative;
  max-width: 980px;
  margin-top: 42px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-bottom: 66px;
  padding-left: 20px;
}

.section-small-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
}

.section-small-title.audacious-color {
  color: #2743a3;
}

.section-small-title.color-crazy {
  color: #ff7323;
}

.section-small-title.color-money {
  color: #3fb26f;
}

.section-small-title.color-silicon {
  color: #ffc533;
}

.section-small-title.centered {
  text-align: center;
}

.section-small-title.color-entrepreneur {
  color: #31b7e1;
}

.section-small-title.color-alone {
  color: #30557a;
}

.section-small-title.color-empower {
  color: #ff4c1e;
}

.image-bg.audacious {
  margin-right: 42px;
  margin-bottom: 0px;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-image: url('../images/ROR1.jpg');
  background-position: 50% 38%;
  background-size: cover;
  background-repeat: no-repeat;
}

.section-medium-title {
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
}

.section-medium-title.audacious-color {
  margin-top: 42px;
  margin-bottom: 42px;
  color: #2743a3;
  text-align: center;
}

.section-medium-title.color-entrepreneur {
  color: #31b7e1;
}

.section-medium-title.color-alone {
  color: #30557a;
}

.section-medium-title.color-empower {
  color: #ff4c1e;
}

.section-medium-title.city-wide-reach-title {
  position: absolute;
  left: 5%;
  top: auto;
  right: 0%;
  bottom: -3%;
  z-index: 2;
  color: #fff;
}

.section-medium-title.color-black-women.center {
  text-align: center;
}

.section-medium-title.color-money {
  color: #3fb26f;
}

.section-medium-title.color-money.investment-breakdown-title {
  position: absolute;
  max-width: 400px;
  font-size: 55px;
}

._3-flex-container {
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

._3-flex-container.bottom-margined {
  margin-bottom: 84px;
}

._3-flex-container.bottom-margined.ecosystem-header {
  padding-right: 20px;
  padding-left: 20px;
}

._3-flex-container.center-horizontal {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

._3-flex-container.center-horizontal.no-wrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

._3-flex-container.bottom-aligned {
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

._3-flex-container.margin-bottom {
  margin-bottom: 100px;
}

._3-flex-container.no-wrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.blue-objective-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 296px;
  height: 296px;
  padding: 15px 30px 38px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-radius: 22px;
  background-color: #2743a3;
  color: #fff;
  font-size: 24px;
  line-height: 32px;
  font-weight: 900;
  text-align: center;
}

._980-container {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}

._980-container.center-text {
  text-align: center;
}

._980-container.center-text.color-white {
  color: #fff;
}

._980-container.center-text.color-white.z-top {
  position: relative;
  z-index: 2;
}

._980-container._40-margin {
  margin-top: 40px;
  margin-bottom: 40px;
}

._980-container._40-margin.no-left-right-marg {
  padding-right: 0px;
  padding-left: 0px;
}

._980-container.strip-above {
  margin-top: 42px;
  padding-right: 0px;
  padding-left: 0px;
}

.objective-number {
  margin-bottom: 22px;
  color: #c0da65;
}

.objective-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: 500;
}

.full-width-background {
  position: relative;
}

.full-width-background.audacious-color {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #2743a3;
  color: #fff;
}

.full-width-background.area-of-focus {
  position: relative;
  padding-top: 95px;
  padding-bottom: 95px;
}

.full-width-background.barriers-start-here {
  padding-top: 130px;
  padding-bottom: 100px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0.7))), url('../images/epi_building-min.jpg');
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/epi_building-min.jpg');
  background-position: 0px 0px, 50% 50%;
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
}

.full-width-background.crazy-full-image {
  height: 785px;
  background-image: url('../images/RiseOfRest1381.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.full-width-background.crazy-color {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #ff7323;
  color: #fff;
}

.full-width-background.black-color {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #000;
  color: #fff;
}

.full-width-background.black-color.vh-100 {
  min-height: 100vh;
  padding-top: 215px;
  padding-bottom: 215px;
}

.full-width-background.black-color.vh-100.flex {
  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;
  color: #ff6271;
  text-align: center;
}

.full-width-background.money-full-image {
  height: 785px;
  background-image: url('../images/different-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.full-width-background.money-color {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #3fb26f;
  color: #fff;
}

.full-width-background.doing-this-differently {
  position: relative;
  padding-top: 95px;
  padding-bottom: 95px;
}

.full-width-background.total-investment-breakdown {
  position: relative;
  padding-top: 95px;
  padding-bottom: 95px;
}

.full-width-background.lessons-learned {
  position: relative;
  padding-top: 95px;
  padding-bottom: 95px;
}

.full-width-background.silicon-color {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #ffc533;
  color: #fff;
}

.full-width-background.industry-focus {
  position: relative;
  padding-top: 95px;
  padding-bottom: 95px;
}

.full-width-background.padding {
  padding-top: 264px;
  padding-bottom: 264px;
}

.full-width-background.entrepreneur-color {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #31b7e1;
  color: #fff;
}

.full-width-background.entrepreneur-color.grindset {
  overflow: hidden;
}

.full-width-background.partners-with-purpose {
  position: relative;
  padding-top: 95px;
  padding-bottom: 95px;
}

.full-width-background.the-800-initiative {
  background-image: url('../images/boo-min.jpg');
  background-position: 0% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.full-width-background.whats-a-hub {
  position: relative;
  padding-top: 95px;
  padding-bottom: 95px;
}

.full-width-background.empower-color {
  padding-top: 0px;
  padding-bottom: 100px;
  background-color: #ff4c1e;
  color: #fff;
}

.full-width-background.city-wide-reach-map {
  height: 800px;
  background-image: url('../images/Memphis_Map-min.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.full-width-background.alone-color {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #30557a;
  color: #fff;
}

.full-width-background.alone-color.no-padding {
  padding-top: 0px;
  padding-bottom: 0px;
}

.full-width-background.invest-in-women {
  position: relative;
  padding-top: 95px;
  padding-bottom: 95px;
}

.full-width-background.black-women-color {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #ff6271;
  color: #fff;
}

.full-width-background.barriers-color {
  padding-top: 100px;
  padding-bottom: 80px;
  background-color: #c0da65;
  color: #fff;
}

.full-width-background.text-color {
  background-color: #596671;
  color: #fff;
}

.big-bet {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.big-bet._1 {
  max-width: 247px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.big-bet._2 {
  max-width: 309px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.big-bet._3 {
  max-width: 309px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.big-bet-title {
  margin-bottom: 10px;
  font-size: 52px;
  line-height: 1.3;
  font-weight: 900;
}

.big-bet-sub-title {
  color: #c0da65;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}

.big-bet-bullet-text {
  margin-bottom: 32px;
  padding-right: 5px;
  padding-left: 32px;
  background-image: url('../images/bullet.png');
  background-position: 0px 10px;
  background-size: 12px 12px;
  background-repeat: no-repeat;
}

.dotted-divider {
  width: 1px;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-right: 3px dotted #d8d8da;
}

.area-of-focus-text {
  max-width: 509px;
  padding-right: 67px;
  padding-left: 53px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #596671;
  font-size: 18px;
  font-style: italic;
}

.area-of-focus-title {
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #2743a3;
  font-size: 33px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.area-of-focus-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 65px;
  padding-bottom: 53px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 3px solid #d8d8da;
}

.area-of-focus-container.last {
  margin-bottom: 0px;
  border-bottom-style: none;
}

.five-areas-title-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 80px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.area-of-focus-left-title {
  z-index: 2;
  margin-right: 60px;
  margin-left: 60px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  color: #2743a3;
  font-size: 59px;
  line-height: 1;
  font-weight: 900;
  text-align: center;
}

.numbers-grid-title {
  margin-top: 31px;
  margin-bottom: 54px;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
}

.numbers-grid-block-2-number {
  color: #c0da65;
  font-size: 126px;
  line-height: 1;
  text-align: center;
}

.numbers-grid-block._2 {
  padding: 39px 15px 79px;
  border-top: 3px dashed #c0da65;
  border-bottom: 3px dashed #c0da65;
}

.numbers-grid-block._3 {
  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: 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;
  background-color: #c0da65;
}

.numbers-grid-block._4 {
  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;
}

.numbers-grid-block._5 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 3px dashed #c0da65;
}

.numbers-grid-block._6 {
  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: 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;
  background-color: #c0da65;
}

.numbers-grid-block._7 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 3px dashed #c0da65;
  border-bottom: 3px dashed #c0da65;
}

.numbers-grid-block._8 {
  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;
}

.numbers-grid-block-2-text {
  line-height: 1.7;
  text-align: center;
}

.numbers-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-areas: ".";
  -ms-grid-columns: 3.75fr 0px 1.25fr 0px 5fr;
  grid-template-columns: 3.75fr 1.25fr 5fr;
  -ms-grid-rows: auto 0px auto 0px auto 0px auto 0px auto;
  grid-template-rows: auto auto auto auto auto;
}

.color-audacious {
  color: #2743a3;
}

.numbers-grid-block-3-number {
  position: relative;
  display: block;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
  color: #fff;
  font-size: 88px;
  line-height: 1;
  text-align: center;
}

.dollar-symbol {
  display: inline-block;
  -webkit-transform: translate(0px, -42px);
  -ms-transform: translate(0px, -42px);
  transform: translate(0px, -42px);
  color: #2743a3;
  font-size: 65px;
  line-height: 1;
}

.dollar-symbol.color-barriers._8 {
  -webkit-transform: translate(0px, -25px);
  -ms-transform: translate(0px, -25px);
  transform: translate(0px, -25px);
  font-size: 48px;
}

.numbers-grid-block-3-text {
  font-size: 24px;
  line-height: 1.7;
  text-align: center;
}

.numbers-grid-block-content {
  padding: 15px 25px;
}

.numbers-grid-block-content._8 {
  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;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.numbers-grid-block-4-number {
  margin: 42px 30px;
  color: #c0da65;
  font-size: 70px;
  line-height: 1;
  text-align: center;
}

.numbers-grid-block-4-text {
  font-size: 18px;
  line-height: 1.7;
}

.numbers-grid-block-5-number {
  margin: 42px 30px;
  color: #c0da65;
  font-size: 70px;
  line-height: 1;
  text-align: center;
}

.numbers-grid-block-5-text {
  font-size: 18px;
  line-height: 1.7;
}

.numbers-grid-block-6-text {
  font-size: 24px;
  line-height: 1.7;
  text-align: center;
}

.numbers-grid-block-6-number {
  color: #2743a3;
  font-size: 127px;
  line-height: 1;
  text-align: center;
}

.numbers-grid-block-7-number {
  margin: 42px 30px;
  color: #c0da65;
  font-size: 70px;
  line-height: 1;
  text-align: center;
}

.numbers-grid-block-7-text {
  font-size: 18px;
  line-height: 1.5;
  text-align: left;
}

.numbers-grid-block-corner {
  width: 37px;
  height: 37px;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  border-right: 3px solid #c0da65;
  border-bottom: 3px solid #c0da65;
}

.numbers-grid-block-8-number {
  color: #fff;
  font-size: 80px;
  line-height: 1;
  text-align: center;
}

.color-barriers {
  color: #c0da65;
}

.color-barriers._24-bold {
  font-size: 24px;
  font-weight: 900;
}

.numbers-grid-block-8-text {
  font-size: 24px;
  line-height: 1.7;
  text-align: left;
}

.start-here-block {
  position: relative;
  max-width: 465px;
  margin-right: auto;
  margin-left: auto;
  padding: 90px 0px 60px;
  border-style: solid;
  border-width: 0px 3px 3px;
  border-color: #c0da65;
  color: #fff;
  font-size: 21px;
}

.start-here-block-title {
  padding-right: 20px;
  padding-left: 20px;
  font-size: 64px;
  line-height: 1;
  font-style: italic;
  text-align: center;
}

.crazy-vision-title {
  position: relative;
  top: -70px;
  z-index: 1;
  color: #ff7323;
  font-size: 100px;
  line-height: 1.3;
  font-weight: 900;
  text-align: center;
}

.leslie-circle {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: auto;
  z-index: 1;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-image: url('../images/Leslie-Lynn-Smith-Headshot-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.outro-content-bottom {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 42px;
  margin-bottom: 42px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
  font-weight: 900;
}

._955-containerr {
  max-width: 997px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 21px;
  padding-left: 21px;
}

.outro-text {
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 25px;
  line-height: 1.5;
}

.outro-text.smaller {
  font-size: 21px;
  line-height: 31px;
}

.outro-text.smaller.grey {
  color: #37393f;
}

.color-black-women {
  color: #ff6271;
}

.color-black-women.footer-link {
  text-decoration: none;
}

.thank-you-text {
  margin-top: 58px;
}

.crazy-vision-text-block {
  margin-bottom: 64px;
}

.crazy-vision-sub-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.crazy-vision-icon {
  margin-right: 21px;
}

.money-differently-title {
  position: relative;
  z-index: 1;
  margin-top: -212px;
  color: #3fb26f;
  font-size: 100px;
  line-height: 1.3;
  font-weight: 900;
  text-align: center;
}

.text-block {
  margin-top: 42px;
  margin-bottom: 42px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

._35x {
  margin-top: 42px;
  margin-right: 100px;
}

.entrepreneur-feature-image {
  width: 390px;
  height: 390px;
  border-radius: 50%;
}

.entrepreneur-feature-image.brit {
  background-image: url('../images/BritMcDaniel6-min.jpg');
  background-position: 0% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.entrepreneur-feature-image.angel {
  z-index: 0;
  background-image: url('../images/Angel3-min.jpg');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.entrepreneur-feature-image.idicula {
  background-image: url('../images/IdiculaMatthew5-min.jpg');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.entrepreneur-feature-image.ken {
  background-image: url('../images/KenSills4-min.jpg');
  background-position: 0px 0px;
  background-size: cover;
  background-repeat: no-repeat;
}

.entrepreneur-feature-image.esra {
  background-image: url('../images/EsraRoan_Somavac2-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.entrepreneur-feature-image.jessica {
  background-image: url('../images/JESSICA-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.entrepreneur-feature-image.jairo {
  background-image: url('../images/Jairo-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.entrepreneur-feature-image.kayla {
  background-image: url('../images/KaylaGraff6-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.entrepreneur-feature-image.erica {
  background-image: url('../images/EricaPlybeah1-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.entrepreneur-feature-image.trinette {
  background-image: url('../images/trinette.jpg');
  background-position: 0% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.alone-feature {
  font-size: 25px;
  font-style: italic;
}

.alone-feature.color-alone {
  color: #30557a;
}

.entrepreneur-feature-text {
  width: 115%;
  margin-bottom: 10px;
  font-size: 35px;
  line-height: 1.3;
  font-style: italic;
  font-weight: 900;
}

.entrepreneur-feature-text-wrapper {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.section-large-title {
  font-size: 83px;
  line-height: 1;
  font-weight: 900;
}

.section-large-title.color-money {
  color: #3fb26f;
}

.section-large-title.color-silicon {
  color: #ffc533;
}

.section-large-title.color-entrepreneur {
  color: #31b7e1;
}

.section-large-title.color-alone {
  color: #30557a;
}

.section-large-title.color-empower {
  color: #ff4c1e;
}

.lessons-learned-text-block {
  max-width: 305px;
  margin-bottom: 64px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.lessons-learned-text-block.stretch-width {
  max-width: 46%;
}

.margin-top-text {
  margin-top: 20px;
}

.margin-top-text.small-text {
  font-size: 18px;
  line-height: 1.6;
}

.margin-top-text.margin-bottom-text {
  margin-bottom: 20px;
}

.margin-top-text.text-24 {
  font-size: 24px;
  line-height: 39px;
}

.margin-top-text.margin-bottom-42 {
  margin-bottom: 42px;
}

.margin-top-text.flex-left {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.margin-top-text.flex-middle {
  padding-right: 42px;
  padding-left: 42px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.margin-top-text.flex-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pathway-text-block {
  max-width: none;
  margin-bottom: 42px;
}

.industry-focus-text-block {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.industry-focus-logo-block {
  margin-right: 100px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.industry-focus-small-title {
  font-size: 32px;
  line-height: 1;
  font-style: italic;
}

.industry-focus-large-title {
  font-size: 52px;
  line-height: 1.3;
  font-style: italic;
  font-weight: 900;
}

.industry-focus-title-block {
  color: #ffc533;
}

.industry-focus-logo {
  display: block;
  margin: 40px auto;
}

.recent-company-wins-grid {
  margin-top: 100px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-areas: ".";
}

.company-wins-block {
  padding: 60px;
  text-align: center;
}

.dashed-border-bottom {
  border-bottom: 3px dashed #000;
}

.dashed-border-bottom.color-silicon {
  border-bottom-color: #ffc533;
}

.dashed-border-bottom.color-barriers {
  border-bottom-color: #c0da65;
}

.dashed-border-right {
  border-right: 3px dashed #000;
}

.dashed-border-right.color-silicon {
  border-right-color: #ffc533;
}

.dashed-border-right.color-barriers {
  border-right-color: #c0da65;
}

.grid {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: -1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-areas: ".";
  -ms-grid-rows: 1fr 0px 1fr;
  grid-template-rows: 1fr 1fr;
}

.grid._16 {
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
}

.top-left-bg {
  background-image: url('../images/BritMcDaniel-min.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.top-right-bg {
  background-image: url('../images/IdiculaMatthew2-min.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.bottom-left-bg {
  background-image: url('../images/TJBuilds_6.18-0581.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.bottom-right-bg {
  background-image: url('../images/KaylaGraff2-min.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.overlay-darken {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.52);
}

.middle-of-action-title {
  margin-top: -42px;
  margin-bottom: 30px;
  font-size: 64px;
  line-height: 1;
  font-style: normal;
  font-weight: 900;
}

.partners-with-purpose-grid {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-areas: ".";
  -ms-grid-columns: 1fr 80px 1.25fr;
  grid-template-columns: 1fr 1.25fr;
  -ms-grid-rows: auto 80px auto 80px auto;
  grid-template-rows: auto auto auto;
}

.border-dashed-right-bottom {
  border-bottom: 3px dashed #000;
  border-right-style: dashed;
  border-right-width: 3px;
}

.border-dashed-right-bottom.color-alone {
  border-right-color: #30557a;
  border-bottom-color: #30557a;
}

.border-dashed-right-bottom.color-alone.padding-right-bottom-30 {
  padding-right: 30px;
  padding-bottom: 30px;
}

.bulleted-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.bulleted-wrapper.center-horizontal {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.bullet-image {
  margin-top: 10px;
  margin-right: 16px;
}

.bullet-image.no-top {
  margin-top: 0px;
}

._800-initiative-left {
  position: relative;
  height: 100%;
  max-width: 52%;
  padding: 70px 100px 70px 5%;
}

.z-top {
  position: relative;
  z-index: 2;
}

.z-top.color-white {
  color: #fff;
}

.acceleration-image {
  width: 250px;
  height: 250px;
  margin-top: 42px;
  margin-bottom: 42px;
}

.acceleration-image._1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-image: url('../images/RiseOfRest0601.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.acceleration-image._2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-image: url('../images/39861866_10156759220583713_2223810387990544384_o-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.acceleration-image._3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background-image: url('../images/39935706_10156759222098713_8476925326608302080_o-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.alone-block {
  margin-right: 50px;
  padding: 42px 60px 50px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 8px;
  background-color: #30557a;
  color: #fff;
}

.bold-text {
  color: #30557a;
}

.maturing-ecosystem-block {
  -webkit-box-flex: 0;
  -webkit-flex: 0 52%;
  -ms-flex: 0 52%;
  flex: 0 52%;
}

.learn-more-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  padding: 12px 20px;
  border-radius: 6px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
}

.learn-more-btn.bg-color-alone {
  display: inline-block;
  background-color: #30557a;
}

.learn-more-btn.bg-color-black-women.inline-block {
  display: inline-block;
}

.learn-more-arrow {
  margin-left: 10px;
}

.learn-more-text {
  display: inline-block;
}

.number-bullet {
  width: 42px;
  height: 42px;
  margin-right: 20px;
  border-radius: 50%;
  background-color: #000;
  color: #fff;
  line-height: 42px;
  text-align: center;
}

.number-bullet.color-alone {
  background-color: #30557a;
}

.entrepreneur-link {
  display: block;
  color: #fff;
  text-decoration: none;
}

.whats-a-hub-grid {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-areas: ".";
  -ms-grid-columns: 1fr 80px 1.25fr;
  grid-template-columns: 1fr 1.25fr;
  -ms-grid-rows: auto 80px auto 80px auto 80px auto;
  grid-template-rows: auto auto auto auto;
}

._18px-text {
  font-size: 18px;
  line-height: 1.8;
}

._18px-text.color-vital {
  color: #a2b5bf;
}

.empower-logo {
  width: 74px;
  height: 75px;
}

.empower-logo-circle {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 200px;
  height: 200px;
  -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;
  border: 2px dashed #fff;
  border-radius: 50%;
  background-color: #ff4c1e;
}

.city-wide-progress-bar {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 42px;
  margin-top: 30px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.city-wide-progress-bar-end-cap {
  margin-left: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-top: 3px solid #a2b5bf;
  border-right: 3px solid #a2b5bf;
  border-bottom: 3px solid #a2b5bf;
}

.city-wide-progress {
  padding: 10px;
}

.city-wide-progress.bg-color-black-women {
  background-color: #ff6271;
}

.city-wide-progress.bg-color-black-women._71-percent {
  -webkit-box-flex: 0;
  -webkit-flex: 0 71%;
  -ms-flex: 0 71%;
  flex: 0 71%;
}

.city-wide-progress.bg-color-vital {
  background-color: #a2b5bf;
}

.city-wide-progress.bg-color-vital._59 {
  -webkit-flex-basis: 59%;
  -ms-flex-preferred-size: 59%;
  flex-basis: 59%;
}

.city-wide-progress.bg-color-faint-blue {
  background-color: #bbd3dc;
}

.city-wide-progress.bg-color-faint-blue._56 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 56%;
  -ms-flex: 0 56%;
  flex: 0 56%;
}

.engaged-block {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.city-wide-block {
  padding-right: 40px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 50%;
  -ms-flex: 0 50%;
  flex: 0 50%;
}

.invest-in-women-text-block {
  width: 285px;
  margin-top: 42px;
  margin-bottom: 42px;
}

.funding-and-revenue-grid {
  margin-top: 30px;
  margin-bottom: 10px;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.bg-color-vital {
  background-color: #a2b5bf;
}

.bg-color-vital.rounded {
  border-radius: 6px;
}

.bg-color-vital.rounded.padding {
  padding: 10px;
}

.bg-color-vital.rounded.padding.center {
  text-align: center;
}

.bg-color-vital.rounded.padding.center.color-white {
  color: #fff;
}

.bg-color-black-women {
  background-color: #ff6271;
}

.bg-color-black-women.rounded {
  border-radius: 6px;
}

.bg-color-black-women.rounded.padding {
  padding: 10px;
}

.bg-color-black-women.rounded.padding.center {
  text-align: center;
}

.bg-color-black-women.rounded.padding.center.color-white {
  color: #fff;
}

.bg-color-alone {
  background-color: #30557a;
}

.bg-color-alone.rounded {
  border-radius: 6px;
}

.bg-color-alone.rounded.padding {
  padding: 10px;
}

.bg-color-alone.rounded.padding.center {
  text-align: center;
}

.bg-color-alone.rounded.padding.center.color-white {
  color: #fff;
}

.venture-capital-block {
  padding-top: 42px;
  padding-right: 60px;
  padding-bottom: 50px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 37%;
  -ms-flex: 0 37%;
  flex: 0 37%;
  border-radius: 8px;
}

.venture-capital-grid {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  grid-column-gap: 0px;
  grid-row-gap: 21px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto auto auto auto auto auto;
  grid-template-rows: auto auto auto auto auto auto;
}

.exponent {
  position: relative;
  top: -16px;
  font-size: 0.6em;
  line-height: 1;
}

._15px-text {
  font-size: 15px;
  line-height: 1.8;
}

._15px-text.color-vital {
  color: #a2b5bf;
}

.nationally-bar {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  -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;
  -webkit-align-self: auto;
  -ms-flex-item-align: auto;
  align-self: auto;
  border-radius: 6px;
  background-color: #bbd3dc;
  color: #fff;
  line-height: 1;
}

.memphis-bar {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  -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-radius: 10px 50px 50px 10px;
  background-color: #a2b5bf;
  color: #fff;
  line-height: 1;
}

.demographic {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  -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;
  border-radius: 10px 50px 50px 10px;
  background-color: #ff6271;
  color: #fff;
  line-height: 1;
}

.changing-face-bg-block {
  background-image: url('../images/BritMcDaniel-min.jpg');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

.changing-face-bg-block._1 {
  background-image: url('../images/Elizabeth-Lemmonds-min.jpg');
  background-position: 50% 30%;
  background-size: cover;
}

.changing-face-bg-block._2 {
  background-image: url('../images/IMG_0400-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
}

.changing-face-bg-block._3 {
  background-image: url('../images/IMG_0442-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
}

.changing-face-bg-block._4 {
  background-image: url('../images/IMG_0538-min.jpg');
  background-position: 50% 14%;
  background-size: cover;
}

.changing-face-bg-block._5 {
  background-image: url('../images/IMG_0497-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
}

.changing-face-bg-block._6 {
  background-image: url('../images/Jessica-Taveau-1-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
}

.changing-face-bg-block._7 {
  background-image: url('../images/Jonel-Turner-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
}

.changing-face-bg-block._8 {
  background-color: #ff6271;
  background-image: url('../images/logo.svg');
  background-size: 50% 50%;
}

.changing-face-bg-block._9 {
  background-image: url('../images/Leigh2-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
}

.changing-face-bg-block._10 {
  background-image: url('../images/Leslie-Lynn-Smith-Headshot-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
}

.changing-face-bg-block._11 {
  background-image: url('../images/Tonda-Thomas-2.jpg');
  background-position: 50% 0%;
  background-size: cover;
}

.changing-face-bg-block._12 {
  background-image: url('../images/Whitney-Hardy-1.jpg');
  background-position: 50% 0%;
  background-size: cover;
}

.changing-face-bg-block._13 {
  background-image: url('../images/IMG_0459-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
}

.changing-face-bg-block._14 {
  background-image: url('../images/Taylor2.jpg');
  background-position: 50% 0%;
  background-size: cover;
}

.changing-face-bg-block._15 {
  background-image: url('../images/Kerri1-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
}

.btn-absolute-bottom {
  position: absolute;
  left: 0%;
  top: auto;
  right: 0%;
  bottom: 5%;
  z-index: 3;
  text-align: center;
}

.quote-image {
  height: 720px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 45%;
  -ms-flex: 0 45%;
  flex: 0 45%;
  background-image: url('../images/IMG_0538-min.jpg');
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.quote-text {
  padding: 100px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.quote-text-author {
  margin-top: 33px;
}

.pathway-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.pathway-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 20px;
  padding: 60px 20px;
  -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;
  border-radius: 22px;
  background-color: #c0da65;
  color: #fff;
  text-align: center;
}

.pathway-arrow {
  position: absolute;
}

.pathway-arrow.right {
  left: auto;
  top: 50%;
  right: -38px;
  bottom: 0%;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}

.pathway-arrow.down {
  left: 0%;
  top: auto;
  right: 0%;
  bottom: -38px;
  margin-right: auto;
  margin-left: auto;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.pathway-arrow.left {
  left: -38px;
  top: 50%;
  right: auto;
  bottom: 0%;
  -webkit-transform: rotate(-180deg) translate(0px, 50%);
  -ms-transform: rotate(-180deg) translate(0px, 50%);
  transform: rotate(-180deg) translate(0px, 50%);
}

.pathway-left {
  padding-right: 59px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pathway-left.max-382 {
  max-width: 432px;
  margin-right: 60px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.ecosystem-grid {
  margin-top: 100px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-areas: ".";
}

.imagine-progress-bar-end-cap {
  position: relative;
  z-index: -1;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: -75px;
  padding-top: 0px;
  padding-bottom: 0px;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 12px;
  background-color: #dedede;
}

.imagine-progress {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
}

.imagine-progress.bg-light-steel-blue {
  background-color: #a2b5bf;
}

.imagine-progress.bg-light-steel-blue._48-percent {
  -webkit-flex-basis: 48%;
  -ms-flex-preferred-size: 48%;
  flex-basis: 48%;
}

.imagine-progress.bg-light-steel-blue._52-percent {
  -webkit-flex-basis: 52%;
  -ms-flex-preferred-size: 52%;
  flex-basis: 52%;
}

.imagine-progress.bg-light-steel-blue._78-percent {
  -webkit-flex-basis: 78%;
  -ms-flex-preferred-size: 78%;
  flex-basis: 78%;
}

.imagine-progress.bg-light-steel-blue._86-percent {
  -webkit-flex-basis: 86%;
  -ms-flex-preferred-size: 86%;
  flex-basis: 86%;
}

.imagine-progress.bg-light-steel-blue._93-percent {
  -webkit-flex-basis: 93%;
  -ms-flex-preferred-size: 93%;
  flex-basis: 93%;
}

.imagine-progress.bg-light-steel-blue._100-percent {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.imagine-progress-bar {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 42px;
  margin-top: 25px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.good-news-link-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 45%;
  -ms-flex: 0 45%;
  flex: 0 45%;
}

.good-news-link-block.full-width {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.grindset-left {
  padding-right: 40px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.behind-phone-image {
  position: absolute;
  left: 50%;
  top: -42%;
  right: auto;
  bottom: -42%;
  z-index: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 170px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}

.phone-image-container {
  position: relative;
}

.grindset-link-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -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;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
}

.grindset-link-block.border-right {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 3px solid #fff;
}

.investment-breakdown-text-block {
  margin-bottom: 64px;
}

.investment-breakdown-chart {
  margin-bottom: 50px;
}

.relative {
  position: relative;
}

.read-now {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.read-now-text {
  padding-right: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.link {
  color: #fff;
}

.white-text-link {
  color: #fff;
}

.pink-link {
  color: #ff6271;
  text-decoration: none;
}

.footer-logo {
  margin-bottom: 20px;
}

.what-is-a-hub-trust-block {
  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: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.pathway-logo-container {
  margin-right: 72px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.line-divider {
  height: 3px;
  margin-top: 42px;
  margin-bottom: 42px;
  background-color: #d8d8da;
}

.div-block-4 {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.flex-align-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -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;
}

.green-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  margin-bottom: 40px;
  margin-left: 40px;
  padding: 10px 10px 10px 40px;
  -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;
  border-radius: 10px;
  background-color: #c0da65;
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
}

.button-icon {
  margin-left: 20px;
}

.co-starters-grey-block {
  margin-right: 40px;
  margin-bottom: 42px;
  padding: 50px 40px 40px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 12px;
  background-color: #a2b5bf;
  color: #fff;
}

.co-starter-highlights {
  width: 100%;
  max-width: 247px;
  margin-bottom: 42px;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
}

.dashed-line-divider {
  height: 3px;
  margin-top: 20px;
  margin-bottom: 20px;
  border-bottom: 1px dashed #707070;
}

.trophy-title {
  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;
}

.trophy-icon {
  margin-left: 20px;
}

.experts-in-the-wings-left {
  max-width: 416px;
  margin-right: 20px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
}

.expert-in-the-wings-right {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.expert-circle-image {
  margin-right: 24px;
}

.flex-align-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-left.margin-bottom-27 {
  margin-bottom: 27px;
}

.flex-right {
  max-width: 300px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.flex-stretch-space-between {
  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: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.focus-icon {
  width: auto;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.focus-icon-container {
  width: 65px;
  margin-right: 70px;
  margin-left: 65px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  text-align: center;
}

.lessons-learned-image {
  max-width: 134px;
  margin-left: 20px;
}

.start-here-block-title-container {
  position: absolute;
  left: 0%;
  top: 0px;
  right: 0%;
  bottom: auto;
  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;
  -webkit-transform: translate(0px, -49%);
  -ms-transform: translate(0px, -49%);
  transform: translate(0px, -49%);
}

.start-here-text {
  padding-right: 50px;
  padding-left: 50px;
}

.start-here-line {
  position: relative;
  height: 3px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #c0da65;
}

.start-here-x {
  position: absolute;
  left: auto;
  top: 0%;
  right: 0%;
  bottom: 0%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.menu-tooltip {
  display: none;
}

.menu-tooltip-container {
  position: absolute;
  right: 100px;
  display: none;
  width: 400px;
  text-align: right;
}

.ecosystem-title {
  font-size: 40px;
  line-height: 1.3;
  font-weight: 900;
}

.ecosystem-text {
  max-width: 545px;
  font-style: italic;
}

.desktop-ecosystem-grid {
  width: 980px;
  margin-right: auto;
  margin-left: auto;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -ms-grid-columns: 105px 120px 120px 120px 50px 120px 120px 120px 105px;
  grid-template-columns: 105px 120px 120px 120px 50px 120px 120px 120px 105px;
  -ms-grid-rows: 53px 33px 53px 33px 64px 53px 92px 53px 33px 53px 33px 53px;
  grid-template-rows: 53px 33px 53px 33px 64px 53px 92px 53px 33px 53px 33px 53px;
  background-image: none;
  background-size: auto;
  background-repeat: repeat;
}

.center {
  text-align: center;
}

.ecosystem-item-block {
  position: relative;
  display: block;
  height: 53px;
  margin-top: 0px;
  margin-bottom: 0px;
  grid-auto-columns: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  border-radius: 42px;
  background-color: #fff;
  cursor: pointer;
}

.ecosystem-item-block.row-1 {
  z-index: 7;
  max-height: none;
}

.ecosystem-item-block.row-2 {
  z-index: 6;
}

.ecosystem-item-block.row-3 {
  z-index: 5;
}

.ecosystem-item-block.row-4 {
  z-index: 4;
}

.ecosystem-item-block.row-5 {
  z-index: 3;
}

.ecosystem-item-block.row-6 {
  z-index: 2;
}

.ecosystem-text-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  -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;
}

.ecosystem-section-icon {
  position: absolute;
  max-height: 42px;
  max-width: 42px;
  padding: 6px;
  border-radius: 50%;
  background-color: #ff4c1e;
}

.ecosystem-section-icon.capital {
  left: 0px;
  top: 0px;
  right: auto;
  bottom: auto;
}

.ecosystem-section-icon.ideas {
  left: auto;
  top: 0px;
  right: 0px;
  bottom: auto;
}

.ecosystem-section-icon.people {
  left: -25px;
  top: auto;
  right: auto;
  bottom: auto;
  margin-top: -10px;
  border-radius: 0%;
}

.ecosystem-section-icon.customers {
  right: -25px;
  max-height: 50px;
  max-width: 50px;
  margin-top: -7px;
  border-radius: 0%;
}

.ecosystem-section-icon.network {
  bottom: -20px;
  max-height: 45px;
  max-width: 45px;
  border-radius: 0%;
}

.ecosystem-item-title-block {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 53px;
  padding-right: 18px;
  -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;
}

.ecosystem-item-text-block {
  position: absolute;
  left: 0%;
  top: 26.5px;
  right: 0%;
  bottom: auto;
  overflow: hidden;
  height: 0%;
}

.ecosystem-item-text-block.editing {
  height: 422px;
}

.ecosystem-item-title {
  padding-right: 20px;
  padding-left: 20px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  color: #31b7e1;
  font-size: 11px;
  line-height: 15px;
  font-weight: 900;
  text-align: center;
}

.ecosystem-item-text {
  padding: 36.5px 5px 10px;
  border-bottom-left-radius: 27px;
  border-bottom-right-radius: 27px;
  background-color: #fff;
  color: #596671;
  font-size: 11px;
  line-height: 17px;
  text-align: center;
}

.ecosystem-section-title {
  position: relative;
  z-index: 1;
  padding: 2px 4px;
  background-color: #ff4c1e;
}

.parallel-dash-line {
  position: relative;
  z-index: 0;
  width: 1px;
  height: 100%;
  margin-right: 1px;
  border-right: 2px dashed #fff;
}

.horizontal-dash-line {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 1px;
  margin-bottom: 1px;
  border-bottom: 2px dashed #fff;
}

.horizontal-dash-line.half-line {
  width: 50%;
}

.ecosystem-overlay {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 8;
  background-color: rgba(255, 76, 30, 0.68);
  opacity: 0;
}

.mobile-ecosystem-block {
  display: none;
  max-width: 420px;
  margin-right: auto;
  margin-left: auto;
}

.progress-text {
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  color: #fff;
  font-size: 14px;
}

.trust-top-bg-image {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-image: url('../images/whatisahub-min.jpg');
  background-position: 50% 42%;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .menu-item {
    width: 200px;
    height: 200px;
  }
  .menu-text {
    font-size: 24px;
    line-height: 34px;
  }
  .section-header.intro {
    min-height: 75vh;
    padding-right: 20px;
    padding-left: 20px;
  }
  .section-header.audacious {
    min-height: 75vh;
  }
  .section-header.barriers {
    min-height: 75vh;
  }
  .section-header.black-women {
    min-height: 75vh;
  }
  .section-header.empower {
    min-height: 75vh;
  }
  .section-header.alone {
    min-height: 75vh;
  }
  .section-header.entreprenuers {
    min-height: 75vh;
  }
  .section-header.silicon {
    min-height: 75vh;
  }
  .section-header.money {
    min-height: 75vh;
  }
  .section-header.crazy {
    min-height: 75vh;
  }
  .truth-container {
    max-width: 95%;
    padding-right: 20px;
    padding-left: 20px;
  }
  .truth-title {
    font-size: 50px;
  }
  .truth-text {
    font-size: 21px;
  }
  .section-small-title.grid-block-title {
    font-size: 22px;
  }
  .section-medium-title.color-money.investment-breakdown-title {
    position: relative;
    max-width: 100%;
    font-size: 40px;
  }
  ._3-flex-container.bottom-margined.bottom-aligned.lesson-learned {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  ._3-flex-container.bottom-margined.ecosystem-header {
    max-width: 420px;
    margin-right: auto;
    margin-left: auto;
  }
  ._3-flex-container.center-horizontal.no-wrap.wrap-mobile {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  ._3-flex-container.acceleration-flex {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  ._3-flex-container.good-news {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .blue-objective-block {
    margin: 20px auto;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .blue-objective-block.middle {
    margin-right: 10px;
    margin-left: 10px;
  }
  .objective-text {
    font-size: 18px;
  }
  .full-width-background.crazy-full-image {
    height: 600px;
  }
  .full-width-background.padding {
    padding-top: 140px;
    padding-bottom: 140px;
  }
  .full-width-background.city-wide-reach-map {
    height: 500px;
  }
  .big-bet._1 {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .big-bet._2 {
    max-width: 100%;
  }
  .big-bet-title {
    font-size: 56px;
  }
  .area-of-focus-text {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .area-of-focus-left-title {
    left: -150px;
    font-size: 40px;
  }
  .numbers-grid-title {
    font-size: 46px;
  }
  .numbers-grid-block-2-number {
    font-size: 75px;
  }
  .numbers-grid-block-2-text {
    font-size: 18px;
  }
  .numbers-grid-block-3-number {
    font-size: 100px;
  }
  .numbers-grid-block-3-text {
    font-size: 25px;
  }
  .numbers-grid-block-4-number {
    font-size: 75px;
  }
  .numbers-grid-block-4-text {
    font-size: 18px;
  }
  .numbers-grid-block-5-number {
    font-size: 75px;
  }
  .numbers-grid-block-5-text {
    font-size: 18px;
  }
  .numbers-grid-block-6-text {
    font-size: 30px;
  }
  .numbers-grid-block-6-number {
    font-size: 100px;
  }
  .numbers-grid-block-7-number {
    font-size: 75px;
  }
  .numbers-grid-block-7-text {
    font-size: 13px;
  }
  .numbers-grid-block-8-number {
    font-size: 75px;
  }
  .numbers-grid-block-8-text {
    font-size: 18px;
  }
  .leslie-circle {
    width: 300px;
    height: 300px;
  }
  .money-differently-title {
    margin-top: -100px;
    font-size: 88px;
  }
  ._35x {
    margin-right: 20px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
  }
  .entrepreneur-feature-image.brit {
    width: 300px;
    height: 300px;
  }
  .entrepreneur-feature-image.angel {
    width: 300px;
    height: 300px;
  }
  .entrepreneur-feature-image.idicula {
    width: 300px;
    height: 300px;
  }
  .entrepreneur-feature-image.ken {
    width: 300px;
    height: 300px;
  }
  .entrepreneur-feature-image.esra {
    width: 300px;
    height: 300px;
  }
  .entrepreneur-feature-image.jessica {
    width: 300px;
    height: 300px;
  }
  .entrepreneur-feature-image.kayla {
    width: 300px;
    height: 300px;
  }
  .entrepreneur-feature-image.erica {
    width: 300px;
    height: 300px;
  }
  .entrepreneur-feature-image.trinette {
    width: 300px;
    height: 300px;
  }
  .alone-feature {
    font-size: 23px;
  }
  .entrepreneur-feature-text {
    font-size: 27px;
  }
  .section-large-title.color-money {
    margin-bottom: 15px;
    font-size: 60px;
  }
  .section-large-title.color-silicon {
    margin-bottom: 15px;
    font-size: 60px;
  }
  .section-large-title.color-entrepreneur {
    margin-bottom: 15px;
    font-size: 60px;
  }
  .section-large-title.color-alone {
    margin-bottom: 15px;
    font-size: 60px;
  }
  .section-large-title.color-empower {
    margin-bottom: 15px;
    font-size: 60px;
  }
  .section-large-title.color-black-women {
    margin-bottom: 15px;
    font-size: 60px;
  }
  .section-large-title.color-barriers {
    margin-bottom: 15px;
    font-size: 60px;
  }
  .lessons-learned-text-block {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .lessons-learned-text-block.middle {
    padding-right: 20px;
    padding-left: 20px;
  }
  .margin-top-text.grid-block-text {
    font-size: 16px;
    line-height: 1.6;
  }
  .industry-focus-logo-block {
    margin-right: 20px;
  }
  .industry-focus-small-title {
    font-size: 26px;
  }
  .industry-focus-large-title {
    font-size: 45px;
  }
  .partners-with-purpose-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  ._800-initiative-left {
    max-width: 80%;
    padding-right: 20px;
    padding-left: 20px;
  }
  .acceleration-image._1 {
    width: 150px;
    height: 150px;
  }
  .acceleration-image._2 {
    width: 150px;
    height: 150px;
    margin-right: 20px;
    margin-left: 20px;
  }
  .acceleration-image._3 {
    width: 150px;
    height: 150px;
  }
  .alone-block {
    margin-right: 20px;
    padding: 20px;
  }
  .whats-a-hub-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .empower-logo-circle {
    margin-right: auto;
    margin-bottom: 40px;
    margin-left: auto;
  }
  .engaged-block {
    margin-top: 22px;
  }
  .city-wide-block {
    padding-right: 0px;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .invest-in-women-text-block {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .funding-and-revenue-grid {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
  .venture-capital-block {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .quote-text {
    padding: 60px;
    font-size: 15px;
  }
  .pathway-block {
    margin: 10px;
    padding: 10px;
  }
  .pathway-arrow.right {
    right: -18px;
    width: 20px;
    height: 20px;
  }
  .pathway-arrow.down {
    bottom: -18px;
    width: 20px;
    height: 20px;
  }
  .pathway-arrow.left {
    left: -18px;
    width: 20px;
    height: 20px;
  }
  .pathway-left {
    padding-right: 40px;
  }
  .good-news-link-block {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .grindset-left {
    padding-right: 20px;
  }
  .phone-image-container {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .grid-block-text {
    font-size: 16px;
    line-height: 1.6;
  }
  .pathway-logo-container {
    margin-right: 40px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .experts-in-the-wings-left {
    margin-right: 40px;
  }
  .focus-icon-container {
    margin-right: 40px;
    margin-left: 40px;
  }
  .ecosystem-title {
    margin-bottom: 17px;
  }
  .desktop-ecosystem-grid {
    display: none;
  }
  .ecosystem-item-block.row-1.mobile {
    margin-bottom: 15px;
  }
  .ecosystem-item-block.row-2.mobile {
    margin-bottom: 15px;
  }
  .ecosystem-item-block.row-3.mobile {
    margin-bottom: 15px;
  }
  .ecosystem-item-block.row-4.mobile {
    margin-bottom: 15px;
  }
  .ecosystem-item-block.row-5.mobile {
    margin-bottom: 15px;
  }
  .ecosystem-item-block.row-6.mobile {
    margin-bottom: 15px;
  }
  .ecosystem-text-block.mobile {
    margin-top: 40px;
    margin-bottom: 10px;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .ecosystem-section-icon.capital.mobile {
    position: static;
  }
  .ecosystem-section-icon.ideas.mobile {
    position: static;
  }
  .ecosystem-section-icon.people.mobile {
    position: static;
  }
  .ecosystem-section-icon.customers.mobile {
    position: static;
  }
  .ecosystem-section-icon.network.mobile {
    position: static;
  }
  .mobile-ecosystem-block {
    display: block;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 767px) {
  .menu-container {
    padding: 21px;
  }
  .menu-item {
    width: 26vw;
    height: 26vw;
  }
  .menu-text {
    font-size: 3vw;
    line-height: 1.4;
  }
  .section-header.intro {
    min-height: 60vh;
  }
  .section-header.audacious {
    min-height: 60vh;
  }
  .section-header.barriers {
    min-height: 60vh;
  }
  .section-header.black-women {
    min-height: 60vh;
  }
  .section-header.empower {
    min-height: 60vh;
  }
  .section-header.alone {
    min-height: 60vh;
  }
  .section-header.entreprenuers {
    min-height: 60vh;
  }
  .section-header.silicon {
    min-height: 60vh;
  }
  .section-header.money {
    min-height: 60vh;
  }
  .section-header.crazy {
    min-height: 60vh;
  }
  .truth-text {
    margin-left: 20px;
    padding-right: 0px;
    font-size: 20px;
  }
  .body {
    font-size: 16px;
    line-height: 30px;
  }
  .content-container.header {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .section-small-title.color-money {
    font-size: 25px;
  }
  .section-small-title.color-alone {
    font-size: 20px;
  }
  .section-small-title.color-black-women {
    font-size: 25px;
  }
  .section-small-title.grid-block-title {
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .image-bg.audacious {
    height: 100px;
    margin-right: 0px;
    margin-bottom: 10px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .section-medium-title {
    font-size: 42px;
  }
  .section-medium-title.color-alone {
    font-size: 50px;
  }
  .section-medium-title.city-wide-reach-title {
    font-size: 42px;
  }
  ._3-flex-container.bottom-margined.bottom-aligned.lesson-learned {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
    text-align: center;
  }
  ._3-flex-container.no-wrap.pathway {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .blue-objective-block {
    height: auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .blue-objective-block.middle {
    margin-right: 0px;
    margin-left: 0px;
  }
  .objective-text {
    padding-bottom: 20px;
  }
  .full-width-background.audacious-color {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .full-width-background.money-full-image {
    height: 500px;
  }
  .full-width-background.padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .full-width-background.the-800-initiative {
    background-position: 61% 50%;
    background-size: cover;
  }
  .big-bet-title {
    font-size: 40px;
  }
  .big-bet-sub-title {
    font-size: 24px;
  }
  .area-of-focus-text {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 14px;
  }
  .area-of-focus-title {
    max-width: 160px;
    font-size: 22px;
  }
  .area-of-focus-container {
    margin-bottom: 40px;
    padding-bottom: 40px;
  }
  .area-of-focus-left-title {
    margin-right: 10px;
    margin-left: 10px;
  }
  .numbers-grid-title {
    font-size: 30px;
  }
  .numbers-grid-block._2 {
    border-bottom-width: 0px;
  }
  .numbers-grid-block._4 {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .numbers-grid-block._5 {
    border-left-width: 0px;
  }
  .numbers-grid-block._7 {
    border-top-width: 0px;
    border-bottom-width: 0px;
  }
  .numbers-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto auto auto auto;
  }
  .crazy-vision-title {
    margin-top: -42px;
    font-size: 50px;
  }
  .leslie-circle {
    width: 100px;
    height: 100px;
  }
  .outro-text {
    font-size: 20px;
  }
  .money-differently-title {
    margin-top: -56px;
    font-size: 50px;
  }
  ._35x {
    margin-right: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .entrepreneur-feature-image.brit {
    width: 100px;
    height: 100px;
  }
  .entrepreneur-feature-image.angel {
    width: 100px;
    height: 100px;
  }
  .entrepreneur-feature-image.idicula {
    width: 100px;
    height: 100px;
  }
  .entrepreneur-feature-image.ken {
    width: 100px;
    height: 100px;
  }
  .entrepreneur-feature-image.esra {
    width: 100px;
    height: 100px;
  }
  .entrepreneur-feature-image.jessica {
    width: 100px;
    height: 100px;
  }
  .entrepreneur-feature-image.jairo {
    width: 100px;
    height: 100px;
  }
  .entrepreneur-feature-image.kayla {
    width: 100px;
    height: 100px;
  }
  .entrepreneur-feature-image.erica {
    width: 100px;
    height: 100px;
  }
  .entrepreneur-feature-image.trinette {
    width: 100px;
    height: 100px;
  }
  .alone-feature {
    font-size: 18px;
  }
  .entrepreneur-feature-text {
    font-size: 20px;
  }
  .section-large-title.color-money {
    margin-top: 15px;
    font-size: 50px;
  }
  .section-large-title.color-silicon {
    margin-top: 15px;
    font-size: 50px;
  }
  .section-large-title.color-entrepreneur {
    margin-top: 15px;
    font-size: 50px;
  }
  .section-large-title.color-alone {
    margin-top: 15px;
    font-size: 50px;
  }
  .section-large-title.color-empower {
    margin-top: 15px;
    font-size: 50px;
  }
  .section-large-title.color-black-women {
    margin-top: 15px;
    font-size: 50px;
  }
  .section-large-title.color-barriers {
    margin-top: 15px;
    font-size: 50px;
  }
  .lessons-learned-text-block {
    max-width: none;
    margin-bottom: 40px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .lessons-learned-text-block.stretch-width {
    max-width: none;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .lessons-learned-text-block.middle {
    padding-right: 0px;
    padding-left: 0px;
  }
  .margin-top-text {
    font-size: 18px;
  }
  .margin-top-text.flex-left {
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .margin-top-text.flex-middle {
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .margin-top-text.flex-right {
    max-width: none;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .industry-focus-logo-block {
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .company-wins-block {
    padding: 20px;
  }
  .middle-of-action-title {
    font-size: 40px;
  }
  .border-dashed-right-bottom.color-alone.padding-right-bottom-30 {
    padding-right: 0px;
    border-right-width: 0px;
  }
  .acceleration-image._1 {
    margin-top: 20px;
    margin-bottom: 20px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .acceleration-image._2 {
    margin: 20px 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .acceleration-image._3 {
    margin-top: 20px;
    margin-bottom: 20px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .alone-block {
    margin-right: 0px;
    margin-bottom: 20px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .maturing-ecosystem-block {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .whats-a-hub-grid {
    grid-column-gap: 0px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto auto auto auto;
  }
  ._18px-text {
    font-size: 16px;
  }
  ._18px-text.color-vital {
    font-size: 15px;
  }
  .venture-capital-block {
    padding-right: 0px;
  }
  .venture-capital-grid {
    font-size: 12px;
  }
  .quote-text {
    padding: 20px;
  }
  .pathway-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto;
  }
  .pathway-arrow.right {
    top: auto;
    right: auto;
    bottom: -18px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .pathway-arrow.left {
    left: auto;
    top: auto;
    bottom: -18px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .pathway-left {
    margin-bottom: 15px;
    padding-right: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .grindset-left {
    padding-right: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .behind-phone-image {
    display: none;
  }
  .phone-image-container {
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    text-align: center;
  }
  .grid-block-text {
    margin-top: 20px;
  }
  .pathway-logo-container {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .flex-align-right {
    margin-top: 20px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .green-button {
    margin-top: 10px;
    padding-right: 20px;
  }
  .button-icon {
    margin-left: 10px;
  }
  .co-starters-grey-block {
    margin-right: 0px;
  }
  .co-starter-highlights {
    margin-right: auto;
    margin-left: auto;
  }
  .experts-in-the-wings-left {
    max-width: none;
    margin-right: 0px;
    margin-bottom: 15px;
    padding-right: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .flex-right {
    max-width: none;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .flex-stretch-space-between {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .focus-icon {
    width: 30px;
    height: 30px;
  }
  .focus-icon-container {
    margin-right: 10px;
    margin-left: 0px;
  }
  .start-here-block-title-container {
    width: 101%;
    margin-left: -2px;
  }
  .start-here-text {
    font-size: 18px;
  }
}

@media (max-width: 479px) {
  .menu-container {
    padding-right: 5px;
    padding-left: 5px;
  }
  .section-header.intro {
    min-height: 350px;
  }
  .section-header.audacious {
    min-height: 350px;
  }
  .section-header.barriers {
    min-height: 350px;
  }
  .section-header.black-women {
    min-height: 350px;
  }
  .section-header.empower {
    min-height: 350px;
  }
  .section-header.alone {
    min-height: 350px;
  }
  .section-header.entreprenuers {
    min-height: 350px;
  }
  .section-header.silicon {
    min-height: 350px;
  }
  .section-header.money {
    min-height: 350px;
  }
  .section-header.crazy {
    min-height: 350px;
  }
  .intro-heading {
    font-size: 50px;
  }
  .truth-count {
    top: -10px;
    font-size: 18px;
  }
  .truth-title {
    font-size: 25px;
  }
  .truth-text {
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .content-container.header {
    padding-right: 0px;
    padding-left: 0px;
  }
  .header-main-image {
    max-width: 100%;
  }
  .header-main-text {
    max-width: 282px;
    font-size: 14px;
  }
  .truth-footer {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .section-small-title {
    font-size: 20px;
  }
  .section-small-title.color-barriers._18px-text {
    font-size: 20px;
  }
  .section-small-title.color-money._18px-text {
    font-size: 20px;
  }
  .section-small-title.color-silicon._18px-text {
    font-size: 20px;
  }
  .section-small-title.color-entrepreneur._18px-text {
    font-size: 20px;
  }
  .section-small-title.color-alone._18px-text {
    font-size: 20px;
  }
  .section-small-title.color-empower._18px-text {
    font-size: 20px;
  }
  .section-small-title.color-black-women {
    font-size: 24px;
  }
  .section-small-title.color-black-women._18px-text {
    font-size: 20px;
  }
  .section-medium-title {
    font-size: 29px;
    line-height: 1.3;
  }
  .section-medium-title.color-alone {
    font-size: 35px;
  }
  .section-medium-title.city-wide-reach-title {
    bottom: -12%;
    font-size: 38px;
    text-align: center;
  }
  .blue-objective-block {
    height: 300px;
  }
  .objective-text {
    font-size: 21px;
  }
  .full-width-background.crazy-full-image {
    height: 350px;
  }
  .full-width-background.money-full-image {
    height: 350px;
  }
  .full-width-background.money-color {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .full-width-background.doing-this-differently {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .full-width-background.silicon-color {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .full-width-background.the-800-initiative {
    background-position: 68% 50%;
  }
  .full-width-background.city-wide-reach-map {
    height: 350px;
  }
  .full-width-background.invest-in-women {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .full-width-background.black-women-color {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .full-width-background.barriers-color {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .big-bet {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .big-bet._1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .big-bet._2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .big-bet._3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .big-bet-title {
    font-size: 40px;
    line-height: 50px;
  }
  .big-bet-sub-title {
    font-size: 22px;
  }
  .dotted-divider {
    display: none;
  }
  .area-of-focus-text {
    margin-top: 10px;
    padding-right: 0px;
    padding-left: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .area-of-focus-title {
    max-width: none;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .area-of-focus-left-title {
    margin-right: 10px;
    margin-left: 10px;
    font-size: 25px;
  }
  .numbers-grid-title {
    margin-bottom: 20px;
    line-height: 1.3;
  }
  .numbers-grid-block._2 {
    padding-bottom: 40px;
  }
  .numbers-grid-block._4 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .numbers-grid-block._5 {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .numbers-grid-block._7 {
    margin-bottom: 20px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .numbers-grid-block-3-number {
    font-size: 50px;
  }
  .dollar-symbol {
    -webkit-transform: translate(0px, -25px);
    -ms-transform: translate(0px, -25px);
    transform: translate(0px, -25px);
    font-size: 40px;
  }
  .numbers-grid-block-3-text {
    font-size: 20px;
  }
  .numbers-grid-block-content {
    padding: 33px 0px;
  }
  .numbers-grid-block-4-number {
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .numbers-grid-block-4-text {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
  }
  .numbers-grid-block-5-number {
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .numbers-grid-block-5-text {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    text-align: center;
  }
  .numbers-grid-block-7-number {
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .numbers-grid-block-7-text {
    text-align: center;
  }
  .start-here-block-title {
    font-size: 25px;
    text-align: center;
  }
  .crazy-vision-title {
    margin-top: -58px;
  }
  .leslie-circle {
    position: relative;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  .money-differently-title {
    margin-top: -35px;
    font-size: 35px;
  }
  .text-block {
    margin-bottom: 10px;
  }
  .alone-feature {
    font-size: 15px;
  }
  .margin-top-text {
    font-size: 16px;
  }
  .margin-top-text.small-text {
    font-size: 13px;
  }
  .margin-top-text.starters {
    font-size: 14px;
    line-height: 1.5;
  }
  .margin-top-text.ecosystem-text {
    font-size: 15px;
    line-height: 1.2;
  }
  .margin-top-text.text-24.color-barriers {
    font-size: 18px;
  }
  .middle-of-action-title {
    font-size: 27px;
    line-height: 1.2;
  }
  .partners-with-purpose-grid {
    grid-column-gap: 0px;
    grid-row-gap: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto auto;
  }
  ._800-initiative-left {
    max-width: 100%;
  }
  .alone-block {
    font-size: 13px;
  }
  .number-bullet.color-alone {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }
  ._18px-text {
    font-size: 12px;
  }
  ._18px-text.color-vital {
    font-size: 10px;
  }
  .empower-logo {
    width: 100px;
    height: 100px;
  }
  .empower-logo-circle {
    width: 200px;
    height: 200px;
  }
  .funding-and-revenue-grid {
    grid-column-gap: 5px;
    grid-row-gap: 10px;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto auto auto;
    grid-template-rows: auto auto auto auto;
  }
  .bg-color-vital.rounded.padding.center.color-white {
    font-size: 10px;
    line-height: 10px;
  }
  .bg-color-black-women.rounded.padding.center.color-white {
    font-size: 10px;
    line-height: 15px;
  }
  .bg-color-alone.rounded.padding.center.color-white {
    font-size: 10px;
    line-height: 15px;
  }
  .venture-capital-block {
    padding-right: 0px;
  }
  ._15px-text.color-vital {
    font-size: 10px;
  }
  .demographic {
    padding-left: 20px;
  }
  .quote-image {
    height: 500px;
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  .pathway-left.max-382 {
    max-width: none;
    margin-right: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
  }
  .good-news-link-block {
    margin-right: 0px;
    margin-left: 0px;
  }
  .good-news-link-block.full-width {
    margin-right: 0px;
    margin-left: 0px;
  }
  .pathway-logo-container {
    margin-right: 0px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    text-align: center;
  }
  .green-button {
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 15px;
  }
  .button-icon {
    display: none;
  }
  .co-starters-grey-block {
    padding: 20px 10px;
  }
  .focus-icon-container {
    width: 42px;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    text-align: left;
  }
  .start-here-text {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 15px;
  }
  .lightbox-link {
    -webkit-box-flex: 0;
    -webkit-flex: 0 100%;
    -ms-flex: 0 100%;
    flex: 0 100%;
    text-align: center;
  }
}

#w-node-76086f570012-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

@media screen and (max-width: 991px) {
  #w-node-76086f570012-6b2c52d9 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }
}

#w-node-8be5789ea294-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

@media screen and (max-width: 991px) {
  #w-node-8be5789ea294-6b2c52d9 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
    -ms-grid-row: 2;
    grid-row-start: 2;
  }
}

#w-node-ffcd1a643781-6b2c52d9 {
  -ms-grid-column-span: 2;
  grid-column-end: 4;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row-span: 2;
  grid-row-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

@media screen and (max-width: 991px) {
  #w-node-ffcd1a643781-6b2c52d9 {
    -ms-grid-column-span: 2;
    grid-column-end: 4;
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row-span: 2;
    grid-row-end: 3;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ffcd1a643781-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }
}

#w-node-798df9fb4ffb-6b2c52d9 {
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

@media screen and (max-width: 991px) {
  #w-node-798df9fb4ffb-6b2c52d9 {
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
    -ms-grid-row: 3;
    grid-row-start: 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-798df9fb4ffb-6b2c52d9 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
    -ms-grid-row: 5;
    grid-row-start: 5;
    -ms-grid-row-span: 1;
    grid-row-end: 6;
  }
}

#w-node-cfcffcb450ab-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

@media screen and (max-width: 991px) {
  #w-node-cfcffcb450ab-6b2c52d9 {
    -ms-grid-column-span: 1;
    grid-column-end: 4;
    -ms-grid-column: 3;
    grid-column-start: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
    -ms-grid-row: 3;
    grid-row-start: 3;
  }
}

@media screen and (max-width: 767px) {
  #w-node-cfcffcb450ab-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 4;
    grid-row-start: 4;
    -ms-grid-row-span: 1;
    grid-row-end: 5;
  }
}

@media screen and (max-width: 479px) {
  #w-node-cfcffcb450ab-6b2c52d9 {
    -ms-grid-column-align: auto;
    justify-self: auto;
  }
}

#w-node-7f37c4b2ea0e-6b2c52d9 {
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 2;
  grid-row-end: 6;
  -ms-grid-row: 4;
  grid-row-start: 4;
}

@media screen and (max-width: 991px) {
  #w-node-7f37c4b2ea0e-6b2c52d9 {
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 2;
    grid-row-end: 6;
    -ms-grid-row: 4;
    grid-row-start: 4;
  }
}

@media screen and (max-width: 767px) {
  #w-node-7f37c4b2ea0e-6b2c52d9 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
    -ms-grid-row: 7;
    grid-row-start: 7;
    -ms-grid-row-span: 1;
    grid-row-end: 8;
  }
}

#w-node-f468562f266b-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 5;
  -ms-grid-row: 4;
  grid-row-start: 4;
  -ms-grid-column-align: stretch;
  justify-self: stretch;
}

@media screen and (max-width: 991px) {
  #w-node-f468562f266b-6b2c52d9 {
    -ms-grid-column-span: 1;
    grid-column-end: 4;
    -ms-grid-column: 3;
    grid-column-start: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 5;
    -ms-grid-row: 4;
    grid-row-start: 4;
  }
}

@media screen and (max-width: 767px) {
  #w-node-f468562f266b-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 6;
    grid-row-start: 6;
    -ms-grid-row-span: 1;
    grid-row-end: 7;
  }
}

#w-node-6e01d8154064-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 6;
  -ms-grid-row: 5;
  grid-row-start: 5;
}

@media screen and (max-width: 991px) {
  #w-node-6e01d8154064-6b2c52d9 {
    -ms-grid-column-span: 1;
    grid-column-end: 4;
    -ms-grid-column: 3;
    grid-column-start: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 6;
    -ms-grid-row: 5;
    grid-row-start: 5;
  }
}

@media screen and (max-width: 767px) {
  #w-node-6e01d8154064-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 8;
    grid-row-start: 8;
    -ms-grid-row-span: 1;
    grid-row-end: 9;
  }
}

#w-node-3e12020ddf4c-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

@media screen and (max-width: 991px) {
  #w-node-3e12020ddf4c-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
  }
}

#w-node-5eda87479c5d-6b2c52d9 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

@media screen and (max-width: 767px) {
  #w-node-5eda87479c5d-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }
}

#w-node-51ceceb5b33a-6b2c52d9 {
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

@media screen and (max-width: 767px) {
  #w-node-51ceceb5b33a-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }
}

#w-node-df769cdcdcbb-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

@media screen and (max-width: 767px) {
  #w-node-df769cdcdcbb-6b2c52d9 {
    -ms-grid-column-span: 2;
    grid-column-end: 2;
    -ms-grid-row: 5;
    grid-row-start: 5;
    -ms-grid-row-span: 1;
    grid-row-end: 6;
  }
}

#w-node-f3ef20e22fe1-6b2c52d9 {
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

@media screen and (max-width: 767px) {
  #w-node-f3ef20e22fe1-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 4;
    grid-row-start: 4;
    -ms-grid-row-span: 1;
    grid-row-end: 5;
  }
}

#w-node-5fb81304a54e-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-5fb81304a54f-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 2;
  grid-row-end: 3;
}

#w-node-5fb81304a550-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

@media screen and (max-width: 767px) {
  #w-node-5fb81304a550-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-5fb81304a550-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
  }
}

#w-node-5fb81304a554-6b2c52d9 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-5fb81304a558-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

@media screen and (max-width: 767px) {
  #w-node-5fb81304a558-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }
}

#w-node-5fb81304a55c-6b2c52d9 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-9f10e34f4eeb-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

@media screen and (max-width: 479px) {
  #w-node-9f10e34f4eeb-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
  }
}

#w-node-cd7d022d1056-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
}

#w-node-dbb1d226d517-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
}

@media screen and (max-width: 479px) {
  #w-node-dbb1d226d517-6b2c52d9 {
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
    -ms-grid-row: 2;
    grid-row-start: 2;
  }
}

#w-node-a25b5034fe39-6b2c52d9 {
  -ms-grid-column-span: 2;
  grid-column-end: 5;
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

@media screen and (max-width: 479px) {
  #w-node-a25b5034fe39-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 2;
    grid-column-end: 3;
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }
}

#w-node-ff0f387dd8df-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
}

@media screen and (max-width: 479px) {
  #w-node-ff0f387dd8df-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 4;
    grid-row-start: 4;
    -ms-grid-row-span: 1;
    grid-row-end: 5;
  }
}

#w-node-6c8edfdfdbb6-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 5;
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
}

@media screen and (max-width: 479px) {
  #w-node-6c8edfdfdbb6-6b2c52d9 {
    -ms-grid-column: 2;
    grid-column-start: 2;
    -ms-grid-column-span: 1;
    grid-column-end: 3;
    -ms-grid-row: 4;
    grid-row-start: 4;
    -ms-grid-row-span: 1;
    grid-row-end: 5;
  }
}

#w-node-3189ebd806d4-6b2c52d9 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-5a1fcd34a4ea-6b2c52d9 {
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-4f8886b2a7ef-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 3;
  grid-column-end: 4;
  -ms-grid-row: 6;
  grid-row-start: 6;
  -ms-grid-row-span: 1;
  grid-row-end: 7;
}

@media screen and (max-width: 767px) {
  #w-node-4f8886b2a7ef-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 3;
    grid-column-end: 4;
    -ms-grid-row: 6;
    grid-row-start: 6;
    -ms-grid-row-span: 1;
    grid-row-end: 7;
  }
}

@media screen and (max-width: 479px) {
  #w-node-4f8886b2a7ef-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 3;
    grid-column-end: 4;
    -ms-grid-row: 6;
    grid-row-start: 6;
    -ms-grid-row-span: 1;
    grid-row-end: 7;
  }
}

#w-node-428b13728d0b-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  -ms-grid-column-align: auto;
  justify-self: auto;
}

#w-node-ff7f4dd1b60a-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-57b5771adbe8-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 3;
  grid-column-end: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
  -ms-grid-row-align: auto;
  align-self: auto;
}

#w-node-65607241bc51-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
  -ms-grid-column-align: auto;
  justify-self: auto;
}

#w-node-57ab75dd04e1-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
}

#w-node-6b3f4a5d058a-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-column-span: 3;
  grid-column-end: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
  -ms-grid-row-align: auto;
  align-self: auto;
}

#w-node-45f2b7169b48-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 4;
  grid-row-start: 4;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 5;
  -ms-grid-column-align: auto;
  justify-self: auto;
}

#w-node-c24de20d830b-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 4;
  grid-row-start: 4;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 5;
}

#w-node-aa4824baddcf-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 4;
  grid-row-start: 4;
  -ms-grid-column-span: 3;
  grid-column-end: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 5;
  -ms-grid-row-align: auto;
  align-self: auto;
}

#w-node-ae468e3b7f57-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 5;
  grid-row-start: 5;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 6;
  -ms-grid-column-align: auto;
  justify-self: auto;
}

@media screen and (max-width: 767px) {
  #w-node-ae468e3b7f57-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 5;
    grid-row-start: 5;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 6;
    -ms-grid-column-align: auto;
    justify-self: auto;
  }
}

#w-node-64d4049bc1b9-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 5;
  grid-row-start: 5;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 6;
}

#w-node-6bfb4d195584-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 5;
  grid-row-start: 5;
  -ms-grid-column-span: 3;
  grid-column-end: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 6;
  -ms-grid-row-align: auto;
  align-self: auto;
}

#w-node-52d5f47bb152-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-52d5f47bb153-6b2c52d9 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-52d5f47bb154-6b2c52d9 {
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-52d5f47bb155-6b2c52d9 {
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 5;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-80a302dddeec-6b2c52d9 {
  -ms-grid-column: 5;
  grid-column-start: 5;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 6;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-52e52ef9793f-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-bb07c529d4e1-6b2c52d9 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-797c54a1ece9-6b2c52d9 {
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-719fcc87611f-6b2c52d9 {
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 5;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-0dc684a91ff1-6b2c52d9 {
  -ms-grid-column: 5;
  grid-column-start: 5;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 6;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-350b8f49137e-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
}

#w-node-aa4b6a1543ad-6b2c52d9 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
}

#w-node-43ea1715ea77-6b2c52d9 {
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
}

#w-node-a60685c0c268-6b2c52d9 {
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 5;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
}

#w-node-81086d6d4fc0-6b2c52d9 {
  -ms-grid-column: 5;
  grid-column-start: 5;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 6;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
}

#w-node-b84bc3954bc9-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

@media screen and (max-width: 991px) {
  #w-node-b84bc3954bc9-6b2c52d9 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }
}

#w-node-b84bc3954bd0-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
}

@media screen and (max-width: 767px) {
  #w-node-b84bc3954bd0-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 2;
    grid-row-start: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
  }
}

#w-node-8caadf108f9c-6b2c52d9 {
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

@media screen and (max-width: 767px) {
  #w-node-8caadf108f9c-6b2c52d9 {
    -ms-grid-row: 3;
    grid-row-start: 3;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
  }
}

#w-node-9ba2d32ea4fa-6b2c52d9 {
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

@media screen and (max-width: 767px) {
  #w-node-9ba2d32ea4fa-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 4;
    grid-row-start: 4;
    -ms-grid-row-span: 1;
    grid-row-end: 5;
  }
}

#w-node-fe2c2e940e5e-6b2c52d9 {
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
}

@media screen and (max-width: 767px) {
  #w-node-fe2c2e940e5e-6b2c52d9 {
    -ms-grid-row: 6;
    grid-row-start: 6;
    -ms-grid-row-span: 1;
    grid-row-end: 7;
  }
}

#w-node-50c3ef7351ae-6b2c52d9 {
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
}

@media screen and (max-width: 767px) {
  #w-node-50c3ef7351ae-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 5;
    grid-row-start: 5;
    -ms-grid-row-span: 1;
    grid-row-end: 6;
  }
}

#w-node-0f3320597dc0-6b2c52d9 {
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 4;
  grid-row-start: 4;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 5;
}

@media screen and (max-width: 767px) {
  #w-node-0f3320597dc0-6b2c52d9 {
    -ms-grid-row: 7;
    grid-row-start: 7;
    -ms-grid-row-span: 1;
    grid-row-end: 8;
  }
}

#w-node-2e58413a332f-6b2c52d9 {
  -ms-grid-row-align: start;
  align-self: start;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row: 4;
  grid-row-start: 4;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 5;
}

@media screen and (max-width: 767px) {
  #w-node-2e58413a332f-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row: 8;
    grid-row-start: 8;
    -ms-grid-row-span: 1;
    grid-row-end: 9;
  }
}

#w-node-966673052a02-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 5;
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
  -ms-grid-row: 3;
  grid-row-start: 3;
}

#w-node-a841bf60f85d-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 7;
  -ms-grid-column: 6;
  grid-column-start: 6;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
  -ms-grid-row: 3;
  grid-row-start: 3;
}

#w-node-cc37f9612777-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 4;
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 7;
  -ms-grid-row: 6;
  grid-row-start: 6;
  -ms-grid-column-align: start;
  justify-self: start;
}

#w-node-d455209fed3e-6b2c52d9 {
  -ms-grid-column-span: 3;
  grid-column-end: 7;
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 9;
  -ms-grid-row: 8;
  grid-row-start: 8;
}

#w-node-a84d6a1527f3-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 8;
  -ms-grid-column: 7;
  grid-column-start: 7;
  -ms-grid-row-span: 1;
  grid-row-end: 7;
  -ms-grid-row: 6;
  grid-row-start: 6;
  -ms-grid-column-align: end;
  justify-self: end;
}

#w-node-38117c5c6c9e-6b2c52d9 {
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-column-span: 2;
  grid-column-end: 5;
}

#w-node-045de622515c-6b2c52d9 {
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 2;
  grid-column-end: 4;
}

#w-node-e395f0c5c157-6b2c52d9 {
  -ms-grid-row: 6;
  grid-row-start: 6;
  -ms-grid-row-span: 1;
  grid-row-end: 7;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
}

#w-node-360b8ac9c3f8-6b2c52d9 {
  -ms-grid-row: 6;
  grid-row-start: 6;
  -ms-grid-row-span: 1;
  grid-row-end: 7;
  -ms-grid-column: 8;
  grid-column-start: 8;
  -ms-grid-column-span: 2;
  grid-column-end: 10;
}

#w-node-56d6c7a1e547-6b2c52d9 {
  -ms-grid-row: 8;
  grid-row-start: 8;
  -ms-grid-row-span: 1;
  grid-row-end: 9;
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 2;
  grid-column-end: 4;
}

#w-node-acfefd8091bf-6b2c52d9 {
  -ms-grid-row: 8;
  grid-row-start: 8;
  -ms-grid-row-span: 1;
  grid-row-end: 9;
  -ms-grid-column: 7;
  grid-column-start: 7;
  -ms-grid-column-span: 2;
  grid-column-end: 9;
}

#w-node-469b875e1ac5-6b2c52d9 {
  -ms-grid-row: 10;
  grid-row-start: 10;
  -ms-grid-row-span: 1;
  grid-row-end: 11;
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-column-span: 2;
  grid-column-end: 5;
}

#w-node-5772745f6004-6b2c52d9 {
  -ms-grid-row: 10;
  grid-row-start: 10;
  -ms-grid-row-span: 1;
  grid-row-end: 11;
  -ms-grid-column: 6;
  grid-column-start: 6;
  -ms-grid-column-span: 2;
  grid-column-end: 8;
}

#w-node-958995e5e223-6b2c52d9 {
  -ms-grid-row: 12;
  grid-row-start: 12;
  -ms-grid-row-span: 1;
  grid-row-end: 13;
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-column-span: 3;
  grid-column-end: 7;
}

#w-node-838b67f3428f-6b2c52d9 {
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
  -ms-grid-column: 7;
  grid-column-start: 7;
  -ms-grid-column-span: 2;
  grid-column-end: 9;
}

#w-node-9f08c99fa959-6b2c52d9 {
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
  -ms-grid-column: 6;
  grid-column-start: 6;
  -ms-grid-column-span: 2;
  grid-column-end: 8;
}

#w-node-545aeeb1b8df-6b2c52d9 {
  -ms-grid-column-span: 3;
  grid-column-end: 7;
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-row-span: 3;
  grid-row-end: 8;
  -ms-grid-row: 5;
  grid-row-start: 5;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-26671df1d8f7-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 5;
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-row-span: 3;
  grid-row-end: 5;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-3ef8978b0c19-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 5;
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-column-align: start;
  justify-self: start;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-977ebd5eabd1-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 7;
  -ms-grid-column: 6;
  grid-column-start: 6;
  -ms-grid-row-span: 1;
  grid-row-end: 4;
  -ms-grid-row: 3;
  grid-row-start: 3;
  -ms-grid-column-align: end;
  justify-self: end;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-e59c7e9905f3-6b2c52d9 {
  -ms-grid-column-span: 2;
  grid-column-end: 5;
  -ms-grid-column: 3;
  grid-column-start: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 7;
  -ms-grid-row: 6;
  grid-row-start: 6;
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-05732f1ffd2a-6b2c52d9 {
  -ms-grid-column-span: 2;
  grid-column-end: 8;
  -ms-grid-column: 6;
  grid-column-start: 6;
  -ms-grid-row-span: 1;
  grid-row-end: 7;
  -ms-grid-row: 6;
  grid-row-start: 6;
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-84600fc52645-6b2c52d9 {
  -ms-grid-column-span: 3;
  grid-column-end: 7;
  -ms-grid-column: 4;
  grid-column-start: 4;
  -ms-grid-row-span: 1;
  grid-row-end: 9;
  -ms-grid-row: 8;
  grid-row-start: 8;
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-dfb62f184075-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 6;
  -ms-grid-column: 5;
  grid-column-start: 5;
  -ms-grid-row-span: 1;
  grid-row-end: 11;
  -ms-grid-row: 10;
  grid-row-start: 10;
  -ms-grid-column-align: center;
  justify-self: center;
  -ms-grid-row-align: center;
  align-self: center;
}

#w-node-d73e60f2c265-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 7;
  -ms-grid-column: 6;
  grid-column-start: 6;
  -ms-grid-row-span: 3;
  grid-row-end: 5;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-align: center;
  justify-self: center;
}

#w-node-e046b98fa901-6b2c52d9 {
  -ms-grid-column-span: 1;
  grid-column-end: 6;
  -ms-grid-column: 5;
  grid-column-start: 5;
  -ms-grid-row-span: 5;
  grid-row-end: 12;
  -ms-grid-row: 7;
  grid-row-start: 7;
  -ms-grid-column-align: center;
  justify-self: center;
}

@media screen and (max-width: 479px) {
  #w-node-cff5cd667689-6b2c52d9 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
    -ms-grid-row: 1;
    grid-row-start: 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-cf61da4f94b8-6b2c52d9 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 4;
    -ms-grid-row: 3;
    grid-row-start: 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-1ab37589fbec-6b2c52d9 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 3;
    -ms-grid-row: 2;
    grid-row-start: 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-b5c85646ff29-6b2c52d9 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 5;
    -ms-grid-row: 4;
    grid-row-start: 4;
  }
}

@media screen and (max-width: 479px) {
  #w-node-746c21d64d7b-6b2c52d9 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 6;
    -ms-grid-row: 5;
    grid-row-start: 5;
  }
}

@media screen and (max-width: 479px) {
  #w-node-8047acf1542e-6b2c52d9 {
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row-span: 1;
    grid-row-end: 7;
    -ms-grid-row: 6;
    grid-row-start: 6;
  }
}

#w-node-191c050bb4ef-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-fcaeef2a7062-6b2c52d9 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-835983bbc84e-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-0fb58b489920-6b2c52d9 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-ef68c1cf2aba-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-0650503ab86f-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 2;
  grid-row-end: 3;
}

#w-node-736eda9e759d-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

@media screen and (max-width: 479px) {
  #w-node-736eda9e759d-6b2c52d9 {
    -ms-grid-column: 1;
    grid-column-start: 1;
    -ms-grid-row: 1;
    grid-row-start: 1;
    -ms-grid-column-span: 1;
    grid-column-end: 2;
    -ms-grid-row-span: 1;
    grid-row-end: 2;
  }
}

#w-node-1d9e0908825a-6b2c52d9 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 1;
  grid-row-start: 1;
  -ms-grid-row-span: 1;
  grid-row-end: 2;
}

#w-node-50b43f697a53-6b2c52d9 {
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

#w-node-f87d8ec38804-6b2c52d9 {
  -ms-grid-column: 2;
  grid-column-start: 2;
  -ms-grid-column-span: 1;
  grid-column-end: 3;
  -ms-grid-row: 2;
  grid-row-start: 2;
  -ms-grid-row-span: 1;
  grid-row-end: 3;
}

@font-face {
  font-family: 'Aktifo a';
  src: url('../fonts/Aktifo_A_Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'Aktifo a';
  src: url('../fonts/Aktifo_A_Medium_Oblique.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: 'Aktifo a';
  src: url('../fonts/Aktifo_A_Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: 'Aktifo a';
  src: url('../fonts/Aktifo_A_Black_Oblique.ttf') format('truetype');
  font-weight: 900;
  font-style: italic;
}