@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  src: local("IBM Plex Sans"), url("../fonts/IBMPlexSansVar-Roman.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 400;
  src: local("IBM Plex Sans"), url("../fonts/IBMPlexSansVar-Italic.woff2") format("woff2");
}
@font-face {
  font-family: "Akrobat";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/Akrobat-ExtraBold.woff2") format("woff2");
}
* {
  box-sizing: border-box;
}

html, body {
  background: #ffffff;
  color: #111111;
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  margin: 0 auto;
  padding: 0;
  scroll-behavior: smooth;
}
html.menuVisible main, html.menuVisible footer, body.menuVisible main, body.menuVisible footer {
  overflow: hidden;
  max-height: 0;
}
html main, body main {
  position: relative;
}

header {
  background-color: #111111;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  color: #ffffff;
  position: relative;
}
@media (max-width: 1024px) {
  header {
    background: none;
  }
}
header .content {
  margin: 0 auto;
  padding: 2rem 0 10rem 0;
  max-width: 1170px;
  background-size: 0;
  background-repeat: no-repeat;
  background-position-x: -100vh;
}
@media (max-width: 1170px) {
  header .content {
    padding: 2rem 2rem 4rem 2rem;
  }
}
@media (max-width: 1024px) {
  header .content {
    background-size: cover;
    background-position: center center;
  }
}
header .content .menu-mobile {
  color: #ffffff;
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 3;
  display: none;
}
@media (max-width: 1024px) {
  header .content .menu-mobile {
    display: block;
  }
}
header .content .menu-mobile img {
  width: 3rem;
  height: 3rem;
}
header h2 {
  border: none;
  font-size: 3.5rem;
  line-height: 4rem;
  margin: 5rem 0 1.5rem 0;
  padding: 0;
  width: 50%;
}
@media (max-width: 1024px) {
  header h2 {
    font-size: 2.5rem;
    line-height: 3rem;
    width: 100%;
  }
}
header p {
  margin: 0 0 2rem 0;
  width: 50%;
}
@media (max-width: 1024px) {
  header p {
    width: 100%;
  }
}
header a.more {
  background: #E0201D;
  color: #ffffff;
  padding: 1rem 1.5rem;
}
header a.more:after {
  display: none;
}
header a.more:hover {
  color: #ffffff;
  background: #c91d1a;
}
header .navigation,
header .navigation-sticky {
  background: linear-gradient(90deg, transparent 50%, #111111 50%);
}
header nav {
  background: #111111;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1170px;
}
@media (max-width: 1024px) {
  header nav {
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.17, 0.67, 0.47, 0.83);
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
  }
  header nav.active {
    max-height: 1000vh;
  }
}
header nav .icons {
  line-height: 0;
}
header nav .down {
  background: #2F2F2F url("../images/chevron-down.svg") center center no-repeat;
  width: 5rem;
  height: 5rem;
  display: inline-block;
}
header nav .down:hover {
  background-color: #222222;
}
header nav .home {
  background: #111111 url("../images/icon-home.svg") center center no-repeat;
  width: 5rem;
  height: 5rem;
  display: inline-block;
}
header nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  header nav ul {
    flex-direction: column;
  }
}
header nav ul li {
  position: relative;
}
header nav ul li:hover .submenu {
  pointer-events: all;
  opacity: 1;
}
header nav ul a {
  height: 5rem;
  margin: 0 1rem;
  padding: 0 0.5rem;
  display: inline-block;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #ffffff;
}
header nav ul a span {
  border-bottom: 2px solid transparent;
}
header nav ul a.active span, header nav ul a:hover span {
  border-bottom: 2px solid #E0201D;
}
header nav .submenu {
  background: #111111;
  flex-direction: column;
  overflow: hidden;
  position: absolute;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.47, 0.83);
  pointer-events: none;
  opacity: 0;
}
@media (max-width: 1024px) {
  header nav .submenu {
    height: auto;
    position: static;
    padding: 0 0 0 3rem;
    opacity: 1;
    pointer-events: all;
  }
}
header nav .submenu a {
  height: auto;
  margin: 0;
  padding: 0.75rem 1.5rem;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  header nav .submenu a {
    padding: 1.5rem;
  }
}
header nav .submenu a:last-child {
  padding-bottom: 1.25rem;
}
header .navigation {
  visibility: visible;
}
header .navigation-sticky {
  display: none;
}
header .navigation-sticky .logo {
  height: 3rem;
  margin: 1rem 0;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.47, 0.83);
  width: auto;
}
header .navigation-sticky.sticky-home .logo {
  margin-left: 1.5rem;
}
header.fixed .navigation-sticky {
  display: block;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}
header.fixed .navigation-sticky .logo {
  opacity: 1;
}
header.fixed .navigation {
  visibility: hidden;
}

a[name] {
  position: relative;
  top: -8.5rem;
}

a[name=top] {
  position: absolute;
  top: -9rem;
  left: 0;
  right: 0;
  height: 0;
}

a[name=team] {
  position: relative;
  top: 1rem;
}

section {
  margin: 4rem auto;
  max-width: 1170px;
}
@media (max-width: 1170px) {
  section {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  section {
    max-width: 100vw;
    padding: 1.5rem;
  }
}

h1 {
  font-family: "Akrobat";
  text-transform: uppercase;
  font-size: 3.5rem;
  line-height: 4rem;
  margin: 0 0 2.5rem 0;
  padding: 0 0 0 1.5rem;
  border-left: 4px solid #E0201D;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}

h2 {
  font-family: "Akrobat";
  text-transform: uppercase;
  font-size: 2rem;
  margin: 0 0 1.5rem 0;
  padding: 0;
  line-height: 1.2;
  padding: 0 0 0 1rem;
  border-left: 4px solid #E0201D;
}

h3 {
  font-family: "Akrobat";
  text-transform: uppercase;
  font-size: 2rem;
  margin: 0 0 1.5rem 0;
  padding: 0;
  line-height: 1.2;
}

h4 {
  font-family: "Akrobat";
  text-transform: uppercase;
  font-size: 1.625rem;
  margin: 0 0 1.5rem 0;
  padding: 0;
  line-height: 1.4;
}

p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

blockquote {
  border-left: 0.25rem solid #E0201D;
  padding: 0 0 0 2rem;
}
blockquote p {
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}
@media (max-width: 768px) {
  blockquote p {
    font-size: 1.5rem;
  }
}

cite {
  color: #6d6d6d;
  font-family: "Akrobat";
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  padding: 0 0 0 2rem;
  text-transform: uppercase;
}

em > a,
a.button {
  background: #E0201D;
  color: #ffffff;
  display: inline-block;
  font-size: 0.9375rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  font-style: normal;
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.47, 0.83);
}
em > a:hover,
a.button:hover {
  background: #c91d1a;
}

a.more {
  color: #6d6d6d;
  font-size: 1.125rem;
  line-height: 1.6;
  text-decoration: none;
}
a.more:hover {
  color: #535353;
}
a.more:after {
  content: " ";
  display: inline-block;
  background: url("../images/chevron-more.svg") center center no-repeat;
  width: 1rem;
  height: 1rem;
  position: relative;
  top: 2px;
  left: 4px;
}

section.gradient,
.background-gradient {
  background: linear-gradient(0deg, #f2f2f2, #ffffff);
  border-bottom: 1px solid #ababab;
  max-width: none;
}
section.gradient > div,
.background-gradient > div {
  max-width: 1170px;
  margin: 6rem auto 8rem auto;
}

section.gradient-reverse {
  background: linear-gradient(180deg, #f2f2f2, #ffffff);
  border-top: 2px solid #ababab;
  max-width: none;
}
section.gradient-reverse > div {
  max-width: 1170px;
  margin: 8rem auto 6rem auto;
}
@media (max-width: 768px) {
  section.gradient-reverse > div {
    margin: 4rem auto 0 auto;
  }
}

section.default h1, section.default p {
  width: 62%;
}
@media (max-width: 1024px) {
  section.default img {
    width: 100%;
    height: auto;
  }
}
@media (max-width: 768px) {
  section.default h1, section.default p {
    width: 100%;
  }
}

section.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 2rem;
}
@media (max-width: 768px) {
  section.gallery {
    grid-template-columns: 1fr;
  }
}
section.gallery img {
  width: 100%;
  height: auto;
}

section.benefits {
  background: #e6e6e6;
  display: grid;
  grid-gap: 6rem;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  padding: 4.5rem;
}
@media (max-width: 768px) {
  section.benefits {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}

section.portfolio {
  background: linear-gradient(0deg, transparent 49.5%, #e6e6e6 49.5%, #e6e6e6 50%, transparent 50%), linear-gradient(90deg, transparent 49.85%, #e6e6e6 49.85%, #e6e6e6 50%, transparent 50%);
  border-bottom: 2px solid #e6e6e6;
  border-top: 1px solid #e6e6e6;
  margin: -4rem 0;
  max-width: none;
}
@media (max-width: 1170px) {
  section.portfolio {
    padding: 0;
  }
}
@media (max-width: 1024px) {
  section.portfolio {
    background: #ffffff;
    margin: 0;
    border: none;
    max-width: none;
  }
}
section.portfolio .container {
  display: grid;
  grid-gap: 0;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  max-width: none;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  section.portfolio .container {
    grid-template-columns: 1fr;
  }
}
section.portfolio .item a {
  padding: 4rem 3rem;
  text-decoration: none;
  color: #111111;
  display: block;
}
section.portfolio .item a:hover {
  background: #E0201D;
  color: #ffffff;
}
section.portfolio .item a:hover span {
  color: #ffffff;
}
section.portfolio .item a:hover span:after {
  background: url("../images/chevron-more-white.svg") center center no-repeat;
}
section.portfolio .item span.more {
  color: #6d6d6d;
  font-size: 1.125rem;
  line-height: 1.6;
}
section.portfolio .item span.more:after {
  content: " ";
  display: inline-block;
  background: url("../images/chevron-more.svg") center center no-repeat;
  width: 1rem;
  height: 1rem;
  position: relative;
  top: 2px;
  left: 4px;
}
section.portfolio .item:nth-child(2n+1) div {
  padding-left: calc((100vw - 1170px - 4rem) / 2);
}
@media (max-width: 1170px) {
  section.portfolio .item div {
    padding: 0 !important;
  }
}
@media (max-width: 1024px) {
  section.portfolio .item a {
    padding: 2rem;
    border-bottom: 1px solid #e6e6e6;
  }
  section.portfolio .item a:first-child {
    border-top: 1px solid #e6e6e6;
  }
}

section.quote blockquote {
  margin: 0 8% 0 16%;
  width: 76%;
}
@media (max-width: 768px) {
  section.quote blockquote {
    width: 100%;
    margin: 0;
  }
}
section.quote cite {
  display: block;
  margin: 0 8% 0 16%;
  width: 76%;
}
@media (max-width: 768px) {
  section.quote cite {
    width: 100%;
    margin: 0;
  }
}

section.twocolumn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 2rem;
}
@media (max-width: 768px) {
  section.twocolumn {
    grid-template-columns: 1fr;
  }
}
section.twocolumn .imagecolumn {
  overflow: hidden;
}
section.twocolumn .imagecolumn img {
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.47, 0.83);
}
section.twocolumn .imagecolumn img:hover {
  transform: scale(1.1);
}
section.twocolumn.image-text, section.twocolumn.text-image {
  cursor: pointer;
}
section.twocolumn.image-text:hover .imagecolumn img, section.twocolumn.text-image:hover .imagecolumn img {
  transform: scale(1.1);
}
section.twocolumn.image-text a, section.twocolumn.text-image a {
  color: #6d6d6d;
  font-size: 1.125rem;
  line-height: 1.6;
  text-decoration: none;
}
section.twocolumn.image-text a:hover, section.twocolumn.text-image a:hover {
  color: #E0201D;
}
section.twocolumn.image-text a:hover:after, section.twocolumn.text-image a:hover:after {
  background: url("../images/chevron-more-hover.svg") center center no-repeat;
}
section.twocolumn.image-text a:after, section.twocolumn.text-image a:after {
  content: " ";
  display: inline-block;
  background: url("../images/chevron-more.svg") center center no-repeat;
  width: 1rem;
  height: 1rem;
  position: relative;
  top: 2px;
  left: 4px;
}
section.twocolumn.image-text {
  max-width: none;
}
section.twocolumn.image-text .align-bottom {
  margin-left: 4rem;
}
@media (max-width: 768px) {
  section.twocolumn.image-text .align-bottom {
    margin: 0;
  }
}
section.twocolumn.text-image {
  max-width: none;
}
@media (max-width: 768px) {
  section.twocolumn.text-image .column:first-child {
    order: 2;
  }
}
section.twocolumn.text-image .align-bottom {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  section.twocolumn.text-image .align-bottom {
    margin: 0;
  }
}
section.twocolumn.textleistung {
  grid-gap: 4rem;
}
section.twocolumn.textleistung h2 {
  border: none;
  padding: 0;
}
section.twocolumn.textleistung h2::before {
  content: "";
  display: none;
}
section.twocolumn.twocolumn-leistung {
  grid-gap: 4rem;
}
section.twocolumn.twocolumn-leistung.align-right .column:first-child {
  order: 2;
}
@media (max-width: 768px) {
  section.twocolumn.twocolumn-leistung.align-right .column:first-child {
    order: initial;
  }
}
section.twocolumn.twocolumn-leistung .column {
  align-self: center;
}
section.twocolumn .column h1 {
  padding-right: 6.25rem;
}
@media (max-width: 768px) {
  section.twocolumn .column h1 {
    padding-right: 0;
  }
}
section.twocolumn .column img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
section.twocolumn .column p img {
  width: auto;
  height: auto;
  object-fit: inherit;
}
section.twocolumn .align-bottom {
  display: flex;
  align-items: flex-end;
}
section.twocolumn .align-bottom div {
  padding: 0 1rem;
  max-width: calc((1170px - 2rem) / 2);
  width: 45vw;
}
@media (max-width: 768px) {
  section.twocolumn .align-bottom div {
    width: 100%;
    max-width: none;
  }
}
section.twocolumn blockquote {
  margin: 4rem 0 0 -2rem;
  width: 80%;
}
@media (max-width: 768px) {
  section.twocolumn blockquote {
    margin: 3rem 0 0 0;
    width: 100%;
  }
}
section.twocolumn cite {
  margin: 0 0 4rem 0;
  display: block;
  padding: 0;
}
@media (max-width: 768px) {
  section.twocolumn cite {
    margin: 1rem 0 3rem 0;
  }
}

section.image {
  max-width: none;
}
section.image.align-right {
  text-align: right;
}
section.image img {
  display: inline-block;
  height: auto;
  width: calc(100% - (100% - 1170px)/2);
  max-width: 100%;
}

section.image-tryptych {
  max-width: none;
}
section.image-tryptych .container {
  display: grid;
  grid-gap: 2rem;
  grid-template-areas: "big top" "big bottom";
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  height: auto;
  width: calc(100% - (100% - 1170px)/2);
  max-width: 100%;
}
@media (max-width: 768px) {
  section.image-tryptych .container {
    grid-template-areas: "big" "top" "bottom";
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}
section.image-tryptych img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  section.image-tryptych img {
    width: 100%;
    height: auto;
    object-fit: initial;
  }
}
section.image-tryptych img[data-area=big] {
  grid-area: big;
  min-height: 680px;
}
@media (max-width: 768px) {
  section.image-tryptych img[data-area=big] {
    min-height: auto;
  }
}
section.image-tryptych img[data-area=top] {
  grid-area: top;
}
section.image-tryptych img[data-area=bottom] {
  grid-area: bottom;
}

@media (max-width: 768px) {
  section.teamimage {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  section.team {
    margin-bottom: 0;
  }
  section.team h1 {
    margin-bottom: 0;
  }
}
section.team .teammembers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 2rem;
  margin: 0 0 6rem 0;
}
@media (max-width: 768px) {
  section.team .teammembers {
    grid-template-columns: 1fr;
  }
}
section.team .teammembers img {
  width: 100%;
  height: auto;
  background: #e6e6e6;
}
section.team .teammembers .name {
  font-family: "Akrobat";
  text-transform: uppercase;
  font-size: 1.5rem;
  margin: 1rem 0;
}
section.team .subimage.align-right {
  text-align: right;
}
section.team .subimage img {
  display: inline-block;
  height: auto;
  width: calc(100% - (100% - 1170px)/2);
  max-width: 100%;
}

section.history-teaser {
  text-align: center;
}
section.history-teaser p {
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}
section.history-teaser a {
  background: #E0201D;
  color: #ffffff;
  display: inline-block;
  font-size: 0.9375rem;
  padding: 1rem 1.5rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.47, 0.83);
}
section.history-teaser a:hover {
  background: #c91d1a;
}

section.news-latest .newsitem {
  display: flex;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 768px) {
  section.news-latest .newsitem {
    flex-direction: column;
  }
}
section.news-latest .newsitem:hover img {
  transform: scale(1.1);
}
section.news-latest .newsitem a.more:hover {
  color: #E0201D;
}
section.news-latest .newsitem a.more:hover:after {
  background: url("../images/chevron-more-hover.svg") center center no-repeat;
}
section.news-latest .newsitem img {
  flex: 1 1 50%;
  max-width: 50%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.47, 0.83);
}
@media (max-width: 768px) {
  section.news-latest .newsitem img {
    max-width: none;
    width: 100%;
    height: auto;
  }
}
section.news-latest .newsitem .content {
  background: #e6e6e6;
  flex: 1 1 50%;
  padding: 3rem 3rem 3rem 6rem;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  section.news-latest .newsitem .content {
    padding: 1rem;
  }
}
section.news-latest .newsitem .content time {
  display: block;
  font-size: 1.125rem;
  margin: 0 0 1rem 0;
}

section.news-all .newsitems {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
  grid-gap: 2rem;
}
@media (max-width: 768px) {
  section.news-all .newsitems {
    grid-template-columns: 1fr;
  }
}
section.news-all .newsitem {
  margin: 0 0 2rem 0;
  overflow: hidden;
  line-height: 0;
  cursor: pointer;
}
section.news-all .newsitem:hover img {
  transform: scale(1.1);
}
section.news-all .newsitem img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.47, 0.83);
}
section.news-all .newsitem .content {
  padding: 1.5rem 0 0 0;
  position: relative;
  z-index: 2;
  background: #fff;
  line-height: 1.4;
}
section.news-all .newsitem h4 {
  text-transform: none;
  font-weight: 500;
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
}
section.news-all .newsitem time {
  font-family: "Akrobat";
  display: block;
  font-size: 1.125rem;
  margin: 0 0 1rem 0;
}
section.news-all .newsitem a.more:hover {
  color: #E0201D;
}
section.news-all .newsitem a.more:hover:after {
  background: url("../images/chevron-more-hover.svg") center center no-repeat;
}

section.jobs .joblist {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
  grid-gap: 2rem;
}
@media (max-width: 768px) {
  section.jobs .joblist {
    grid-template-columns: 1fr;
  }
}
section.jobs .job {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
}
section.jobs .job:hover img {
  transform: scale(1.1);
}
section.jobs .job img {
  width: 100%;
  height: auto;
  min-height: 250px;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.47, 0.83);
  cursor: pointer;
}
section.jobs .job .description {
  background: #e6e6e6;
  padding: 2rem;
  flex: 1 1 auto;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
section.jobs .job .more {
  background: #cccccc;
  color: #111111;
  display: block;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
}
section.jobs .job .more:hover {
  background: #E0201D;
  color: #ffffff;
}
section.jobs .job .more:hover:after {
  background: url("../images/chevron-more-white.svg") center center no-repeat;
}

section.contact {
  display: flex;
}
@media (max-width: 768px) {
  section.contact {
    flex-direction: column;
  }
}
section.contact a {
  text-decoration: none;
  color: #111111;
}
section.contact .map {
  background: #e6e6e6;
  flex: 1 1 62%;
}
@media (max-width: 768px) {
  section.contact .map {
    flex: 1 1 auto;
  }
}
section.contact .address {
  flex: 1 1 38%;
  padding: 0 2rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  section.contact .address {
    padding: 0;
    flex: 1 1 auto;
  }
}

section.contact-team .contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 2rem;
}
@media (max-width: 768px) {
  section.contact-team .contacts {
    grid-template-columns: 1fr;
  }
}
section.contact-team .contacts img {
  width: 100%;
  height: 325px;
  object-fit: cover;
  background: #e6e6e6;
}
section.contact-team .contacts p {
  margin: 1rem 0;
}
section.contact-team .contacts a {
  text-decoration: none;
  color: #111111;
}

@media (max-width: 768px) {
  section.timeline {
    padding: 0.75rem;
  }
}
section.timeline .imagegrid .entry {
  display: grid;
  grid-gap: 30px;
  margin: 0 0 30px 0;
}
section.timeline .imagegrid .entry > div {
  min-height: 430px;
  background: #E0201D;
  position: relative;
  line-height: 0;
}
section.timeline .imagegrid .entry .legend {
  background: #ffffff;
  padding: 1rem 2rem;
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: 430px;
  line-height: 1.25;
}
@media (max-width: 1024px) {
  section.timeline .imagegrid .entry .legend {
    right: 20px;
    max-width: auto;
  }
}
section.timeline .imagegrid .entry .legend p {
  margin: 0;
  padding: 0;
}
section.timeline .imagegrid .entry .legend b {
  display: block;
  font-family: "Akrobat";
  font-size: 1.625rem;
  margin: 0 0 0.25rem 0;
}
section.timeline .imagegrid .entry img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}
section.timeline .imagegrid .entry-layout0 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "one";
}
section.timeline .imagegrid .entry-layout1 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "one two";
}
@media (max-width: 768px) {
  section.timeline .imagegrid .entry-layout1 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "one" "two";
  }
}
section.timeline .imagegrid .entry-layout2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "one two" "one three";
}
@media (max-width: 768px) {
  section.timeline .imagegrid .entry-layout2 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: "one" "two" "three";
  }
}
section.timeline .imagegrid .entry-layout3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "one three" "two three";
}
@media (max-width: 768px) {
  section.timeline .imagegrid .entry-layout3 {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: "one" "three" "two";
  }
}
section.timeline .grid {
  display: none;
  grid-template-columns: 12rem auto;
  grid-template-rows: auto;
  grid-gap: 0;
}
@media (max-width: 768px) {
  section.timeline .grid {
    grid-template-columns: 8rem auto;
  }
}
section.timeline .grid .year:first-child {
  position: relative;
}
section.timeline .grid .year:first-child:before {
  content: " ";
  display: inline-block;
  background: url("../images/timeline-top.svg") center center no-repeat;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 12rem;
  top: -5px;
  transform: translateX(-54%);
}
@media (max-width: 768px) {
  section.timeline .grid .year:first-child:before {
    left: 8rem;
  }
}
section.timeline .grid .year.last {
  position: relative;
  padding-bottom: 1rem;
}
section.timeline .grid .year.last:before {
  content: " ";
  display: inline-block;
  background: url("../images/timeline-bottom.svg") center center no-repeat;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 12rem;
  bottom: -8px;
  transform: translateX(-54%);
}
@media (max-width: 768px) {
  section.timeline .grid .year.last:before {
    left: 8rem;
  }
}
section.timeline .grid .content {
  padding: 1.5rem 1rem 1.5rem 4.5rem;
  word-break: break-word;
}
@media (max-width: 768px) {
  section.timeline .grid .content {
    padding: 1.5rem 1rem;
  }
}
section.timeline ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
section.timeline ul li {
  display: flex;
  margin: 0;
  padding: 0;
}
section.timeline ul li:first-child {
  position: relative;
}
section.timeline ul li:first-child:before {
  content: " ";
  display: inline-block;
  background: url("../images/timeline-top.svg") center center no-repeat;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 15rem;
  top: -5px;
  transform: translateX(-54%);
}
@media (max-width: 1024px) {
  section.timeline ul li:first-child:before {
    left: 12rem;
  }
}
@media (max-width: 768px) {
  section.timeline ul li:first-child:before {
    left: 9rem;
  }
}
section.timeline ul li:last-child {
  position: relative;
}
section.timeline ul li:last-child:before {
  content: " ";
  display: inline-block;
  background: url("../images/timeline-bottom.svg") center center no-repeat;
  width: 1rem;
  height: 1rem;
  position: absolute;
  left: 15rem;
  bottom: -8px;
  transform: translateX(-54%);
}
@media (max-width: 1024px) {
  section.timeline ul li:last-child:before {
    left: 12rem;
  }
}
@media (max-width: 768px) {
  section.timeline ul li:last-child:before {
    left: 9rem;
  }
}
section.timeline ul li:last-child .year, section.timeline ul li:last-child p {
  padding-bottom: 0;
}
section.timeline .year {
  border-right: 2px solid #E0201D;
  flex: 0 0 15rem;
  font-family: "Akrobat";
  font-size: 2rem;
  padding: 1.5rem 4.5rem 6rem 0;
  text-align: right;
}
@media (max-width: 1170px) {
  section.timeline .year {
    flex: 1 0 12rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  section.timeline .year {
    font-size: 1.5rem;
    padding: 1.5rem 2rem 1rem 0;
    flex: 1 0 9rem;
  }
}
section.timeline p {
  flex: 1 1 auto;
  margin: 0;
  padding: 0 0 6rem 6.25rem;
}
@media (max-width: 768px) {
  section.timeline p {
    padding: 1rem 0 1rem 2rem;
  }
}

section.benefits-environment {
  background: linear-gradient(180deg, transparent 33.2%, #e6e6e6 33.2%, #e6e6e6 33.4%, transparent 33.4%, transparent 66.5%, #e6e6e6 66.5%, #e6e6e6 66.7%, transparent 66.7%), linear-gradient(90deg, transparent 49.9%, #e6e6e6 49.9%, #e6e6e6 50%, transparent 50%);
  border-bottom: 2px solid #e6e6e6;
  margin: -4rem 0 4rem 0;
  max-width: none;
}
@media (max-width: 768px) {
  section.benefits-environment {
    background: #ffffff;
    border: none;
    max-width: 95vw;
  }
}
section.benefits-environment .container {
  display: grid;
  grid-gap: 0;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  max-width: 1170px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  section.benefits-environment .container {
    grid-template-columns: 1fr;
    margin: 0 -2rem;
  }
}
section.benefits-environment .item {
  padding: 4rem;
}
@media (max-width: 768px) {
  section.benefits-environment .item {
    padding: 2rem;
    border-bottom: 1px solid #e6e6e6;
  }
  section.benefits-environment .item:first-child {
    border-top: 1px solid #e6e6e6;
  }
}
section.benefits-environment .item p {
  color: #6d6d6d;
}

footer section {
  margin: 0 auto;
}
@media (max-width: 1170px) {
  footer section {
    padding: 2rem;
  }
}
footer section.news {
  margin: 10rem auto 0 auto;
  max-width: none;
  background: linear-gradient(180deg, #ffffff 312px, #e6e6e6 312px);
}
footer section.news .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1170px;
  margin: 0 auto 3rem auto;
}
@media (max-width: 768px) {
  footer section.news .top {
    flex-direction: column;
  }
}
footer section.news .top h1 {
  margin: 0;
}
footer section.news .top a {
  background: #E0201D;
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.47, 0.83);
}
footer section.news .top a:hover {
  background: #c91d1a;
}
@media (max-width: 768px) {
  footer section.news .top a {
    display: block;
    width: 100%;
    text-align: center;
    margin: 3rem 0 0 0;
    padding: 1rem;
  }
}
footer section.news .newsitems {
  max-width: 1170px;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 2rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  footer section.news .newsitems {
    grid-template-columns: auto;
  }
}
footer section.news .item {
  line-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
footer section.news .item:hover img {
  transform: scale(1.1);
}
footer section.news .item img {
  height: 200px;
  width: 100%;
  background: grey;
  transition: all 0.4s cubic-bezier(0.17, 0.67, 0.47, 0.83);
  cursor: pointer;
  object-fit: cover;
}
footer section.news .item .description {
  padding: 1.5rem 2rem;
  background: #111111;
  color: #ffffff;
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  cursor: pointer;
}
footer section.news .item h4 {
  text-transform: none;
  font-weight: 500;
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
}
footer section.news .item time {
  font-family: "Akrobat";
  display: block;
  font-size: 1.125rem;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}
footer section.news .item p {
  font-size: 1rem;
  margin: 0;
}
footer section.news .item a.more {
  background: #2f2f2f;
  color: #ffffff;
  display: block;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
}
footer section.news .item a.more:hover {
  background: #E0201D;
  color: #ffffff;
}
footer section.news .item a.more:after {
  display: none;
}
footer section.contacts {
  max-width: none;
  background: #e6e6e6;
  display: flex;
  justify-content: center;
  padding: 6rem 0 8rem 0;
}
footer section.contacts .contact {
  text-align: center;
  margin: 0 8rem;
}
@media (max-width: 768px) {
  footer section.contacts .contact {
    margin: 0 2rem;
  }
}
footer section.contacts .contact img {
  margin: 2rem 0;
  border-radius: 100%;
}
footer section.contacts .contact a {
  text-decoration: none;
  color: #111111;
}
footer section.links {
  margin: 6rem auto 2rem auto;
}
@media (max-width: 768px) {
  footer section.links {
    margin: 0;
  }
}
footer section.links .top {
  display: grid;
  grid-template-columns: 4fr 2fr 1fr;
  grid-template-rows: auto;
  grid-gap: 2rem;
}
@media (max-width: 1024px) {
  footer section.links .top {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  footer section.links .top {
    grid-template-columns: 1fr;
  }
}
footer section.links .bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e6e6e6;
  padding: 1.5rem 0 0 0;
  margin: 4rem 0 0 0;
}
@media (max-width: 768px) {
  footer section.links .bottom {
    flex-direction: column;
  }
}
footer section.links .bottom a {
  display: inline-block;
}
footer section.links p {
  font-size: 1rem;
  line-height: 2;
}
footer section.links p a {
  display: inline;
}
footer section.links a {
  text-decoration: none;
  color: #111111;
  line-height: 2;
  font-size: 1rem;
  display: block;
}
footer section.links a:hover {
  color: #E0201D;
}
footer section.up {
  background: linear-gradient(90deg, transparent 50%, #111111 50%);
  max-width: none;
  position: relative;
  top: -2.5rem;
}
@media (max-width: 1170px) {
  footer section.up {
    padding: 0;
  }
}
footer section.up .container {
  height: 5rem;
  background: #111111;
  color: #ffffff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1170px;
  margin: 0 auto;
}
footer section.up .container a {
  background: #2F2F2F url("../images/chevron-up.svg") center center no-repeat;
  width: 5rem;
  height: 5rem;
  display: inline-block;
}
footer section.up .container a:hover {
  background-color: #222222;
}
footer section.up .container span {
  margin: 0 4rem;
}

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