/*@import url("uikit-base.css");
@import url("mmenu.css");
@import url("font-awesome.min.css");*/

/* inter-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src:
    url("../fonts/inter-v20-latin_latin-ext-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("../fonts/inter-v20-latin_latin-ext-regular.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* inter-500 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src:
    url("../fonts/inter-v20-latin_latin-ext-500.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("../fonts/inter-v20-latin_latin-ext-500.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* inter-700 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src:
    url("../fonts/inter-v20-latin_latin-ext-700.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("../fonts/inter-v20-latin_latin-ext-700.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* outfit-300 - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  src:
    url("../fonts/outfit-v15-latin_latin-ext-300.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("../fonts/outfit-v15-latin_latin-ext-300.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* outfit-regular - latin_latin-ext */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  src:
    url("../fonts/outfit-v15-latin_latin-ext-regular.woff2") format("woff2"),
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
      url("../fonts/outfit-v15-latin_latin-ext-regular.ttf") format("truetype"); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

:root {
  --blau: #0075bf;
  --hellblau: #e6eff5;
  --variabel: #05050c;
}
* {
  margin: 0;
  padding: 0;
  outline: none !important;
  /*-webkit-appearance: none;
-moz-appearance: none;*/
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 18px;
}
body {
  height: 100%;
  font-family: "Inter", Helvetica, Arial, SansSerif, "sans-serif";
  background-color: var(--hellblau);
}
::-moz-selection {
  background: #000;
  color: #fff;
}
::selection {
  background: #000;
  color: #fff;
}
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a img {
  border: none;
}
img {
  max-width: 100%;
  height: auto;
}
table {
  /*width: 100%;
table-layout:fixed;*/
}
figure.image {
  display: inline-block;
  border: 1px solid gray;
  margin: 0 2px 0 1px;
  background: #f5f2f0;
}
figure.align-left {
  float: left;
}
figure.align-right {
  float: right;
}
figure.image img {
  margin: 8px 8px 0 8px;
}
figure.image figcaption {
  margin: 6px 8px 6px 8px;
  text-align: center;
}
.noIcon span.uk-icon {
  display: none;
}

/*============================================
           Header
============================================*/
#header {
  background-color: var(--hellblau);
  border-bottom: 4px solid #000;
  padding-top: 35px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.075em;
  font-size: 1.8rem;
}

.logo {
  margin-bottom: -4px;
  /* border-bottom: 4px solid var(--hellblau); */
  background-color: var(--hellblau);
}

/*=================================
            Formatierung
=================================*/

h1,
h2,
h3,
h4 {
  font-family: "Outfit", Helvetica, Arial, SansSerif, "sans-serif";
  font-weight: 300;
}

h1 {
  font-size: 4.5rem;
  letter-spacing: 0.025em;
}

h1 strong,
h2 strong {
  font-weight: inherit;
  color: var(--blau);
}

h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

h3 {
  color: var(--blau);
  font-size: 1.2rem;
}

p,
section li {
  line-height: 1.6;
}

* + p {
  margin-top: 1rem;
}

* + h3 {
  margin-top: 1rem;
}

* + h2 {
  margin-top: 1.5rem;
}

h3 + p {
  margin-top: 0.75rem;
}

section ul li {
  margin-bottom: 0.75em;
  margin-left: 20px;
}

hr {
  border: none;
  border-bottom: 1px solid var(--blau);
}

/*============================================
           Kacheln
============================================*/
.kachel {
  border: 1px solid #ffffff;
}

/*=================================
            KLASSEN
=================================*/

.mid {
  width: 92%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.rad30 {
  border-radius: 30px;
}

.rad12 {
  border-radius: 12px;
}

.bgWeiss {
  background-color: #ffffff;
}

.bgBlau {
  background-color: var(--blau);
  color: #ffffff;
}

.blau {
  color: var(--blau);
}

a {
  border-bottom: 2px dotted var(--blau);
}

a:hover {
  border-bottom: 1px solid var(--blau);
  color: var(--blau);
}

.bgBlau a:hover {
  color: #000000;
}

/*============================================
           UiKit
============================================*/

.uk-text-large {
  font-size: 1.2em;
}

/*============================================
           Responsive
============================================*/

@media (max-width: 960px) {
  #header {
    font-size: 1.3rem;
  }
  h1 {
    font-size: 3.5rem;
  }
  .uk-text-large {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 16px;
  }
  h1,
  h2,
  h3 {
    font-size: 2rem;
  }
}
