@charset "UTF-8";
/* SASS Document */
/* dm-serif-text-regular - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Serif Text';
  font-style: normal;
  font-weight: 400;
  src: url("fonts/dm-serif-text-v12-latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
/* dm-sans-300 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  src: url("fonts/dm-sans-v15-latin-300.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
/* dm-sans-700 - latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  src: url("fonts/dm-sans-v15-latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */ }
.container {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  display: block;
  padding: 25% 0 0; }

@media (min-width: 750px) {
  .container {
    padding: 15% 0 0;
    max-width: 90%; } }
@media (min-width: 1000px) {
  .container {
    padding: 10% 0 0; } }
/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.grid-container {
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  padding: 15% 0 0;
  display: grid;
  grid-gap: 5rem;
  gap: 5rem; }

.grid-container.one_three {
  grid-template-columns: 1fr; }
  .grid-container.one_three div:last-child {
    order: 1; }
  .grid-container.one_three div:first-child {
    order: 2; }

.grid-container.halves_offset {
  grid-template-columns: 1fr;
  gap: 0; }

.grid-container.halves_offset:nth-child(2) {
  padding: 0; }

@media (min-width: 750px) {
  .grid-container {
    padding: 10% 0 0; }

  .grid-container.one_three {
    grid-template-columns: 2fr 3fr; }
    .grid-container.one_three div:last-child {
      grid-column: span 2;
      order: 1; }
    .grid-container.one_three div:first-child {
      order: 2; }

  .grid-container.halves_offset {
    grid-template-columns: 45px 1fr;
    gap: 5rem; } }
/* grids to 3 columns above mobile sizes */
@media (min-width: 1000px) {
  .grid-container {
    max-width: 90%;
    padding: 10% 0 0; }

  /* basic grids */
  .grid-container.sixth {
    grid-template-columns: repeat(6, 1fr); }

  .grid-container.fifths {
    grid-template-columns: repeat(5, 1fr); }

  .grid-container.quarters {
    grid-template-columns: repeat(4, 1fr); }

  .grid-container.thirds {
    grid-template-columns: repeat(3, 1fr); }

  .grid-container.halves {
    grid-template-columns: repeat(2, 1fr); }

  .grid-container.full {
    grid-template-columns: 1fr; }

  .grid-container.full_offset {
    grid-template-columns: 1fr 4fr 1fr; }
    .grid-container.full_offset div:first-child {
      grid-column: 2; }

  .grid-container.one_three {
    grid-template-columns: repeat(3, 1fr); }
    .grid-container.one_three div:last-child {
      grid-column: span 2;
      order: 2; }
    .grid-container.one_three div:first-child {
      order: 1; }

  .grid-container.halves_offset:nth-child(2) {
    padding: 10% 0 0; } }
/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%; }

body {
  font-size: 2em;
  /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.5;
  font-weight: normal;
  font-family: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  letter-spacing: 0.02rem; }

h1 {
  font-family: "DM Serif Text", serif;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: normal; }

h2 {
  font-family: "DM Serif Text", serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: normal; }

h3 {
  font-family: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold; }

h4 {
  font-family: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: normal;
  padding-bottom: 2rem;
  border-bottom: 1px solid #c2bc82;
  display: inline-block; }

h5 {
  font-size: 1.8rem;
  line-height: 1.5; }

h6 {
  font-size: 1.5rem;
  line-height: 1.6; }

/* Larger than phablet */
@media (min-width: 550px) {
  body {
    font-size: 2em; }

  h1 {
    font-size: 6rem; }

  h2 {
    font-size: 3rem; }

  h3 {
    font-size: 2rem; }

  h4 {
    font-size: 2rem; }

  h5 {
    font-size: 2.4rem; }

  h6 {
    font-size: 1.5rem; } }
@media (min-width: 1000px) {
  h1 {
    font-size: 6rem; }

  h2 {
    font-size: 3rem; }

  h3 {
    font-size: 2rem; }

  h4 {
    font-size: 2rem; }

  h5 {
    font-size: 2.4rem; }

  h6 {
    font-size: 1.5rem; } }
p {
  margin-top: 0;
  margin-bottom: 2rem; }

.small {
  font-size: 1.5rem; }

strong {
  font-weight: 700; }

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #003555;
  text-decoration: none; }
  a:hover {
    color: #0088a5; }

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button {
  font-family: "DM Serif Text", serif;
  display: inline-block;
  color: #003555;
  text-align: center;
  font-size: 20px;
  line-height: 50px;
  text-decoration: none;
  white-space: nowrap;
  background-color: #0088a5;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0px 40px;
  border-radius: 25px;
  height: 50px;
  letter-spacing: 0.05rem; }

input[type="submit"], input[type="reset"], input[type="button"] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #0088a5;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box; }

.button:hover,
button:hover {
  color: #003555;
  background-color: #c2bc82; }

input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover {
  color: #555;
  border-color: #aaaaaa;
  outline: 0; }

.button:focus,
button:focus {
  color: #555;
  border-color: #aaaaaa;
  outline: 0; }

input[type="submit"]:focus, input[type="reset"]:focus, input[type="button"]:focus {
  color: #555;
  border-color: #aaaaaa;
  outline: 0; }

.button.button-primary,
button.button-primary {
  color: #fff;
  background-color: #003555;
  border-color: #003555; }

input[type="submit"].button-primary, input[type="reset"].button-primary, input[type="button"].button-primary {
  color: #fff;
  background-color: #003555;
  border-color: #003555; }

.button.button-primary:hover,
button.button-primary:hover {
  color: #fff;
  background-color: #888;
  border-color: #888; }

input[type="submit"].button-primary:hover, input[type="reset"].button-primary:hover, input[type="button"].button-primary:hover {
  color: #fff;
  background-color: #888;
  border-color: #888; }

.button.button-primary:focus,
button.button-primary:focus {
  color: #fff;
  background-color: #888;
  border-color: #888; }

input[type="submit"].button-primary:focus, input[type="reset"].button-primary:focus, input[type="button"].button-primary:focus {
  color: #fff;
  background-color: #888;
  border-color: #888; }
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"] {
  height: 38px;
  padding: 6px 10px;
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
textarea,
select {
  height: 38px;
  padding: 6px 10px;
  /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #d1d1d1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box; }

/* Removes awkward default styles on some inputs for iOS */
input[type="email"], input[type="number"], input[type="search"], input[type="text"], input[type="tel"], input[type="url"], input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px; }

input[type="email"]:focus, input[type="number"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="tel"]:focus, input[type="url"]:focus, input[type="password"]:focus {
  border: 1px solid #003555;
  outline: 0; }

textarea:focus,
select:focus {
  border: 1px solid #003555;
  outline: 0; }

label,
legend {
  display: block;
  margin-bottom: .5rem;
  font-weight: 600; }

fieldset {
  padding: 0;
  border-width: 0; }

input[type="checkbox"], input[type="radio"] {
  display: inline; }

label > .label-body {
  display: inline-block;
  margin-left: .5rem;
  font-weight: normal; }

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: disc outside; }

ol {
  list-style: decimal inside;
  padding-left: 0;
  margin-top: 0; }

ul {
  padding-left: 0;
  margin-top: 0; }
  ul ul, ul ol {
    margin: 1.5rem 0 1.5rem 3rem;
    font-size: 90%; }

ol ol, ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
  font-size: 90%; }

li {
  margin-bottom: 0;
  margin-left: 2rem; }

/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: .2rem .5rem;
  margin: 0 .2rem;
  font-size: 90%;
  white-space: nowrap;
  background: whitesmoke;
  border: 1px solid #e5e5e5;
  border-radius: 4px; }

pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre; }

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5; }

th:first-child,
td:first-child {
  padding-left: 0; }

th:last-child,
td:last-child {
  padding-right: 0; }

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem; }

input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem; }

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem; }

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  height: auto;
  box-sizing: border-box; }

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box; }

.u-pull-right {
  float: right; }

.u-pull-left {
  float: left; }

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #e5e5e5; }

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both; }

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/
/* Larger than mobile */
/* Larger than phablet (also point when grid becomes active) */
/* Larger than tablet */
/* Larger than desktop */
/* Larger than Desktop HD */
/* LESS Document */
html {
  scroll-behavior: smooth; }

.header {
  height: 100vh;
  background: linear-gradient(55deg, #003555 75%, #0088a5 100%);
  color: #fff;
  display: grid;
  align-content: center; }
  .header .grid-container {
    padding: 0; }

.logo {
  margin-bottom: 2rem; }
  .logo img {
    width: 160px;
    height: auto; }

.start h1 em {
  font-style: normal;
  color: #c2bc82; }

.start h1 strong {
  font-weight: normal;
  color: #0088a5; }

.start .button {
  margin-top: 2rem; }

.content h2 {
  color: #675832; }

.content h4 {
  color: #003555; }

.content p {
  color: #003555; }

.content img {
  width: 100%;
  height: auto; }

.img_round {
  border-radius: 50%; }

.beige {
  background-color: #f3f2e6;
  margin-top: 10%;
  padding-bottom: 10%;
  box-sizing: border-box; }

.center {
  text-align: center; }

.nogap {
  padding: 0; }

.number h2 {
  color: #c2bc82;
  font-size: 8rem;
  line-height: 1; }

.text h2 {
  color: #0088a5;
  margin-top: 1rem; }

.footer {
  padding-bottom: 10%; }
  .footer h2 {
    font-size: 3rem;
    color: #675832;
    margin-bottom: 6rem; }
  .footer .button {
    color: #fff;
    margin-bottom: 6rem; }

a.linkedin {
  position: relative;
  margin-left: 25px; }

a.linkedin::before {
  content: "";
  background-image: url(../images/linkedin.svg);
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  top: 2px; }

.datenschutz h4 {
  font-family: "DM Serif Text", serif;
  padding-bottom: 0;
  border-bottom: none;
  display: block; }

@media (min-width: 750px) {
  .img_round {
    width: 100% !important; }

  .footer h2 {
    font-size: 6rem; } }
@media (min-width: 1000px) {
  .logo {
    margin-bottom: 5%; }

  .start .button {
    margin-top: 10%; }

  .img_round {
    width: 100% !important; } }

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