/* muli-regular - latin_latin-ext */
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/muli-v11-latin_latin-ext-regular.eot');
  /* IE9 Compat Modes */
  src: local('Muli Regular'), local('Muli-Regular'),
    url('../fonts/muli-v11-latin_latin-ext-regular.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/muli-v11-latin_latin-ext-regular.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/muli-v11-latin_latin-ext-regular.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/muli-v11-latin_latin-ext-regular.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/muli-v11-latin_latin-ext-regular.svg#Muli') format('svg');
  /* Legacy iOS */
}

/* muli-italic - latin_latin-ext */
@font-face {
  font-family: 'Muli';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/muli-v11-latin_latin-ext-italic.eot');
  /* IE9 Compat Modes */
  src: local('Muli Italic'), local('Muli-Italic'),
    url('../fonts/muli-v11-latin_latin-ext-italic.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/muli-v11-latin_latin-ext-italic.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/muli-v11-latin_latin-ext-italic.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/muli-v11-latin_latin-ext-italic.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/muli-v11-latin_latin-ext-italic.svg#Muli') format('svg');
  /* Legacy iOS */
}

/* muli-700 - latin_latin-ext */
@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/muli-v11-latin_latin-ext-700.eot');
  /* IE9 Compat Modes */
  src: local('Muli Bold'), local('Muli-Bold'),
    url('../fonts/muli-v11-latin_latin-ext-700.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/muli-v11-latin_latin-ext-700.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/muli-v11-latin_latin-ext-700.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/muli-v11-latin_latin-ext-700.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/muli-v11-latin_latin-ext-700.svg#Muli') format('svg');
  /* Legacy iOS */
}

/* muli-700italic - latin_latin-ext */
@font-face {
  font-family: 'Muli';
  font-style: italic;
  font-weight: 700;
  src: url('../fonts/muli-v11-latin_latin-ext-700italic.eot');
  /* IE9 Compat Modes */
  src: local('Muli Bold Italic'), local('Muli-BoldItalic'),
    url('../fonts/muli-v11-latin_latin-ext-700italic.eot?#iefix') format('embedded-opentype'),
    /* IE6-IE8 */
    url('../fonts/muli-v11-latin_latin-ext-700italic.woff2') format('woff2'),
    /* Super Modern Browsers */
    url('../fonts/muli-v11-latin_latin-ext-700italic.woff') format('woff'),
    /* Modern Browsers */
    url('../fonts/muli-v11-latin_latin-ext-700italic.ttf') format('truetype'),
    /* Safari, Android, iOS */
    url('../fonts/muli-v11-latin_latin-ext-700italic.svg#Muli') format('svg');
  /* Legacy iOS */
}

html,
body {
  min-height: 100vh;
  font-family: 'Century Gothic', CenturyGothic, 'Muli', 'Apple Gothic', AppleGothic, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -.01rem;
  margin: 0;
  padding: 0;
}

body {
  /* Background pattern from Toptal Subtle Patterns */
  background-image: url('../images/bg.png');
}

a {
  color: #00649e;
  text-decoration: none;
  transition: all .3s ease;
}

a:visited {
  color: #00649e;
}

a:hover {
  color: #001433;
}

main {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100vw;
  text-align: center;
  min-height: calc(100vh - 2rem);
  margin: 0;
  padding: 0;
}

body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, .5);
  opacity: .3;
  z-index: 0;
  /*background-image: linear-gradient(to top, #dfe9f3 0%, white 100%);*/
  background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

footer {
  position: relative;
  height: 2rem;
  margin: 0;
  padding: 0;
  line-height: 2rem;
  border-style: solid;
  border-image: linear-gradient(to right, #d9dfda 0%, #b7b1ba 100%);
  border-image-slice: 1;
  border-width: 1px 0 0 0;
  background: rgba(255, 255, 255, .5);
  opacity: 0;
  -webkit-animation: intro 2s .45s 1 ease forwards;
  animation: intro 2s .45s 1 ease forwards;
  transition: all .3s ease;
}

footer>span {
  width: 100%;
  position: relative;
  font-size: .7rem;
  margin: 0 1rem;
  text-transform: uppercase;
}

footer a {
  text-transform: none;
}

.sm {
  display: inline;
}

.xl {
  display: none;
}

#imprint {
  float: none;
  margin-right: 0;
  max-width: 100%;
}

@media (min-width: 720px) {
  .sm {
    display: none;
  }

  .xl {
    display: inline;
  }

  #imprint {
    float: right;
    margin-right: 1rem;
  }
}

@keyframes intro {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#logo {
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 45%;
  left: 50%;
  display: block;
  width: 20rem;
  max-width: 90%;
  height: auto;
  margin: 0 auto;
  /* Use -webkit- only if supporting: Chrome < 54, iOS < 9.3, Android < 4.4.4 */
  -webkit-filter: drop-shadow(-2px -2px 2px rgba(0, 0, 0, .4));
  filter: drop-shadow(-2px -2px 2px rgba(0, 0, 0, .4));
  -webkit-animation: intro 2s .45s 1 ease forwards;
  animation: intro 2s .45s 1 ease forwards;
  transition: all .3s ease;
}

#logo path {
  fill: #222;
  stroke: #222;
}

#logo image {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

#partners {
  opacity: 0;
  display: block;
  text-align: right;
  position: absolute;
  bottom: 10%;
  right: 0;
  left: 0;
  animation: intro 2s .45s 1 ease forwards;
  text-align: center;
}

#partners>div {
  position: relative;
  margin: 0 auto;
  width: 20rem;
  max-width: 90%;
  text-align: right;
}

#partners p {
  text-align: right;
  text-transform: uppercase;
  font-size: .8rem;
  line-height: 1rem;
  margin: .5rem .25rem 0 0;
  padding: 0;
  text-shadow: -1px -1px 8px rgba(0, 0, 0, .1);
}

#partners p:first-child {
  margin-top: 0;
}

#partners sup {
  position: relative;
  display: inline-block;
  font-size: 100%;
  transform: translateY(.29rem);
  line-height: .5rem;
  opacity: .8;
}

#partners small {
  font-size: 75%;
  line-height: 2.5rem;
  text-transform: none;
  /*font-style:italic;*/
  opacity: .8;
}

#partners small sup {
  opacity: 1;
}

.modal {
  display: none;
  opacity: 0;
  margin: 0;
  padding: 0;
}

.modal.show {
  opacity: 0;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 30rem;
  max-width: 92.5%;
  /*max-height:100%;*/
  height: auto;
  /*min-height:50vh;*/
  background: rgba(255, 255, 255, .96);
  border: 1px solid #d9dfda;
  box-shadow: -1px -1px 1px 4px rgba(0, 0, 0, .01);
  border-radius: 1px z-index:99999;
  padding: .5rem 1rem;
  font-size: .8rem;
  -webkit-animation: intro .5s 1 ease forwards;
  animation: intro .5s 1 ease forwards;
}

.modal.hide {
  -webkit-animation: intro .5s 1 ease backwards;
  animation: intro .5s 1 ease backwards;
}

.modal .close {
  float: right;
}

.modal .content {
  display: block;
  padding: 0;
  margin: 0;
  margin-top: 2rem;
  text-align: left;
}

.modal address {
  font-style: normal;
}

h1 {
  font-family: 'Century Gothic', CenturyGothic, 'Muli', 'Apple Gothic', AppleGothic, sans-serif;
  font-size: .7rem;
  font-weight: bold;
}

h2 {
  font-family: 'Century Gothic', CenturyGothic, 'Muli', 'Apple Gothic', AppleGothic, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
}