@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,300i,400,400i,700,700i&subset=latin-ext");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:200,200i,300,300i,400,400i,700,700i&subset=latin-ext");
* {
  box-sizing: border-box;
}

body, html {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 300;
}

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.grid-overlay {
  position: relative;
}
.grid-overlay > * {
  z-index: 2;
}
.grid-overlay::before {
  content: "";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAE0lEQVQYV2NkYGD4D8QMjFAGIwATGwICZqVSFQAAAABJRU5ErkJggg==");
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.header {
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header-bar {
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.header-logo-image {
  transition: all 0.3s;
  height: 5rem;
  padding: 0.8rem 0 0.5rem 0;
}

@media screen and (min-width: 1030px) {
  .header-logo-image {
    padding: 1rem 0 0.2rem 0;
  }

  .slim {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
  .slim .header-logo-image {
    height: 3.4rem;
    padding: 5px 0 0 0;
  }
  .slim .header-bar {
    background: #333333;
  }
  .slim .menu-main-item {
    padding: 1rem 10px !important;
    font-size: 90% !important;
  }
  .slim .menu-main-item a {
    font-size: 90% !important;
  }
  .slim .menu-secondary-item {
    padding: 4px 8px 0 8px !important;
    font-size: 90% !important;
  }
}
.menu-item a, .menu-item a:visited {
  color: #ececec;
}
.menu-item a:hover, .menu-item a:active, .menu-item a:focus, .menu-item a:visited:hover, .menu-item a:visited:active, .menu-item a:visited:focus {
  color: #ececec;
}

.nav-mobile {
  display: none;
  position: absolute;
  height: 100vh;
  overflow-y: scroll;
  top: 100%;
  color: #ececec;
  font-size: 1.4rem;
  width: 100%;
  background: #434343;
}
.nav-mobile .menu-mobile-item {
  transition: all 0.3s;
  display: block;
  text-align: center;
  padding: 1rem 0 0 0;
  min-height: 4rem;
}
.nav-mobile .menu-mobile-item a {
  color: #ececec;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 300;
}
.nav-mobile .menu-mobile-item:hover, .nav-mobile .menu-mobile-item:focus, .nav-mobile .menu-mobile-item:active {
  background-color: #019fcf;
}
.nav-mobile .menu-mobile-dropdown {
  display: none;
  background-color: #2a2a2a;
  overflow: hidden;
  margin-top: 1rem;
}
.nav-mobile .menu-mobile-dropdown-item {
  transition: all 0.3s;
  display: block;
  padding: 1rem 0 0 0;
  min-height: 4rem;
}
.nav-mobile .menu-mobile-dropdown-item:hover, .nav-mobile .menu-mobile-dropdown-item:focus, .nav-mobile .menu-mobile-dropdown-item:active {
  background-color: #019fcf;
}

.menu-mobile-column-header {
  border-bottom: 1px solid #434343;
  display: block;
  padding-bottom: 1rem;
}

.menu-toggle {
  color: #e5e5e5;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 300;
  padding: 1em;
  vertical-align: top;
}
.menu-toggle .bars {
  display: inline-block;
  margin-left: 1rem;
}
.menu-toggle .bar {
  background-color: #e5e5e5;
  height: 2px;
  margin: 5px 0 1px;
  width: 1.2rem;
}
.menu-toggle:hover, .menu-toggle:focus, .menu-toggle:active {
  background-color: #2e2e2e;
}

@media screen and (min-width: 1030px) {
  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none;
  }
}
.nav-main {
  transition: all 0.3s;
  display: none;
  text-align: right;
  color: #ececec;
  font-size: 1.4rem;
  width: 70%;
}
.nav-main .menu-main-item {
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  padding: 2rem 10px 2rem 10px;
  border-bottom: 3px solid transparent;
}
.nav-main .menu-main-item a {
  transition: border-color 0.3s;
  color: #ececec;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 300;
}
.nav-main .menu-main-item a:hover, .nav-main .menu-main-item a:focus, .nav-main .menu-main-item a:active {
  color: #ececec;
}
.nav-main .menu-main-item .menu-main-dropdown {
  max-height: 0;
  overflow: hidden;
}
.nav-main .menu-main-item .menu-main-dropdown a {
  font-size: 1rem;
}
.nav-main .menu-main-item:hover, .nav-main .menu-main-item:focus, .nav-main .menu-main-item:active {
  border-color: #019fcf;
}
.nav-main .menu-main-item:hover .menu-main-dropdown, .nav-main .menu-main-item:focus .menu-main-dropdown, .nav-main .menu-main-item:active .menu-main-dropdown {
  display: block;
  max-height: 1000%;
}
.nav-main .menu-main-dropdown {
  transition: all 0.3s;
  background-color: #434343;
  left: 0;
  margin-top: 3px;
  position: absolute;
  text-align: left;
  top: 100%;
  transition: all 0.3s;
  width: 130%;
}
.nav-main .menu-main-dropdown-item {
  transition: all 0.3s;
  display: block;
  padding: 10px;
  line-height: 1rem;
}
.nav-main .menu-main-dropdown-item:hover, .nav-main .menu-main-dropdown-item:focus, .nav-main .menu-main-dropdown-item:active {
  background-color: #019fcf;
}

.offset-item {
  float: left;
}

@media screen and (min-width: 1030px) {
  .nav-main {
    display: block;
  }
}
.nav-secondary {
  background-color: #141414;
  display: none;
  text-align: right;
  color: #ececec;
  z-index: 11;
}
.nav-secondary a {
  color: #ececec;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1rem;
  white-space: nowrap;
}
.nav-secondary .menu-secondary-item {
  transition: all 0.3s;
  position: relative;
  display: inline-block;
  padding: 6px 10px 2px 10px;
  border-bottom: 3px solid transparent;
}
.nav-secondary .menu-secondary-item .menu-secondary-dropdown {
  max-height: 0;
  overflow: hidden;
}
.nav-secondary .menu-secondary-item:hover, .nav-secondary .menu-secondary-item:focus, .nav-secondary .menu-secondary-item:active {
  border-color: #019fcf;
}
.nav-secondary .menu-secondary-item:hover .menu-secondary-dropdown, .nav-secondary .menu-secondary-item:focus .menu-secondary-dropdown, .nav-secondary .menu-secondary-item:active .menu-secondary-dropdown {
  display: block;
  max-height: 100vh;
}
.nav-secondary .menu-secondary-dropdown {
  background-color: #434343;
  left: 0;
  margin-top: 3px;
  position: absolute;
  text-align: left;
  top: 100%;
  transition: all 0.3s;
}
.nav-secondary .menu-secondary-dropdown-item {
  display: block;
}
.nav-secondary .menu-secondary-dropdown-item a {
  font-size: 1rem;
  display: block;
  padding: 6px 10px;
}
.nav-secondary .menu-secondary-dropdown-item:hover, .nav-secondary .menu-secondary-dropdown-item:focus, .nav-secondary .menu-secondary-dropdown-item:active {
  background-color: #019fcf;
}

@media screen and (min-width: 1030px) {
  .nav-secondary {
    display: block;
  }

  .menu-dropdown-multicolumn {
    right: 0;
    left: auto !important;
  }

  .menu-columns-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .menu-column-title {
    border-bottom: 1px solid #666;
    width: 100%;
    padding: 0 10px 10px 10px;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-block;
  }

  .menu-column {
    padding: 1rem;
  }
}
.footer {
  background-color: #3b3b3b;
  color: #d2d2d2;
  z-index: 1;
  position: relative;
}
.footer .footer-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

.footer-sidenav a, .footer-sidenav a:visited {
  color: #fff;
}

.footer-copyright {
  background-color: #434343;
}

@media screen and (min-width: 768px) {
  .footer .footer-inner {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .footer-column {
    flex-basis: 50%;
    text-align: left;
  }
}
@media screen and (min-width: 1030px) {
  .footer-column {
    flex-basis: 25%;
  }
}
.media-contact {
  padding: 2rem 0;
}

.media-contact-inner {
  padding: 1rem 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.media-contact-item {
  display: flex;
  flex-direction: row;
}
.media-contact-item .item-body {
  margin-left: 20px;
}
.media-contact-item i {
  margin-right: 0.5rem;
}
.media-contact-item span {
  display: block;
}
.media-contact-item .name {
  font-weight: 500;
}

.text-only {
  padding: 3rem 0;
  text-align: center;
}

.text-only-modal {
  text-align: right;
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  padding: 10% 20%;
  overflow: auto;
  z-index: 50;
  top: 0;
  left: 0;
  background: white;
  font-family: "Courier", "Courier New";
}
.text-only-modal .modal-content {
  text-align: left;
  border: 1px solid #ccc;
  padding: 2rem;
}

.kontakt__fields-top {
  display: flex;
  flex-direction: column;
}
.kontakt__fields-top span {
  flex-basis: 100%;
  padding: 0.5rem 0;
}
.kontakt__fields-top .kontakt__field-dzial {
  width: 100%;
  font-size: 1rem;
  line-height: 1rem;
  height: 2.5rem;
  background: none;
  color: #666;
  padding: 0 0.5rem;
}

.kontakt__fields-mid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.kontakt__fields-mid span {
  flex-basis: 48%;
  flex-grow: 0;
  padding: 0.5rem 0;
}

.kontakt__field-name,
.kontakt__field-telefon,
.kontakt__field-email,
.kontakt__field-firma {
  width: 100%;
  font-size: 1rem;
  line-height: 1rem;
  padding: 0 0.5rem;
  height: 2.5rem;
}

.kontakt__field-wiadomosc {
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
}

.search-form {
  text-align: center;
  margin-bottom: 2rem;
}

.search-input {
  width: 100%;
  font-size: 1rem;
  line-height: 1rem;
  padding: 0 0.5rem;
  height: 2.5rem;
}

.search-input-button {
  margin: 1rem auto;
}

.nav-main .search-menu-dropdown {
  width: 250px;
  right: 0 !important;
  left: auto;
}
.nav-main .search-menu-dropdown .search-form {
  padding: 10px;
  text-align: left;
  margin-bottom: 0;
}
.nav-main .search-menu-dropdown .search-title {
  font-size: 1rem;
  margin-bottom: 10px;
  display: block;
  border-bottom: 1px solid #888;
}
.nav-main .search-menu-dropdown .search-input {
  height: 2rem;
  width: 75%;
}
.nav-main .search-menu-dropdown .search-input-button {
  width: 20%;
}

#content {
  padding-top: 0;
  padding-bottom: 4rem;
}

.page-title-top-spacer {
  height: 6rem;
}

.wrap {
  padding: 0 2%;
}

.post-wrap {
  padding: 0 2%;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .wrap {
    padding: 0 2%;
  }

  .post-wrap {
    padding: 0 17%;
  }
}
@media screen and (min-width: 1030px) {
  .wrap {
    padding: 0 10%;
  }

  .post-wrap {
    padding: 0 20%;
  }

  .page-title-top-spacer {
    height: 8rem;
  }
}
.posts-pagination {
  padding: 2rem 0;
  text-align: center;
}
.posts-pagination a, .posts-pagination ul, .posts-pagination li {
  display: inline-block;
}

.pagination-loading {
  text-align: center;
  padding: 4rem 0;
  width: 100%;
}
.pagination-loading::after {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  animation: ellipsis steps(4, end) 1200ms infinite;
  content: "…";
  /* ascii code for the ellipsis character */
  width: 0px;
}

@keyframes ellipsis {
  to {
    width: 15px;
  }
}
body {
  font-family: Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 24px;
  color: #777;
}

p {
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.2rem;
  line-height: 3rem;
}

h3 {
  font-size: 1.75rem;
  line-height: 2.4rem;
}

h4 {
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 2rem;
}

h1.section-heading {
  display: block;
  margin: 3rem 0 2rem 0;
  font-weight: 100;
  text-align: center;
  position: relative;
}
h1.section-heading::after {
  display: block;
  height: 3px;
  content: "";
  text-align: center;
  width: 50%;
  background-color: #ececec;
  width: 160px;
  margin: 2rem auto;
}

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

.section-title {
  margin: 2rem 0;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

h2.section-heading {
  font-weight: 200;
}

a, a:visited {
  color: #019fcf;
  text-decoration: none;
}
a:hover, a:focus, a:active, a:visited:hover, a:visited:focus, a:visited:active {
  color: #01afe3;
}

.button, a.button {
  transition: all 0.3s;
  padding: 0.5rem 1rem;
  border: 1px solid #019fcf;
  color: #019fcf;
  cursor: pointer;
  text-transform: uppercase;
  background: none;
}
.button:hover, .button:focus, .button:active, a.button:hover, a.button:focus, a.button:active {
  background-color: #019fcf;
  color: #fff;
}

.button-big, a.button-big {
  padding: 1rem 2rem;
}

.button-controls, a.button-controls {
  border: none;
  border-radius: 2px;
  display: inline-block;
  margin: 1rem;
  padding: 1rem 1.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}
.button-controls:hover, .button-controls:focus, .button-controls:active, a.button-controls:hover, a.button-controls:focus, a.button-controls:active {
  cursor: pointer;
  color: #fff;
  background: black;
}

.flex-card {
  flex-basis: 32%;
  margin: 1rem 0;
}
.flex-card img {
  width: 100%;
}
.flex-card .flex-card__thumbnail {
  z-index: 0;
  position: relative;
}
.flex-card .flex-card__thumbnail::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  transition: all 0.3s;
  pointer-events: none;
}
.flex-card .flex-card__thumbnail:active::after, .flex-card .flex-card__thumbnail:hover::after, .flex-card .flex-card__thumbnail:focus::after {
  background: rgba(255, 255, 255, 0.2);
}
.flex-card .flex-card__body .flex-card__date {
  color: #5b5e60;
  font-size: 0.8rem;
}
.flex-card .flex-card__body .flex-card__title {
  padding: 1rem 0;
  color: #777;
  transition: color, 0.3s;
  display: inline-block;
  line-height: 1.6rem;
}
.flex-card .flex-card__body .flex-card__title:hover, .flex-card .flex-card__body .flex-card__title:focus, .flex-card .flex-card__body .flex-card__title:active {
  color: #969696;
}
.flex-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}

.grid-justified {
  justify-content: space-between;
}

.flex-grid-item {
  flex-basis: 33%;
}

.flex-grid-item-2x {
  flex-basis: 66%;
}

.flex-grid-4 .flex-grid-item {
  flex-basis: 25%;
}
.flex-grid-4 .flex-grid-item-2x {
  flex-basis: 50%;
}

.flex-grid-2 .flex-grid-item {
  flex-basis: 50%;
}

.timeline {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  padding: 0;
}
.timeline::after {
  content: "";
  display: block;
  position: relative;
  width: 100%;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #019fcf;
  width: 12px;
  height: 12px;
  margin: 0 auto;
}
.timeline .timeline__item {
  box-sizing: border-box;
  flex-basis: 50%;
  padding: 1rem 0 0 0;
  position: relative;
  align-self: flex-start;
}
.timeline .timeline__item .item__inner {
  border: 1px solid #d0d0d0;
  padding: 1rem;
}
.timeline .timeline__item .item__title {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1rem;
}
.timeline .timeline__item .item__content {
  margin-top: 1rem;
  font-size: 1rem;
}
.timeline .timeline__item:nth-of-type(1n) {
  text-align: right;
  padding-right: 20px;
  border-right: 1px solid #d0d0d0;
}
.timeline .timeline__item:nth-of-type(1n) .item__inner {
  position: relative;
}
.timeline .timeline__item:nth-of-type(1n) .item__inner::after {
  display: block;
  position: absolute;
  content: "";
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #019fcf;
  width: 8px;
  height: 8px;
  top: 40%;
  right: -27px;
}
.timeline .timeline__item:nth-of-type(2n) {
  text-align: left;
  border-left: 1px solid #d0d0d0;
  border-right: none;
  padding-left: 20px;
  margin-left: -1px;
}
.timeline .timeline__item:nth-of-type(2n) .item__inner {
  position: relative;
}
.timeline .timeline__item:nth-of-type(2n) .item__inner::after {
  display: block;
  position: absolute;
  content: "";
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #019fcf;
  width: 8px;
  height: 8px;
  top: 50%;
  left: -27px;
}
.timeline .timeline__item:nth-of-type(1) {
  padding-top: 0;
  position: relative;
}
.timeline .timeline__item:nth-of-type(1)::after {
  display: block;
  position: absolute;
  content: "";
  z-index: 1;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #019fcf;
  width: 12px;
  height: 12px;
  top: 0;
  right: -7px;
}

.timeline {
  position: relative;
}

.timeline::after {
  position: absolute;
  bottom: 0;
  right: 48%;
  left: 48%;
}

.left-sidebar {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.left-sidebar-widget {
  width: 3rem;
  position: relative;
  font-size: 0;
  line-height: 0;
}
.left-sidebar-widget:hover, .left-sidebar-widget:focus, .left-sidebar-widget:active {
  position: relative;
}
.left-sidebar-widget:hover::after, .left-sidebar-widget:focus::after, .left-sidebar-widget:active::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  transition: all 0.3s;
  pointer-events: none;
}
.left-sidebar-widget:hover:active::after, .left-sidebar-widget:hover:hover::after, .left-sidebar-widget:hover:focus::after, .left-sidebar-widget:focus:active::after, .left-sidebar-widget:focus:hover::after, .left-sidebar-widget:focus:focus::after, .left-sidebar-widget:active:active::after, .left-sidebar-widget:active:hover::after, .left-sidebar-widget:active:focus::after {
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (min-width: 768px) {
  .left-sidebar {
    display: flex;
  }

  .left-sidebar-widget {
    width: 64px;
  }
}
.header-slider {
  position: relative;
  padding-top: 80px;
  margin-bottom: 4rem;
}
.header-slider .header-slider__item {
  background-size: cover;
  background-position: center center;
  min-height: 500px;
  min-height: 70vh;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.header-slider .header-slider__item > * {
  z-index: 2;
}
.header-slider .header-slider__item::before {
  content: "";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAE0lEQVQYV2NkYGD4D8QMjFAGIwATGwICZqVSFQAAAABJRU5ErkJggg==");
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}
.header-slider .header-slider__item.top {
  background-position: top center;
}
.header-slider .header-slider__item.bottom {
  background-position: bottom center;
}
.header-slider .item__content {
  padding: 4rem 0 2rem 0;
  text-align: center;
}
.header-slider .content__title {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  text-shadow: 2px 2px #000;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 200;
  margin-bottom: 1rem;
}
.header-slider .content__text {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  text-shadow: 2px 2px #000;
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 200;
}
.header-slider .button-slider-more {
  border: 1px solid #fff;
  font-weight: 500;
}
.header-slider .button-slider-more:hover, .header-slider .button-slider-more:focus, .header-slider .button-slider-more:active {
  background: #019fcf;
}
@media screen and (min-width: 768px) {
  .header-slider {
    padding-top: 126px;
  }
  .header-slider .content__title {
    font-size: 3rem;
    line-height: 4rem;
  }
  .header-slider .content__text {
    font-size: 2rem;
    line-height: 3rem;
  }
}

.header-slider__nav {
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 1;
}
.header-slider__nav .button-slider-left {
  float: left;
}
.header-slider__nav .button-slider-right {
  float: right;
}
@media screen and (min-width: 768px) {
  .header-slider__nav .button-slider-left {
    margin-left: 5rem;
  }
  .header-slider__nav .button-slider-right {
    margin-right: 5rem;
  }
}

.jobs-wrapper {
  justify-content: flex-start;
}

.job-wrapper {
  border: 1px solid #019fcf;
  flex-basis: 30%;
  padding: 10px;
  margin-right: 3%;
  margin-top: 20px;
}
.job-wrapper a {
  float: right;
  margin-top: 2rem;
}
.job-wrapper a:hover, .job-wrapper a:focus, .job-wrapper a:active {
  text-decoration: underline;
}

.loading-spinner {
  z-index: 10;
  text-align: center;
  padding: 4rem 0;
  width: 100%;
}
.loading-spinner::after {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  animation: ellipsis steps(4, end) 1200ms infinite;
  content: "…";
  /* ascii code for the ellipsis character */
  width: 0px;
}

@keyframes ellipsis {
  to {
    width: 15px;
  }
}
.category-filter-wrapper, .date-filter-wrapper {
  text-align: center;
}

.post-category-filter-apply, .post-date-filter-apply {
  border: 1px solid #ddd;
  line-height: 28px;
  padding: 0.2rem 0.6rem 0.3rem 0.6rem;
}
.post-category-filter-apply:hover, .post-category-filter-apply:focus, .post-category-filter-apply:active, .post-date-filter-apply:hover, .post-date-filter-apply:focus, .post-date-filter-apply:active {
  border-color: #333;
  color: #333;
  cursor: pointer;
}

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  line-height: 2.25px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-search--inline {
  float: left;
}

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 1px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
}

.select2-results__option[aria-selected] {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 1px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #ddd;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 1px;
  cursor: text;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir=rtl] .select2-selection--multiple .select2-search--inline {
  float: right;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #019fcf;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 1px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #019fcf;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: none;
  border: none;
  border-left: none;
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #019fcf;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 1px;
  cursor: text;
  outline: 0;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #019fcf;
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 1px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  float: right;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #019fcf;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option[role=group] {
  padding: 0;
}

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #019fcf;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #019fcf;
}

.section-heading-404 {
  padding: 8rem 0;
}

.post-content-inner {
  padding: 2rem 0;
}

.post-header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
  width: 100%;
  text-align: center;
}

.post-title {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  text-shadow: 2px 2px #000;
  font-size: 3rem;
  line-height: 4rem;
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 4rem;
}

.post-meta {
  color: #5b5e60 !important;
  font-size: 0.8rem;
  padding: 1rem 0;
}
.post-meta span {
  margin-right: 1rem;
}

.post-social-media-inner {
  padding: 1rem 0;
  border-bottom: 1px solid #d2d2d2;
  border-top: 1px solid #d2d2d2;
}

.post-social-media-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.social-media-link {
  display: inline-block;
  position: relative;
  position: relative;
}
.social-media-link::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  transition: all 0.3s;
  pointer-events: none;
}
.social-media-link:active::after, .social-media-link:hover::after, .social-media-link:focus::after {
  background: rgba(255, 255, 255, 0.2);
}
.social-media-link img {
  height: 3rem;
}

.post-footer-image {
  width: 100%;
}

.gallery-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.gallery-grid a {
  flex-grow: 0;
  flex-basis: 33%;
  position: relative;
  padding: 0px;
  margin: 0 0 3px 0;
  line-height: 0;
  position: relative;
}
.gallery-grid a::after {
  background: rgba(1, 159, 207, 0);
  bottom: 0;
  content: " ";
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  pointer-events: none;
  font-family: "FontAwesome";
  color: #fff;
  font-size: 3rem;
}
.gallery-grid a:active::after, .gallery-grid a:hover::after, .gallery-grid a:focus::after {
  background: rgba(1, 159, 207, 0.4);
  content: "\f196";
  opacity: 1;
}
.gallery-grid img {
  width: 100%;
  position: relative;
}

.gallery-single a {
  flex-grow: 1;
  flex-basis: 100%;
}

.related-posts-inner {
  text-align: center;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
}

.related-post {
  flex-basis: 30%;
}
.related-post .related-post-image-container {
  line-height: 0;
  position: relative;
}
.related-post .related-post-image-container::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s;
  pointer-events: none;
}
.related-post .related-post-image-container:active::after, .related-post .related-post-image-container:hover::after, .related-post .related-post-image-container:focus::after {
  background: rgba(0, 0, 0, 0.2);
}
.related-post .related-post-title {
  padding: 1rem 0 2rem 0;
  font-size: 1.4rem;
  color: #5b5e60;
}
.related-post img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .related-posts-inner {
    flex-direction: row;
    text-align: left;
  }
}
.gallery-author {
  display: inline-block;
  padding: 1rem 0;
  text-align: right;
  width: 100%;
}

.fix-flex::after {
  content: "";
  flex-shrink: 1;
  flex-basis: 33%;
}

.prize-wrapper {
  text-align: center;
  padding: 1rem 0 2rem 0;
}

.page-title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  min-height: 80vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.page-title-wrapper > * {
  z-index: 2;
}
.page-title-wrapper::before {
  content: "";
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAE0lEQVQYV2NkYGD4D8QMjFAGIwATGwICZqVSFQAAAABJRU5ErkJggg==");
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}
.page-title-wrapper .page-title {
  margin-top: 4rem;
  font-size: 3rem;
  line-height: 2rem;
  font-weight: 100;
  margin-bottom: 2rem;
  color: #fff;
  text-shadow: 2px 2px 2px #333;
}
@media screen and (min-width: 1030px) {
  .page-title-wrapper .page-title {
    font-size: 4rem;
    line-height: 4rem;
  }
}
.page-title-wrapper .page-title-description {
  font-size: 1rem;
  line-height: 1.5rem;
  color: #fff;
  text-shadow: 2px 2px 2px #333;
}
@media screen and (min-width: 1030px) {
  .page-title-wrapper .page-title-description {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
@media screen and (min-width: 1030px) {
  .page-title-wrapper {
    padding: 0 6rem;
  }
}

.person {
  padding-top: 2rem;
}

.person-name {
  font-size: 2.5rem;
  text-align: center;
}

.person-title {
  text-align: center;
  font-size: 1.5rem;
}

.person-description {
  padding-top: 1rem;
}

.person__image {
  padding: 0 1rem;
}
.person__image img {
  width: 100%;
}

.person__bio {
  padding: 0 1rem;
}

.posts-grid {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .posts-grid {
    flex-direction: row;
  }
}
.icons-list {
  display: flex;
  flex-direction: column;
  padding: 2rem 0;
}
.icons-list .icons-list__item {
  display: flex;
  flex-direction: row;
  padding: 1rem 0;
}
.icons-list .icons-list__item .item__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-basis: 2rem !important;
  flex-shrink: 0;
  flex-grow: 0;
  height: 2rem;
  background: #019fcf;
  color: #fff;
  z-index: 1;
}
.icons-list .icons-list__item .item__icon .fa-2x {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .icons-list .icons-list__item .item__icon {
    height: 5rem;
    flex-basis: 5rem !important;
  }
  .icons-list .icons-list__item .item__icon .fa-2x {
    font-size: 2rem;
  }
}
.icons-list .icons-list__item .item__content {
  padding: 0 0 0 2rem;
}
.icons-list .icons-list__item .item__title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.icons-list .icons-list__item .item__text {
  font-size: 1rem;
}

.icons-list--connected .icons-list__item .item__content {
  position: relative;
}
.icons-list--connected .icons-list__item .item__content::after {
  display: block;
  position: absolute;
  content: "";
  border-left: 1px dashed #777;
  height: 100%;
  z-index: 0;
  top: 2rem;
  left: -1rem;
}
@media screen and (min-width: 768px) {
  .icons-list--connected .icons-list__item .item__content {
    position: relative;
  }
  .icons-list--connected .icons-list__item .item__content::after {
    display: block;
    position: absolute;
    content: "";
    border-left: 1px dashed #777;
    height: 100%;
    z-index: 0;
    top: 2rem;
    left: -2.5rem;
  }
}
.icons-list--connected .icons-list__item:last-of-type .item__content::after {
  display: none;
}

.section-heading {
  font-weight: 200;
}

/*
    Style for all templates
*/
.post-grid-wrapper {
  width: 100%;
}

/*
    Style for mormal template
*/
.post-grid-normal .post-grid-item-wrapper {
  width: 100%;
  padding: 20px 10px;
  float: left;
}
.post-grid-normal .post-grid-item {
  width: 100%;
  min-height: 300px;
}
.post-grid-normal .post-grid-item .post-grid-item-image {
  position: relative;
}
.post-grid-normal .post-grid-item .post-grid-item-image a {
  display: block;
  height: 250px;
  width: 100%;
  background-size: cover;
  background-position: center center;
}
.post-grid-normal .post-grid-item .post-grid-item-image .post-grid-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s ease;
  background: rgba(0, 140, 186, 0);
}
.post-grid-normal .post-grid-item .post-grid-item-image .post-grid-image-overlay .post-grid-image-overlay-icon {
  color: #fff;
  position: absolute;
  opacity: 0;
  top: 50%;
  left: 50%;
  transition: 0.4s ease;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.post-grid-normal .post-grid-item .post-grid-item-image:hover .post-grid-image-overlay, .post-grid-normal .post-grid-item .post-grid-item-image:focus .post-grid-image-overlay {
  color: #FFF;
  background: rgba(0, 140, 186, 0.8);
}
.post-grid-normal .post-grid-item .post-grid-item-image:hover .post-grid-image-overlay .post-grid-image-overlay-icon, .post-grid-normal .post-grid-item .post-grid-item-image:focus .post-grid-image-overlay .post-grid-image-overlay-icon {
  opacity: 1;
}
.post-grid-normal .post-grid-item .post-grid-item-content h3 {
  font-weight: 100;
  color: #333;
  font-size: 1.5rem;
}
.post-grid-normal .post-grid-item .post-grid-item-content h3 a {
  display: inline-block;
  line-height: 1.6rem;
  margin-top: 1rem;
}

/*
    Style for photo wall
*/
.post-grid-photo-wall .post-grid-item-wrapper {
  width: 100%;
  padding: 0;
  float: left;
}
.post-grid-photo-wall .post-grid-item {
  width: 100%;
  min-height: 300px;
}
.post-grid-photo-wall .post-grid-item .post-grid-item-image {
  position: relative;
}
.post-grid-photo-wall .post-grid-item .post-grid-item-image a {
  display: block;
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center center;
}
.post-grid-photo-wall .post-grid-item .post-grid-item-image .post-grid-item-title {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  margin-top: 4rem;
  padding: 0 20px;
  transition: 0.4s ease;
  color: rgba(255, 255, 255, 0);
}
.post-grid-photo-wall .post-grid-item .post-grid-item-image .post-grid-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: 0.4s ease;
  background: rgba(0, 140, 186, 0);
}
.post-grid-photo-wall .post-grid-item .post-grid-item-image .post-grid-image-overlay .post-grid-image-overlay-icon {
  color: #fff;
  position: absolute;
  opacity: 0;
  top: 70%;
  left: 50%;
  transition: 0.4s ease;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.post-grid-photo-wall .post-grid-item .post-grid-item-image:hover .post-grid-image-overlay, .post-grid-photo-wall .post-grid-item .post-grid-item-image:focus .post-grid-image-overlay {
  color: #FFF;
  background: rgba(0, 140, 186, 0.8);
}
.post-grid-photo-wall .post-grid-item .post-grid-item-image:hover .post-grid-image-overlay .post-grid-image-overlay-icon, .post-grid-photo-wall .post-grid-item .post-grid-item-image:focus .post-grid-image-overlay .post-grid-image-overlay-icon {
  opacity: 1;
}
.post-grid-photo-wall .post-grid-item .post-grid-item-image:hover .post-grid-item-title, .post-grid-photo-wall .post-grid-item .post-grid-item-image:focus .post-grid-item-title {
  color: white;
}

.post-grid-button-wrapper {
  width: 100%;
  padding: 30px;
  text-align: center;
  clear: both;
}
.post-grid-button-wrapper .post-grid-button {
  color: #03A9F4;
  transition: 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid #03A9F4;
}
.post-grid-button-wrapper .post-grid-button:hover, .post-grid-button-wrapper .post-grid-button:focus {
  background-color: #03A9F4;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .post-grid-button-wrapper {
    padding: 60px;
  }
}

/*
 * HACK, line height of fa-arrow right was not centering it in it's stack.
 */
.fix-fa-line-height {
  line-height: 2.5rem !important;
}

.post-grid-item-content h3 a {
  color: #5b5e60;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 300;
}
.post-grid-item-content h3 a:hover, .post-grid-item-content h3 a:focus, .post-grid-item-content h3 a:active {
  color: #676b6d;
}

.hidden {
  display: none;
}

/*# sourceMappingURL=styles.css.map */
