@charset "UTF-8";
@font-face {
  font-family: 'Futura-Book';
  src: url("../webfonts/futura-book.woff2") format("woff2"), url("../webfonts/futura-book.woff") format("woff"); }

@font-face {
  font-family: 'Futura-Medium';
  src: url("../webfonts/futura-medium.woff2") format("woff2"), url("../webfonts/futura-medium.woff") format("woff"); }

html {
  font-size: 18px;
  font-weight: 300;
  font-family: 'Futura-Book', sans-serif; }
  @media screen and (max-width: 1400px) {
    html {
      font-size: 16px; } }
  @media screen and (max-width: 700px) {
    html {
      font-size: 14px; } }

body {
  line-height: 1;
  font-family: 'Futura-Book', sans-serif; }

img {
  max-width: 100%; }

p, h5, li {
  color: #4a4e4e;
  font-size: 1.4rem;
  line-height: 1.3; }

h1, h2, h3, h4, h5, h6 {
  color: #4a4e4e;
  font-family: 'Futura-Medium', sans-serif !important;
  font-weight: normal;
  margin-bottom: 0; }

h1 {
  font-size: 4rem;
  line-height: 1.1; }
  @media screen and (max-width: 1100px) {
    h1 {
      font-size: 3rem; } }

h2 {
  font-size: 3rem; }

h3 {
  font-size: 2rem; }

h4 {
  font-size: 1.4rem;
  color: black;
  margin-bottom: .5rem; }

.container {
  width: 80%;
  max-width: 1400px; }

.container-small {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto; }
  @media screen and (max-width: 1100px) {
    .container-small {
      width: 90%; } }

#content-wrapper {
  padding-top: 4.5rem; }

.content {
  padding: 5rem 0; }

.content-title {
  margin-bottom: 5rem;
  text-transform: uppercase;
  color: black; }

a {
  text-decoration: none;
  color: #828282; }
  a:hover {
    color: #4a4e4e;
    text-decoration: none; }

img {
  max-width: 100%; }

.content ul {
  margin-left: 1.25rem;
  padding-left: 0;
  list-style: none; }
  .content ul > li::before {
    content: "\2022";
    /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #d20a10;
    /* Change the color */
    display: inline-block;
    /* Needed to add space between the bullet and the text */
    width: 0.5rem;
    /* Also needed for space (tweak if needed) */
    margin-left: -1.5rem;
    /* Also needed for space (tweak if needed) */
    margin-right: 1rem; }
  .content ul > li > ul {
    list-style: none; }
    .content ul > li > ul > li::before {
      content: "–";
      /* Add content: \2022 is the CSS Code/unicode for a bullet */
      color: #4a4e4e;
      /* Change the color */
      display: inline-block;
      /* Needed to add space between the bullet and the text */
      width: 0.5rem;
      /* Also needed for space (tweak if needed) */
      margin-left: -1rem;
      /* Also needed for space (tweak if needed) */
      margin-right: 1rem; }

.red {
  color: #d20a10; }

.green {
  color: #0ad210; }

.grayLight {
  color: #828282; }

.background-grayLight {
  background-color: #e9e9e9; }

.black {
  color: black; }

.center h1, .center h2, .center h3 {
  text-align: center; }

.contact img {
  float: left;
  margin-right: 1rem;
  max-width: 250px; }
  @media screen and (max-width: 768px) {
    .contact img {
      float: none;
      clear: both;
      padding-bottom: 2rem;
      display: block; } }

input[type="text"] {
  font-size: 1rem;
  padding: 0.3rem 0.5rem;
  color: #4a4e4e;
  border: 1px solid #828282;
  background-color: #fafafa;
  width: 100%; }

.btn {
  display: inline-block;
  background: white;
  color: #4a4e4e;
  border-radius: 20px;
  padding: 0.5rem 2.5rem;
  margin-top: 1rem;
  font-size: 1.2rem; }

.btn-2 {
  display: inline-block;
  background: #4a4e4e;
  color: white;
  border-radius: 20px;
  padding: 0.5rem 2.5rem;
  margin-top: 1rem;
  font-size: 1.2rem; }
  .btn-2:hover {
    color: white; }

header {
  background-color: white;
  height: 4.5rem;
  position: fixed;
  width: 100%;
  z-index: 1000; }
  header #logo {
    display: inline-block;
    float: left; }
    header #logo img {
      height: 3rem;
      margin: 0.75rem 0; }
  header nav {
    margin-top: 2rem;
    display: inline-block;
    float: left; }
    header nav > ul {
      margin-bottom: 0; }
      header nav > ul > li {
        display: inline-block;
        height: 2.5rem;
        margin-left: 2rem;
        text-transform: uppercase;
        position: relative; }
        header nav > ul > li:hover ul {
          display: block; }
        header nav > ul > li.active > a {
          color: #828282; }
        header nav > ul > li a {
          display: block;
          font-family: 'Futura-Medium', sans-serif;
          color: #4a4e4e;
          text-decoration: none;
          font-size: 1rem;
          letter-spacing: 0.05rem; }
          header nav > ul > li a:hover {
            color: #828282; }
        header nav > ul > li > ul {
          display: none;
          position: absolute;
          background-color: #4a4e4e;
          z-index: 100;
          top: 2.5rem;
          left: -2rem;
          padding: 1rem 2rem;
          width: 20rem; }
          header nav > ul > li > ul > li {
            display: block;
            width: 100%;
            border-bottom: 1px solid white;
            margin: 0;
            text-transform: none;
            padding-bottom: 0.5rem;
            margin-bottom: 0.5rem; }
            header nav > ul > li > ul > li a {
              color: white; }
  header .hamburger {
    display: none; }
  @media screen and (max-width: 900px) {
    header nav {
      display: none;
      background-color: #4a4e4e;
      margin: 0;
      position: absolute;
      top: 4.5rem;
      right: 0; }
      header nav > ul {
        padding: 0;
        margin: 1rem 0.5rem; }
        header nav > ul > li {
          float: none;
          display: block;
          padding: 0;
          margin: 0 0 0.4rem 0;
          height: auto; }
          header nav > ul > li > a {
            display: block;
            padding: 0.4rem 0.8rem 0 0.8rem;
            margin: 0;
            color: white;
            font-size: 1.1rem; }
          header nav > ul > li > ul {
            display: block;
            padding: 0;
            margin: 0;
            position: unset; }
            header nav > ul > li > ul > li {
              display: block;
              padding: 0;
              margin: 0 0 0 1.2rem;
              width: auto; }
              header nav > ul > li > ul > li > a {
                padding: 0.4rem 0.8rem 0 0;
                margin: 0;
                font-size: 1.1rem; }
    header .hamburger {
      float: right;
      display: block;
      margin-top: 0.9rem;
      padding: 0.5rem 1rem;
      position: relative;
      border-radius: 5px;
      border: 1px solid #4a4e4e;
      cursor: pointer; }
      header .hamburger .line {
        width: 1.6rem;
        height: 3px;
        background-color: #4a4e4e;
        display: block;
        margin: 0.3rem auto; } }

.banner {
  background-image: url("/assets/img/header.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat; }
  .banner#banner-small {
    height: 250px; }
    @media screen and (max-width: 820px) {
      .banner#banner-small {
        height: 150px; } }
  .banner#banner-with-text {
    height: 500px; }
    @media screen and (max-width: 1140px) {
      .banner#banner-with-text {
        height: 300px; }
        .banner#banner-with-text #banner-text-container {
          padding-top: 3rem; } }
    @media screen and (max-width: 500px) {
      .banner#banner-with-text {
        height: 350px; } }
    .banner#banner-with-text #banner-text-container {
      margin-left: 28%;
      padding-top: 6rem; }
      @media screen and (max-width: 1140px) {
        .banner#banner-with-text #banner-text-container {
          padding-top: 3.5rem; } }
      @media screen and (max-width: 820px) {
        .banner#banner-with-text #banner-text-container {
          margin-left: 15%; } }
      @media screen and (max-width: 500px) {
        .banner#banner-with-text #banner-text-container {
          padding-top: 2rem; } }
      .banner#banner-with-text #banner-text-container #banner-text {
        border-left: white solid 2px;
        padding: 0 0 0 1rem;
        margin-bottom: 20px; }
        .banner#banner-with-text #banner-text-container #banner-text .head {
          color: #4a4e4e;
          font-size: 3.2rem;
          margin-bottom: 0.5rem;
          line-height: 1;
          font-family: 'Futura-Medium', sans-serif; }
        .banner#banner-with-text #banner-text-container #banner-text p {
          color: #d20a10;
          margin-top: 0.5rem;
          margin-bottom: 0;
          font-family: 'Futura-Medium', sans-serif; }

.news-text {
  border-left: 2px solid white;
  position: relative;
  padding-bottom: 3rem; }
  .news-text a.btn, .news-text a.btn-2 {
    position: absolute;
    bottom: 0; }

.article {
  border-bottom: 1px solid #4a4e4e;
  padding-bottom: 2rem;
  margin-bottom: 2rem; }

.kachel {
  border: #828282 2px solid;
  margin: 0 0.5rem 3rem 0.5rem; }
  .kachel img {
    width: 100%; }
  .kachel div {
    padding: 1rem;
    color: #828282; }
    .kachel div h4 {
      min-height: 3.5rem;
      color: #828282; }
    .kachel div p {
      min-height: 7rem;
      color: #828282; }
    .kachel div a {
      color: #828282;
      font-size: 1.4rem;
      line-height: 1.3;
      font-family: 'Futura-Medium', sans-serif; }
      .kachel div a:hover {
        color: #4a4e4e; }

.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -1rem; }
  .team .coworker {
    flex: 0 0 30%;
    flex-direction: row;
    margin: 0 1.5% 2.5rem 1.5%; }
    @media screen and (max-width: 800px) {
      .team .coworker {
        flex: 0 0 47%; } }
    @media screen and (max-width: 567px) {
      .team .coworker {
        flex: 0 0 100%;
        margin: 0 0 2.5rem 0; } }
    .team .coworker img {
      width: 100%;
      max-width: 100%; }
    .team .coworker .coworker-info {
      margin-top: 20px;
      text-align: center;
      color: #4a4e4e; }
      .team .coworker .coworker-info h4 {
        color: #4a4e4e; }
    .team .coworker .info {
      font-size: 1rem;
      overflow-wrap: anywhere; }
  .team .filter-info {
    text-align: center;
    flex: 0 0 100%; }

.filter, .anchor {
  background-color: #e9e9e9;
  padding: 2.5rem; }
  .filter p, .anchor p {
    font-size: 1.3rem; }
  .filter .active-filter, .anchor .active-filter {
    color: #4a4e4e; }

.box {
  width: 100%;
  border-radius: 50px;
  background-color: white;
  margin: 4rem 0; }
  .box .box-image {
    float: left;
    border-radius: 50px;
    height: 15rem;
    width: 15rem; }
  .box h4 {
    font-size: 1.75rem;
    float: left;
    margin: 5.5rem 2rem 2rem 2rem;
    max-width: 60%; }
  .box .box-text {
    clear: both;
    margin-top: 1rem;
    text-align: center;
    padding: 2rem; }

@media screen and (max-width: 1200px) {
  .box .box-image {
    float: none;
    display: block;
    margin: 0 auto; }
  .box h4 {
    max-width: 100%;
    text-align: center; } }

footer {
  background-color: #e9e9e9;
  padding: 70px 0; }
  footer p {
    color: #828282;
    font-size: 0.9rem;
    line-height: 1.2;
    margin-bottom: 0.3rem; }
    @media screen and (max-width: 768px) {
      footer p {
        font-size: 1.1rem;
        margin-bottom: 0.6rem; } }
  footer a {
    color: #4a4e4e; }
    footer a:hover, footer a:focus {
      color: #828282; }
  @media screen and (max-width: 1540px) and (min-width: 1200px) {
    footer .line-break {
      display: block; } }

.error h2 {
  display: inline-block;
  padding-right: 12px;
  animation: type .5s alternate infinite; }

@keyframes type {
  from {
    box-shadow: inset -3px 0px 0px #4a4e4e; }
  to {
    box-shadow: inset -3px 0px 0px transparent; } }

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