body {
  overflow-x: hidden; }

a:visited, a:focus, a:active {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

h1 {
  font-size: 58px;
}
h2 {
  font-size: 36px;
  line-height: 36px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 14px;
}

.h1 {
  font-size: 58px;
  font-weight: 700;
}
.h2 {
  font-size: 36px;
  font-weight: 700;
}
.h3 {
  font-size: 24px;
  font-weight: 700;
}

.main a {
  text-decoration: underline;
}

@media (max-width: 991px) {
  h2 {
    margin-bottom: 20px;
  }
}

.main-container {
  padding-top: 11rem; }
  .main-container main.main {
    min-height: 500px; }

@media screen and (max-width: 767px) {
  .main-container {
    padding-top: 12rem; }
}

ul {
  padding-left: 0;
  list-style: url(../img/orange-bullet.png);
}

.ofab-inner-row-wrapper {
  margin-bottom: 5rem;
  position: relative; }
  .ofab-inner-row-wrapper h1 {
    margin: 0; }

@media screen and (max-width: 767px) {
  .ofab-inner-row-wrapper {
    margin-bottom: 3rem;
  }
}

.padding-none {
  padding: 0; }

a {
  transition-duration: 0.4s; }
  a .hover-hidden {
    display: inline; }
  a .hover-show {
    display: none; }
  a:hover .hover-hidden {
    display: none; }
  a:hover .hover-show {
    display: inline; }

.color-orange {
  color: #FF7900;
}

.header {
  position: fixed;
  width: 100%;
  margin: 0;
  z-index: 100;
  background: #FFFFFF;
  height: 70px;
  display: flex;
  top: 0;
  left: 0; }
  .header .container:before {
    display: none; }
  .header .container:after {
    display: none; }
  .header .header-inner-wrapper {
    background: #ffffff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
  }
  .hdr-sep {
    box-shadow: 0px 0px 10px 2px rgba(0,0,0,0.1);
  }
  .header .logo-wrapper {
    margin-top: 5px;
    max-width: 224px;
  }
  @media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .header .logo-wrapper {
      flex: 1;
    }
  }
  .header .logo-wrapper a {
      display: block; }
  .logo-pt {
    display: none;
    font-weight: bold;
    font-size: 13px;
    text-align: right;
  }
  .header .logo-wrapper img {
    max-width: 100%;
    height: auto;
    display: inline-block;
  }
  @media screen and (max-width:991px) {
    .header .logo-wrapper img {
      max-width: 180px;
      height: auto;
      display: inline-block;
    }
    .logo-pt {
      display: block;
    }
  }
  .header .nav {
    display: flex;
    justify-content: center;
    width: 50%; }
  @media (max-width: 1199px) {
    .header .nav {
      width: 60%; }
  }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    header .nav {
      margin-top: 7px;
    }
  }
    .header .nav .menu-toggle {
      display: none;
      font-size: 2em;
      position: absolute;
      right: 25px;
      margin-top: 24px;
      top: 0;
    }
    @media (max-width: 991px) {
      .header .nav .menu-toggle {
        display: block;
      }
    }
    .header .nav .menu-toggle.toggled-on {
      display: none;
    }
    .header .nav .menu-toggle img {
      max-height: 15px;
    }
    .header .nav .nav-list {
      display: flex;
      justify-content: space-around;
      width: 100%;
      margin: 0;
      padding: 0;
      list-style-type: none; }
      .header .nav .nav-list {
        list-style: none;
      }
      .header .nav .nav-list li a {
        text-decoration: none;
        font-weight: 700;
        font-size: 1.4rem;
        transition-duration: 0.4s; }
        .header .nav .nav-list li a:hover, .header .nav .nav-list li a:focus, .header .nav .nav-list li a:active {
          color: #FF7900;
          transition-duration: 0.4s; }
      .header .nav .nav-list li.current-menu-item a {
        color: #FF7900; }
  /* MAIN NAV DROPDOWN */
  .nav .nav-list .sub-menu {
    display: none;
    position: absolute;
    list-style: none;
    padding-top: 25px;
  }
  .nav .nav-list .sub-menu li {
    background: #333;
    padding: 10px 15px;
  }
  .nav .nav-list .sub-menu li:hover {
    background: #484848;
  }
  .nav .nav-list .sub-menu li a, .nav .nav-list .sub-menu li a:hover {
    color: #fff!important;
  }
  .header .nav .nav-list li:hover .sub-menu {
    display: block;
  }
  /* SLIDE NAV DROPDOWN */
  .slide-nav .nav-list .sub-menu {
    display: none;
  }
  .slide-nav .nav-list .sub-menu.active {
    display: block;
    -webkit-animation: slide-down .3s ease-out;
    -moz-animation: slide-down .3s ease-out;
  }
  .slide-nav .nav-list .sub-menu.active li {
    background: #f2f2f2;
  }
  @-webkit-keyframes slide-down {
      0% { opacity: 0; -webkit-transform: translateY(-100%); }
    100% { opacity: 1; -webkit-transform: translateY(0); }
  }
  @-moz-keyframes slide-down {
        0% { opacity: 0; -moz-transform: translateY(-100%); }
      100% { opacity: 1; -moz-transform: translateY(0); }
  }
  @media screen and (max-width: 991px) {
    .header .header-inner-wrapper {
      flex-direction: column;
      align-items: flex-start;
      padding-top: .5rem;
      padding-bottom: .5rem;
      justify-content: center; }
    .header .nav .nav-list {
    display: none; } }
  @media screen and (max-width: 768px) {
    .header .nav {
      width: 100%; } }
  @media screen and (max-width: 575px) {
    .header .nav .menu-toggle {
      display: block; }
    .header .nav .nav-list {
      display: none;
      flex-direction: column; }
      .header .nav .nav-list.toggled-on {
        display: flex; } }

/* SLIDE NAVIGATION */

.slide-nav {
  background: #FFFFFF;
  box-shadow: -3px 0px 15px 1px rgba(0,0,0,0.1);
  position: fixed;
  padding: 60px 0 0 0;
  top: 0;
  right: -300px;
  height: 100%;
  width: 240px;
  transition: all 1.5s; }

.slide-nav.toggled-on {
  display: block;
  right: 0;
  transition: all 1s;
}

@media screen and (max-width: 991px) {
  .slide-nav.toggled-on {
    overflow-y: auto;
  }
}

@media screen and (min-width: 992px) {
  .slide-nav ul.top-nav {
    display: none;
  }
}

.slide-nav ul {
  padding: 0;
  margin: 0;
  list-style: none; }

.slide-nav ul li {
  border-bottom: 1px solid #F0F0F0;
  padding: 0;
  text-align: center;
}

.slide-nav ul li:first-child {
  border-top: 1px solid #F0F0F0;
}

.slide-nav ul.top-nav li:last-child {
  border-bottom: 1px solid #F0F0F0;
}

.slide-nav ul li a {
  display: block;
  padding: 15px 35px;
  text-decoration: none;
  font-weight: bold;
}

.slide-nav ul li a:hover, .slide-nav ul li a.active{
  background: #f2f2f2;
}

.close-slide-btn {
  position: absolute;
  top: 25px;
  right: 50%;
  padding: 0;
  margin-right: -7px;
  background: none;
  border: none;
  width: 14px;
  height: 14px;
}

.close-slide-btn img {
  max-width: 14px;
  height: auto;
  display: block;
}

.color-orange {
  color: #FF7900; }

.large_ctas_with_arrow_module {
  display: flex; }

.large-ctas-with-arrow-module {
  max-width: 1280px;
  width: 95%;
  margin: 0 auto;
  position: relative;
}

.large-link-with-arrow-block {
  display: block;
  padding: 8rem 3rem;
  position: relative;
  height: 450px;
  text-decoration: none;
  transition-duration: 0.4s;
  background: #f2f2f2;
}
.large-link-with-arrow-block:first-child {
  border-right: 5px solid #ffffff;
}
@media screen and (max-width: 767px) {
  .large-link-with-arrow-block {
    padding: 3rem;
    height: 340px;
    border-bottom: 5px solid #ffffff;
  }
  .large-link-with-arrow-block:first-child {
    border-right: none;
    border-bottom: 5px solid #ffffff;
  }
}

  .large-link-with-arrow-block:hover {
    color: #FFFFFF; }
  .large-link-with-arrow-block:first-child {
    padding-left: 25px; }
  .large-link-with-arrow-block .title {
    font-size: 5.8rem;
    line-height: 5.8rem;
    margin-bottom: 5rem;
    font-weight: 700;
    width: 40%; }
  .large-link-with-arrow-block .description {
    font-size: 2.4rem;
    line-height: 2.4rem;
    vertical-align: top;
    width: 50%;
    display: inline-block;
    font-weight: 700;
    height: 0; }
  .large-link-with-arrow-block .arrow-img {
    margin-left: 9rem;
    display: inline;
    float: right; }
  .large-link-with-arrow-block:hover, .large-link-with-arrow-block:focus, .large-link-with-arrow-block:active {
    background-color: #FF7900;
    transition-duration: 0.4s;
    text-decoration: none; }
  .large-link-with-arrow-block .hover-show {
    display: none; }
  .large-link-with-arrow-block .hover-hidden {
    display: inline; }
  .large-link-with-arrow-block:hover .hover-show {
    display: inline; }
  .large-link-with-arrow-block:hover .hover-hidden {
    display: none; }
  @media screen and (max-width: 1199px) {
    .large-link-with-arrow-block:first-child {
      padding-left: 3rem; }
      .quote-block-row {
        max-width: 960px;
        margin: 0 auto;
      }
      .quote-block-1 {
        margin-bottom: 50px;
      } }
  @media screen and (max-width: 991px) {
    .large-link-with-arrow-block .arrow-img {
      margin-left: 0; } }
  @media screen and (max-width: 575px) {
    .large-link-with-arrow-block .title {
      font-size: 4rem;
      line-height: 4rem;
      width: 100%; }
    .large-link-with-arrow-block .arrow-img {
      float: right; } }

.small-link-with-arrow-block {
  position: relative;
  border: 2px solid #444;
  width: 240px;
  float: left;
  text-decoration: none;
  transition-duration: 0.4s;
  padding: 10px;
  float: right;
  margin-left: 30px;
}

.small-link-with-arrow-block p.description {
  position: absolute;
  bottom: 10px;
  left: 10px;
}

@media screen and (max-width: 767px) {
  .small-link-with-arrow-block {
    width: 100%;
    margin-bottom: 15px;
    margin-left: 0; }
}
  .small-link-with-arrow-block:hover {
    text-decoration: none;
    background: #FF7900;
    border: 2px solid #FF7900;
    color: #FFFFFF; }
  .small-link-with-arrow-block .description {
    font-size: 1.6rem;
    line-height: 1.6rem;
    width: 60%;
    font-weight: 700;
    display: block;
    margin: 0; }
  .small-link-with-arrow-block .arrow-img {
    float: right; }

.jump-to-top-outer-wrapper {
  margin: 3rem 0;
  display: flex;
  justify-content: center; }
  .jump-to-top-outer-wrapper .jump-to-top-inner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer; }
  .jump-to-top-outer-wrapper .jump-to-top-arrow-img {
    margin-bottom: .7rem; }
  .jump-to-top-outer-wrapper .jump-to-top-text {
    font-weight: 700;
    font-size: 1.4rem; }

.quote-block-1 {
  display: inline-block;
  position: relative; }
  .quote-block-1 .quote-profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: top;
    position: absolute;
    top: 0;
    left: 0;
  }
  .quote-block-1 .person-quote-wrapper {
    display: inline-block;
    width: 100%;
    padding-left: 145px; }
  .quote-block-1 .fa {
    font-size: 4rem;
    margin-bottom: 1rem; }
  .quote-block-1 .quotation-mark {
    margin-bottom: 1rem; }
  .persons-quote {
    font-size: 16px;
    line-height: 22px; }
  .quote-block-1 .persons-name {
    font-weight: 700; }
  @media screen and (max-width: 991px) {
    .quote-block-1 .person-quote-wrapper {
      margin-left: 0; } }
  @media screen and (max-width: 767px) {
    .quote-block-1 .quote-profile-img {
      position: relative;
      top: auto;
      left: auto;
      margin: 0 auto;
      display: block;
    }
    .quote-block-1 .person-quote-wrapper {
      display: inline-block;
      width: 100%;
      padding-left: 0;
      margin-top: 2rem;
    }
    .quote-block-1 .persons-quote {
      font-size: 16px;
      line-height: 22px;
    }
  }

@media screen and (max-width: 767px) {
  .quote-block-2-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.quote-block-2 {
  display: inline-block;
   width: 100%; }
  .quote-block-2 .quote-profile-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: block;
    vertical-align: top;
    margin: 0 auto; }
  .quote-block-2 .person-quote-wrapper {
    display: inline-block;
    margin-top: 2rem; }
  .quote-block-2 .quotation-mark {
    margin-bottom: 1rem; }
  .quote-block-2 .persons-quote {
    font-size: 16px;
    line-height: 22px; }
  .quote-block-2 .persons-name {
    font-weight: 700; }

@media screen and (max-width: 767px) {
  .quote-block-2 .persons-quote {
    font-size: 16px;
    line-height: 22px; }
  .quote-block-2 .persons-name {
    font-weight: 700; }
}

.title-with-orange-block .title {
  font-weight: 700;
  position: relative; }
  .title-with-orange-block .title:before {
    content: "";
    background-color: #FF7900;
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    z-index: -1;
    top: -13px;
    left: -14px; }

.fellow-block {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .fellow-block .fellow-logo-img-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    height: 120px;
    align-items: center;
    justify-content: center; }

  .fellow-block .fellow-logo-img-wrapper a {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    justify-content: center;
  }
  .fellow-block .fellow-logo-img-wrapper a:hover {
    text-decoration: none;
  }
  .fellow-block .fellow-logo-img-wrapper a:hover img {
    display: none;
  }
  .fellow-block .fellow-logo-img-wrapper a img {
    max-width: 150px;
  }
  .fellow-block .fellow-logo-img-wrapper a span {
    background: #FFFFFF;
    display: none;
    text-align: center;
    font-size: 13px;
    width: 100%;
  }
  .fellow-block .fellow-logo-img-wrapper a:hover span {
    display: block;
    text-decoration: none;
  }
  @media screen and (max-width: 767px) {
    .fellow-block .fellow-logo-img-wrapper a:hover span {
      display: none;
    }
    .fellow-block .fellow-logo-img-wrapper a:hover img {
      display: block;
    }
  }
  .fellow-block .fellow-name {
    font-weight: 700; }

.perk-block .perk-title {
  font-weight: 700;
  margin-bottom: 2.5rem; }

/* MENTORS */
.mentor {
  margin-bottom: 25px;
  text-align: center;
  min-height: 226px;
  max-height: 226px;
}
.mentor h2 {
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 3px 0;
}
.mentor span {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.mentor p {
  font-size: 14px;
  font-weight: 400;
  margin: 10px 0;
}
.mentor img {
  display: inline-block;
  width: 120px;
  height: 120px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 10px;
  margin-bottom: 2rem;
}

/* MENTORS GRID */
.gridder-bs-wrap {
  margin-bottom: 50px;
}

.gridder {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    font-size: 0
}

.gridder-list,
.gridder-show {
    font-size: 16px
}

.gridder-list {
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
}

.gridder-show {
    display: block;
    float: left;
    width: 100%;
    background: #F8F8F8;
    margin-bottom: 50px;
}
.gridder-content {
    display: none
}

.gridder-expanded-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 15px;
    margin-bottom: 25px;
    text-align: center;
}

.gridder-expanded-content h2 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 0;
}

.gridder-expanded-content button {
  background: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-bottom: 15px;
  text-align: center;
}

.selectedItem img {
  border: 5px solid #FF7900;
  border-radius: 100%;
}

.email-sign-up {
  display: flex;
  flex-direction: column;
  align-items: center; }
  .email-sign-up .title {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 2.4rem;
    margin-bottom: 2rem;
    text-align: center; }
  .email-sign-up input.email-sign-up-input {
    width: 400px;
    height: 50px;
    padding-left: 2rem;
    margin-right: 1rem;
    border: none;
    background-color: #F8F8F8; }
  .email-sign-up button.email-sign-up-submit-btn {
    background-color: #FF7900;
    border: none;
    width: 131px;
    height: 50px;
    font-weight: 700; }

.large-orange-cta-wrapper {
  text-align: center;}
  .large-orange-cta-wrapper .large-orange-cta {
    display: inline-block;
    background-color: #FF7900;
    padding: 0.5em 2em;
    font-size: 3.6rem;
    line-height: 3.6rem;
    font-weight: 700;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    border: 3px solid #FF7900;
    color: #FFFFFF; }
    .large-orange-cta-wrapper .large-orange-cta:hover {
      background-color: #FFFFFF;
      border: 3px solid #444;
      color: #444; }
  @media screen and (max-width: 768px) {
    .large-orange-cta-wrapper {
      padding: 0 15px; }
      .large-orange-cta-wrapper .large-orange-cta {
        width: 100%; } }
  @media screen and (max-width: 575px) {
    .large-orange-cta-wrapper .large-orange-cta {
      font-size: 1.8rem;
      line-height: 2rem; } }

.bullet-symbol {
  color: #FF7900;
}

.bullet-abs {
  position: absolute;
  top: -2px;
  left: 15px;
}

.full-bleed-bg-img {
  height: 436px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; }

.search-q {
  padding-right: 50px;
}

.search-exit {
  position: absolute;
  top: 1px;
  right: 15px;
  font-size: 30px;
}

.sidebar a {
  text-decoration: none;
}

.sidebar {
  font-size: 1.4rem; }
  .sidebar .widget_search {
    margin-bottom: 3rem; }
    .sidebar .widget_search input.search-input {
      height: 30px;
      width: 100%;
      padding: 0 25px 0 10px;
      border: none;
      background-color: #F8F8F8; }
    .sidebar .widget_search .search-submit {
      position: absolute;
      top: 6px;
      right: 18px;
      background: transparent;
      border: none; }

  .sidebar .simple-social-icons ul li {
      margin: 0 18px 0 !important; }
  .sidebar .widget_categories {
    border-bottom: 2px solid #F0F0F0;
    margin-bottom: 1rem; }
    .sidebar .widget_categories h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 2rem; }
    .sidebar .widget_categories ul {
      padding-left: 15px; }
    .sidebar .widget_categories li.cat-item {
      list-style-type: none;
      margin-bottom: 2rem; }
      .sidebar .widget_categories li.cat-item a:hover {
        color: #FF7900; }
  .sidebar .widget_mc4wp_form_widget h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2.5rem; }
    .widget-mailchimp {
    .border-bottom: 2px solid #F0F0F0;
    margin-bottom: 1rem;
    width: 100%;
    float: left;
    }
    .widget-mailchimp h3 {
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 2rem;
    }
    .mailchimp-sidebar-input {
      border: none;
      background: #f8f8f8;
      border-radius: 0;
      font-size: 14px;
      margin-bottom: 8px;
      padding: 10px;
      float: left;
      width: 60%;
    }
    .mailchimp-sidebar-btn {
      font-weight: bold;
      color: #000000;
      float: right;
      width: 38%;
      border-radius: 0;
      background: #FF7900;
      border: none;
      padding: 10px 15px;
      font-size: 12px;
    }
  @media screen and (max-width: 1199px) {
    .mailchimp-sidebar-input {
      width: 100%;
    }
    .mailchimp-sidebar-btn {
      width: 100%;
    }
  }
  @media screen and (max-width: 991px) {
    .widget-mailchimp {
      margin-bottom: 50px;
    }
    .mailchimp-sidebar-input {
      width: 60%;
    }
    .mailchimp-sidebar-btn {
      width: 38%;
    }
  }
  .sidebar .tribe-events-list-widget h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 2.5rem; }
  .sidebar .tribe-events-list-widget .tribe-list-widget {
    padding: 0; }
  .sidebar .tribe-events-list-widget .tribe-event-title {
    font-size: 1.4rem; }
  .sidebar .tribe-events-list-widget .tribe-events-list-widget-events {
    padding: 0;
    padding-left: 2rem;
    position: relative; }
    .sidebar .tribe-events-list-widget .tribe-events-list-widget-events:before {
      content: '*';
      color: #FF7900;
      font-weight: 700;
      font-size: 2.4rem;
      position: absolute;
      left: 0; }

.color-orange {
  color: #FF7900; }

.blog-header {
  padding-top: 70px;
}
.blog-header:before {
  content: '';
  border-top: 1px solid #979797;
  display: block;
  margin-bottom: 1.5rem; }
.blog-header:after {
  content: '';
  border-bottom: 1px solid #979797;
  display: block;
  margin-top: 1.5rem; }

.blog-header h1 {
  font-weight: 700;
  font-size: 2.4rem;
  margin:0;
}

.blog-page-title {
  margin-bottom: 6rem;
  margin-top: 0rem; }

.blog-posts-row {
  margin-bottom: 2rem; }
.blog-front-page {
  padding-top: 5rem;
}
.blog-front-page .spotlight-wrapper {
  margin-bottom: 6rem; }
  .blog-front-page .spotlight-wrapper .spotlight-img-wrapper {
    margin-bottom: 2rem; }
  .blog-front-page .spotlight-wrapper .title {
    font-weight: 700;
    margin-bottom: 2rem; }
  .blog-front-page .spotlight-wrapper .post-excerpt {
    margin-bottom: 1rem; }
  .blog-front-page .spotlight-wrapper .date {
    font-size: 1.2rem; }
  .blog-front-page .spotlight-wrapper .category {
    font-size: 1.2rem; }
    .blog-front-page .spotlight-wrapper .category a {
      color: #FF7900; }

.blog-front-page .row-title {
  font-size: 3.6rem;
  line-height: 3.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem; }

.blog-front-page .row-inner-wrapper {
  margin-bottom: 5rem; }

.post-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.spotlight-wrapper a {
  text-decoration: none;
}

.post-wrapper  h1,
.post-wrapper  h2,
.post-wrapper  h3,
.post-wrapper  h4,
.post-wrapper  h5,
.post-wrapper  h6 {
  margin-bottom: 20px;
}

.post-wrapper ul {
  padding-left: 20px;
}

.post-wrapper ul li {
  margin-top: 10px;
}

.main-two-columns {
  margin-bottom: 100px;
}

.main-two-columns h1 {
  margin-bottom: 0;
}

.gray-posts-row {
  background: #f8f8f8;
}

.single-blog-post-page .single-blog-post-title-details-wrapper {
  text-align: center;
  margin-bottom: 3rem; }

.single-blog-post-page .single-blog-post-title {
  font-size: 3.6rem;
  font-weight: 700;
  margin: 0;
  margin-bottom: 1rem; }

.single-blog-post-page .single-blog-post-details {
  font-size: 1.2rem; }

.single-blog-post-page .single-blog-post-image-wrapper {
  margin-bottom: 40px;
  width: 100%; }
  .single-blog-post-page .single-blog-post-image-wrapper .wp-post-image {
    width: 100%; }

.single-blog-post-page .single-blog-post-content-row-wrapper {
  line-height: 2.2rem;
  margin-bottom: 10rem; }

@media screen and (max-width: 480px) {
  .single-blog-post-page .single-blog-post-content-row-wrapper img {
    display: block;
    width: 100%;
    height: auto;
  }
  .single-blog-post-page .single-blog-post-content-row-wrapper img.small {
    display: block;
    width: auto!important;
    height: auto;
  }
}

.single-blog-post-page .single-blog-post-content-row-wrapper a {
  color: #FF7900;
}

.single-blog-post-page .single-blog-post-content-row-wrapper a:hover {
  opacity: 0.9;
  text-decoration: none;
}

.single-blog-post-page .article-author-info {
  margin-bottom: 3rem;
  display: flex; }
  .single-blog-post-page .article-author-info .article-author-profile-picture {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-right: 4rem; }
  .single-blog-post-page .article-author-info .article-author-desc-icon-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-around; }
  .single-blog-post-page .article-author-info .article-author-desc {
    font-weight: 700; }
  .single-blog-post-page .article-author-info .article-author-social-icons {
    display: flex; }
    .single-blog-post-page .article-author-info .article-author-social-icons .article-author-social-icon {
      display: flex;
      width: 30px;
      height: 30px;
      border-radius: 15px;
      background-color: #444;
      align-items: center;
      justify-content: center;
      margin-right: 2rem; }
      .single-blog-post-page .article-author-info .article-author-social-icons .article-author-social-icon i {
        color: #FFFFFF; }

.single-blog-post-page .row-title {
  font-size: 3.6rem;
  line-height: 3.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem; }

.back-to-blog-row-wrapper {
  display: flex;
  justify-content: center;
  font-size: 3.6rem;
  font-weight: 700;
  margin: 6rem 0 2rem 0; }

.owl-carousel .owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  z-index: -1; }
  .owl-carousel .owl-nav .owl-prev {
    margin-left: -5rem;
    float: left; }
    .owl-carousel .owl-nav .owl-prev.disabled {
      display: none; }
  .owl-carousel .owl-nav .owl-next {
    margin-right: -5rem;
    float: right; }
    .owl-carousel .owl-nav .owl-next.disabled {
      display: none; }

.owl-carousel .owl-item img {
  height: 209px; }

.blog-post-block {
  margin-bottom: 25px;
}

.blog-post-block a {
  text-decoration: none;
}

.blog-post-block .blog-thumbnail-img-wrapper {
  display: block;
  margin-bottom: 1.5rem; }

.blog-post-block .blog-thumbnail-img-wrapper img {
  width: 100%;
}

.blog-post-block .date-category-wrapper {
  margin-bottom: 1rem; }
  .blog-post-block .date-category-wrapper .date {
    font-size: 1.2rem; }
  .blog-post-block .date-category-wrapper .category {
    font-size: 1.2rem; }
    .blog-post-block .date-category-wrapper .category a {
      color: #FF7900; }
      .blog-post-block .date-category-wrapper .category a:hover, .blog-post-block .date-category-wrapper .category a:focus, .blog-post-block .date-category-wrapper .category a:active {
        color: #FF7900;
        transition-duration: 0.4s; }

.blog-post-block .post-title {
    font-size: 2.4rem;
    font-weight: 700;
    width: 69%;
    line-height: 2.4rem;
    min-height: 5rem;
    max-height: 5rem;
    overflow: hidden;
    margin-bottom: 1rem; }
  .blog-post-block .post-title a:hover, .blog-post-block .post-title a:focus, .blog-post-block .post-title a:active {
    color: #FF7900;
    transition-duration: 0.4s; }

.blog-post-block .post-excerpt {
  margin-bottom: 1rem;
  max-width: 70%; }

body.home .header {
  background: transparent;
  transition-duration: 200ms; }

body.home .logo-wrapper {
  opacity: 0;
  transition-duration: 200ms; }

body.home .home-link {
  visibility: hidden; }

.homepage-hero-image {
  background-size: cover;
  margin-top: 70px;
  width: 100%;
  height: 560px;
  position: relative; }
  .homepage-hero-image .hero-logo {
    z-index: 10;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0); }
  @media screen and (max-width: 575px) {
    .homepage-hero-image {
      height: 300px; } }

.front-page {
  padding-top: 40px;
}
.front-page .center-text-description {
  padding: 0 20rem;
  font-size: 30px;
  line-height: 30px;
}
@media screen and (max-width: 1199px) {
  .front-page .center-text-description {
    padding: 0 8rem;
    }
}
@media screen and (max-width: 768px) {
  .front-page .center-text-description {
    padding: 0;
  }
}


.ofab-inner-row-wrapper .fab-news-list .fab-news-list-item {
  padding: 2rem 0;
  border-bottom: 1px solid #F0F0F0;
  display: flex;
  align-items: center;
  justify-content: center; }
  .ofab-inner-row-wrapper .fab-news-list .fab-news-list-item:first-child {
    border-top: 1px solid #F0F0F0; }
  .ofab-inner-row-wrapper .fab-news-list .fab-news-list-item .logo-wrapper {
    display: flex;
    align-items: center;
    width: 150px;
    justify-content: center; }
  .ofab-inner-row-wrapper .fab-news-list .fab-news-list-item .logo-wrapper img {
    width: 100%;
    height: auto;
    display: inline-block;
  }
  .ofab-inner-row-wrapper .fab-news-list .fab-news-list-item .text-description {
    display: inline-block;
    width: 70%;
    vertical-align: middle;
    margin-left: 4rem; }
  .ofab-inner-row-wrapper .fab-news-list .fab-news-list-item .link {
    display: block;
    color: #FF7900; }

@media screen and (max-width: 991px) {
  .news-title {
    max-width: 400px;
  } }

.for-startups-page .ofab-inner-row-wrapper .module-title {
  font-weight: 700; }

.for-corporations-page .page-description-row-wrapper {
  margin-bottom: 10rem; }
  .for-corporations-page .page-description-row-wrapper .page-description {
    text-align: center;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 2.4rem;
    padding: 0 5rem; }

.for-corporations-page .small-link-with-arrow-block {
  float: right; }

.mentors-page .page-description-row-wrapper {
  margin-bottom: 10rem; }
  .mentors-page .page-description-row-wrapper .page-description {
    text-align: center;
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 2.4rem; }

.mentors-page .our-mentors-row-wrapper .title {
  font-size: 5.8rem;
  font-weight: 700;
  margin-bottom: 8rem; }

.mentors-page .text-wrapper .text-content {
  word-wrap: break-word;
  font-size: 3.6rem;
  line-height: 3.6rem;
  text-align: center;
  font-weight: 700; }
  .mentors-page .text-wrapper .text-content a {
    color: #FF7900; }
@media (max-width: 480px) {
  .mentors-page .text-wrapper .text-content {
    font-size: 2.6rem;
    line-height: 2.6rem;
  }
}

.fellows-page .fellows-industry-list {
  list-style-type: none;
  font-weight: 700;
  padding: 0;
  background: #FFFFFF;
  margin-bottom: 5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #F0F0F0;
  z-index: 50; }
  .fellows-page .fellows-industry-list .fellows-industry-item {
    color: #FF7900;
    display: inline-block;
    margin: 0 .5rem;
    cursor: pointer; }
    .fellows-page .fellows-industry-list .fellows-industry-item:hover {
      color: #444; }
    .fellows-page .fellows-industry-list .fellows-industry-item.active {
      color: #444; }

.fellows-page .fellows-grid-outer-wrapper {
  margin-bottom: 10rem; }
  .fellows-page .fellows-grid-outer-wrapper .fellow-twitter {
    font-weight: 700; }
  .fellows-page .fellows-grid-outer-wrapper .fellow-linkedin {
    font-weight: 700; }

.fellows-page .industry-name {
  text-align: center;
  font-size: 2.4rem;
  line-height: 2.4rem;
  font-weight: 700; }

.fellows-page .fellows-grid-inner-wrapper .fellow-block {
  margin-bottom: 4rem; }

.fellows-page .text-wrapper .text-content {
  word-wrap: break-word;
  font-size: 3.6rem;
  line-height: 3.6rem;
  text-align: center;
  font-weight: 700; }
  .fellows-page .text-wrapper .text-content a {
    color: #FF7900; }

.center-text-description {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 2.4rem;
  padding: 0 15rem;
  margin: 0 auto; }

@media screen and (max-width: 1199px) {
  .center-text-description {
    padding: 0 5rem;
  } }
@media screen and (max-width: 991px) {
  .center-text-description {
    padding: 0;
  } }

.module-title {
  font-weight: 700;
  margin-bottom: 50px;
}

.page-title-block-wrapper {
  background: #ffffff;
  width: 100%;
  z-index: 50;
}

@media screen and (max-width: 991px) {
  .page-title-block-wrapper {
    display: none;
  }
}

.page-title-block-wrapper.fixed {
  position: fixed;
  top: 70px;
  left: 0;
}

.page-title-block .page-title {
  border-bottom: 2px solid #F0F0F0;
  font-size: 5.8rem;
  padding: 25px 0 30px 0;
  line-height: 5.8rem;
  font-weight: 700;
  margin: 0;
}

.ofab-inner-row-wrapper .page-title {
  font-size: 5.8rem;
  line-height: 5.8rem;
  font-weight: 700; }

@media screen and (max-width: 575px) {
  .ofab-inner-row-wrapper .page-title {
    font-size: 3rem;
    line-height: 3rem;
  }
}

.social-media-link i {
  margin-right: .25rem; }

.fab-force-perk-item-row {
  margin-bottom: 3.5rem; }

.fab-force-perk-item {
  display: flex;
  margin-bottom: 4rem; }
  .fab-force-perk-item .bullet-symbol {
    margin-right: 1rem; }



@media screen and (max-width: 768px) {
  .fab-force-perk-item {
    margin-bottom: 2rem; }
  .how-it-works-group .step-wrapper {
    flex-direction: column; } }

.fab-councils-module .orange-square-grid {
  margin-bottom: 4rem; }

.fab-councils-module .orange-square {
  width: 100%;
  background-color: #FF7900;
  margin-bottom: 3rem;
  color: #FFFFFF;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  font-size: 2.4rem;
  text-decoration: none;
  transition-duration: 0.4s; }
  .fab-councils-module .orange-square:hover {
    transition-duration: 0.4s;
    background-color: #F8F8F8;
    color: #FF7900; }

@media screen and (max-width: 1199px) {
  .fab-councils-module .orange-square {
    font-size: 1.8rem;
    padding: 1rem; } }

@media screen and (max-width: 991px) {
  .fab-councils-module .orange-square {
    font-size: 2.4rem; } }

@media screen and (max-width: 767px) {
  .fab-councils-module .orange-square {
    height: auto!important;
    font-size: 1.6rem;
    margin-bottom: 10px; } }

.fab-force-for-cvcs-module .main-description {
  font-size: 2.4rem;
  line-height: 2.4rem;
  margin-bottom: 7rem; }

.fab-force-for-cvcs-module .fab-force-item-row {
  margin-bottom: 4rem; }

.fab-force-for-cvcs-module .fab-force-item .icon-image-wrapper {
  text-align: center;
  margin-bottom: 3rem; }

.fab-force-for-cvcs-module .fab-force-item {
  margin-bottom: 4rem;
}

.fab-force-for-cvcs-module .fab-force-item .fab-force-item-title {
  font-weight: 700;
  color: #FF7900;
  margin-bottom: 2rem; }

.fab-force-for-cvcs-module .member-group .member-group-title {
  font-size: 2.4rem;
  line-height: 2.4rem;
  font-weight: 700;
  margin-bottom: 5rem; }

.fab-force-for-cvcs-module .member-group .member-row {
  display: flex;
  align-items: center;
  margin-bottom: 5rem; }
  .fab-force-for-cvcs-module .member-group .member-row .member-item {
    display: flex;
    justify-content: center; }

.companies-with-title-module .ofab-inner-row-wrapper {
  margin-bottom: 5rem; }
  .companies-with-title-module .ofab-inner-row-wrapper .module-title {
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem; }

@media screen and (max-width: 767px) {
  .companies-with-title-module .ofab-inner-row-wrapper .module-title {
    margin-bottom: 2rem;
  }
}



.companies-with-title-module .four-logo-row:last-child {
  margin-bottom: 4rem;
}

@media screen and (max-width: 767px) {
  .companies-with-title-module .four-logo-row:last-child {
    margin-bottom: 2rem;
  }
}

  .companies-with-title-module .four-logo-row .logo-img-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    .companies-with-title-module .four-logo-row .logo-img-text-wrapper .logo-img-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 45px;
      width: 125px; }
    .companies-with-title-module .four-logo-row .logo-img-text-wrapper .logo-text-description {
      display: none;
      position: absolute;
      font-size: 13px;
      padding: 10px;
      background: #FFFFFF;
      text-align: center; }
    .companies-with-title-module .four-logo-row .logo-img-text-wrapper:hover .logo-img-wrapper {
      display: none; }
    .companies-with-title-module .four-logo-row .logo-img-text-wrapper:hover .logo-text-description {
      display: flex; }

@media screen and (max-width: 767px) {
  .companies-with-title-module .four-logo-row {
    margin-bottom: 0; }
    .companies-with-title-module .four-logo-row .logo-img-text-wrapper {
      margin-bottom: 8rem; }
      .companies-with-title-module .four-logo-row .logo-img-text-wrapper:hover .logo-img-wrapper {
        display: flex; }
      .companies-with-title-module .four-logo-row .logo-img-text-wrapper:hover .logo-text-description {
        display: none; } }

.text-overlay-image-module .module-wrapper {
  display: flex;
  align-items: center; }

.text-overlay-image-module .text {
  align-self: center;
  background: white;
  margin-right: -100px;
  z-index: 1;
  font-size: 2.4rem;
  line-height: 2.4rem;
  font-weight: 400;
  padding-right: 15rem;
  order: 1; }

.text-overlay-image-module img {
  order: 2;
}

@media screen and (max-width: 1199px) {
  .text-overlay-image-module .text {
    margin-right: -30%;
    padding: 25px 25px 25px 0; } }

@media screen and (max-width: 991px) {
  .text-overlay-image-module .module-wrapper {
  /* flex-direction: column; */ }
  .text-overlay-image-module .text {
    margin-right: -50%;
    font-size: 2rem; } }

@media screen and (max-width: 767px) {
  .text-overlay-image-module .module-wrapper {
  flex-direction: column; }
  .text-overlay-image-module .text {
    width: 94%;
    margin: 0 3%;
    background: #FFFFFF;
    padding: 15px;
    margin-top: -60px;
    order: 2; }
  .text-overlay-image-module img {
    order: 1;
  } }

.offers-grid-module .module-title {
  margin-bottom: 3rem; }

.offers-grid-module .offer-icon-row {
  margin: 6rem 0 5rem 0; }

.offers-grid-module .offer-row {
  margin-bottom: 1rem; }

.offers-grid-module .offer-item {
  padding: 0 15px;
  min-height: 60px;
  margin-bottom: 15px;
 }
@media screen and (max-width: 767px) {
  .offers-grid-module .offer-item {
    min-height: auto;
   }
}
  .offers-grid-module .offer-item .offer-title {
    font-weight: 700;
    margin-bottom: 2rem; }
  .offers-grid-module .offer-item .bullet-symbol {
    align-self: flex-start; }
  .offers-grid-module .offer-item .offer-description {
    font-weight: 500; }

.steps-row {
  margin-bottom: 5rem;
}

@media (max-width: 991px) {
  .steps-row {
    margin-bottom: 0;
  }
}

.case-studies-module .module-title-wrapper {
  position: relative;
  margin: 0 -100rem;
  padding: 0 100rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 220px;
  background-color: #F8F8F8;
  margin-bottom: 10rem; }

.case-studies-module .module-title-image {
  align-self: flex-end;
  max-width: 350px; }

.case-studies-module .case-study-item {
  margin: 8rem 0; }
.case-cf img {
  width: 100%!important;
  height: auto!important;
  display: block;
}
@media screen and (max-width: 767px) {
  .case-studies-module .case-study-item {
    margin: 4rem 0; }
}
  .case-studies-module .case-study-item .case-study-title {
    font-size: 3.6rem;
    line-height: 3.6rem;
    margin-bottom: 3rem;
    font-weight: 700; }
  .case-studies-module .case-study-item .case-study-item-img-wrapper {
    width: 400px;
    height: 250px; }
    .case-studies-module .case-study-item .case-study-item-img-wrapper .case-study-item-img {
      max-height: 100%;
      max-width: 100%; }

  .case-studies-module .module-title-wrapper {
    margin: 0;
    padding: 0; } }

@media screen and (max-width: 575px) {
  .case-studies-module .module-title-wrapper {
    flex-direction: column; }
    .case-studies-module .module-title-wrapper .module-title-image {
      max-width: 200px;
      align-self: center; }
  .case-studies-module .case-study-item .case-study-ctas-wrapper {
    flex-direction: column;
    align-items: flex-end; }
    .case-studies-module .case-study-item .case-study-ctas-wrapper .small-link-with-arrow-block {
      margin-bottom: 2rem; } }

.apply-to-program-steps-module .module-title {
  margin-bottom: 50px; }
  .apply-to-program-steps-module .module-title a {
    color: #FF7900;
    text-decoration: underline; }
    .apply-to-program-steps-module .module-title a:hover {
      color: #444; }

.apply-to-program-steps-module .step-item-number {
  color: #FF7900;
  margin-bottom: 1rem;
  font-weight: 700; }

.apply-to-program-steps-module .step-item-description {
  margin-bottom: 2rem;
}

.team-members-grid-module .team-members-row,
.advisors-grid-module .team-members-row {
  margin-bottom: 15px; }

.team-members-grid-module .team-member-block,
.advisors-grid-module .team-member-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  text-align: center; }
  .team-members-grid-module .team-member-block .team-member-img,
  .advisors-grid-module .team-member-block .team-member-img {
    align-self: center;
    margin-bottom: 2rem;
    width: 120px;
    height: 120px;
    border-radius: 50%; }
  .team-member-name {
    font-weight: 700;
    line-height: 1.8rem;
    display: block; }
  .team-member-position {
    line-height: 1.8rem;
    display: block; }
  .team-members-grid-module .team-member-block .social-media-link,
  .advisors-grid-module .team-member-block .social-media-link {
    line-height: 1.8rem; }
.tm-info {
  min-height: 60px;
}
@media screen and (max-width: 819px) {
  .tm-info {
    min-height: 80px;
  }
}

.sep-module {
  padding: 0;
}

.sep-module h2 {
  font-size: 2.4rem;
  margin: 0 0 40px 0;
}

.win-item {
  padding: 30px;
  font-weight: 500;
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff;
}

.benefit-item {
  font-weight: 500;
  padding: 0;
  border-left: 15px solid #f2f2f2;
  border-right: 15px solid #f2f2f2;
}


@media (max-width: 991px) {
  .win-item, .benefit-item {
    margin-bottom: 15px;
    text-align: center;
  }
}

.win-item h3, .benefit-item h3 {
  font-size: 20px;
  margin: 0 0 20px 0;
}


.win-item p {
  margin: 10px 0 15px 0;
}

.benefit-item span {
  padding: 10px;
  display: block;
}

.benefit-item span strong {
  color: #FF7900;
}

.benefit-item img {
  max-height: 100%!important;
  margin: 0!important;
}

.win-item.pink {
  background: #FFB4E6;
}
.win-item.yellow {
  background: #FFD200;
}
.win-item.grey, .benefit-item.grey {
  background: #F0F0F0;
}

/* STEPS */

.step-box-wrapper {
  text-align: center;
  width: 100%;
  padding: 50px 0;
}

.step-box-wrapper h2 {
  margin: 0 0 50px 0;
}

.step-box-wrapper img {
  margin: 30px 0;
  max-height: 60px;
  width: auto;
  display: inline-block;
}

.step-box {
  padding: 5px 10px;
  text-align: center;
  display: block;
  max-width: 140px;
  margin: 0 auto;
  font-weight: 700;
}

.step-box.one {
  background: #F0F0F0;
}
.step-box.two {
  background: #D8D8D8;
}
.step-box.three {
  background: #979797;
}

.step-box-descr {
  display: block;
  padding: 0 25px;
}

.step-box-descr strong {
  display: inline-block;
}

@media (max-width: 767px) {
  .step-box-descr {
    margin-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .step-box-descr {
    display: block;
    padding: 0 5px;
  }
}

/* COUNCILS */

.councils {
  padding-top: 50px;
  padding-bottom: 50px;
}

.councils h2 {
  text-align: left;
  margin: 0 0 25px 0;
}

.councils a {
  display: block;
  padding: 10px;
  border: 2px solid #000000;
  width: 100%;
  display: block;
  margin-bottom: 20px;
  text-align: center;
  text-decoration: none;
}

.councils a:hover {
  background: #FF7900;
  border: 2px solid #FF7900;
  text-decoration: none;
  color: #000000;
}

/* IMAGE WITH V-ALIGNE TEXT */
.text-oi-wrapper {
  position: relative;
  margin-bottom: 5rem;
}

@media screen and (max-width: 767px) {
  .text-oi-wrapper {
    margin-bottom: 0;
  }
}

.text-oi {
  background: #FFFFFF;
  padding: 50px 50px 50px 0;
  max-width: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.text-oi-img {
  max-width: 50%;
}

@media screen and (max-width: 999px) {
  .text-oi h2 {
    font-size: 24px;
  }
  .text-oi p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .text-oi {
    max-width: 90%;
    margin: 0 5%;
    position: relative;
    left: 0;
    top: -50px;
    transform: none;
    float: left;
    padding: 15px;
  }
  .text-oi-img {
    max-width: 100%;
  }
}

/* SIDEBAR SOCIAL */
.sidebar-social {
  margin-bottom: 1rem;
  border-bottom: 2px solid #F0F0F0;
  padding-bottom: 1rem;
}

.sidebar-social ul {
  list-style: none;
  text-align: center;
}
.sidebar-social ul li {
  display: inline-block;
  margin: 0 15px 0;
  text-align: center;
}
@media screen and (max-width: 1217px) {
  .sidebar-social ul li {
    display: inline-block;
    margin: 0 5px 0;
    text-align: center;
  }
}
.sidebar-social ul li a {
  text-align: center;
  line-height: 31px;
  display: block;
  color: #FFFFFF;
  background: #0c0c0c;
  width: 31px;
  height: 31px;
  border-radius: 50%;
}
.sidebar-social ul li a:hover {
  background: #ff7900;
}

/* FOOTER */
footer {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 25px 0;
  margin-top: 10rem;
}

.footer-links {
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {

}

.footer-links ul li a {
  font-weight: bold;
}

.footer-social {
  margin-bottom: 10px;
}

.footer-social ul {
  list-style: none;
  padding: 0;
}

.footer-social ul li {
  display: inline-block;
  margin: 0 15px 0;
  text-align: center;
}

.footer-social ul li:first-child {
  margin-left: 0;
}

.footer-social ul li a {
  position: relative;
  text-align: center;
  display: block;
  color: #FFFFFF;
  background: #0c0c0c;
  width: 31px;
  height: 31px;
  border-radius: 50%;
}
.footer-social ul li a:hover {
  background: #ff7900;
}
.footer-social ul li a i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

/* HELPERS */
.m-t-n { margin-top: 0; }
.m-t-xs { margin-top: 5px; }
.m-t-sm { margin-top: 10px; }
.m-t-md { margin-top: 15px; }
.m-t-lg { margin-top: 20px; }
.m-t-xlg { margin-top: 25px; }
.m-t-xxlg { margin-top: 50px; }
.m-t-hun { margin-top: 100px; }
.m-t-five-rem { margin-top: 5rem; }

.m-r-n { margin-right: 0; }
.m-r-xs { margin-right: 5px; }
.m-r-sm { margin-right: 10px; }
.m-r-md { margin-right: 15px; }
.m-r-lg { margin-right: 20px; }
.m-r-xlg { margin-right: 25px; }

.m-b-n { margin-bottom: 0!important; }
.m-b-xs { margin-bottom: 5px!important; }
.m-b-sm { margin-bottom: 10px!important; }
.m-b-md { margin-bottom: 15px!important; }
.m-b-lg { margin-bottom: 20px!important; }
.m-b-xlg { margin-bottom: 25px!important; }
.m-b-xxlg { margin-bottom: 50px!important; }

.m-l-n { margin-left: 0; }
.m-l-xs { margin-left: 5px; }
.m-l-sm { margin-left: 10px; }
.m-l-md { margin-left: 15px; }
.m-l-lg { margin-left: 20px; }
.m-l-xlg { margin-left: 25px; }

.p-md { padding: 15px; }
.p-b-n { padding-bottom: 0; }
.p-t-n { padding-top: 0;}

.max-img-180 {
  max-width: 180px;
}

.equal {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
}

.equal:before, .equal:after{
  display: none;
}

.max-560 {
  max-width: 560px;
  margin: 0 auto;
}

.wp-caption {
  padding: 5px!important;
}

.wp-caption .wp-caption-text, .gallery-caption {
  margin-top: 5px!important;
}

.intro-block {
  margin: 80px 0 100px 0;
}

@media screen and (max-width: 767px) {
  .intro-block {
    margin: 0 0 40px 0;
  }
}

.txt-700 {
  font-weight: 700;
}

/* EVENTS PAGE */

.events {
  margin-top: 55px;
}

@media screen and (max-width: 991px) {
  .events {
    margin-top: 0;
  }
}

.event {
  margin-bottom: 25px;
}

.event-meta {
  width: 100%;
  overflow: hidden;
  background: #F8F8F8;
  padding: 35px 20px;
}

.event-meta h2 {
  margin: 0 0 10px 0;
  font-weight: 700;
  min-height: 72px;
  max-height: 72px;
  overflow: hidden;
}

.event-meta span {
  display: block;
  font-size: 14px;
}

.past-event {
  border: 1px solid #color: #FF7900;
  background: #FF7900;
  padding: 10px;
  display: block;
  float: right;
  min-width: 220px;
  position: relative;
  margin-right: 10px;
  margin-top: 15px;
  height: 57px;
}

.past-event span {
  color: #000000;
  font-weight: bold;
  margin-top: 15px;
}

a.events-list-button {
  border: 1px solid #000000;
  padding: 10px;
  display: block;
  float: right;
  min-width: 220px;
  position: relative;
  margin-right: 10px;
  margin-top: 15px;
}

a:hover.events-list-button {
  opacity: 0.8;
  text-decoration: none;
}

.events-list-button img {
  max-width: 32px;
  height: auto;
  display: block;
  float: right;
}

.events-list-button span {
  font-weight: bold;
  margin-top: 15px;
}

/* PAGE BLOCKS TEMPLATE */

.blocks-template {
  margin-top: 70px;
}

.page-text-box {
  margin: 25px 0;
}

.logo-grid {
  margin: 25px 0 50px 0;
}

.logo-grid .logo-item {
  text-align: center;
  margin-bottom: 25px;
}

.logo-grid .logo-item img.one-fifty {
  max-width: 150px;
  text-align: center;
}

.page-text-box h2 {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .page-text-box h2, .page-text-box h3 {
    margin-bottom: 25px;
  }
}

.blocks-img-grid {
  text-align: center;
  margin: 0 0 25px 0;
}

.blocks-img-grid img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 2rem;
}

.blocks-img-grid-body {
  text-align: center;
  width: 100%;
}

.blocks-img-grid-body span {
  display: block;
}

.page-block-cta {
  margin-top: 5rem;
}

.cta-info {
  max-width: 940px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  margin-top: 15px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* FAQ PAGE */

.faq-item {
  margin-bottom: 50px;
}

.faq-al {
  padding: 0;
  list-style: none;
}

@media (max-width: 991px) {
  .faq-al {
    margin-top: 50px;
  }
}

.faq-al li {
  margin-bottom: 10px;

}

.faq-al li a {
  font-weight: bold;
  font-size: 24px;
}

.faq-al li a:hover {
  color: #FF7900;
  text-decoration: none;
}

.faq-title {
  font-weight: bold;
}

.faq-title h2 {
  margin-top: 0;
  font-size: 24px;
  line-height: 26px;
}

.faq-title p {
  font-weight: 400;
}

.faq-body a {
  color: #FF7900;
}

.faq-body ul {
  padding-left: 15px;
}

.faq-cta {
  padding: 50px 0;
  margin: 40px 0;
  word-wrap: break-word;
  font-size: 3.6rem;
  line-height: 3.6rem;
  text-align: center;
  font-weight: 700;
}

.faq-cta a {
  color: #FF7900;
}

/* SEPARATORS */
.sec-sep-t-b {
  border-top: 1px solid #eee;
  margin-top: 2rem;
  padding-top: 6rem;
}

.pos-rlt {
  position: relative;
}

.pos-fixd {
  position: fixed;
  top: 0;
  left: 0;
}

/* OVERWRITES */

button.alm-load-more-btn {
  background: #FF7900!important;
}

#mc_embed_signup .mc-field-group.input-group ul {
  padding: 5px 0 5px 2px!important;
  margin-top: -5px!important;
}

#mc_embed_signup .mc-field-group.input-group ul li {
  padding: 0!important;
}

/* MAILCHIMP FOOTER */
#mc_embed_signup {
  background:#fff;
  clear:left;
}

@media screen and (max-width: 991px) {
  #mc_embed_signup {
    margin-top: 15px;
  }
}

#mc_embed_signup form {
  padding: 0!important;
  margin: 0;
  overflow: hidden;
  width: 100%;
}

#mc_embed_signup #mc_embed_signup_scroll h2 {
  margin: 0;
  font-size: 16px;
}

#mc_embed_signup .mc-field-group {
  padding-bottom: 0!important;
  min-height: auto!important;
}

#mc_embed_signup .mc-field-group label {
  margin-left: 10px;
  font-size: 11px;
  font-weight: normal;
}

#mc_embed_signup .mc-field-group.mc-email {
  max-width: 300px;
}

@media screen and (max-width: 991px) {
  #mc_embed_signup .mc-field-group {
    padding-bottom: 0!important;
    min-height: auto!important;
    width: 50%!important;
    max-width: 50%!important;
    clear: none!important;
    float: left;
    padding-left: 25px;
    position: inherit!important;
  }
  #mc_embed_signup .mc-field-group.mc-email {
    float: left;
    width: 50%;
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  #mc_embed_signup .mc-field-group {
    padding-bottom: 0!important;
    min-height: auto!important;
    width: 100%!important;
    max-width: 100%!important;
    clear: none!important;
    float: none;
    padding-left: 0;
    margin: 5px 0;
    position: inherit!important;
  }
  #mc_embed_signup .mc-field-group.mc-email {
    float: none;
    width: 300px!important;
    padding-left: 0;
  }
}

#mc_embed_signup .mc-field-group input[type="email"] {
  border: none;
  background: #f8f8f8;
  border-radius: 0;
  font-size: 12px;
  margin-bottom: 8px;
}

.mc-pref {
  font-size: 12px;
}

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
  display: none!important;
}

#mc_embed_signup div#mce-responses {
  padding: 0!important;
  margin: 0 0 10px 0!important;
}

#mc_embed_signup div.response {
  padding: 0!important;
  margin: 0 0 10px 0!important;
}

.mc-sbmt-btn {
  float: left;
  margin: -40px 0 0 320px;
  position: relative;
  z-index: 100;
}

.mc-sbmt-btn input {
  font-weight: bold!important;
  color: #000000!important;
}

@media screen and (max-width: 991px) {
  .mc-sbmt-btn {
    margin: -40px 0 0 0;
  }
}

@media screen and (max-width: 767px) {
  .mc-sbmt-btn {
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 0;
  }
}

.mc-sbmt-btn input {
  padding: 0 10px!important;
  border-radius: 0!important;
  background: #FF7900!important;
  font-weight: bold;
}

/* 16 by 9 Box */
.six-by-nine-wrapper {
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  background: white;
  position: relative;
}
.six-by-nine {
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Main Blog Image Box */
.mbi-wrapper {
  height: 0;
  overflow: hidden;
  padding-top: 46.25%;
  background: white;
  position: relative;
}
.mbi {
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Stories Image Box */
.story-wrapper {
  height: 0;
  overflow: hidden;
  padding-top: 125.62%;
  background: white;
  position: relative;
}
.story-thumb {
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.wp-video {
  margin: 20px auto;
}

/* SOCIAL SHARE */
.social-share {
  margin-bottom: 25px;
}

.social-share h3 {
  font-size: 16px;
  margin-top: 0;
}

.ss-sep {
  display: block;
  margin: 10px 0 15px 0;
  width: 20px;
  height: 5px;
  background: #333333;
}

ul.heateor_sss_sharing_ul li.heateorSssSharingRound {
  margin-bottom: 10px!important;
  display: block;
  float: left;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .ss-hdr {
    float: left;
    margin-right: 25px;
    padding-left: 5px;
  }
  ul.heateor_sss_sharing_ul li.heateorSssSharingRound {
    margin: 0!important;
    float: left!important;
    width: auto!important;
  }
}

/* RESPONSIVE VIDEO EMBEDS */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin: 0 0 25px 0;
}

.video-wrapper iframe, .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-story {
  position: relative;
  padding-bottom: 177.77%;
  height: 0;
  margin: 0 0 25px 0;
}

.video-story iframe, .video-story video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* POST SLIDER */

@media screen and (min-width: 992px) {
  #n2-ss-3-align {
    margin-bottom: 0!important; /* hack for post slider. */
  }
}

.nextend-bar {
  width: 33.333333%!important;
  left: -33.333333%!important;
  font-family: inherit!important;
}

.nextend-bar div {
  background: none!important;
  padding: 15px!important;
}

.nextend-bar div span {
  display: inline-block!important;
  color: #000000!important;
  font-size: 12px!important;
  line-height: 13px!important;
  font-family: inherit!important;
  text-align: right!important;
}

@media screen and (max-width: 991px) {
  .nextend-bar {
    position: relative!important;
    width: 100%!important;
    left: 0!important;
    bottom: 0!important;
    font-family: inherit!important;
  }

  .nextend-bar div {
    background: none!important;
    padding: 15px!important;
  }

  .nextend-bar div span {
    width: 100%;
    text-align: center!important;
  }
}

/* EASY FORMS */

.yikes-mailchimp-container h2 {
  font-size: 42px;
  font-weight: 700;
}

.mailchimp-hun {
  width: 100%;
}

.yikes-easy-mc-email {
  padding: 12px;
  border: none;
  background: #f8f8f8;
  border-radius: 0;
  font-size: 12px;
  margin-bottom: 8px;
}

.yikes-easy-mc-submit-button {
  padding: 6px!important;
  border-radius: 0!important;
  background: #FF7900!important;
  font-weight: bold;
  border: none!important
}

/* CONTACT FORM 7 */
.apply-form {
  max-width: 980px;
  margin: 100px 0 50px;
  width: 100%;
  overflow: hidden;
}
.apply-form label {
  margin-bottom: 10px!important;
}
.apply-form label br {
  display: none;
}
div.wpcf7-mail-sent-ok {
  border: none!important;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
  border: none!important;
}
.wpcf7-not-valid-tip {
  font-size: 12px!important;
}
.form-feedback {
  font-size: 16px!important;
}
.wpcf7-select {
  margin-bottom: 15px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 10px 15px;
  font-size: 12px;
  border: none;
  background: #f8f8f8;
  background-image:
    linear-gradient(45deg, transparent 50%, #000000 50%),
    linear-gradient(135deg, #000000 50%, transparent 50%),
    linear-gradient(to right, #f2f2f2, #f2f2f2);
  background-position:
    calc(100% - 22px) 20px,
    calc(100% - 17px) 20px,
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    44px 44px;
  background-repeat: no-repeat;
}
.wpcf7 {
 margin-bottom: 0;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  border: none;
  width: 100%!important;
  background: #f8f8f8;
  border-radius: 0;
  font-size: 12px;
  margin-bottom: 8px;
  padding: 15px;
}
.wpcf7 input[type="submit"],
.wpcf7 input[type="button"] {
background-color: #FF7900;
border-color: #FF7900;
width:100%;
text-align:center;
font-weight: 700;
font-size: 16px;
padding: 15px;
color: #000000;
}

/* PASSWORD PROTECTED POST FORM */
.protected-post-form {
    text-align: center;
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -26px;
    margin-left: -150px;
}
.pass-input {
    border: 2px solid #F0F0F0;
    font-size: 24px;
    padding: 10px;
    float: left;
    width: 215px;
    height: 52px;
}
@media (min-width: 640px) {
  .protected-post-form {
      width: 426px;
      margin-left: -213px;
  }
  .pass-input {
      width: 340px;
  }
}

.pass-btn {
  background-image: url(../img/pass-btn.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 52px;
  height: 52px;
  border: none!important;
  float: left;
  margin-left: 25px;
}

.post-password-required {
  min-height: 400px;
}

.comments {
  display: none;
}

/* EVENTS GALLERY */
.sticky-gallery.affix {
  width: 36.5%;
  top: 100px;
}
@media (max-width: 991px) {
  .sticky-gallery.affix {
    width: 46.5%;
  }
}
@media (max-width: 767px) {
  .sticky-gallery.affix {
    position: relative!important;
    width: 100%;
    top: auto;
  }
}

.sticky-gallery span {
  padding: 0 20px;
  margin-bottom: 15px;
  background: #FF7900;
  height: 32px;
  line-height: 32px;
  font-weight: 700;
  display: inline-block;
  font-size: 15px;
  text-align: center;
}

.download-link i {
  margin: 0 0 0 5px;
  display: inline-block;
}

.event-gallery-block {
  margin-bottom: 25px;
}

.event-gallery-meta {
  background: #f2f2f2;
  padding: 15px 15px 30px 15px;
  position: relative;
}

.event-gallery-meta.story-meta {
  background: #f8f8f9;
}
.event-gallery-meta h2 {
  font-size: 18px;
  margin: 0 0 15px 0;
}
.event-gallery-meta h2 a:hover {
  text-decoration: none;
  opacity: 0.9;
}

.event-gallery-meta span {
  color: #FF7900;
  font-size: 12px;
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.event-gallery-thumbs {
  margin-top: 47px;
}
@media (max-width: 767px) {
  .event-gallery-thumbs {
    margin-top: 10px;
  }
}
.event-gallery-thumbs ul {
  list-style: none;
  margin-right: -5px;
  margin-left: -5px;
}

.event-gallery-thumbs ul li {
  padding-right: 5px;
  padding-left: 5px;
}

.event-gallery-thumbs img {
  width: 100%;
  height: auto;
  display: block;
}

.mg-image {
  position: fixed;
  top: 0;
  left: 0;
}

/* FAB CONNECT */

.fc-ai-badge h1 {
  display: inline;
  position: relative;
}

.fc-ai-badge span {
  font-weight: 700;
  font-size: 24px;
  display: block;
  position: absolute;
  bottom: 35px;
  right: -42px;
}

.fc-ai-badge span strong {
  color: #FF7900;
}

.fc-ai-badge h1 sup {
  font-size: 24px;
  top: -25px;
  left: 5px;
}

.fc-ai-badge h1 sup strong {
  color: #FF7900;
}

.fc-block-title {
  margin: 25px 0;
}

.fc-card {
  font-weight: 700;
  margin-bottom: 50px;
  max-width: 980px;
  margin: 0 auto 50px auto;
  line-height: 24px;
}

/* GRID WITH BORDERS */
.bordered-grid  {
  text-align: center;
  border: 1px solid #f2f2f2;
  border-left: 1px solid #f2f2f2;
}
.bordered-grid img {
  max-width: 220px;
}
.bordered-grid p {
  font-size: 12px;
  text-align: left;
}

/* STORY MODAL */
.story-modal-dialog {
  max-width: 320px;
}
@media (min-width: 1px) {
  .modal-dialog {
      width: 600px;
      margin: 30px auto;
  }
}
@media (max-width: 767px) {
  .story-modal-dialog {
    max-width: 280px;
  }
}
.story-modal-content {
    background-color: transparent;
    box-shadow: none;
    border: none;
}
.story-modal-content .modal-header {
  border-bottom: none;
  padding: 0;
  margin: 0;
}

.story-modal-content .modal-body {
  padding: 5px;
}
.close-story-btn {
  opacity: 1;
  margin-right: 5px;
}
.close-story-btn span {
  width: 18px;
  height: 18px;
  display: block;
  background: url(../img/close-slide-menu-white.png) no-repeat 0 0;
  background-size: 18px 18px;
  opacity: 1;
}
.story-nav {
  color: #ffffff;
  font-size: 32px;
  position: absolute;
  top: 50%;
}
@media (max-width: 767px) {
  .story-nav {
    display: none;
  }
}
.story-nav i {
  color: #ffffff;
}
.story-nav.story-prev {
  left: -32px;
}
.story-nav.story-next {
  right: -32px;
}

.y-sec {
  background: #ffd200;
}

.grey-bg {
  background: #f2f2f2;
  padding: 25px;
  margin-bottom: 100px!important;
}

.mod-summary {
  margin: -25px auto 35px auto;
  font-size: 20px;
  line-height: 28px;
  max-width: 90%;
}
