/**
 * Reset
 */
*,
*::before,
*::after {
  border: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:focus {
  outline: 0;
  -webkit-outline: none;
  -moz-outline: none;
}

html {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  height: 100%;
  width: 100%;
}

body {
  background-color: #ffffff;
  height: 100%;
  overflow-x: hidden;
  width: 100%;
}

ol,
ul {
  list-style: none;
}

input,
textarea,
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  -webkit-outline: none;
  -moz-outline: none;
}

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

/**
 * Teaser
 */
.teaser {
  align-items: stretch;
  display: flex;
  font-size: 24px;
  flex-flow: row nowrap;
  height: calc(100% - 60px);
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.teaser .container {
  display: flex;
  flex: 0 0 40%;
  flex-flow: column nowrap;
  padding: 50px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.teaser .container .logo {
  display: block;
  flex: 0 0 auto;
  margin-bottom: 2em;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.teaser .container .logo img {
  display: block;
  height: 40px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: auto;
}
.teaser .container .text {
  color: #222222;
  flex: 1 1 auto;
  font: normal 300 1em/1.5em "Barlow Condensed", sans-serif;
  margin-bottom: 1.5em;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.teaser .container .contact {
  color: #222222;
  display: flex;
  flex: 0 0 auto;
  flex-flow: column nowrap;
  font: normal 300 1.5em/1.5em "Barlow Condensed", sans-serif;
  gap: 0.25em;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.teaser .container .contact li a {
  border-bottom: 2px solid #222222;
  color: inherit;
  text-decoration: none;
}
.teaser .image {
  align-self: flex-end;
  flex: 0 0 60%;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.teaser .image img {
  display: block;
  height: auto;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}

.links {
  align-items: center;
  color: #222222;
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  font: normal 300 0.75em/1.5em "Barlow Condensed", sans-serif;
  gap: 1em;
  height: 60px;
  justify-content: center;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.links li a {
  color: inherit;
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  .teaser {
    font-size: 16px;
    flex-flow: column nowrap;
  }
  .teaser .container {
    flex: 1 1 auto;
    padding: 30px;
  }
  .teaser .container .logo img {
    height: 30px;
  }
  .teaser .image {
    flex: 0 0 auto;
  }
}
/**
 * Content
 */
.content {
  font-size: 24px;
  padding: 50px;
}
.content .wrapper {
  color: #222222;
  font: normal 300 1em/1.5em "Barlow Condensed", sans-serif;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.content .wrapper h1,
.content .wrapper h2,
.content .wrapper h3,
.content .wrapper h4,
.content .wrapper h5,
.content .wrapper h6 {
  color: inherit;
  margin-bottom: 1em;
  text-align: left;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  overflow-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
}
.content .wrapper h2 {
  color: #222222;
  font: normal 500 1.57em/1.1em "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.content .wrapper h2 {
  color: #222222;
  font: normal 500 1.5em/1.1em "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.content .wrapper h3 {
  color: #222222;
  font: normal 300 1.25em/1.1em "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.content .wrapper h4 {
  color: #222222;
  font: normal 500 1em/1.1em "Barlow Condensed", sans-serif;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.content .wrapper h5 {
  color: #222222;
  font: normal 300 1em/1.1em "Barlow Condensed", sans-serif;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.content .wrapper h6 {
  color: #222222;
  font: normal 300 1em/1.1em "Barlow Condensed", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.content .wrapper p + h2,
.content .wrapper ul + h2,
.content .wrapper ol + h2,
.content .wrapper p + h3,
.content .wrapper ul + h3,
.content .wrapper ol + h3,
.content .wrapper p + h4,
.content .wrapper ul + h4,
.content .wrapper ol + h4,
.content .wrapper p + h5,
.content .wrapper ul + h5,
.content .wrapper ol + h5,
.content .wrapper p + h6,
.content .wrapper ul + h6,
.content .wrapper ol + h6 {
  margin-top: 1.5em;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.content .wrapper p {
  color: inherit;
  font: normal 300 1em/1.5em "Barlow Condensed", sans-serif;
  margin-bottom: 1.5em;
  text-align: left;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  overflow-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
}
.content .wrapper ul,
.content .wrapper ol {
  color: inherit;
  font: normal 300 1em/1.5em "Barlow Condensed", sans-serif;
  margin: 0 0 1.5em 1.25em;
  text-align: left;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.content .wrapper ul li,
.content .wrapper ol li {
  margin: 0 0 0.5em 0;
  position: relative;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  overflow-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
}
.content .wrapper ul li ul,
.content .wrapper ul li ol,
.content .wrapper ol li ul,
.content .wrapper ol li ol {
  margin: 0.5em 0 0.5em 1.25em;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.content .wrapper ul {
  list-style-type: square;
}
.content .wrapper ul.none {
  list-style-type: none;
  margin-left: 0;
}
.content .wrapper ol {
  list-style-type: decimal;
}
.content .wrapper a {
  border-bottom: 2px solid #222222;
  color: inherit;
  text-decoration: none;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.content .wrapper strong,
.content .wrapper b {
  font-weight: 600;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.content .wrapper em,
.content .wrapper i {
  font-style: italic;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.content .wrapper > *:last-child {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 1023px) {
  .content {
    font-size: 16px;
    padding: 30px;
  }
}

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