/*!
 Theme Name: _MRB
 Theme URI: http://underscores.me/
 Author: David Guntern
 Author URI: http://davidguntern.ch
 Description: Description
 Version: 1.0.0
 License: GNU General Public License v2 or later
 License URI: LICENSE
 Text Domain: _mrb
 Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
 This theme, like WordPress, is licensed under the GPL.
 Use it to make something cool, have fun, and share what you've learned with others.
 _MRB is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
 Underscores is distributed under the terms of the GNU GPL v2 or later.
 Normalizing styles have been helped along thanks to the fine work of
 Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
 */
/*--------------------------------------------------------------
 >>> TABLE OF CONTENTS:
 ----------------------------------------------------------------
 # Normalize
 # Typography
 # Elements
 # Forms
 # Navigation
 ## Links
 ## Menus
 # Accessibility
 # Alignments
 # Clearings
 # Widgets
 # Content
 ## Posts and pages
 ## Comments
 # Infinite scroll
 # Media
 ## Captions
 ## Galleries
 --------------------------------------------------------------*/
/*--------------------------------------------------------------
 # Normalize
 --------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}
audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden], template {
  display: none;
}
a {
  background-color: transparent;
}
a:active, a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b, strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled], html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td, th {
  padding: 0;
}
/*--------------------------------------------------------------
 # Typography
 --------------------------------------------------------------*/
body, button, input, select, optgroup, textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
h1, h2, h3, h4, h5, h6 {
  clear: both;
}
p {
  margin-bottom: 1.5em;
}
dfn, cite, em, i {
  font-style: italic;
}
blockquote {
  margin: 0 1.5em;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}
abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark, ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: 125%;
}
/*--------------------------------------------------------------
 # Elements
 --------------------------------------------------------------*/
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}
body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul, ol {
  margin: 0 0 1.5em 3em;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li > ul, li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0 1.5em 1.5em;
}
img {
  height: auto;
  /* Make sure images are scaled correctly. */
}
figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}
/*--------------------------------------------------------------
 # Forms
 --------------------------------------------------------------*/
button, input[type="button"], input[type="reset"], input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, .8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}
button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
}
button:active, input[type="button"]:active, input[type="reset"]:active, input[type="submit"]:active, button:focus, input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus {
  border-color: #aaa #bbb #bbb;
}
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], input[type="number"], input[type="tel"], input[type="range"], input[type="date"], input[type="month"], input[type="week"], input[type="time"], input[type="datetime"], input[type="datetime-local"], input[type="color"], textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="tel"]:focus, input[type="range"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="week"]:focus, input[type="time"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="color"]:focus, textarea:focus {
  color: #111;
}
select {
  border: 1px solid #ccc;
}
textarea {
  width: 100%;
}
/*--------------------------------------------------------------
 # Navigation
 --------------------------------------------------------------*/
/*--------------------------------------------------------------
 ## Links
 --------------------------------------------------------------*/
a {
  color: royalblue;
}
a:visited {
  color: purple;
}
a:hover, a:focus, a:active {
  color: midnightblue;
}
a:focus {
  outline: thin dotted;
}
a:hover, a:active {
  outline: 0;
}
/*--------------------------------------------------------------
 ## Menus
 --------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}
.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
  left: 100%;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul li:hover > ul, .main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation li {
  float: left;
  position: relative;
}
.main-navigation a {
  display: block;
  text-decoration: none;
}
/* Small menu. */
.menu-toggle, .main-navigation.toggled ul {
  display: flex;
  top: 0px;
}
@media screen and (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    display: block;
  }
}
.site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous, .posts-navigation .nav-previous, .post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next, .posts-navigation .nav-next, .post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}
/*--------------------------------------------------------------
 # Accessibility
 --------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}
/*--------------------------------------------------------------
 # Alignments
 --------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*--------------------------------------------------------------
 # Clearings
 --------------------------------------------------------------*/
.clear:before, .clear:after, .entry-content:before, .entry-content:after, .comment-content:before, .comment-content:after, .site-header:before, .site-header:after, .site-content:before, .site-content:after, .site-footer:before, .site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after, .entry-content:after, .comment-content:after, .site-header:after, .site-content:after, .site-footer:after {
  clear: both;
}
/*--------------------------------------------------------------
 # Widgets
 --------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
  /* Make sure select elements fit in widgets. */
}
.widget select {
  max-width: 100%;
}
/*--------------------------------------------------------------
 # Content
 --------------------------------------------------------------*/
/*--------------------------------------------------------------
 ## Posts and pages
 --------------------------------------------------------------*/
.sticky {
  display: block;
}
.hentry {
  margin: 0 0 1.5em;
}
.updated:not(.published) {
  display: none;
}
.page-content, .entry-content, .entry-summary {
  margin: 1.5em 0 0;
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}
/*--------------------------------------------------------------
 ## Comments
 --------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
/*--------------------------------------------------------------
 # Infinite scroll
 --------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, .infinite-scroll.neverending .site-footer {
  /* Older / Newer Posts Navigation (always hidden) */
  /* Theme Footer (when set to scrolling) */
  display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}
/*--------------------------------------------------------------
 # Media
 --------------------------------------------------------------*/
.page-content .wp-smiley, .entry-content .wp-smiley, .comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
/* Make sure embeds and iframes fit their containers. */
embed, iframe, object {
  max-width: 100%;
}
/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}
/*--------------------------------------------------------------
 ## Captions
 --------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}
/*--------------------------------------------------------------
 ## Galleries
 --------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {
  display: block;
}
/*--------------------------------------------------------------
 # Custom Sass Template
 --------------------------------------------------------------*/
.master-slider-parent {
  top: 50%;
  transform: translateY(-50%);
}
body.home article.fullsize .entry-content .front {
  width: 100%;
}
.ms-skin-default .ms-nav-next {
  position: absolute;
}
.zusatz-video-wrapper {
  display: flex;
  justify-content: space-between;
}
.zusatz-video {
  width: 49% !important;
  display: inline-block;
}
#content {
  top: 124px;
}
*, a, a:link, a:visited, a:hover, a:focus {
  outline: 0;
}
#up.show {
  opacity: 1;
  transform: translateY(0px);
}
#up {
  opacity: 0;
  transform: translateY(50px);
  position: fixed;
  left: 0px;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 300;
}
#up div {
  height: 50px;
}
#up div a:hover img {
  cursor: pointer;
}
#turn {
  opacity: 0;
  display: none;
}
body.home, body.archive {
  background-color: white;
  color: black;
}
body {
  background-color: white;
  font-family: "Gotham SSm A", "Gotham SSm B", "Gotham";
  overflow-y: scroll;
}
a:link, a:visited, a:hover, a:focus {
  color: #404040;
}
.clearfix:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.clearfix {
  display: block;
}
#page {
  max-width: 1400px;
  margin: auto;
  opacity: 1;
}
.page #content {
  font-size: 1.15em;
}
.page #content h2 {
  font-size: 1em;
}
body.page #content {
  padding: 0 2.5vw;
}
.ms-slide-container {
  margin-top: 8px;
}
h2 {
  text-transform: uppercase;
  font-family: "Gotham SSm A", "Gotham SSm B", "Gotham book";
  font-weight: 400;
}
h3 {
  font-family: "Baskerville MT W01 Semibold It";
  margin: 0px 0 2px;
}
p {
  font-weight: 300;
  font-size: 1.1vw;
  margin-top: 0px;
}
.single-arbeiten .entry-content .side-content {
  font-size: 1.1vw;
}
@media (min-width: 1400px) {
  .single-arbeiten .entry-content .side-content {
    font-size: 1em;
  }
  p, #content ul {
    font-size: 0.85em;
  }
}
@media (max-width: 1300px) {
  .single-arbeiten .entry-content .side-content {
    font-size: 1.3vw;
  }
  p, #content ul {
    font-size: 1.1vw;
  }
}
@media (max-width: 1150px) {
  .single-arbeiten .entry-content .side-content {
    font-size: 0.9em;
  }
  .turn h2 {
    margin-bottom: 0.5em;
  }
  p, #content ul {
    font-size: 0.75em;
    margin-bottom: 0.75em;
  }
}
/*
 ** Animations zeiten
 */
body:not(.home) #masthead {
  -moz-transition: all 0ms linear;
  -webkit-transition: all 0ms linear;
  -o-transition: all 0ms linear;
  transition: all 0ms linear;
  z-index: 1000;
}
body:not(.home) #masthead .wrapper-head. .fixed-content {
  -moz-transition: all 1000ms linear;
  -webkit-transition: all 1000ms linear;
  -o-transition: all 1000ms linear;
  transition: all 1000ms linear;
}
.animation-slow-all, #masthead .site-branding #logo-desktop, #masthead .site-branding #logo-mobile {
  -moz-transition: all 2000ms linear;
  -webkit-transition: all 2000ms linear;
  -o-transition: all 2000ms linear;
  transition: all 2000ms linear;
}
.animation-fast-all, .main-navigation ul, .main-navigation ul.toggled-ul {
  -moz-transition: all 300ms linear;
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
}
.display-true {
  display: block !important;
}
img#logo-mobile.display-true {
  height: 40px;
  max-width: auto !important;
}
.display-false {
  display: none !important;
}
.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
/*animation element sliding up*/
.animation-element.slide-up:not(:first-child) {
  opacity: 0.2;
  -moz-transition: all 600ms ease-out;
  -webkit-transition: all 600ms ease-out;
  -o-transition: all 600ms ease-out;
  transition: all 600ms ease-out;
  transform: translate(0px, 100px);
  -o-transform: translate(0px, 100px);
  -ms-transform: translate(0px, 100px);
  transform: translate3d(0px, 100px, 0px);
  -moz-transform: translate3d(0px, 100px, 0px);
  -webkit-transform: translate3d(0px, 100px, 0px);
}
.animation-element.slide-up:nth-child(2n) {
  opacity: 0.2;
  -moz-transition: all 300ms ease-out;
  -webkit-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
}
.animation-element.slide-up.in-view {
  opacity: 1;
  -moz-transform: translate3d(0px, 0px, 0px);
  -webkit-transform: translate3d(0px, 0px, 0px);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}
/*animation slide up styled for articles*/
/*
 ** Header
 */
#masthead {
  width: 100%;
  left: 0px;
  padding: 3.5vw 0;
  color: white;
}
#masthead .wrapper-head {
  max-width: 1400px;
  margin: auto;
  padding: 0 2.5vw;
}
#masthead .site-branding {
  position: relative;
  max-width: 19%;
  z-index: 800;
}
#masthead .site-branding #logo-desktop {
  display: block;
  max-width: 100%;
}
#masthead .site-branding #logo-mobile {
  display: none;
}
#masthead .site-branding .logo-off {
  display: none !important;
}
#masthead .wrapper-head-navigation {
  position: absolute;
  width: calc(100% - 2.5vw);
  z-index: 400;
  left: 0px;
  top: 2.75vw;
  padding-right: 10vw;
}
#masthead .main-navigation {
  right: 10vw;
  float: right;
  width: auto;
}
#masthead .main-navigation li.current-menu-item a:link, #masthead .main-navigation li.current-menu-item a:visited, #masthead .main-navigation li.current-menu-item a:hover, #masthead .main-navigation li.current-menu-item a:focus {
  color: #30deff;
}
#masthead .main-navigation li.current-menu-item a:link:after, #masthead .main-navigation li.current-menu-item a:visited:after, #masthead .main-navigation li.current-menu-item a:hover:after, #masthead .main-navigation li.current-menu-item a:focus:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0.5vw;
  right: 2.5vw;
  left: 2.5vw;
  height: 2px;
  background: #30deff;
}
#masthead .main-navigation ul li {
  font-size: 1.6vw;
  text-transform: uppercase;
  padding: 0.5vw 2.5vw;
  font-family: "Gotham SSm A", "Gotham SSm B", "Gotham book";
  font-weight: 400;
  line-height: 2vw;
  display: block;
  margin-right: -0.05em;
  color: #30deff;
}
#masthead .main-navigation ul li a:link[href="/arbeiten"], #masthead .main-navigation ul li a:visited[href="/arbeiten"], #masthead .main-navigation ul li a:hover[href="/arbeiten"], #masthead .main-navigation ul li a:focus[href="/arbeiten"] {
  color: #30deff;
}
#masthead .main-navigation ul li a:link, #masthead .main-navigation ul li a:visited, #masthead .main-navigation ul li a:hover, #masthead .main-navigation ul li a:focus {
  color: #30deff;
}
#masthead .main-navigation ul li a:link:after, #masthead .main-navigation ul li a:visited:after, #masthead .main-navigation ul li a:hover:after, #masthead .main-navigation ul li a:focus:after {
  background: #30deff;
}
#masthead .main-navigation ul li a:hover:after, #masthead .main-navigation ul li a:focus:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0.5vw;
  right: 2.5vw;
  left: 2.5vw;
  height: 2px;
  background: #30deff;
}
#masthead .main-navigation ul li.blau a:link, #masthead .main-navigation ul li.blau a:visited, #masthead .main-navigation ul li.blau a:hover, #masthead .main-navigation ul li.blau a:focus {
  color: #30deff !important;
}
#masthead .main-navigation ul li.blau a:link:after, #masthead .main-navigation ul li.blau a:visited:after, #masthead .main-navigation ul li.blau a:hover:after, #masthead .main-navigation ul li.blau a:focus:after {
  background: #30deff !important;
}
#masthead .main-navigation ul li.current-menu-item.blau a:link, #masthead .main-navigation ul li.current-menu-item.blau a:visited, #masthead .main-navigation ul li.current-menu-item.blau a:hover, #masthead .main-navigation ul li.current-menu-item.blau a:focus {
  color: #30deff !important;
}
#masthead .main-navigation ul li.current-menu-item.blau a:link:after, #masthead .main-navigation ul li.current-menu-item.blau a:visited:after, #masthead .main-navigation ul li.current-menu-item.blau a:hover:after, #masthead .main-navigation ul li.current-menu-item.blau a:focus:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0.5vw;
  right: 2.5vw;
  left: 2.5vw;
  height: 2px;
  background: #30deff !important;
}
.home #masthead, .post-type-archive-arbeiten #masthead, .archive #masthead {
  position: absolute;
}
.home #masthead .wrapper-head, .post-type-archive-arbeiten #masthead .wrapper-head, .archive #masthead .wrapper-head {
  padding: 0 2.5vw;
  max-width: 100%;
}
.home #masthead .site-branding, .post-type-archive-arbeiten #masthead .site-branding, .archive #masthead .site-branding {
  position: relative;
}
.home #masthead .wrapper-head-navigation, .post-type-archive-arbeiten #masthead .wrapper-head-navigation, .archive #masthead .wrapper-head-navigation {
  max-width: 100vw;
}
.home #masthead .main-navigation li.current-menu-item a:link:after, .post-type-archive-arbeiten #masthead .main-navigation li.current-menu-item a:link:after, .archive #masthead .main-navigation li.current-menu-item a:link:after, .home #masthead .main-navigation li.current-menu-item a:visited:after, .post-type-archive-arbeiten #masthead .main-navigation li.current-menu-item a:visited:after, .archive #masthead .main-navigation li.current-menu-item a:visited:after, .home #masthead .main-navigation li.current-menu-item a:hover:after, .post-type-archive-arbeiten #masthead .main-navigation li.current-menu-item a:hover:after, .archive #masthead .main-navigation li.current-menu-item a:hover:after, .home #masthead .main-navigation li.current-menu-item a:focus:after, .post-type-archive-arbeiten #masthead .main-navigation li.current-menu-item a:focus:after, .archive #masthead .main-navigation li.current-menu-item a:focus:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0.5vw;
  right: 2.5vw;
  left: 2.5vw;
  height: 2px;
  background: white;
}
.home #masthead .main-navigation ul li a:link, .post-type-archive-arbeiten #masthead .main-navigation ul li a:link, .archive #masthead .main-navigation ul li a:link, .home #masthead .main-navigation ul li a:visited, .post-type-archive-arbeiten #masthead .main-navigation ul li a:visited, .archive #masthead .main-navigation ul li a:visited, .home #masthead .main-navigation ul li a:hover, .post-type-archive-arbeiten #masthead .main-navigation ul li a:hover, .archive #masthead .main-navigation ul li a:hover, .home #masthead .main-navigation ul li a:focus, .post-type-archive-arbeiten #masthead .main-navigation ul li a:focus, .archive #masthead .main-navigation ul li a:focus {
  color: white;
}
.home #masthead .main-navigation ul li a:hover:after, .post-type-archive-arbeiten #masthead .main-navigation ul li a:hover:after, .archive #masthead .main-navigation ul li a:hover:after, .home #masthead .main-navigation ul li a:focus:after, .post-type-archive-arbeiten #masthead .main-navigation ul li a:focus:after, .archive #masthead .main-navigation ul li a:focus:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0.5vw;
  right: 2.5vw;
  left: 2.5vw;
  height: 2px;
  background: white;
}
/*Social Feed */
#social-feed {
  clear: both;
  position: relative;
}
#social-feed .ff-item {
  display: grid;
}
#social-feed .ff-item:before {
  content: "> ";
  position: absolute;
  z-index: 300;
  padding: 4.5vw 2.5vw;
  top: 18vw;
  font-size: 2.85vw;
  color: #30deff;
  background-repeat: no-repeat;
  background-size: 3vw;
  width: 10vw;
  background-position: 5vw;
  line-height: 6vw;
}
#social-feed .ff-instagram:before {
  background-image: url("https://mrbp.ch/wp-content/themes/_mrb/img/insta.png");
}
#social-feed .ff-facebook:before {
  background-image: url("https://mrbp.ch/wp-content/themes/_mrb/img/fb.png");
}
#social-feed .ff-layout-grid .ff-item .ff-img-holder {
  background-color: white;
}
#social-feed img.ff-initial-image {
  height: 100% !important;
  width: auto !important;
}
body.logged-in #ff-stream-1 {
  min-height: 1000px !important;
  height: auto !important;
}
body.logged-in #ff-stream-1 .ff-loadmore-wrapper {
  display: block !important;
}
#ff-stream-1, #ff-stream-2 {
  height: 32vw;
  transition: unset;
  min-height: 100px !important;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
  padding-bottom: 0px !important;
  background-color: black;
}
#ff-stream-1 article, #ff-stream-2 article {
  /* Animation verändern */
}
#ff-stream-1 .ff-loadmore-wrapper, #ff-stream-2 .ff-loadmore-wrapper {
  display: none;
}
#ff-stream-1 .ff-stream-wrapper, #ff-stream-2 .ff-stream-wrapper {
  margin: 0px;
}
#ff-stream-1 .ff-has-overlay img, #ff-stream-2 .ff-has-overlay img {
  transform: perspective(0px) scale3d(1, 1, 1) rotateZ(0deg) translate(-50%, -50%);
}
#ff-stream-1 .ff-overlay-wrapper, #ff-stream-2 .ff-overlay-wrapper {
  display: none;
}
/*
 ** INDEX 
 */
.news.desktop:first-child {
  opacity: 1;
}
.news.desktop {
  position: absolute;
  z-index: 450;
  right: 15vw;
  top: 10vw;
  opacity: 0;
}
.news.desktop div {
  width: 15vw;
  height: 15vw;
  transform: rotate(-5deg);
}
.news.desktop div div.blue {
  position: relative;
  background-color: #30deff;
  color: white;
  border-radius: 600px;
  padding: 20px;
}
.news.desktop div div.blue div {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  height: auto;
  font-size: 1vw;
}
.news.desktop div div.blue div h2 {
  font-family: "Baskerville MT W01 Semibold It";
  text-transform: none;
  font-size: 1.8em;
  line-height: 1.3em;
}
/* HOME, Arbeiten, archive */
body.home #page, body.post-type-archive-arbeiten #page, body.archive #page {
  max-width: 100%;
  width: 100%;
  position: absolute;
  height: 100%;
}
body.home article:first-child, body.post-type-archive-arbeiten article:first-child, body.archive article:first-child {
  opacity: 1;
}
body.home article.hentry, body.post-type-archive-arbeiten article.hentry, body.archive article.hentry {
  margin: 0px;
}
body.home article.hentry .article-titelbild h2, body.post-type-archive-arbeiten article.hentry .article-titelbild h2, body.archive article.hentry .article-titelbild h2, body.home article.hentry .front > h2, body.post-type-archive-arbeiten article.hentry .front > h2, body.archive article.hentry .front > h2 {
  position: absolute;
  padding: 4vw 2.5vw;
  bottom: 0;
  color: white;
  margin: 0px;
  z-index: 500;
  font-size: 2.7vw;
  text-transform: uppercase;
  font-family: "Gotham SSm A", "Gotham SSm B", "Gotham Book";
  font-weight: 400;
}
body.home article.hentry .article-titelbild h2:before, body.post-type-archive-arbeiten article.hentry .article-titelbild h2:before, body.archive article.hentry .article-titelbild h2:before, body.home article.hentry .front > h2:before, body.post-type-archive-arbeiten article.hentry .front > h2:before, body.archive article.hentry .front > h2:before {
  content: "> ";
  color: #30deff;
}
body.home article.arbeiten, body.post-type-archive-arbeiten article.arbeiten, body.archive article.arbeiten {
  max-height: 85vh;
}
body.home article header, body.post-type-archive-arbeiten article header, body.archive article header {
  position: relative;
  height: calc(100vw / 16 * 8);
  overflow: hidden;
  display: grid;
}
body.home article.work-main header, body.post-type-archive-arbeiten article.work-main header, body.archive article.work-main header {
  position: relative;
  max-height: 85vh;
  height: calc(100vw / 16 * 8);
  overflow: hidden;
  display: grid;
}
body.home article.work-main header .video, body.post-type-archive-arbeiten article.work-main header .video, body.archive article.work-main header .video {
  width: 100vw;
  position: absolute;
  z-index: 400;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  overflow: hidden;
}
body.home article.work-main header .article-titelbild, body.post-type-archive-arbeiten article.work-main header .article-titelbild, body.archive article.work-main header .article-titelbild {
  position: relative;
  display: grid;
  max-height: 85vh;
  height: calc(100vw / 16 * 8);
  overflow: hidden;
}
body.home article.work-main header .img-wrapper, body.post-type-archive-arbeiten article.work-main header .img-wrapper, body.archive article.work-main header .img-wrapper {
  width: 100%;
  height: 50vw;
  background-size: cover;
  background-position: center;
}
body.home article.work-small, body.post-type-archive-arbeiten article.work-small, body.archive article.work-small {
  width: 50%;
  height: 50vw;
  float: left;
}
body.home article.work-small header, body.post-type-archive-arbeiten article.work-small header, body.archive article.work-small header {
  position: relative;
  overflow: hidden;
  display: grid;
}
body.home article.work-small header .article-titelbild, body.post-type-archive-arbeiten article.work-small header .article-titelbild, body.archive article.work-small header .article-titelbild {
  position: relative;
  height: 50vw;
}
body.home article.work-small header .video, body.post-type-archive-arbeiten article.work-small header .video, body.archive article.work-small header .video {
  height: 50vw;
  position: absolute;
  z-index: 400;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) !important;
  overflow: hidden;
}
body.home article.work-small header .img-wrapper, body.post-type-archive-arbeiten article.work-small header .img-wrapper, body.archive article.work-small header .img-wrapper {
  width: 100%;
  height: 50vw;
  background-size: cover;
  background-position: center;
}
/* .INDEX */
/*
 ** ARBEITEN
 */
@media (min-width: 900px) {
  .single-arbeiten #masthead .site-branding {
    max-width: 12% !important;
  }
}
.single-arbeiten #masthead, .fullsize #masthead, .fullsize-welcome #masthead {
  position: fixed;
  padding: 40px 0px 20px 0px;
  z-index: 1;
  background-color: white;
}
.single-arbeiten #content, .fullsize #content, .fullsize-welcome #content {
  position: relative;
}
.single-arbeiten .entry-header, .fullsize .entry-header, .fullsize-welcome .entry-header {
  width: 100%;
  max-width: 1400px;
  z-index: 500;
  background: white;
}
.single-arbeiten .entry-header .post-navigation, .fullsize .entry-header .post-navigation, .fullsize-welcome .entry-header .post-navigation {
  padding: 0 0 0 2.5vw;
  width: 67%;
  margin: 0px;
  font-size: 1.6vw;
  font-weight: 400;
  text-transform: uppercase;
}
.single-arbeiten .entry-header .post-navigation .all, .fullsize .entry-header .post-navigation .all, .fullsize-welcome .entry-header .post-navigation .all {
  float: left;
  color: #404040;
}
.single-arbeiten .entry-header .post-navigation .all a:before, .fullsize .entry-header .post-navigation .all a:before, .fullsize-welcome .entry-header .post-navigation .all a:before {
  content: "< ";
  color: #30deff;
  font-size: 1.3em;
  top: 2px;
  position: relative;
}
.single-arbeiten .entry-header .post-navigation .prev, .fullsize .entry-header .post-navigation .prev, .fullsize-welcome .entry-header .post-navigation .prev {
  float: right;
  color: #404040;
}
.single-arbeiten .entry-header .post-navigation .prev a:after, .fullsize .entry-header .post-navigation .prev a:after, .fullsize-welcome .entry-header .post-navigation .prev a:after {
  content: " >";
  color: #30deff;
  font-size: 1.3em;
  top: 2px;
  position: relative;
}
.single-arbeiten .entry-header .post-navigation a:link, .fullsize .entry-header .post-navigation a:link, .fullsize-welcome .entry-header .post-navigation a:link, .single-arbeiten .entry-header .post-navigation a:visited, .fullsize .entry-header .post-navigation a:visited, .fullsize-welcome .entry-header .post-navigation a:visited, .single-arbeiten .entry-header .post-navigation a:hover, .fullsize .entry-header .post-navigation a:hover, .fullsize-welcome .entry-header .post-navigation a:hover, .single-arbeiten .entry-header .post-navigation a:focus, .fullsize .entry-header .post-navigation a:focus, .fullsize-welcome .entry-header .post-navigation a:focus {
  text-decoration: none;
  color: #404040;
}
.single-arbeiten .entry-content, .fullsize .entry-content, .fullsize-welcome .entry-content {
  margin: 0px;
}
.single-arbeiten .entry-content .video_grid, .fullsize .entry-content .video_grid, .fullsize-welcome .entry-content .video_grid {
  padding: 8px 0;
}
.single-arbeiten .entry-content .video_grid *, .fullsize .entry-content .video_grid *, .fullsize-welcome .entry-content .video_grid * {
  background: none;
}
.single-arbeiten .entry-content .video-wrapper-work, .fullsize .entry-content .video-wrapper-work, .fullsize-welcome .entry-content .video-wrapper-work {
  width: 100%;
  overflow: hidden;
}
.single-arbeiten .entry-content .video-work, .fullsize .entry-content .video-work, .fullsize-welcome .entry-content .video-work {
  width: 101%;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
}
.single-arbeiten .entry-content .youtube-container, .fullsize .entry-content .youtube-container, .fullsize-welcome .entry-content .youtube-container {
  display: block;
  width: 100%;
}
.single-arbeiten .entry-content .youtube-player, .fullsize .entry-content .youtube-player, .fullsize-welcome .entry-content .youtube-player {
  display: block;
  width: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: hand;
  cursor: pointer;
  display: block;
}
.single-arbeiten .entry-content div.youtube-thumb, .fullsize .entry-content div.youtube-thumb, .fullsize-welcome .entry-content div.youtube-thumb {
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}
.single-arbeiten .entry-content div.play-button, .fullsize .entry-content div.play-button, .fullsize-welcome .entry-content div.play-button {
  height: 72px;
  width: 72px;
  left: 50%;
  top: 50%;
  margin-left: -36px;
  margin-top: -36px;
  position: absolute;
  background: url("img/play_button.png") no-repeat;
}
.single-arbeiten .entry-content #youtube-iframe, .fullsize .entry-content #youtube-iframe, .fullsize-welcome .entry-content #youtube-iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.single-arbeiten .entry-content h3, .fullsize .entry-content h3, .fullsize-welcome .entry-content h3 {
  line-height: 1.4em;
  font-weight: 500;
}
.single-arbeiten .entry-content .side-content, .fullsize .entry-content .side-content, .fullsize-welcome .entry-content .side-content {
  width: 33%;
  left: 67%;
  right: 0px;
  position: relative;
  z-index: 600;
}
.single-arbeiten .entry-content .side-content .fixed-content::-webkit-scrollbar-track, .fullsize .entry-content .side-content .fixed-content::-webkit-scrollbar-track, .fullsize-welcome .entry-content .side-content .fixed-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: lightgrey;
}
.single-arbeiten .entry-content .side-content .fixed-content::-webkit-scrollbar, .fullsize .entry-content .side-content .fixed-content::-webkit-scrollbar, .fullsize-welcome .entry-content .side-content .fixed-content::-webkit-scrollbar {
  width: 5px;
  background-color: lightgrey;
}
.single-arbeiten .entry-content .side-content .fixed-content::-webkit-scrollbar-thumb, .fullsize .entry-content .side-content .fixed-content::-webkit-scrollbar-thumb, .fullsize-welcome .entry-content .side-content .fixed-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
}
.single-arbeiten .entry-content .side-content .fixed-content, .fullsize .entry-content .side-content .fixed-content, .fullsize-welcome .entry-content .side-content .fixed-content {
  position: fixed;
  width: 33%;
  max-width: 528px;
  overflow-x: auto;
  padding: 32px;
}
.single-arbeiten .entry-content .side-content .fixed-content :first-child, .fullsize .entry-content .side-content .fixed-content :first-child, .fullsize-welcome .entry-content .side-content .fixed-content :first-child {
  margin-top: 0px;
}
.single-arbeiten .entry-content .side-content .fixed-content h2, .fullsize .entry-content .side-content .fixed-content h2, .fullsize-welcome .entry-content .side-content .fixed-content h2 {
  line-height: 1.2em;
  font-size: 1.6em;
}
.single-arbeiten .entry-content .side-content .fixed-content p, .fullsize .entry-content .side-content .fixed-content p, .fullsize-welcome .entry-content .side-content .fixed-content p {
  margin-top: 0px;
  margin-bottom: 1em;
}
.single-arbeiten .entry-content .side-content .fixed-content p strong, .fullsize .entry-content .side-content .fixed-content p strong, .fullsize-welcome .entry-content .side-content .fixed-content p strong {
  font-weight: 500;
}
.single-arbeiten .entry-content .side-content .fixed-content ul, .fullsize .entry-content .side-content .fixed-content ul, .fullsize-welcome .entry-content .side-content .fixed-content ul {
  margin: 0px;
  padding-left: 15px;
  font-weight: 300;
  font-size: 0.9em;
}
.single-arbeiten .entry-content .side-content .overlay-fade-top, .fullsize .entry-content .side-content .overlay-fade-top, .fullsize-welcome .entry-content .side-content .overlay-fade-top {
  position: fixed;
  width: 33%;
  height: 30px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.single-arbeiten .entry-content .side-content .overlay-fade-bottom, .fullsize .entry-content .side-content .overlay-fade-bottom, .fullsize-welcome .entry-content .side-content .overlay-fade-bottom {
  position: fixed;
  width: 33%;
  bottom: 0px;
  height: 50px;
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 50%);
}
.single-arbeiten .entry-content .main-content, .fullsize .entry-content .main-content, .fullsize-welcome .entry-content .main-content {
  width: 67%;
  float: left;
  max-width: 67vw;
  padding-bottom: 50px;
}
.single-arbeiten .entry-content .main-content iframe, .fullsize .entry-content .main-content iframe, .fullsize-welcome .entry-content .main-content iframe {
  width: 100%;
  padding: 4px 0;
}
.single-arbeiten .entry-content .main-content img, .fullsize .entry-content .main-content img, .fullsize-welcome .entry-content .main-content img {
  padding-top: 8px;
  width: 100%;
}
.single-arbeiten .entry-content .main-content h3, .fullsize .entry-content .main-content h3, .fullsize-welcome .entry-content .main-content h3 {
  padding-left: 2.5vw;
  margin: 4px 0 2px;
}
.single-arbeiten .entry-content .main-content .zwei-bilder, .fullsize .entry-content .main-content .zwei-bilder, .fullsize-welcome .entry-content .main-content .zwei-bilder {
  padding-top: 8px;
}
.single-arbeiten .entry-content .main-content .zwei-bilder img, .fullsize .entry-content .main-content .zwei-bilder img, .fullsize-welcome .entry-content .main-content .zwei-bilder img {
  width: 50%;
  float: left;
  padding-bottom: 8px;
  padding-top: 0px;
}
.single-arbeiten .entry-content .main-content .zwei-bilder img:first-child, .fullsize .entry-content .main-content .zwei-bilder img:first-child, .fullsize-welcome .entry-content .main-content .zwei-bilder img:first-child {
  padding-right: 8px;
}
.single-arbeiten .entry-content .main-content .zwei-bilder img:last-child, .fullsize .entry-content .main-content .zwei-bilder img:last-child, .fullsize-welcome .entry-content .main-content .zwei-bilder img:last-child {
  padding-left: 8px;
}
.single-arbeiten .entry-content .main-content *:first-child, .fullsize .entry-content .main-content *:first-child, .fullsize-welcome .entry-content .main-content *:first-child {
  padding-top: 0px;
}
/* .ARBEITEN */
/*
 ** AGENTUR
 */
body.post-type-archive-agentur article:first-child .entry-content .back, body.home article.fullsize .entry-content div.back {
  padding: 16vw 16vw 0vw;
}
body.post-type-archive-agentur article.agentur.turn, body.home article.fullsize {
  cursor: pointer;
}
body.post-type-archive-agentur article.agentur.turn .icon-turn, body.home article.fullsize .icon-turn {
  position: absolute;
  padding: 4vw 2.5vw;
  bottom: 0;
  right: 0;
  z-index: 200;
}
body.post-type-archive-agentur article.agentur.turn .icon-turn img, body.home article.fullsize .icon-turn img {
  width: 2vw;
}
body.home article.fullsize {
  cursor: initial;
}
body.post-type-archive-agentur article, body.home article.fullsize {
  position: relative;
  top: 0px;
  margin: 0px;
  height: calc(100vw / 16 * 8.5);
  overflow: hidden;
  display: grid;
  /*  .COMPLEX ANIMATION  */
  /* entire container, keeps perspective */
  /*  UPDATED! flip the pane when hovered */
  /* flip speed goes here */
  /* hide back of pane during swap */
  /*  UPDATED! front pane, placed above back */
  /* back, initially hidden pane */
  /*  .COMPLEX ANIMATION  */
}
body.post-type-archive-agentur article .clicklayer, body.home article.fullsize .clicklayer {
  margin: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0px;
}
body.post-type-archive-agentur article a, body.home article.fullsize a {
  z-index: 5;
}
body.post-type-archive-agentur article .entry-content, body.home article.fullsize .entry-content {
  margin: 0px;
  position: absolute;
  width: 100%;
  height: 100%;
  /* BAISC ANIMATION */
  /* BASIC ANIMATION */
}
body.post-type-archive-agentur article .entry-content div.back, body.home article.fullsize .entry-content div.back {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
body.post-type-archive-agentur article .entry-content div.back h2, body.home article.fullsize .entry-content div.back h2 {
  margin-top: 0px;
}
body.post-type-archive-agentur article .entry-content .front, body.home article.fullsize .entry-content .front {
  height: calc(100vw / 16 * 8.5);
}
body.post-type-archive-agentur article .entry-content .front div, body.home article.fullsize .entry-content .front div {
  overflow: initial;
}
body.post-type-archive-agentur article .entry-content .front .ms-skin-default .ms-tooltip-point .ms-point-center, body.home article.fullsize .entry-content .front .ms-skin-default .ms-tooltip-point .ms-point-center {
  border: none;
  background: none;
}
body.post-type-archive-agentur article .entry-content .front .ms-skin-default .ms-tooltip-point .ms-point-border, body.home article.fullsize .entry-content .front .ms-skin-default .ms-tooltip-point .ms-point-border {
  display: none;
}
body.post-type-archive-agentur article .entry-content .front .ms-skin-default .ms-tooltip-point .ms-point-center::before, body.home article.fullsize .entry-content .front .ms-skin-default .ms-tooltip-point .ms-point-center::before {
  content: ">";
  top: -5px;
  left: 15px;
  position: absolute;
  color: white;
  font-size: 1em;
  font-weight: 300;
}
body.post-type-archive-agentur article .entry-content .front .ms-skin-default .ms-tooltip-arrow, body.home article.fullsize .entry-content .front .ms-skin-default .ms-tooltip-arrow {
  display: none;
}
body.post-type-archive-agentur article .entry-content .front .ms-skin-default .ms-tooltip, body.home article.fullsize .entry-content .front .ms-skin-default .ms-tooltip {
  max-width: 300px;
}
body.post-type-archive-agentur article .entry-content .front .ms-skin-default .ms-tooltip-cont, body.home article.fullsize .entry-content .front .ms-skin-default .ms-tooltip-cont {
  background-color: #30deff;
  color: white;
  white-space: nowrap;
  text-shadow: none;
  transform: translateY(10px);
}
body.post-type-archive-agentur article .entry-content .front .ms-skin-default .ms-tooltip-cont p, body.home article.fullsize .entry-content .front .ms-skin-default .ms-tooltip-cont p, body.post-type-archive-agentur article .entry-content .front .ms-skin-default .ms-tooltip-cont h4, body.home article.fullsize .entry-content .front .ms-skin-default .ms-tooltip-cont h4 {
  margin: 0px;
}
body.post-type-archive-agentur article .entry-content .front .ms-skin-default .ms-tooltip-cont p, body.home article.fullsize .entry-content .front .ms-skin-default .ms-tooltip-cont p {
  font-size: 1em;
}
body.post-type-archive-agentur article .entry-content .back, body.home article.fullsize .entry-content .back {
  background-color: white;
  padding: 4vw 16vw 4vw;
  font-size: 1em;
}
body.post-type-archive-agentur article .entry-content .back ul, body.home article.fullsize .entry-content .back ul {
  margin: 0px;
  padding-left: 15px;
  font-weight: 300;
}
body.post-type-archive-agentur article .entry-content .back > div, body.home article.fullsize .entry-content .back > div {
  position: relative;
  overflow: auto;
  width: 100%;
  height: 100%;
  padding-right: 10px;
  align-items: center;
}
body.post-type-archive-agentur article .entry-content .back > div .icons.panel-row-style h3, body.home article.fullsize .entry-content .back > div .icons.panel-row-style h3 {
  font-size: 1em;
}
body.post-type-archive-agentur article .entry-content .back > div .icons.panel-row-style p, body.home article.fullsize .entry-content .back > div .icons.panel-row-style p {
  margin: 0px;
}
body.post-type-archive-agentur article .entry-content .back > div .icons.panel-row-style .so-panel, body.home article.fullsize .entry-content .back > div .icons.panel-row-style .so-panel {
  margin-bottom: 0px !important;
}
body.post-type-archive-agentur article .entry-content .back > div .icons.panel-row-style img, body.home article.fullsize .entry-content .back > div .icons.panel-row-style img {
  width: 6vw;
}
body.post-type-archive-agentur article .entry-content .back div::-webkit-scrollbar-track, body.home article.fullsize .entry-content .back div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: lightgrey;
}
body.post-type-archive-agentur article .entry-content .back div::-webkit-scrollbar, body.home article.fullsize .entry-content .back div::-webkit-scrollbar {
  width: 5px;
  background-color: lightgrey;
}
body.post-type-archive-agentur article .entry-content .back div::-webkit-scrollbar-thumb, body.home article.fullsize .entry-content .back div::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
}
body.post-type-archive-agentur article .entry-content, body.home article.fullsize .entry-content {
  perspective: 1000px;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
body.post-type-archive-agentur article .entry-content .back.on, body.home article.fullsize .entry-content .back.on {
  transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  z-index: 100;
}
body.post-type-archive-agentur article .entry-content .front.on, body.home article.fullsize .entry-content .front.on {
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
body.post-type-archive-agentur article .entry-content .front.display, body.home article.fullsize .entry-content .front.display {
  display: none;
  -moz-transition: 2000ms ease-out;
  -webkit-transition: 2000ms ease-out;
  -o-transition: 2000ms ease-out;
  transition: 2000ms ease-out;
}
body.post-type-archive-agentur article .entry-content .front.display-opacity, body.home article.fullsize .entry-content .front.display-opacity {
  opacity: 0;
}
body.post-type-archive-agentur article .flipper, body.home article.fullsize .flipper {
  -moz-transition: 0.6s;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: relative;
}
body.post-type-archive-agentur article .front, body.home article.fullsize .front, body.post-type-archive-agentur article .back, body.home article.fullsize .back {
  -o-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-transition: 0.6s;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  -moz-transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
}
body.post-type-archive-agentur article .front, body.home article.fullsize .front {
  z-index: 2;
  -o-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  opacity: 1;
}
body.post-type-archive-agentur article .back, body.home article.fullsize .back {
  -o-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
div.team {
  width: 33.33%;
  height: 46.25vw;
  float: left;
  margin: 0px;
  position: relative;
  overflow: hidden;
}
div.team .bild {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
div.team h2.entry-title-team {
  position: absolute;
  padding: 4.5vw 2.5vw;
  bottom: 0;
  color: white;
  margin: 0px;
  z-index: 500;
  font-size: 2.7vw;
  text-transform: uppercase;
  font-family: "Gotham SSm A", "Gotham SSm B", "Gotham Book";
  font-weight: 400;
}
div.team .pre-view {
  background-color: #30deff;
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 0 15px;
  color: white;
}
div.team .entry-content.visible {
  bottom: 0px !important;
}
div.team .entry-content {
  position: absolute;
  width: 100%;
  background-color: #30deff;
  color: white;
  bottom: -40vw;
  z-index: 50;
  -moz-transition: bottom 600ms ease-out;
  -webkit-transition: bottom 600ms ease-out;
  -o-transition: bottom 600ms ease-out;
  transition: bottom 600ms ease-out;
}
div.team .entry-content .contact ul {
  margin-left: 0px;
  padding-left: 15px;
  font-size: 0.8em;
}
div.team .entry-content .wrapper {
  padding: 0;
}
div.team .entry-content div {
  padding: 16px 16px;
}
div.team .entry-content div h4 {
  margin: 0px;
}
div.team .entry-content a:link, div.team .entry-content a:visited, div.team .entry-content a:hover, div.team .entry-content a:focus {
  color: white;
}
div.team .entry-content p {
  margin: 0px;
}
div.team:hover .entry-content {
  bottom: 0px;
}
@media (max-width: 1150px) {
  body.post-type-archive-agentur article .entry-content div.back, body.home article.fullsize .entry-content div.back {
    padding: 16vw 8vw 2vw;
  }
  body.post-type-archive-agentur article:first-child .entry-content .back, body.home article.fullsize:first-child .back {
    padding: 16vw 8vw 2vw;
  }
  body.post-type-archive-agentur article .entry-content div.back .panel-grid, body.home article.fullsize .entry-content div.back .panel-grid {
    margin-bottom: 0px !important;
  }
}
/*
 ** .AGENTUR
 */
/*
 ** KONTAKT
 */
.page-id-66277 #masthead .site-branding #logo-desktop {
  -webkit-filter: drop-shadow(0px 0px 5px #fff);
  filter: drop-shadow(2px 2px 2px white) drop-shadow(-2px 2px 2px white) drop-shadow(2px -2px 2px white) drop-shadow(-2px -2px 2px white);
}
body.page-id-66277 #page {
  max-width: 100%;
}
#full_screen_map {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}
#full_screen_map .widget_sow-google-map {
  position: absolute;
  height: 100vh;
  width: 100%;
  top: 0px;
}
#full_screen_map .widget_sow-google-map #map {
  position: absolute;
  height: 100%;
  width: 100%;
}
#full_screen_map .widget_sow-google-map #map .sow-google-map-canvas {
  position: absolute !important;
  height: 100% !important;
  width: 100% !important;
}
#full_screen_map .widget_siteorigin-panels-builder {
  position: absolute;
  z-index: 200;
  height: 100vh;
  font-size: 0.75em;
  left: 55vw;
}
#full_screen_map .widget_siteorigin-panels-builder > .panel-layout {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
  max-width: 420px;
}
#full_screen_map .widget_siteorigin-panels-builder > .panel-layout .so-panel {
  margin-bottom: 0px;
}
#full_screen_map .widget_siteorigin-panels-builder > .panel-layout .so-panel p {
  font-size: 1em;
}
@media (min-width: 900px) {
  body.home article.arbeiten.work-main, body.post-type-archive-arbeiten article.arbeiten.work-main, body.archive article.arbeiten.work-main {
    min-height: 450px;
  }
  body.home article.arbeiten.work-main .entry-header, body.post-type-archive-arbeiten article.arbeiten.work-main .entry-header, body.archive article.arbeiten.work-main .entry-header, body.home article.arbeiten.work-main .article-titelbild, body.post-type-archive-arbeiten article.arbeiten.work-main .article-titelbild, body.archive article.arbeiten.work-main .article-titelbild {
    min-height: 450px;
  }
  body.home article.arbeiten.work-small, body.post-type-archive-arbeiten article.arbeiten.work-small, body.archive article.arbeiten.arbeiten.work-small {
    min-height: 50vw;
  }
  body.home article.arbeiten.work-small .entry-header, body.post-type-archive-arbeiten article.arbeiten.work-small .entry-header, body.archive article.arbeiten.arbeiten.work-small .entry-header, body.home article.arbeiten.work-small .article-titelbild, body.post-type-archive-arbeiten article.arbeiten.work-small .article-titelbild, body.archive article.arbeiten.arbeiten.work-small .article-titelbild {
    min-height: 50vw;
  }
}
@media (min-width: 1450px) {
  img#logo-desktop {
    width: 248px !important;
  }
  body.page #content {
    padding: 0;
  }
  body:not(.home, .post-type-archive-arbeiten) #masthead {
    padding: 48px 0px;
  }
  body #masthead.masthead-onscroll {
    padding: 3.5vw 3.5vw 1.5vw 3.5vw !important;
  }
  body #masthead .wrapper-head {
    padding: 0px;
  }
  #masthead {
    padding: 40px 0;
  }
  #masthead .wrapper-head-navigation {
    position: absolute;
    top: 40px;
    padding-right: 10%;
  }
  #masthead .main-navigation ul li {
    font-size: 22px;
    line-height: 22px;
    padding: 8px 37px;
  }
  #masthead .main-navigation ul li a:link:after, #masthead .main-navigation ul li a:visited:after, #masthead .main-navigation ul li a:hover:after, #masthead .main-navigation ul li a:focus:after {
    bottom: 5px !important;
    right: 37px !important;
    left: 37px !important;
  }
  .arbeiten .entry-content .side-content .fixed-content h2, .single-arbeiten .entry-header .post-navigation {
    font-size: 22px;
  }
  #full_screen_map .widget_siteorigin-panels-builder {
    left: 55vw;
  }
  body.home article.hentry .article-titelbild h2, body.post-type-archive-arbeiten article.hentry .article-titelbild h2, body.archive article.hentry .article-titelbild h2, body.home article.hentry .front > h2, body.post-type-archive-arbeiten article.hentry .front > h2, body.archive article.hentry .front > h2 {
    font-size: 40px;
  }
  .arbeiten .entry-header .post-navigation {
    padding-left: 0px;
  }
  body.post-type-archive-agentur article .entry-content .back > div, body.home article.fullsize .entry-content .back > div {
    width: 940px;
    transform: translateX(-50%);
    position: relative;
    left: 50%;
  }
}
@media (max-width: 1400px) {
  .arbeiten .entry-content .side-content .fixed-content h2 {
    font-size: 1.4em;
  }
}
@media (max-width: 1250px) {
  .arbeiten .entry-content .side-content .fixed-content h2 {
    font-size: 1.2em;
  }
}
@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
  #page {
    opacity: 0;
    display: none;
  }
  #turn {
    opacity: 1;
    display: block;
  }
  #turn div {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #30deff;
  }
  #turn div img {
    position: absolute;
    left: 47%;
    top: 46%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 900px) {
  body.home article.fullsize .entry-content div.back {
    padding: 4vw 8vw;
  }
}
@media (max-width: 900px) {
  /*animation element sliding up*/
  /*animation slide up styled for articles*/
  /*
   ** Header
   */
  /*
   ** INDEX
   */
  /*
   ** ARBEITEN
   */
  /*
   ** AGENTUR
   */
  /*
   ** Kontakt
   */
  div#panel-66890-1-2-0, #full_screen_map .widget_siteorigin-panels-builder {
    position: relative !important;
  }
  #panel-66890-1-1-0 > .panel-widget-style {
    max-width: initial !important;
  }
  body.post-type-archive-agentur article.agentur.turn .icon-turn img {
    width: 8vw;
  }
  body.page #content {
    padding: 0 20px;
  }
  #news {
    height: 100px;
    position: absolute;
    width: 100%;
    overflow: hidden;
  }
  #news .news.mobile:first-child {
    opacity: 1;
  }
  #news #news-wrapper {
    position: absolute;
    z-index: 450;
    top: 20px;
    left: 50%;
    width: max-content;
    min-width: 100%;
    overflow: hidden;
    background-color: #30deff;
    transform: rotate(-2deg) translateX(-50%);
  }
  #news #news-wrapper .news.mobile {
    position: relative;
    float: left;
    padding: 5px 10px;
    color: white;
    margin: 0px;
    -moz-animation: movx 15s linear infinite;
    /* Firefox */
    -webkit-animation: movx 15s linear infinite;
    /* Safari and Chrome */
    -o-animation: movx 15s linear infinite;
    /* Opera */
    -ms-animation: movx 15s linear infinite;
    /* IE 10 */
    animation: movx 15s linear infinite;
  }
  #news #news-wrapper .news.mobile a:link, #news #news-wrapper .news.mobile a:visited, #news #news-wrapper .news.mobile a:hover, #news #news-wrapper .news.mobile a:focus {
    color: white;
    text-decoration: none;
  }
  #news #news-wrapper .news.mobile h2:before {
    content: "> ";
  }
  #news #news-wrapper .news.mobile h2 {
    font-family: "BaskervilleMTW01-SmBdIt";
    font-style: italic;
    text-transform: initial;
    font-size: 20px;
    white-space: pre;
    margin: 0px;
    padding: 0px 0px 0px 25px !important;
  }
  @-moz-keyframes movx /* Firefox */ {
    0% {
      left: 100%;
    }
    100% {
      left: -100%;
    }
  }
  @-webkit-keyframes movx /* Safari and Chrome */ {
    0% {
      left: 100%;
    }
    100% {
      left: -100%;
    }
  }
  @-o-keyframes movx /* Opera */ {
    0% {
      left: 100%;
    }
    100% {
      left: -100%;
    }
  }
  @-ms-keyframes movx /* IE 10 */ {
    0% {
      left: 100%;
    }
    100% {
      left: -100%;
    }
  }
  @keyframes movx {
    0% {
      left: 100%;
    }
    100% {
      left: -100%;
    }
  }
  .arbeiten .entry-content .side-content .fixed-content h2, div.team h2.entry-title-team, body.archive article.hentry .front > h2 {
    font-size: 6vw;
  }
  .single-arbeiten .entry-header .post-navigation {
    font-size: 1em;
    z-index: 1000;
  }
  .animation-element.slide-up:not(:first-child) {
    opacity: 0.2;
    -moz-transition: all 600ms ease-out;
    -webkit-transition: all 600ms ease-out;
    -o-transition: all 600ms ease-out;
    transition: all 600ms ease-out;
    -moz-transform: translate3d(0px, 50px, 0px);
    -webkit-transform: translate3d(0px, 50px, 0px);
    -o-transform: translate(0px, 50px);
    -ms-transform: translate(0px, 50px);
    transform: translate3d(0px, 50px, 0px);
  }
  .animation-element.slide-up:nth-child(2n) {
    opacity: 0.2;
    -moz-transition: all 300ms ease-out;
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
  }
  .animation-element.slide-up.in-view {
    opacity: 1;
    -moz-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate3d(0px, 0px, 0px);
  }
  .home #masthead .wrapper-head, .post-type-archive-arbeiten #masthead .wrapper-head, .archive #masthead .wrapper-head {
    padding: 0px !important;
  }
  .main-navigation ul.toggled-ul {
    display: flex;
    visibility: visible;
    opacity: 1;
  }
  .main-navigation ul {
    visibility: hidden;
    opacity: 0;
  }
  #site-navigation > div {
    display: none;
  }
  #site-navigation.toggled > div {
    display: block;
  }
  .main-navigation.toggled ul {
    display: flex;
    visibility: visible;
    opacity: 1;
  }
  #masthead {
    position: fixed !important;
    background: white;
    padding: 20px 20px !important;
    z-index: 1000;
  }
  #masthead .wrapper-head {
    padding: 0px;
  }
  #masthead .wrapper-head-navigation {
    position: absolute;
    width: 100%;
    height: 100%;
    left: auto;
    right: 0px;
    top: 0px;
    z-index: 700;
    padding: 0px;
  }
  #masthead .site-branding {
    position: relative;
    float: left;
    max-width: 85%;
  }
  #masthead .site-branding #logo-desktop {
    display: none;
  }
  #masthead .site-branding #logo-mobile {
    display: block;
    max-height: 40px;
    width: auto;
  }
  #masthead #site-navigation {
    top: 0px;
    right: 0px;
    width: 100%;
    z-index: 1000;
    /* Rotate first bar */
    /* Fade out the second bar */
    /* Rotate last bar */
  }
  #masthead #site-navigation div {
    position: relative;
    clear: both;
  }
  #masthead #site-navigation ul {
    position: relative;
    justify-content: space-between;
    background-color: white;
    padding: 10px;
    z-index: 900;
  }
  #masthead #site-navigation ul .current-menu-item a {
    border-bottom: 2px solid #1da4e4;
  }
  #masthead #site-navigation ul li {
    font-size: 1em;
    line-height: 1em;
    background: white;
  }
  #masthead #site-navigation ul li a:link, #masthead #site-navigation ul li a:visited, #masthead #site-navigation ul li a:hover, #masthead #site-navigation ul li a:focus {
    color: #30deff !important;
  }
  #masthead #site-navigation .menu-toggle {
    position: relative;
    float: right;
    margin: 15px;
    height: 100%;
    padding: 0px;
    border-style: none;
    box-shadow: none;
    background: none;
    outline: none;
  }
  #masthead #site-navigation .menu-bar {
    display: inline-block;
    cursor: pointer;
    height: 40px;
    width: 40px;
    padding: 6px 10px;
  }
  #masthead #site-navigation .bar1, #masthead #site-navigation .bar2, #masthead #site-navigation .bar3 {
    width: 20px;
    height: 3px;
    background-color: #30deff;
    margin: 3px 0;
    transition: 0.4s;
    padding-top: 0px !important;
  }
  #masthead #site-navigation .bar1 {
    margin-top: -1px;
  }
  #masthead #site-navigation .change.bar1 {
    -webkit-transform: rotate(-45deg) translate(2px, 10px) !important;
    transform: rotate(-45deg) translate(-4px, 4px) !important;
    width: 20px;
  }
  #masthead #site-navigation .change.bar2 {
    opacity: 0;
  }
  #masthead #site-navigation .change.bar3 {
    -webkit-transform: rotate(45deg) translate(2px, -10px);
    transform: rotate(45deg) translate(-4px, -4px);
    width: 20px;
  }
  #masthead #site-navigation .menu-toggle {
    outline: 0;
  }
  #content {
    position: absolute;
    top: 75px;
    width: 100%;
  }
  .single-arbeiten .entry-header .post-navigation {
    font-size: 1em;
  }
  body.home #main > article, body.post-type-archive-arbeiten #main > article {
    width: 100% !important;
    height: calc(100vw / 16 * 8.5) !important;
  }
  body.home #main > article .front, body.post-type-archive-arbeiten #main > article .front {
    height: calc(100vw / 16 * 8.5) !important;
  }
  body.home #main > article header, body.post-type-archive-arbeiten #main > article header, body.home #main > article .article-titelbild, body.post-type-archive-arbeiten #main > article .article-titelbild {
    height: calc(100vw / 16 * 8.5) !important;
  }
  body.home #main > article .video-wrapper, body.post-type-archive-arbeiten #main > article .video-wrapper {
    display: none;
  }
  body.home #main > article .img-wrapper, body.post-type-archive-arbeiten #main > article .img-wrapper {
    height: 100% !important;
    position: absolute;
  }
  body.home #main > article h2, body.post-type-archive-arbeiten #main > article h2 {
    /* Minimum font size */
    font-size: 1.1em !important;
    padding: 20px 20px 20px 35px !important;
  }
  body.home #main > article h2:before, body.post-type-archive-arbeiten #main > article h2:before {
    position: absolute;
    left: 18px;
  }
  #social-feed .ff-item:before {
    font-size: 20px;
    background-size: 5vw;
    width: 14vw;
    background-position: 7vw 4.7vw;
  }
  #social-feed .header {
    position: absolute;
    height: 33vw;
  }
  #social-feed .header h2 {
    font-size: 20px !important;
    padding: 28px 28px 8px 28px !important;
  }
  #social-feed .header h2 img {
    height: 20px !important;
    min-width: 20px !important;
    margin-left: 20px;
    top: 3px;
    position: relative;
  }
  .arbeiten .entry-header .post-navigation {
    width: 100%;
    padding: 0 20px 8px;
    position: fixed;
    background: white;
    z-index: 1000;
    margin: 0px;
  }
  .arbeiten .entry-header .post-navigation.menu-on {
    z-index: 0;
  }
  .arbeiten .entry-content .main-content {
    width: 100%;
    max-width: 100%;
    margin-top: 44px;
  }
  .arbeiten .entry-content .main-content h3 {
    padding: 0 20px;
    margin-top: 2px;
  }
  .arbeiten .entry-content .side-content {
    width: 100%;
    left: 0px;
    margin-top: 10px;
    clear: both;
  }
  .arbeiten .entry-content .side-content .fixed-content {
    width: 100%;
    position: relative;
    padding: 0px 20px;
    height: auto !important;
  }
  .arbeiten .entry-content .side-content .fixed-content h2 {
    font-size: 1.3em;
  }
  .arbeiten .entry-content .side-content .fixed-content p {
    hyphens: auto;
  }
  .arbeiten .entry-content .side-content .overlay-fade-top {
    display: none;
  }
  .arbeiten .entry-content .side-content .overlay-fade-bottom {
    display: none;
  }
  div.team .entry-content .wrapper {
    max-height: 40vw;
    overflow: auto;
  }
  body.post-type-archive-agentur article {
    height: calc(98vw);
  }
  body.post-type-archive-agentur article .entry-content .front {
    height: calc(98vw);
    width: 100vw;
  }
  body.post-type-archive-agentur article .entry-content .back, body.post-type-archive-agentur article .entry-content div.back {
    padding: 5px 20px 5px 20px;
    font-size: 0.8em;
    hyphens: auto;
  }
  body.post-type-archive-agentur article:first-child .entry-content .back {
    padding: 5px 20px 5px 20px;
  }
  body.post-type-archive-agentur article:first-child .entry-content .back .panel-grid {
    margin-bottom: 0px !important;
  }
  body.post-type-archive-agentur article .entry-content .back > div .panel-grid-cell {
    margin-bottom: 0px !important;
  }
  body.post-type-archive-agentur article .entry-content .back > div h2 {
    margin-bottom: 0px;
  }
  body.post-type-archive-agentur article .entry-content .back > div .so-widget-sow-editor h3 {
    line-height: 0.8em;
  }
  body.post-type-archive-agentur article .entry-content .back > div .icons.panel-row-style img {
    width: 16vw;
  }
  body.post-type-archive-agentur article .entry-content .back > div .panel-grid-cell-empty {
    display: flex !important;
  }
  div.team {
    width: 50%;
    height: 66.5vw;
    float: left;
    margin: 0px;
    position: relative;
    overflow: hidden;
    background-color: #30deff;
  }
  div.team .entry-content {
    bottom: -100vw;
    font-size: 0.8em;
  }
  div.team .pre-view h4 {
    font-size: 0.8em;
    margin: 5px 0;
  }
  div.team-head {
    height: 50vw;
  }
  #full_screen_map {
    padding-right: 0px !important;
  }
  #full_screen_map .widget_sow-google-map {
    position: relative;
    height: 300px;
  }
  #full_screen_map .widget_siteorigin-panels-builder .so-widget-sow-editor {
    top: auto !important;
    transform: none !important;
  }
  #full_screen_map .widget_siteorigin-panels-builder {
    height: auto;
  }
  #full_screen_map .widget_siteorigin-panels-builder .panel-layout {
    transform: none;
  }
  #full_screen_map .widget_siteorigin-panels-builder {
    left: 0px;
  }
  #full_screen_map .widget_siteorigin-panels-builder .panel-layout {
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  body.home #main > article .back h2, body.post-type-archive-arbeiten #main > article .back h2 {
    font-size: 4.25vw !important;
    padding: 0 0 20px !important;
  }
}
@media (min-width: 400px) and (max-width: 900px) {
  body.home #main > article .back img {
    max-width: 70%;
    max-height: 95px;
    width: auto;
  }
}
@media (max-width: 400px) {
  #masthead {
    min-height: 72px;
  }
  #masthead .site-branding #logo-mobile {
    max-height: auto !important;
    max-width: 100% !important;
  }
}
