/* basic */
html, body {
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden!important;
}
body {
  font-family: 'Barlow';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  text-decoration: none;
}
/* color */
:root {
  --bg-color: #EFF4E6;
  --name-color: #141450;
  --job-title-color: #747692;
  --quicklink-color: #141450;
  --btn-primary-bg: #78FF00;
  --btn-primary-bg-hover: #E4FFCC;
  --btn-primary-border: #78FF00;
  --btn-primary-txt: #141450;
  --btn-secondary-bg: #E4FFCC;
  --btn-secondary-bg-hover: #78FF00;
  --btn-secondary-border: #78FF00;
  --btn-secondary-txt: #141450;
}
/* margin */
.mt-40 {
  margin-top: 40px
}
.mt-20 {
  margin-top: 20px
}

/* top bar */
#top-bar {
  background-color: #2C3E66;
  padding: 6px 0;
  position: fixed;
  width: 100%;
  z-index: 1;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#top-bar svg {
  width: 20px;
  heighT: 20px;
}
#top-bar .bar-txt {
  font-weight: 700;
  color: #AEDDCB;
  margin: 0 0 0 20px;
}
#top-bar:hover {
  background-color: #AEDDCB;
}
#top-bar:hover svg path {
  fill: #2C3E66 !important;
}
#top-bar:hover .bar-txt {
  color: #2C3E66;
}
/* header */
#header {
  margin-top: 40px; /* if top-bar visible */
  padding: 20px;
}
#header .logo {
  width: auto;
  height: 48px;
}
/* contact */
#contact {
  padding: 30px 0 50px 0;
  background-color: var(--bg-color);
  border-radius: 20px 20px 0 0;
}
#contact .name {
  font-weight: 700;
  font-size: 2rem;
  line-height: 2.375rem;
  color: var(--name-color);
}
#contact .job-title {
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.375rem;
  color: var(--job-title-color);
  margin-top: 5px;
}
/* social */
#social {
  margin: 50px 0 0 0;
}
#social div[class^='col-'] {
  flex-wrap: wrap;
}
#social img {
  margin: 0 12px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  height: 25px;
  margin-bottom: 12px;
}
#social img:hover {
  transform: scale(1.2);
}
/* button */
.btn {
  display: block;
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 1.375rem;
  text-align: center;
  padding: 18px 0;
  border-radius: 6px;
  border-width: 2px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn sup {
  font-size: 0.875rem;
  vertical-align: 4px;
}
.btn-primary {
  background-color: var(--btn-primary-bg);
  border: 2px solid var(--btn-primary-border);
  color: var(--btn-primary-txt);
  width: 100%;
  display: block;
  margin-top: 10px;
}
.btn-primary:hover {
  background-color: var(--btn-primary-bg-hover);
}
.btn-secondary {
  background-color: var(--btn-secondary-bg);
  border: 2px solid var(--btn-secondary-border);
  color: var(--btn-secondary-txt);
  width: 100%;
}
.btn-secondary:hover {
  background-color: var(--btn-secondary-bg-hover);
}
#btn-download-de {
  margin: 40px 5px 0 0;
}
#btn-download-en {
  margin: 40px 0 0 5px;
}
/* quicklink */
.quicklink {
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.625rem;
  color: var(--quicklink-color);
  text-decoration: none;
  margin-left: 20px;
  word-break: break-all;
}
section.nothing-found {
  margin-top: 50px;
}
section.nothing-found div {
    color:black;
    text-align:center;
    font-size:25px;
    font-weight:bold;
    padding:10px 0;
}
