@-webkit-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-moz-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@-o-keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeInFromNone {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

body {
  background: #fff;
}

hr {
  width: 100%;
  height: 1px;
  border: 0;
  background-color: #eee;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 140px;
  background: #fff;
  z-index: 1;
}

.logo {
  position: relative;
  padding: 10px 10px 10px 0;
  float: left;
  width: 116px;
  margin-top: 12px;
  margin-right: 20px;
}
.logo img {
  width: 116px;
  height: 104px;
  text-decoration: none;
  border: 0;
}

/* navigation */
nav {
  position: relative;
  width: 980px;
  margin: 0 auto;
}

.clearfix:after {
  content: " ";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

#cssmenu, #cssmenu ul, #cssmenu ul li, #cssmenu ul li a, #cssmenu #head-mobile {
  border: 0;
  list-style: none;
  line-height: 1;
  display: block;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  user-select: none;
}

#cssmenu:after, #cssmenu > ul:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

#cssmenu #head-mobile {
  display: none;
}

#cssmenu {
  font-family: arial, sans-serif;
  background: #fff;
}
#cssmenu ul#mainmenu {
  position: relative;
  top: 87px;
}
#cssmenu > ul > li {
  margin-top: -3px;
  float: left;
}

#cssmenu > ul > li > a {
  padding: 17px;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #000;
  font-weight: 400;
  margin-right: 20px;
}

#cssmenu > ul > li:hover > a,
#cssmenu ul li.active > a {
  color: #e90000;
}

#cssmenu > ul > li:hover,
#cssmenu > ul > li:active,
#cssmenu ul li.active:hover,
#cssmenu ul li.active:active,
#cssmenu ul li.active,
#cssmenu ul li.has-sub.active:hover,
li.has-sub.active:active {
  -webkit-transition: background 0.3s ease;
  -ms-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#cssmenu > ul > li.has-sub > a {
  padding-right: 30px;
  padding-bottom: 24px;
}

#cssmenu > ul > li.has-sub > a:after {
  position: absolute;
  top: 22px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #a1a2a3;
  content: "";
}

#cssmenu > ul > li.has-sub > a:before {
  position: absolute;
  top: 19px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #a1a2a3;
  content: "";
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#cssmenu > ul > li.has-sub.active > a:before {
  background: #e90000;
}

#cssmenu > ul > li.has-sub.active > a:after {
  background: #e90000;
}

#cssmenu > ul > li.has-sub:hover > a:before,
#cssmenu > ul > li.has-sub:active > a:before {
  top: 23px;
  height: 0;
  background: #e90000;
}

#cssmenu > ul > li.has-sub:hover > a:after {
  background: #e90000;
}

/* the submenu */
#cssmenu ul ul {
  border-bottom: 1px solid #eee;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  position: absolute;
  left: -9999px;
}

#cssmenu ul ul li {
  height: 0;
  background: #fff;
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#cssmenu li:hover > ul,
#cssmenu li:active > ul {
  left: auto;
}

#cssmenu li:hover > ul > li,
#cssmenu li:active > ul > li {
  height: 35px;
}

#cssmenu ul ul ul {
  margin-left: 100%;
  top: 0;
}

#cssmenu ul ul li a {
  white-space: nowrap;
  border-bottom: 1px solid #eee;
  padding: 11px 15px;
  width: 170px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  font-weight: 400;
}

#cssmenu ul ul li.has-sub > a:after {
  position: absolute;
  top: 16px;
  right: 11px;
  width: 8px;
  height: 2px;
  display: block;
  background: #a1a2a3;
  content: "";
}

#cssmenu ul ul li.has-sub > a:before {
  position: absolute;
  top: 13px;
  right: 14px;
  display: block;
  width: 2px;
  height: 8px;
  background: #a1a2a3;
  content: "";
  -webkit-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#cssmenu ul ul li:last-child > a,
#cssmenu ul ul li.last-item > a {
  border-bottom: 0;
}

#cssmenu ul ul li:hover > a,
#cssmenu ul ul li a:hover {
  color: #e90000;
}

#cssmenu ul ul > li.has-sub:hover > a:before,
#cssmenu ul ul > li.has-sub:active > a:before {
  top: 17px;
  height: 0;
}

#cssmenu ul ul li.has-sub:hover,
#cssmenu ul li.has-sub ul li.has-sub ul li:hover {
  background: #fff;
}

#cssmenu ul ul ul li.active a {
  border-left: 1px solid #444;
}

#cssmenu > ul > li.has-sub > ul > li.active > a,
#cssmenu > ul ul > li.has-sub > ul > li.active > a {
  border-top: 1px solid #444;
}

ul#extramenu {
  position: absolute;
  top: 20px;
  right: 0;
  margin: 0;
  padding: 0;
  height: 32px;
}
ul#extramenu li {
  margin-left: 26px;
}
ul#extramenu li a {
  font-size: 12px;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid #444;
  padding: 9px 16px 9px 16px;
  margin: 0;
}
ul#extramenu li a.active {
  border-color: #e90000;
  color: #e90000;
}

section#main {
  width: 100%;
  position: absolute;
  top: 140px;
  bottom: 0;
  /* basic text styling */
  font-family: arial, sans-serif;
  color: #444;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
}
section#main div#content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  text-align: left;
  width: 980px;
  height: auto;
  min-height: 100px;
  margin: 26px auto 0 auto;
  padding: 40px 0 20px 2px;
}
section#main div#content a {
  color: #e90000;
}
section#main div#content ul {
  list-style: square outside;
  margin-left: 16px;
}
section#main div#content h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #e90000;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
section#main div#content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
}
section#main div#content h4 {
  font-size: 14px;
  font-weight: 600;
  color: #a1a2a3;
}
section#main div#content hr {
  clear: left;
  width: 100%;
  display: inline-block;
  margin-bottom: 22px;
  margin-top: 22px;
}
section#main div#content div.contentbox {
  display: inline-block;
  background: #fff;
}
section#main div#content div.contentbox dl {
  width: 100%;
}
section#main div#content div.contentbox dl dt {
  float: left;
  color: #e90000;
  margin-right: 8px;
}
section#main div#content .itemheader {
  width: 100%;
}
section#main div#content .contentbox.half {
  float: left;
  width: 50%;
}
section#main div#content .contentbox.full {
  width: 100%;
}

section#main {
  display: inline-block;
  width: 100%;
}

section#main.startpage {
  background: url(../img/startpage_desktop.jpg) no-repeat center 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;
  overflow: auto;
}
section#main.startpage div#content {
  background: #fff;
  display: inline-block;
  float: left;
  width: 50%;
}
section#main.startpage div#content div.contentbox {
  width: 488px;
  float: right;
  margin-bottom: 42px;
}

section#main.startpage.en {
  background: url(../img/startpage_desktop_en.jpg) no-repeat center 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

section#main.coverpage > div#content {
  margin: 0 auto;
  width: 980px;
  background-color: #fff;
}
section#main.coverpage > div#content div.contentbox.half {
  width: 50%;
  float: left;
}
section#main.coverpage > div#content div.contentbox.full {
  width: 100%;
}
section#main.coverpage > div#content div.contentbox.full div.text {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  -webkit-column-gap: 70px; /* Chrome, Safari, Opera */
  -moz-column-gap: 70px; /* Firefox */
  column-gap: 70px;
  -webkit-column-width: 360px; /* Chrome, Safari, Opera */
  -moz-column-width: 360px; /* Firefox */
  column-width: 360px;
}

div#coverimage {
  width: 100%;
  height: 100%;
  height: 0;
  background-size: cover;
}

.main-section-2 {
  background: url(../img/beldio_research_2000.jpg) no-repeat center top;
  padding-top: 46%;
}

.main-section-3 {
  background: url(../img/studienteilnehmer_2000.jpg) no-repeat center top;
  padding-top: 36%;
}

.main-section-4 {
  background: url(../img/healthcare_2000.jpg) no-repeat center top;
  padding-top: 42%;
}

@media screen and (min-width: 1024px) {
  .teampage {
    background: url(../img/team_1400.jpg) no-repeat 0 0;
    background-size: 100% auto;
  }
  section#main.teampage > #content {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    /* first bubble needs to be to the right not to be cut off */
    /*    div.hotspot.active > div:focus, */
  }
  section#main.teampage > #content div.hotspot {
    cursor: pointer;
    position: relative;
    top: 0;
    width: 8%;
    height: 100%;
    float: left;
  }
  section#main.teampage > #content div.hotspot:first-child {
    margin-left: 18%;
  }
  section#main.teampage > #content div.hotspot:nth-child(2) {
    margin-left: 4%;
  }
  section#main.teampage > #content div.hotspot:nth-child(2) > div {
    top: 5%;
  }
  section#main.teampage > #content div.hotspot:nth-child(3) {
    margin-left: 2%;
  }
  section#main.teampage > #content div.hotspot:nth-child(3) > div {
    top: 25%;
  }
  section#main.teampage > #content div.hotspot:nth-child(4) {
    margin-left: 2%;
  }
  section#main.teampage > #content div.hotspot:nth-child(4) > div {
    top: 25%;
  }
  section#main.teampage > #content div.hotspot:nth-child(5) {
    margin-left: 2.25%;
  }
  section#main.teampage > #content div.hotspot:nth-child(5) > div {
    top: 12%;
  }
  section#main.teampage > #content div.hotspot:nth-child(6) {
    margin-left: 3%;
  }
  section#main.teampage > #content div.hotspot:nth-child(6) > div {
    top: 5%;
  }
  section#main.teampage > #content div.hotspot > div {
    position: relative;
    top: 10px;
    left: -100px;
    width: 180px;
    display: none;
  }
  section#main.teampage > #content div.hotspot > div > div {
    display: inline-block;
    padding: 14px 14px 34px 18px;
    background: #fff;
  }
  section#main.teampage > #content div.hotspot > div > div h3 {
    text-transform: none;
    color: #e90000;
  }
  section#main.teampage > #content div.hotspot:first-child > div > div {
    float: right;
  }
  section#main.teampage > #content div.hotspot.text_and_image > div {
    width: 240px;
    left: -250px;
  }
  section#main.teampage > #content div.hotspot:first-child.text_and_image > div {
    left: 100%;
  }
  section#main.teampage > #content div.hotspot.active > div {
    display: inline-block;
    -webkit-animation: fadeInFromNone 0.5s ease-out;
    -moz-animation: fadeInFromNone 0.5s ease-out;
    -o-animation: fadeInFromNone 0.5s ease-out;
    animation: fadeInFromNone 0.5s ease-out;
  }
}
section#main.subpage > div#content {
  width: 100%;
}
section#main.subpage > div#content > div.row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
section#main.subpage > div#content div.halfleft {
  width: calc(50% + 10px);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
section#main.subpage > div#content div.halfleft aside {
  height: 100%;
  min-height: 200px;
  width: 45px;
}
section#main.subpage > div#content div.halfleft aside > h1.pagetitle {
  display: inline-block;
  color: #efdbdb;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.4;
  text-transform: uppercase;
  white-space: nowrap;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(270deg); /* FF3.5+ */
  -o-transform: rotate(270deg); /* Opera 10.5 */
  -ms-transform: rotate(270deg); /* IE */
  transform: rotate(-90deg);
  transform-origin: 0 0;
}
section#main.subpage > div#content div.halfleft div.contentbox {
  width: 455px;
  /**      width: 455px; */
}
section#main.subpage > div#content div.halfright {
  width: calc(50% - 80px);
  /*    div.contentbox.text_and_image, div.contentbox.text_ { */
}
section#main.subpage > div#content div.halfright div.contentbox {
  width: 405px;
}
section#main.subpage > div#content div.halfright div.contentbox.image_only {
  position: relative;
  top: -68px;
  width: 100%;
  min-width: 480;
  float: left;
}
section#main.subpage > div#content div.halfright div.contentbox.image_only img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90%;
}

footer {
  position: absolute;
  bottom: 0;
  height: 20px;
  width: 100%;
}

form#kontaktfeld input {
  color: #000;
  border: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
form#kontaktfeld input[type=text] {
  height: 36px;
  width: 100%;
  background-color: #eee;
  padding: 4px 12px 4px 8px;
  margin: 4px 0 4px 0;
}
form#kontaktfeld textarea, form#kontaktfeld select, form#kontaktfeld input {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 14px;
}
form#kontaktfeld textarea {
  border: 0;
  width: 100%;
  height: 200px;
  background-color: #eee;
  padding: 6px 12px 6px 8px;
  margin: 4px 0 4px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
form#kontaktfeld input[type=submit] {
  line-height: 1.25em;
  font-weight: 900;
  font-size: 0.9em;
  text-transform: uppercase;
  padding: 8px 19px 6px 23px;
  background-color: #e90000;
  color: #fff;
  float: right;
}

@media screen and (max-width: 1024px) {
  header {
    position: fixed;
    height: auto;
  }
  .logo {
    padding: 10px 0 0 8px;
  }
  .logo2 {
    display: none;
  }
  nav {
    width: 100%;
  }
  #cssmenu {
    width: 100%;
    /* box-shadow: 0 0 3px 0 $lightgray; */
  }
  #cssmenu ul#mainmenu {
    overflow-y: scroll;
    position: fixed;
    top: 161px;
    max-height: calc(100% - 161px);
  }
  #cssmenu ul {
    width: 100%;
    display: none;
  }
  #cssmenu ul li {
    width: 100%;
    border-top: 1px solid #eee;
  }
  ul#extramenu {
    position: fixed;
    top: 129px;
    left: 0;
    height: 32px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
  }
  ul#extramenu li {
    float: left;
    width: 50%;
    margin: 0;
  }
  ul#extramenu li a {
    font-size: 12px;
    text-transform: uppercase;
    display: inline-block;
    border: 0;
    padding: 9px 16px 9px 16px;
    margin: 0;
  }
  ul#extramenu li a.active {
    border: 0;
    color: #e90000;
  }
  ul#extramenu > li:not(:first-child) {
    border-left: 1px solid #eee;
  }
  #cssmenu > ul > li.has-sub > a {
    padding-bottom: 15px;
  }
  #cssmenu ul ul {
    display: none;
    border: 0;
    background: #fff;
  }
  #cssmenu ul ul li,
  #cssmenu li:active > ul > li,
  #cssmenu li:hover > ul > li {
    height: auto;
  }
  #cssmenu ul li a, #cssmenu ul ul li a {
    width: 100%;
    border-bottom: 0;
  }
  #cssmenu > ul > li {
    background: #fff;
  }
  #cssmenu > ul > li.last {
    border-bottom: 1px solid #eee;
  }
  #cssmenu > #mainmenu > ul > li {
    float: none;
  }
  #cssmenu ul ul li a {
    padding-left: 25px;
  }
  #cssmenu ul ul ul li a {
    padding-left: 35px;
  }
  #cssmenu ul ul li a {
    color: #444;
  }
  #cssmenu ul ul li:hover > a,
  #cssmenu ul ul li.active > a {
    color: #e90000;
  }
  #cssmenu ul ul, #cssmenu ul ul ul {
    position: relative;
    left: 0;
    width: 100%;
    margin: 0;
    text-align: left;
  }
  #cssmenu > ul > li.has-sub > a:after,
  #cssmenu > ul > li.has-sub > a:before,
  #cssmenu ul ul > li.has-sub > a:after,
  #cssmenu ul ul > li.has-sub > a:before {
    display: none;
  }
  #cssmenu #head-mobile {
    display: block;
    padding: 23px;
    color: #444;
    font-size: 12px;
    font-weight: 700;
  }
  .button {
    width: 55px;
    height: 46px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    z-index: 12399994;
  }
  .button:after {
    position: absolute;
    top: 22px;
    right: 20px;
    display: block;
    height: 4px;
    width: 20px;
    border-top: 2px solid #444;
    border-bottom: 2px solid #444;
    content: "";
  }
  .button:before {
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: absolute;
    top: 16px;
    right: 20px;
    display: block;
    height: 2px;
    width: 20px;
    background: #444;
    content: "";
  }
  .button.menu-opened:after {
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
    top: 23px;
    border: 0;
    height: 2px;
    width: 19px;
    background: #e90000;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .button.menu-opened:before {
    top: 23px;
    background: #e90000;
    width: 19px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #cssmenu .submenu-button {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    display: block;
    border-left: 1px solid #eee;
    height: 46px;
    width: 46px;
    cursor: pointer;
  }
  #cssmenu ul ul .submenu-button {
    height: 34px;
    width: 34px;
  }
  #cssmenu .submenu-button:before {
    position: absolute;
    top: 19px;
    right: 22px;
    display: block;
    width: 2px;
    height: 8px;
    background: #a1a2a3;
    content: "";
  }
  #cssmenu .submenu-button:after {
    position: absolute;
    top: 22px;
    right: 19px;
    width: 8px;
    height: 2px;
    display: block;
    background: #a1a2a3;
    content: "";
  }
  #cssmenu li.active .submenu-button:before, #cssmenu li.active .submenu-button:after {
    background: #e90000;
  }
  #cssmenu ul ul .submenu-button:after {
    top: 15px;
    right: 13px;
  }
  #cssmenu .submenu-button.submenu-opened:after {
    background: #e90000;
  }
  #cssmenu ul ul .submenu-button:before {
    top: 12px;
    right: 16px;
  }
  #cssmenu .submenu-button.submenu-opened:before {
    display: none;
  }
  #cssmenu ul ul ul li.active a {
    border-left: none;
  }
  #cssmenu > ul > li.has-sub > ul > li.active > a,
  #cssmenu > ul ul > li.has-sub > ul > li.active > a {
    border-top: none;
  }
  section#main {
    top: 130px;
    width: 100%;
    padding-top: 30px;
  }
  section#main div#content {
    width: 100%;
    border: 0;
    padding: 0;
  }
  section#main div#content h2 {
    margin-bottom: 20px;
  }
  section#main div#content h2.half {
    width: 100%;
  }
  section#main div#content > div.itemheader {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 10px 0 10px;
  }
  section#main div#content div.contentbox {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    font-size: 16px;
    padding: 0 10px 20px 10px;
    float: none;
  }
  section#main div#content div.contentbox.half {
    width: 100%;
  }
  section#main div#content div#cbox_1_0 {
    width: auto;
    margin-right: 0;
  }
  section#main.startpage > div#content {
    width: 100%;
  }
  section#main.startpage > div#content div.contentbox {
    float: none;
  }
  section#main.coverpage > div#content {
    width: 100%;
    border: 0;
  }
  section#main.subpage > div#content > div.row {
    display: block;
  }
  section#main.subpage > div#content > div.row > div.halfleft, section#main.subpage > div#content > div.row div.halfright {
    position: static;
    display: block;
    width: 100%;
  }
  section#main.subpage > div#content > div.row > div.halfleft aside, section#main.subpage > div#content > div.row div.halfright aside {
    display: none;
  }
  section#main.subpage > div#content > div.row > div.halfleft div.contentbox, section#main.subpage > div#content > div.row div.halfright div.contentbox {
    width: 100%;
  }
  section#main.subpage > div#content > div.row > div.halfright > div.contentbox.image_only {
    position: static;
    width: 100%;
    padding: 0;
  }
  section#main.subpage > div#content > div.row > div.halfright > div.contentbox.medium {
    width: 100%;
  }
  section#main.subpage > div#content > div.row > div.halfright > div.contentbox.medium img {
    margin: -6px; /* borderless image */
    max-width: 100%;
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 1023px) {
  section#main.teampage > #content {
    margin: 0;
    padding-left: 10px;
    width: 100%;
    height: 100%;
  }
  section#main.teampage > #content div.hotspot {
    position: static;
  }
  section#main.teampage > #content div.hotspot:not(:first-child) {
    padding-top: 24px;
    border-top: 1px solid #eee;
  }
  section#main.teampage > #content div.hotspot > div {
    position: static;
    width: 100%;
    display: block;
  }
  section#main.teampage > #content div.hotspot > div > div {
    padding: 0;
  }
  section#main.teampage > #content div.hotspot > div > div h3 {
    text-transform: none;
  }
  section#main.teampage > #content div.hotspot.nonex {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  section#main.startpage {
    background: url(../img/startpage_mobile.jpg) no-repeat 0 0;
    background-size: 100% auto;
  }
  section#main.startpage.en {
    background: url(../img/startpage_mobile_en.jpg) no-repeat 0 0;
    background-size: 100% auto;
  }
  .main-section-2 {
    background: url(../img/beldio_research_mobile.jpg) no-repeat center top;
    padding-top: 60%;
  }
  .main-section-3 {
    background: url(../img/studienteilnehmer_mobile.jpg) no-repeat center top;
    padding-top: 48%;
  }
  .main-section-4 {
    background: url(../img/healthcare_mobile.jpg) no-repeat center top;
    padding-top: 44%;
  }
}
@media screen and (min-width: 480px) and (max-width: 768px) {
  section#main.startpage {
    background: url(../img/startpage_tablet.jpg) no-repeat 0 25%;
    background-size: 100% auto;
  }
  section#main.startpage.en {
    background: url(../img/startpage_tablet_en.jpg) no-repeat 0 25%;
    background-size: 100% auto;
  }
}
@media screen and (min-width: 480px) and (max-width: 1024px) {
  .main-section-2 {
    background: url(../img/beldio_research_tablet.jpg) no-repeat center top;
    padding-top: 60%;
  }
  .main-section-3 {
    background: url(../img/studienteilnehmer_tablet.jpg) no-repeat center top;
    padding-top: 44%;
  }
  .main-section-4 {
    background: url(../img/healthcare_tablet.jpg) no-repeat center top;
    padding-top: 50%;
  }
}

/*# sourceMappingURL=beldio.css.map */
