:root {
  --color-blue: #103665;
  --color-blue-light: #6FBFD5;
  --color-orange: #FB662B;
  --color-orange-hover: #D34F1B;
  --color-text: #1A1A2F;
  --color-grey: #E3E4E7;
  --color-turquoise: #3C91A0;
}

html {
  scroll-behavior: smooth;
}

.is-hidden {
  display: none !important;
}

.is-center {
  text-align: center;
}

.color-white {
  color: #fff;
}

.buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.button {
  background: var(--color-orange);
  border: 1px solid var(--color-orange);
  font-size: 18px;
  border-radius: 4px;
  padding: 12px 16px;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  transition: .5s;
}

.button:hover {
  color: #fff;
  background-color: var(--color-orange-hover);
  border-color: var(--color-orange-hover);
}

.button--outline {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.img-fit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.headline,
.brick__header {
  color: var(--color-text);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  font-family: 'Raleway';
  margin-bottom: 15px;
}

.headline--lg {
  color: var(--color-blue);
  font-size: 45px;
  line-height: 1;
}

.headline--md {
  color: var(--color-blue);
  font-size: 22px;
}

.color-orange {
  color: #FB662B;
}

.h1, h1, .h2, h2, .h3, h3, .h4, h4 {
  text-transform: initial !important;
}

.h4, h4 {
  margin-bottom: 10px !important;
}

#siteWrapper section:first-of-type:not(.area-video) {
  margin-bottom: 0;
  margin-top: 0;
}

.lp-navigation {
  background: var(--color-blue);
}

@media (min-width: 1920px) {
  .lp-navigation {
    width: 1920px;
    margin-left: calc(50% - 960px);
  }
}

@media (max-width: 1919px) {
  .lp-navigation {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.lp-navigation-container {
  z-index: 1;
  width: 100%;
  max-width: 1666px !important;
  padding-left: 30px;
  padding-right: 30px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  font-weight: 700;
  margin: 0 auto;
}

.lp-navigation__menu {
  display: flex;
  gap: 50px;
}

@media screen and (max-width: 870px) {
  .lp-navigation-container {
    justify-content: center;
  }
  .lp-navigation__menu {
    display: none;
  }
}

.lp-navigation__menuitem {
  cursor: pointer;
  transition: .5s;
  color: #fff;
}

@media screen and (min-width: 1025px) {
  .lp-fakten__list {
    display: flex;
    gap: 10px;
  }
  .lp-fakten__item {
    min-width: 220px;
    max-width: 220px;
  }
}

.lp-navigation__menuitem:hover {
  color: var(--color-blue-light);
}

.lp-fakten__itemcontainer {
  background: var(--color-grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 20px;
  height: 100%;
}

.lp-fakten__itemcontainer .headline--md {
  min-height: 55px;
}

.lp-fakten__item p {
  margin-top: 20px;
}

.lp-fakten__item em {
    font-style: normal;
    font-size: 0.75rem;
    display: block;
    margin-top: 10px;
}

.lp-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.lp-card {
    flex: 0 1 100%;
    position: relative;
    overflow: hidden;
    background: var(--color-turquoise); 
    color: #fff;
}

@media screen and (min-width: 680px) {
  .lp-card {
    flex: 0 1 calc(50% - 10px);
  }
}

@media screen and (min-width: 1024px) {
  .lp-card {
    flex: 0 1 calc(33% - 10px);
  }
}

.lp-card .headline {
  color: #fff;
}

.lp-card__image {
  position: relative;
  height: 260px;
  background: #fff;
}

.lp-card__content {
  padding: 25px;
}

.lp-card__content a {
  color: #fff;
  font-weight: bold;
}

/* overrides */


/* usp rebrush */
.usp {
  width: 1920px;
  margin-left: calc(50% - 960px);
  color: #fff;
  padding: 50px 0 15px;
  margin-top: -75px;
}

@media (max-width: 1920px) {
  .usp {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}

.usp--blue {
  background-color: #003568;
}
.usp--grey {
  background-color: #919191;
}
.usp--blue-light {
  background-color: #7082cb;
}
.usp--pink {
  background-color: #c37ab3;
}
.usp--green {
  background-color: #3c91a0;
}

.usp__list {
  display: flex;
  flex-wrap: wrap;
  max-width: 1170px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

.usp__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 1rem;
  flex: 1 1 25%;
  padding: 1rem;
}

.usp__headline {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
}

.usp p {
  font-size: 0.85rem;
}

.usp__icon {
  width: 50px;
  height: 50px;
  filter: invert(1);
}

@media (max-width: 768px) {
  .usp__item {
    flex: 1 1 50%;
  }
}

@media (max-width: 480px) {
  .usp__item {
    flex: 1 1 100%;
  }
}

.basic-component__image p + .h4 {
    margin-top: -15px;
}

/* image hack */
section.area-image.brick img {
    max-height: 400px;
    width: auto;
}
