@charset "UTF-8";
/**
 * Hier werden die Font-Files eingebunden, welche unter \applications\website\webroot\themes\default\fonts abgelegt sind.
 * Oder Webfonts von Google/Adobe importiert
 * Der Pfad wird relativ zum css-Ordner angegeben. --> url('../fonts/fontname.woff')...
 *
 * THEMES:
 * In @if/@else if Blöcken können Fonts zusätzlich oder exklusiv pro Theme definiert werden.
**/
@font-face {
  font-family: "radikalregular";
  src: url("../fonts/radikal-regular-webfont.woff2") format("woff2"), url("../fonts/radikal-regular-webfont.woff") format("woff"), url("../fonts/radikal-regular-webfont.ttf") format("truetype"), url("../fonts/radikal-regular-webfont.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "radikallight";
  src: url("../fonts/radikal-light-webfont.woff2") format("woff2"), url("../fonts/radikal-light-webfont.woff") format("woff"), url("../fonts/radikal-light-webfont.ttf") format("truetype"), url("../fonts/radikal-light-webfont.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*
@if $theme == 'theme-1.ch' {

} @else if $theme == 'theme-2.ch' {

}
*/
/**
 * Grundsätzlich sind beschreibende Namen zu verwenden, welche auch bei veränderten Werten funktionieren. (--> $primary-color)
 * Die einzige Ausnahme stellen die Farben schwarz, grau und weiss dar. Diese kommen in den meisten Projekten vor, können sich aber von Projekt zu Projekt im Farbton unterscheiden.
 * Die Variable $black wird aber immer einen Schwarzton und nicht plötzlich bspw. rot enthalten.
 *
 * THEMES:
 * In @if/@else if Blöcken können einzelne Variablen pro Theme überschrieben werden oder Theme spezifische Variablen definiert werden.
**/
/*vorher 1400*/
/*
@if $theme == 'theme-1.ch' {

} @else if $theme == 'theme-2.ch' {

}
*/
/* ==========================================================================
   CSS Reset
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

ul[class],
ol[class] {
  margin: 0;
  padding: 0;
  list-style: none;
}

a:link,
a:visited,
a:hover,
a:active {
  outline: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.slick {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  width: calc(100% - 120px);
  margin-left: 60px;
  margin-right: 60px;
}
.slick .slick-list {
  width: calc(100% + 20px);
  margin-left: -10px;
}
.slick .slick-slide h3 {
  padding: 10px;
}
.slick a {
  margin: 0px 30px;
}
.slick button {
  opacity: 0.7;
  border: 1px solid #fff;
}
.slick button.slick-prev {
  left: -60px;
  background-image: url(../img/layout/icon-arrow-left.svg);
  background-size: 13px;
  background-position: center center;
  background-repeat: no-repeat;
}
.slick button.slick-prev:before {
  content: url(../img/layout/icon-arrow-right.svg);
  content: "";
  width: 15px;
  display: inline-block;
}
.slick button.slick-next {
  right: -60px;
  background-image: url(../img/layout/icon-arrow-right.svg);
  background-size: 13px;
  background-position: center center;
  background-repeat: no-repeat;
}
.slick button.slick-next:before {
  content: url(../img/layout/icon-arrow-right.svg);
  content: "";
  width: 15px;
  display: inline-block;
}
.slick button:hover {
  opacity: 1;
}

.slick-prev,
.slick-next {
  width: 30px !important;
  height: 30px !important;
}

form {
  overflow: hidden;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

form p {
  padding-bottom: 10px;
}

legend {
  padding: 0;
  margin: 0;
  margin-bottom: 7px;
  font-size: 1rem;
  text-transform: uppercase;
}

label {
  display: block;
  margin-bottom: 5px;
}
label.inline {
  display: inline;
}

input,
select,
textarea {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding: 8px;
  width: 100%;
  margin-bottom: 8px;
}

textarea:focus,
input:focus {
  outline: none;
}

/* Date Icon Chrome */
input[type=date]::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

input,
textarea {
  width: 100%;
}
input::placeholder,
textarea::placeholder {
  color: white !important;
  opacity: 1;
}

input[placeholder][type=date] {
  color: white;
}
input[placeholder][type=date]:before {
  content: "Datum *";
  padding-right: 5px;
}

textarea {
  height: 120px;
}

input:focus {
  outline: none;
}

input[type=checkbox],
input[type=radio] {
  width: auto;
  margin-right: 5px;
  border: 0;
}

input[type=checkbox] {
  border: 0;
  background: #fff;
  padding: 0px;
}

input[type=submit],
button[type=submit] {
  width: auto;
  background: transparent;
  color: #fff;
  display: inline-block;
  cursor: pointer;
}
input[type=submit]:hover,
button[type=submit]:hover {
  opacity: 0.7;
}

.validationerror {
  background: #fff;
  color: #000;
  padding: 8px;
  margin-bottom: 1px;
  width: 100%;
  display: block;
}

@media only screen and (min-width: 220px) and (max-width: 879.9px) {
  input,
select,
input[type=submit],
button[type=submit],
input[type=submit]:hover {
    width: 100%;
  }

  input::placeholder {
    color: #fff !important;
  }

  input[type=submit],
input[type=submit]:hover {
    width: auto !important;
  }

  form input#email {
    color: red;
    margin-bottom: 23px;
  }
}
input[type=date]:before {
  color: white;
  content: attr(placeholder);
}

/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: white;
  -webkit-box-shadow: 0 0 0px 1000px #214244 inset;
  transition: background-color 5000s ease-in-out 0s;
}

ul.list {
  overflow: hidden;
}
ul.list li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
ul.list li a {
  text-decoration: none;
  display: block;
}
ul.list.dash li:before {
  content: "-";
  padding-right: 10px;
}
ul.list.downloads {
  margin-top: 40px;
}
ul.list.downloads li {
  padding-bottom: 5px;
}
ul.list.downloads li:last-child {
  padding-bottom: 0px;
}
ul.list.downloads li a {
  text-decoration: none;
}
ul.list.downloads li a:hover {
  text-decoration: none;
}
ul.list.downloads li a:before {
  content: "";
  background-image: url(../../default/img/layout/icon-download.svg);
  background-position: center left;
  background-size: 18px auto;
  padding-top: 4px;
  background-repeat: no-repeat;
  padding-right: 23px;
}
ul.list.gallerie li {
  margin-bottom: 30px;
}
ul.list.gallerie li:last-of-type {
  margin-bottom: 0px;
}

.video-full {
  border: 0px solid #fff;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 37.5%;
  /* bei 16 zu 6 -> 6/16*100*/
  padding-top: 0px;
  height: 0;
  overflow: hidden;
}

.video {
  position: relative;
  padding-bottom: 56.25%;
  /* Default for 1600x900 videos 16:9 ratio => bei 16 zu 9 -> 9/16*100*/
  padding-top: 0px;
  height: 0;
  overflow: hidden;
}

.video-full iframe,
.video iframe {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Allgemein
   ========================================================================== */
/* Content
   ========================================================================== */
/**
 * SCHRIFTGRÖSSEN-UMRECHNUNG
 * 1rem entspricht nun einer Schriftgrösse von 10px.
 * So kann eine Pixel-Schriftgrösse relativ einfach in eine rem-Schriftgrösse
 * umgerechnet werden.
 * z.B. 24px / 10 = 2.4rem
 */
html {
  font-size: 62.5%;
}

* {
  font-family: "radikallight", "Helvetica", "Arial", sans-serif;
  font-size: 1.9rem;
  color: #fff;
  font-weight: normal;
}

h1, h2, h3, h4 {
  font-family: "radikalregular", "Helvetica", "Arial", sans-serif;
  font-weight: normal;
  text-transform: uppercase;
}

h1, h2 {
  font-size: 4.1rem;
  line-height: 4.6rem;
  margin-bottom: 40px;
  letter-spacing: 0.75rem;
}

h3, h4 {
  letter-spacing: 0.5rem;
}

h3,
#about h2 {
  font-size: 2.6rem;
  line-height: 3.6rem;
  margin-top: 40px;
  margin-bottom: 20px;
  letter-spacing: 0.5rem;
}
h3:first-child,
#about h2:first-child {
  margin-top: 0;
}

h4,
#about h3 {
  font-size: 2.1rem;
  line-height: 3.1rem;
}
h4:first-child,
#about h3:first-child {
  margin-top: 0;
}

p {
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}
p.date {
  font-size: 1.4rem;
}
p.lead {
  font-family: "radikalregular", "Helvetica", "Arial", sans-serif;
  font-weight: normal;
}

strong {
  font-weight: normal;
}

a {
  text-decoration: underline;
}
a:hover {
  opacity: 0.7;
  text-decoration: none;
}
a[href^="mailto:"], a[href^=tel] {
  text-decoration: none;
}
a.icon-back {
  text-decoration: none;
}
a.icon-back:hover {
  opacity: 0.7;
  color: #fff;
}
a.icon-back:before {
  content: url(../img/layout/icon-arrow-left.svg);
  width: 27px;
  padding-right: 10px;
  display: inline-block;
}

address {
  font-style: normal;
}
address a {
  display: block;
}

.btn {
  display: block;
  padding: 15px;
  background-color: #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.btn:hover {
  background-color: #214244;
  color: #fff;
}
.btn.inline {
  display: inline-block;
}
.btn.inline.right {
  float: right;
}

img.icon.arrow-down {
  height: 50px;
  text-align: center;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 30px;
}
img.full {
  width: 100%;
  height: auto;
}

/* Raster
   ========================================================================== */
body {
  grid-template-rows: auto 1fr auto;
  background: #214244;
}

main {
  position: relative;
}

section {
  padding-top: 120px;
  padding-bottom: 0px;
}

.content-block-center {
  width: 100%;
  max-width: 1110px;
  margin-left: auto;
  margin-right: auto;
}

.einer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 60px;
  row-gap: 60px;
}

.zweier-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 60px;
  row-gap: 60px;
}

.dreier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 60px;
}

.vierer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 60px;
  row-gap: 60px;
}

.fuenfer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 60px;
  row-gap: 60px;
}

.sechser-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 60px;
  row-gap: 60px;
}

.eins-zwei-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 60px;
}
.eins-zwei-grid :last-child {
  grid-column-start: 2;
  grid-column-end: 4;
}

.zwei-eins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 60px;
  grid-template-columns: 2fr 1fr;
}

.zwei-eins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  row-gap: 60px;
}
.zwei-eins-grid > :first-child {
  grid-column-start: 1;
  grid-column-end: 3;
}

.eins-drei-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 60px;
  row-gap: 60px;
}
.eins-drei-grid :last-child {
  grid-column-start: 2;
  grid-column-end: 5;
}

.drei-eins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 60px;
  row-gap: 60px;
}
.drei-eins-grid :first-child {
  grid-column-start: 1;
  grid-column-end: 4;
}

.zweier-column {
  columns: auto;
  columns: 2;
  column-gap: 60px;
}

.flex-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Tools & spezifische Content-Styles (seitenübergreifend)
   ========================================================================== */
header {
  background-color: #214244;
  width: 100%;
  text-align: center;
  border-bottom: 5px solid #fff;
  background: linear-gradient(180deg, #020024 0%, black 15%, #214244 100%);
  overflow: hidden;
}
header .content-block-center.header {
  height: 300px !important;
}
header .content-block-center.header.index {
  height: calc(100vh - 5px) !important;
}
header .content-block-center.header.index div.text-container {
  z-index: 1000;
}
header .content-block-center.header.index div.text-container h2 {
  line-height: 6rem !important;
  margin-bottom: 20px;
  text-shadow: 1px 1px 10px #000;
}
header .content-block-center.header.index div.text-container a .logo {
  padding-top: 10vh;
}
header .content-block-center.header.index div.text-container a.icon-down {
  cursor: pointer;
}
header .content-block-center.header.index div.text-container a.icon-down:hover {
  opacity: 0.7 !important;
}
header .content-block-center.content-wide {
  width: 100%;
  max-width: calc(100% - 220px);
}
header .content-block-center.content-wide.flex {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header .content-block-center.content-wide.flex a {
  display: block;
}
header .content-block-center.content-wide.flex a .logo {
  width: 25vw;
  min-width: 220px;
  max-width: 350px;
  text-align: center;
  display: inline-block;
}
header .content-block-center.content-wide.flex a:hover {
  opacity: 1;
}
header .content-block-center.content-wide.flex h2 {
  position: relative;
  padding-top: 20vh;
  z-index: 100;
}
header .content-block-center.content-wide.flex .zweier-grid {
  width: 100%;
  position: absolute;
  bottom: 5px;
}
header .content-block-center.content-wide.flex .zweier-grid img.portrait {
  width: 95%;
  max-width: 900px;
  min-width: 650px;
  margin-left: -5%;
}
header .content-block-center.content-wide.flex.index {
  justify-content: space-between !important;
}

main section .content-block-center {
  padding-bottom: 120px;
  border-bottom: 2px solid #fff;
}
main section:last-of-type .content-block-center {
  border-bottom: 0px;
}
main section .center {
  text-align: center;
}

.index-site main section h1,
.index-site main section h2 {
  text-align: center;
}

footer {
  position: relative;
  border-top: 5px solid #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}
footer .flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
footer .skipp {
  position: absolute;
  top: 20px;
  right: 20px;
}
footer .skipp img {
  display: block;
  opacity: 0.7;
}

/* ==========================================================================
   Styling pro Seite
   ========================================================================== */
/* Startseite
   ========================================================================== */
.social {
  display: flex !important;
  align-self: end;
  flex-direction: column;
  z-index: 1000;
  position: absolute;
  bottom: 30px;
}
.social a {
  display: inline-block;
  padding: 0px;
  float: left;
  padding-bottom: 15px;
}
.social a:last-child {
  padding-bottom: 0px;
}
.social a:after {
  height: 30px;
  display: inline-block;
  cursor: pointer;
}
.social a.facebook:after {
  content: url(../img/layout/icon-facebook.svg);
  width: 16px;
  opacity: 1;
}
.social a.facebook:hover {
  opacity: 0.7 !important;
}
.social a.instagram:after {
  content: url(../img/layout/icon-instagram.svg);
  width: 30px;
}
.social a.instagram:hover {
  opacity: 0.7 !important;
}
.social a:last-child {
  margin-right: 0px;
}

/* About
   ========================================================================== */
#about h2 {
  text-align: left;
}
#about h3 {
  font-size: 1.9rem;
  margin-bottom: 5px;
  display: inline;
  letter-spacing: 0.25rem;
}
#about ul.list li {
  margin-bottom: 30px;
}
#about ul.list li:last-child {
  margin-bottom: 0px;
}
#about ul.list li .destination .auszeichnungen {
  display: inline-block;
}
#about ul.list li .destination .auszeichnungen .flex-container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
#about ul.list li .destination .auszeichnungen .flex-container img {
  display: inline;
}
#about ul.list li .destination .auszeichnungen .flex-container img.icon-punkte {
  height: 21px;
}
#about ul.list li .destination .auszeichnungen .flex-container img.icon-stern {
  height: 14px;
  margin-right: 8px;
}
#about ul.list li.auszeichnung {
  padding-left: 5px;
  display: inline-flex;
  align-items: center;
}
#about ul.list li.auszeichnung li {
  float: left;
  margin-right: 10px;
}
#about ul.list li.auszeichnung li img.icon-punkte {
  height: 22px;
}
#about ul.list li.auszeichnung li img.icon-stern {
  height: 14px;
}

/* Biografie
   ========================================================================== */
#biografie h3 {
  margin-top: 60px;
  margin-bottom: 10px;
}
#biografie h3:first-child {
  margin-top: 0px;
}
#biografie img {
  margin-top: 120px;
}

/* News
   ========================================================================== */
.news {
  text-align: center;
}
.news a:after {
  content: url(../img/layout/icon-arrow-right.svg);
  width: 25px;
  display: inline-block;
}
.news a:hover {
  opacity: 0.7;
}

/* Listen Projekte und News 
   ========================================================================== */
.list.projekte a {
  position: relative;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}
.list.projekte a .farbfilter {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  background: #214244;
  opacity: 0.3;
}
.list.projekte a h3 {
  position: absolute;
  margin-bottom: 0px;
  margin-top: 0px;
  text-align: center;
}
.list.projekte a:hover {
  opacity: 1;
}
.list.projekte a:hover .farbfilter {
  opacity: 0;
}
.list.news li a h3 {
  margin-top: 0px;
}

/* News und Projekte Detail-Seiten*/
.news-details h1,
.projekte-details h1 {
  text-align: left;
}
.news-details a.icon-back,
.projekte-details a.icon-back {
  margin-top: 60px;
  display: block;
}
.news-details .yt-movie,
.projekte-details .yt-movie {
  margin-top: 60px;
}
.news-details ul.list.gallerie,
.projekte-details ul.list.gallerie {
  margin-top: 60px;
}
.news-details ul.list.gallerie li,
.projekte-details ul.list.gallerie li {
  margin-bottom: 0px;
}

.bildeffekt img {
  opacity: 1;
}

.bildeffekt:hover img {
  opacity: 0.7;
}

/*Kontakt*/
#kontakt form .zweier-grid {
  grid-row-gap: 0px !important;
}

/* Impressum & Datenschutz
   ========================================================================== */
.impressum-datenschutz-site h2, .impressum-datenschutz-site h3, .impressum-datenschutz-site h4 {
  letter-spacing: 0.5rem;
}
.impressum-datenschutz-site h3 {
  letter-spacing: 0.4rem;
}
.impressum-datenschutz-site h4 {
  letter-spacing: 0.3rem;
}
.impressum-datenschutz-site h2 {
  font-size: 2.6rem;
  margin-top: 60px;
  margin-bottom: 20px;
}
.impressum-datenschutz-site h3 {
  font-size: 2.1rem;
  margin-bottom: 5px;
  margin-top: 30px;
}
.impressum-datenschutz-site h3:first-of-type {
  margin-top: 0px;
}
.impressum-datenschutz-site h4 {
  font-size: 1.7rem;
  margin-bottom: 5px;
  margin-top: 20px;
}
.impressum-datenschutz-site h4:first-child {
  margin-top: 0px;
}
.impressum-datenschutz-site address p:last-child {
  margin-bottom: 15px;
}

@media only screen and (max-width: 1200px) {
  .content-block-center {
    margin-left: 45px;
    margin-right: 45px;
    width: auto;
  }
  .content-block-center.content-wide {
    width: 100%;
    max-width: calc(100% - 90px) !important;
  }

  header .content-block-center.content-wide.flex .zweier-grid img.portrait {
    width: 120%;
    max-width: 1050px;
    min-width: 250px;
    margin-left: -20%;
  }

  #logo > a img {
    width: 35VW;
  }
}
@media only screen and (max-width: 1050px) {
  header .content-block-center.content-wide.flex .zweier-grid img.portrait {
    width: 100%;
    max-width: 900px;
    min-width: 450px;
    margin-left: -10%;
  }
  header .content-block-center.content-wide.flex .social {
    bottom: 15px;
  }
  header .content-block-center.content-wide.flex .social a {
    padding-bottom: 5px;
    /*&:last-child {
    	padding-bottom: 30px;
    }*/
  }
  header .content-block-center.content-wide.flex .social a:after {
    height: 25px !important;
  }
  header .content-block-center.content-wide.flex .social a.facebook:after {
    width: 13px !important;
  }
  header .content-block-center.content-wide.flex .social a.instagram:after {
    width: 22px !important;
  }
}
@media only screen and (max-width: 800px) {
  header .content-block-center.content-wide.flex {
    justify-content: center;
  }
  header .content-block-center.content-wide.flex .zweier-grid {
    bottom: 5px;
    display: block;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
  header .content-block-center.content-wide.flex .zweier-grid img.portrait {
    width: 100%;
    margin-left: -40%;
    /*vorher -40*/
  }
  header .content-block-center.content-wide.flex .social a {
    padding-bottom: 5px;
  }
  header .content-block-center.content-wide.flex .social a:after {
    height: 20px !important;
  }
  header .content-block-center.content-wide.flex .social a.facebook:after {
    width: 11px !important;
  }
  header .content-block-center.content-wide.flex .social a.instagram:after {
    width: 20px !important;
  }
  header .content-block-center.content-wide.flex a .logo {
    padding-top: 0;
  }

  .content-block-center {
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
  }
  .content-block-center.content-wide {
    width: 100%;
    max-width: calc(100% - 40px) !important;
  }

  h1, h2 {
    font-size: 3.4rem;
    line-height: 3.9rem;
  }

  header .content-block-center.header.index div.text-container h2 {
    /*font-size: 3.6rem;*/
    line-height: 5.2rem !important;
    padding-top: 25vh;
  }

  h3,
#about h2 {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }

  h4,
#about h3 {
    font-size: 1.9rem;
  }

  grid-item:nth-child(3) {
    order: 2;
  }

  .dreier-grid {
    grid-template-columns: 1fr;
  }

  .vierer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .zweier-grid,
.zwei-eins-grid {
    grid-template-columns: 1fr;
  }

  .zwei-eins-grid {
    column-gap: 0px;
    row-gap: 60px;
  }

  .zweier-column {
    columns: 1;
    text-align: center;
  }

  .skipp {
    display: none;
  }

  .impressum-datenschutz-site div.zwei-eins-grid div:nth-child(1) {
    order: 2;
  }
}
@media only screen and (max-width: 600px) {
  section {
    padding-top: 80px;
  }

  main section .content-block-center {
    padding-bottom: 80px;
  }

  header.content-block-center.content-wide {
    /*&.header {
    div {
    &.text-container {
    	h2 {
    		font-size: 3.0rem;
    		line-height: 4.8rem;
    		letter-spacing: 0.25rem;
    		padding-top: 37vh;
    	}
    }
    }
    }*/
  }
  header.content-block-center.content-wide.flex .zweier-grid img.portrait {
    width: 120% !important;
    margin-left: -23% !important;
    /*vorher -40*/
  }

  header .content-block-center.header.index div.text-container h2 {
    font-size: 2.5rem !important;
    line-height: 4.3rem !important;
    letter-spacing: 0.25rem;
    padding-top: 25vh;
  }

  footer .flex {
    flex-wrap: wrap;
  }
  footer address {
    width: 100%;
    margin-bottom: 15px;
  }

  h1, h2, h3, h4 {
    letter-spacing: 0.5rem;
  }

  h3,
#about h2 {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }

  h4,
#about h3 {
    font-size: 2rem;
  }

  .slick-slide h3 {
    font-size: 2rem;
  }

  #biografie img {
    margin-top: 80px;
  }

  #about h1,
#biografie h2, h3, p,
#kontakt h2 {
    text-align: left;
  }

  .news.front p,
.news.front h3,
.projekte h3 {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  * {
    font-size: 1.7rem;
  }

  h1, h2 {
    font-size: 3rem !important;
    line-height: 3.5rem !important;
  }

  h3,
#about h2 {
    font-size: 2rem !important;
    line-height: 2.5rem;
  }

  h3,
#about h2 {
    font-size: 2rem !important;
    line-height: 2.5rem !important;
  }

  h4,
#about h3 {
    font-size: 1.7rem !important;
  }

  header .content-block-center.content-wide.flex h2 {
    font-size: 2.7rem !important;
    line-height: 3.2rem !important;
    /*padding-top: 60px !important;
    margin-bottom: 20px;*/
  }
  header .content-block-center.content-wide.flex .zweier-grid {
    bottom: 0px;
    position: absolute;
  }
  header .content-block-center.content-wide.flex .zweier-grid img.portrait {
    /*min-width: 240px;
    margin-left: -40px;
    margin-bottom: -5px;*/
  }
  header .content-block-center.content-wide.flex .social {
    align-self: flex-end !important;
  }
  header .content-block-center.content-wide.flex .social a {
    justify-content: center !important;
  }
  header .content-block-center.content-wide.flex .social a:last-child {
    padding-bottom: 15px;
  }
  header .content-block-center.header .text-container h2 {
    font-size: 2.7rem !important;
    line-height: 3.2rem !important;
    /*padding-top: 60px !important;
    margin-bottom: 20px;*/
  }
  header .content-block-center.header.index {
    height: 100% !important;
    min-height: 575px;
    position: relative;
  }
  header img.icon.arrow-down {
    height: 40px;
  }

  section {
    padding-top: 80px;
  }
  section.content-block-center {
    padding-bottom: 80px;
  }

  .slick-slide h3 {
    font-size: 1.8rem;
  }

  .slick a {
    margin: 0px 15px;
  }
}
@media only screen and (max-height: 500px) and (orientation: landscape) {
  header .content-block-center.content-wide.flex .zweier-grid {
    bottom: 0px;
  }
  header .content-block-center.content-wide.flex.index {
    justify-content: flex-start;
    height: auto !important;
    position: relative;
  }
}
@media only screen and (max-height: 770px) and (orientation: landscape) {
  header .content-block-center.content-wide.flex .zweier-grid img.portrait {
    margin-left: -10%;
    width: 130%;
    max-width: 400px;
    min-width: 250px;
  }
}
/*@media only screen and (max-height:1300px) and (orientation : landscape) {
	header {
		.content-block-center {
			&.content-wide {
				&.flex {
					.zweier-grid {
						img {
							&.portrait {
								margin-left: -10%;
								width: 130%;
								max-width: 700px;
							}
						}
					}
				}
			}
		}
	}
}*/
/*@media
only screen and (max-width : $bp-small) and (max-height:950px) {
	header {
		.content-block-center {
			&.content-wide {
				&.flex {
					.zweier-grid {
						img {
							&.portrait {
								width: 90%;
								margin-left: -40%;
								max-width: 550px;
							}
						}
					}
				}
			}
		}
	}
}

@media
only screen and (max-width : $bp-small) and (max-height:430px) {
	header {
		.content-block-center {
			&.content-wide {
				&.flex {
					.zweier-grid {
						img {
							&.portrait {
								width: 100%;
								margin-left: -40%;
								max-width: 500px;
							}
						}
					}
				}
			}
		}
	}
}*/
@media only screen and (max-width: 600px) and (max-height: 600px) {
  header .content-block-center.content-wide.flex .zweier-grid img.portrait {
    width: 100%;
    margin-left: -40%;
    min-width: 440px;
  }

  header .content-block-center.header.index div.text-container h2 {
    font-size: 2rem !important;
    line-height: 3.8rem !important;
    letter-spacing: 0.2rem;
    padding-top: 35vh;
  }
}
@media only screen and (min-width: 1990px) and (max-height: 940px) {
  header .content-block-center.content-wide.flex .zweier-grid img.portrait {
    width: 100%;
    max-width: 750px;
    margin-left: 0%;
  }
}
@media only screen and (min-width: 1990px) and (max-height: 700px) {
  header .content-block-center.content-wide.flex .zweier-grid img.portrait {
    width: 100%;
    max-width: 500px;
    min-width: 250px;
    margin-left: 0%;
  }
}
/*@media
only screen and (max-width : 800px) and (max-height:940px) {
	header {
		.content-block-center {
			&.content-wide {
				&.flex {
					.zweier-grid {
						img {
							&.portrait {
								width: 130%;
								max-width: 750px;
								margin-left: -20%;
							}
						}
					}
				}
			}
		}
	}
}*/
/**
 * Dieses File ist nur dazu da, um sämtliche Partials zu importieren und zusammenzufassen.
 * Was nicht benötigt wird, kann gelöscht werden.
 *
 * Die Abstracts werden bei Bedarf mit Übergabe einer Theme Variable eingebunden.
 * Die Tools enthalten alle Stylings für Module von externen Quellen. Sollte ein weiteres externes Modul (z.B. ein Slider) dazukommen, wird für dieses ein neues File im Tools-Order erstellt.
 * Die Components enthalten die Code-Blöcke von sämtlichen Komponenten.
 * Im Layout befindet sich der gesamte restliche Code. Hier werden die meisten Arbeiten vorgenommen.
 *
 * Wichtig: Es kann jeweils immer nur ein File für die mobile Navigation eingebunden werden! (MeanMenu / FullscreenMenu)
 *
 * THEMES:
 *  - Dieses File pro Theme erstellen (style-<themename>.scss)
 *  - Bei Abstracts entsprechend den Theme Name mit with übergeben
 *  - Allenfalls ein Layout Partial mit Styles exklusiv für das Theme einbinden
 *  - Im Fonts und Variables Partial die Theme if-Blöcke anpassen
 *  - Im _scss/import.cfg einen Eintrag pro Theme erstellen und statt nur den Ordner das File als Quelle UND Ziel angeben
**/

/*# sourceMappingURL=style.css.map */
