


  
/*-------------------------------------------------------------------------
                                FLUID RESPONSIVE FONT-SIZE
--------------------------------------------------------------------------*/

:root {
    /* Basiswerte */
    --font-from: 1rem; /* Basisgröße bei kleinem Viewport */
    --font-to: 2rem;   /* Basisgröße bei großem Viewport */
    --vw-from: 320;    /* Kleinster Viewport */
    --vw-to: 1920;     /* Größter Viewport */
    
    /* Fluid Responsivitätslogik */
    --from: calc(var(--vw-from) / 100);
    --to: calc(var(--vw-to) / 100);
    --coefficient: calc((var(--font-to) - var(--font-from)) / (var(--to) - var(--from)));
    --base: calc(var(--font-from) - var(--from) * var(--coefficient));
    --real100vh: 100vh;
  }
  
  html {
    font-size: 1.3625rem;
  }

  /* Fluid-responsiver Font-Size */
  @media only screen and (max-width: 2000px) {
  html {
    font-size: calc(0.0678571429rem + 1.0357142857vw);
  }
}
  
  /* Breakpoint für Mobile (bis 768px) */
  @media only screen and (max-width: 768px) {
    html {
        font-size: calc(0.1594827586rem + 3.4482758621vw);
      }
  }

  @media only screen and (max-width: 480px) {
    html {
      font-size: calc(16px + 6 * (100vw - 320px) / 680) !important;
    }
  }




/*-------------------------------------------------------------------------
                                GENERAL
--------------------------------------------------------------------------*/

* {
    position: relative;
    box-sizing: border-box;
  }

  *:where(:not(html, iframe, canvas, img, svg, video, audio, svg *, symbol *)) {
    all: unset;
    display: revert;
}

:root {
    --white: #FFFFFF;
    --black: #333333;
    --darkest-blue: #183747;
    --blue: #0069B4;
    --bright-blue: #5C9BE0;
    --dark-blue: #18375C;
    --darker-green: #506e49;
    --yellow: #EAE063;
    --orange: #f2910d;
    --gray: #F4F5F7;
    --light-gray: #FCFDFF;
    --light-gray-2: #EAEAEF;
    --border-bottom: #707070;
    --border-color: #dbdbdb;
    --bg-gray: #EDEFF2;
    --bg-gray-2: #E8E9EA;
    --scrollbar: #d6d6d6;
  
    --padding-top: 7%;
    --padding-bottom: 7%;
    --padding-left: 3%;
    --padding-right: 3%;
  
    --common-font: 'Circular Std', sans-serif;
    --title-font: 'Circular Std Book', sans-serif;
  }

  img, iframe, embed {
    width: 100%;
    max-width: 100%;
    display: block;
  }


  @font-face {
    font-family: 'Frutiger LT Pro 55 Roman';
    src: url('FrutigerLTPro-Roman.eot');
    src: url('FrutigerLTPro-Roman.eot?#iefix') format('embedded-opentype'),
        url('FrutigerLTPro-Roman.woff2') format('woff2'),
        url('FrutigerLTPro-Roman.woff') format('woff'),
        url('FrutigerLTPro-Roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}






/*-------------------------------------------------------------------------
                                BODY / WRAPPER
--------------------------------------------------------------------------*/

  body, html {
    margin: 0;
    padding: 0;
    font-family: 'Frutiger LT Pro 55 Roman';
  }

  body {
    -webkit-font-smoothing: antialiased;
  }


  main {
    position: relative;
    display: inline-block;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
  }

  img, iframe, embed {
    width: 100%;
    max-width: 100%;
  }

  .anchor {
    position: relative;
    top: -200px;
    width: 100%;
    float: left;
}


/*-------------------------------------------------------------------------
                                TYPOGRAPHY
--------------------------------------------------------------------------*/

body {
  font-size: 1rem;
  line-height: 1.5;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  -webkit-text-size-adjust: 100%;
  font-family: var(--common-font);
  color: var(--black);
  font-weight: normal;
}

p {
    margin: 8px 0;
    font-size: 1rem;
    line-height: 1.5;
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -webkit-text-size-adjust: 100%;
    font-family: var(--common-font);
    color: var(--black);
    font-weight: normal;
}

a {
  color: #E81F25;
  cursor: pointer;
  font-weight: bold;
  transition: all ease .3s;
  text-decoration: none;
  font-size: 0.6rem;
  font-weight: normal;
}
  
  a:hover {
    text-decoration: none;
  }
  
  ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 0;
    list-style-position: inside;
  }
  
  li {
    -webkit-text-size-adjust: 100%;
    font-size: min(max(1rem, 1vw), 1.1rem);
    line-height: 1.5;
  }
  
  strong {
    font-weight: bold;
  }
  
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: normal;
    -moz-hyphens: none;
    -o-hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
    font-family: var(--title-font);
    margin-block-start: 0em;
    margin-block-end: 0em;
    letter-spacing: 1px;
  }
  
  h1 {
    color: var(--darkest-blue);
    font-size: 4rem;
    text-transform: none;
  }
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
  }
  
  h2 {
    color: var(--darkest-blue);
    font-size: 2rem;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 2rem;
  }
  @media (max-width: 768px) {
    h2 {
      font-size: 1.4rem;
    }
  }
  
  h3 {
    color: var(--blue);
    font-size: 1.2rem;
    font-weight: bold;
    font-family: var(--common-font);
    letter-spacing: 0;
  }
  @media (max-width: 768px) {
    h3 {
      font-size: 1.1rem;
    }
  }
  
  h4 {
    color: var(--black);
    font-size: 1.25rem;
    text-transform: none;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1.5;
    font-family: var(--common-font);
    margin-bottom: 1rem;
    margin-top: 1rem;
  }
  
  h5 {
    font-size: 1rem;
    text-transform: none;
    font-weight: bold;
    letter-spacing: 0;
  }
  
  h6 {
    font-size: 1rem;
    color: var(--blue);
    text-transform: none;
    font-size: 1rem;
    letter-spacing: 0;
  }






/*-------------------------------------------------------------------------
                                HEADER
--------------------------------------------------------------------------*/

header {
    position: absolute;
    display: flex;
    float: left;
    top: 0;
    left: 0;
    padding: 0.5rem 0;
    width: 100%;
    height: 8rem;
    z-index: 1006;
    align-items: flex-end;
    background-color: transparent;
    transition: height 0.3s ease, background-color 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 768px) {
  header {
    height: 4rem;
}
}

.header-container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 0;
    width: calc(100% - 4rem);
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .header-container {
      width: calc(100% - 2rem);
  }
  }

a.logo {
  position: relative;
  display: block;
  float: left;
  width: 13rem;
  top: 50%;
  margin-top: 0;
  transform: translate(0, -50%);
  transition: .3s all ease-in-out;
  }

@media (max-width: 768px) {
    a.logo {
      width: 7rem;
  }
}
  
a.logo img {
    float: left;
    width: 100%;
}

img.logo-dark {
  display: none;
}

img.logo-bright {
  display: block;
}

header.fadein {
  height: 4rem;
  background: var(--white);
}

a.logo.fadein {
  width: 7rem;
}

header.fadein img.logo-dark {
  display: block;
}

header.fadein img.logo-bright {
  display: none;
}




/*-------------------------------------------------------------------------
                                PROJECT INDIVIDUAL
--------------------------------------------------------------------------*/

* {
  position: relative;
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: linear-gradient(170deg, rgba(213, 212, 218, 0.50) 7.33%, #C2BCCB 50.66%, #D9C7D0 92.67%);
  padding: 2rem;
  justify-content: space-between;
  height: var(--real100vh);;
}

.top, .center, .bottom {
  position: relative;
  float: left;
  width: 100%;
  display: flex;
  flex-direction: row;
}

.top {
  justify-content: space-between;
  align-items: flex-start;
}

.hinweis {
  position: absolute;
  right: 8rem;
  top: 4rem;
  height: auto;
  background: var(--white);
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 4px 4px 16px 0px rgba(112, 90, 96, 0.25);
}

.hinweis a.button {
  padding-left: 2.5rem;
}

.hinweis a.button:before {
  content: '';
  height: 1px;
  width: 2rem;
  background: #E81F25;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
}

.hinweis a.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hinweis p {
  color: #705A60;
  font-family: 'IvyMode';
  font-weight: 600;
  font-style: italic;
  margin-bottom: 1rem;
}

img.einhundert {
  width: 12rem;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 46%;
  width: auto;
  left: 50%;
  transform: translate(-50%, -50%);
}

img.grafik {
  width: 36rem;
}

img.slogan {
  width: 24rem;
}

.bottom {
  display: flex;
  justify-content: space-between;
}

.bottom img {
  width: 6rem;
}

.bottom span {
  font-size: 1.25rem;
  font-family: 'Frutiger LT Pro 55 Roman';
}




/*-------------------------------------------------------------------------
                        PROJECT INDIVIDUAL RESPONSIVE
--------------------------------------------------------------------------*/



@media (max-width: 768px) {
  img.slogan {
    width: 14rem;
  }

  .center {
    width: 100%;
    top: -2rem;
    position: relative;
    transform: none;
    float: left;
    left: 0;
  }

  img.grafik {
    width: 22rem;
  }

  .bottom span {
    font-size: 1rem;
  }

  img.einhundert {
    width: 8rem;
  }

  a {
    font-size: 0.6rem;
  }

  .hinweis p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
  }

  .hinweis {
    padding: 0.75rem 1.5rem;
    position: relative;
    top: auto;
    right: auto;
  }
  
}