@charset "UTF-8";
/******************************************************************
Site Name:
Author:

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700,900");
@font-face {
  font-family: '../fonts/AGBook-Stencil';
  src: url("../fonts/AGBook-Stencil.eot") format("embedded-opentype");
  font-weight: normal;
  font-style: normal; }

/*
 i imported this one in the functions file so bones would look sweet.
 don't forget to remove it for your site.
*/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  font-size: 16px;
  line-height: 19.2px;
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig"; }

/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: IE Grid Styles

Since the example grid is based on media queries, so rather than
setup some js library that would make IE8 and below understand
media queries, let's just add some styles that serves a fixed grid.

Again, if you want to roll your own, just remove this junk and put
whatever you use in here.

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
/*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
/*********************
NAVIGATION STYLES
*********************/
/* .menu is clearfixed inside mixins.scss */
.menu {
  /* end .menu ul */ }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .menu ul li {
      /*
				plan your menus and drop-downs wisely.
				*/ }
      .menu ul li a {
        /*
					you can use hover styles here even though this size
					has the possibility of being a mobile device.
					*/ }

/* end .menu */
/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
.entry-content {
  /* at this larger size, we can start to align images */ }
  .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; }

/* end .entry-content */
/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* end .footer-links */
/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/*********************
GENERAL STYLES
*********************/
.desktop {
  display: block; }

.mobile {
  display: none; }

#wpadminbar {
  top: 0; }

/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  max-width: 98%;
  clear: both; }

/*********************
HEADER STYLES
*********************/
.sections h1 {
  font-size: 30px;
  line-height: 30px;
  margin-bottom: 0; }

.sections h2 {
  font-size: 26px;
  text-transform: uppercase; }

.sections.info-advice {
  padding: 10px 0; }
  .sections.info-advice .icon img {
    max-width: 100%; }
  .sections.info-advice .d-1of3 {
    float: none;
    display: inline-block;
    width: 32.33%;
    vertical-align: top;
    margin-bottom: 30px;
    margin-top: 30px; }
  .sections.info-advice h3 {
    font-size: 22px; }

.sections.aktuelles {
  margin-top: 30px;
  padding-bottom: 50px; }
  .sections.aktuelles abbr[title] {
    border-bottom: none !important;
    cursor: inherit !important;
    text-decoration: none !important; }
  .sections.aktuelles .cta-container .cta-buttons.cta-green a {
    padding: 2px 17px 2px 34px; }
    .sections.aktuelles .cta-container .cta-buttons.cta-green a:before {
      top: 15px !important; }
  .sections.aktuelles .publikationen .m-1of3 {
    margin: 20px 0 0 10px;
    width: calc(33.33% + -10px); }
  .sections.aktuelles .bb {
    display: none; }
  .sections.aktuelles .d-d-month, .sections.aktuelles .d-year {
    font-size: 28px;
    font-weight: 700;
    line-height: 32px;
    white-space: nowrap; }
  .sections.aktuelles .news-feed h2 {
    margin-top: 20px; }
  .sections.aktuelles .news-feed .d-2of3 {
    padding-left: 30px; }
  .sections.aktuelles .inner-wrap {
    max-width: 92%; }
  .sections.aktuelles .inner-wrap-devider {
    border-bottom: 2px solid black; }
  .sections.aktuelles .inner-wrap.agenda h2 {
    margin-top: 10px; }
  .sections.aktuelles .news-item {
    border-bottom: 2px solid #323232; }
    .sections.aktuelles .news-item:last-child {
      border-bottom: none; }
    .sections.aktuelles .news-item h3 {
      font-size: 20px;
      line-height: 1.2em;
      padding: 10px 0 10px; }
    .sections.aktuelles .news-item p.news-date {
      font-weight: 600; }

/*********************
SIDEBARS & ASIDES
*********************/
.sidebar {
  margin-top: 2.2em; }

.widgettitle {
  border-bottom: 2px solid #444;
  margin-bottom: 0.75em; }

.widget {
  padding: 0 0px;
  margin: 2.2em 0; }
  .widget ul li {
    margin-bottom: 0.75em;
    /* deep nesting */ }
    .widget ul li ul {
      margin-top: 0.75em;
      padding-left: 1em; }

.sections.case-studies h3, .sections.newsfeed h3 {
  font-size: 22px; }

.sections.case-studies .d-1of3, .sections.newsfeed .d-1of3 {
  float: none;
  display: inline-block;
  width: 32.33%;
  margin-top: 30px;
  margin-bottom: 30px; }
  .sections.case-studies .d-1of3:nth-child(3n+3), .sections.newsfeed .d-1of3:nth-child(3n+3) {
    clear: both; }

.sections.case-studies a .d-1of3:nth-child(3n+3), .sections.newsfeed a .d-1of3:nth-child(3n+3) {
  clear: both; }

.single-case_studies header.header {
  border-bottom: none; }

.single-case_studies .sections.top-banner .banner-content {
  position: absolute;
  left: 0;
  top: 38%;
  transform: translateY(-50%);
  color: black;
  max-width: 500px; }

.single-case_studies .sections.one-col h3 {
  font-weight: 900;
  font-size: 26px;
  color: #323232; }

.single-case_studies .sections.one-col p {
  font-weight: 300; }

.sections.case-study-green .d-2of3 {
  position: relative;
  margin: 0 -1%; }

.sections.two-col .content-2col {
  padding: 0 5px; }

/*********************
FOOTER STYLES
*********************/
/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
.footer-links ul li {
  /*
			be careful with the depth of your menus.
			it's very rare to have multi-depth menus in
			the footer.
			*/ }

/* end .footer-links */
.related-content .icon img {
  border-radius: 50%;
  max-width: 100%;
  height: auto; }

.helfen-footer {
  clear: both; }
  .helfen-footer .helfen {
    width: calc(50% - 20px);
    margin: 40px 19px 40px 0;
    float: none;
    display: inline-block;
    vertical-align: top; }
    .helfen-footer .helfen:last-child {
      margin: 40px 0 40px 20px; }

footer .top-footer .zewo {
  top: inherit;
  bottom: 0; }

.related-content .d-1of3 {
  float: none;
  display: inline-block;
  width: 32.33%; }

@media only screen and (max-width: 1030px) {
  .related-content .d-1of3 {
    vertical-align: top; }
  #logo {
    width: 160px; }
  .masonry-layout {
    -moz-column-count: 2;
    column-count: 2;
    vertical-align: top;
    position: relative; }
    .masonry-layout .side-sections, .masonry-layout .tribe-events-list-widget {
      padding: 25px 7%;
      margin: 5px 0 40px !important;
      -webkit-column-break-inside: avoid;
      page-break-inside: avoid;
      break-inside: avoid;
      overflow: visible; }
    .masonry-layout .side-sections.hilfe {
      padding: 5px 0 5px;
      margin-top: -10px; }
    .masonry-layout .side-sections.newsfeed {
      margin: 5px 0 40px !important; }
      .masonry-layout .side-sections.newsfeed .newsitem {
        margin: 5px 0 0px !important; }
    .masonry-layout .side-sections.hilfe .helfen {
      padding: 25px 35px 25px;
      margin: 0px 0 0; }
    .masonry-layout .side-sections.haben_sie_fragen {
      padding: 5px 0 0 0; }
    .masonry-layout .side-sections.newsfeed .newsitem .m-2of3 {
      padding: 10px 10px 10px 0; } }

/*.alignleft {
    float: left;
    margin: 10px 25px 15px 0;
    width: inherit;
}

.alignright {
    float: right;
    margin: 10px 0 15px 25px;
    width: inherit;
}

h3{
.alignleft {
    float: left;
    margin: 25px 25px 18px 0;
    width: inherit;
}

.alignright {
    float: right;
    margin: 25px 0 18px 25px;
    width: inherit;
}
}*/
.alignleft {
  float: left;
  margin: 8px 25px 10px 0;
  width: inherit; }

.alignright {
  float: right;
  margin: 8px 0 10px 25px;
  width: inherit; }

.bg-image-links {
  position: relative;
  overflow: hidden; }
  .bg-image-links .wrap {
    width: 100%;
    max-width: 100%; }
  .bg-image-links .bg-image img {
    width: 100%;
    min-height: 250px; }
  .bg-image-links .bg-links {
    position: absolute;
    top: 0;
    width: 100%; }
    .bg-image-links .bg-links .feature-link {
      width: 19.7%;
      display: inline-block;
      margin: 0;
      padding: 0;
      text-align: center;
      vertical-align: top; }
      .bg-image-links .bg-links .feature-link a {
        display: block;
        background: #11aebdab;
        color: #fff;
        text-transform: uppercase;
        text-decoration: none;
        margin: 35px;
        padding: 100px 0 30px 0;
        font-size: 23px;
        font-size: 16px; }

.top-footer .zewo {
  position: absolute; }

/******************************************************************
Site Name:
Author:

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
#logo {
  margin: 0 0;
  width: 177px;
  position: absolute;
  z-index: 2; }
  #logo a {
    color: #fff; }

#logo {
  width: 320px;
  margin-top: -50px; }

h1 {
  font-size: 50px;
  line-height: 55px; }

h2 {
  font-size: 26px;
  line-height: 1.2em; }

h3 {
  line-height: 1.2em; }

p {
  font-size: 18px;
  line-height: 1.4em; }

.wrap {
  width: 98%;
  position: relative;
  max-width: 1255px; }

header.header #hamburger {
  display: none; }

header.header .mobile-nav {
  display: none; }

header.header {
  border-bottom: none; }

.sections.top-banner {
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto; }

#container #content {
  border-top: 7px solid #f3f3f3; }

.home #container #content, .single-case_studies #container #content {
  border-top: none; }

.home #container #content.no-banner, .single-case_studies #container #content.no-banner {
  border-top: 7px solid #f3f3f3; }

#container.page-top-banner #content {
  border-top: none;
  padding-top: 0; }

#content.border-top-none {
  border-top: none !important; }

/*********************
NAVIGATION STYLES
*********************/
.nav {
  border: 0;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */ }
  .nav ul {
    background: #323232;
    margin-top: 0; }
  .nav li {
    float: left;
    position: relative;
    /*
		plan your menus and drop-downs wisely.
		*/
    /* showing sub-menus */ }
    .nav li a {
      border-bottom: 0;
      /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/ }
      .nav li a:hover, .nav li a:focus {
        color: #1c86c7;
        text-decoration: underline; }
    .nav li ul.sub-menu,
    .nav li ul.children {
      background: #11aebdb3;
      margin-top: 0;
      border: none;
      border-top: 0;
      position: absolute;
      visibility: hidden;
      z-index: 8999;
      /* highlight sub-menu current page */ }
      .nav li ul.sub-menu li,
      .nav li ul.children li {
        /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/ }
        .nav li ul.sub-menu li a,
        .nav li ul.children li a {
          padding-left: 10px;
          border-right: 0;
          display: block;
          width: 180px;
          border-bottom: none;
          text-align: left;
          font-size: 12px !important;
          color: #fff;
          padding: 3px 6px 6px 10px !important; }
        .nav li ul.sub-menu li:last-child a,
        .nav li ul.children li:last-child a {
          border-bottom: 0; }
        .nav li ul.sub-menu li ul,
        .nav li ul.children li ul {
          top: 0;
          left: 100%; }
    .nav li:hover > ul {
      top: auto;
      visibility: visible; }

/* end .nav */
/* Top-navigation*/
.top-header {
  display: block; }

.top-navigation-mobile {
  display: none !important; }

.top-header-navigation .nav {
  border: 0;
  /* end .menu ul li */
  /* highlight current page */
  /* end current highlighters */ }
  .top-header-navigation .nav ul {
    background: #1c86c7;
    margin-top: 0; }
  .top-header-navigation .nav li {
    float: left;
    position: relative;
    /*
		plan your menus and drop-downs wisely.
		*/
    /* showing sub-menus */ }
    .top-header-navigation .nav li a {
      border-bottom: 0;
      /*
			you can use hover styles here even though this size
			has the possibility of being a mobile device.
			*/ }
      .top-header-navigation .nav li a:hover, .top-header-navigation .nav li a:focus {
        color: #fff;
        background: #11aebd;
        text-decoration: underline; }
    .top-header-navigation .nav li ul.sub-menu,
    .top-header-navigation .nav li ul.children {
      background: #1c86c7bf;
      margin-top: 0;
      border: none;
      border-top: 0;
      position: absolute;
      visibility: hidden;
      z-index: 8999;
      /* highlight sub-menu current page */ }
      .top-header-navigation .nav li ul.sub-menu li,
      .top-header-navigation .nav li ul.children li {
        /*
				if you need to go deeper, go nuts
				just remember deeper menus suck
				for usability. k, bai.
				*/ }
        .top-header-navigation .nav li ul.sub-menu li a,
        .top-header-navigation .nav li ul.children li a {
          padding-left: 10px;
          border-right: 0;
          display: block;
          width: 180px;
          border-bottom: none;
          text-align: left;
          font-size: 12px; }
        .top-header-navigation .nav li ul.sub-menu li:last-child a,
        .top-header-navigation .nav li ul.children li:last-child a {
          border-bottom: 0; }
        .top-header-navigation .nav li ul.sub-menu li ul,
        .top-header-navigation .nav li ul.children li ul {
          top: 0;
          left: 100%; }
    .top-header-navigation .nav li:hover > ul {
      top: auto;
      visibility: visible; }

#inner-header .top-navigation {
  display: block;
  top: 0;
  right: 0;
  left: inherit;
  padding: 0; }
  #inner-header .top-navigation #menu-main-menu {
    margin: 0;
    float: right;
    border: none;
    padding: 12px 0 20px 0; }
    #inner-header .top-navigation #menu-main-menu li a {
      font-size: 15px;
      padding: 20px 0.75em 3px;
      position: relative; }
      #inner-header .top-navigation #menu-main-menu li a:after {
        border-right: 1px solid #11aebd;
        content: '';
        position: absolute;
        right: 0;
        top: 10px;
        height: 40px; }
    #inner-header .top-navigation #menu-main-menu li ul li a:after {
      border-right: none !important; }

.green-content .wrap {
  max-width: 1600px;
  padding: 30px 0 10px; }
  .green-content .wrap .inner-wrap {
    max-width: 1400px;
    margin: 0 auto; }

.green-content p {
  font-size: 18px;
  line-height: 1.4em; }

.green-content h2 {
  font-size: 26px; }

.top-light-gray .banner-ctas .d-1of3 {
  padding-right: 0;
  position: relative; }
  .top-light-gray .banner-ctas .d-1of3 h2 {
    color: #323232; }
  .top-light-gray .banner-ctas .d-1of3 p {
    font-size: 18px;
    line-height: 1.4em; }
  .top-light-gray .banner-ctas .d-1of3 a {
    padding: 10px 30px;
    margin: 30px 0;
    border-bottom: none;
    min-height: 140px; }
  .top-light-gray .banner-ctas .d-1of3:last-child a {
    border-left: 3px solid #1c86c7; }
  .top-light-gray .banner-ctas .d-1of3:first-child a {
    border-right: 3px solid #1c86c7; }
  .top-light-gray .banner-ctas .d-1of3:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #009999;
    top: -11px;
    left: calc(50% - 10px);
    transform: rotate(45deg); }

.sections h1 {
  font-size: 50px;
  line-height: 55px;
  margin-bottom: 0;
  font-weight: 100; }

.sections h2 {
  font-size: 30px;
  line-height: 35px; }

.sections ul {
  padding-bottom: 20px;
  clear: none; }
  .sections ul li {
    font-size: 18px;
    line-height: 1.4em; }

.sections .gform_body ul {
  padding-bottom: 20px; }
  .sections .gform_body ul li {
    font-size: 14px;
    line-height: 1.4em; }

.sections .wrap .content_section {
  max-width: 1220px;
  margin: 0 auto; }

.sections.top-banner .banner-image img {
  margin: 0 0 -6px; }

.sections.top-banner .banner-content {
  position: absolute;
  max-width: 80%;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  /* not-tome page
			.banner-content{
			    left: 0;
			    top: 50%;
			    transform: translateY(-50%);
			    margin: 0 20px;
			    width: 96%;
			    padding: 0 4%;
			    right: 0;
				position: absolute;
				color: $white;
				*/ }
  .sections.top-banner .banner-content .wrap {
    width: 98%;
    position: relative;
    max-width: 972px; }
  .sections.top-banner .banner-content p {
    font-size: 18px;
    margin: 0 0 40px; }
  .sections.top-banner .banner-content h1 {
    font-size: 74px;
    line-height: 55px; }

.sections.top-banner .banner-cta {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: transparent; }
  .sections.top-banner .banner-cta .banner-ctas a {
    margin: 25px auto;
    max-width: 393px; }
    .sections.top-banner .banner-cta .banner-ctas a h2 {
      font-size: 20px; }

.sections.one-col .wrap {
  max-width: 1040px; }

.sections.one-col p {
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 300; }

.sections.one-col h3 {
  margin: 0 0 17px; }

.sections.one-col blockquote p {
  font-size: 26px;
  line-height: 1.2em;
  font-weight: 400; }
  .sections.one-col blockquote p strong {
    font-weight: 400; }

.sections.info-advice .icon img {
  max-width: 100%; }

.sections.info-advice .d-1of3 {
  float: none;
  display: inline-block;
  width: 32.33%;
  padding-right: 0.38em;
  padding-left: 0.38em; }

.sections.info-advice h3 {
  font-size: 22px; }

.sections.info-advice .cta-container {
  padding: 40px 0; }

.sections.case-study-green {
  padding-bottom: 0;
  margin-top: 30px;
  box-shadow: none; }
  .sections.case-study-green .wrap {
    max-width: 1700px;
    margin-bottom: -6px; }
  .sections.case-study-green h1 {
    font-size: 26px;
    line-height: 1.2em; }
  .sections.case-study-green p {
    font-size: 18px;
    line-height: 26.4px; }
  .sections.case-study-green .d-1of3 {
    width: 32.33%; }
    .sections.case-study-green .d-1of3 .d-mid-align {
      padding: 0 50px 0 33px; }
      .sections.case-study-green .d-1of3 .d-mid-align h1 {
        font-weight: 900; }
      .sections.case-study-green .d-1of3 .d-mid-align .cta-white a {
        padding: 2px 17px 2px 34px; }
        .sections.case-study-green .d-1of3 .d-mid-align .cta-white a:before {
          top: 15px !important; }
  .sections.case-study-green .d-2of3 {
    overflow: hidden;
    width: 62.66%; }
    .sections.case-study-green .d-2of3 img {
      height: 100%;
      overflow: hidden;
      width: auto;
      margin-bottom: -6px;
      max-width: inherit; }
    .sections.case-study-green .d-2of3:before {
      display: none; }
  .sections.case-study-green .d-1of3, .sections.case-study-green .d-2of3 {
    float: none;
    display: inline-block; }

.sections.case-study-red {
  padding: 5px 0 0; }
  .sections.case-study-red .wrap {
    max-width: 1700px;
    margin-bottom: -6px; }
  .sections.case-study-red .d-2of3 {
    width: 61.56%;
    float: right;
    display: inline-block;
    margin: 19px 10px 20px auto; }
  .sections.case-study-red .d-1of3 {
    width: 35.33%;
    position: relative;
    display: inline-block;
    float: none;
    vertical-align: top; }
    .sections.case-study-red .d-1of3 .d-mid-align {
      padding: 0 0 30px 30px;
      position: relative;
      top: inherit;
      transform: translateY(0%); }

.sections.aktuelles {
  margin-top: 30px;
  padding-bottom: 50px; }
  .sections.aktuelles abbr[title] {
    border-bottom: none !important;
    cursor: inherit !important;
    text-decoration: none !important; }
  .sections.aktuelles h1 {
    margin-bottom: 40px; }
  .sections.aktuelles .d-1of2:first-child {
    padding-right: 17px; }
  .sections.aktuelles .d-1of2:last-child {
    padding-left: 17px; }
  .sections.aktuelles .d-1of2 .inner-wrap.cf.news-feed {
    max-width: 100%; }
  .sections.aktuelles .cta-container .cta-buttons.cta-green a, .sections.aktuelles .cta-container .cta-buttons.cta-green span {
    padding: 2px 17px 2px 34px; }
    .sections.aktuelles .cta-container .cta-buttons.cta-green a:before, .sections.aktuelles .cta-container .cta-buttons.cta-green span:before {
      top: 15px !important; }
  .sections.aktuelles .publikationen .m-1of3 {
    margin: 20px 0 0 10px;
    width: calc(33.33% + -10px); }
  .sections.aktuelles h2:before {
    top: 3px; }
  .sections.aktuelles .bb {
    display: none; }
  .sections.aktuelles .event-name {
    font-size: 20px;
    line-height: 1.2em; }
  .sections.aktuelles .d-day {
    font-size: 18px;
    line-height: 1.4em; }
  .sections.aktuelles .news-feed h2 {
    margin-top: 20px; }
  .sections.aktuelles .news-feed .d-2of3 {
    padding-left: 30px; }
  .sections.aktuelles .inner-wrap {
    max-width: 92%; }
  .sections.aktuelles .inner-wrap.agenda {
    margin-bottom: 0; }
  .sections.aktuelles .inner-wrap.agenda h2 {
    margin-top: 10px; }
  .sections.aktuelles a:last-child .news-item {
    border-bottom: none !important; }
  .sections.aktuelles .news-item {
    border-bottom: 2px solid #323232; }
    .sections.aktuelles .news-item img {
      max-width: inherit; }
    .sections.aktuelles .news-item h3 {
      font-size: 25px;
      padding: 0px 0 25px;
      line-height: 1.2em; }
    .sections.aktuelles .news-item p.news-date {
      font-weight: 700;
      font-size: 18px; }

.sections.case-studies h3, .sections.newsfeed h3 {
  font-size: 22px; }

.sections.case-studies .d-1of3, .sections.newsfeed .d-1of3 {
  float: none;
  display: inline-block;
  width: 32.33%;
  margin-top: 30px;
  margin-bottom: 30px;
  padding-right: 0.38em;
  padding-left: 0.38em; }
  .sections.case-studies .d-1of3:nth-child(3n+3), .sections.newsfeed .d-1of3:nth-child(3n+3) {
    clear: both; }

.sections.case-studies .cta-container, .sections.newsfeed .cta-container {
  padding: 30px 0; }

.sections.file-download {
  text-align: center;
  padding: 0; }
  .sections.file-download .files {
    max-width: 95%;
    padding: 0 0 0 30px; }
    .sections.file-download .files .file {
      display: inline-block; }

.sections.two-col {
  padding-top: 20px; }
  .sections.two-col .d-1of2 {
    padding-right: 35px; }
  .sections.two-col .content-2col {
    padding: 0 0; }
    .sections.two-col .content-2col:first-child {
      padding-right: 20px; }
    .sections.two-col .content-2col:last-child {
      padding-left: 20px; }

.sections.two-col-img .content-2col:last-child {
  max-width: 520px; }

.sections.gallery .wrap {
  max-width: 1040px; }

.sections.gallery .slick-slide img {
  margin: 0 0 -6px 0;
  width: 100%; }

.sections.gallery .slide-image .slick-slide {
  background: #f3f3f3; }

.sections.gallery .slide-image p {
  padding: 15px 10px 10px 20px;
   background: rgba(243, 243, 243, 0.8) !important;
  background-color: rgba(243, 243, 243, 0.8) !important;
  margin: 0;
  position: absolute !important;
  z-index: 999;
  bottom: 0;
  width: 100%; }

.sections.gallery .slider-nav {
  display: block; }
  .sections.gallery .slider-nav .slick-current {
    inner-box-shadow: 4px 4px 4px #e2646a; }
    .sections.gallery .slider-nav .slick-current div {
      box-shadow: inset -4px -4px 0px #e2646a; }
      .sections.gallery .slider-nav .slick-current div div {
        box-shadow: inset 4px 4px 0px #e2646a;
        display: block !important; }
    .sections.gallery .slider-nav .slick-current img {
      position: relative;
      z-index: -2; }

.sections.file-download .files .file a {
  font-size: 18px;
  line-height: 1.4em; }

.sections.regional-staff .d-1of2.staff {
  padding-right: 2em;
  padding-top: 30px;
  padding-bottom: 30px; }
  .sections.regional-staff .d-1of2.staff .staff-info {
    margin: 0 20px 20px; }

.home .sections.case-studies, .home .sections.newsfeed {
  padding: 40px 0 30px; }

.sections.top-banner .banner-content {
  position: absolute;
  margin: 0 20px 0 0; }
  .sections.top-banner .banner-content .wrap {
    max-width: 1255px; }

.related-content {
  padding-top: 75px; }
  .related-content h2 {
    font-size: 50px;
    margin: 10px 0 20px; }
  .related-content p {
    font-size: 26px;
    margin-left: 10px; }
  .related-content .related-posts {
    padding-top: 50px; }
    .related-content .related-posts .icon img {
      max-width: 100%; }
    .related-content .related-posts .d-1of3 {
      float: none;
      display: inline-block;
      width: 32.33%; }
      .related-content .related-posts .d-1of3 h2 {
        font-size: 26px; }
      .related-content .related-posts .d-1of3 h3 {
        font-size: 22px; }
      .related-content .related-posts .d-1of3 p {
        font-size: 16px; }

.d-mid-align {
  top: 50%;
  transform: translateY(-50%);
  position: absolute; }

.page-template-default #content .helfen-footer.p-top {
  margin-top: 45px; }

.page-template-default section.file-download .wrap, .page-template-default section.file-download .zuruck-wrap, .page-template-default section.regional-staff .wrap, .page-template-default section.regional-staff .zuruck-wrap {
  max-width: 1600px; }

.page-template-default section.two-col.two-content .wrap {
  max-width: 1040px; }

.page-template-default .zuruck-wrap {
  max-width: 972px; }

.bg-image-links {
  position: relative; }
  .bg-image-links .wrap {
    max-width: 1600px;
    width: 96%; }
  .bg-image-links .bg-links .feature-link a {
    font-size: 23px; }

/*SIDEBAR PAGE */
.page-template-page-sidebar #content {
  padding-top: 70px; }
  .page-template-page-sidebar #content .d-3of4 {
    width: 70%; }
    .page-template-page-sidebar #content .d-3of4 .sections {
      padding: 25px 0;
      max-width: 830px; }
      .page-template-page-sidebar #content .d-3of4 .sections.no_padding {
        padding: 0 0 !important; }
      .page-template-page-sidebar #content .d-3of4 .sections.one-col h2 {
        font-size: 40px;
        margin: 0;
        padding-top: 30px; }
      .page-template-page-sidebar #content .d-3of4 .sections.one-col h3 {
        font-size: 26px;
        margin: 0;
        line-height: 50px;
        color: #323232; }
      .page-template-page-sidebar #content .d-3of4 .sections.one-col .zuruck-link {
        padding: 15px 0 55px 45px;
        margin: 39px 0 0 0; }

.wp-caption p.wp-caption-text {
  font-size: 16px;
  line-height: 19.2px;
  font-weight: 400 !important; }

.single-case_studies #content.no-banner, .page-template-page-sidebar #content.no-banner, .single-post #content.no-banner, .post-type-archive-tribe_events #content.no-banner {
  padding: 107px 0 0 0; }

.single-case_studies #content h1, .page-template-page-sidebar #content h1, .single-post #content h1, .post-type-archive-tribe_events #content h1 {
  margin-top: 0; }

.single-case_studies #content .sidebar, .single-case_studies #content .post-sidebar, .page-template-page-sidebar #content .sidebar, .page-template-page-sidebar #content .post-sidebar, .single-post #content .sidebar, .single-post #content .post-sidebar, .post-type-archive-tribe_events #content .sidebar, .post-type-archive-tribe_events #content .post-sidebar {
  padding: 0;
  width: 29.5%;
  clear: none; }
  .single-case_studies #content .sidebar .side-sections.side-top, .single-case_studies #content .post-sidebar .side-sections.side-top, .page-template-page-sidebar #content .sidebar .side-sections.side-top, .page-template-page-sidebar #content .post-sidebar .side-sections.side-top, .single-post #content .sidebar .side-sections.side-top, .single-post #content .post-sidebar .side-sections.side-top, .post-type-archive-tribe_events #content .sidebar .side-sections.side-top, .post-type-archive-tribe_events #content .post-sidebar .side-sections.side-top {
    padding: 25px 25px 15px; }
  .single-case_studies #content .sidebar .side-sections.weitere-info, .single-case_studies #content .post-sidebar .side-sections.weitere-info, .page-template-page-sidebar #content .sidebar .side-sections.weitere-info, .page-template-page-sidebar #content .post-sidebar .side-sections.weitere-info, .single-post #content .sidebar .side-sections.weitere-info, .single-post #content .post-sidebar .side-sections.weitere-info, .post-type-archive-tribe_events #content .sidebar .side-sections.weitere-info, .post-type-archive-tribe_events #content .post-sidebar .side-sections.weitere-info {
    margin-bottom: 40px; }
    .single-case_studies #content .sidebar .side-sections.weitere-info .wrap, .single-case_studies #content .post-sidebar .side-sections.weitere-info .wrap, .page-template-page-sidebar #content .sidebar .side-sections.weitere-info .wrap, .page-template-page-sidebar #content .post-sidebar .side-sections.weitere-info .wrap, .single-post #content .sidebar .side-sections.weitere-info .wrap, .single-post #content .post-sidebar .side-sections.weitere-info .wrap, .post-type-archive-tribe_events #content .sidebar .side-sections.weitere-info .wrap, .post-type-archive-tribe_events #content .post-sidebar .side-sections.weitere-info .wrap {
      max-width: 310px; }
      .single-case_studies #content .sidebar .side-sections.weitere-info .wrap ul li, .single-case_studies #content .post-sidebar .side-sections.weitere-info .wrap ul li, .page-template-page-sidebar #content .sidebar .side-sections.weitere-info .wrap ul li, .page-template-page-sidebar #content .post-sidebar .side-sections.weitere-info .wrap ul li, .single-post #content .sidebar .side-sections.weitere-info .wrap ul li, .single-post #content .post-sidebar .side-sections.weitere-info .wrap ul li, .post-type-archive-tribe_events #content .sidebar .side-sections.weitere-info .wrap ul li, .post-type-archive-tribe_events #content .post-sidebar .side-sections.weitere-info .wrap ul li {
        font-size: 18px;
        line-height: 1.4em;
        margin-bottom: 15px; }
  .single-case_studies #content .sidebar .side-sections.newsfeed, .single-case_studies #content .post-sidebar .side-sections.newsfeed, .page-template-page-sidebar #content .sidebar .side-sections.newsfeed, .page-template-page-sidebar #content .post-sidebar .side-sections.newsfeed, .single-post #content .sidebar .side-sections.newsfeed, .single-post #content .post-sidebar .side-sections.newsfeed, .post-type-archive-tribe_events #content .sidebar .side-sections.newsfeed, .post-type-archive-tribe_events #content .post-sidebar .side-sections.newsfeed {
    margin-bottom: 40px; }
    .single-case_studies #content .sidebar .side-sections.newsfeed .newsitem, .single-case_studies #content .post-sidebar .side-sections.newsfeed .newsitem, .page-template-page-sidebar #content .sidebar .side-sections.newsfeed .newsitem, .page-template-page-sidebar #content .post-sidebar .side-sections.newsfeed .newsitem, .single-post #content .sidebar .side-sections.newsfeed .newsitem, .single-post #content .post-sidebar .side-sections.newsfeed .newsitem, .post-type-archive-tribe_events #content .sidebar .side-sections.newsfeed .newsitem, .post-type-archive-tribe_events #content .post-sidebar .side-sections.newsfeed .newsitem {
      margin: 0px 0px 0px; }
      .single-case_studies #content .sidebar .side-sections.newsfeed .newsitem h3, .single-case_studies #content .post-sidebar .side-sections.newsfeed .newsitem h3, .page-template-page-sidebar #content .sidebar .side-sections.newsfeed .newsitem h3, .page-template-page-sidebar #content .post-sidebar .side-sections.newsfeed .newsitem h3, .single-post #content .sidebar .side-sections.newsfeed .newsitem h3, .single-post #content .post-sidebar .side-sections.newsfeed .newsitem h3, .post-type-archive-tribe_events #content .sidebar .side-sections.newsfeed .newsitem h3, .post-type-archive-tribe_events #content .post-sidebar .side-sections.newsfeed .newsitem h3 {
        font-size: 18px !important;
        line-height: 19px !important; }
      .single-case_studies #content .sidebar .side-sections.newsfeed .newsitem p, .single-case_studies #content .post-sidebar .side-sections.newsfeed .newsitem p, .page-template-page-sidebar #content .sidebar .side-sections.newsfeed .newsitem p, .page-template-page-sidebar #content .post-sidebar .side-sections.newsfeed .newsitem p, .single-post #content .sidebar .side-sections.newsfeed .newsitem p, .single-post #content .post-sidebar .side-sections.newsfeed .newsitem p, .post-type-archive-tribe_events #content .sidebar .side-sections.newsfeed .newsitem p, .post-type-archive-tribe_events #content .post-sidebar .side-sections.newsfeed .newsitem p {
        font-size: 16px !important;
        line-height: 18.2px !important; }
      .single-case_studies #content .sidebar .side-sections.newsfeed .newsitem .m-1of3, .single-case_studies #content .post-sidebar .side-sections.newsfeed .newsitem .m-1of3, .page-template-page-sidebar #content .sidebar .side-sections.newsfeed .newsitem .m-1of3, .page-template-page-sidebar #content .post-sidebar .side-sections.newsfeed .newsitem .m-1of3, .single-post #content .sidebar .side-sections.newsfeed .newsitem .m-1of3, .single-post #content .post-sidebar .side-sections.newsfeed .newsitem .m-1of3, .post-type-archive-tribe_events #content .sidebar .side-sections.newsfeed .newsitem .m-1of3, .post-type-archive-tribe_events #content .post-sidebar .side-sections.newsfeed .newsitem .m-1of3 {
        width: 112px;
        height: auto;
        padding: 0; }
        .single-case_studies #content .sidebar .side-sections.newsfeed .newsitem .m-1of3 img, .single-case_studies #content .post-sidebar .side-sections.newsfeed .newsitem .m-1of3 img, .page-template-page-sidebar #content .sidebar .side-sections.newsfeed .newsitem .m-1of3 img, .page-template-page-sidebar #content .post-sidebar .side-sections.newsfeed .newsitem .m-1of3 img, .single-post #content .sidebar .side-sections.newsfeed .newsitem .m-1of3 img, .single-post #content .post-sidebar .side-sections.newsfeed .newsitem .m-1of3 img, .post-type-archive-tribe_events #content .sidebar .side-sections.newsfeed .newsitem .m-1of3 img, .post-type-archive-tribe_events #content .post-sidebar .side-sections.newsfeed .newsitem .m-1of3 img {
          width: 100%;
          max-width: 112px; }
      .single-case_studies #content .sidebar .side-sections.newsfeed .newsitem .m-2of3, .single-case_studies #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3, .page-template-page-sidebar #content .sidebar .side-sections.newsfeed .newsitem .m-2of3, .page-template-page-sidebar #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3, .single-post #content .sidebar .side-sections.newsfeed .newsitem .m-2of3, .single-post #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3, .post-type-archive-tribe_events #content .sidebar .side-sections.newsfeed .newsitem .m-2of3, .post-type-archive-tribe_events #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 {
        padding: 5px 10px 0 20px;
        width: calc(100% - 112px);
        float: left; }
        .single-case_studies #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 h3, .single-case_studies #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 h3, .page-template-page-sidebar #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 h3, .page-template-page-sidebar #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 h3, .single-post #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 h3, .single-post #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 h3, .post-type-archive-tribe_events #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 h3, .post-type-archive-tribe_events #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 h3 {
          font-size: 18px;
          line-height: 20.6px;
          margin: 4px 0 1px !important; }
          .single-case_studies #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 h3 a, .single-case_studies #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 h3 a, .page-template-page-sidebar #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 h3 a, .page-template-page-sidebar #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 h3 a, .single-post #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 h3 a, .single-post #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 h3 a, .post-type-archive-tribe_events #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 h3 a, .post-type-archive-tribe_events #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 h3 a {
            font-weight: 700; }
        .single-case_studies #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 p, .single-case_studies #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 a, .single-case_studies #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 p, .single-case_studies #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 a, .page-template-page-sidebar #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 p, .page-template-page-sidebar #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 a, .page-template-page-sidebar #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 p, .page-template-page-sidebar #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 a, .single-post #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 p, .single-post #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 a, .single-post #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 p, .single-post #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 a, .post-type-archive-tribe_events #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 p, .post-type-archive-tribe_events #content .sidebar .side-sections.newsfeed .newsitem .m-2of3 a, .post-type-archive-tribe_events #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 p, .post-type-archive-tribe_events #content .post-sidebar .side-sections.newsfeed .newsitem .m-2of3 a {
          font-weight: 400; }
  .single-case_studies #content .sidebar .side-sections.hilfe p, .single-case_studies #content .post-sidebar .side-sections.hilfe p, .page-template-page-sidebar #content .sidebar .side-sections.hilfe p, .page-template-page-sidebar #content .post-sidebar .side-sections.hilfe p, .single-post #content .sidebar .side-sections.hilfe p, .single-post #content .post-sidebar .side-sections.hilfe p, .post-type-archive-tribe_events #content .sidebar .side-sections.hilfe p, .post-type-archive-tribe_events #content .post-sidebar .side-sections.hilfe p {
    font-size: 18px;
    line-height: 1.4em; }
  .single-case_studies #content .sidebar .side-sections.hilfe .cta-buttons.cta-green a, .single-case_studies #content .post-sidebar .side-sections.hilfe .cta-buttons.cta-green a, .page-template-page-sidebar #content .sidebar .side-sections.hilfe .cta-buttons.cta-green a, .page-template-page-sidebar #content .post-sidebar .side-sections.hilfe .cta-buttons.cta-green a, .single-post #content .sidebar .side-sections.hilfe .cta-buttons.cta-green a, .single-post #content .post-sidebar .side-sections.hilfe .cta-buttons.cta-green a, .post-type-archive-tribe_events #content .sidebar .side-sections.hilfe .cta-buttons.cta-green a, .post-type-archive-tribe_events #content .post-sidebar .side-sections.hilfe .cta-buttons.cta-green a {
    padding: 2px 17px 2px 34px; }
    .single-case_studies #content .sidebar .side-sections.hilfe .cta-buttons.cta-green a:before, .single-case_studies #content .post-sidebar .side-sections.hilfe .cta-buttons.cta-green a:before, .page-template-page-sidebar #content .sidebar .side-sections.hilfe .cta-buttons.cta-green a:before, .page-template-page-sidebar #content .post-sidebar .side-sections.hilfe .cta-buttons.cta-green a:before, .single-post #content .sidebar .side-sections.hilfe .cta-buttons.cta-green a:before, .single-post #content .post-sidebar .side-sections.hilfe .cta-buttons.cta-green a:before, .post-type-archive-tribe_events #content .sidebar .side-sections.hilfe .cta-buttons.cta-green a:before, .post-type-archive-tribe_events #content .post-sidebar .side-sections.hilfe .cta-buttons.cta-green a:before {
      top: 15px !important; }

.single-post #content {
  margin: 0 0 70px;
  padding-top: 110px; }
  .single-post #content #inner-content {
    padding-bottom: 80px; }
    .single-post #content #inner-content .d-3of4 {
      width: 70%; }

.single-post .post-sidebar .aktuelle-news {
  padding-bottom: 30px; }
  .single-post .post-sidebar .aktuelle-news h2 {
    font-size: 25px;
    margin: 0 0 2px;
    position: relative;
    border-bottom: 2px solid #323232;
    border-top: none; }
  .single-post .post-sidebar .aktuelle-news .news-item:first-child {
    padding-top: 5px !important; }
  .single-post .post-sidebar .aktuelle-news .news-item {
    border-bottom: 2px solid #323232 !important;
    padding: 20px 0 22px !important; }
    .single-post .post-sidebar .aktuelle-news .news-item h3 {
      font-size: 18px !important;
      line-height: 1.2em !important; }
    .single-post .post-sidebar .aktuelle-news .news-item .news-date {
      font-size: 16px !important;
      font-weight: 400 !important;
      line-height: 1.4em !important; }

.single-case_studies header.header, .page-top-banner header.header {
  height: 66px;
  border-bottom: none; }

.single-case_studies .d-3of4, .page-top-banner .d-3of4 {
  width: 70%; }
  .single-case_studies .d-3of4.banner-image .one-col.sections.sections-0, .page-top-banner .d-3of4.banner-image .one-col.sections.sections-0 {
    padding-top: 50px !important; }

.single-case_studies .sections, .page-top-banner .sections {
  padding-left: 0 !important; }
  .single-case_studies .sections.top-banner .banner-content, .page-top-banner .sections.top-banner .banner-content {
    position: absolute;
    max-width: 80%;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%); }
  .single-case_studies .sections.one-col h3, .page-top-banner .sections.one-col h3 {
    font-weight: 900;
    font-size: 26px;
    color: #323232; }
  .single-case_studies .sections.one-col p, .page-top-banner .sections.one-col p {
    font-weight: 300; }

.single-case_studies .sidebar.banner-image-side, .page-top-banner .sidebar.banner-image-side {
  margin-top: 80px; }

.sidebar {
  padding: 0; }

.helfen-footer {
  clear: both; }
  .helfen-footer h2 {
    font-size: 50px;
    margin: 40px 0 0px; }
  .helfen-footer h3 {
    font-size: 26px;
    margin-top: 20px; }
  .helfen-footer .helfen {
    margin: 48px 10px !important;
    width: calc(33% - 22px);
    padding-bottom: 35px;
    min-height: 368px; }
    .helfen-footer .helfen .cta-buttons {
      padding-top: 10px; }
    .helfen-footer .helfen .cta-buttons.cta-green a, .helfen-footer .helfen .cta-buttons.cta-green span {
      padding: 2px 17px 2px 34px; }
      .helfen-footer .helfen .cta-buttons.cta-green a:before, .helfen-footer .helfen .cta-buttons.cta-green span:before {
        top: 15px !important; }
  .helfen-footer .arve-wrapper {
    margin-bottom: 0 !important; }

.zuruck-link {
  font-size: 18px;
  margin: 10px 0 40px 0;
  padding: 15px 0 40px 55px; }

.archive #content {
  padding: 120px 0 0 0; }

.tribe-events-pg-template {
  padding: 120px 0 0 0;
  width: 98%; }

.single-post blockquote p {
  font-size: 26px;
  line-height: 1.2em; }

.single-post .zuruck-link {
  margin: 10px 0 40px 25px; }

.events-page-container#content {
  padding: 117px 0 0 0; }
  .events-page-container#content .d-3of4 {
    width: 70%; }
    .events-page-container#content .d-3of4 .entry-content {
      padding: 0;
      width: 92%; }
  .events-page-container#content .sidebar {
    padding: 0;
    width: 29.5%;
    margin-top: 0; }
    .events-page-container#content .sidebar .widget {
      padding: 0 0px;
      margin: 0 0; }
    .events-page-container#content .sidebar h4 {
      margin-top: 0; }
  .events-page-container#content p {
    font-size: 18px;
    font-weight: 300; }

.events-page-container .cta-buttons a {
  background: #1c86c7;
  color: #fff;
  padding: 2px 17px 2px 34px;
  margin: 20px 0 0 0; }
  .events-page-container .cta-buttons a:before {
    top: 15px !important; }

.events-page-container #tribe-events-content h1, .events-page-container #tribe-events h1 {
  color: #323232;
  font-size: 50px;
  line-height: 55px;
  margin-top: 0; }

.events-page-container #tribe-events-content .top-content p, .events-page-container #tribe-events .top-content p {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 18px; }

.events-page-container #tribe-events-content p, .events-page-container #tribe-events p {
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 300; }

.events-page-container .event-meta-top {
  font-size: 18px;
  line-height: 1.4em; }
  .events-page-container .event-meta-top .d-1of3 {
    padding-bottom: 0; }

.events-list .tribe-events-loop {
  max-width: 100%; }
  .events-list .tribe-events-loop .tribe-events-list-separator-month {
    font-size: 30px;
    margin: 0px 0 0 !important; }

#tribe-events .single-event-list {
  border-top: none !important; }
  #tribe-events .single-event-list .d-day {
    font-size: 18px;
    line-height: 1.4em; }
  #tribe-events .single-event-list .event-name {
    font-size: 20px; }

.single-tribe_events .sidebar .sidebar-event .d-day {
  font-size: 18px;
  line-height: 1.4em; }

.single-tribe_events .sidebar .sidebar-event .event-name {
  font-size: 16px; }

.single-tribe_events .kontakt-info {
  display: inline-block; }
  .single-tribe_events .kontakt-info p:last-child {
    margin: 0; }

.single-tribe_events .tribe-events-event-meta dt {
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 700 !important; }

.single-tribe_events .tribe-events-event-meta dd {
  font-size: 18px;
  line-height: 1.4em;
  font-weight: 300;
  color: #323232 !important; }

.single-tribe_events .tribe-events-event-meta {
  border-top: 3px solid #000; }

.post-type-archive-tribe_events .helfen-footer {
  margin-top: 70px; }

.blog-page#content {
  padding: 120px 0 0 0; }
  .blog-page#content .top-content h1 {
    color: #323232;
    font-size: 50px;
    line-height: 55px; }
  .blog-page#content .top-content p {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 18px; }
  .blog-page#content .d-3of4 {
    width: 70%; }
    .blog-page#content .d-3of4 intro-content p {
      margin: 0; }
  .blog-page#content .sidebar {
    padding: 0;
    width: 29.5%; }
  .blog-page#content p {
    font-size: 18px;
    line-height: 1.4em;
    font-weight: 300; }
  .blog-page#content article {
    border-top: 3px solid #323232; }

footer p {
  margin: 5px 0 15px; }

footer .top-footer {
  border-bottom: 2px solid #000;
  margin: 0 0;
  padding: 0 0 30px; }
  footer .top-footer .ginput_container {
    width: 90%; }
  footer .top-footer .zewo {
    top: inherit;
    bottom: 0; }

footer #inner-footer {
  display: block;
  padding-top: 15px; }
  footer #inner-footer .footer-links ul li {
    width: 16.6666666667%;
    padding-left: 0; }
    footer #inner-footer .footer-links ul li a {
      color: #fff;
      padding-left: 0;
      font-weight: 700; }
    footer #inner-footer .footer-links ul li ul {
      background: transparent;
      position: relative;
      visibility: visible;
      border: none; }
      footer #inner-footer .footer-links ul li ul li {
        width: 100%; }
        footer #inner-footer .footer-links ul li ul li a {
          color: #323232;
          width: 100%;
          border-bottom: none;
          padding: 0 0 0 0px;
          font-weight: 400; }

.blog-page .top-content, .blog-page .news.sections {
  width: 92%; }

@media only screen and (max-width: 1239px) {
  .top-header .top-header-navigation .search-top {
    width: 110px; }
  .top-header .top-header-navigation nav li a {
    font-size: 14px; } }

.small-image {
  text-align: center;
  padding-top: 60px !important; }
  .small-image img {
    max-width: 50% !important; }

.fix-enrol .top-enrolment {
  position: fixed;
  top: 0; }

.mobile-contact {
  display: none !important; }

/*
you can call the larger styles if you want, but there's really no need
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
