html,
body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  /* Needed for Intro Logo, ruins FF Debuger */
  /* visibility: hidden; */
}

/* For navbar-fixed-top */
body.extra-margin {
  margin-top: 90px;
}

.row {
  margin-left: -6px;
  margin-right: -6px;
}

a:focus {
  outline: none;
}

/* Logo Overlay */

#logoOverlay {
  position: fixed;
  display: none;
  visibility: visible;
  z-index: 2000;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-image: url('../images/logo.png');
  background-size: 650px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Navbar */

.navbar {
  margin-bottom: 0;
  background: #fff;
  border: none;
  min-height: 80px;
  padding: 0 30px;
}

.navbar > .container-fluid .navbar-brand {
  margin-right: 15px;
  height: auto;
}

.navbar-brand img {
  max-height: 60px;
  width: auto !important;
}

.navbar .navbar-nav,
.language-switch {
  margin-top: 20px;
}

.navbar .navbar-nav {
  margin-left: 50px;
}

.nav > li > a {
  color: #0965ae;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 15px 35px 15px;
  margin-top: 0;
  margin-bottom: 0;
}

.nav > li > a:hover,
.nav > li:hover > a,
.nav > li > a:focus,
.nav > li.current > a {
  background-color: #0965ae;
  color: #fff;
}

.nav > li > a:hover,
.nav > li.current > a,
.nav > li.active > a {
  padding-bottom: 35px;
  margin-bottom: 0;
}

.nav > li.current > a,
.nav > li.active > a {
  margin-bottom: 0;
  background-color: #0965ae;
  color: #fff;
}

/* Dropdown */

.dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: #0965ae;
}

.navbar-nav.nav > li,
.navbar-nav .dropdown-menu > li {
  position: relative;
}

.navbar-nav > li:hover .dropdown-menu {
  display: inline;
}

.navbar-nav > li > .dropdown-menu {
  top: calc(100%);
  left: 0;
  height: auto;
  max-width: 100px;
}

.navbar-nav > li > .dropdown-menu > li,
.navbar-nav .dropdown-menu > li > a {
  display: inline-block;
}

.navbar-nav > li > .dropdown-menu > li {
  display: inline-block;
  width: 100%;
  background: transparent;
}

.navbar-nav > li > .dropdown-menu > li > a {
  padding: 0 17px;
  line-height: 28px;
  width: 100%;
}

.navbar-nav > li > .dropdown-menu > li:hover > a {
  background-color: #fff;
  color: #0965ae;
}

.dropdown-menu > .active > a {
  background-color: transparent;
  color: #9c9d9f;
}

/* Dropdown Third Level */

.dropdown-menu {
  display: none;
}

.navbar-nav > li {
  position: relative;
}

.navbar-nav > li > .dropdown-menu > li:hover .dropdown-menu-second {
  display: block;
}

.dropdown-menu-second {
  position: absolute;
  display: none;
  margin-top: 5px;
  padding: 0;
  color: #0965ae;
  list-style-type: none;
  left: 0;
  float: left;
  width: 70vw;
}

.dropdown-menu-second li {
  display: block;
  float: left;
  background-color: #fff;
}

.dropdown-menu-second li > a {
  display: block;
  padding: 5px 17px 7px 17px;
}

.dropdown-menu-second li:hover > a {
  color: #9c9d9f;
  text-decoration: none;
}

/* Extra Links */

.extra-links {
  display: none;
  padding-top: 27px;
  margin-right: 20px;
}

/*
.extra-links > a{
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1.2em;
    font-weight: 600;
    color: #004493;
    padding: 0 10px;
}*/

.extra-links > a {
  font-size: 1.2em;
  font-weight: 600;
  color: #0965ae;
  padding: 0 10px;
}

.extra-links > a:hover {
  text-decoration: none;
}

.extra-links .downdloads::before {
  content: '';
  display: inline-block;
  display: none;
  height: 30px;
  width: 30px;

  background-image: url('../images/icons/downloads.svg');
  background-size: 100%;
}

/* Language Dropdown */

.language-switch {
  max-height: 38px;
}

.language-switch li:not(.active) {
  visibility: hidden;
}

.language-switch .dropdown-menu > li {
  visibility: visible;
}

.language-switch > li > a {
  margin-bottom: 5px;
}

.language-switch > li.active > a {
  position: relative;
  display: block;
  background-color: transparent;
  color: #0965ae;
  min-width: 38px;
  padding: 10px 0 35px 0;
}

.language-switch > li.active > a::after {
  content: '';
  display: block;
  position: absolute;
  top: 12px;
  right: 0;
  width: 15px;
  height: 15px;
  background-image: url('../images/icons/down.svg');
  background-position: center;
  -webkit-background-size: 100%;
  background-size: 100%;
}

.language-switch > li.active:hover .dropdown-menu {
  display: block;
  width: 38px;
}

.language-switch .dropdown-menu {
  top: 35px;
  left: -9px;
  display: none;
  width: 38px;
  min-width: 0;
}

.language-switch .dropdown-menu li {
  width: 100%;
}

.language-switch .dropdown-menu li > a {
  padding: 3px 0;
  text-align: center;
  width: 100%;
}

/* search */

#search {
  position: relative;
  margin-top: 25px;
  margin-left: 10px;
  overflow-x: hidden;
  height: 30px;
  width: 40px;
  -webkit-transition: width 0.5s ease;
  -moz-transition: width 0.5s ease;
  -ms-transition: width 0.5s ease;
  -o-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

#search.open {
  width: 235px;
}

#search-btn {
  position: absolute;
  right: 0;
  font-size: 1em;
  color: #0965ae;
  text-align: center;
  line-height: 30px;
  cursor: pointer;
}

#search-btn > button {
  background: transparent;
  padding: 0;
  border: none;
}

#search-btn > button:focus {
  outline: none;
  border: none;
}

#search-term {
  position: absolute;
  right: 45px;
}

#search-term.open {
  left: 180px;
}

#search-term > input {
  height: 30px;
  width: 170px;
  border-radius: 0;
  border: solid 1px #0965ae;
}

.search {
  position: relative;
  overflow-x: hidden;
  margin-left: 30px;
  margin-top: 30px;
  color: #0965ae;
}

.search-btn {
  border: none;
  background-color: #fff;
  padding: 6px 25px 6px 25px;
}

.search-btn > i {
  font-size: 1.2em;
  color: #0965ae;
}

.search-field {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
  width: 170px;
}

.search-field.closed {
  width: 0;
}

.search-field > input {
  color: #0965ae;
  border: solid 1px #0965ae;
}

.search-field > input:focus {
  border-color: #0965ae;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px #0965ae;
  box-shadow: none;
}

.search-btn:hover,
.search-btn:active,
.search-btn:focus {
  background: #fff;
  box-shadow: none;
}

#home #pageHeadingImage {
  display: none !important;
}

#pageHeadingImage {
  display: none;
  width: 100%;
  height: auto;
  min-height: 450px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#pageHeadingImage.visible {
  display: block;
}

#detailPage #pageHeadingImage {
  display: none;
  visibility: hidden;
}

#pageHeadingImage img {
  width: 100%;
}

.slider-wrap {
  position: relative;
}

#topSlider {
  display: none;
}

.slick-dotted.slick-slider {
  margin-bottom: 6px;
}

#home #topSlider {
  display: block;
}

#sliderSidebar {
  display: none;
  position: absolute;
  top: 17.3%;
  right: 0;
  padding: 0 50px;
}

#home #sliderSidebar {
  display: block;
}

#sliderSidebar p {
  font-size: 1.2em;
}

.slick-prev {
  left: 70px;
}

.slick-next {
  right: 70px;
}

#topSlider .slick-image {
  position: relative;
  text-align: center;
}

#topSlider .slick-image > img {
  display: inline;
  max-width: 100%;
  //max-height: 600px;
  width: 100%;
}

#topSlider .text {
  display:none;
  position: absolute;
  width: 100%;
  left: 0;
  top: 18%;
  color: #000;
  background-color: transparent;
  text-align: left;
}

#topSlider .text > p:first-child {
  color: #0965ae;
  font-weight: 900;
  text-transform: uppercase;
}

#topSlider .text > p {
  font-size: 1em;
  background-color: #fff;
  padding-left: 100px;
  margin-bottom: 7px;
  min-height: 20px;
}

#topSlider .text .slick-dotted.slick-slider {
  margin-bottom: 6px;
}

/* Breadcrumb */
#breadcrumb {
  display: none;
  position: absolute;
  z-index: 4;
  width: 100%;
  background-color: #fff;
  padding: 5px 30px;
  margin-top: 5px;

  list-style-type: none;
  color: #9c9d9f;
}

#breadcrumb i {
  color: #0965ae;
}

#breadcrumb a {
  color: #0965ae;
  text-decoration: none;
}

/* Hover Box */

a.box {
  cursor: pointer;
}

.box {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 6px;
  height: 400px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.linkboxen {
  clear: both;
  margin-bottom: 50px;
}

.box.boxlink h2,
.box.boxlink .subtitle,
.box.boxlink .text {
  position: relative;
  top: 0;
  left: 0;
  z-index: 3;
  padding-left: 30px;
  margin-bottom: 10px !important;
}

.box.boxlink h2 {
  padding-top: 30px;
  margin: 0;
}

.box.boxlink .subtitle {
  font-weight: bold;
  display: block;
  padding-bottom: 20px;
}

.box.boxlink .text {
  position: relative;
  top: 0;
  left: 0;
  z-index: 3;
  width: calc(100% - 60px);
  display: none;
}

.box.boxlink .title {
  /* background: black; */
  background: rgba(0, 0, 0, 0.25);
}

.news .article.box {
  margin-bottom: 6px;
}

.news .person.box:hover {
  background-color: #0965ae;
  background-image: none !important;
}

.news .person.box:hover .header {
  background: none;
}

.news .person.box .header {
  background: rgba(0, 0, 0, 0.5);
  position: relative;
  left: 0;
  top: 0;
}

.news .person.box.withColor .header {
  background: none;
}
.news .person.box .header .position {
  padding-top: 35px;
  padding-left: 30px;
  position: relative;
  left: 0;
  top: 0;
}

.news .person.box .header h2 {
  padding-top: 10px;
  padding-left: 30px;
  position: relative;
  left: 0;
  top: 0;
  padding-bottom: 30px;
}

.news .person.box .text {
  position: relative;
  left: 0;
  top: 0;
  padding-top: 10px;

  padding-left: 30px;
}
.news .person.box .text .teaser-text {
  position: relative;
  left: 0;
  top: 0;
}

.box:focus,
.box:active {
  color: #fff;
}

.box.blue {
  background-color: #0965ae;
  height: 400px;
}

#home .box ul {
  list-style-type: none;
  font-size: 0.7em;
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 30px;
}

#home .box ul > li {
  margin-bottom: 5px;
}

.box img {
  max-width: 100%;
}

.contactperson.box {
  height: auto;
}

.box .box-link {
  color: #fff;
}

.box .box-link > h2 {
  padding-left: 30px;
}

.box .box-link > h2::before {
  content: '\e164';
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  width: 20px;
  height: 20px;

  line-height: 33px;
  font-size: 0.6em;

  position: absolute;
  left: 0;
}

.box .text {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 85px;
  width: calc(100% - 60px);
  display: none;
}

.box:hover .text {
  display: block;
}

.box .text a {
  color: #fff;
}

.box .text > p.white-lines {
  font-size: 14px;
  background-color: #fff;
  color: #000;
  padding-left: 30px;
  margin-bottom: 7px;
  min-height: 20px;
}

.person.box .position {
  position: absolute;
  z-index: 3;
  top: 35px;
  left: 30px;
}

.person.box h2 {
  top: 60px;
}

.person.box .text {
  top: 105px;
}

/* + */
.box::before {
  content: '+';
  position: absolute;
  z-index: 4;
  top: 15px;
  right: 40px;
  font-size: 3em;
}

/* Blue overlay */
.box::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: none;
  width: calc(100%);
  height: 100%;
  background-color: #0965ae;
  opacity: 1;
}

.box:hover {
  color: #fff;
  text-decoration: none;
}

.box:hover::after {
  display: block;
}

.box {
  color: #fff;
}

#content .box h2 {
  color: #ffffff;
}

.box h2,
.box .subtitle,
.box .text {
  position: absolute;
  z-index: 3;
  left: 30px;
}

.box h2 {
  top: 30px;
  margin: 0;
}

.box .subtitle {
  top: 70px;
  position: absolute;
  font-weight: bold;
}

.reference.box .text {
  top: 105px;
}

.reference.box h2 {
  top: 30px;
}

/* Content  */

#content {
  padding-right: 500px;
}

#home #content {
  padding: 0;
}

#content h1 {
  color: #0965ae;
  font-weight: bold;
  margin-top: 60px;
  margin-bottom: 10px;
}

#content h1,
#sliderSidebar h1,
.news-single .article h1 {
  color: #000;
  font-weight: 900;
  font-size: 1.3em;
  line-height: 1.5em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

#sliderSidebar h1 {
  margin-top: 0;
}

#content h2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 60px;
}

#content p,
#sliderSidebar p,
.news-single .article p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

#content p:last-child {
  margin-bottom: 60px;
}

#content .table p:last-child {
  margin-bottom: 0;
}

.news-list-view {
  margin-top: 6px;
}

/* Footer */

#footer {
  background-color: #9c9d9f;
  color: #fff;
  padding: 30px 0 50px 0;
}

#footer .location {
  margin-bottom: 30px;
}

#footer .location > i {
  top: 5px;
  font-size: 25px;
  margin-right: 10px;
}

#footer strong,
#footer .location {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.1em;
}

#footer p {
  margin-bottom: 50px;
}

#footer a {
  color: #fff;
  border-bottom: solid 1px #fff;
}

#footer a:hover {
  text-decoration: none;
  font-style: italic;
}

#footer .row {
  position: relative;
}

#footer .socialMedia {
  position: absolute;
  right: 0;
  bottom: 0;
  list-style-type: none;
}

#footer .socialMedia > li {
  display: inline-block;
  margin-right: 10px;
}

#footer .socialMedia > li > a {
  display: inline-block;
  border: none;
}

#footer .socialMedia > li > a > img {
  height: 24px;
  width: 24px;
}

.persons .box.person .header {
  background: rgba(0, 0, 0, 0.25);

  padding-top: 35px;

  padding-bottom: 20px;
  padding-left: 30px;
}

.persons .box.person .header .position {
  position: relative;
  left: 0;
  top: 0;
  padding-bottom: 10px;
  display: inline-block;
}

.persons .box.person .header h2 {
  position: relative;
  left: 0;
  top: 0;
}

.persons .box.person .text {
  position: relative;
  top: 0;
  left: 0;
  padding-left: 30px;
}
