em {
  color: #afca0b;
  text-decoration: underline;
  font-size: 1.75em;
  font-family: "Caveat";
  display: inline-block;
  margin-right: 0.5rem;
}

body {
  background: white;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  padding: 0;
  color: #001834;
  margin: 0;
}

* {
  box-sizing: border-box;
}

.header {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 2rem;
  background: white;
  box-sizing: border-box;
}
.header .logo img {
  height: 3rem;
  width: auto;
}
@media (max-width: 768px) {
  .header .menu-wrapper {
    display: none;
  }
}
.header .menu {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
}
.header .menu .sub-menu {
  display: none;
}
.header .menu > li:last-of-type {
  margin-left: 1.5rem;
}
.header .menu > li:last-of-type a {
  border-radius: 2rem;
  padding: 0.5rem 2rem;
  background: #afca0b;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease;
}
.header .menu > li:last-of-type a:hover {
  transition: all 0.2s ease;
  background: #001834;
}
.header .menu li {
  list-style: none;
  position: relative;
  display: flex;
  justify-content: center;
}
.header .menu li a {
  text-decoration: none;
  color: inherit;
  font-weight: bold;
  font-size: 1rem;
  padding: 1rem 2rem;
}
.header .menu li a:hover {
  color: #afca0b;
}
.header .menu li.menu-item-has-children:after {
  content: "";
  height: 1rem;
  width: 1rem;
  opacity: 0.5;
  background-size: contain;
  position: absolute;
  bottom: -0.5rem;
  background-image: url("../images/chevron-down.svg");
}
.header .menu li.menu-item-has-children:hover .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  padding: 0;
  width: 250px;
  background: white;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
  z-index: 9999;
}
.header .menu li.menu-item-has-children:hover .sub-menu li {
  width: 100%;
}
.header .menu li.menu-item-has-children:hover .sub-menu li a {
  text-align: center;
  width: 100%;
}
.header .menu li.menu-item-has-children:hover .sub-menu li a:hover {
  background: #eee;
}

#hamburger-close {
  display: none;
}

footer {
  background: #001834;
  color: #e9eef3;
  padding: 2rem;
}
footer .menu {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  footer .menu {
    display: block;
  }
}
footer .menu li {
  list-style: none;
}
footer .menu li a {
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  opacity: 0.5;
}
footer .menu li a:hover {
  opacity: 1;
}

.hamburger-icon {
  display: inline-block;
}
.hamburger-icon div {
  width: 35px;
  height: 5px;
  background-color: #001834;
  margin: 6px 0;
  transition: 0.4s;
}

#hamburger {
  display: none;
}
@media (max-width: 768px) {
  #hamburger {
    display: block;
  }
}

.menu-open .bar1 {
  transform: translate(0, 11px) rotate(-45deg);
}
.menu-open .bar3 {
  transform: translate(0, -11px) rotate(45deg);
}
.menu-open .bar2 {
  opacity: 0;
}
.menu-open #hamburger {
  position: fixed;
  z-index: 99999999;
  top: 1rem;
  right: 1rem;
}
.menu-open #hamburger .bar1,
.menu-open #hamburger .bar2,
.menu-open #hamburger .bar3 {
  background: white;
}
.menu-open .menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #001834;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu-open .menu-wrapper .menu {
  display: block;
}
.menu-open .menu-wrapper .menu li:last-of-type {
  margin: 0;
  margin-top: 0.5rem;
}
.menu-open .menu-wrapper .menu li a {
  color: white;
}

main.wrapped {
  max-width: 75rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.block-text {
  padding: 4rem 1rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .block-text {
    padding: 4rem 1rem;
  }
}

.wrapped {
  max-width: 75rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .wrapped {
    padding: 0 1rem;
  }
}

.block-hero {
  display: flex;
  align-items: center;
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 10vw;
}
.block-hero .content p {
  margin: 0;
}
.block-hero .content .subline {
  font-weight: bold;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.block-hero .content .headline {
  font-size: 3.125rem;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .block-hero .content .headline {
    font-size: 2rem;
  }
}
.block-hero .content .button {
  border-radius: 2rem;
  padding: 0.5rem 2rem;
  background: #afca0b;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 1.25rem;
  padding: 0.5rem 2rem;
}
.block-hero .content .button:hover {
  transition: all 0.2s ease;
  background: #001834;
}

.block-intro {
  padding: 8rem 1rem;
}
@media (max-width: 768px) {
  .block-intro {
    padding: 4rem 1rem;
  }
}
.block-intro .wrapped {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
@media (max-width: 768px) {
  .block-intro .wrapped {
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}
.block-intro .wrapped .image img {
  width: 100%;
  height: auto;
}
.block-intro .wrapped h2 {
  font-size: 2rem;
  text-transform: none;
  line-height: 1.1;
  margin: 0;
}
.block-intro .wrapped h2 p {
  margin: 0;
}
.block-intro .wrapped .subline {
  margin-bottom: 0.5rem;
  font-weight: bold;
  letter-spacing: 0.25em;
}
.block-intro .wrapped .text {
  line-height: 1.5;
  font-weight: bold;
  color: #707070;
}
.block-intro .wrapped .logos {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.block-intro .wrapped .logos img {
  margin-right: 1rem;
}

.block-vorteile {
  position: relative;
  overflow: hidden;
  display: flex;
  padding: 100px;
  justify-content: center;
  padding-bottom: 100px;
}
.block-vorteile .blue {
  background: #001834;
  position: absolute;
  height: 100%;
  width: 200%;
  transform: rotate(2deg);
  z-index: 2;
  transform-origin: center;
}
.block-vorteile .green {
  background: #afca0b;
  position: absolute;
  height: 100%;
  width: 200%;
  transform: rotate(-2deg);
  z-index: 1;
  transform-origin: center;
}
.block-vorteile .wrapped {
  position: relative;
  z-index: 10;
  width: 100%;
}
.block-vorteile .wrapped h2 {
  text-transform: none;
  color: #afca0b;
  font-size: 2rem;
}
.block-vorteile .wrapped .toparea {
  margin-top: 8rem;
  margin-bottom: 4rem;
  text-align: center;
}
.block-vorteile .wrapped .grid {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.block-vorteile .wrapped .grid .item {
  text-align: center;
}
.block-vorteile .wrapped .grid .item img {
  height: 6rem;
  width: auto;
}
.block-vorteile .wrapped .grid .item h3 {
  font-size: 1.25rem;
  text-transform: none;
  color: white;
}
.block-vorteile .wrapped .grid .item p {
  color: white;
  opacity: 0.75;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
}

.block-cta {
  padding: 8rem 0;
  background: #e9eef3;
}
.block-cta .wrapped {
  max-width: 50rem;
  text-align: center;
}
.block-cta .wrapped h2 {
  line-height: 0.8;
  text-transform: none;
  margin-bottom: 1rem;
  font-size: 3.125rem;
}
@media (max-width: 768px) {
  .block-cta .wrapped h2 {
    font-size: 2rem;
  }
}
.block-cta .wrapped .button {
  margin-top: 4rem;
  display: inline-block;
  border-radius: 2rem;
  padding: 0.5rem 2rem;
  background: #afca0b;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1.25rem;
  padding: 0.5rem 2rem;
}
.block-cta .wrapped .button:hover {
  transition: all 0.2s ease;
  background: #001834;
}

.block-faq .wrapped {
  padding: 8rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
}
@media (max-width: 768px) {
  .block-faq .wrapped {
    padding: 4rem 1rem;
    grid-template-columns: 1fr;
  }
}
.block-faq .wrapped h2 {
  font-size: 2rem;
  text-transform: none;
}
.block-faq .wrapped .question {
  padding: 1.5rem 2rem;
  border: 1px solid #001834;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.block-faq .wrapped .question:hover {
  background: #ebebeb;
}
.block-faq .wrapped .question .head {
  display: flex;
  align-items: center;
  font-weight: bold;
  position: relative;
}
.block-faq .wrapped .question .head:after {
  position: absolute;
  right: 0;
  content: "";
  background-image: url("../images/plus.svg");
  height: 2rem;
  width: 2rem;
  background-size: contain;
}
.block-faq .wrapped .question .answer {
  display: none;
}
.block-faq .wrapped .question.active .answer {
  display: block;
}
.block-faq .wrapped .question.active .head:after {
  background-image: url("../images/minus.svg");
  height: 2px;
}

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