@import "../bower_components/normalize-css/normalize.css";
@import "icomoon.css?v=4";
.word-break {
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.icomoon {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: '';
  display: table;
  clear: both;
}
/* Text meant only for screen readers */
.says,
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  /* many screen reader and browser combinations announce broken words as they would appear visually */
  word-wrap: normal !important;
}
/* must have higher specificity than alternative color schemes inline styles */
.site .skip-link {
  background-color: #f1f1f1;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.2);
  color: #21759b;
  display: block;
  font-family: Montserrat, "Helvetica Neue", sans-serif;
  font-size: 14px;
  font-weight: 700;
  left: -9999em;
  outline: none;
  padding: 15px 23px 14px;
  text-decoration: none;
  text-transform: none;
  top: -9999em;
}
.logged-in .site .skip-link {
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.2);
  font-family: "Open Sans", sans-serif;
}
.site .skip-link:focus {
  clip: auto;
  height: auto;
  left: 6px;
  top: 7px;
  width: auto;
  z-index: 100000;
}
/**
* Hide elements visually, but keep them available for screen-readers.
*
* Used for information required for screen-reader users to understand and use
* the site where visual display is undesirable. Information provided in this
* manner should be kept concise, to avoid unnecessary burden on the user.
* "!important" is used to prevent unintentional overrides.
*/
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
.show-mobile {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .show-mobile {
    display: none;
  }
}
.show-desktop {
  display: block;
}
@media only screen and (max-width: 1023px) {
  .show-desktop {
    display: none;
  }
}
body {
  background: #fff;
  color: #32313b;
  font: 400 17px/26px 'Lato', sans-serif;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.logged-in {
  padding-top: 46px;
}
@media only screen and (min-width: 768px) {
  body.logged-in {
    padding-top: 32px;
  }
}
@media only screen and (max-width: 1023px) {
  body {
    left: 0;
    position: relative;
    -webkit-transition: left 250ms;
    -moz-transition: left 250ms;
    -o-transition: left 250ms;
    -ms-transition: left 250ms;
    transition: left 250ms;
  }
  body:after {
    content: '';
    opacity: 0;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -o-transition: all 250ms;
    -ms-transition: all 250ms;
    transition: all 250ms;
  }
  body.open-menu {
    position: fixed;
    left: -260px;
    width: 100%;
  }
  body.open-menu:after {
    opacity: 1;
    content: '';
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 999998;
    background: rgba(0, 0, 0, 0.6);
  }
}
a {
  color: #1fd26a;
  text-decoration: none;
  -webkit-transition: color 250ms;
  -moz-transition: color 250ms;
  -o-transition: color 250ms;
  -ms-transition: color 250ms;
  transition: color 250ms;
}
a:hover {
  color: #18a553;
}
a.button,
a.green-button {
  display: block;
  background: #1fd26a;
  font: 700 18px/24px 'Montserrat', sans-serif;
  padding: 20px 32px;
  color: #32313b;
  text-transform: uppercase;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -o-transition: all 250ms;
  -ms-transition: all 250ms;
  transition: all 250ms;
  color: #32313b !important;
  text-align: center;
  margin: 0 0 24px;
}
a.button:hover,
a.green-button:hover {
  color: #fff !important;
  background: #18a553;
}
@media only screen and (min-width: 768px) {
  a.button,
  a.green-button {
    display: inline-block;
    margin: 0 22px 0 0;
  }
}
.selector {
  position: relative;
  display: block;
  height: 44px;
  cursor: pointer;
  width: 100% !important;
}
.selector span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100% !important;
  height: 44px;
  display: block;
  background: #fff;
  color: #949493;
  text-transform: uppercase;
  font: 700 13px/30px 'Montserrat', sans-serif;
  padding: 6px 28px 6px 12px;
  border: 1px solid #dee1e7;
}
.selector span:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e908";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 14px;
  line-height: 44px;
  width: 44px;
  text-align: center;
}
.selector select {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 44px !important;
  line-height: 44px !important;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  background: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: none;
}
form#event-start-form {
  margin: 32px 0 0;
}
@media only screen and (min-width: 1024px) {
  form#event-start-form {
    margin: 42px 0 0;
  }
}
form#event-start-form label {
  font: 700 17px/30px 'Montserrat', sans-serif;
  color: #949493;
  text-transform: uppercase;
  margin: 0 0 8px;
  display: block;
}
#topic-eyebrow {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #topic-eyebrow {
    display: block;
    background: #32313b;
    color: #fff;
  }
  #topic-eyebrow ul.topics {
    overflow: hidden;
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }
  html.flexbox #topic-eyebrow ul.topics {
    display: flex;
    flex-wrap: wrap;
  }
  html.flexbox #topic-eyebrow ul.topics li {
    flex-grow: 1;
  }
  #topic-eyebrow ul.topics li {
    text-align: center;
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-block;
    border-right: 1px solid #5b5a62;
  }
  #topic-eyebrow ul.topics li a {
    padding: 0 50px 0 36px;
    padding: 0;
    line-height: 55px;
    height: 55px;
    color: #fff;
    display: block;
    text-transform: uppercase;
    font: 900 11px/55px 'Lato', sans-serif;
  }
  #topic-eyebrow ul.topics li a span {
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    font-size: 28px;
    line-height: 55px;
  }
  #topic-eyebrow ul.topics li a span.icon-technology,
  #topic-eyebrow ul.topics li a span.icon-infrastructure {
    font-size: 20px;
  }
  #topic-eyebrow ul.topics li a:hover {
    color: #1fd26a;
  }
}
nav .nav-aux {
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  nav .nav-aux {
    width: 170px;
  }
}
nav .nav-aux a.donate-button {
  display: block;
  color: #fff;
  background: #bb28da;
  font: 800 21px/36px 'Montserrat', sans-serif;
  padding: 12px 0;
  text-transform: uppercase;
  margin: 0 0 12px;
  -webkit-transition: background 250ms;
  -moz-transition: background 250ms;
  -o-transition: background 250ms;
  -ms-transition: background 250ms;
  transition: background 250ms;
}
nav .nav-aux a.donate-button:hover {
  background: #861d9c;
}
nav .nav-aux ul.social-menu {
  font-size: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
nav .nav-aux ul.social-menu li {
  margin: 0;
  padding: 0;
  width: 20%;
  display: inline-block;
}
nav .nav-aux ul.social-menu li a {
  height: 24px;
  line-height: 24px;
  display: block;
  color: #b9c5d7;
}
nav .nav-aux ul.social-menu li a:hover {
  color: #748baf;
}
nav .nav-aux ul.social-menu li a span {
  vertical-align: middle;
}
nav .nav-aux ul.social-menu li a span.label {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  /* many screen reader and browser combinations announce broken words as they would appear visually */
  word-wrap: normal !important;
}
nav .nav-aux ul.social-menu li a span.icon {
  font-size: 20px;
}
@media only screen and (max-width: 1023px) {
  nav#nav-main {
    position: fixed;
    width: 260px;
    right: -260px;
    top: 0;
    bottom: 0;
    display: block;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -o-transition: all 250ms;
    -ms-transition: all 250ms;
    transition: all 250ms;
    overflow: scroll;
    background: #fff;
    z-index: 999999;
    padding: 60px 0 0;
  }
  body.open-menu nav#nav-main {
    right: 0;
  }
  nav#nav-main ul.social-menu {
    margin: 0 0 24px;
  }
  nav#nav-main ul.social-menu li {
    width: auto;
    margin: 0 16px;
  }
  nav#nav-main .nav-main {
    margin: 0 0 24px;
  }
  nav#nav-main a.donate {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  nav#nav-main ul#main-menu-header {
    margin: 0 20px;
    padding: 4px 0 0;
    list-style: none;
  }
  nav#nav-main ul#main-menu-header li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #dee1e7;
  }
  nav#nav-main ul#main-menu-header li a {
    display: block;
    font: 700 17px/26px 'Montserrat', sans-serif;
    color: #32313b;
    padding: 8px 0;
  }
  nav#nav-main ul.topics {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  nav#nav-main ul.topics li {
    text-align: left;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid #5b5a62;
  }
  nav#nav-main ul.topics li:first-child {
    border-top: 0;
  }
  nav#nav-main ul.topics li a {
    padding: 0 26px;
    line-height: 42px;
    height: 42px;
    background: #32313b;
    color: #fff;
    display: block;
    text-transform: uppercase;
    font: 900 11px/42px 'Lato', sans-serif;
  }
  nav#nav-main ul.topics li a span {
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
    font-size: 26px;
    line-height: 42px;
  }
  nav#nav-main ul.topics li a span.icon-technology,
  nav#nav-main ul.topics li a span.icon-infrastructure {
    font-size: 18px;
  }
  nav#nav-main ul.topics li a:hover {
    color: #1fd26a;
  }
  nav#nav-main form {
    margin: 0 20px;
    overflow: hidden;
    position: relative;
    height: 54px;
  }
  nav#nav-main form .form-item {
    width: 0;
    overflow: hidden;
    margin: 0;
    border-bottom: 1px solid #b5b4be;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -o-transition: all 250ms;
    -ms-transition: all 250ms;
    transition: all 250ms;
  }
  nav#nav-main form .form-item ::-webkit-input-placeholder {
    color: #949493;
  }
  nav#nav-main form .form-item :-moz-placeholder {
    color: #949493;
  }
  nav#nav-main form .form-item ::-moz-placeholder {
    color: #949493;
  }
  nav#nav-main form .form-item input.search-field {
    padding: 10px 30px;
    border: none;
    font: 400 16px 'Lato', sans-serif;
    background: none;
    height: 54px;
    width: 100%;
    color: #949493;
    outline: none;
  }
  nav#nav-main form .form-item label {
    display: none;
  }
  nav#nav-main form a.close {
    opacity: 0;
    display: block;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 54px;
    overflow: hidden;
    text-align: left;
    font-size: 16px;
    padding: 0;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -o-transition: all 250ms;
    -ms-transition: all 250ms;
    transition: all 250ms;
  }
  nav#nav-main form a.close:before {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e91c";
    line-height: 54px;
    vertical-align: middle;
  }
  nav#nav-main form button {
    outline: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 54px;
    overflow: hidden;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    font-size: 24px;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    -ms-transition: all 500ms;
    transition: all 500ms;
  }
  nav#nav-main form button .label {
    display: none;
  }
  nav#nav-main form button:before {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #32313b;
    content: "\e917";
    line-height: 54px;
  }
  body.search-form nav#nav-main form .form-item {
    width: 100%;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    -ms-transition: all 500ms;
    transition: all 500ms;
  }
  body.search-form nav#nav-main form a.close {
    opacity: 1;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    -ms-transition: all 500ms;
    transition: all 500ms;
  }
  body.search-form nav#nav-main form button {
    font-size: 16px;
    width: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  nav#nav-main {
    height: 98px;
    position: relative;
  }
  nav#nav-main .nav-main {
    position: absolute;
    right: 230px;
    left: 330px;
    top: 28px;
    padding-right: 70px;
  }
  nav#nav-main .nav-main ul.topics {
    display: none;
  }
  nav#nav-main .nav-main ul#main-menu-header {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    -webkit-transition: opacity 250ms 750ms;
    -moz-transition: opacity 250ms 750ms;
    -o-transition: opacity 250ms 750ms;
    -ms-transition: opacity 250ms 750ms;
    transition: opacity 250ms 750ms;
  }
  nav#nav-main .nav-main ul#main-menu-header li {
    display: inline-block;
    margin: 0;
    padding: 0;
  }
  nav#nav-main .nav-main ul#main-menu-header li a {
    display: block;
    font: 700 17px/48px 'Montserrat', sans-serif;
    color: #32313b;
    position: relative;
  }
  nav#nav-main .nav-main ul#main-menu-header li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom: 4px solid #bb28da;
    -webkit-transition: width 250ms;
    -moz-transition: width 250ms;
    -o-transition: width 250ms;
    -ms-transition: width 250ms;
    transition: width 250ms;
  }
  nav#nav-main .nav-main ul#main-menu-header li a:hover {
    color: #bb28da;
  }
  nav#nav-main .nav-main ul#main-menu-header li a:hover:after {
    width: 100%;
  }
  nav#nav-main .nav-main ul#main-menu-header li.current-menu-item a:after {
    width: 100%;
  }
  html.flexbox nav#nav-main .nav-main ul#main-menu-header {
    display: flex;
    justify-content: space-between;
  }
  nav#nav-main .nav-main form {
    position: absolute;
    margin: 0;
    top: 0;
    right: 0;
    width: 40px;
    overflow: hidden;
    -webkit-transition: all 1ms 750ms;
    -moz-transition: all 1ms 750ms;
    -o-transition: all 1ms 750ms;
    -ms-transition: all 1ms 750ms;
    transition: all 1ms 750ms;
  }
  nav#nav-main .nav-main form .form-item {
    width: 0;
    overflow: hidden;
    margin: 0;
    border-bottom: 1px solid #b5b4be;
    -webkit-transition: all 500ms 250ms;
    -moz-transition: all 500ms 250ms;
    -o-transition: all 500ms 250ms;
    -ms-transition: all 500ms 250ms;
    transition: all 500ms 250ms;
  }
  nav#nav-main .nav-main form .form-item ::-webkit-input-placeholder {
    color: #949493;
  }
  nav#nav-main .nav-main form .form-item :-moz-placeholder {
    color: #949493;
  }
  nav#nav-main .nav-main form .form-item ::-moz-placeholder {
    color: #949493;
  }
  nav#nav-main .nav-main form .form-item input.search-field {
    padding: 7px 40px;
    border: none;
    font: 400 21px 'Lato', sans-serif;
    background: none;
    height: 48px;
    width: 100%;
    color: #949493;
    outline: none;
  }
  nav#nav-main .nav-main form .form-item label {
    display: none;
  }
  nav#nav-main .nav-main form a.close {
    opacity: 0;
    display: block;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 48px;
    overflow: hidden;
    text-align: left;
    font-size: 21px;
    padding: 0;
    -webkit-transition: all 250ms 0;
    -moz-transition: all 250ms 0;
    -o-transition: all 250ms 0;
    -ms-transition: all 250ms 0;
    transition: all 250ms 0;
  }
  nav#nav-main .nav-main form a.close:before {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e91c";
    line-height: 48px;
    vertical-align: middle;
  }
  nav#nav-main .nav-main form button {
    outline: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 48px;
    overflow: hidden;
    background: none;
    border: none;
    padding: 0;
    text-align: right;
    cursor: pointer;
  }
  nav#nav-main .nav-main form button .label {
    display: none;
  }
  nav#nav-main .nav-main form button:before {
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #32313b;
    content: "\e917";
    font-size: 24px;
    line-height: 48px;
  }
  body.search-form nav#nav-main .nav-main form {
    -webkit-transition: all;
    -moz-transition: all;
    -o-transition: all;
    -ms-transition: all;
    transition: all;
    width: 100%;
  }
  body.search-form nav#nav-main .nav-main form .form-item {
    width: 100%;
    -webkit-transition: all 500ms 250ms;
    -moz-transition: all 500ms 250ms;
    -o-transition: all 500ms 250ms;
    -ms-transition: all 500ms 250ms;
    transition: all 500ms 250ms;
  }
  body.search-form nav#nav-main .nav-main form a.close {
    opacity: 1;
    -webkit-transition: all 250ms 500ms;
    -moz-transition: all 250ms 500ms;
    -o-transition: all 250ms 500ms;
    -ms-transition: all 250ms 500ms;
    transition: all 250ms 500ms;
  }
  body.search-form nav#nav-main .nav-main ul#main-menu-header {
    opacity: 0;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -o-transition: all 250ms;
    -ms-transition: all 250ms;
    transition: all 250ms;
  }
  nav#nav-main .nav-aux {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: no-repeat 50% 50%;
  background-size: cover;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=(80));
  opacity: 0.8;
}
.background-image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(29, 48, 131, 0.5);
}
#site-header {
  border-top: 5px solid #32313b;
  position: relative;
  margin: 0;
  padding: 30px 20px;
}
#site-header:after {
  content: '';
  display: block;
  border-bottom: 1px solid #dee1e7;
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
}
@media only screen and (min-width: 1024px) {
  #site-header {
    border: none;
    margin: 54px auto 0;
    padding: 0 30px 50px;
    max-width: 1230px;
    height: 144px;
  }
  #site-header:after {
    left: 30px;
    right: 30px;
  }
}
#site-header .site-title {
  margin: 0;
}
#site-header .site-title a {
  width: 200px;
  height: 68px;
  overflow: hidden;
  display: block;
  text-indent: -9999px;
}
html.backgroundsize #site-header .site-title a {
  background: url(../img/logo@2x.png) no-repeat 50% 50%;
  background-size: 200px;
}
html.backgroundsize.svg #site-header .site-title a {
  background: url(../img/logo.svg) no-repeat 50% 50%;
  background-size: 200px;
}
@media only screen and (min-width: 1024px) {
  #site-header .site-title {
    position: absolute;
    top: 0;
    left: 30px;
    z-index: 10;
  }
  #site-header .site-title a {
    width: 278px;
    height: 98px;
    overflow: hidden;
    display: block;
    text-indent: -9999px;
    background: url(../img/logo.png) no-repeat 50% 50%;
  }
  html.backgroundsize #site-header .site-title a {
    background: url(../img/logo@2x.png) no-repeat 50% 50%;
    background-size: 278px;
  }
  html.backgroundsize.svg #site-header .site-title a {
    background: url(../img/logo.svg) no-repeat 50% 50%;
    background-size: 278px;
  }
}
#site-header a#burger {
  display: none;
}
@media only screen and (max-width: 1023px) {
  #site-header a#burger {
    display: block;
    position: absolute;
    top: 16px;
    right: 0;
    width: 68px;
    height: 60px;
  }
  #site-header a#burger span {
    position: absolute;
    display: block;
    width: 28px;
    height: 3px;
    background: #b9c5d7;
    left: 20px;
    right: 20px;
  }
  #site-header a#burger span.top {
    top: 21px;
  }
  #site-header a#burger span.middle {
    top: 29px;
  }
  #site-header a#burger span.bottom {
    top: 37px;
  }
}
@media only screen and (min-width: 768px) {
  .post-wrapper {
    margin-top: -1px;
    padding-top: 1px;
    overflow: hidden;
  }
}
article .entry-header .share {
  margin: 0 0 36px;
  font-size: 0;
  position: relative;
  min-width: 270px;
  max-width: 300px;
}
article .entry-header .share h4 {
  margin: 0;
  padding: 6px 14px;
  color: #949493;
  display: block;
  text-transform: uppercase;
  border: 1px solid #dee1e7;
  font: 700 13px/30px 'Montserrat', sans-serif;
}
article .entry-header .share ul {
  top: 0;
  right: 0;
  position: absolute;
  display: block;
  border-left: 1px solid #dee1e7;
  margin: 0;
  padding: 0;
}
article .entry-header .share ul li {
  border: 1px solid #dee1e7;
  border-left: none;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  padding: 0;
  width: 44px;
  height: 44px;
}
article .entry-header .share ul li a {
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: #fff;
  display: block;
  list-style: none;
  text-align: center;
  font-size: 18px;
  line-height: 42px;
  color: #b9c5d7;
  -webkit-transition: color 250ms;
  -moz-transition: color 250ms;
  -o-transition: color 250ms;
  -ms-transition: color 250ms;
  transition: color 250ms;
}
article .entry-header .share ul li a:hover {
  color: #748baf;
}
article .entry-header .share ul li.facebook {
  width: 40px;
}
article .entry-header ul.meta {
  margin: 0 0 4px;
  padding: 0;
}
article .entry-header ul.meta li {
  color: #949493;
  display: inline-block;
  margin: 0 0 0 14px;
  padding: 0 0 0 16px;
  list-style: none;
  font: 400 13px/14px 'Lato', sans-serif;
  border-left: 1px solid #cacad1;
}
article .entry-header ul.meta li:first-child {
  margin: 0;
  padding: 0;
  border: none;
}
article .entry-header ul.meta li.topic {
  text-transform: uppercase;
  font-weight: 900;
}
article .entry-header ul.meta li.topic,
article .entry-header ul.meta li.topic a {
  color: #748baf;
}
article .entry-header ul.meta li.topic a:hover {
  color: #bb28da;
}
article .entry-header ul.meta-lower {
  margin: 0;
  padding: 0;
}
article .entry-header ul.meta-lower li {
  color: #32313b;
  display: inline-block;
  margin: 0 16px 0 0;
  list-style: none;
  font: 400 15px/21px 'Lato', sans-serif;
  vertical-align: top;
}
article .entry-header ul.meta-lower li.event-time:before {
  margin: 3px 4px 0 0;
  content: "\e90b";
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: top;
}
article .entry-header ul.meta-lower li.event-location:before {
  margin: 3px 4px 0 0;
  content: "\e90a";
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: top;
}
article h1 {
  font: 300 37px/44px 'Montserrat', sans-serif;
  margin: 0 0 24px;
}
@media only screen and (min-width: 768px) {
  article h1 {
    font: 300 55px/55px 'Montserrat', sans-serif;
  }
}
article .entry-content img.wp-post-image {
  display: block;
  margin: 0 0 24px;
}
article .entry-content a {
  color: #1fd26a;
}
article .entry-content p {
  margin: 0 0 24px;
}
article .entry-content h2 {
  margin: 42px 0 24px;
  font: 400 32px/38px 'Montserrat', sans-serif;
}
article .entry-content h3 {
  margin: 42px 0 24px;
  font: 700 24px/30px 'Montserrat', sans-serif;
}
article .entry-content h4 {
  margin: 42px 0 24px;
  font: 700 17px/30px 'Montserrat', sans-serif;
  text-transform: uppercase;
}
article .entry-content ul,
article .entry-content ol {
  margin: 0 0 24px 30px;
  padding: 0;
}
article .entry-content ul li,
article .entry-content ol li {
  margin: 0 0 18px 18px;
  padding: 0 0 0 12px;
}
article .entry-content ul li {
  margin: 0 0 18px;
  padding: 0 0 0 30px;
  list-style: none;
  position: relative;
}
article .entry-content ul li:before {
  content: '\2022';
  color: #bb28da;
  position: absolute;
  width: 30px;
  top: 0;
  left: 0;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
}
article .entry-content .alignnone {
  margin: 0 0 24px;
}
article .entry-content .alignright {
  width: 36.14457831%;
  float: right;
  margin: 0 0 16px 24px;
}
article .entry-content .alignleft {
  width: 36.14457831%;
  float: left;
  margin: 0 0 16px 24px;
}
article .entry-content .wp-caption .wp-caption-text {
  color: #949493;
  font: 400 italic 13px/18px 'Lato', sans-serif;
  margin-top: 6px;
}
article .entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
}
article .entry-content blockquote {
  clear: both;
  margin: 24px -20px;
  background: #748baf;
  padding: 24px 20px;
  color: #fff;
  font: 300 24px/34px 'Montserrat', sans-serif;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.17);
}
article .entry-content blockquote p {
  margin: 24px 0 0;
}
article .entry-content blockquote p:first-child {
  margin: 0;
}
article .entry-content blockquote cite {
  font-style: normal;
  font-size: 15px;
  display: block;
  margin: 24px 0 0;
}
@media only screen and (min-width: 768px) {
  article .entry-content blockquote {
    position: relative;
    margin: 24px 0;
    padding: 24px 100px;
  }
  article .entry-content blockquote:before {
    content: '“';
    position: absolute;
    font: 700 120px/34px 'Montserrat', sans-serif;
    top: 60px;
    left: 36px;
    color: #abb8cc;
  }
  article .entry-content blockquote p.last:after {
    content: '”';
    margin-left: 4px;
    height: 34px;
    display: inline-block;
    font: 700 120px/86px 'Montserrat', sans-serif;
    color: #abb8cc;
    vertical-align: top;
  }
}
article.page.full {
  max-width: 890px;
  padding: 54px 20px 0;
  margin: 0 auto 116px;
}
@media only screen and (min-width: 768px) {
  article.page.full {
    padding: 54px 30px 0;
  }
}
article.single.full {
  max-width: 1230px;
  padding: 54px 20px 0;
}
article.single.full aside.sidebar {
  margin: 54px -20px 0;
  background: #dee1e7;
  padding: 54px 20px;
}
article.single.full aside.sidebar .terms {
  width: 14.52991453%;
  margin: 0 0 48px;
}
article.single.full aside.sidebar .terms h4 {
  color: #32313b;
  text-transform: uppercase;
  font: 700 17px/24px 'Montserrat', sans-serif;
  margin: 0 0 18px;
}
article.single.full aside.sidebar .terms ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
article.single.full aside.sidebar .terms ul li {
  margin: 0 0 18px;
  padding: 0;
}
article.single.full aside.sidebar .terms ul li a {
  font: 400 13px/24px 'Montserrat', sans-serif;
  color: #394566;
}
article.single.full aside.sidebar .terms ul li a:hover {
  color: #bb28da;
}
@media only screen and (min-width: 768px) {
  article.single.full {
    padding: 54px 30px 0;
    margin: 0 auto 116px;
    position: relative;
  }
  article.single.full .post-inner {
    width: 70.94017094%;
  }
  article.single.full aside.sidebar {
    position: absolute;
    top: -1px;
    bottom: -116px;
    left: 74.35897436%;
    width: 100%;
    padding: 54px 30px;
    margin: 0;
  }
}
article.single.full ul.meta-lower {
  margin: 0 0 24px;
}
article.single.full.project,
article.single.full.topic {
  max-width: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  article.single.full.project,
  article.single.full.topic {
    background: #eaeef3;
  }
}
article.single.full.project > header.entry-header {
  background: #32313b;
  position: relative;
  color: #fff;
  padding: 140px 20px;
  text-align: center;
}
article.single.full.project > header.entry-header h1 {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  font: 700 40px/44px 'Montserrat', sans-serif;
}
@media only screen and (min-width: 1024px) {
  article.single.full.project > header.entry-header {
    padding: 140px 30px;
  }
  article.single.full.project > header.entry-header h1 {
    font-size: 66px;
    line-height: 72px;
  }
}
article.single.full.project .entry-top {
  background: #fff;
}
article.single.full.project .entry-top .entry-content {
  padding: 36px 20px;
}
article.single.full.project .entry-top .entry-content .topics h4 {
  color: #949493;
  margin: 0 0 20px;
}
article.single.full.project .entry-top .entry-content .topics ul {
  margin: 0;
  padding: 0;
}
article.single.full.project .entry-top .entry-content .topics ul li.topic {
  margin: 0 0 20px;
  padding: 0;
}
article.single.full.project .entry-top .entry-content .topics ul li.topic a {
  display: block;
  text-transform: uppercase;
  font: 900 13px/18px 'Lato', sans-serif;
  color: #748baf;
  position: relative;
  min-height: 50px;
  -webkit-transition: color 250ms;
  -moz-transition: color 250ms;
  -o-transition: color 250ms;
  -ms-transition: color 250ms;
  transition: color 250ms;
}
article.single.full.project .entry-top .entry-content .topics ul li.topic a .label {
  display: block;
  position: absolute;
  top: 50%;
  left: 60px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
article.single.full.project .entry-top .entry-content .topics ul li.topic a .icon {
  -webkit-transition: background 250ms;
  -moz-transition: background 250ms;
  -o-transition: background 250ms;
  -ms-transition: background 250ms;
  transition: background 250ms;
  display: block;
  vertical-align: middle;
  color: #fff;
  background: #bb28da;
  height: 50px;
  width: 50px;
  line-height: 50px;
  font-size: 28px;
  text-align: center;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
}
article.single.full.project .entry-top .entry-content .topics ul li.topic a .icon.icon-technology,
article.single.full.project .entry-top .entry-content .topics ul li.topic a .icon.icon-infrastructure {
  font-size: 20px;
}
article.single.full.project .entry-top .entry-content .topics ul li.topic a:hover {
  color: #bb28da;
}
article.single.full.project .entry-top .entry-content .topics ul li.topic a:hover .icon {
  background: #748baf;
}
article.single.full.project .entry-top .entry-content .topics ul li.topic:before {
  display: none;
}
@media only screen and (min-width: 1024px) {
  article.single.full.project .entry-top .entry-content {
    max-width: 1230px;
    margin: 0 auto;
    padding: 64px 30px 40px;
  }
  article.single.full.project .entry-top .entry-content .content {
    width: 59.82905983%;
    float: left;
  }
  article.single.full.project .entry-top .entry-content .topics {
    width: 34.18803419%;
    float: right;
  }
  article.single.full.project .entry-top .entry-content .topics ul {
    font-size: 0;
  }
  article.single.full.project .entry-top .entry-content .topics ul li.topic {
    display: inline-block;
    vertical-align: top;
    width: 42.5%;
    margin-right: 3.75%;
  }
}
article.single.full.topic > header.entry-header {
  background: #32313b;
  position: relative;
  color: #fff;
  padding: 40px 20px 60px;
  font-size: 15px;
  line-height: 21px;
}
article.single.full.topic > header.entry-header h1 {
  position: relative;
  max-width: 1170px;
  margin: 0 auto 24px;
  font: 700 37px/37px 'Montserrat', sans-serif;
}
@media only screen and (min-width: 1024px) {
  article.single.full.topic > header.entry-header {
    padding: 68px 30px 120px;
  }
}
article.single.full.topic > header.entry-header .entry-content {
  margin: 0 auto;
  max-width: 1170px;
  background: #fff;
  color: #32313b;
  padding: 24px 20px 4px;
}
article.single.full.topic > header.entry-header .entry-content p {
  margin: 0 0 20px;
}
article.single.full.topic > header.entry-header .entry-content .icon {
  text-align: center;
  vertical-align: middle;
  line-height: 50px;
  height: 50px;
  width: 50px;
  font-size: 50px;
  display: block;
  float: left;
  color: #bb28da;
  margin: 0 20px 12px 0;
}
article.single.full.topic > header.entry-header .entry-content .icon.icon-technology,
article.single.full.topic > header.entry-header .entry-content .icon.icon-infrastructure {
  font-size: 35px;
}
@media only screen and (min-width: 1024px) {
  article.single.full.topic > header.entry-header .entry-content {
    font-size: 17px;
    line-height: 26px;
    min-height: 212px;
    position: relative;
    padding: 50px 70px 30px 234px;
  }
  article.single.full.topic > header.entry-header .entry-content .icon {
    position: absolute;
    left: 70px;
    top: 50px;
    margin: 0;
    line-height: 112px;
    height: 112px;
    width: 112px;
    font-size: 112px;
  }
  article.single.full.topic > header.entry-header .entry-content .icon.icon-technology,
  article.single.full.topic > header.entry-header .entry-content .icon.icon-infrastructure {
    font-size: 78px;
  }
}
article.teaser {
  border-top: 1px solid #dee1e7;
  padding: 30px 0;
}
article.teaser:first-child {
  border: none;
  padding-top: 0;
}
article.teaser h2 {
  margin: 0;
  font: 400 21px/28px 'Montserrat', sans-serif;
}
article.teaser h2 a {
  color: #394566;
}
article.teaser h2 a:hover {
  color: #748baf;
}
article.teaser h3.entry-title {
  margin: 0;
  font: 400 17px/26px 'Montserrat', sans-serif;
}
article.teaser h3.entry-title a {
  color: #394566;
}
article.teaser h3.entry-title a:hover {
  color: #748baf;
}
article.teaser ul.meta-lower {
  margin-top: 8px;
}
article.teaser.has-post-thumbnail {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}
article.teaser.has-post-thumbnail > a {
  display: block;
  margin-top: 10px;
}
article.teaser.has-post-thumbnail img.attachment-post-thumbnail {
  display: block;
  margin: 10px auto 0 0;
  height: auto;
  width: auto;
  max-width: 125px;
  max-height: 80px;
}
@media only screen and (min-width: 768px) {
  article.teaser.has-post-thumbnail {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }
  article.teaser.has-post-thumbnail > a {
    max-width: 175px;
    max-height: 80px;
    margin: 0 0 0 auto;
  }
  article.teaser.has-post-thumbnail img.attachment-post-thumbnail {
    margin-top: 0;
    margin-left: auto;
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
  }
}
article.teaser.type-project {
  padding: 0;
}
article.teaser.type-project header {
  background: #32313b no-repeat 50% 0;
  background-size: cover;
  text-align: center;
  position: relative;
  padding: 24px;
}
article.teaser.offsite h2 a:after,
article.teaser.offsite h3 a:after {
  vertical-align: middle;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e91b";
  color: #949493;
  font-size: 12px;
  display: inline-block;
  margin-left: 8px;
}
article.teaser.home {
  border: none;
  padding: 0;
  margin: 32px 0 0;
}
article.teaser.home.offsite h3 a:after {
  vertical-align: middle;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e91b";
  color: #949493;
  font-size: 12px;
  display: inline-block;
  margin-left: 8px;
}
article.teaser.home.has-post-thumbnail img.attachment-post-thumbnail {
  margin: 0 auto 20px 0;
}
article.teaser.home ul.meta {
  margin: 0;
}
article.teaser.home h3.entry-title {
  margin: 0;
  font: 400 17px/26px 'Montserrat', sans-serif;
}
@media only screen and (min-width: 768px) {
  article.teaser.home {
    margin: 48px 0 0;
  }
  article.teaser.home h3.entry-title {
    font: 400 21px/28px 'Montserrat', sans-serif;
  }
}
@media only screen and (min-width: 1024px) {
  article.teaser.home {
    position: relative;
    margin-left: -50px;
    padding-left: 50px;
  }
  article.teaser.home:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    height: 19px;
    border-left: 7px solid #bb28da;
  }
  article.teaser.home.has-post-thumbnail img.attachment-post-thumbnail {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1024px) {
  article.teaser.type-resource:before {
    top: 4px;
  }
}
article.feature.slide,
article.feature.project {
  background: #32313b;
  position: relative;
}
article.feature.slide > header.entry-header,
article.feature.project > header.entry-header {
  position: relative;
  color: #fff;
  padding: 48px 20px;
  text-align: center;
  max-width: 1170px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 21px;
}
article.feature.slide > header.entry-header h2,
article.feature.project > header.entry-header h2 {
  margin: 0 0 24px;
  font: 700 40px/44px 'Montserrat', sans-serif;
}
article.feature.slide > header.entry-header p,
article.feature.project > header.entry-header p {
  max-width: 830px;
  margin: 0 auto 24px;
}
article.feature.slide > header.entry-header a.button,
article.feature.project > header.entry-header a.button {
  display: block;
  background: #1fd26a;
  font: 700 18px/24px 'Montserrat', sans-serif;
  padding: 20px;
  color: #32313b;
  text-transform: uppercase;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -o-transition: all 250ms;
  -ms-transition: all 250ms;
  transition: all 250ms;
  margin: 0;
}
article.feature.slide > header.entry-header a.button:hover,
article.feature.project > header.entry-header a.button:hover {
  color: #fff;
  background: #18a553;
}
@media only screen and (min-width: 768px) {
  article.feature.slide > header.entry-header a.button,
  article.feature.project > header.entry-header a.button {
    display: inline-block;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 1024px) {
  article.feature.slide > header.entry-header,
  article.feature.project > header.entry-header {
    font-size: 17px;
    line-height: 26px;
    padding: 284px 30px 270px;
  }
  article.feature.slide > header.entry-header h2,
  article.feature.project > header.entry-header h2 {
    margin: 0 0 32px;
    font-size: 80px;
    line-height: 88px;
  }
  article.feature.slide > header.entry-header a.button,
  article.feature.project > header.entry-header a.button {
    margin-top: 16px;
  }
}
#aside-events {
  background: #1bb95d;
  color: #fff;
}
#aside-events .aside-left {
  background: #748baf;
  padding: 20px;
  vertical-align: middle;
  text-transform: uppercase;
  font: 300 28px/56px 'Montserrat', sans-serif;
}
#aside-events .aside-left span {
  vertical-align: middle;
  display: inline-block;
  margin-right: 4px;
}
#aside-events .aside-left span.day {
  font-size: 50px;
  font-weight: 700;
}
#aside-events article.teaser {
  border: none;
  margin: 0;
  padding: 42px 20px;
}
#aside-events article.teaser h2.entry-title {
  font: 400 32px/38px 'Montserrat', sans-serif;
  margin: 0 0 8px;
}
#aside-events article.teaser h2.entry-title a {
  color: #fff;
}
#aside-events article.teaser h2.entry-title a:hover {
  color: #32313b;
}
#aside-events article.teaser .entry-header ul.meta li.topic,
#aside-events article.teaser .entry-header ul.meta li.topic a {
  color: #fff;
}
#aside-events article.teaser .entry-header ul.meta li.topic a:hover {
  color: #32313b;
}
#aside-events article.teaser.has-post-thumbnail .entry-header {
  margin-left: 0;
}
#aside-events article.teaser ul.meta-lower {
  margin: 0;
}
#aside-events article.teaser ul.meta-lower li {
  color: #fff;
}
#aside-events .aside-right {
  background: #1fd26a;
  padding: 36px 20px;
}
#aside-events .aside-right a {
  display: block;
  color: #fff;
  font: 700 15px/22px 'Montserrat', sans-serif;
}
#aside-events .aside-right a:after {
  -webkit-transition: margin 250ms;
  -moz-transition: margin 250ms;
  -o-transition: margin 250ms;
  -ms-transition: margin 250ms;
  transition: margin 250ms;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90f";
  line-height: 22px;
  vertical-align: middle;
  margin-left: 10px;
}
#aside-events .aside-right a:hover {
  color: #32313b;
}
#aside-events .aside-right a:hover:after {
  margin-left: 15px;
}
@media only screen and (min-width: 1024px) {
  #aside-events {
    overflow: hidden;
  }
  #aside-events article.teaser {
    padding: 52px;
  }
  #aside-events .aside-content {
    position: relative;
    max-width: 770px;
    width: 56%;
    margin: 0 auto;
  }
  #aside-events .aside-content .aside-left {
    width: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    bottom: 0;
  }
  #aside-events .aside-content .aside-left .date {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 52px;
  }
  #aside-events .aside-content .aside-left .date span {
    display: block;
    font-size: 42px;
    line-height: 45px;
    text-align: center;
    margin: 0;
  }
  #aside-events .aside-content .aside-left .date span.day {
    font-size: 98px;
    line-height: 78px;
  }
  #aside-events .aside-content .aside-right {
    width: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
  }
  #aside-events .aside-content .aside-right a.more {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 52px;
    width: 20.92633929%;
    z-index: 10;
  }
}
a.more {
  display: block;
  color: #1fd26a;
  font: 700 15px/22px 'Montserrat', sans-serif;
  -webkit-transition: color 250ms;
  -moz-transition: color 250ms;
  -o-transition: color 250ms;
  -ms-transition: color 250ms;
  transition: color 250ms;
}
a.more:after {
  -webkit-transition: margin 250ms;
  -moz-transition: margin 250ms;
  -o-transition: margin 250ms;
  -ms-transition: margin 250ms;
  transition: margin 250ms;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90f";
  line-height: 22px;
  vertical-align: middle;
  margin-left: 10px;
}
a.more:hover {
  color: #18a553;
}
a.more:hover:after {
  margin-left: 15px;
}
.entry-asides {
  max-width: 1230px;
  margin: 0 auto;
  padding: 42px 20px 72px;
}
.entry-asides .column {
  margin: 0 0 54px;
  padding: 0 0 60px;
  border-bottom: 1px solid #dee1e7;
}
.entry-asides .column a.more {
  margin-top: 54px;
}
.entry-asides .column h2 {
  margin: 0 0 8px;
  font: 700 24px/30px 'Montserrat', sans-serif;
  text-transform: uppercase;
}
.entry-asides .column h4 {
  margin: 0;
  font: 700 17px/24px 'Montserrat', sans-serif;
  color: #949493;
}
.entry-asides .column .intro {
  margin: 18px 0 0;
}
.entry-asides .column .intro p {
  margin: 18px 0 0;
}
.entry-asides .column .pager {
  margin: 60px 0 0;
}
@media only screen and (min-width: 1024px) {
  .entry-asides .column {
    position: relative;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.17);
    border: none;
    padding: 42px 50px 112px;
    background: #fff;
    float: left;
    width: 47.00854701%;
    margin: 0 0 70px;
  }
  .entry-asides .column#aside-resources {
    float: right;
  }
  .entry-asides .column .pager {
    margin: 0;
    position: absolute;
    left: 50px;
    right: 50px;
    bottom: 46px;
  }
}
@media only screen and (min-width: 1024px) {
  .entry-asides.single-column .column {
    float: none !important;
    width: auto;
  }
}
.entry-asides #aside-news h2 {
  margin: 0 0 24px;
  font: 700 24px/30px 'Montserrat', sans-serif;
  text-transform: uppercase;
}
.entry-asides #aside-news h3 {
  font: 400 17px/26px 'Montserrat', sans-serif;
  margin: 0;
}
.entry-asides #aside-news h3 a {
  color: #394566;
}
.entry-asides #aside-news h3 a:hover {
  color: #748baf;
}
.entry-asides #aside-news a.more {
  display: block;
  color: #1fd26a;
  font: 700 15px/22px 'Montserrat', sans-serif;
}
.entry-asides #aside-news a.more:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90f";
  line-height: 22px;
  vertical-align: middle;
  margin-left: 10px;
  -webkit-transition: margin 250ms;
  -moz-transition: margin 250ms;
  -o-transition: margin 250ms;
  -ms-transition: margin 250ms;
  transition: margin 250ms;
}
.entry-asides #aside-news a.more:hover {
  color: #18a553;
}
.entry-asides #aside-news a.more:hover:after {
  margin-left: 15px;
}
@media only screen and (min-width: 1024px) {
  .entry-asides #aside-news {
    clear: both;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.17);
    border: none;
    padding: 42px 50px;
    background: #fff;
    position: relative;
  }
  .entry-asides #aside-news:before {
    content: '';
    position: absolute;
    display: block;
    border-left: 1px solid #dee1e7;
    right: 21.79487179%;
    top: 20px;
    bottom: 20px;
  }
  .entry-asides #aside-news h2 {
    float: left;
    width: 18.8034188%;
    margin-right: 2.56410256%;
  }
  .entry-asides #aside-news .aside-content {
    float: left;
    width: 48.71794872%;
  }
  .entry-asides #aside-news .aside-content article {
    padding: 0;
  }
  .entry-asides #aside-news a.more {
    width: 14.1025641%;
    right: 50px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media only screen and (min-width: 1024px) {
  .entry-asides #aside-research a.more,
  .entry-asides #aside-resources a.more {
    position: absolute;
    bottom: 40px;
  }
}
aside#aside-topics {
  position: relative;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.17);
  background: #fff;
  max-width: 1170px;
  margin: 0 auto;
}
aside#aside-topics a {
  color: #32313b;
}
aside#aside-topics a:hover {
  color: #748baf;
}
aside#aside-topics ul.topics {
  margin: 0;
  padding: 0;
  font-size: 0;
}
aside#aside-topics ul.topics li {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #dee1e7;
}
aside#aside-topics ul.topics li:first-child {
  border: none;
}
aside#aside-topics ul.topics li:nth-child(2n+1) {
  background: #f3f3f5;
}
aside#aside-topics ul.topics li a {
  position: relative;
  display: block;
  padding: 15px 20px;
  vertical-align: middle;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -o-transition: all 250ms;
  -ms-transition: all 250ms;
  transition: all 250ms;
}
aside#aside-topics ul.topics li a span {
  width: 50px;
  height: 42px;
  vertical-align: middle;
  font-size: 28px;
  line-height: 42px;
  display: inline-block;
  color: #bb28da;
  -webkit-transition: color 250ms;
  -moz-transition: color 250ms;
  -o-transition: color 250ms;
  -ms-transition: color 250ms;
  transition: color 250ms;
}
aside#aside-topics ul.topics li a span.icon-technology,
aside#aside-topics ul.topics li a span.icon-infrastructure {
  font-size: 20px;
}
aside#aside-topics ul.topics li a h2 {
  margin: 0;
  position: absolute;
  left: 70px;
  right: 50px;
  text-transform: uppercase;
  font: 900 15px/21px 'Lato', sans-serif;
  color: #748baf;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: color 250ms;
  -moz-transition: color 250ms;
  -o-transition: color 250ms;
  -ms-transition: color 250ms;
  transition: color 250ms;
}
aside#aside-topics ul.topics li a .intro {
  display: none;
}
aside#aside-topics ul.topics li a .intro p {
  -webkit-transition: color 250ms;
  -moz-transition: color 250ms;
  -o-transition: color 250ms;
  -ms-transition: color 250ms;
  transition: color 250ms;
  margin: 0;
  font-size: 15px;
  color: #32313b;
}
aside#aside-topics ul.topics li a:hover {
  background: #748baf;
}
aside#aside-topics ul.topics li a:hover,
aside#aside-topics ul.topics li a:hover h2,
aside#aside-topics ul.topics li a:hover span {
  color: #fff;
}
@media only screen and (min-width: 1024px) {
  aside#aside-topics ul.topics li {
    display: inline-block;
    width: 25%;
    vertical-align: top;
    text-align: center;
    border: none;
    border-left: 1px solid #dee1e7;
  }
  aside#aside-topics ul.topics li.blank:last-child:before {
    display: block;
    text-align: center;
    color: #000;
    content: "\e91a";
    font-family: 'icomoon';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 100px;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0.2;
  }
  aside#aside-topics ul.topics li:nth-child(4n+1) {
    border-left: none;
  }
  aside#aside-topics ul.topics li:nth-child(n+5) {
    border-top: 1px solid #dee1e7;
    background: #fff;
  }
  aside#aside-topics ul.topics li:nth-child(2n+6) {
    background: #f3f3f5;
  }
  aside#aside-topics ul.topics li:nth-child(2n+10) {
    background: #fff;
  }
  aside#aside-topics ul.topics li:nth-child(2n+9) {
    background: #f3f3f5;
  }
  aside#aside-topics ul.topics li:nth-child(2n+13) {
    background: #fff;
  }
  aside#aside-topics ul.topics li:nth-child(2n+14) {
    background: #f3f3f5;
  }
  aside#aside-topics ul.topics li a {
    padding: 48px 30px;
  }
  aside#aside-topics ul.topics li a span {
    display: block;
    width: auto;
    height: auto;
    line-height: 68px;
    font-size: 68px;
    position: relative;
    padding: 0 0 34px;
    margin: 0 0 30px;
  }
  aside#aside-topics ul.topics li a span.icon-technology,
  aside#aside-topics ul.topics li a span.icon-infrastructure {
    font-size: 48px;
  }
  aside#aside-topics ul.topics li a span:after {
    -webkit-transition: border 250ms;
    -moz-transition: border 250ms;
    -o-transition: border 250ms;
    -ms-transition: border 250ms;
    transition: border 250ms;
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    border-bottom: 4px solid #bb28da;
  }
  aside#aside-topics ul.topics li a h2 {
    margin: 0 0 24px;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    height: auto;
    font: 900 17px/22px 'Lato', sans-serif;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  aside#aside-topics ul.topics li a .intro {
    display: block;
  }
  aside#aside-topics ul.topics li a:hover .intro,
  aside#aside-topics ul.topics li a:hover .intro p {
    color: #fff;
  }
  aside#aside-topics ul.topics li a:hover span:after {
    border-bottom: 4px solid #fff;
  }
}
body.single-project #site-header:after,
body.single-topic #site-header:after {
  display: none;
}
body.page-home #site-header:after {
  display: none;
}
body.page-home #main {
  background: #eaeef3;
}
body.page-home #main #slides {
  margin: 0;
  padding: 0;
  position: relative;
}
body.page-home #main #slides .slick-arrow {
  position: absolute;
  width: 60px;
  height: 140px;
  top: 50%;
  margin: -70px 0 0;
  left: 0;
  text-align: center;
  border: none;
  padding: 0;
  background: #32313b;
  background: rgba(0, 0, 0, 0.3);
  z-index: 102;
  text-indent: -9999px;
  cursor: pointer;
  -webkit-transition: opacity 250ms;
  -moz-transition: opacity 250ms;
  -o-transition: opacity 250ms;
  -ms-transition: opacity 250ms;
  transition: opacity 250ms;
}
body.page-home #main #slides .slick-arrow:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-indent: 0;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1fd26a;
  content: "\e910";
  line-height: 140px;
  font-size: 20px;
}
body.page-home #main #slides .slick-arrow.slick-next {
  left: auto;
  right: 0;
}
body.page-home #main #slides .slick-arrow.slick-next:before {
  content: '\e90f';
}
body.page-home #main #slides .slick-arrow:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=(70));
  opacity: 0.7;
}
body.page-home #main #slides .slick-dots {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  height: 20px;
  list-style: none;
  text-align: center;
}
@media only screen and (min-width: 1024px) {
  body.page-home #main #slides .slick-dots {
    bottom: 140px;
  }
}
body.page-home #main #slides .slick-dots li {
  height: 20px;
  margin: 0 6px;
  text-align: left;
  display: inline-block;
}
body.page-home #main #slides .slick-dots li button {
  height: 20px;
  width: 20px;
  display: block;
  background: transparent;
  text-indent: -9999px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-clip: padding-box;
  border: 3px solid #fff;
  cursor: pointer;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -o-transition: all 250ms;
  -ms-transition: all 250ms;
  transition: all 250ms;
}
body.page-home #main #slides .slick-dots li button:hover {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=(70));
  opacity: 0.7;
}
body.page-home #main #slides .slick-dots li.slick-active button {
  background: #fff;
}
body.page-home #main aside.about {
  background: #32313b;
  position: relative;
  color: #fff;
}
body.page-home #main aside.about .inner {
  position: relative;
  padding: 48px 20px;
  max-width: 1030px;
  margin: 0 auto;
}
@media only screen and (min-width: 1024px) {
  body.page-home #main aside.about .inner {
    padding: 92px 30px 114px;
  }
  body.page-home #main aside.about .inner a.more {
    margin-top: 54px;
  }
}
body.page-home #main aside.about h2 {
  font: 700 24px/30px 'Montserrat', sans-serif;
  margin: 0 0 24px;
  text-transform: uppercase;
}
body.page-home #main aside.about p {
  margin: 0 0 24px;
}
body.page-home #main aside.about a.more {
  display: block;
  font: 700 15px/26px 'Montserrat', sans-serif;
  color: #1fd26a;
}
body.page-home #main aside.about a.more:after {
  -webkit-transition: margin 250ms;
  -moz-transition: margin 250ms;
  -o-transition: margin 250ms;
  -ms-transition: margin 250ms;
  transition: margin 250ms;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e90f";
  line-height: 22px;
  vertical-align: middle;
  margin-left: 10px;
}
body.page-home #main aside.about a.more:hover {
  color: #18a553;
}
body.page-home #main aside.about a.more:hover:after {
  margin-left: 15px;
}
body.page-home #main .entry-asides {
  background: #fff;
  margin: 48px 0 0;
}
body.page-home #main .entry-asides #aside-research {
  border: none;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  body.page-home #main .entry-asides {
    margin: 0;
    padding: 100px 30px 140px;
    background: none;
    max-width: none;
  }
  html.backgroundsize.svg body.page-home #main .entry-asides {
    background: url(../img/icon-ghost.svg) no-repeat 50% 50%;
    background-size: 96%;
  }
  body.page-home #main .entry-asides .inner {
    max-width: 1170px;
    margin: 0 auto;
  }
  body.page-home #main .entry-asides .inner #aside-research {
    float: right;
    padding: 42px 50px 112px;
  }
  body.page-home #main .entry-asides .inner .column {
    position: relative;
  }
  body.page-home #main .entry-asides .inner .column a.more {
    position: absolute;
    left: 50px;
    bottom: 46px;
    right: 50px;
    margin: 0;
  }
}
body.page-home #main .topics-wrapper {
  background: #32313b;
  position: relative;
  color: #fff;
  font-size: 15px;
  line-height: 21px;
  margin: 15px 15px 0;
  padding: 54px 15px;
  text-align: center;
}
body.page-home #main .topics-wrapper .inner {
  position: relative;
}
body.page-home #main .topics-wrapper .topics {
  text-align: left;
}
body.page-home #main .topics-wrapper p {
  max-width: 970px;
  margin: 0 auto 24px;
}
body.page-home #main .topics-wrapper h3 {
  margin: 42px 0 30px;
  font: 700 21px/26px 'Montserrat', sans-serif;
}
body.page-home #main .topics-wrapper h3:after {
  display: block;
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #1fd26a;
  content: "\e911";
  font-size: 12px;
  margin-top: 12px;
}
@media only screen and (min-width: 1024px) {
  body.page-home #main .topics-wrapper {
    margin: 30px 30px 0;
    padding: 76px 30px 90px;
    font-size: 21px;
    line-height: 31px;
  }
  body.page-home #main .topics-wrapper h3 {
    margin: 56px 0 64px;
  }
  body.page-home #main .topics-wrapper #aside-topics {
    max-width: 1170px;
    margin: 0 auto;
  }
  body.page-home #main .topics-wrapper #aside-topics .intro {
    display: none;
  }
}
body.page-projects #site-header:after {
  display: none;
}
body.page-projects #main a {
  color: #fff;
}
body.page-projects #main .featured {
  padding: 0;
}
body.page-projects #main .featured article a {
  display: block;
  position: relative;
}
body.page-projects #main .featured article a:hover header:before {
  background: rgba(0, 0, 0, 0.5);
}
body.page-projects #main .featured article header {
  padding: 184px 20px;
}
body.page-projects #main .featured article header:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: background 250ms;
  -moz-transition: background 250ms;
  -o-transition: background 250ms;
  -ms-transition: background 250ms;
  transition: background 250ms;
}
body.page-projects #main .featured article header h2.entry-title {
  position: relative;
  font: 700 40px/44px 'Montserrat', sans-serif;
}
@media only screen and (min-width: 1024px) {
  body.page-projects #main .featured article header {
    padding: 286px 30px;
  }
  body.page-projects #main .featured article header h2.entry-title {
    font: 700 66px/72px 'Montserrat', sans-serif;
  }
}
body.page-projects #main ul.projects {
  margin: 0;
  padding: 20px 20px 60px;
  list-style: none;
  font-size: 0;
}
body.page-projects #main ul.projects li {
  margin: 0 0 20px;
  padding: 0;
}
body.page-projects #main ul.projects li article a {
  display: block;
  position: relative;
}
body.page-projects #main ul.projects li article a:hover header:before {
  background: rgba(0, 0, 0, 0.5);
}
body.page-projects #main ul.projects li article header {
  height: 126px;
}
body.page-projects #main ul.projects li article header:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: background 250ms;
  -moz-transition: background 250ms;
  -o-transition: background 250ms;
  -ms-transition: background 250ms;
  transition: background 250ms;
}
body.page-projects #main ul.projects li article header h2 {
  font: 700 21px/28px 'Montserrat', sans-serif;
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media only screen and (min-width: 1024px) {
  body.page-projects #main ul.projects {
    padding: 30px 2% 120px 2%;
    padding: 0 0 90px;
  }
  body.page-projects #main ul.projects li {
    width: 47%;
    display: inline-block;
    margin: 2%;
  }
  body.page-projects #main ul.projects li:nth-child(2n) {
    margin-left: 0;
  }
  body.page-projects #main ul.projects li article header {
    height: 315px;
  }
  body.page-projects #main ul.projects li article header h2 {
    font: 700 32px/40px 'Montserrat', sans-serif;
    left: 30px;
    right: 30px;
  }
}
body.page-topics #site-header:after {
  display: none;
}
body.page-topics #main {
  background: #32313b;
  position: relative;
  color: #fff;
  padding: 40px 20px 60px;
  font-size: 15px;
  line-height: 21px;
}
@media only screen and (min-width: 1024px) {
  body.page-topics #main {
    padding: 68px 30px 120px;
  }
}
body.page-topics #main article.page {
  position: relative;
}
body.page-topics #main article.page.full {
  margin: 0 0 42px;
  padding: 0;
}
@media only screen and (min-width: 1024px) {
  body.page-topics #main article.page.full {
    max-width: 1170px;
    margin: 0 auto 42px;
  }
}
body.page-topics #main article.page.full h1 {
  font: 700 37px/30px 'Montserrat', sans-serif;
}
ul.sort {
  margin: 16px 0 0;
  padding: 0;
  float: right;
  list-style: none;
  font-size: 0;
}
ul.sort li {
  font: 700 13px/14px 'Montserrat', sans-serif;
  display: inline-block;
  margin: 0 0 0 12px;
  padding: 0;
}
ul.sort li:first-child {
  padding: 0 12px 0 0;
  border-right: 1px solid #b5b4be;
}
ul.sort li a {
  color: #949493;
}
ul.sort li a.current {
  color: #32313b;
}
ul.sort li a.current:hover {
  color: #748baf;
}
@keyframes flickerAnimation {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-o-keyframes flickerAnimation {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-moz-keyframes flickerAnimation {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes flickerAnimation {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
.pager {
  color: #b5b4be;
  margin: 72px auto 0;
  font: 800 13px/20px 'Lato', sans-serif;
  white-space: nowrap;
}
@media only screen and (max-width: 1023px) {
  .pager {
    margin-bottom: 120px;
  }
}
.pager span {
  margin-right: 4.34782609%;
  display: inline-block;
}
.pager a {
  width: 20px;
  margin-right: 4.34782609%;
  display: inline-block;
  color: #748baf;
}
.pager a span {
  display: block;
  text-align: center;
}
.pager a:hover {
  color: #bb28da;
}
.pager a.current {
  background: #748baf;
  color: #fff;
}
.pager a.load-more.loading {
  -webkit-animation: flickerAnimation 2s infinite;
  -moz-animation: flickerAnimation 2s infinite;
  -o-animation: flickerAnimation 2s infinite;
  animation: flickerAnimation 2s infinite;
}
@media only screen and (min-width: 1024px) {
  .pager a.load-more {
    display: none;
  }
}
@media only screen and (max-width: 1023px) {
  .pager span,
  .pager a {
    display: none;
  }
  .pager span.load-more,
  .pager a.load-more {
    display: block;
    margin: 0;
    width: 100%;
    background: #748baf;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font: 800 17px/44px 'Montserrat', sans-serif;
  }
}
body.tag #main,
body.search #main {
  background: none;
  margin: 0 auto;
  max-width: 1230px;
  padding: 0 30px;
}
@media only screen and (min-width: 1024px) {
  body.tag #main,
  body.search #main {
    margin: 64px auto 114px;
  }
}
body.tag #main h1,
body.search #main h1 {
  vertical-align: bottom;
  margin: 16px 0 32px;
  color: #949493;
  text-transform: uppercase;
  font: 700 17px/14px 'Montserrat', sans-serif;
}
body.tag #main h1 em,
body.search #main h1 em {
  font-style: normal;
  color: #32313b;
}
body.tag #main article.search-result,
body.search #main article.search-result {
  margin: 30px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid #dee1e7;
}
body.tag #main article.search-result:first-child,
body.search #main article.search-result:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
body.tag #main article.search-result:before,
body.search #main article.search-result:before {
  display: none;
}
body.tag #main article.search-result.has-post-thumbnail img,
body.search #main article.search-result.has-post-thumbnail img {
  width: 180px;
  margin: 0;
}
body.tag #main article.search-result.has-post-thumbnail header.entry-header,
body.search #main article.search-result.has-post-thumbnail header.entry-header {
  margin-left: 200px;
}
body.archive #main,
body.blog #main,
body.post-type-archive-event #main,
body.post-type-archive-research #main,
body.post-type-archive-resource #main {
  margin: 0 auto;
  max-width: 1230px;
  padding: 0 20px;
}
@media only screen and (min-width: 1024px) {
  body.archive #main,
  body.blog #main,
  body.post-type-archive-event #main,
  body.post-type-archive-research #main,
  body.post-type-archive-resource #main {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 1023px) {
  body.archive #main > header,
  body.blog #main > header,
  body.post-type-archive-event #main > header,
  body.post-type-archive-research #main > header,
  body.post-type-archive-resource #main > header {
    margin-bottom: 42px;
  }
}
body.archive #main > header nav.topic-filter,
body.blog #main > header nav.topic-filter,
body.post-type-archive-event #main > header nav.topic-filter,
body.post-type-archive-research #main > header nav.topic-filter,
body.post-type-archive-resource #main > header nav.topic-filter {
  background: #f3f3f5;
  overflow: hidden;
}
body.archive #main > header nav.topic-filter h3,
body.blog #main > header nav.topic-filter h3,
body.post-type-archive-event #main > header nav.topic-filter h3,
body.post-type-archive-research #main > header nav.topic-filter h3,
body.post-type-archive-resource #main > header nav.topic-filter h3 {
  cursor: pointer;
  text-align: center;
  background: #394566;
  color: #fff;
  text-transform: uppercase;
  padding: 7px 30px;
  font: 700 17px/30px 'Montserrat', sans-serif;
  margin: 0;
}
body.archive #main > header nav.topic-filter ul,
body.blog #main > header nav.topic-filter ul,
body.post-type-archive-event #main > header nav.topic-filter ul,
body.post-type-archive-research #main > header nav.topic-filter ul,
body.post-type-archive-resource #main > header nav.topic-filter ul {
  -webkit-transition: all 500ms;
  -moz-transition: all 500ms;
  -o-transition: all 500ms;
  -ms-transition: all 500ms;
  transition: all 500ms;
  max-height: 0;
  margin: 0;
  padding: 0;
}
body.archive #main > header nav.topic-filter ul li,
body.blog #main > header nav.topic-filter ul li,
body.post-type-archive-event #main > header nav.topic-filter ul li,
body.post-type-archive-research #main > header nav.topic-filter ul li,
body.post-type-archive-resource #main > header nav.topic-filter ul li {
  border-top: 1px solid #dee1e7;
  margin: 0;
  padding: 0;
  list-style: none;
}
body.archive #main > header nav.topic-filter ul li:first-child,
body.blog #main > header nav.topic-filter ul li:first-child,
body.post-type-archive-event #main > header nav.topic-filter ul li:first-child,
body.post-type-archive-research #main > header nav.topic-filter ul li:first-child,
body.post-type-archive-resource #main > header nav.topic-filter ul li:first-child {
  border-top: none;
}
body.archive #main > header nav.topic-filter ul li a,
body.blog #main > header nav.topic-filter ul li a,
body.post-type-archive-event #main > header nav.topic-filter ul li a,
body.post-type-archive-research #main > header nav.topic-filter ul li a,
body.post-type-archive-resource #main > header nav.topic-filter ul li a {
  display: block;
  text-transform: uppercase;
  color: #748baf;
  padding: 17px 30px;
  font: 900 11px/30px 'Lato', sans-serif;
  vertical-align: middle;
  -webkit-transition: all 250ms;
  -moz-transition: all 250ms;
  -o-transition: all 250ms;
  -ms-transition: all 250ms;
  transition: all 250ms;
}
body.archive #main > header nav.topic-filter ul li a span,
body.blog #main > header nav.topic-filter ul li a span,
body.post-type-archive-event #main > header nav.topic-filter ul li a span,
body.post-type-archive-research #main > header nav.topic-filter ul li a span,
body.post-type-archive-resource #main > header nav.topic-filter ul li a span {
  -webkit-transition: color 250ms;
  -moz-transition: color 250ms;
  -o-transition: color 250ms;
  -ms-transition: color 250ms;
  transition: color 250ms;
  width: 50px;
  height: 30px;
  vertical-align: middle;
  font-size: 28px;
  line-height: 30px;
  display: inline-block;
  color: #bb28da;
}
body.archive #main > header nav.topic-filter ul li a span.icon-all,
body.blog #main > header nav.topic-filter ul li a span.icon-all,
body.post-type-archive-event #main > header nav.topic-filter ul li a span.icon-all,
body.post-type-archive-research #main > header nav.topic-filter ul li a span.icon-all,
body.post-type-archive-resource #main > header nav.topic-filter ul li a span.icon-all,
body.archive #main > header nav.topic-filter ul li a span.icon-technology,
body.blog #main > header nav.topic-filter ul li a span.icon-technology,
body.post-type-archive-event #main > header nav.topic-filter ul li a span.icon-technology,
body.post-type-archive-research #main > header nav.topic-filter ul li a span.icon-technology,
body.post-type-archive-resource #main > header nav.topic-filter ul li a span.icon-technology,
body.archive #main > header nav.topic-filter ul li a span.icon-infrastructure,
body.blog #main > header nav.topic-filter ul li a span.icon-infrastructure,
body.post-type-archive-event #main > header nav.topic-filter ul li a span.icon-infrastructure,
body.post-type-archive-research #main > header nav.topic-filter ul li a span.icon-infrastructure,
body.post-type-archive-resource #main > header nav.topic-filter ul li a span.icon-infrastructure {
  font-size: 20px;
}
body.archive #main > header nav.topic-filter ul li a:hover,
body.blog #main > header nav.topic-filter ul li a:hover,
body.post-type-archive-event #main > header nav.topic-filter ul li a:hover,
body.post-type-archive-research #main > header nav.topic-filter ul li a:hover,
body.post-type-archive-resource #main > header nav.topic-filter ul li a:hover {
  background: #748baf;
  color: #fff;
}
body.archive #main > header nav.topic-filter ul li a:hover span,
body.blog #main > header nav.topic-filter ul li a:hover span,
body.post-type-archive-event #main > header nav.topic-filter ul li a:hover span,
body.post-type-archive-research #main > header nav.topic-filter ul li a:hover span,
body.post-type-archive-resource #main > header nav.topic-filter ul li a:hover span {
  color: #fff;
}
body.archive #main > header nav.topic-filter.open ul,
body.blog #main > header nav.topic-filter.open ul,
body.post-type-archive-event #main > header nav.topic-filter.open ul,
body.post-type-archive-research #main > header nav.topic-filter.open ul,
body.post-type-archive-resource #main > header nav.topic-filter.open ul {
  max-height: 1200px;
}
body.archive #main #content h2.column-title,
body.blog #main #content h2.column-title,
body.post-type-archive-event #main #content h2.column-title,
body.post-type-archive-research #main #content h2.column-title,
body.post-type-archive-resource #main #content h2.column-title {
  vertical-align: bottom;
  margin: 16px 0 32px;
  color: #949493;
  text-transform: uppercase;
  font: 700 17px/14px 'Montserrat', sans-serif;
}
body.archive #main #content h2.column-title em,
body.blog #main #content h2.column-title em,
body.post-type-archive-event #main #content h2.column-title em,
body.post-type-archive-research #main #content h2.column-title em,
body.post-type-archive-resource #main #content h2.column-title em {
  font-style: normal;
  color: #32313b;
}
@media only screen and (max-width: 1023px) {
  body.archive #main #content ul.sort,
  body.blog #main #content ul.sort,
  body.post-type-archive-event #main #content ul.sort,
  body.post-type-archive-research #main #content ul.sort,
  body.post-type-archive-resource #main #content ul.sort {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  body.archive #main,
  body.blog #main,
  body.post-type-archive-event #main,
  body.post-type-archive-research #main,
  body.post-type-archive-resource #main {
    margin: 64px auto 128px;
  }
  body.archive #main > header,
  body.blog #main > header,
  body.post-type-archive-event #main > header,
  body.post-type-archive-research #main > header,
  body.post-type-archive-resource #main > header {
    float: left;
    width: 23.07692308%;
  }
  body.archive #main > header h1.page-title,
  body.blog #main > header h1.page-title,
  body.post-type-archive-event #main > header h1.page-title,
  body.post-type-archive-research #main > header h1.page-title,
  body.post-type-archive-resource #main > header h1.page-title {
    font: 700 37px/30px 'Montserrat', sans-serif;
    margin: 0 0 32px;
  }
  body.archive #main > header nav.topic-filter,
  body.blog #main > header nav.topic-filter,
  body.post-type-archive-event #main > header nav.topic-filter,
  body.post-type-archive-research #main > header nav.topic-filter,
  body.post-type-archive-resource #main > header nav.topic-filter {
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.17);
  }
  body.archive #main > header nav.topic-filter h3,
  body.blog #main > header nav.topic-filter h3,
  body.post-type-archive-event #main > header nav.topic-filter h3,
  body.post-type-archive-research #main > header nav.topic-filter h3,
  body.post-type-archive-resource #main > header nav.topic-filter h3 {
    cursor: auto;
    text-align: left;
    padding: 15px 30px;
  }
  body.archive #main > header nav.topic-filter ul,
  body.blog #main > header nav.topic-filter ul,
  body.post-type-archive-event #main > header nav.topic-filter ul,
  body.post-type-archive-research #main > header nav.topic-filter ul,
  body.post-type-archive-resource #main > header nav.topic-filter ul {
    max-height: none;
  }
  body.archive #main #content,
  body.blog #main #content,
  body.post-type-archive-event #main #content,
  body.post-type-archive-research #main #content,
  body.post-type-archive-resource #main #content {
    float: right;
    width: 68.37606838%;
  }
  body.archive #main #content h2.column-title,
  body.blog #main #content h2.column-title,
  body.post-type-archive-event #main #content h2.column-title,
  body.post-type-archive-research #main #content h2.column-title,
  body.post-type-archive-resource #main #content h2.column-title {
    vertical-align: bottom;
    margin: 16px 0 32px;
    color: #949493;
    text-transform: uppercase;
    font: 700 17px/14px 'Montserrat', sans-serif;
  }
  body.archive #main #content h2.column-title em,
  body.blog #main #content h2.column-title em,
  body.post-type-archive-event #main #content h2.column-title em,
  body.post-type-archive-research #main #content h2.column-title em,
  body.post-type-archive-resource #main #content h2.column-title em {
    font-style: normal;
    color: #32313b;
  }
}
#site-footer {
  background: #32313b;
  color: #fff;
  font: 400 13px/21px 'Lato', sans-serif;
  padding: 64px 0 56px;
}
#site-footer #mc_embed_signup {
  clear: both;
  font-size: 0;
}
#site-footer #mc_embed_signup h2 {
  margin: 0 0 12px;
  font: 900 13px/21px 'Lato', sans-serif;
  text-transform: uppercase;
}
#site-footer #mc_embed_signup label {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  /* many screen reader and browser combinations announce broken words as they would appear visually */
  word-wrap: normal !important;
}
#site-footer #mc_embed_signup input.email {
  margin: 0 0 20px;
  display: block;
  width: 100%;
  border: none;
  background: #fff;
  color: #32313b;
  height: 30px;
  padding: 0 12px;
  font: 400 13px/27px 'Lato', sans-serif;
}
#site-footer #mc_embed_signup input.button {
  display: inline-block;
  vertical-align: middle;
  color: #32313b;
  background: #1fd26a;
  font: 800 12px/30px 'Montserrat', sans-serif;
  padding: 0 16px;
  border: none;
  text-transform: uppercase;
}
#site-footer #mc_embed_signup input.button:hover {
  background: #18a553;
}
@media only screen and (min-width: 1024px) {
  #site-footer #mc_embed_signup .mc-field-group {
    vertical-align: middle;
    display: inline-block;
    width: 42.52873563%;
    margin: 0 1.72413793% 0 0;
  }
  #site-footer #mc_embed_signup .mc-field-group input.email {
    margin: 0;
  }
}
#site-footer p {
  margin: 0;
}
#site-footer a {
  color: #1fd26a;
}
#site-footer a:hover {
  color: #fff;
}
#site-footer .nav-aux {
  margin: 0 0 28px;
}
#site-footer .nav-aux a.donate-button {
  color: #fff;
}
#site-footer .nav-aux ul.social-menu a {
  color: #b9c5d7;
}
#site-footer .nav-aux ul.social-menu a:hover {
  color: #748baf;
}
#site-footer .footer-inner {
  margin: 0 auto;
  max-width: 1230px;
  padding: 0 30px;
}
#site-footer .footer-copyright {
  clear: both;
  padding: 18px 0 0;
  margin: 36px 0 0;
  font-size: 11px;
  border-top: 1px solid #949493;
}
#site-footer .footer-address {
  margin: 0 0 28px;
}
#site-footer .footer-phone:before {
  content: "\e90e";
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  width: 22px;
}
#site-footer .footer-fax:before {
  content: "\e90d";
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  width: 22px;
}
#site-footer .footer-email:before {
  content: "\e90c";
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  width: 22px;
}
#site-footer .footer-a {
  margin: 0 0 28px;
}
#site-footer a.logo {
  margin: 0 0 32px;
  display: block;
  width: 170px;
}
#site-footer a.logo span {
  display: block;
  color: #fff;
  font-size: 96px;
}
#site-footer ul.topics,
#site-footer #main-menu-footer {
  display: none;
}
@media only screen and (min-width: 1024px) {
  #site-footer .footer-a {
    float: left;
    width: 23.07692308%;
    margin: 0 0 36px;
  }
  #site-footer #nav-footer {
    float: right;
    width: 74.35897436%;
    margin: 0 0 36px;
  }
  #site-footer ul#main-menu-footer {
    display: block;
    float: left;
    width: 16.09195402%;
    margin: 0 3.44827586% 28px 0;
    padding: 0;
    list-style: none;
  }
  #site-footer ul#main-menu-footer li {
    margin: 0 0 12px;
    padding: 0;
  }
  #site-footer ul#main-menu-footer li a {
    display: block;
    text-transform: uppercase;
    font: 900 13px/21px 'Lato', sans-serif;
  }
  #site-footer ul.topics {
    display: block;
    float: left;
    width: 49.42528736%;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
  }
  #site-footer ul.topics li {
    float: left;
    margin: 0 6.97674419% 12px 0;
    padding: 0;
    width: 43.02325581%;
  }
  #site-footer ul.topics li a {
    color: #b5b4be;
    display: block;
  }
  #site-footer ul.topics li a:hover {
    color: #1fd26a;
  }
  #site-footer .nav-aux {
    float: left;
  }
}
