@font-face {
    font-family: 'DIN';
    src: url('../woff2/din-light-webfont.woff2') format('woff2'),
         url('../woff/din-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'DIN';
    src: url('../woff2/din-regular-webfont.woff2') format('woff2'),
         url('../woff/din-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'DIN';
    src: url('../woff2/din-medium-webfont.woff2') format('woff2'),
         url('../woff/din-medium-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'DIN';
    src: url('../woff2/din-bold-webfont.woff2') format('woff2'),
         url('../woff/din-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}


.circle {
  border-radius: 50%;
}



#mobile-hamburger {
  position: fixed;
  right: 24px;
  top: 40px;
}
.hamburger {
  z-index: 1200;
}

.hamburger a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
}
.hamburger span {
  background-color: #222;
  width: 35px;
  height: 3px;

  transition: all 300ms;
}
.hamburger span:nth-child(1) {
  content: "";
  position: absolute;
  top: 0px;
}
.hamburger span:nth-child(2) {
  position: relative;
  display: block;
}
.hamburger span:nth-child(3) {
  content: "";
  position: absolute;
  bottom: 0px; 
}

.hamburger.active span {
  background-color: #fff;
  width: 38px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(135deg);
  top: 16px;
  left: -4px;
  opacity: 1;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(225deg);
  top: 16px;
  left: -4px;
  opacity: 1;
}


.prevent-scroll {
  overflow: hidden;
}


.mobile-menu {

  background-color: rgba(51, 51, 51, 0.95);
  position: fixed; 
  top: 0;
  left: -100%;
  /*right: 100%;*/
  width: 100%;
  bottom: 0;
  z-index: 1150;
  padding: 100px 24px 24px;
  display: flex;
  flex-direction: column;

  transition: all 300ms;

  /*display: none;*/
}
.mobile-menu.active {
  left: 0;
}
.mobile-menu-body {
    flex-grow: 1;
}

.mobile-menu ul {

}
.mobile-menu li {
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 20px;
}
.mobile-menu li a {
  color: #fff;
  transition: color 200ms;
  display: block;
}
.mobile-menu li a:hover {
  color: #F66800;
}




.quicklinks-mobile {
  background-color: #002343;
  padding: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.quicklinks-mobile .button {
  font-size:11px;
  height: 40px;
}






.notification {
  margin-top: 10px;
}

.cookie-banner {

  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  background-color: rgba(255,255,255,0.8);

  display: none;
}

.cookie-content {
  padding: 24px 24px 24px;
  margin: 24px auto 0;
  background-color: #00C7FF;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
}

.cookie-content p {
  margin-bottom: 24px;
}      
.cookie-content a {
  color: #1F1FF2;
  font-weight: 700;
}


.floating-menu-wrap {
  display: none;
}

@media(min-width: 769px)
{
  .floating-menu-wrap{
    display: block;
    position: absolute;
      left: 24px;
      right: 24px;
      top: 0;
      bottom: 0;
      z-index: 1;
      pointer-events: none; display: flex;
  }

  .floating-menu-wrap .container {
  display:flex;
  justify-content: flex-end;
  }
  .floating-menu {
    width: 220px;
    padding-top: 170px; 
    color: #fff; 
    pointer-events: all;
  }
  .floating-menu h6 {
    font-size: 14px;
    line-height: 130%;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .floating-menu li {
    margin-bottom: 7px;
  }
  .floating-menu li a {
    color: #fff;
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    line-height: 130%;
    background-color: rgba(0,0,0,0.7);
    font-weight: 500;
    position: relative;
  }
  .floating-menu li a:after {
    content: ">";
    position: absolute;
    right: 20px;
  }
}



.collaborate-menu ul {
  margin: 0 0 50px !important;
}
.collaborate-menu li {
  margin-bottom: 7px;
}
.collaborate-menu li a {
  color: #fff;
  display: block;
  padding: 12px 20px;
  font-size: 15px;
  line-height: 130%;
  background-color: #222;
  font-weight: 500;
  position: relative;
}
.collaborate-menu li a:after {
  content: ">";
  position: absolute;
  right: 20px;
}




body,button,input,select,textarea {
    font-family: 'DIN';
}
body {
  color: #222;
  padding-top: 120px;
}

@media (min-width: 769px)
{
  body {
    padding-top: 148px;
  }
}



a {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

.latest-tweet a {
    color: #3291E4
}

a:not(.more):not(.button):hover {
    text-decoration: underline;
}



:focus {
    outline: none !important;
}

.button {
  text-transform: uppercase;
  border-radius: 0;

  font-weight: 500;
}
.more:after {
  content:">";
  margin-left: 15px;
}

.owl-carousel {
  z-index: 0;
}
.owl-theme .owl-dots {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;

  text-align: center;
  -webkit-tap-highlight-color: transparent; 
}

@media (min-width: 769px) {
.owl-theme .owl-dots {
    bottom: 270px;
  }
}


.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline; 
}
.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 5px 7px;
  background: #FFF;
  border: 2px solid #fff;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px; 
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: transparent; 
}


@media screen and (min-width: 1408px) {
  .container {
      max-width: 1152px;
  }
}

header {
  display: flex;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  padding: 24px;

  min-height: 120px;
  border-bottom: 1px solid #222;
  box-shadow: 0px 0px 5px 5px rgba(34, 34, 34, 0.2);
  z-index: 1000;
}

nav {
  margin-top: 20px;
}
nav ul {
  display: flex;
}
nav li {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 11px;
  line-height: 120%;
  font-weight: 500;
  padding: 15px 10px;
  border-left: 1px solid #CCC;
  text-align: center;
}

@media screen and (min-width: 1216px)
{
  nav li {
    font-size: 13px;
  }
}



nav li:first-child {
   border-left: none; 
}
nav li a {
  color: #222;
  display: block;
}
nav li a:hover {
  color: #777;
  text-decoration: none !important;
}



nav li a.nav-projects.active {
  color: #8D28F7;
}
nav li a.nav-evidence-thinkers.active {
  color: #00C46A;
}
nav li a.nav-blog.active {
  color: #CC009A;
}
nav li a.nav-resources.active {
  color: #273BEB;
}

nav li a.nav-news.active {
  color: #FD6800;
}
nav li a.nav-about.active {
  color: #FD6800;
}

nav li a.nav-events.active {
  color: #00C6FF
}


.logo {
  display: block;
}
.logo img {
  display: block;
}

.hero {
  height: 100vh;
  height: -moz-available;          /* WebKit-based browsers will ignore this. */
  height: -webkit-fill-available;  /* Mozilla-based browsers will ignore this. */
  height: fill-available;

  background-size: cover;

  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}



.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0,0,0,0.45);
}

.hero-body {
  padding-top: 80px;
  padding-bottom: 90px;
  color: #fff;
}

@media(min-width: 769px)
{
  .hero {
    min-height: 770px;
  }
  .hero-body {
    padding-top: 170px;
  }
}




.hero-body h5 {
  font-size: 15px;
  line-height: 160%;
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-body h2 {
  font-size: 30px;
  line-height: 120%;
  font-weight: 300;
  margin-bottom: 12px;
}
.hero-body h3 {
  font-size: 15px;
  line-height: 140%;
  font-weight: 500;
  margin-bottom: 40px;
}

@media(min-width: 769px)
{
  .hero-body h2 {
    font-size: 37px;
  }
  .hero-body h3 {
    font-size: 17px;
  }
}



@media(min-width: 769px)
{
  .blocks {
    margin-top: -330px;
  }
}


.blocks .column {
    display: flex;
}
.blocks article {
  padding: 12px 24px;
  display: flex;
  flex-direction: column;

  position: relative;
}

@media(min-width: 769px)
{
  .blocks article {
    padding: 24px;
  }
}


@media(max-width: 768px)
{
  .block-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
  }
}

@media(min-width: 769px)
{
  .block-icon {
    margin-bottom: 40px;
  }
}




.block-content {
  flex-grow: 1;
  color: #fff;
}
.block-footer {
  margin-top: 30px;
  text-align: right;
}

.block-content h3 {
  padding-right: 48px;

  font-size: 20px;
  line-height: 130%;
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: 17px;

  margin-top: 12px;
}








.block-content p {
  font-size: 14px;
  line-height: 145%;
  font-weight: 500;
  letter-spacing: -0.5px;
}

@media(min-width: 769px)
{
  .block-content h3 {
    margin-top: 0;

    padding-right: 0;
    font-size: 27px;
  }
  .block-content p {
    font-size: 17px;
  }
}


.block-footer a {
  text-transform: uppercase;
  color: #fff;
  font-size: 13px;
  line-height: 120%;
  font-weight: 500;
  -webkit-font-smoothing: subpixel-antialiased;
}
.block-footer a:hover span {
  text-decoration: underline;
}


.block-transforming {
  background-color: #F66800; /* Orange */
}
.block-research {
  background-color: #8C37F3; /* Purple */
}
.block-evidence {
  background-color: #00C46A; /* Green */
}
.block-community {
  background-color: #00C8FF; /* Blue */
}

.section {
  padding: 40px 24px;
}

@media(min-width: 769px)
{
  .section {
    padding: 80px 24px;
  }
}



.quicklinks {
  margin-top: -24px;

  justify-content: flex-end;
  display: flex;
}
.button.button-join-us, .button.button-contact {
  color: #fff;
  /*border: none;*/
  font-weight: 700;
  font-size: 12px;
  line-height: 20px;
  padding: 10px 35px;
  height: 45px;
  box-shadow: none !important;
}
.button.button-join-us:after, .button.button-contact:after {
  display: none;
}

.button.button-join-us {
  background-color: #00C7FF;
  border: 1px solid #00C7FF;
}
.button.button-join-us:hover {
  background-color: #fff;
  color: #00C7FF;
}
.button.button-contact {
  background-color: #F86800;
  border: 1px solid #F86800;
}


.button.button-contact:hover {
  background-color: #fff;
  color: #F86800;
}



.column-quicklinks-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


header .share {
  margin-left: 10px;
}

.share a {
  vertical-align: middle;
  margin-left: 10px;
  font-size: 16px;
  line-height: 1;
  color: #059FF5;
  display: inline-block;
}
.share a.twitter {
  color: #059FF5;
}
.share a.linkedin {
  color: #2465B4;
}


a.email-icon {
  vertical-align: middle;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  color: #FF5757;
  margin-bottom: 24px;
}

@media(min-width: 769px)
{
  a.email-icon {
  font-size: 24px;
  }
}


.section-blocks {
  padding-bottom: 20px;
}
@media(max-width: 768px)
{
  .section-blocks {
    padding: 24px 12px;
  }
}



.section-recently-added {

}
@media(max-width: 768px)
{
  .section-recently-added {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}



.section-recently-added p.last-updated {
  color: #777777;
  font-size: 15px;
  line-height: 130%;
  text-align: right;
}
.section-recently-added h3 {
  font-size: 20px;
  line-height: 130%;
}

.section-recently-added .feature-image {
  min-height: 140px;
  min-width: 110px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 10px;
  position: relative;
}

@media(min-width: 769px)
{
  .section-recently-added h3 {
    margin-bottom: 20px;
  }


  .section-recently-added .feature-image {
    min-height: 200px;
    min-width: 200px;
  }
}



.section-recently-added .feature-image:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom:0;
  left: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.8995973389355743) 0%, rgba(0,0,0,0) 100%);
  opacity: 0.5;
}

.feature-label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #222;
  color: #fff;
  font-size: 10px;
  padding: 6px 10px;
  font-weight: 500;
}


.feature .feature-label {
  font-size: 14px;
  padding: 6px 20px;
}

.feature-image-icon {
  position: relative;
  z-index: 1;
}
.feature-image-icon img {
  display: block;
}

@media(max-width: 768px)
{
  .feature-image-icon img {
  max-width: 34px;
  }
}



.section-recently-added h4 {
  font-size: 11px;
  line-height: 170%;
  font-weight: 500;
}

.recently-added-blog-post h4 {
    color: #CB0099;
}
.recently-added-blog-project h4 {
    color: #8C26F7;
}
.recently-added-news h4 {
  color: #F86600;
}
.recently-added-resources h4 {
  color: #3457FF;
}


.section-recently-added h2 {
  font-size: 15px;
  line-height: 140%;
  font-weight: 500;
  margin-bottom: 15px;
}
.section-recently-added p {
  font-size: 12px;
  line-height: 140%;
}

@media(min-width: 769px)
{

.section-recently-added h4 {
  font-size: 14px;
  margin-bottom: 5px;
}


  .section-recently-added h2 {
    font-size: 20px;
  }
  .section-recently-added p {
    font-size: 14px;
  }
}



.recently-added-footer {
    margin-top: 10px; 
    font-size: 11px;
    line-height: 150%;
    font-weight: 500;
}
@media(min-width: 769px)
{
  .recently-added-footer {
      font-size: 14px;
  }
}







@media screen and (min-width: 1024px)
{
  .column.is-narrow-desktop {
    flex: none;
    width: auto;
  }
}




.section-featured-upcoming {
  background-color: #000;

}
.section-featured-upcoming .column {
    display: flex;
    flex-direction: column;
}
.section-cards {
  padding-top: 0;
}
.section-cards .column {
    display: flex;
    flex-direction: column;
}


.feature {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}


.feature.event-upcoming {
  background-color: #222222;
  color: #fff;
}
.feature.event-past {
  background-color: #777777;
  color: #fff;
}
.feature.event-upcoming, .feature.event-past {
    background-image: url(../png/events-bg-pattern.png);
    background-position: bottom right;
    background-repeat: no-repeat;
}

.feature.blog-post, .feature.projects, .feature.news-post {
  background-color: #EEE;
  color: #222;
}
.feature.feature-blog-post, .feature.feature-podcast, .feature.feature-projects, .feature.feature-news-post {
  background-color: #222222;
  color: #fff;
}
.feature.feature-blog-post a, .feature.feature-podcast a, .feature.feature-projects a, .feature.feature-news-post a, .feature.event-upcoming a, .feature.event-past a {
  color: #fff;
}

.upcoming-event a {
   color: #fff !important;
}

.feature .feature-image {
  min-height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 15px;
  position: relative;
}

.feature .feature-image:not(.without-gradient):before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom:0;
  left: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.8995973389355743) 0%, rgba(0,0,0,0) 100%);
  opacity: 0.5;
}

.feature-image-icon {
  position: relative;
  z-index: 1;
}

.feature .feature-content {
  padding: 20px;
  flex-grow: 1;
}
.feature .feature-footer {
  padding: 10px 20px;

  font-size: 14px;
  line-height: 150%;
  font-weight: 500;
}


.section-featured-upcoming h3 {
  font-size: 20px;
  line-height: 130%;
  margin-bottom: 30px;
  color: #fff;
}

.feature h5 {
  font-size: 14px;
  line-height: 170%;
  margin-bottom: 10px;
  font-weight: 500;
}
.feature.feature-podcast h5 {
  color: #273BEB;
}
.feature.projects h5 {
  color: #A347FC;
}
.feature.blog-post h5 {
   color: #D1009D;
}
.feature.news-post h5 {
   color: #FA6800;
}
.feature.event-upcoming h5 {
  color: #00C6FF;
}


.feature h4 {
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 10px;
  font-weight: 500;
}
.feature p {
  font-size: 14px;
  line-height: 140%;
}

.upcoming-events a {
  color: #fff;
}
.events {
  background-color: #222;
  background-image: url(../png/events-bg-pattern.png);
  background-position: top right;
  background-repeat: no-repeat; 

  padding: 20px;
}

.event {
  border-top: 1px dashed rgba(119, 119, 119, 0.5);
  padding-top: 20px;
  margin-top: 20px;
}
.event:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.event h6 {
  font-size: 17px;
  line-height: 140%;
  margin-bottom: 10px;
  font-weight: 500;
  color: #fff;
}
.event p {
  font-size: 13px;
  line-height: 140%;
  color: #00C6FF;
}

.event-date {
  border: 1px solid #777;
  width: 75px;
}
.event-date-day {
  padding: 15px 5px;
  font-size: 35px;
  color: #00C5FF;
  font-weight: 300;
  text-align: center;
}
.event-date-month {
  padding: 5px;
  font-size: 17px;
  color: #fff;
  background-color: #777;
  font-weight: 500;
  text-align: center;
}

.see-all-events {
  text-align: right;
  margin-top: 20px;
}
.see-all-events a {
    text-transform: uppercase;
    color: #fff;
    font-size: 13px;
    line-height: 120%;
    font-weight: 500;
    -webkit-font-smoothing: subpixel-antialiased;
}



.section-featured-person {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  padding-top: 60px;
  padding-bottom: 60px;

  min-height: 525px;
  position: relative;
}
.section-featured-person:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom:0;
  left: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.8995973389355743) 0%, rgba(0,0,0,0) 100%);
}

.feature-person-profile {
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.feature-person-specialism {
 margin-bottom: 45px;
}




.section-featured-person h3 {
  color: #fff;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 80px;
}

.section-featured-person h2 {
  color: #fff;
  font-size: 25px;
  line-height: 120%;
  margin-bottom: 20px;
}

.section-featured-person h4 {
  color: #fff;
  font-size: 17px;
  line-height: 160%;
}

.section-featured-person p {
  color: #fff;
  font-size: 15px;
  line-height: 130%;
  margin-bottom: 10px;
}



.column-play-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.play-media p {
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 120%;
  font-weight: 500;
}





.section-recent-blog-posts {
  background-color: #000;
  color: #fff;
}
.recent-blog-post a {
  color: #fff;
}
.section-recent-blog-posts h3 {
  color: #fff;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 40px;
}

.section-recent-resources-content {
  background-color: #222;
  padding: 80px 24px 1px;
}
.section-recent-resources-content h3 {
  color: #fff;
    font-size: 25px;
    line-height: 150%;
    margin-bottom: 40px;
}



.recent-blog-posts {
  margin-bottom: 50px;
}

.section-recent-blog-posts .column {
    display: flex;
    flex-direction: column;
}
.section-recent-blog-posts article {
  background-color: #222222;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.recent-blog-post-image {
  min-height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 5px 15px;
  position: relative;
}

.recent-blog-post-image:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom:0;
  left: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.8995973389355743) 0%, rgba(0,0,0,0) 100%);
  opacity: 0.5;
}


.recent-blog-post-image-icon {
  position: relative;
  z-index: 1;
}



.recent-blog-post-content {
  padding: 20px;
  flex-grow: 1;
}
.recent-blog-post-content h4 {
    font-size: 20px;
    line-height: 130%;
    font-weight: 500;
}

.recent-blog-post-footer {
  padding: 10px 20px;
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;
}





.section-more-about h3 {
    font-size: 20px;
    line-height: 130%;
    font-weight: 500;
    margin-bottom: 30px;
}
article.more-about-block a.more-block {

}


article.more-about-block {
  min-height: 250px;
  padding: 20px;
  position: relative;
}

article.more-about-block p {
  display: none;
  z-index: 1;
  position: relative;
  color: #fff;
}

article.more-about-block:hover p {
  display: block;
}


article.more-about-block:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom:0;
  left: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 100%);
  opacity: 0.8;
}

article.more-about-block:after {
  transition: all 400ms;
  background: rgba(0,0,0,0);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom:0;
  left: 0;
}

article.more-about-block:hover:after {

  background: rgba(0,0,0,0.8);
}


article.more-about-block h4 {
  position: relative;
    font-size: 25px;
    line-height: 130%;
    color: #fff;
    margin-bottom: 25px;
    z-index: 1;
}


.latest-tweet-header {
  margin-bottom: 10px;
}
.latest-tweet-header img {
  margin-right: 10px;
}




.latest-tweet-header p {
    font-size: 15px;
    line-height: 140%;
}
.latest-tweet-body p {
    font-size: 13px;
    line-height: 140%;
    margin-bottom: 10px;
}

p.time-posted-ago {
  font-size: 14px;
  line-height: 140%;
  color: #999999;
}


.column-latest-tweets {
  display: flex;
  flex-direction: column;
}

.latest-tweets-title {
  background-color: #EEEEEE;
  padding: 20px;
}
.latest-tweets-title h5 {
    font-size: 25px;
    line-height: 130%;
    margin-bottom: 20px;
}
.latest-tweets-scroll {
  background-color: #EEEEEE;
  flex-grow: 1;
  position: relative;
  min-height: 480px;
}

.latest-tweets {
  padding: 0 10px;
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 10px;
  left: 10px;
  overflow-x: hidden;
  overflow-y: scroll;
}

.latest-tweets::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
}
.latest-tweets::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
.latest-tweets::-webkit-scrollbar-thumb {
  background: #cfd4d4;
  border: 0px none #ffffff;
  border-radius: 0px;
}
.latest-tweets::-webkit-scrollbar-thumb:hover {
  background: #222;
}
.latest-tweets::-webkit-scrollbar-thumb:active {
  background: #222;
}
.latest-tweets::-webkit-scrollbar-track {
  background: #ffffff;
  border: 0px none #ffffff;
  border-radius: 0px;
}
.latest-tweets::-webkit-scrollbar-track:hover {
  background: #ffffff;
}
.latest-tweets::-webkit-scrollbar-track:active {
  background: #ffffff;
}
.latest-tweets::-webkit-scrollbar-corner {
  background: transparent;
}



.section-dont-miss-out {
  background-color: #2D4BE3;
  color: #fff;
  padding-top: 0;
  padding-bottom: 0; 
}
.section-dont-miss-out .container {
  padding-top: 40px;
  padding-bottom: 30px;
  background-position: right;
  background-size: contain;
  background-repeat: no-repeat;
}

@media(min-width:769px)
{ 
  .section-dont-miss-out .container {
    background-image: url(../png/dont-miss-out.png);
  }
}




.section-dont-miss-out h3 {
    font-size: 25px;
    line-height: 130%;
    margin-bottom: 10px;
}
.section-dont-miss-out h4 {
    font-size: 15px;
    line-height: 140%;
    margin-bottom: 20px;
    font-weight: 500;
}

@media(min-width: 769px)
{
  .section-dont-miss-out .container {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .section-dont-miss-out h4 {
    font-size: 17px;
      margin-bottom: 40px;
  }
}





.section-dont-miss-out input {
  max-width: 100%;
  width: 100%;
  color: #000;
  font-size: 17px;
  line-height: 130%;
  background: transparent;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #00C7FF;
  height: 2.5em;
  padding: 6px;
}
.section-dont-miss-out input::-webkit-input-placeholder {
  color: #00C6FF;
}

.section-dont-miss-out .terms {
  font-size: 12px;
  line-height: 170%;
  font-weight: 500;
  display: inline-block;

  padding-left: 40px;
}
.section-dont-miss-out .terms a {
  color: #fff;
  text-decoration: underline;
}

.section-dont-miss-out input:-webkit-autofill,
.section-dont-miss-out input:-webkit-autofill:hover,
.section-dont-miss-out input:-webkit-autofill:focus,
.section-dont-miss-out input:-webkit-autofill:active {

    -webkit-text-fill-color: #00C6FF;

    /* stop the white background on selecting the pre-filled */
    transition: background-color 10000s ease-out;
    transition-delay: 10000s;
}


 .is-checkradio[type="checkbox"] {
    outline: 0;
    user-select: none;
    display: inline-block;
    position: absolute;
    opacity: 0;
}
.is-checkradio[type="checkbox"]+label {
    font-size: 1rem;
    display: inline-block;
}
.is-checkradio[type="radio"]:checked+label::before, .is-checkradio[type="radio"]:checked+label:before, .is-checkradio[type="checkbox"]:checked+label::before, .is-checkradio[type="checkbox"]:checked+label:before {
    border: 1px solid #00C7FF;
}
.is-checkradio[type="checkbox"]+label::before, .is-checkradio[type="checkbox"]+label:before {
    width: 1.5rem;
    height: 1.5rem;
}
.is-checkradio[type="checkbox"]+label::before, .is-checkradio[type="checkbox"]+label:before {
    border-radius: 0;
}
.is-checkradio[type="radio"]+label::before, .is-checkradio[type="radio"]+label:before, .is-checkradio[type="checkbox"]+label::before, .is-checkradio[type="checkbox"]+label:before {
    position: absolute;
    left: 0;
    top: 0rem;
    content: '';
    border: 1px solid #00C7FF;
}
.is-checkradio[type="radio"]:checked+label::after, .is-checkradio[type="radio"]:checked+label:after, .is-checkradio[type="checkbox"]:checked+label::after, .is-checkradio[type="checkbox"]:checked+label:after {
    display: inline-block;
}
.is-checkradio[type="radio"]+label::after, .is-checkradio[type="radio"]+label:after, .is-checkradio[type="checkbox"]+label::after, .is-checkradio[type="checkbox"]+label:after {
    position: absolute;
    display: none;
    content: '';
    top: 0rem;
}
.is-checkradio[type="checkbox"]+label::after, .is-checkradio[type="checkbox"]+label:after {
    width: .375rem;
    height: .6rem;
    top: .405rem;
    left: .6rem;
}
.is-checkradio[type="checkbox"]+label::after, .is-checkradio[type="checkbox"]+label:after {
    box-sizing: border-box;
    transform: translateY(0rem) rotate(45deg);
    border-width: .1rem;
    border-style: solid;
    border-color: #00d1b2;
    border-top: 0;
    border-left: 0;
}



footer { 
  background-color: #222222;
  padding: 50px 24px;

  font-size: 11px;
  line-height: 170%;
  color: #fff;
  font-weight: 500;

    text-align: center;
}

@media(min-width: 769px)
{
  footer {
    text-align: left;
  }
}

footer a {
  color: #fff; 
}

footer li {
  border-bottom: 1px solid #444;
}
footer li:last-child {
  border-bottom: none;
}
footer li a {
  display: block;
  padding: 9px 3px;
  font-size: 13px;
  line-height: 170%;
}

.legal {
  margin-top: 40px;
}
.legal a:hover {
/*  color: #fff;
  text-decoration: underline;*/
}

.column-share {
  text-align: right;
}
.column-share .share {
  margin: 0;
}
.column-share .share a {
  margin: 0 0 10px 0;
  display: block;
}



/* PROJECTS */

.section-hero {
  padding-top: 20px;
  padding-bottom: 20px;

  background-color: #EEEEEE;

  display: flex;
  flex-direction: column;

  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
} 




.section-hero-legal {
  padding-top: 40px;
  padding-bottom: 40px;
  min-height: auto;
}
.section-hero-legal .section-hero-body {
  display: flex;
  align-items: flex-end;
}

.section-hero-blog-index, .section-hero-news-index {
  min-height: 270px;

  padding-top: 40px;
  padding-bottom: 40px;
}
.section-hero-news-post, .section-hero-news-post {
  min-height: 440px;
}


.section-hero-about-index {
  color: #fff;
}



.section-hero-contact-index {
  min-height: 270px;
  background-position: top center;
}
.section-contact .share a {
  font-size: 24px;
}

@media(min-width: 769px)
{
  .section-hero-contact-index {
    min-height: 470px;
  }
}



@media(min-width: 769px)
{


  .section-hero-about-index {
    min-height: 580px;
  }

  .section-hero-resources {
    min-height: 440px;
  }

  .section-hero-projects-index {
    min-height: 470px;
  }
  .section-hero-events-index {
    min-height: 470px;
  }
.section-hero-resources-index {
  min-height: 470px;
}
  .section-hero-events {
    min-height: 500px;
  }
  .section-hero-projects {
    min-height: 500px;
  }

  .section-hero-evidence-thinkers-index {
    min-height: 470px;
  }
}



.section-hero-collaborate {
    min-height: 500px;
    background-color: #222;
    color: #fff;
}
.section-hero.section-hero-collaborate h1:not(.is-borderless):after {
     background-color: #fff;
}

.section-hero.section-hero-collaborate .share {
  margin-top: 40px;
}
.section-hero.section-hero-collaborate .share a {
  font-size: 24px;
}



@media(min-width: 769px)
{
  .section-hero-news-index .section-hero-body,
  .section-hero-blog-index .section-hero-body {
    display: flex;
    align-items: flex-end;
  }

  .section-hero-collaborate .section-hero-body,
  .section-hero-events-index .section-hero-body,
  .section-hero-about-index .section-hero-body,
  .section-hero-projects-index .section-hero-body,
  .section-hero-resources-index .section-hero-body,
  .section-hero-evidence-thinkers-index .section-hero-body {
    display: flex;
    align-items: center;
  }
}






.return {
  margin-bottom: 60px;
}
.return a {
  font-size: 12px;
  line-height: 170%;
  font-weight: 700;
  margin-bottom: 70px;
  text-transform: uppercase;
}
.return a:before {
  content:"<";
  margin-right: 5px;
}

.section-hero-events .return a {
  color: #00C5FF;
}

.section-hero-projects .return a {
  color: #8D28F7;
}
.section-hero-evidence-thinkers .return a {
  color: #FFF;
}
.section-hero-resources .return a {
  color: #273BEB;
}
.section-hero-blog-post .return a {
  color: #CF009D;
}
.section-hero-news-post .return a {
  color: #FD6800;
}

.section-hero-blog-post .return, .section-hero-resources .return {
  margin-bottom: 20px;
}



.section-icon {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 15px;
  line-height: 130%;
}
.section-icon img {
  vertical-align: middle;
}
.section-hero-resources .section-icon {
  color: #2639EB;
}


.section-hero h1 {
  font-size: 30px;
  line-height: 130%;
  margin-bottom: 20px;
}

.section-hero h1 img {
  vertical-align: middle;
  display: inline-block;
  margin-right: 20px;
}

.section-hero h1:not(.is-borderless) {
  position: relative;
  padding-bottom: 35px;
}


.section-hero h1:not(.is-borderless):after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: #000;
  position: absolute;
    bottom: 0;
    left: 0;
}



.section-hero h2 {
  font-size: 16px;
  line-height: 140%;
  margin-bottom: 15px;
}

.section-hero h3 {
  font-size: 17px;
  line-height: 140%;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-hero p {
  font-size: 15px;
  line-height: 140%;
  margin-bottom: 30px;
}
.section-hero h4 {
  font-size: 15px;
  line-height: 140%;
  font-weight: 700;
}


.section-hero .do-you-have-news p {
  margin: 15px 0 0;
  font-weight: 500;
}


.section-hero-about-index h1 {
  font-size: 25px;
}
.section-hero-blog-index h1,
.section-hero-news-index h1,
.section-hero-evidence-thinkers-index h1,
.section-hero-projects-index h1,
.section-hero-resources-index h1,
.section-hero-events-index h1 {

  font-size: 25px;
}
.section-hero-blog-post h1, 
.section-hero-news-post h1 {
  font-size: 25px;
}

@media(min-width: 769px)
{
  .section-hero h1 {
    margin-bottom: 35px;
  }

  .section-hero-about-index h1 {
    font-size: 37px;
  }
  .section-hero-blog-index h1,
  .section-hero-news-index h1,
  .section-hero-evidence-thinkers-index h1,
  .section-hero-projects-index h1,
  .section-hero-resources-index h1,
  .section-hero-events-index h1 {
    font-size: 35px;
  }
  .section-hero-blog-post h1, 
  .section-hero-news-post h1 {
    font-size: 35px;
  }



  .section-hero h2 {
    font-size: 20px;
  }
}




.section-hero-blog-post h4 {
  color: #D0009E;
}
.section-hero-news-post h4 {
  color: #FD6800;
}

.section-hero-resources h1 {
  font-size: 35px;
}
.section-hero-resources h1:after {
  display: none;
}


.section-hero-body {
  flex-grow: 1;
}
.section-hero-foot p {
  margin-bottom: 0;
}

@media(max-width: 768px)
{
  .section-hero-body img {
    max-width: 60px;
  }
}







.section-content h2 {
  font-size: 25px;
  line-height: 120%;
  position: relative;
  font-weight: 400;
  padding-bottom: 35px;
    margin-bottom: 40px;
}
.section-content h2:after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}

.section-evidence-thinkers h2 {
  color: #00CA5D;
}











.section-content h3 {
  margin-top: 100px;
  font-size: 20px;
  line-height: 120%;
  margin-bottom: 30px;
  padding-left: 30px;
  position: relative;
  font-weight: 700;
}
.section-content h3:after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #000;
  position: absolute;
    top: -65px;
    left: 0;
}


.section-content h3:first-child {
  margin-top: 0;
}
.section-content h3:first-child:after {
  display: none;
}


.section-content h3:before {
  content: "";
  width: 17px;
  height: 17px;
  background-color: #ccc;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
}
.section-content-projects h3:before {
  background-color: #8E0BFB;
}
.section-evidence-thinkers h3:before {
  background-color: #00CC57;
}



.section-content h4 {
  font-size: 20px;
  line-height: 140%;
  margin-bottom: 30px;
  font-weight: 700;
}


.section-content h5 {
  font-size: 17px;
  line-height: 160%;
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-content h5:first-child {
  margin-top: 0;
}


.section-content p {
  font-size: 15px;
  line-height: 180%;
  margin-bottom: 20px;
}
.section-content ul, .section-content ol {
  font-size: 15px;
  line-height: 180%;
  margin-left: 20px;
  margin-bottom: 20px;
}


.section-content li {
  margin-bottom: 5px;
}

.section-content aside h5 {
  font-size: 17px;
  line-height: 120%;
  margin-top: 60px;
  margin-bottom: 30px;
  font-weight: 400;
}
.section-content aside h5:first-child {
  margin-top: 0;
}

.section-content figure {
  margin-top: 45px;
  margin-bottom: 45px;
}

.section-content figcaption {
  margin-top: 20px;
  font-size: 13px;
  line-height: 170%;
  padding-left: 30px;
  position: relative;
}
.section-content figcaption:before {
  content: ">";
  transform: rotate(-90deg);
    display: block;
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 20px;
}
.section-content-projects figcaption:before {
  color: #8E0BFB;
}
.section-evidence-thinkers figcaption:before {
  color: #00CC57;
}
.section-blog-post figcaption:before {
  color: #CD009C;
}
.section-news-post figcaption:before {
  color: #FD6800;
}


/* Same as news */
.section-content-collaborate figcaption:before {
  color: #FD6800;
}


.section-content a {
  font-weight: 700;
  /*text-decoration: underline;*/
}
.section-content aside a {
  font-weight: 500;
  /*text-decoration: underline;*/
}

.section-content-projects a {
  /*color: #8C26F7;*/
}

.section-content-meta {
  border-top: 1px solid #CCC;
  padding-top: 20px;
  padding-bottom: 20px;
}
.section-content-meta .columns {
  margin-bottom: 0 !important;
}

.section-content-meta:first-child {
  border-top: none;
  padding-top: 0;
}
.section-content-meta:last-child {
  padding-bottom: 0;
}

.section-content-meta h6 {
  font-size: 15px;
  line-height: 170%;
  margin-bottom: 10px;
}
.section-content-meta h5 {
  font-size: 15px;
  line-height: 170%;
  font-weight: 700;
  margin-top: 0;
}
.section-content-meta h5 a {
  color: #222;
}

.section-content-meta h4 {
  font-size: 20px;
  line-height: 130%;
  font-weight: 400;
  margin-top: 0;
  color: #1F1F1F;
}



.section-content-meta .share {

}


.section-content-meta .share a {
  /*font-size: 24px;*/
  margin: 0 8px 0 0;
}

@media(min-width:760px)
{
  .section-content-meta .share a {
    font-size: 24px;
  }
}


/* https://leaverou.github.io/bubbly/ */
.speech-bubble {
  padding: 8px 20px;
  min-width: 60px;
  text-align: center;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 20px;
  line-height: 20px;
  display: inline-block;
  margin-bottom: 10px;
}



.speech-bubble {
  position: relative;
  background: #1F1F1F;
  border-radius: .4em;
}

.speech-bubble:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  border: 0.625em solid transparent;
  border-top-color: #1F1F1F;
  border-bottom: 0;
  border-left: 0;
  margin-left: -0.312em;
  margin-bottom: -0.625em;
}





.section-discuss {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #F5F6F8;
}
.section-discuss h4 { 
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 30px;
    font-weight: 700;
}





article.related-item {
  background-color: #EEEEEE;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-item-image {
  min-height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 5px 15px;
  position: relative;
}

.related-item-image:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom:0;
  left: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.8995973389355743) 0%, rgba(0,0,0,0) 100%);
  opacity: 0.5;
}

.related-item-image-icon {
  position: relative;
  z-index: 1;
}
.related-item-content {
  padding: 20px;
  flex-grow: 1;
}
.related-item-content h6 {
    font-size: 12px;
    line-height: 140%;
    font-weight: 500;
    margin-bottom: 10px;
  color: #000;
}

.related-item-content h4 {
    font-size: 17px;
    line-height: 140%;
    font-weight: 500;
    margin-bottom: 10px;
}
.related-item-content p {
    font-size: 14px;
    line-height: 140%;
    font-weight: 500;
    margin-bottom: 0;
}

.related-item-footer {
  padding: 10px 20px;
    font-size: 14px;
    line-height: 150%;
    font-weight: 500;
}




.related-item-blog-post h6 {
  color: #CD009C;
}

.related-item-resource {

}
.related-item-resource h6 {
  color: #3357FF;
}

.related-item-podcast {

}
.related-item-podcast h6 {
  color: #2639EB;
}



.related-item-project {

}
.related-item-project h6 {
  color: #8C26F7;
}





.section-hero {
  position: relative;
}

.section-hero-bg {
  display: none;
}

@media screen and (min-width: 769px), print {
.section-hero-bg {
  display: block;
  background-size: cover;
  position: absolute;
  left: 50%;
  right: 0;
  top: 0;
  bottom: 0;
}
.section-hero-bg:after {
  content: "";
  background: linear-gradient(125deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.20) 50%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.5;
}

/* only on individual projects */
.section-hero-projects .section-hero-bg:before {
  content: "";
  background: linear-gradient(34deg, rgba(165,45,255,0.8) 0%, rgba(0,0,0,0) 30%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
}


.upcoming-event {
  background-color: #222222;
  color: #fff;
    padding: 20px;

    background-image: url(../png/events-bg-pattern.png);
    background-position: top right;
    background-repeat: no-repeat;
}
.upcoming-event .event h5 {
  font-size: 12px;
    line-height: 140%;
    font-weight: 500;
    margin-bottom: 10px;
  color: #00C7FF;
  text-transform: uppercase;
}
.upcoming-event .event h6 {
  margin-bottom: 30px;
}
.upcoming-event .event p {
  margin-bottom: 5px;
}
.upcoming-event .event p.event-description {
  color: #fff;
  font-size: 13px;
  line-height: 160%;
}

.section-hero-about-index,
.section-hero-evidence-thinkers {
  position: relative;
}

@media(min-width: 769px)
{
  .section-hero-about-index,
  .section-hero-evidence-thinkers {
    min-height: 580px;
  }
}


.section-hero-about-index:before,
.section-hero-evidence-thinkers:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0,0,0,0.35);
}
.section-hero-about-index:before {
   background: rgba(0,0,0,0.5); 
}


.section-hero-evidence-thinkers h1 {
  margin-top: 25px;
  padding-bottom: 25px;
  margin-bottom: 0;
}

.evidence-thinkers-card {
  background-color: #fff;
  margin-top: 35px;
}

@media screen and (min-width: 769px), print {

  .evidence-thinkers-card {
    display: flex;
  }

}

.evidence-thinkers-content {
  flex-grow: 1;
  display: flex;
    flex-direction: column;
}

.evidence-thinkers-body {
  padding: 10px 24px;
  flex-grow: 1;
}
.evidence-thinkers-footer {
  background-color: #00C46A;
}
.evidence-thinkers-footer h3 {
  font-size: 17px;
  line-height: 140%;
  padding: 10px 24px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
}

.evidence-thinkers-card-profile {
  min-width: 270px;
  min-height: 320px;
  background-size: cover;
  background-position: center;
}


aside article {
  margin-bottom: 40px;
}



blockquote {
  margin: 48px;

  border-top: 1px solid #CCC;
  padding-top: 24px;

  font-size: 20px;
  line-height: 150%;
  font-weight: 500;

  padding-bottom: 24px;
  border-bottom: 1px solid #CCC;  

  position: relative;
}

blockquote:before {
  content: "‘‘";
  font-family: Helvetica, Arial, sans-serif;
  color: #ccc;
  font-size: 100px;
  font-weight: 900;
  letter-spacing: -7px;
  position: absolute;
  top: 0;
  left: -7px;
}

.section-blog-post blockquote:before {
  color: #D0009E;
}
.section-news-post blockquote:before {
  color: #FD6800;
}


.next-posts-in-series {
  margin-top: 80px;
}
.next-posts-in-series a {
  font-weight: bold;
  text-decoration: underline;
  color: #202020;
}


.information-tags {
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
}
.information-tags ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 10px;
}
.information-tags li {
  font-weight: 700;
  margin-bottom: 7px;
  font-size: 15px;
  line-height: 140%;
}

.section-blog-post .information-tags li {
  color: #CD009D;
}
.section-news-post .information-tags li {
  color: #FA6800;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /*16:9*/
  height: 0; 
  overflow: hidden;
}
 
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.button {
  position: relative;
  box-shadow: none !important;
  padding-right: 40px;
}
.button:after {
    position: absolute;
    content: ">";
    right: 10px;
}

.button.no-arrow {
  padding-right: 16px;
}
.button.no-arrow:after {
  display: none;
}

.button.is-primary {
  background-color: #1F1FF2 !important;
}
.button.is-primary.is-news {
  background-color: #FD6800 !important;
}
.button.is-primary.is-join {
  background-color: #00C7FF !important;
}
.button.is-primary.is-contact {
  background-color: #00C7FF !important;
}






p.external-site-warning {
  font-size: 13px;
  line-height: 130%;
  color: #1F1FF2;
  font-weight: 500;
}





.feature-person {
    width: 40px;
    height: 40px;
    position: relative;

    display: inline-block;
    vertical-align: bottom;
    margin-right: 10px;
}
.feature-person::after {
  display: block;
  content: "";
  width: 19px;
  height: 19px;
  position: absolute;
  bottom: 0;
  right: -5px;
  border-radius: 50%;
}

/* projects meta */
.feature-person.is-large {
    width: 66px;
    height: 66px;
}
.feature-person.is-large::after {
  width: 31px;
  height: 31px;
  right: -10px;
}

/* Featured person hero */
.section-featured-person .feature-person {
    width: 58px;
    height: 58px;
}





.feature-person img {
  position: relative;
  z-index: 1;
  border-radius: 50%;
}





/* resources - blue */
.feature-podcast .feature-person::after, 
.section-hero-resources .feature-person::after,
.recently-added-resources .feature-person::after,
.related-item-resource .feature-person::after {
  background-color: #273BEB;
}

/* thinkers - green */
.section-featured-evidence-thinker .feature-person::after {
   background-color: #00CA5D;
}

/* projects - purple */
.projects .feature-person::after,
.section-content-projects .feature-person::after,
.recently-added-blog-project .feature-person::after,
.feature-projects .feature-person::after,
.related-item-project .feature-person::after {
  background-color: #A347FC
}

/* blog - pink */
.blog-post .feature-person::after,
.section-featured-blog-author .feature-person::after,
.section-hero-blog-post .feature-person::after,
.recently-added-blog-post .feature-person::after,
.related-item-blog-post .feature-person::after,
.recent-blog-post-footer .feature-person::after {
  background-color: #CD009C;
}





.resource-stats span {
  margin: 0 30px;
}
.resource-stats span:first-child,.resource-stats span:last-child {
  margin: 0;
}

.writers {
  color: #1F1FF2;
  list-style-type: disc;
  margin-left: 20px;
}
.writers li {
  margin-bottom: 5px;
}
.section-hero-blog-post .writers {
  color: #CD009C;
}


.section-filter {
  padding-top: 35px;
  padding-bottom: 35px;

  font-size: 15px;
  line-height: 160%;
}

@media(min-width: 769px)
{
  .section-filter {
    padding-top: 70px;
  }
}


.section-blog-filter .select:not(.is-multiple):not(.is-loading)::after {
  border-color: #CC009A;
}

.section-resources-filter .select:not(.is-multiple):not(.is-loading)::after {
  border-color: #1A00F6;
}

.section-projects-filter .select:not(.is-multiple):not(.is-loading)::after {
  border-color: #8D28F7;
}

.section-events-filter .select:not(.is-multiple):not(.is-loading)::after {
  border-color: #00C6FF;
}

.section-evidence-thinkers-filter .select:not(.is-multiple):not(.is-loading)::after {
  border-color: #00C46A;
}
.section-news-filter .select:not(.is-multiple):not(.is-loading)::after {
  border-color: #FD6800;
}

.contribute {
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}
.contribute h4 {
  font-size: 30px;
  line-height: 120%;
  margin-bottom: 25px;
  font-weight: 500;
}
.contribute h5 {
  font-size: 20px;
  line-height: 140%; 
  margin-bottom: 15px; 
  font-weight: 500;
}
.contribute p {
  font-size: 15px;
  line-height: 140%;
  margin-bottom: 15px;
  font-weight: 500;
}
.contribute p+h5 {
  margin-top: 40px;
}
.contribute-blog-post {
  background-color: #D1009D;
}
.contribute-projects {
  background-color: #8D28F7;
}
.contribute-evidence-thinkers {
  background-color: #00C46A;
}


.evidence-thinker-card  {
  padding: 40px 24px 20px;
  background-color: #EEE;
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}
.evidence-thinker-card h2 {
  font-size: 25px;
  line-height: 130%;

  position: relative;
  padding-bottom: 35px;
}

.evidence-thinker-card img {
  border-radius: 50%;
}

.evidence-thinker-card h2:after {
  content: "";
  width: 60px;
  height: 5px;
  background-color: #00CC57;
  position: absolute;
    bottom: 0;
    left: 0;
}

.evidence-thinker-card h4 {
  font-size: 16px;
  line-height: 150%;
  font-weight: 500;
  margin-bottom: 20px;
}
.evidence-thinker-card h5 {
  font-size: 14px;
  line-height: 140%;
  font-weight: 500;
  color: #00C666;
  margin-bottom: 5px;
}
.evidence-thinker-card p {
  font-size: 14px;
  line-height: 140%;
  font-weight: 500;
}

.evidence-thinker-card-quote {
  background-color: #222;
  color: #fff;
  justify-content: center;
}
.evidence-thinker-card-quote h3 {
  font-size: 27px;
  font-style: italic;
  line-height: 130%;
  margin-bottom: 20px;
}

.evidence-thinker-card-quote h4 {
  color: #00C566;
  margin-bottom: 0;
}










.section-about-blocks {
  position: relative;
  color: #fff;
}

.the-block {

}

.left-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.right-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


@media (max-width:768px)
{
  .section-about-blocks .column {
    position: relative;
  }
  .section-about-blocks article {
    padding: 24px;
  }
}

@media (min-width:769px)
{
  .left-bg {
   right: 50%;
  }
  .right-bg {
    left: 50%;
  }
}



.bg-hover:before {
  background: linear-gradient(140deg, rgba(0,0,0,0.7455357142857143) 0%, rgba(0,0,0,0) 100%);
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bg-hover:after {
  content: "";
  background-color: rgba(249, 104, 0, 0); /* #F96800 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: all 500ms;
}

.the-block:hover .bg-hover:after {
  background-color: rgba(249, 104, 0, 0.8); /* #F96800 */
}

.section-about-blocks article {
  min-height: 250px;

  display: flex;
  justify-content: center;
  flex-direction: column;

  position: relative;
}

@media (min-width:769px)
{
  .section-about-blocks article {
    min-height: 400px;
  }
}

.section-about-blocks article h2 {
  font-size: 50px;
  line-height: 120%;
  margin-bottom: 10px;
  font-weight: 300;

  transition: all 400ms;
}
.section-about-blocks article h3 {
  font-size: 17px;
  line-height: 140%;
  margin-bottom: 40px;
}

.section-about-blocks article h3,
.section-about-blocks article p {
  display: none;
}

.the-block:hover  article h2 { 
  font-size: 30px;
}
.the-block:hover article h3,
.the-block:hover article p {
  display: block;
}


.resource-item {
  background-color: #EEE;
  border: 2px solid #FFF;
  padding: 0 20px;
  margin-bottom: 8px;
}

@media(max-width:768px)
{
  .resource-item {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.resource-item h3 { 
  font-size: 17px;
  line-height: 130%;
  font-weight: 500;
}
.resource-item p { 
  font-size: 15px;
  line-height: 130%;
}
.resource-type {
  font-size: 13px;
  line-height: 130%;
  font-weight: 500;
  color: #2639EB;
}

.resource-item:hover {
  background-color: #FFF;
  border-color: #1A00F6;
}
.resource-item a {
  text-decoration: none !important;
}

.resource-header {
  padding: 20px;
  text-transform: uppercase;
}

p.resource-item-authors, p.resource-item-publishedby {
  font-size: 12px;
}

@media(min-width: 769px)
{
  p.resource-item-authors, p.resource-item-publishedby {
    margin: 10px 0;
  }
}


/*p.resource-item-publishedby {
  margin-right: 10px;
}*/

.resource-type img {
  margin-right: 5px;
}

    .download-report {
      margin-top: 50px;
      background-color: #273BEB;
      padding: 10px;
      display: inline-block;
      color: #fff !important;
      font-size: 20px;
      line-height: 1;
      text-decoration: none !important;
    }
    .download-report img {
      display: block;
    }

    .download-presentations {
      margin-bottom: 50px;
      background-color: #273BEB;
      padding: 10px;
      display: inline-block;
      color: #fff !important;
      font-size: 20px;
      line-height: 1;
      width: 100%;
      text-decoration: none !important;
    }
    .download-presentations img {
      display: block;
    }


    .format-size {
      font-size: 15px;
    }
    .down-arrow {
      border: 1px solid #fff;
      width: 40px;
      height: 40px;
      font-size: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      transform: rotate(90deg);
    }
    .download-report .down-arrow {
      margin-left: 30px;
    }



.forthcoming-past-title {
  font-size: 25px;
  line-height: 130%;
  margin-top: 40px;
  margin-bottom: 20px;
}

.gallery {
  background-color: #EEE;
  font-size: 14px;
  line-height: 140%;
}

.gallery-splash a {
  min-height: 150px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  text-decoration: none !important;
  color: #fff;

  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
}

.gallery-splash a:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom:0;
  left: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.8995973389355743) 0%, rgba(0,0,0,0) 100%);
  opacity: 0.5;
}

.gallery-caption {
  padding: 10px;
}

.related-event-material {
  background-color: #222;
}
.related-event-material .column {
    display: flex;
    flex-direction: column;
}
.related-event-material h3 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 25px;
}


.section-contact {
  background-color: #222;
  color: #fff;

  padding: 45px 24px;
}
.contact-transforming-evidence {
  background-color: #F86800;
  padding: 60px 30px;
  margin-top: -145px;
}

@media(min-width: 769px)
{
  .contact-transforming-evidence {
    margin-bottom: -75px;
  }
}


.contact-transforming-evidence h1 {
  font-size: 30px;
  line-height: 140%;
  margin-bottom: 20px;
}
.contact-transforming-evidence p {
  font-size: 20px;
  line-height: 170%;
  margin-bottom: 25px;
}
.press-enquires {

}
.press-enquires h3 {
  font-size: 25px;
  line-height: 140%;
  margin-bottom: 20px;
}
.press-enquires p {
  font-size: 15px;
  line-height: 140%;
  margin-bottom: 20px;
}
.section-contact-form {
  padding: 100px 24px;
}

.section-contact-form form h2 {
  font-size: 30px;
  margin-bottom: 30px;
}
.section-contact-form form p {
  font-size: 13px;
  line-height: 120%;
  margin-bottom: 15px;
}

.input, .textarea {
  border-radius: 0;
  background-color: #eee;
  border-color: #ccc;
  box-shadow: none;
}
/*
.input:active, .input:focus, .is-active.input, .is-active.textarea, .is-focused.input, .is-focused.textarea, .select select.is-active, .select select.is-focused, .select select:active, .select select:focus, .textarea:active, .textarea:focus
*/

.input:active, .input:focus, .is-active.input, .is-active.textarea, .is-focused.input, .is-focused.textarea, .textarea:active, .textarea:focus
{
  border-color: #222;
  box-shadow: inset 0px 0px 0px 3px #000;
}

.section-contact-form input:-webkit-autofill,
.section-contact-form input:-webkit-autofill:hover,
.section-contact-form input:-webkit-autofill:focus,
.section-contact-form input:-webkit-autofill:active {

    -webkit-text-fill-color: #222;

    /* stop the white background on selecting the pre-filled */
    transition: background-color 10000s ease-out;
    transition-delay: 10000s;
}

@media(max-width: 768px)
{  
  .fname {
    margin-bottom: 12px;
  }
}


.section-collaborate {
  background-color: #222;
  color: #fff;
  padding: 40px 24px;
}
.section-collaborate h2 { 
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
}
.section-collaborate p { 
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}
.section-collaborate h3 { 
  font-size: 17px;
  line-height: 24px;
  font-weight: 500;
  color: #FD6700;
  margin-bottom: 12px;
}

.section-collaborate .button {
  font-size: 12px;
}


.section-collaborate .columns.is-variable {
    margin-top: calc(-1 * var(--columnGap));
    margin-bottom: calc(-1 * var(--columnGap));
}
.section-collaborate .columns.is-variable .column {
    padding-top: var(--columnGap);
    padding-bottom: var(--columnGap);
}

.mobile-hero img {
  display: block;
}


@media(max-width: 768px)
{
  h3.featured-research-project, h3.upcoming-events-header {
    margin-top: 20px;
  }
}

.member {
  margin-bottom: 40px;
}
.member h2 {
    font-size: 30px;
    line-height: 130%;
   margin-bottom: 10px;
}
.member h3 {
    font-size: 25px;
    line-height: 130%;
   margin-bottom: 10px;
}
.member h4 {
    font-size: 17px;
    line-height: 130%;
    margin-bottom: 20px;
}


.section-contact-form .terms {
    font-size: 12px;
    line-height: 170%;
    font-weight: 500;
    display: inline-block;
    padding-left: 40px;
}