@charset "UTF-8";
/*

Theme Name: ConKav Theme
Text Domain: wpconkav
Version: 1
Requires at least: 4.7
Requires PHP: 5.2.4
Description: Theme für ConKav
Author: Max Greger/Kaller&Kaller
Author URI: https://kaller.de
Theme URI: https://kaller.de
License: Individuelle Lizenz
License URI: https://kaller.de

*/

@import url("fonts/JosefinSans/css/JosefinSansital@0200030004000600070012001300140016001700-b64.css");
@import url("fonts/JosefinSans/css/JosefinSansital@0200030004000600070012001300140016001700.css");


/* -------------------------------------------------------------------------- */
/*	0. CSS Reset
/* -------------------------------------------------------------------------- */
html,
body {
  border: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
  border: none;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
  padding: 0;
  text-align: inherit;
}

blockquote::before,
blockquote::after {
  content: "";
}

/* -------------------------------------------------------------------------- */
/*	1. Document Setup
/* -------------------------------------------------------------------------- */

html {
  font-size: 68%;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-family: "PT Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.85rem;
  text-align: left;
  font-weight: 400;
}

@supports (font-variation-settings: normal) {
  body {
    font-family: "PT Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  -webkit-font-smoothing: antialiased;
  word-break: break-word;
  word-wrap: break-word;
}

#site-content {
  overflow: hidden;
}

/* Clearing ---------------------------------- */
.group::after,
.entry-content::after {
  clear: both;
  content: "";
  display: block;
}

/* Base Transitions -------------------------- */
a,
path {
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

/* -------------------------------------------------------------------------- */
/*	2. Element Base
/* ---------------------------------------------*---------------------------- */
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
.faux-heading {
  font-family: 'Josefin Sans';
  font-weight: 400;
  text-transform: uppercase;
  margin: 3.5rem 0 2rem;
}

h1,
.heading-size-1 {
  font-size: 3.8rem;
}

h2,
.heading-size-2 {
  font-size: 3.2rem;
}

h3,
.heading-size-3 {
  font-size: 2.8rem;
}

h4,
.heading-size-4 {
  font-size: 2.4rem;
}

h5,
.heading-size-5 {
  font-size: 2.1rem;
}

h6,
.heading-size-6 {
  font-size: 1.6rem;
  letter-spacing: 0.03125em;
  text-transform: uppercase;
}

p {
  line-height: 1.5;
  margin: 0 0 1em 0;
}

em,
i,
q,
dfn {
  font-style: italic;
}

em em,
em i,
i em,
i i,
cite em,
cite i {
  font-weight: bolder;
}

big {
  font-size: 1.2em;
}

small {
  font-size: 0.75em;
}

b,
strong {
  font-weight: 700;
  color: #768C70;
}

ins {
  text-decoration: underline;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

abbr,
acronym {
  cursor: help;
}

address {
  line-height: 1.5;
  margin: 0 0 2rem 0;
}

hr {
  border-style: solid;
  border-width: 0.1rem 0 0 0;
  border-color: #dcd7ca;
  margin: 4rem 0;
}

.entry-content hr,
hr.styled-separator {
  background: linear-gradient(to left, currentColor calc(50% - 16px), transparent calc(50% - 16px), transparent calc(50% + 16px), currentColor calc(50% + 16px));
  background-color: transparent !important;
  border: none;
  height: 0.1rem;
  overflow: visible;
  position: relative;
}

.entry-content hr:not(.has-background),
hr.styled-separator {
  color: #6d6d6d;
}

.entry-content hr::before,
.entry-content hr::after,
hr.styled-separator::before,
hr.styled-separator::after {
  background: currentColor;
  content: "";
  display: block;
  height: 1.6rem;
  position: absolute;
  top: calc(50% - 0.8rem);
  -webkit-transform: rotate(22.5deg);
          transform: rotate(22.5deg);
  width: 0.1rem;
}

.entry-content hr::before,
hr.styled-separator::before {
  left: calc(50% - 0.5rem);
}

.entry-content hr::after,
hr.styled-separator::after {
  right: calc(50% - 0.5rem);
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover,
a:focus {
  text-decoration: underline;
}

/* Lists ------------------------------------- */
ul,
ol {
  margin: 0 0 3rem 3rem;
}

ul {
  list-style: disc;
}

ul ul {
  list-style: circle;
}

ul ul ul {
  list-style: square;
}

ol {
  list-style: decimal;
}

ol ol {
  list-style: lower-alpha;
}

ol ol ol {
  list-style: lower-roman;
}

li {
  line-height: 1.5;
  margin: 0.5rem 0 0 2rem;
}

li > ul,
li > ol {
  margin: 1rem 0 0 2rem;
}

.reset-list-style,
.reset-list-style ul,
.reset-list-style ol {
  list-style: none;
  margin: 0;
}

.reset-list-style li {
  margin: 0;
}

dt,
dd {
  line-height: 1.5;
}

dt {
  font-weight: 700;
}

dt + dd {
  margin-top: 0.5rem;
}

dd + dt {
  margin-top: 1.5rem;
}

/* Quotes ------------------------------------ */
blockquote {
  border-color: #BF360C;
  border-style: solid;
  /*rtl:ignore*/
  border-width: 0 0 0 0.2rem;
  color: inherit;
  font-size: 1em;
  margin: 4rem 0;
  /*rtl:ignore*/
  padding: 0.5rem 0 0.5rem 2rem;
}

cite {
  color: #6d6d6d;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.25;
}

blockquote cite {
  display: block;
  margin: 2rem 0 0 0;
}

blockquote p:last-child {
  margin: 0;
}

/* Code -------------------------------------- */
code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 0.9em;
  padding: 0.4rem 0.6rem;
}

code,
kbd,
samp {
  background: rgba(0, 0, 0, 0.075);
  border-radius: 0.2rem;
}

pre {
  border: 0.1rem solid #dcd7ca;
  line-height: 1.5;
  margin: 4rem 0;
  overflow: auto;
  padding: 3rem 2rem;
  text-align: left;
}

pre code {
  background: transparent;
  padding: 0;
}

/* Media ------------------------------------- */
figure {
  display: block;
  margin: 0;
}

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

video {
  display: block;
}

svg,
img,
embed,
object {
  display: block;
  height: auto;
  max-width: 100%;
}

figcaption,
.wp-caption-text {
  color: #6d6d6d;
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1.5rem;
}

figcaption a,
.wp-caption-text a {
  color: inherit;
}

/* GALLERIES */
.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 3em 0 3em -0.8em;
  width: calc(100% + 1.6em);
}

.gallery-item {
  margin: 0.8em 0;
  padding: 0 0.8em;
  width: 100%;
}

.gallery-caption {
  display: block;
  margin-top: 0.8em;
}

/* Inputs ------------------------------------ */
fieldset {
  border: 0.2rem solid #dcd7ca;
  padding: 2rem;
}

legend {
  font-size: 0.85em;
  font-weight: 700;
  padding: 0 1rem;
}

label {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
}

label.inline,
input[type="checkbox"] + label {
  display: inline;
  font-weight: 400;
  margin-left: 0.5rem;
}

.wpcf7 form .wpcf7-response-output { margin: 0; }

.wpcf7-acceptance input[type="checkbox"] { display: none; }
.wpcf7-acceptance .wpcf7-list-item-label { 
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; 
  -webkit-box-align: center; 
      -ms-flex-align: center; 
          align-items: center;
  font-size: 1.8rem;
}

.wpcf7-acceptance .wpcf7-list-item-label a { margin-left: 0.25rem; }

.wpcf7-acceptance .wpcf7-list-item-label::before { 
  display: table-cell;
  background: #fff;
  text-align: center;
  vertical-align: middle;
  width: 47px;
  height: 44px;
  padding-top: 3px;
  margin-right: 0.5em;
}

.wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::before { content: url(../../uploads/2021/11/check.svg); }

input,
textarea,
button,
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file__button {
  font-family: "PT Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1;
}

@supports (font-variation-settings: normal) {
  input,
  textarea,
  button,
  .button,
  .faux-button,
  .faux-button.more-link,
  .wp-block-button__link,
  .wp-block-file__button {
    font-family: "PT Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  }
}

input,
textarea {
  border-color: #dcd7ca;
  color: #000;
}

code,
input[type="url"],
input[type="email"],
input[type="tel"] {
  /*rtl:ignore*/
  direction: ltr;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="color"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border-radius: 0;
  border-style: solid;
  border-width: 0.1rem;
  -webkit-box-shadow: none;
          box-shadow: none;
  display: block;
  font-size: 1.8rem;
  letter-spacing: -0.015em;
  margin: 0;
  max-width: 100%;
  padding: 1.5rem 1.8rem;
  width: 100%;
}

input::placeholder { color: #000;}

select {
  font-size: 1em;
}

textarea {
  height: 12rem;
  line-height: 1.5;
  width: 100%;
}

input::-webkit-input-placeholder {
  line-height: normal;
}

input:-ms-input-placeholder {
  line-height: normal;
}

input::-moz-placeholder {
  line-height: normal;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

button,
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file .wp-block-file__button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  border: 0;
  font-size: 1.9rem;
  padding: 0.5rem 4rem;
  background-color: #000 !important;
  text-decoration: none;
  color: #fff;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  cursor: pointer;
}

button:hover,
.button:hover,
.faux-button:hover,
.wp-block-button__link:hover,
.wp-block-file .wp-block-file__button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  background-color: #284030 !important;
}

/* Tables ------------------------------------ */
table {
  border: 0.1rem solid #dcd7ca;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  font-size: 1.6rem;
  margin: 4rem 0;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}

.alignleft > table {
  margin: 0;
}

.alignright > table {
  margin: 0;
}

th,
td {
  border: 0.1rem solid #dcd7ca;
  line-height: 1.4;
  margin: 0;
  overflow: visible;
  padding: 0.5em;
}

caption {
  background: #dcd7ca;
  font-weight: 600;
  padding: 0.5em;
  text-align: center;
}

thead {
  vertical-align: bottom;
  white-space: nowrap;
}

th {
  font-weight: 700;
}

/* -------------------------------------------------------------------------- */
/*	Entry Content
/* -------------------------------------------------------------------------- */
.entry-content {
  line-height: 1.5;
}

.entry-content > * {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.25em;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.read-more-button-wrap {
  margin-top: 1em;
  text-align: center;
}

.entry-content a:hover,
.entry-content a:focus {
  text-decoration: none;
}

.entry-content p,
.entry-content li {
  line-height: 1.4;
}

.entry-content li { margin: 1.5em 0;} 

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  margin: 3.5rem auto 2rem;
}

.entry-content ul { color: #768C70;margin-left: 0; }

.entry-content ul ul,
.entry-content ol ol,
.entry-content ul ol,
.entry-content ol ul {
  margin-bottom: 1rem;
}

.entry-content hr {
  margin: 4rem auto;
}

/* Specials */

.wp-block-columns { margin: 4em auto; }

        /* Ueber uns */
      .entry-content .cv-image figure { 
        position:relative;
        width: 120%;
        margin: 0 auto;
      }

      .entry-content .cv-image figcaption { 
        position: absolute;
        right: 0;
        top: 40%;
        font-family: 'Josefin Sans';
        font-weight: 200;
        font-size: 5.5rem;
        color: #000;
        }

      .entry-content .cv-image img { border-radius: 50%; }

      .entry-content .cv-listing ul { list-style-type: none;margin: 0; }
      .entry-content .cv-listing li { 
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        color: #000;
        text-align: right;
        margin: 1em 0;
      }

      .entry-content .cv-listing li strong { 
        color: #768C70;
        font-weight: bold;
        text-align: left;
      }

        /* Statement wp-blocks */

        .entry-content .statement { 
          width: 100%;
          background: center no-repeat;
          background-size: contain;
          margin: 0 auto;
          padding: 8rem 0;
        }

        .entry-content .statement p {   
          font-family: 'Josefin Sans';
          font-weight: 200;
          font-size: 5.75rem;
          text-align: center;
          color: #768C70; 
          margin: 0;
        }

        .entry-content .lampe { background-image: url(images/Lampe.svg);}
        .entry-content .blatt { background-image: url(images/Blatt.svg); }
        .entry-content .netzwerk { background-image: url(images/Netzwerk.svg); }


        /* Netzwerk */

        .section-netzwerk-logos {
          width: 85%;
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; 
          -ms-flex-wrap: wrap; 
              flex-wrap: wrap;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          margin: 3em auto 5em auto;
        }

        .section-netzwerk-logos .post-thumbnail { 
          -ms-flex-item-align: center;
          -ms-grid-row-align: center;
          align-self: center;
          margin: 2em 0;
         }

         .section-netzwerk-logos .post-thumbnail.one-col { width: 100%; text-align: center;}
         .section-netzwerk-logos .post-thumbnail.two-col { width: 43%;text-align: center; }
         .section-netzwerk-logos .post-thumbnail.three-col { width: 30%;text-align: center; }

         .section-netzwerk-logos .post-thumbnail img { margin: 0 auto;}
         .section-netzwerk-logos .post-thumbnail.three-col img { max-height: 270px;width: auto; }

         .section-netzwerk-logos .post-thumbnail.three-col:first-of-type img,
         .section-netzwerk-logos .post-thumbnail.three-col:nth-of-type(4n) img { margin: 0 auto 0 0; }
         .section-netzwerk-logos .post-thumbnail.three-col:nth-of-type(3n) img { margin: 0 0 0 auto; }

        .section-netzwerk-zitate { margin: 3em auto;}
        .section-netzwerk-zitate p { max-width: 60%;text-align: center;margin: 1em auto;}


        /* Referenzen */

        .section-referenzen { 
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; 
          -ms-flex-wrap: wrap; 
              flex-wrap: wrap;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          -ms-flex-line-pack: stretch;
              align-content: stretch;
          margin: 3em auto;
        }

        .referenzen-card { 
          background: url(images/hg-referenzen.jpg) no-repeat center;
          background-size: cover;
          width: 48.75%;
          padding-bottom: 3rem;
          margin-bottom: 2.5%;
        }

        .referenzen-card .ref-header { 
          font-family: "PT Sans", "Hoefler Text", Garamond, "Times New Roman", serif;
          font-size: 3.2rem;
          font-weight: 700;
          text-transform: none;
          line-height: 1.2em;
          padding: 0 3rem;
          margin-bottom: 0.5rem;
        }
        .referenzen-card img { width: 100%; }
        .referenzen-card p { padding: 0 3rem; }
        .referenzen-card p strong { color: #000; }
        .referenzen-card .ref-leistungen ul { color: #000; list-style-type: none;padding: 0 3rem;margin: 3.5rem 0 6rem;}
        .referenzen-card .ref-leistungen li { border-bottom: 1px solid #000;padding: 0.15em 0;margin: 0;}
        





/* Font Families ----------------------------- */
.entry-content p,
.entry-content ol,
.entry-content ul,
.entry-content dl,
.entry-content dt {
  font-family: "PT Sans", "Hoefler Text", Garamond, "Times New Roman", serif;
  letter-spacing: normal;
}

.entry-content cite,
.entry-content figcaption,
.entry-content .wp-caption-text {
  font-family: "PT Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
}

@supports (font-variation-settings: normal) {
  .entry-content cite,
  .entry-content figcaption,
  .entry-content .wp-caption-text {
    font-family: "PT Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  }
}

/* Alignment Classes ------------------------- */
.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  max-width: 80rem;
  width: calc(100% - 6rem);
}

[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
  max-width: 80rem;
  width: 100%;
}

.alignnone,
.aligncenter,
.alignleft,
.alignright,
.alignwide {
  margin-top: 4rem;
  margin-right: auto;
  margin-bottom: 4rem;
  margin-left: auto;
}

[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
  margin-left: auto;
  margin-right: auto;
}

/* Full */
.alignfull {
  margin-top: 5rem;
  margin-right: auto;
  margin-bottom: 5rem;
  margin-left: auto;
  max-width: 100vw;
  position: relative;
  width: 100%;
}

[class*="__inner-container"] > .alignfull {
  max-width: 100%;
}

/* Wide */
.alignwide {
  max-width: 80rem;
  position: relative;
  width: calc(100% - 6rem);
}

[class*="__inner-container"] > .alignwide {
  width: 100%;
}

/* Center */
.aligncenter,
.aligncenter img {
  margin-left: auto;
  margin-right: auto;
}

/* Left and right */
.alignleft,
.alignright {
  max-width: 50%;
}

.alignleft {
  /*rtl:ignore*/
  float: left;
  margin: 0.3rem 2rem 2rem 2rem;
}

.alignright {
  /*rtl:ignore*/
  float: right;
  margin: 0.3rem 2rem 2rem 2rem;
}

[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {
  /*rtl:ignore*/
  margin-left: 2rem;
}

[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {
  /*rtl:ignore*/
  margin-right: 2rem;
}

/* Entry Media ------------------------------- */
.alignfull > figcaption,
.alignfull > .wp-caption-text {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  width: calc(100% - 6rem);
}

.columns {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 2rem;
          column-gap: 2rem;
}

#site-header {
  width: 100%;
  background: #fff;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

#site-header.fade-in {
  position: fixed;
  z-index: 80;
  background: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

#site-header.fade-in .primary-menu-wrapper a {
  color: #000;
}

#site-header.fade-in .primary-menu-wrapper a:hover {
  color: #768c70;
}

#site-header.fade-in .primary-menu-wrapper .btn a {
  color: #fff;
}

#site-header .primary-menu-wrapper .current_page_item a,
#site-header.fade-in .primary-menu-wrapper .current_page_item a { color: #768c70;}

#site-header .primary-menu-wrapper a.active,
#site-header.fade-in .primary-menu-wrapper a.active { color: #768c70;}

#site-header .primary-menu-wrapper .current_page_item.hide-active a,
#site-header.fade-in .primary-menu-wrapper.current_page_item.hide-active a { color: #000;}

#site-header.fade-in .primary-menu-wrapper .current_page_item.btn a::before {
  background: none;
}

#site-header.fade-in .bruger-line {
  background-color: #000;
}

#site-header.fade-in .header-inner .header-logo .logo-scroll {
  opacity: 1;
}

#site-header.fade-in .header-inner .header-logo .logo-normal {
  opacity: 0;
  -webkit-transform: scale(0.5) translate(-160px, 0px);
  -ms-transform: scale(0.5) translate(-160px, 0px);
      transform: scale(0.5) translate(-160px, 0px);
}

.section-inner {
  max-width: 120rem;
  width: calc(100% - 4em);
  margin: auto;
}

.header-inner {
  padding: 2rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#site-header.fade-in .header-inner { padding: 0; }

.header-inner .header-logo {
  width: 35%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header-inner .header-logo .logo-scroll {
  position: absolute;
  height: 70%;
  opacity: 0;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.header-inner .header-logo .logo-normal {
  opacity: 1;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.header-navigation-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: end;
          -ms-flex-pack: end;
              justify-content: flex-end;
  }

.primary-menu-wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "PT Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.primary-menu-wrapper ul li {
  display: block;
  margin: 1rem 0 1rem 3.6rem ;
  font-size: 2.2rem;
  position: relative;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.primary-menu-wrapper ul li:last-of-type { margin-right: 0; }


.primary-menu-wrapper ul .btn a {
  color: #fff;
  font-weight: 400;
  font-size: 1.8rem;
}

.primary-menu-wrapper a {
  color: #000;
  font-weight: 400;
  text-decoration: none;
}

.primary-menu-wrapper a:before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
}

.primary-menu-wrapper a:hover {
  color: #768c70;
  text-decoration: none;
}

.primary-menu-wrapper .current_page_item a::before {
  background: #fff;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.primary-menu-wrapper .current_page_item.btn a::before {
  background: none;
}

.burger-wrapper {
  width: 2.5rem;
  height: 2rem;
  position: relative;
  margin-left: 2rem;
  cursor: poLato;
  display: none;
}

.burger-wrapper .bruger-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.burger-wrapper .bruger-line {
  height: 3px;
  position: absolute;
  width: 100%;
  right: 0;
  background-color: #000;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.burger-wrapper .bruger-line:nth-child(1) {
  top: 10%;
  width: 50%;
}

.burger-wrapper .bruger-line:nth-child(2) {
  top: 50%;
  width: 70%;
}

.burger-wrapper .bruger-line:nth-child(3) {
  top: 90%;
}

.burger-wrapper:hover .bruger-line:nth-child(1) {
  width: 100%;
}

.burger-wrapper:hover .bruger-line:nth-child(2) {
  width: 100%;
}

.burger-wrapper:hover .bruger-line:nth-child(3) {
  width: 100%;
}

.burger-wrapper.side-menu-open .bruger-line:nth-child(1) {
  width: 100%;
}

.burger-wrapper.side-menu-open .bruger-line:nth-child(2) {
  width: 100%;
}

.burger-wrapper.side-menu-open .bruger-line:nth-child(3) {
  width: 100%;
}

#side-menu {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #fff;
  width: 90%;
  max-width: 25rem;
  z-index: 90;
  height: 100%;
  overflow: auto;
  padding: 2rem 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.22, 1);
}

#side-menu #mobile-menu {
  padding: 0 2rem;
}

#side-menu #mobile-menu li {
  font-size: 2rem;
  font-family: "PT Sans";
  margin-bottom: 1rem;
}

#side-menu #mobile-menu li a {
  text-decoration: none;
}

#side-menu #mobile-menu li.current-menu-item a {
  text-decoration: underline;
}

#side-menu .mobile-nav-wrapper {
  padding: 0 2rem;
  font-size: 2rem;
}

#side-menu.side-menu-open {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

#side-menu #side-menu-close {
  cursor: poLato;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  visibility: hidden;
  z-index: 80;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.22, 1);
}

#overlay.side-menu-open {
  opacity: 0.5;
  visibility: visible;
}

.post-inner {
  padding: 6rem 0;
}

.header-image {
  background-position: center;
  background-size: cover;
  height: 52rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 3rem;
  position: relative;
}

.header-image::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.header-image .header-content {
  position: relative;
  width: 100%;
  max-width: 120rem;
  z-index: 10;
}

.header-image .header-content .header-content-wrapper {
  max-width: 100%;
  color: #fff;
}

.header-image .header-content .header-content-wrapper h1 { 
  font-size: 5.75rem;
  margin:0;
  margin-bottom: 9rem;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); }

.header-image .header-content .header-content-wrapper h1 span { 
  display: block;
  font-family: 'Josefin Sans';
  font-weight: 700;
  font-style: normal;
}


.btn a {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: #284030;
  text-decoration: none;
  color: #fff;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.btn a:hover {
  background-color: #768C70;
}

#site-footer {
  background: #284030;
  color: #fff;
  overflow: hidden;
}

#site-footer .section-contact {
  background: #768C70;
  width: 100%;
  padding: 3em 0;
}

#site-footer .section-contact form {
  max-width: 120rem;
  width: calc(100% - 4em);
  margin: auto;
}

#site-footer .site-footer-wrapper {
  padding: 4rem 0;
  margin: -2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: justify;
    -ms-flex-pack: justify;
        justify-content: space-between;
}

#site-footer .site-footer-wrapper .footer-ele {
  /*font-size: 2.2rem;*/
  margin: 2rem;
  display: block;
}

#site-footer .site-footer-wrapper .footer-ele li {
  display: block;
  margin: 0.5rem 0;
}

#site-footer .site-footer-wrapper .footer-ele:last-of-type li { text-align: right; }
#site-footer .site-footer-wrapper .footer-ele:last-of-type li a {text-decoration: none; }
#site-footer .site-footer-wrapper .footer-ele:last-of-type li a:hover { color: #768C70; }


#site-footer .site-footer-wrapper .footer-ele .footer-logo {
  width: 15rem;
  max-width: 100%;
}

i.fas, i.fab {
  font-family: "FontAwesome";
  font-style: normal;
}

.wpcf7-list-item {
  margin: 0;
}

.wpcf7 form {display:flex; flex-wrap: wrap;justify-content: space-between;}
.wpcf7 form h4 { 
  font-family: "PT Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 3.6rem;
  text-transform: none;
}

.wpcf7-form-control-wrap { width: 100%; margin-bottom: 1em; }
.wpcf7-form-control-wrap.email,
.wpcf7-form-control-wrap.telefon { width: calc(50% - 0.75em); }

@media (max-width: 1200px) {

  .entry-content .cv-image figure { width: 80%; }
  .entry-content .cv-image figure img { max-width: 50%; }
  .entry-content .cv-image figcaption { font-size: 4.25rem; }

}

@media (max-width: 1000px) {

.entry-content .cv-image figure { 
  width: 60%;
}

.entry-content .cv-image figure img { max-width: 100%; }

.entry-content .cv-image figcaption { 
  position: relative;
  max-width: 100%;
  font-size: 5.5rem;
  text-align: center;
  left: 0;
  bottom: 0;
}

.wpcf7-acceptance .wpcf7-list-item-label { display: block;}
.wpcf7-acceptance .wpcf7-list-item-label::before { display: inline-block; }
}

@media (max-width: 850px) {
	
	body { font-size: 2rem;}

  header .section-inner { width: calc(100% - 2em); }

  #site-header.fade-in .header-inner { padding: 2rem 0; }
  .header-inner .header-logo { width: 52.5%;}
  .header-inner .header-logo .logo-scroll { height: 100%; }
  #site-header.fade-in .header-inner .header-logo .logo-normal {
    -webkit-transform: scale(1) translate(0px, 0px);
    -ms-transform: scale(1) translate(0px, 0px);
        transform: scale(1) translate(0px, 0px);
  }

  .burger-wrapper {
    display: block;
  }
  .primary-menu-wrapper {
    display: none;
  }
 
  .header-image::before {
    height: 80%;
  }
  .header-content h1 {
    font-size: 2.5rem;
  }

  .header-image .header-content .header-content-wrapper h1 { 
    font-size: 3.25rem;
    margin-bottom: 3.5rem;
   }

  h2 { 
    font-size: 2.5rem;
    }

  .wp-block-columns { margin: 2em auto !important; }

  .entry-content .statement { padding: 8rem 0; }
  .entry-content .statement p { font-size: 3.5rem; }

  .entry-content .cv-image figcaption { font-size: 3.5rem;}
  .entry-content .cv-listing li { 
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; 
    text-align: left;
  }

  .section-netzwerk-logos { width: 100%;margin: 1em 0; }
  .section-netzwerk-logos .post-thumbnail { margin: 1em 0; }
  .section-netzwerk-logos .post-thumbnail.three-col img,
  .section-netzwerk-logos .post-thumbnail.three-col:first-of-type img,
  .section-netzwerk-logos .post-thumbnail.three-col:nth-of-type(4n) img,
  .section-netzwerk-logos .post-thumbnail.three-col:nth-of-type(3n) img { max-height: 150px; margin: 0 auto; } 

  .section-netzwerk p { max-width: 80%;}
  .referenzen-card { width: 100%;margin-bottom: 2em; }
  .referenzen-card .ref-header { font-size: 3.25rem; }

  #site-footer .section-contact { padding-top: 6em;}

  .wpcf7-form-control-wrap.email,
  .wpcf7-form-control-wrap.telefon { width: 100%; }
  .wpcf7-acceptance .wpcf7-list-item-label a { margin-left: 0.25rem; }

  #site-footer .site-footer-wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
        justify-content: flex-start;
        margin: 0;
  }

  #site-footer .site-footer-wrapper .footer-ele { margin: 0; }
  #site-footer .site-footer-wrapper .footer-ele:last-of-type li { text-align: left; }
}