@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url('fonts/roboto-v30-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/roboto-v30-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/roboto-v30-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('fonts/roboto-v30-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  
  :root {
    --bs-heading-color: #222222;
  }
  
body {
    background: #f7f7f7;
    font-family: 'Roboto';
    min-width: 300px;
    color: #222222;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

div,
header,
main,
footer {position: relative;}

p {font-size: 0.875rem;}

.button {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  color:#222;
  background: #eaeaea;
  text-decoration: none;
  border-radius: 16px;
  transition: all 0.15s ease;
}

.button:hover {
  color:#fff;
  background: #749fb5;
}

.button.has-icon svg {
  margin-right: 5px;
  width: 20px;
  height: auto;
  transition: all 0.15s ease;
}

.button.has-icon svg path {
  fill:#222;
}

.button.has-icon:hover svg path {
  fill:#fff;
}

img {max-width: 100%; height: auto; display: inline-block;}

#header-top {
  background: url(img/banner_blau.jpg) no-repeat top left;
  background-size: cover;
  height: 120px;
}

.header-box {
  display: flex;
}

.header-box-right {
  margin-left: auto;
}

@media (min-width: 1200px) {
  h1 {
    font-size: 1.75rem;
  }
}

.overlaylink {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
}

.apps-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.app-box {
  box-shadow: 1px 1px 3px 0px rgba(194,194,194,1);
  background: #fff;
  padding: 1.75rem;
  display: flex;
  min-height: 200px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  outline: 2px solid transparent;
  transition: all 0.15s ease-out;
}

.app-box:hover {
transform: scale(1.03);
outline: 2px solid #749fb5;
}


  .app-box:hover::before {
    position: absolute;
    content: "";
    background: linear-gradient(180deg, rgba(255,255,255,0) 24%, rgba(255,255,255,1) 75%);
    bottom: 0;
    left: 0;
    height: 75%;
    width: 100%;
    }


  .app-box span {
    background: #749fb5;
    color:#fff;
    padding: 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    justify-content: center;
    align-items: center;
    display: none;
  }

  .app-box span svg {
    display: inline-block;
    margin-right: 6px;
  }

  .app-box span svg path {
    fill: #fff;
  }

  .app-box:hover span {
    display: flex;
  }

.app-box img {
  max-height: 60px;
  max-width: none;
  margin-bottom: 1.25rem;
  width: 100%;
}

.app-box h3 {
  font-size: 0.9125rem;
  color: #36638a;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.3em;
}

.app-box p {
  color: #9c9b9b;
  line-height: 1.4em;
  margin-bottom: 0;
  display: none;
}

.app-box-svg-logo {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 0.75rem;
}
.app-box-svg-logo path {
fill: #36638a;
}

.user-name {
  font-size: 1.5rem;
  font-weight: 400;
  display: inline-block;
}

footer {
  margin-top: auto;
  background: #000;
}

footer * {
  color:#fff;
}

.footer-nav,
.footer-service {
  margin: 0;
  padding: 0;
  text-align: right;
}

.footer-nav li {
  display: inline-block;
  margin-right: 30px;
  font-size: 1rem;
}

.footer-nav li:last-child {
  margin-right: 0;
}

.footer-nav li a {
  color:#fff;
  text-decoration: none;
  display: inline-block;
}
footer a {
  transition: opacity 0.15s ease;
}
footer a:hover {
  opacity: 0.6;
}

.footer-service {
  font-size: 0.875rem;
  text-align: left;
  display: inline-flex;
  gap: 50px;
  background: #1a1a1a;
  padding: 20px;
  border-radius: 12px;
}

.footer-service li {
  font-size: 1rem;
  display: block;
  color:#7a7a7a;
}



.footer-service svg {
fill:#fff;
}

.footer-service li a {
  display: block;
  text-decoration: none;
  color:#fff;
}

.footer-headline {
  font-size: 1rem;
  margin-bottom: 20px;
}


@media screen and (max-width: 1200px) {
  .apps-list {
    grid-template-columns: repeat(3, 1fr);
  }
}


@media screen and (max-width: 767px) {


  #header-top {
    height: 70px;
  }

footer {
  text-align: center;
}

  .user-name {
    font-size: 1rem;
  }


  .apps-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .footer-nav {
    text-align: center;
  }
}

@media screen and (max-width: 560px) {


  .button.has-icon {
    padding: 0.6rem;
    border-radius: 50%;
    justify-content: center;
  }

  .button.has-icon svg {
    margin: 0;
  }

.button.has-icon span {
  display: none;
}

  h1 {
    font-size: calc(1.375rem + 1vw);
  }

  .apps-list {
    gap: 0.7rem;
  }

  .app-box:hover {
    transform: none;
    }

    .app-box h3 {
      font-size: 0.875rem;
      margin-bottom: 0.5rem;
    }

    .app-box span {
      padding: 1rem;
    }

  .app-box {
    min-height: 150px;
    padding: 1.75rem 1rem;
  }
  .app-box img {
    max-height: 30px;
    margin-bottom: 1rem;
  }

  .footer-service {
    display: block;
  }

  .footer-service li {
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-service li:last-child {
    margin-bottom: 0;
  }

  footer {
    margin-top: 60px;
  }

}

@media screen and (max-width: 400px) {

  .app-box h3 {
    font-size: 0.75rem;
  }
}