/************************************************

Stylesheet: Global Stylesheet

*************************************************/
/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants.

******************************************************************/
/*********************
TOOLS
*********************/
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;600&display=swap");
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
COLORS
*********************/
/*
element {
     @include background-opacity(#333, 0.5);
}
*/
/*
.fade {
  @include opacity(.4);
}
*/
/*********************
TYPOGRAPHY
*********************/
/*
@include font-face("MyFont", "path/to/MyFont", $style: normal, $weight: normal)
*/
/* rem Umwandlung */
/*
.demo {
  font-size: rem(24px); // Simple
  padding: rem(5px 10px); // Multiple values
  border-bottom: rem(1px solid black); // Multiple mixed values
  box-shadow: rem(0 0 2px #ccc, inset 0 0 5px #eee); // Comma-separated values
  text-shadow: rem(1px 1px) #eee, rem(-1px) 0 #eee; // Alternate use
}
*/
/* breakpoints (wie foundation) */
/*
.sidebar {
  width: 60%;
  float: left;
  margin: 0 2% 0 0;
  @include bp-small {
    width: 100%;
    float: none;
    margin: 0;
  }
}	
	
*/
/*********************
Margin/Padding
*********************/
.m0 {
  margin: 0px;
}
.p0 {
  padding: 0px;
}
.mt0 {
  margin-top: 0px;
}
.pt0 {
  padding-top: 0px;
}
.mb0 {
  margin-bottom: 0px;
}
.pb0 {
  padding-bottom: 0px;
}
.ml0 {
  margin-left: 0px;
}
.pl0 {
  padding-left: 0px;
}
.mr0 {
  margin-right: 0px;
}
.pr0 {
  padding-right: 0px;
}
.m5 {
  margin: 5px;
}
.p5 {
  padding: 5px;
}
.mt5 {
  margin-top: 5px;
}
.pt5 {
  padding-top: 5px;
}
.mb5 {
  margin-bottom: 5px;
}
.pb5 {
  padding-bottom: 5px;
}
.ml5 {
  margin-left: 5px;
}
.pl5 {
  padding-left: 5px;
}
.mr5 {
  margin-right: 5px;
}
.pr5 {
  padding-right: 5px;
}
.m10 {
  margin: 10px;
}
.p10 {
  padding: 10px;
}
.mt10 {
  margin-top: 10px;
}
.pt10 {
  padding-top: 10px;
}
.mb10 {
  margin-bottom: 10px;
}
.pb10 {
  padding-bottom: 10px;
}
.ml10 {
  margin-left: 10px;
}
.pl10 {
  padding-left: 10px;
}
.mr10 {
  margin-right: 10px;
}
.pr10 {
  padding-right: 10px;
}
.m15 {
  margin: 15px;
}
.p15 {
  padding: 15px;
}
.mt15 {
  margin-top: 15px;
}
.pt15 {
  padding-top: 15px;
}
.mb15 {
  margin-bottom: 15px;
}
.pb15 {
  padding-bottom: 15px;
}
.ml15 {
  margin-left: 15px;
}
.pl15 {
  padding-left: 15px;
}
.mr15 {
  margin-right: 15px;
}
.pr15 {
  padding-right: 15px;
}
.m20 {
  margin: 20px;
}
.p20 {
  padding: 20px;
}
.mt20 {
  margin-top: 20px;
}
.pt20 {
  padding-top: 20px;
}
.mb20 {
  margin-bottom: 20px;
}
.pb20 {
  padding-bottom: 20px;
}
.ml20 {
  margin-left: 20px;
}
.pl20 {
  padding-left: 20px;
}
.mr20 {
  margin-right: 20px;
}
.pr20 {
  padding-right: 20px;
}
.m25 {
  margin: 25px;
}
.p25 {
  padding: 25px;
}
.mt25 {
  margin-top: 25px;
}
.pt25 {
  padding-top: 25px;
}
.mb25 {
  margin-bottom: 25px;
}
.pb25 {
  padding-bottom: 25px;
}
.ml25 {
  margin-left: 25px;
}
.pl25 {
  padding-left: 25px;
}
.mr25 {
  margin-right: 25px;
}
.pr25 {
  padding-right: 25px;
}
.m30 {
  margin: 30px;
}
.p30 {
  padding: 30px;
}
.mt30 {
  margin-top: 30px;
}
.pt30 {
  padding-top: 30px;
}
.mb30 {
  margin-bottom: 30px;
}
.pb30 {
  padding-bottom: 30px;
}
.ml30 {
  margin-left: 30px;
}
.pl30 {
  padding-left: 30px;
}
.mr30 {
  margin-right: 30px;
}
.pr30 {
  padding-right: 30px;
}
.m35 {
  margin: 35px;
}
.p35 {
  padding: 35px;
}
.mt35 {
  margin-top: 35px;
}
.pt35 {
  padding-top: 35px;
}
.mb35 {
  margin-bottom: 35px;
}
.pb35 {
  padding-bottom: 35px;
}
.ml35 {
  margin-left: 35px;
}
.pl35 {
  padding-left: 35px;
}
.mr35 {
  margin-right: 35px;
}
.pr35 {
  padding-right: 35px;
}
.m40 {
  margin: 40px;
}
.p40 {
  padding: 40px;
}
.mt40 {
  margin-top: 40px;
}
.pt40 {
  padding-top: 40px;
}
.mb40 {
  margin-bottom: 40px;
}
.pb40 {
  padding-bottom: 40px;
}
.ml40 {
  margin-left: 40px;
}
.pl40 {
  padding-left: 40px;
}
.mr40 {
  margin-right: 40px;
}
.pr40 {
  padding-right: 40px;
}
.m45 {
  margin: 45px;
}
.p45 {
  padding: 45px;
}
.mt45 {
  margin-top: 45px;
}
.pt45 {
  padding-top: 45px;
}
.mb45 {
  margin-bottom: 45px;
}
.pb45 {
  padding-bottom: 45px;
}
.ml45 {
  margin-left: 45px;
}
.pl45 {
  padding-left: 45px;
}
.mr45 {
  margin-right: 45px;
}
.pr45 {
  padding-right: 45px;
}
.m50 {
  margin: 50px;
}
.p50 {
  padding: 50px;
}
.mt50 {
  margin-top: 50px;
}
.pt50 {
  padding-top: 50px;
}
.mb50 {
  margin-bottom: 50px;
}
.pb50 {
  padding-bottom: 50px;
}
.ml50 {
  margin-left: 50px;
}
.pl50 {
  padding-left: 50px;
}
.mr50 {
  margin-right: 50px;
}
.pr50 {
  padding-right: 50px;
}
.m75 {
  margin: 75px;
}
.p75 {
  padding: 75px;
}
.mt75 {
  margin-top: 75px;
}
.pt75 {
  padding-top: 75px;
}
.mb75 {
  margin-bottom: 75px;
}
.pb75 {
  padding-bottom: 75px;
}
.ml75 {
  margin-left: 75px;
}
.pl75 {
  padding-left: 75px;
}
.mr75 {
  margin-right: 75px;
}
.pr75 {
  padding-right: 75px;
}
.m100 {
  margin: 100px;
}
.p100 {
  padding: 100px;
}
.mt100 {
  margin-top: 100px;
}
.pt100 {
  padding-top: 100px;
}
.mb100 {
  margin-bottom: 100px;
}
.pb100 {
  padding-bottom: 100px;
}
.ml100 {
  margin-left: 100px;
}
.pl100 {
  padding-left: 100px;
}
.mr100 {
  margin-right: 100px;
}
.pr100 {
  padding-right: 100px;
}
/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/* order radius */
/* list reset*/
/*********************
Centering
*********************/
/*
.parent {
  position: relative;
}
.child {
  @include centerer;
} 
*/
/*--------------------------------------------------------------*/
/* All SASS Variables */
/*--------------------------------------------------------------*/
/*** Colors ***/
/*** Fonts ***/
/*** Margin-Padding ***/
/*--------------------------------------------------------------*/
/* Global */
/*--------------------------------------------------------------*/
/*--------------------------------------------------------------*/
/* Layout */
/*--------------------------------------------------------------*/
body {
  background: rgba(47, 61, 70, 0.4);
  font-family: "Roboto", sans-serif;
  font-size: 1.125rem;
}
.outer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
}
.content {
  margin-top: 145px;
  position: relative;
  padding: 0px 0 0px;
  z-index: 2;
  background: #fff;
}
.home .content {
  margin-top: 645px;
}
@media only screen and (max-width: 64em) {
  .home .content {
    margin-top: 570px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .home .content {
    margin-top: 145px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .content {
    margin-top: 145px;
    padding: 0px 0 0px;
  }
}
/*********************
HEADER
*********************/
.top-bar, .top-bar ul {
  background: transparent;
}
.header {
  top: 0;
  position: fixed;
  height: 145px;
  max-width: 1200px;
  width: 100%;
  z-index: 5;
  background: #fff;
  border-bottom: 1px solid #2F3D46;
}
@media only screen and (max-width: 64em) {
  .header {
    width: 100%;
  }
}
.header .top-bar {
  padding: 40px 50px;
}
@media only screen and (max-width: 39.9375em) {
  .header .top-bar {
    padding: 20px 20px 0;
  }
}
.header .top-bar .logo a {
  font-weight: 600;
  color: #0094D3;
  font-size: 2.5vw;
  text-decoration: none;
}
@media only screen and (max-width: 39.9375em) {
  .header .top-bar .logo a {
    font-size: 7vw;
  }
}
.header .top-bar .lang {
  position: absolute;
  top: 10px;
  right: 40px;
}
.header .top-bar .lang .lang_selector {
  font-size: 22px;
  color: #000;
}
.header .top-bar .lang .lang_selector a {
  color: #000;
  font-size: 22px;
  font-weight: 700;
}
.header .top-bar .lang .lang_selector a.active {
  color: #EE8B26;
  outline: none;
}
.header .top-bar .lang .lang_selector a:focus {
  outline: none;
}
@media only screen and (max-width: 39.9375em) {
  .header .top-bar .lang {
    top: 10px;
    right: 10px;
  }
  .header .top-bar .lang .lang_selector {
    font-size: 18px;
  }
  .header .top-bar .lang .lang_selector a {
    font-size: 18px;
  }
}
.header .top-bar .mobileTrigger {
  position: relative;
  width: 50px;
  height: 50px;
  left: 0px;
  z-index: 15;
}
.headerImg {
  max-width: 1200px;
  display: none;
  height: 500px;
  position: fixed;
  top: 145px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media only screen and (max-width: 64em) {
  .headerImg {
    height: 400px;
  }
}
.headerImg .hl-logo {
  position: absolute;
  right: 20px;
  bottom: 50px;
}
.headerImg .hl-logo img {
  width: 200px;
}
@media only screen and (max-width: 39.9375em) {
  .headerImg .hl-logo {
    bottom: 20px;
  }
  .headerImg .hl-logo img {
    width: 100px;
  }
}
.headerImg .n-logo {
  position: absolute;
  left: 20px;
  bottom: 10px;
}
.headerImg .n-logo img {
  width: 300px;
}
@media only screen and (max-width: 39.9375em) {
  .headerImg .n-logo img {
    width: 150px;
  }
}
@media only screen and (max-width: 39.9375em) {
  .headerImg {
    position: relative;
    background-position: center top;
    background-size: contain;
    width: 100%;
    height: 0;
    padding-top: 66.64%;
  }
}
.home .headerImg {
  display: block;
}
@media only screen and (max-width: 39.9375em) {
  .home .headerImg {
    position: relative;
    height: auto;
    padding-top: 0;
  }
}
/*********************
NAVIGATION
*********************/
.off-canvas {
  background: #2F3D46;
}
.off-canvas .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
}
.off-canvas.position-right {
  width: 330px;
  z-index: 33;
}
.off-canvas .menu {
  margin-top: 145px;
  border-top: 1px solid #fff;
}
.off-canvas .menu li {
  border-bottom: 1px solid #fff;
}
.off-canvas .menu li a {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  background: transparent;
  line-height: 1.1;
  color: #fff;
  padding: 25px 10px;
  text-decoration: none;
}
.off-canvas .menu li a:focus {
  outline: 0;
  border: 0;
}
.off-canvas .menu li.active, .off-canvas .menu li:hover {
  background: #EE8B26;
}
.off-canvas .menu li.active a, .off-canvas .menu li:hover a {
  background: transparent;
}
.off-canvas .menu li .submenu-toggle {
  top: 13px;
}
.off-canvas .menu li .submenu-toggle:after {
  display: block;
  width: 0;
  height: 0;
  border: inset 10px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #fff transparent transparent !important;
  top: 0;
  bottom: 0;
  margin: auto;
}
.off-canvas .menu li .submenu-toggle:focus {
  outline: 0;
}
.off-canvas .menu li .submenu {
  border: 0;
  margin-top: 0;
}
.off-canvas .menu li .submenu li {
  border: 0;
}
.off-canvas .menu li .submenu li a {
  text-transform: none;
  font-size: 16px;
  padding: 10px 20px;
}
/*********************
TYPOGRAFIE
font-awesome: https://fontawesome.com/how-to-use/web-fonts-with-css#less-and-sass
*********************/
h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}
h1 {
  font-size: 2.5rem;
  color: #0094D3;
  padding-top: 0;
  margin-top: 80px;
}
.txt-content h1 {
  margin-top: 0px;
}
.home h1.page-title {
  display: none;
}
h2 {
  font-size: 2.125rem;
  color: #0094D3;
}
@media only screen and (max-width: 39.9375em) {
  h2 {
    font-size: 1.625rem;
  }
}
h3 {
  font-size: 1.5rem;
}
@media only screen and (max-width: 39.9375em) {
  h3 {
    font-size: 1.25rem;
  }
}
p {
  margin-bottom: 1.25rem;
}
a, a:active, a:hover, a:visited {
  color: #0094D3;
  text-decoration: none;
}
a:active, a:hover {
  color: #000;
  text-decoration: underline;
}
.button, a.button {
  background: #EE8B26;
  color: #fff;
  font-size: 1.125rem;
}
.button:hover, a.button:hover {
  background: rgba(238, 139, 38, 0.7);
  color: #000;
}
/*********************
SIDEBARS & ASIDES
*********************/
.sidebar li {
  list-style: none;
}
.widget ul {
  margin: 0;
}
/*********************
FOOTER STYLES
*********************/
.footer {
  position: relative;
  z-index: 15;
  clear: both;
  background: #2F3D46;
  padding: 30px 50px;
  color: #fff;
}
@media only screen and (max-width: 39.9375em) {
  .footer {
    padding: 30px 10px;
  }
}
.footer a {
  color: #fff;
}
.footer .hl-logo {
  margin-top: 20px;
  display: block;
}
.footer .hl-logo img {
  max-width: 200px;
}
@media only screen and (max-width: 39.9375em) {
  .footer .hl-logo {
    display: block;
    margin: 20px 0;
  }
  .footer .hl-logo img {
    max-width: 100%;
  }
}
.to-top {
  background-color: rgba(255, 255, 255, 0.75);
  display: none;
  z-index: 999;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  text-align: center;
  vertical-align: middle;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
/*********************
POSTS & CONTENT STYLES
*********************/
.page-title .vcard {
  border: 0px;
  padding: 0px;
}
.byline {
  color: #999;
}
.entry-content img {
  max-width: 100%;
  height: auto;
}
.entry-content .alignleft, .entry-content img.alignleft {
  margin-right: 1.5em;
  display: inline;
  float: left;
}
.entry-content .alignright, .entry-content img.alignright {
  margin-left: 1.5em;
  display: inline;
  float: right;
}
.entry-content .aligncenter, .entry-content img.aligncenter {
  margin-right: auto;
  margin-left: auto;
  display: block;
  clear: both;
}
.entry-content video, .entry-content object {
  max-width: 100%;
  height: auto;
}
.entry-content pre {
  background: #eee;
  border: 1px solid #cecece;
  padding: 10px;
}
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
}
.wp-caption img {
  max-width: 100%;
  margin-bottom: 0;
  width: 100%;
}
.wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 4px 0 7px;
  text-align: center;
}
.post-password-form input[type="submit"] {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  font-family: inherit;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #1779ba;
  color: #fefefe;
}
[data-whatinput="mouse"] .post-password-form input[type="submit"] {
  outline: 0;
}
.post-password-form input[type="submit"]:hover, .post-password-form input[type="submit"]:focus {
  background-color: #14679e;
  color: #fefefe;
}
/*********************
 Blocks
*********************/
.block-2-col {
  padding: 0px 0;
  min-height: 350px;
}
.block-2-col .img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.block-2-col .img-wrap .child {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
  max-height: 500px;
}
.home .block-2-col .img-wrap .child.no-anim {
  max-height: none;
}
@media only screen and (max-width: 39.9375em) {
  .block-2-col .img-wrap .child {
    height: 350px;
  }
}
.block-2-col .txt-wrap {
  color: #000;
  padding-top: 30px;
  padding-bottom: 30px;
}
.block-2-col.color-1 {
  background-color: #fff;
}
.block-2-col.color-2 {
  background-color: #0094D3;
}
.block-2-col.color-2 .txt-wrap {
  color: #fff;
}
.block-2-col.color-2 .txt-wrap h2 {
  color: #EE8B26;
}
.block-2-col.color-2 .txt-wrap h3 {
  color: #fff;
}
.block-2-col.color-3 {
  background-color: #006A98;
}
.block-2-col.color-3 .txt-wrap {
  color: #fff;
}
.block-2-col.color-3 .txt-wrap h2 {
  color: #EE8B26;
}
.block-2-col.color-3 .txt-wrap h3 {
  color: #fff;
}
.block-2-col.nopad .txt-wrap {
  padding-top: 0;
}
.parallax-window {
  min-height: 400px;
  background: transparent;
}
@media only screen and (max-width: 39.9375em) {
  .parallax-window {
    min-height: 600px;
  }
}
.parallax-mirror {
  z-index: 3 !important;
}
.rahmen {
  margin: 50px 0;
}
.wp-block-separator {
  margin: 80px 0;
}
/*********************
PLUGIN STYLES
*********************/
@media only screen and (max-width: 39.9375em) {
  .mapWrap {
    margin: 40px 0;
  }
}
/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=style.css.map */