@charset "UTF-8";
/* ========================================================================== 
   Project Stylesheet
   Strukturierte CSS-Version
   ========================================================================== */
/*
   Browserfertige CSS-Datei ohne Sass/SCSS.
   Variablen werden über :root-CSS-Custom-Properties gepflegt.

   Empfehlung:
   - Diese Datei als Hauptdatei pflegen.
   - Externe Bibliotheken NICHT hier hinein kopieren.
   - Font Awesome 4.5.0 als eigene vendor/font-awesome.css laden.
   - perfect-scrollbar als eigene vendor/perfect-scrollbar.css laden, falls möglich.
*/
/* ========================================================================== 
   01. CSS Variablen / Design Tokens
   ========================================================================== */

:root {
  /* Farben */
  --color-text: #000;
  --color-white: #fff;
  --color-dark: #0b0d0f;
  --color-muted: #999;
  --color-hover: #666;
  --color-border: #ccc;
  --color-light-bg: #efeeee;
  --color-highlight: #ff9;
  --color-soft: #eee;
  --color-scrollbar: #aaa;
  --color-facade-text: #454545;
  --color-facade-bar: #e8e8e8;

  /* Transparenzen */
  --overlay-white: rgba(255, 255, 255, 0.2);
  --overlay-black-light: rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 5px 10px rgba(0, 0, 0, 0.1);
  --shadow-inset: inset 0 1px 1px -1px rgba(0, 0, 0, 0.5);

  /* Typografie */
  --font-base: "Lato", Helvetica, Arial, sans-serif;
  --font-facade: sans-serif;
  --letter-spacing-base: 0.1rem;
  --letter-spacing-wide: 0.2rem;
  --letter-spacing-button: 0.3rem;

  /* Layout */
  --container-width: 1200px;
  --container-medium-width: 960px;
  --page-offset-x: 1.5%;
  --page-offset-y: 2.5%;
  --page-width: 97%;
  --page-height: 95%;

  /* Abstände */
  --content-padding: 25px;
  --content-padding-large: 15px;
  --content-padding-small: 10px;
  --grid-padding: 20px;
  --grid-padding-small: 10px;

  /* Grid */
  --column-width: 300px;
  --mobile-column-width: 240px;
  --column-inner: 260px;
  --column-min-height: 248px;
  --mobile-column-inner: 200px;

  --col-1-width: 248px;
  --col-1-width-large: 188px;
  --col-2-width: 548px;
  --col-2-width-large: 428px;
  --col-3-width: 848px;
  --col-3-width-large: 668px;
  --col-4-width: 1148px;
  --col-4-width-large: 908px;

  /* Bewegung */
  --transition-base: all 0.5s;
  --transition-fast: background-color 0.2s linear;
  --transition-scrollbar: background-color 0.2s linear, opacity 0.2s linear;
}

/* ========================================================================== 
   02. Reset / Normalisierung
   ========================================================================== */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: var(--color-highlight);
  color: var(--color-text);
  text-decoration: none;
}

mark {
  background-color: var(--color-highlight);
  color: var(--color-text);
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--color-border);
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/* ========================================================================== 
   03. Base / Typografie
   ========================================================================== */
html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 800px) {
  html {
    font-size: 50.5%;
  }
}

body {
  color: var(--color-text);
  background: var(--color-white);
  font-family: var(--font-base);
  font-weight: 400;
  position: relative;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: var(--letter-spacing-base);
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  font-weight: 900;
  margin-bottom: 50px;
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  line-height: 1;
}
h1 strong {
  font-weight: 900;
}

h2 {
  font-weight: normal;
  margin-bottom: 50px;
  font-size: 1.8rem;
  letter-spacing: var(--letter-spacing-base);
  line-height: 1.4;
}

h3,
h4,
h5,
h6 {
  font-weight: 900;
  margin-bottom: 20px;
  font-size: 1.6rem;
  letter-spacing: var(--letter-spacing-wide);
  line-height: 1.4;
}

p {
  font-weight: 600;
  margin-top: 5px;
  margin-bottom: 20px;
  line-height: 2;
  letter-spacing: var(--letter-spacing-base);
}

a {
  text-decoration: none;
  color: var(--color-dark);
  letter-spacing: var(--letter-spacing-base);
  transition: var(--transition-base);
}
a:hover {
  color: var(--color-dark);
}

html
{
    font-size: 64.5%;
    scroll-behavior: smooth;
}

*, *::before, *::after 
{
    box-sizing: border-box;
}


/* ========================================================================== 
   04. Globale Layout-Elemente
   ========================================================================== */
.pagewrapper {
  z-index: 1;
  position: absolute;
  top: var(--page-offset-y);
  left: var(--page-offset-x);
  width: var(--page-width);
  height: var(--page-height);
}

.content {
  padding: var(--content-padding);
}
@media screen and (max-width: 1210px) {
  .content {
    padding: var(--content-padding-large);
  }
}
@media screen and (max-width: 959px) {
  .content {
    padding: var(--content-padding-small);
    overflow: hidden;
  }
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none;
  background: var(--overlay-white);
}

/* ========================================================================== 
   05. Header
   ========================================================================== */
header#pageheader {
  position: relative;
  z-index: 2;
}
header#pageheader .headerbox {
  width: 50%;
  float: left;
}
header#pageheader .header_leftside {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
}
header#pageheader .logo img {
  max-width: 175px;
  min-width: 100px;
  width: 100%;
  height: auto;
}
header#pageheader h1 {
  margin: 0;
}
header#pageheader a {
  display: inline-block;
  padding: 5px;
  text-transform: uppercase;
  font-weight: 900;
  position: relative;
  padding-right: 25px;
}
header#pageheader a:hover {
  color: var(--color-hover);
}
@media screen and (max-width: 450px) {
  header#pageheader a {
    margin-bottom: 5px;
    padding: 6px 20px 6px 6px;
    display: block;
  }
}
header#pageheader a i {
  position: absolute;
  top: 4px;
  right: 0;
  font-weight: normal;
  font-size: 1.6rem;
}
@media screen and (max-width: 450px) {
  header#pageheader a i {
    top: 5px;
    right: 0;
    font-size: 1.6rem;
  }
}

/* ========================================================================== 
   06. Footer
   ========================================================================== */
#pagefooter {
  position: fixed;
  bottom: var(--page-offset-y);
  left: var(--page-offset-x);
  width: var(--page-width);
  font-size: 1.2rem;
  z-index: 5;
}
@media screen and (max-width: 450px) {
  #pagefooter {
    padding: 1%;
    background: var(--color-white);
  }
}
#pagefooter a {
  display: inline-block;
  padding: 5px;
  text-transform: uppercase;
  font-weight: 900;
}
#pagefooter a:hover {
  color: var(--color-hover);
}
#pagefooter .footerbox {
  width: 50%;
  float: left;
}
#pagefooter .footer_rightside ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#pagefooter .footer_rightside ul li {
  display: inline-block;
}

/* ========================================================================== 
   07. About-Panel
   ========================================================================== */
#about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 500px;
  display: none;
  z-index: 4;
  color: var(--color-white);
  background: var(--color-dark);
}
#about a.closeabout {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  display: block;
  z-index: 10;
  color: var(--color-white);
  text-align: center;
  line-height: 2;
  font-size: 2rem;
}
#about .content {
  padding-top: 90px;
}
@media screen and (max-width: 959px) {
  #about .content {
    padding-top: 15px;
  }
}
#about .leftspace {
  margin-left: 2%;
}
@media screen and (max-width: 1210px) {
  #about .leftspace {
    margin-left: 0;
  }
}
#about div.aboutbox {
  float: left;
  position: relative;
  max-width: 30%;
  z-index: 4;
}
@media screen and (max-width: 1210px) {
  #about div.aboutbox {
    width: 33%;
    max-width: 33%;
  }
}
@media screen and (max-width: 800px) {
  #about div.aboutbox {
    width: 50%;
    max-width: 50%;
  }
}
#about div.aboutbox p b {
  display: block;
  padding-top: 70px;
}
@media screen and (max-width: 959px) {
  #about div.aboutbox p b {
    padding-top: 0;
  }
}
#about div.aboutbox p i {
  font-weight: 300;
  font-style: normal;
}
#about div.aboutbox a {
  display: inline-block;
  padding: 5px;
  color: var(--color-white);
  text-transform: uppercase;
}
#about div.aboutbox ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#about div.aboutbox ul li {
  line-height: 1.5;
}
#about .image {
  padding-top: 0;
  padding-right: 0;
}
@media screen and (max-width: 1210px) {
  #about .image {
    display: none;
  }
}
#about div.imageholder {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 360px;
}
#about div.fistbox {
  padding-left: 300px;
}
@media screen and (max-width: 1210px) {
  #about div.fistbox {
    padding-left: 0;
  }
}
@media screen and (max-width: 800px) {
  #about div.fistbox {
    width: 100%;
    max-width: 100%;
  }
}
#about a.aboutimage {
  position: relative;
  bottom: 0;
  left: 0;
  display: block !important;
  margin-left: -30px;
  margin-bottom: -30px;
}
#about a.aboutimage img {
  position: relative;
  margin: 0 0 -2px 0;
  padding: 0;
}

/* ========================================================================== 
   08. Navigation
   ========================================================================== */
#navigation {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  margin-right: -300px;
  display: none;
  z-index: 3;
  background: var(--color-dark);
}
#navigation a.closenavigation {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  display: block;
  z-index: 11;
  color: var(--color-white);
  text-align: center;
  line-height: 2;
  font-size: 2rem;
}
#navigation a.closenavigation i {
  transition: var(--transition-base);
}
#navigation a.closenavigation:hover i {
  color: var(--color-muted);
}
#navigation .adressfeld {
  position: absolute;
  bottom: 0;
  left: 0;
}
#navigation .navholder {
  height: 100%;
}
#navigation .navholder div.menu,
#navigation .navholder div.menu-main-container {
  display: table-cell;
  vertical-align: middle;
}
#navigation nav {
  display: table;
  height: 100%;
  position: relative;
  z-index: 10;
}
#navigation nav ul {
  display: table-cell;
  vertical-align: middle;
  list-style: none;
  margin: 0;
  padding: 0;
}
#navigation nav ul li {
  width: 80%;
  margin-left: 10%;
}
#navigation nav ul li.current_page_item > a {
  color: var(--color-muted);
}
#navigation nav ul li a {
  display: block;
  padding: 5px;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: 900;
}
#navigation nav ul li a:hover {
  color: var(--color-hover);
}

/* ========================================================================== 
   09. Content allgemein
   ========================================================================== */
#content {
  overflow: auto;
  width: 100%;
  height: 89%;
  margin: 15px auto;
  position: relative;
  z-index: 1;
  background: var(--color-white);
}
#content h1 {
  margin-bottom: 10px;
}
#content h6 {
  text-transform: uppercase;
  font-weight: 900;
}
#content ul {
  margin-left: 25px;
  margin-bottom: 40px;
}
#content ul li {
  line-height: 2;
}
#content p {
  max-width: 70%;
  margin: 10px auto 20px;
}
@media screen and (max-width: 450px) {
  #content p {
    max-width: 100%;
  }
}
#content figure,
#content img {
  margin-left: -25px;
  margin-top: -30px;
  width: 110% !important;
  height: auto;
  margin-bottom: 25px;
}
@media screen and (max-width: 959px) {
  #content figure,
  #content img {
    margin: 0;
  }
}
#content figure.alignnone {
  margin: 0;
  width: 110% !important;
}
#content figure.alignnone img {
  margin: 0;
  width: 100% !important;
}
#content .text h1,
#content .text h2 {
  text-align: center;
}
#content .text p {
  max-width: 600px;
  text-align: justify;
}
#content .contentholder {
  max-width: var(--container-width);
  margin: 0 auto;
}
#content .top {
  margin-top: 180px;
}
@media screen and (max-width: 959px) {
  #content .top {
    margin-top: 0;
  }
}
#content .topminus {
  margin-top: -200px;
}

/* ========================================================================== 
   10. Formulare im Content
   ========================================================================== */
#content form figure,
#content form img {
  margin-left: 0;
  margin-top: 0;
  width: inherit !important;
  height: inherit;
  margin-bottom: 0;
}
#content form p {
  max-width: 100%;
}
#content form input[type=text],
#content form input[type=email],
#content form input[type=tel],
#content form input[type=password],
#content form select,
#content form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 7px;
  border: 1px solid var(--color-border);
  border-radius: 2px;
}
#content form input[type=submit] {
  padding: var(--content-padding-large);
  margin-top: 10px;
  border: 0;
  border-radius: 2px;
  background: var(--color-dark);
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: 900;
}

/* ========================================================================== 
   11. Hintergrundgrafik / Webimage
   ========================================================================== */
#content #bggrafik {
  position: fixed;
  top: 5%;
  left: var(--page-offset-x);
  width: var(--page-width);
  height: 90%;
  z-index: 1;
  opacity: 0.5;
  background: none no-repeat center center;
  background-size: 50%;
}

#content #webimage {
  padding: 0;
}
#content #webimage img {
  width: 100% !important;
  height: auto;
  margin: 56px 0 0;
}

/* ========================================================================== 
   12. Single Portfolio
   ========================================================================== */
#content #singleportfolio h1,
#content #singleportfolio h2 {
  text-align: center;
}
#content #singleportfolio p {
  max-width: 100%;
}
#content #singleportfolio p img {
  margin: 0;
  width: 100% !important;
}
#content #singleportfolio .text p {
  max-width: 600px;
  text-align: justify;
}
#content #singleportfolio a.projektlink {
  display: block;
  width: 150px;
  margin: 0 auto;
  padding: 15px 10px;
  border-radius: 2px;
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-button);
}
#content #singleportfolio a.projektlink:hover {
  background: var(--color-soft);
  color: var(--color-dark);
}
#content #singleportfolio a.extralink {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
}
#content #singleportfolio a.extralink:hover {
  background: var(--color-hover);
}
#content #singleportfolio a.extralink i {
  display: block;
  padding-top: 11px;
  font-size: 2rem;
}
#content #singleportfolio #lastlinks a {
  padding: 5px 15px;
  border-radius: 2px;
  text-transform: uppercase;
}
#content #singleportfolio #lastlinks a:hover {
  background: var(--color-dark);
  color: var(--color-white);
}
@media screen and (max-width: 959px) {
  #content #singleportfolio #lastlinks .col-2 {
    width: 50%;
    margin: 0;
    padding: 0;
    border: 0;
  }
}

/* ========================================================================== 
   13. Overview / Filter / Items
   ========================================================================== */
#content #overview {
  position: relative;
  z-index: 100;
}
#content #overview .filters {
  text-transform: uppercase;
}
#content #overview .filters a {
  display: inline-block;
  width: auto;
  padding: 5px;
}
#content #overview .filters a.now {
  background: var(--color-dark);
  color: var(--color-white);
}
#content #overview a {
  display: block;
  width: 100%;
  height: 100%;
}
#content #overview article.itemholder {
  position: relative;
  width: 100%;
  height: 260px;
}
#content #overview article.itemholder header {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 80px;
  margin-top: -40px;
  z-index: 3;
  text-align: center;
}
#content #overview article.itemholder h3 {
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 1.8rem;
}
#content #overview article.itemholder p {
  max-width: 100%;
  color: var(--color-text);
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.4rem;
}
#content #overview article.itemholder .image {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transform: rotate(45deg);
  transition: opacity 0.5s;
}
#content #overview article.itemholder .image figure,
#content #overview article.itemholder .image img {
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  width: 100% !important;
  height: auto;
  transform: rotate(-45deg);
}
@media screen and (max-width: 959px) {
  #content #overview article.itemholder .image figure,
  #content #overview article.itemholder .image img {
    margin: 0;
  }
}
#content #overview article.itemholder:hover header * {
  color: var(--color-white);
  text-shadow: 0 0 2px var(--color-text);
  background-color: rgb(0, 0, 0);
}
#content #overview article.itemholder:hover .image {
  opacity: 1;
}
#content #overview article.white a {
  color: var(--color-white);
}

@media screen and (max-width: 959px) {
  #overview .col-1,
  #overview .col-2,
  #overview .col-3,
  #overview .col-4 {
    width: 29%;
    padding: var(--grid-padding-small);
    border: 0 solid transparent;
  }
}
@media screen and (max-width: 450px) {
  #overview .col-1,
  #overview .col-2,
  #overview .col-3,
  #overview .col-4 {
    width: 43%;
    padding: var(--grid-padding-small);
    border: 0 solid transparent;
  }
}

/* ========================================================================== 
   14. 404-Seite
   ========================================================================== */
#page404 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
#page404 h1,
#page404 h2 {
  color: var(--color-white);
}
#page404 h1 span,
#page404 h2 span {
  font-size: 8rem;
}
#page404 a {
  color: var(--color-white);
  text-decoration: underline;
}
#page404 .overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 500px;
  height: 200px;
  margin-top: -100px;
  margin-left: -250px;
  z-index: 15;
}
#page404 .videoholder {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 14;
}
#page404 .videoholder .overlayvideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 13;
  background: var(--overlay-black-light);
}
#page404 .videoholder iframe {
  position: relative;
  width: 120%;
  height: 120%;
  z-index: 11;
}

/* ========================================================================== 
   15. Grid
   ========================================================================== */
.container {
  max-width: var(--container-width);
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}
.container::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
}
@media screen and (max-width: 1210px) {
  .container {
    width: var(--container-medium-width);
  }
}
@media screen and (max-width: 959px) {
  .container {
    width: 100%;
  }
}
.container .row {
  max-width: var(--container-width);
  width: 100%;
  min-height: 1px;
  position: relative;
}
.container .row::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
}
@media screen and (max-width: 959px) {
  .container .row {
    width: 99%;
  }
}
.container .row .col-1,
.container .row .col-2,
.container .row .col-3,
.container .row .col-4 {
  border: 6px solid transparent;
  width: var(--col-1-width);
  min-height: var(--column-min-height);
  padding: var(--grid-padding);
  float: left;
  position: relative;
  margin-right: 0px;
}
@media screen and (max-width: 1210px) {
  .container .row .col-1,
  .container .row .col-2,
  .container .row .col-3,
  .container .row .col-4 {
    width: var(--col-1-width-large);
  }
}
@media screen and (max-width: 959px) {
  .container .row .col-1,
  .container .row .col-2,
  .container .row .col-3,
  .container .row .col-4 {
    width: 60%;
    padding: var(--grid-padding-small);
    border: 0 solid transparent;
  }
}
.container .row .col-1 .col-1,
.container .row .col-1 .col-2,
.container .row .col-1 .col-3,
.container .row .col-1 .col-4,
.container .row .col-2 .col-1,
.container .row .col-2 .col-2,
.container .row .col-2 .col-3,
.container .row .col-2 .col-4,
.container .row .col-3 .col-1,
.container .row .col-3 .col-2,
.container .row .col-3 .col-3,
.container .row .col-3 .col-4,
.container .row .col-4 .col-1,
.container .row .col-4 .col-2,
.container .row .col-4 .col-3,
.container .row .col-4 .col-4 {
  width: 25%;
  height: 25%;
}
.container .row .col-2 {
  width: var(--col-2-width);
}
@media screen and (max-width: 1210px) {
  .container .row .col-2 {
    width: var(--col-2-width-large);
  }
}
@media screen and (max-width: 959px) {
  .container .row .col-2 {
    width: 94%;
    overflow: hidden;
  }
}
.container .row .col-3 {
  width: var(--col-3-width);
}
@media screen and (max-width: 1210px) {
  .container .row .col-3 {
    width: var(--col-3-width-large);
  }
}
@media screen and (max-width: 959px) {
  .container .row .col-3 {
    width: 94%;
    overflow: hidden;
  }
}
.container .row .col-4 {
  width: var(--col-4-width);
}
@media screen and (max-width: 1210px) {
  .container .row .col-4 {
    width: var(--col-4-width-large);
  }
}
@media screen and (max-width: 959px) {
  .container .row .col-4 {
    width: 94% !important;
    overflow: hidden;
  }
}
.container .row .border {
  border: 6px solid var(--color-dark);
}
@media screen and (max-width: 959px) {
  .container .row .border {
    float: none;
    clear: both;
    margin: 0 auto !important;
  }
}
.container .row .offset-1 {
  margin-left: var(--col-1-width);
}
@media screen and (max-width: 1210px) {
  .container .row .offset-1 {
    margin-left: 190px;
  }
}
@media screen and (max-width: 959px) {
  .container .row .offset-1 {
    margin-left: 0;
  }
}
.container .row .async {
  margin-left: -50px;
  margin-top: -25px;
  margin-bottom: 25px;
  margin-right: 50px;
}
@media screen and (max-width: 959px) {
  .container .row .async {
    margin-left: 0;
    margin-top: 0;
  }
}
.container .row .asyncl {
  margin-right: -50px;
  margin-top: -25px;
  margin-bottom: 25px;
  margin-left: 50px;
}
.container .row .white {
  background: var(--color-white);
}
.container .row .top {
  margin-top: var(--column-inner);
}
@media screen and (max-width: 959px) {
  .container .row .top {
    margin-top: 0;
  }
}
.container .row .bg {
  border: 6px solid var(--color-light-bg);
  background: var(--color-light-bg);
}
@media screen and (max-width: 959px) {
  .container .row .bg {
    width: 94%;
    margin-left: 0;
  }
}
.container .row .noheight {
  height: auto;
  min-height: auto;
}

/* ========================================================================== 
   16. Utilities
   ========================================================================== */
.clearfix::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
}

.row::after {
  content: "";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
}

.text-right {
  text-align: right;
}

.alignleft {
  width: 100%;
}

.wp-caption-text {
  display: none;
}

/* ========================================================================== 
   17. Vendor: Font Awesome
   ========================================================================== */
/*
   Ausgelagert lassen:
   <link rel="stylesheet" href="/pfad/zu/font-awesome.css">

   Der ursprünglich eingefügte Font-Awesome-Block war doppelt vorhanden.
   Dadurch wird die Hauptdatei unnötig groß und schwer wartbar.
*/
/* ========================================================================== 
   18. Vendor: perfect-scrollbar v0.6.7
   ========================================================================== */
.ps-container {
  -ms-touch-action: none;
  overflow: hidden !important;
}
.ps-container.ps-active-x > .ps-scrollbar-x-rail, .ps-container.ps-active-y > .ps-scrollbar-y-rail {
  display: block;
}
.ps-container.ps-in-scrolling {
  pointer-events: none;
}
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail, .ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
  background-color: var(--color-soft);
  opacity: 0.9;
}
.ps-container.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x, .ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  background-color: var(--color-muted);
}
.ps-container > .ps-scrollbar-x-rail,
.ps-container > .ps-scrollbar-y-rail {
  display: none;
  position: absolute;
  border-radius: 4px;
  opacity: 0;
  transition: var(--transition-scrollbar);
}
.ps-container > .ps-scrollbar-x-rail {
  bottom: 3px;
  height: 8px;
}
.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x {
  bottom: 0;
  height: 8px;
}
.ps-container > .ps-scrollbar-y-rail {
  right: 3px;
  width: 8px;
}
.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  right: 0;
  width: 8px;
}
.ps-container > .ps-scrollbar-x-rail > .ps-scrollbar-x,
.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  position: absolute;
  background-color: var(--color-scrollbar);
  border-radius: 4px;
  transition: var(--transition-fast);
}
.ps-container:hover.ps-in-scrolling {
  pointer-events: none;
}
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail, .ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
  background-color: var(--color-soft);
  opacity: 0.9;
}
.ps-container:hover.ps-in-scrolling.ps-x > .ps-scrollbar-x-rail > .ps-scrollbar-x, .ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
  background-color: var(--color-muted);
}
.ps-container:hover > .ps-scrollbar-x-rail,
.ps-container:hover > .ps-scrollbar-y-rail {
  opacity: 0.6;
}
.ps-container:hover > .ps-scrollbar-x-rail:hover,
.ps-container:hover > .ps-scrollbar-y-rail:hover {
  background-color: var(--color-soft);
  opacity: 0.9;
}
.ps-container:hover > .ps-scrollbar-x-rail:hover > .ps-scrollbar-x,
.ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
  background-color: var(--color-muted);
}

/* ========================================================================== 
   19. Komponente: Minimal Browser Facade
   ========================================================================== */
.facade-minimal {
  position: relative;
  margin: 24px 0;
  padding: 64px 16px 10px;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-facade);
  color: var(--color-facade-text);
  border-radius: 3px;
  overflow: hidden;
}
.facade-minimal::before {
  content: "";
  position: absolute;
  display: block;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 56px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 3px 3px 0 0;
  background: url('data:image/svg+xml;charset=utf-8,<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" id="minimal-browser-button" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve"><g id="Ellipse_1"><g><circle fill-rule="evenodd" clip-rule="evenodd" fill="%23B3B3B3" cx="8" cy="8" r="5"/></g></g></svg>') 16px 22px no-repeat, url('data:image/svg+xml;charset=utf-8,<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" id="minimal-browser-button" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve"><g id="Ellipse_1"><g><circle fill-rule="evenodd" clip-rule="evenodd" fill="%23B3B3B3" cx="8" cy="8" r="5"/></g></g></svg>') 32px 22px no-repeat, url('data:image/svg+xml;charset=utf-8,<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" id="minimal-browser-button" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve"><g id="Ellipse_1"><g><circle fill-rule="evenodd" clip-rule="evenodd" fill="%23B3B3B3" cx="8" cy="8" r="5"/></g></g></svg>') 48px 22px no-repeat, url('data:image/svg+xml;charset=utf-8,<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg version="1.1" id="minimal-browser-settings" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve"><g id="Menu_icon"><g><path fill-rule="evenodd" clip-rule="evenodd" fill="%23B3B3B3" d="M1,1v3h14V1H1z M1,10h14V7H1V10z M1,16h14v-3H1V16z"/></g></g></svg>') right 16px top 22px no-repeat, var(--color-facade-bar);
}
.facade-minimal::after {
  content: attr(data-url);
  position: absolute;
  top: 16px;
  left: 80px;
  right: 48px;
  height: 24px;
  padding: 2px 16px 0 32px;
  border-radius: 3px;
  box-shadow: var(--shadow-inset);
  font-size: 12px;
  line-height: 24px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  direction: rtl;
  text-align: left;
  background: url('data:image/svg+xml;charset=utf-8,<svg version="1.1" id="Refresh_icon_1_" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="16px" height="16px" viewBox="0 0 16 16" enable-background="new 0 0 16 16" xml:space="preserve"><g id="minimal-browser-refresh"><g><path fill-rule="evenodd" clip-rule="evenodd" fill="%23B3B3B3" d="M12.5,10.9l2.5-3h-1.7C13.2,4.6,10.7,2,7.7,2C4.5,2,2,4.7,2,8c0,3.3,2.5,6,5.7,6c1.3,0,2.5-0.5,3.5-1.3l-1-1.1c-0.7,0.5-1.6,0.9-2.5,0.9c-2.3,0-4.2-2-4.2-4.5s1.9-4.5,4.2-4.5c2.3,0,4.2,1.9,4.2,4.4h-2L12.5,10.9z"/></g></g></svg>') 8px 6px no-repeat, var(--color-white);
}
