/*
RESET STYLES
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  background-color: #000;
}
html body {
  font-family: "Montserrat";
  font-weight: 300;
  margin-bottom: 0 !important;
  background-color: #000;
}

.mobile-menu-bg {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 0;
  height: 100vh;
  background: rgba(37, 36, 36, 0);
  backdrop-filter: blur(0);
  transition: all 0.7s ease-in-out;
}
@media all and (max-width: 430px) {
  .mobile-menu-bg {
    transition: all 0.3s ease-in-out;
  }
}
.mobile-menu-bg.visible {
  width: 100%;
  background: rgba(37, 36, 36, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.7s ease-in-out;
}
@media all and (max-width: 430px) {
  .mobile-menu-bg.visible {
    transition: all 0.3s ease-in-out;
  }
}

header#main-header {
  display: flex;
  margin-top: 130px;
  padding-left: 35px;
  padding-right: 140px;
  justify-content: space-between;
}
@media all and (max-width: 1280px) {
  header#main-header {
    padding-right: 100px;
  }
}
@media all and (max-width: 1024px) {
  header#main-header {
    justify-content: space-between;
    margin-right: 70px;
    padding-right: 0;
  }
}
@media all and (max-width: 768px) {
  header#main-header {
    padding-top: 0;
    margin-top: 100px;
    margin-right: 40px;
  }
}
@media all and (max-width: 480px) {
  header#main-header {
    position: sticky;
    top: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.5);
  }
}
@media all and (max-width: 430px) {
  header#main-header {
    margin-right: 25px;
    padding-left: 25px;
  }
}
@media all and (max-width: 340px) {
  header#main-header {
    padding-left: 15px;
  }
}
header#main-header .searchform {
  margin-top: 30px;
  margin-left: 15px;
  margin-right: 15px;
  position: relative;
}
@media all and (max-width: 1280px) {
  header#main-header .searchform {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 28px;
  }
}
@media all and (max-width: 1024px) {
  header#main-header .searchform {
    margin-left: 0;
  }
}
header#main-header .searchform input[type=search] {
  border: 1px solid #fff;
  border-radius: 25px;
  background-color: transparent;
  max-width: 250px;
  width: 100%;
  height: 32px;
  color: #fff;
  padding: 0 15px;
}
header#main-header .searchform input[type=submit] {
  position: absolute;
  top: 2px;
  background-color: #000;
  right: 2px;
  height: 28px;
  width: 50px;
  border: 0;
  border-radius: 0 25px 25px 0;
  font-size: 0;
  background-image: url("../img/search.svg");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
header#main-header .header-left {
  display: flex;
}
@media all and (max-width: 1024px) {
  header#main-header .header-left {
    width: 100%;
    justify-content: space-between;
    margin-right: 25px;
  }
}
header#main-header .header-left #site-logo {
  display: inline-block;
  width: 245px;
}
@media all and (max-width: 1300px) {
  header#main-header .header-left #site-logo {
    width: 200px;
  }
}
@media all and (max-width: 430px) {
  header#main-header .header-left #site-logo {
    width: 160px;
    margin-right: 10px;
  }
}
@media all and (max-width: 340px) {
  header#main-header .header-left #site-logo {
    width: 140px;
  }
}
header#main-header .header-left .hamburger {
  padding: 0;
  position: relative;
}
@media all and (max-width: 1024px) {
  header#main-header .header-left .hamburger {
    right: 40px;
  }
}
@media all and (min-width: 1025px) {
  header#main-header .header-left .hamburger {
    display: none;
  }
}
header#main-header .header-left .hamburger .hamburger-box {
  position: absolute;
  top: 40px;
}
@media all and (max-width: 1024px) {
  header#main-header .header-left .hamburger .hamburger-box {
    right: auto;
    left: 0;
  }
}
header#main-header .header-left .hamburger .hamburger-box .hamburger-inner {
  background-color: #fff;
}
header#main-header .header-left .hamburger .hamburger-box .hamburger-inner::before, header#main-header .header-left .hamburger .hamburger-box .hamburger-inner::after {
  background-color: #fff;
}
@media all and (max-width: 1024px) {
  header#main-header .header-left .glut-main-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 0;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
    transition: all 0.4s ease-in-out;
  }
}
header#main-header .header-left .glut-main-menu-wrapper .mobile-close-btn {
  width: 40px;
  height: 40px;
  background: url("../img/x.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  margin-bottom: 30px;
  opacity: 0;
  transition: opacity 0.1s ease-out;
  cursor: pointer;
}
@media all and (min-width: 1025px) {
  header#main-header .header-left .glut-main-menu-wrapper .mobile-close-btn {
    display: none;
  }
}
header#main-header .header-left .glut-main-menu-wrapper .glut-main-menu {
  margin-top: 33px;
}
header#main-header .header-left .glut-main-menu-wrapper .glut-main-menu ul {
  list-style-type: none;
  display: flex;
  gap: 15px;
}
@media all and (max-width: 1280px) {
  header#main-header .header-left .glut-main-menu-wrapper .glut-main-menu ul {
    gap: 10px;
  }
}
@media all and (max-width: 1024px) {
  header#main-header .header-left .glut-main-menu-wrapper .glut-main-menu ul {
    display: block;
    visibility: hidden;
    opacity: 0;
  }
}
@media all and (max-width: 1024px) {
  header#main-header .header-left .glut-main-menu-wrapper .glut-main-menu ul li {
    display: block;
    margin-bottom: 30px;
  }
}
header#main-header .header-left .glut-main-menu-wrapper .glut-main-menu ul li:last-child {
  margin-bottom: 0;
}
header#main-header .header-left .glut-main-menu-wrapper .glut-main-menu ul li a {
  color: #fff;
  text-decoration: none;
  padding: 5px 27px 4px;
  font-size: 20px;
  border: 1px solid #fff;
  border-radius: 25px;
  line-height: 120%;
  font-weight: 400;
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
}
@media all and (max-width: 1280px) {
  header#main-header .header-left .glut-main-menu-wrapper .glut-main-menu ul li a {
    padding: 5px 15px 4px;
    font-size: 18px;
  }
}
header#main-header .header-left .glut-main-menu-wrapper .glut-main-menu ul li a:hover {
  color: #000;
  background-color: #fff;
}
header#main-header .header-left .glut-main-menu-wrapper .glut-main-menu ul li.current_page_item.menu-item-type-post_type a {
  color: #000;
  background-color: #fff;
}
header#main-header .header-left .glut-main-menu-wrapper .glut-search-form {
  display: none;
}
header#main-header .header-left .glut-main-menu-wrapper.visible {
  width: 430px;
  transition: all 0.4s ease-in-out;
  background-color: rgb(0, 0, 0);
}
@media all and (max-width: 540px) {
  header#main-header .header-left .glut-main-menu-wrapper.visible {
    width: 350px;
  }
}
@media all and (max-width: 430px) {
  header#main-header .header-left .glut-main-menu-wrapper.visible {
    width: 90vw;
  }
}
@media all and (max-width: 375px) {
  header#main-header .header-left .glut-main-menu-wrapper.visible {
    width: 100vw;
  }
}
header#main-header .header-left .glut-main-menu-wrapper.visible .mobile-close-btn {
  opacity: 1;
  transition: opacity 0.1s ease-out;
}
header#main-header .header-left .glut-main-menu-wrapper.visible ul {
  visibility: visible;
  opacity: 1;
  transition: all 0.1s ease-out;
}
@media all and (max-width: 1024px) {
  header#main-header .header-left .glut-main-menu-wrapper.visible .glut-search-form {
    display: block;
  }
}
header#main-header .header-right {
  display: flex;
}
header#main-header .header-right .language-switcher {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  border: 1px solid #fff;
  border-radius: 25px;
  height: 32px;
  margin-top: 30px;
  transition: all 0.2s ease;
  position: relative;
}
@media all and (max-width: 1280px) {
  header#main-header .header-right .language-switcher {
    margin-top: 28px;
  }
}
@media all and (max-width: 1024px) {
  header#main-header .header-right .language-switcher {
    margin-top: 34px;
  }
}
header#main-header .header-right .language-switcher li.active a {
  display: none;
}
header#main-header .header-right .language-switcher li a {
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
  font-size: 20px;
  line-height: 1.4;
  padding: 0 15px;
  text-transform: uppercase;
  font-weight: 400;
}
header#main-header .header-right .language-switcher li a:hover, header#main-header .header-right .language-switcher li a:focus {
  color: #000000;
}
header#main-header .header-right .language-switcher:hover {
  background: #fff;
}
header#main-header .header-right .language-switcher:hover:after {
  background: url("../img/globe_schwarz.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
header#main-header .header-right .language-switcher:hover a {
  color: #000000;
}
@media all and (max-width: 1024px) {
  header#main-header .header-right .searchform {
    display: none;
  }
}

#page {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  position: relative;
  padding-bottom: 1260px;
  /* section */
}
@media all and (max-width: 768px) {
  #page {
    padding-bottom: 1460px !important;
  }
}
@media all and (max-width: 480px) {
  #page {
    padding-bottom: 1560px !important;
  }
}
@media all and (max-width: 350px) {
  #page {
    padding-bottom: 1660px !important;
  }
}
#page .site-content {
  margin-bottom: 19vh;
}
#page .site-content .site-main {
  margin: 0 140px;
}
@media all and (max-width: 1300px) {
  #page .site-content .site-main {
    margin: 0 100px;
  }
}
@media all and (max-width: 1024px) {
  #page .site-content .site-main {
    margin: 0 70px;
  }
}
@media all and (max-width: 768px) {
  #page .site-content .site-main {
    margin: 0 40px;
  }
}
@media all and (max-width: 430px) {
  #page .site-content .site-main {
    margin: 0 25px;
  }
}
#page .site-content .site-main h1 {
  font: normal normal 300 63px/121% Montserrat;
  color: #FFFFFF;
}
@media all and (max-width: 1024px) {
  #page .site-content .site-main h1 {
    font: normal normal 300 54px/121% Montserrat;
  }
}
@media all and (max-width: 480px) {
  #page .site-content .site-main h1 {
    font: normal normal 300 48px/121% Montserrat;
  }
}
#page .site-content .site-main h2 {
  font: normal normal 300 63px/121% Montserrat;
  color: #fff;
}
@media all and (max-width: 1300px) {
  #page .site-content .site-main h2 {
    font: normal normal 300 54px/121% Montserrat;
  }
}
@media all and (max-width: 1024px) {
  #page .site-content .site-main h2 {
    font: normal normal 300 48px/121% Montserrat;
  }
}
@media all and (max-width: 768px) {
  #page .site-content .site-main h2 {
    font: normal normal 300 42px/121% Montserrat;
  }
}
@media all and (max-width: 430px) {
  #page .site-content .site-main h2 {
    font: normal normal 300 36px/121% Montserrat;
  }
}
#page .site-content .site-main h3 {
  font-size: 34px;
  font-weight: 400;
}
#page .site-content .site-main h4 {
  font-size: 26px;
  font-weight: 600;
}
#page .site-content .site-main p {
  font: normal normal normal 24px/121% Montserrat;
  color: #FFFFFF;
  margin-top: 35px;
}
@media all and (max-width: 1024px) {
  #page .site-content .site-main p {
    font: normal normal normal 22px/121% Montserrat;
  }
}
@media all and (max-width: 768px) {
  #page .site-content .site-main p {
    font: normal normal normal 19px/121% Montserrat;
  }
}
#page .site-content .site-main p a {
  color: #fff;
  text-decoration: underline;
}
#page .site-content .site-main p a:hover {
  color: #cbfe7f;
}
#page .site-content .site-main p strong {
  font: normal normal normal 26px/121% Montserrat;
}
#page .site-content .site-main .legal-block {
  margin-bottom: 35px;
  font: normal normal normal 26px/121% Montserrat;
}
#page .site-content .site-main .legal-block strong {
  font: normal normal normal 26px/121% Montserrat;
}
#page .site-content .site-main .legal-block a {
  color: #fff;
}
#page section.text-twocol {
  margin: 0 140px;
}
@media all and (max-width: 1500px) {
  #page section.text-twocol {
    margin: 0 90px 0 140px;
  }
}
@media all and (max-width: 1300px) {
  #page section.text-twocol {
    margin: 0 0 0 95px;
  }
}
@media all and (max-width: 1024px) {
  #page section.text-twocol {
    margin: 0;
  }
}
#page section.text-twocol .text-twocol {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7%;
}
@media all and (max-width: 1500px) {
  #page section.text-twocol .text-twocol {
    gap: 5%;
  }
}
@media all and (max-width: 1300px) {
  #page section.text-twocol .text-twocol {
    gap: 3%;
  }
}
@media all and (max-width: 768px) {
  #page section.text-twocol .text-twocol {
    grid-template-columns: 1fr;
  }
}

.page-template-page-team #page {
  padding-bottom: 1260px;
}
.page-template-page-team #page .agency-info-wrapper {
  display: grid;
  grid-template-columns: 50% 41%;
  grid-template-rows: repeat(1, auto);
  grid-auto-rows: auto;
  grid-column-gap: 9%;
  grid-row-gap: 0;
  margin-bottom: 55px;
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .agency-info-wrapper {
    grid-template-columns: 100%;
  }
}
.page-template-page-team #page .agency-info-wrapper .agency-heading {
  font-size: 65px;
  line-height: 121.53%;
  font-weight: 300;
  margin-bottom: 70px;
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .agency-info-wrapper .agency-heading {
    margin-bottom: 68px;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .agency-info-wrapper .agency-heading {
    font-size: 60px;
    margin-bottom: 58px;
  }
}
@media all and (max-width: 400px) {
  .page-template-page-team #page .agency-info-wrapper .agency-heading {
    font-size: 40px;
    margin-bottom: 38px;
  }
}
.page-template-page-team #page .agency-info-wrapper .agency_desc {
  margin-bottom: 136px;
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .agency-info-wrapper .agency_desc {
    margin-bottom: 36px;
    margin-top: 46px;
  }
}
.page-template-page-team #page .agency-info-wrapper .agency_desc p {
  font: normal normal normal 28px/121% Montserrat !important;
}
@media all and (max-width: 1500px) {
  .page-template-page-team #page .agency-info-wrapper .agency_desc p {
    font-size: 1.85vw !important;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .agency-info-wrapper .agency_desc p {
    font-size: 22px !important;
  }
}
.page-template-page-team #page .team-members-wrapper {
  margin: 0 8%;
}
@media all and (max-width: 1200px) {
  .page-template-page-team #page .team-members-wrapper {
    margin: 0 5%;
  }
}
@media all and (max-width: 540px) {
  .page-template-page-team #page .team-members-wrapper {
    margin: 0;
  }
}
.page-template-page-team #page .team-members-wrapper .team-members-heading {
  font-size: 65px;
  line-height: 121.53%;
  font-weight: 300;
  margin-bottom: 70px;
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .team-members-wrapper .team-members-heading {
    margin-bottom: 68px;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .team-members-wrapper .team-members-heading {
    font-size: 60px;
    margin-bottom: 58px;
  }
}
@media all and (max-width: 400px) {
  .page-template-page-team #page .team-members-wrapper .team-members-heading {
    font-size: 40px;
    margin-bottom: 38px;
  }
}
.page-template-page-team #page .team-members-wrapper .team-members {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 21%;
}
@media all and (max-width: 1200px) {
  .page-template-page-team #page .team-members-wrapper .team-members {
    column-gap: 15%;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .team-members-wrapper .team-members {
    grid-template-columns: 100%;
    column-gap: 0;
  }
}
.page-template-page-team #page .team-members-wrapper .team-members .team-member {
  position: relative;
  margin-bottom: 70px;
}
@media all and (max-width: 540px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member {
    margin-bottom: 40px;
  }
}
@media all and (max-width: 400px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member {
    margin-bottom: 30px;
  }
}
.page-template-page-team #page .team-members-wrapper .team-members .team-member:nth-child(2n) {
  top: 200px;
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member:nth-child(2n) {
    top: 0;
    margin-left: 15%;
  }
}
@media all and (max-width: 400px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member:nth-child(2n) {
    margin-left: 0;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member:nth-child(odd) {
    margin-right: 15%;
  }
}
@media all and (max-width: 400px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member:nth-child(odd) {
    margin-right: 0;
  }
}
.page-template-page-team #page .team-members-wrapper .team-members .team-member .team-image {
  width: 100%;
  margin-bottom: 20px;
}
@media all and (max-width: 400px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member .team-image {
    margin-bottom: 12px;
  }
}
.page-template-page-team #page .team-members-wrapper .team-members .team-member .team-image img {
  width: 100%;
  height: auto;
}
.page-template-page-team #page .team-members-wrapper .team-members .team-member .team-name {
  font-size: 45px;
  line-height: 122.22%;
  margin-bottom: 10px;
}
@media all and (max-width: 1380px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member .team-name {
    font-size: 3vw;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member .team-name {
    font-size: 40px;
  }
}
@media all and (max-width: 540px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member .team-name {
    font-size: 30px;
  }
}
@media all and (max-width: 400px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member .team-name {
    margin-bottom: 5px;
    font-size: 24px;
  }
}
.page-template-page-team #page .team-members-wrapper .team-members .team-member .team-position {
  font-size: 24px;
  line-height: 120.83%;
  margin-bottom: 20px;
}
@media all and (max-width: 1380px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member .team-position {
    font-size: 1.7vw;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member .team-position {
    font-size: 22px;
  }
}
@media all and (max-width: 540px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member .team-position {
    font-size: 18px;
  }
}
@media all and (max-width: 400px) {
  .page-template-page-team #page .team-members-wrapper .team-members .team-member .team-position {
    margin-bottom: 12px;
  }
}
.page-template-page-team #page .team-members-wrapper .team-members .team-member .team-vcard a {
  color: #000 !important;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 125%;
  text-align: center;
  padding: 7px 29px;
  border-radius: 40px;
  text-decoration: none;
}
.page-template-page-team #page .team-members-wrapper .team-members .team-member .team-vcard a .standard-link-bg {
  display: none;
}
.page-template-page-team #page .jobs-wrapper .jobs-heading {
  font-size: 65px;
  line-height: 121.53%;
  font-weight: 300;
  margin-bottom: 88px;
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .jobs-wrapper .jobs-heading {
    margin-bottom: 68px;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .jobs-wrapper .jobs-heading {
    font-size: 60px;
    margin-bottom: 58px;
  }
}
@media all and (max-width: 400px) {
  .page-template-page-team #page .jobs-wrapper .jobs-heading {
    font-size: 40px;
    margin-bottom: 38px;
  }
}
.page-template-page-team #page .jobs-wrapper .jobs-content {
  display: grid;
  grid-template-columns: 32% 50%;
  grid-template-rows: repeat(1, auto);
  justify-content: space-between;
}
@media all and (max-width: 1600px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content {
    grid-template-columns: 37% 55%;
  }
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content {
    grid-template-columns: 100%;
  }
}
.page-template-page-team #page .jobs-wrapper .jobs-content .jobs-left .jobs_desc p {
  font-size: 26px;
  line-height: 123%;
}
@media all and (max-width: 1600px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-left .jobs_desc p {
    font-size: 1.7vw;
  }
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-left .jobs_desc p {
    font-size: 22px;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-left .jobs_desc p {
    font-size: 22px;
  }
}
@media all and (max-width: 480px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-left .jobs_desc p {
    font-size: 20px;
  }
}
@media all and (max-width: 400px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-left .jobs_desc p {
    font-size: 16px;
  }
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right {
    margin-top: 32px;
  }
}
.page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job {
  border: 2px solid #fff;
  border-radius: 40px;
  padding: 21px 33px 19px 30px;
  margin-bottom: 20px;
  position: relative;
  cursor: pointer;
}
@media all and (max-width: 1600px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job {
    padding: 21px 2.5vw 19px 4.5vw;
  }
}
@media all and (max-width: 1380px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job {
    padding: 16px 1.8vw 14px 2.3vw;
  }
}
@media all and (max-width: 1180px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job {
    padding: 16px 1.5vw 14px 2.3vw;
  }
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job {
    padding: 16px 23px 14px 39px;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job {
    padding: 16px 15px 14px 25px;
  }
}
.page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .icon-open {
  position: absolute;
  right: 20px;
  top: 21px;
  text-align: right;
}
@media all and (max-width: 1600px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .icon-open {
    right: 2.5vw;
  }
}
@media all and (max-width: 1380px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .icon-open {
    top: 8px;
    right: 1.8vw;
  }
}
@media all and (max-width: 1180px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .icon-open {
    top: 10px;
    right: 1.5vw;
  }
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .icon-open {
    right: 23px;
    top: 10px;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .icon-open {
    right: 15px;
  }
}
.page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .icon-open svg {
  stroke: #fff;
}
@media all and (max-width: 1180px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .icon-open svg {
    width: 75%;
    height: auto;
  }
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .icon-open svg {
    width: 100%;
  }
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-title {
    padding-right: 33px;
  }
}
.page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-title h3 {
  font-size: 27px;
  line-height: 122.22%;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
}
@media all and (max-width: 1600px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-title h3 {
    font-size: 1.6vw;
  }
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-title h3 {
    font-size: 23px;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-title h3 {
    font-size: 21px;
  }
}
@media all and (max-width: 480px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-title h3 {
    font-size: 18px;
  }
}
.page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-desc {
  margin-top: 36px;
  margin-bottom: 12px;
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-desc {
    margin-top: 26px;
  }
}
@media all and (max-width: 480px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-desc {
    margin-top: 22px;
  }
}
.page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-desc p {
  font-size: 20px;
  line-height: 120%;
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-desc p {
    font-size: 18px;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-desc p {
    font-size: 16px;
  }
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-desc p strong {
    font-size: 18px !important;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-desc p strong {
    font-size: 16px !important;
  }
}
.page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-desc p a .standard-link-bg {
  display: none;
}
.page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-button {
  display: inline-block;
  align-self: end;
}
.page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-button a {
  border-radius: 40px;
  background: #000;
  padding: 9px 62px 9px 25px;
  color: #fff !important;
  font-size: 22px;
  line-height: 122%;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
}
@media all and (max-width: 1024px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-button a {
    font-size: 20px;
  }
}
@media all and (max-width: 480px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-button a {
    font-size: 18px;
    padding: 9px 42px 7px 25px;
  }
}
.page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-button a svg {
  position: absolute;
  right: 23px;
  top: 50%;
  transform: translateY(-50%);
}
@media all and (max-width: 480px) {
  .page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-button a svg {
    right: 13px;
  }
}
.page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-button a .standard-link-bg {
  display: none;
}
.page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-content {
  display: none;
}
.page-template-page-team #page .jobs-wrapper .jobs-content .jobs-right .job .job-content .job-content-inner {
  display: flex;
  flex-direction: column;
}

.home #page {
  padding-bottom: 1805px;
}
.home #page header#main-header {
  margin-top: 150px;
  padding-top: 0;
}
.home #page .homeslider {
  height: 713px;
}
@media all and (max-width: 480px) {
  .home #page .homeslider {
    height: 500px;
  }
}
.home #page .homeslider .slick-slider-home-top {
  height: 100%;
}
.home #page .homeslider .slick-slider-home-top .slick-list {
  height: 100%;
}
@media all and (max-width: 480px) {
  .home #page .homeslider .slick-slider-home-top .slick-list .slick-track {
    height: 500px;
  }
}
.home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide {
  position: relative;
  padding-bottom: 220px;
  /*.slide-content-mobil {
    display: none;
    @media all and (max-width: 768px) {
      display: block;
      height: 220px;
      position: relative;
      bottom: 0;
      background: #000;
      z-index: 100;
      padding: 10px 40px;
    }
    @media all and (max-width: 430px) {
      padding: 10px 25px;
    }
    .slide-text, .slide-button {
      p, a {
        color: #fff !important;
        font-size: 18px;
      }
      h2 {
        color: #fff !important;
        text-transform: uppercase;
        margin-bottom: 10px;
        font-size: 20px;
      }
    }
    .slide-button {
      margin-top: 10px;
    }
  }*/
}
.home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content {
  position: absolute;
  left: 70%;
  top: 0;
  z-index: 1;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 5%;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
@media all and (max-width: 768px) {
  .home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0, 0, 0, 0);
    justify-content: flex-end;
    height: calc(100% - 140px);
  }
}
@media all and (max-width: 990px) {
  .home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content {
    left: 65%;
  }
}
@media all and (max-width: 480px) {
  .home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content {
    left: 0;
    width: 100%;
  }
}
.home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content .cat-tag {
  color: #000;
  text-align: center;
  padding: 7px 20px;
  font-size: 20px;
  border-radius: 40px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 53px;
  display: inline-block;
}
@media all and (max-width: 768px) {
  .home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content .cat-tag {
    position: absolute;
    bottom: 100px;
  }
}
@media all and (max-width: 480px) {
  .home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content .cat-tag {
    right: 25px;
  }
}
.home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content .slide-text {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  margin-right: 5vw;
}
@media all and (max-width: 768px) {
  .home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content .slide-text {
    display: none;
  }
}
.home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content .slide-text h2 {
  font-size: 20px;
  margin-bottom: 30px;
}
.home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content .slide-text p {
  text-transform: none;
}
.home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content .slide-button {
  margin-top: 30px;
}
@media all and (max-width: 768px) {
  .home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content .slide-button {
    display: none;
  }
}
.home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content .slide-button a {
  color: #fff;
  text-transform: uppercase;
}
.home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-content .slide-button a:hover {
  color: #cbfe7f;
}
.home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-img, .home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-video {
  height: 713px;
}
@media all and (max-width: 480px) {
  .home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-img, .home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-video {
    height: 500px;
  }
}
.home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-img img, .home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-img video, .home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-video img, .home #page .homeslider .slick-slider-home-top .slick-list .slick-track .slick-slide .slide .slide-video video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.home #page .homeslider .slick-slider-home-top .slick-dots {
  position: absolute;
  bottom: 80px;
  left: 75%;
}
@media all and (max-width: 990px) {
  .home #page .homeslider .slick-slider-home-top .slick-dots {
    left: 70%;
  }
}
@media all and (max-width: 768px) {
  .home #page .homeslider .slick-slider-home-top .slick-dots {
    bottom: 40px;
  }
}
@media all and (max-width: 480px) {
  .home #page .homeslider .slick-slider-home-top .slick-dots {
    left: auto;
    right: 12px;
  }
}
.home #page .homeslider .slick-slider-home-top .slick-dots li {
  display: inline-block;
  list-style-type: none;
  margin-right: 20px;
  width: 20px;
  height: 10px;
}
.home #page .homeslider .slick-slider-home-top .slick-dots li button {
  font-size: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0.5;
}
.home #page .homeslider .slick-slider-home-top .slick-dots li.slick-active button {
  opacity: 1;
}
@media all and (min-width: 769px) {
  .home #page .homeslider .slider-content-mobil {
    display: none;
  }
}
.home #page .homeslider .slider-content-mobil .slick-slide .slide-content-mobil {
  display: none;
}
@media all and (max-width: 768px) {
  .home #page .homeslider .slider-content-mobil .slick-slide .slide-content-mobil {
    background: #000;
    padding: 10px 40px;
  }
}
@media all and (max-width: 430px) {
  .home #page .homeslider .slider-content-mobil .slick-slide .slide-content-mobil {
    padding: 10px 25px;
  }
}
.home #page .homeslider .slider-content-mobil .slick-slide .slide-content-mobil .slide-text p, .home #page .homeslider .slider-content-mobil .slick-slide .slide-content-mobil .slide-text a, .home #page .homeslider .slider-content-mobil .slick-slide .slide-content-mobil .slide-button p, .home #page .homeslider .slider-content-mobil .slick-slide .slide-content-mobil .slide-button a {
  color: #fff !important;
  font-size: 18px;
}
.home #page .homeslider .slider-content-mobil .slick-slide .slide-content-mobil .slide-text h2, .home #page .homeslider .slider-content-mobil .slick-slide .slide-content-mobil .slide-button h2 {
  color: #fff !important;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 20px;
}
.home #page .homeslider .slider-content-mobil .slick-slide .slide-content-mobil .slide-button {
  margin-top: 10px;
}
.home #page .site-content {
  margin-bottom: 0 !important;
}
.home #page .site-content .content-area {
  background-repeat: no-repeat !important;
  background-size: contain !important;
  background-position: top center !important;
}
.home #page .site-content .content-area .text-twocol .right-text p {
  font: normal normal normal 28px/34px Montserrat !important;
}
@media (max-width: 768px) {
  .home #page .site-content .content-area .text-twocol .right-text p {
    font: normal normal normal 22px/30px Montserrat !important;
  }
}
.home #page .site-content .content-area #projekte {
  width: calc(100% + 16px);
  margin-top: 270px;
  margin-bottom: 250px;
}
@media all and (max-width: 1300px) {
  .home #page .site-content .content-area #projekte {
    margin-top: 200px;
  }
}
@media all and (max-width: 1024px) {
  .home #page .site-content .content-area #projekte {
    margin-top: 170px;
  }
}
@media all and (max-width: 768px) {
  .home #page .site-content .content-area #projekte {
    margin-top: 120px;
    margin-bottom: 120px;
  }
}
@media all and (max-width: 500px) {
  .home #page .site-content .content-area #projekte {
    width: 100%;
  }
}
@media all and (max-width: 480px) {
  .home #page .site-content .content-area #projekte {
    margin-bottom: 100px;
  }
}
.home #page .site-content .content-area #projekte .project-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 73px;
  align-items: center;
}
@media all and (max-width: 880px) {
  .home #page .site-content .content-area #projekte .project-header {
    display: block;
    margin-bottom: 45px;
  }
}
@media all and (max-width: 480px) {
  .home #page .site-content .content-area #projekte .project-header {
    margin-bottom: 25px;
  }
}
.home #page .site-content .content-area #projekte .project-header h2 {
  font: normal normal 300 63px/121% Montserrat;
  color: #fff;
}
@media all and (max-width: 1300px) {
  .home #page .site-content .content-area #projekte .project-header h2 {
    font: normal normal 300 54px/121% Montserrat;
  }
}
@media all and (max-width: 1024px) {
  .home #page .site-content .content-area #projekte .project-header h2 {
    font: normal normal 300 48px/121% Montserrat;
  }
}
@media all and (max-width: 768px) {
  .home #page .site-content .content-area #projekte .project-header h2 {
    font: normal normal 300 42px/121% Montserrat;
  }
}
@media all and (max-width: 430px) {
  .home #page .site-content .content-area #projekte .project-header h2 {
    font: normal normal 300 36px/121% Montserrat;
  }
}
.home #page .site-content .content-area #projekte .project-header .button-group {
  padding-right: 17px;
  display: flex;
}
@media all and (max-width: 880px) {
  .home #page .site-content .content-area #projekte .project-header .button-group {
    margin-top: 25px;
  }
}
@media all and (max-width: 480px) {
  .home #page .site-content .content-area #projekte .project-header .button-group {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.home #page .site-content .content-area #projekte .project-header .button-group button {
  height: 45px;
  border-radius: 40px;
  text-align: center;
  font: normal normal normal 27px/122% Montserrat;
  color: #000;
  text-transform: uppercase;
  padding: 6px 31px;
  margin-left: 10px;
  cursor: pointer;
  border: 0;
  opacity: 0.6;
  transition: opacity 0.2s ease-out;
}
@media all and (max-width: 1300px) {
  .home #page .site-content .content-area #projekte .project-header .button-group button {
    font: normal normal normal 20px/122% Montserrat;
    padding: 4px 25px;
    margin-left: 6px;
  }
}
.home #page .site-content .content-area #projekte .project-header .button-group button:first-child {
  margin-left: 0;
}
@media all and (max-width: 768px) {
  .home #page .site-content .content-area #projekte .project-header .button-group button {
    font: normal normal normal 16px/122% Montserrat;
    padding: 0 15px;
    margin-left: 4px;
    height: 35px;
  }
}
@media all and (max-width: 480px) {
  .home #page .site-content .content-area #projekte .project-header .button-group button {
    margin-bottom: 5px;
    margin-left: 0;
  }
}
.home #page .site-content .content-area #projekte .project-header .button-group button.active, .home #page .site-content .content-area #projekte .project-header .button-group button:hover {
  opacity: 1;
}
.home #page .site-content .content-area #projekte .filter-grid {
  margin-left: -8px;
  margin-right: 8px;
}
@media all and (max-width: 500px) {
  .home #page .site-content .content-area #projekte .filter-grid {
    margin-left: 0;
    margin-right: 0;
  }
}
.home #page .site-content .content-area #projekte .filter-grid .filter-item {
  width: calc(50% - 19px);
  margin: 0 6px 60px;
}
@media all and (max-width: 560px) {
  .home #page .site-content .content-area #projekte .filter-grid .filter-item {
    margin: 0 8px 30px;
  }
}
@media all and (max-width: 500px) {
  .home #page .site-content .content-area #projekte .filter-grid .filter-item {
    width: 100%;
    margin: 0 0 30px;
  }
}
.home #page .site-content .content-area #projekte .filter-grid .filter-item a {
  text-decoration: none;
  border-bottom: none;
  outline: none;
}
.home #page .site-content .content-area #projekte .filter-grid .filter-item a h2.project-title {
  text-align: left;
  font: normal normal 300 55px/122% Montserrat;
  color: #fff;
  margin-top: 16px;
  hyphens: auto;
}
@media all and (max-width: 768px) {
  .home #page .site-content .content-area #projekte .filter-grid .filter-item a h2.project-title {
    font: normal normal 300 32px/122% Montserrat;
  }
}
@media all and (max-width: 560px) {
  .home #page .site-content .content-area #projekte .filter-grid .filter-item a h2.project-title {
    font: normal normal 300 27px/122% Montserrat;
  }
}
.home #page .site-content .content-area #projekte .filter-grid .filter-item a h3.project-subtitle {
  text-align: left;
  font: normal normal 300 22px/121% Montserrat;
  color: #fff;
}
.home #page .site-content .content-area #projekte .projects-load-more {
  text-align: center;
  margin-top: 50px;
}
.home #page .site-content .content-area #projekte .projects-load-more a {
  border: 2px solid #ffffff;
  border-radius: 40px;
  text-align: center;
  font: normal normal normal 25px/122% Montserrat;
  text-transform: uppercase;
  color: #ffffff;
  padding: 6px 44px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-out;
}
.home #page .site-content .content-area #projekte .projects-load-more a:hover {
  cursor: pointer;
  background: #fff;
  color: #000;
}
@media all and (max-width: 480px) {
  .home #page .site-content .content-area #projekte .projects-load-more a {
    font: normal normal normal 20px/122% Montserrat;
  }
}
.home #page .site-content .content-area #instagram {
  margin-bottom: 260px;
}
@media all and (max-width: 768px) {
  .home #page .site-content .content-area #instagram {
    margin-bottom: 120px;
  }
}
@media all and (max-width: 480px) {
  .home #page .site-content .content-area #instagram {
    margin-bottom: 100px;
  }
}
.home #page .site-content .content-area #instagram .insta-headline {
  margin-bottom: 83px;
}
@media all and (max-width: 480px) {
  .home #page .site-content .content-area #instagram .insta-headline {
    margin-bottom: 43px;
  }
}
.home #page .site-content .content-area #instagram .insta-headline h2 {
  font: normal normal 300 63px/121% Montserrat;
  color: #fff;
}
@media all and (max-width: 1300px) {
  .home #page .site-content .content-area #instagram .insta-headline h2 {
    font: normal normal 300 54px/121% Montserrat;
  }
}
@media all and (max-width: 1024px) {
  .home #page .site-content .content-area #instagram .insta-headline h2 {
    font: normal normal 300 48px/121% Montserrat;
  }
}
@media all and (max-width: 768px) {
  .home #page .site-content .content-area #instagram .insta-headline h2 {
    font: normal normal 300 42px/121% Montserrat;
  }
}
@media all and (max-width: 430px) {
  .home #page .site-content .content-area #instagram .insta-headline h2 {
    font: normal normal 300 36px/121% Montserrat;
  }
}
.home #page .site-content .content-area #instagram .inst-feed #sb_instagram .sb_instagram_header {
  display: none;
}
.home #page .site-content .content-area #instagram .inst-feed #sb_instagram #sbi_images .sbi_photo {
  height: 540px !important;
}
.home #page .site-content .content-area #instagram .inst-feed #sb_instagram #sbi_load {
  display: none;
}
.home #page .site-content .content-area #clients {
  margin-bottom: 50px;
}
.home #page .site-content .content-area #clients .client-header {
  margin-bottom: 95px;
  font: normal normal 300 63px/121% Montserrat;
  color: #fff;
}
@media all and (max-width: 1300px) {
  .home #page .site-content .content-area #clients .client-header {
    font: normal normal 300 54px/121% Montserrat;
  }
}
@media all and (max-width: 1024px) {
  .home #page .site-content .content-area #clients .client-header {
    font: normal normal 300 48px/121% Montserrat;
  }
}
@media all and (max-width: 768px) {
  .home #page .site-content .content-area #clients .client-header {
    font: normal normal 300 42px/121% Montserrat;
  }
}
@media all and (max-width: 430px) {
  .home #page .site-content .content-area #clients .client-header {
    font: normal normal 300 36px/121% Montserrat;
  }
}
@media all and (max-width: 480px) {
  .home #page .site-content .content-area #clients .client-header {
    margin-bottom: 45px;
  }
}
.home #page .site-content .content-area #clients .client-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  justify-content: space-between;
}
@media all and (max-width: 1024px) {
  .home #page .site-content .content-area #clients .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media all and (max-width: 480px) {
  .home #page .site-content .content-area #clients .client-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home #page .site-content .content-area #clients .client-grid .client {
  text-align: center;
}
@media all and (max-width: 1500px) {
  .home #page #footer-container {
    background-size: 70% !important;
  }
}
@media all and (max-width: 1400px) {
  .home #page #footer-container {
    background-size: 80% !important;
    background-position-x: 100% !important;
  }
}
@media all and (max-width: 1024px) {
  .home #page #footer-container {
    background-size: 100% !important;
    padding-top: 400px !important;
  }
}
@media all and (max-width: 600px) {
  .home #page #footer-container {
    padding-top: 300px !important;
  }
}
@media all and (max-width: 480px) {
  .home #page #footer-container {
    padding-top: 200px !important;
  }
}

.single-ct_references #page {
  padding-bottom: 120px;
}
.single-ct_references #page .standard-page-content-wrapper h1.project-headline {
  font: normal normal 300 63px/121% Montserrat;
  color: #fff;
  margin-bottom: 69px;
}
@media all and (max-width: 1300px) {
  .single-ct_references #page .standard-page-content-wrapper h1.project-headline {
    font: normal normal 300 54px/121% Montserrat;
  }
}
@media all and (max-width: 1024px) {
  .single-ct_references #page .standard-page-content-wrapper h1.project-headline {
    font: normal normal 300 48px/121% Montserrat;
  }
}
@media all and (max-width: 768px) {
  .single-ct_references #page .standard-page-content-wrapper h1.project-headline {
    font: normal normal 300 42px/121% Montserrat;
  }
}
@media all and (max-width: 430px) {
  .single-ct_references #page .standard-page-content-wrapper h1.project-headline {
    font: normal normal 300 36px/121% Montserrat;
  }
}
.single-ct_references #page .standard-page-content-wrapper .reference-content {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  grid-template-rows: 1fr;
}
@media all and (max-width: 1024px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content {
    grid-template-columns: repeat(1, 100%);
  }
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-bilder .reference-img-slider .slick-track {
  display: flex;
  align-items: stretch;
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-bilder .reference-img-slider .slick-track .slick-slide {
  display: block;
  height: auto;
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-bilder .reference-img-slider .slick-track .slick-slide div {
  height: 100%;
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-bilder .reference-img-slider .slick-track .slick-slide div video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-bilder .reference-img-slider .slick-dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  list-style-type: none;
  width: 100%;
  text-align: center;
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-bilder .reference-img-slider .slick-dots li {
  display: inline-block;
  list-style-type: none;
  margin-right: 20px;
  width: 20px;
  height: 10px;
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-bilder .reference-img-slider .slick-dots li button {
  font-size: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  opacity: 0.5;
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-bilder .reference-img-slider .slick-dots li.slick-active button {
  opacity: 1;
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-bilder .reference-img-slider .slick-dots li button {
  background: #a1a1a1;
  border: none;
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text {
  margin-left: 17%;
}
@media all and (max-width: 1440px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text {
    margin-left: 12%;
  }
}
@media all and (max-width: 1024px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text {
    margin-left: 0;
    margin-top: 50px;
  }
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-terms.projectgroup {
  margin-bottom: 48px;
}
@media all and (max-width: 1440px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-terms.projectgroup {
    margin-bottom: 12px;
  }
}
@media all and (max-width: 1200px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-terms.projectgroup {
    margin-bottom: 8px;
  }
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-terms.projectgroup span.group {
  height: 25px;
  border-radius: 40px;
  text-align: center;
  font: normal normal normal 15px/122% Montserrat;
  color: #000;
  text-transform: uppercase;
  padding: 4px 31px;
  margin-left: 10px;
  cursor: pointer;
  display: inline-block;
}
@media all and (max-width: 1024px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-terms.projectgroup span.group {
    padding: 4px 20px;
  }
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text h2.project-title {
  font: normal normal 300 61px/121% Montserrat !important;
}
@media all and (max-width: 1440px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text h2.project-title {
    font: normal normal 300 52px/121% Montserrat !important;
  }
}
@media all and (max-width: 1200px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text h2.project-title {
    font: normal normal 300 49px/121% Montserrat !important;
  }
}
@media all and (max-width: 1024px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text h2.project-title {
    font: normal normal 300 46px/121% Montserrat !important;
  }
}
@media all and (max-width: 768px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text h2.project-title {
    font: normal normal 300 40px/121% Montserrat !important;
  }
}
@media all and (max-width: 430px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text h2.project-title {
    font: normal normal 300 34px/121% Montserrat !important;
  }
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-subtitle {
  font: normal normal 300 30px/121% Montserrat;
  margin-bottom: 30px;
}
@media all and (max-width: 1440px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-subtitle {
    font: normal normal 300 26px/121% Montserrat !important;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 1024px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-subtitle {
    font: normal normal 300 24px/121% Montserrat !important;
  }
}
@media all and (max-width: 430px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-subtitle {
    font: normal normal 300 20px/121% Montserrat !important;
  }
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-dec {
  font: normal normal 400 22px/121% Montserrat;
  color: #fff;
  font: normal normal 400 24px/121% Montserrat !important;
  margin-bottom: 68px;
  margin-right: 15%;
}
@media all and (max-width: 1024px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-dec {
    font: normal normal 400 20px/121% Montserrat;
  }
}
@media all and (max-width: 1440px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-dec {
    margin-right: 0;
    margin-bottom: 48px;
  }
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-dec a {
  color: #fff;
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-dec a:hover {
  color: #cbfe7f;
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-dec ul {
  list-style-type: none;
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-terms.reference-service {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-terms.reference-service span, .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-terms.reference-service a {
  border: 1px solid #ffffff;
  border-radius: 40px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-out;
  font: normal normal normal 15px/122% Montserrat;
  white-space: nowrap;
  padding: 4px 10px;
}
@media all and (max-width: 480px) {
  .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-terms.reference-service span, .single-ct_references #page .standard-page-content-wrapper .reference-content .reference-text .project-terms.reference-service a {
    font-size: 15px;
  }
}
.single-ct_references #page .standard-page-content-wrapper .browser-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 68px;
}
.single-ct_references #page .standard-page-content-wrapper .browser-navigation a {
  font-size: 25px;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
}
@media all and (max-width: 540px) {
  .single-ct_references #page .standard-page-content-wrapper .browser-navigation a {
    font-size: 20px;
  }
}
.single-ct_references #page .standard-page-content-wrapper .browser-navigation .prev-link a {
  position: relative;
  padding-left: 70px;
}
@media all and (max-width: 540px) {
  .single-ct_references #page .standard-page-content-wrapper .browser-navigation .prev-link a {
    padding-left: 50px;
  }
}
.single-ct_references #page .standard-page-content-wrapper .browser-navigation .prev-link a::before {
  content: "";
  background: url("../img/arrow-up.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  width: 48px;
  height: 48px;
  display: block;
  position: absolute;
  top: -10px;
  transform: rotate(270deg);
  border: 2px solid #fff;
  border-radius: 50%;
}
@media all and (max-width: 540px) {
  .single-ct_references #page .standard-page-content-wrapper .browser-navigation .prev-link a::before {
    width: 36px;
    height: 36px;
    top: -5px;
  }
}
.single-ct_references #page .standard-page-content-wrapper .browser-navigation .next-link a {
  position: relative;
  padding-right: 70px;
}
.single-ct_references #page .standard-page-content-wrapper .browser-navigation .next-link a::before {
  content: "";
  background: url("../img/arrow-up.svg");
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  width: 48px;
  height: 48px;
  display: block;
  position: absolute;
  top: -10px;
  right: 0;
  transform: rotate(90deg);
  border: 2px solid #fff;
  border-radius: 50%;
}
@media all and (max-width: 540px) {
  .single-ct_references #page .standard-page-content-wrapper .browser-navigation .next-link a::before {
    width: 36px;
    height: 36px;
    top: -5px;
  }
}

.page-template-page-locations #page {
  padding-bottom: 1260px;
}
.page-template-page-locations #page .locations-info-wrapper {
  display: grid;
  grid-template-columns: 50% 41%;
  grid-template-rows: repeat(1, auto);
  grid-auto-rows: auto;
  grid-column-gap: 9%;
  grid-row-gap: 0;
  margin-bottom: 182px;
}
@media all and (max-width: 1024px) {
  .page-template-page-locations #page .locations-info-wrapper {
    grid-template-columns: 100%;
    margin-bottom: 140px;
  }
}
@media all and (max-width: 1024px) {
  .page-template-page-locations #page .locations-info-wrapper img {
    width: 100%;
  }
}
.page-template-page-locations #page .locations-info-wrapper .locations-heading {
  font: normal normal 300 63px/121% Montserrat;
  color: #fff;
  margin-bottom: 70px;
}
@media all and (max-width: 1300px) {
  .page-template-page-locations #page .locations-info-wrapper .locations-heading {
    font: normal normal 300 54px/121% Montserrat;
  }
}
@media all and (max-width: 1024px) {
  .page-template-page-locations #page .locations-info-wrapper .locations-heading {
    font: normal normal 300 48px/121% Montserrat;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-locations #page .locations-info-wrapper .locations-heading {
    font: normal normal 300 42px/121% Montserrat;
  }
}
@media all and (max-width: 430px) {
  .page-template-page-locations #page .locations-info-wrapper .locations-heading {
    font: normal normal 300 36px/121% Montserrat;
  }
}
@media all and (max-width: 1024px) {
  .page-template-page-locations #page .locations-info-wrapper .locations-heading {
    margin-bottom: 68px;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-locations #page .locations-info-wrapper .locations-heading {
    margin-bottom: 58px;
  }
}
@media all and (max-width: 400px) {
  .page-template-page-locations #page .locations-info-wrapper .locations-heading {
    margin-bottom: 38px;
  }
}
.page-template-page-locations #page .locations-info-wrapper .locations_desc {
  margin-bottom: 136px;
}
.page-template-page-locations #page .locations-info-wrapper .locations_desc p {
  font-size: 28px !important;
  line-height: 121.42% !important;
}
@media all and (max-width: 1500px) {
  .page-template-page-locations #page .locations-info-wrapper .locations_desc p {
    font-size: 1.85vw;
  }
}
@media all and (max-width: 1024px) {
  .page-template-page-locations #page .locations-info-wrapper .locations_desc p {
    margin-bottom: 100px;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-locations #page .locations-info-wrapper .locations_desc p {
    margin-bottom: 36px;
    margin-top: 46px;
    font-size: 22px !important;
  }
}
.page-template-page-locations #page .locations-wrapper .locations-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 73px;
  align-items: center;
}
@media all and (max-width: 880px) {
  .page-template-page-locations #page .locations-wrapper .locations-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 45px;
  }
}
.page-template-page-locations #page .locations-wrapper .locations-header h2 {
  font: normal normal 300 63px/121% Montserrat;
  color: #fff;
}
@media all and (max-width: 1300px) {
  .page-template-page-locations #page .locations-wrapper .locations-header h2 {
    font: normal normal 300 54px/121% Montserrat;
  }
}
@media all and (max-width: 1024px) {
  .page-template-page-locations #page .locations-wrapper .locations-header h2 {
    font: normal normal 300 48px/121% Montserrat;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-locations #page .locations-wrapper .locations-header h2 {
    font: normal normal 300 42px/121% Montserrat;
  }
}
@media all and (max-width: 430px) {
  .page-template-page-locations #page .locations-wrapper .locations-header h2 {
    font: normal normal 300 36px/121% Montserrat;
  }
}
.page-template-page-locations #page .locations-wrapper .locations-header .button-group {
  gap: 17px;
  display: flex;
}
@media all and (max-width: 880px) {
  .page-template-page-locations #page .locations-wrapper .locations-header .button-group {
    padding-top: 25px;
  }
}
@media all and (max-width: 540px) {
  .page-template-page-locations #page .locations-wrapper .locations-header .button-group {
    flex-wrap: wrap;
    gap: 7px;
  }
}
.page-template-page-locations #page .locations-wrapper .locations-header .button-group button {
  height: 45px;
  border-radius: 40px;
  text-align: center;
  font: normal normal normal 27px/122% Montserrat;
  color: #000;
  text-transform: uppercase;
  padding: 6px 31px;
  margin-left: 10px;
  cursor: pointer;
  background: #9792E3;
  opacity: 0.6;
  transition: opacity 0.2s ease-out;
  border: 0;
}
@media all and (max-width: 1300px) {
  .page-template-page-locations #page .locations-wrapper .locations-header .button-group button {
    font: normal normal normal 20px/122% Montserrat;
    padding: 4px 25px;
    margin-left: 6px;
  }
}
.page-template-page-locations #page .locations-wrapper .locations-header .button-group button:first-child {
  margin-left: 0;
}
.page-template-page-locations #page .locations-wrapper .locations-header .button-group button.active, .page-template-page-locations #page .locations-wrapper .locations-header .button-group button:hover {
  opacity: 1;
}
.page-template-page-locations #page .locations-wrapper .filter-grid {
  margin-left: -8px;
  margin-right: -8px;
}
@media all and (max-width: 768px) {
  .page-template-page-locations #page .locations-wrapper .filter-grid {
    margin-left: 0;
    margin-right: 0;
  }
}
.page-template-page-locations #page .locations-wrapper .filter-grid .filter-item {
  width: calc(50% - 16px);
  margin: 0 8px 73px;
}
@media all and (max-width: 1024px) {
  .page-template-page-locations #page .locations-wrapper .filter-grid .filter-item {
    margin: 0 8px 50px;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-locations #page .locations-wrapper .filter-grid .filter-item {
    width: 100%;
    margin: 0 0 50px;
  }
}
.page-template-page-locations #page .locations-wrapper .filter-grid .filter-item h2.location-title {
  text-align: left;
  font: normal normal 300 61px/122% Montserrat !important;
  color: #fff;
  margin-top: 68px;
}
@media all and (max-width: 1024px) {
  .page-template-page-locations #page .locations-wrapper .filter-grid .filter-item h2.location-title {
    font: normal normal 300 40px/122% Montserrat;
    margin-top: 40px;
  }
}
@media all and (max-width: 768px) {
  .page-template-page-locations #page .locations-wrapper .filter-grid .filter-item h2.location-title {
    font: normal normal 300 32px/122% Montserrat;
  }
}
@media all and (max-width: 560px) {
  .page-template-page-locations #page .locations-wrapper .filter-grid .filter-item h2.location-title {
    font: normal normal 300 27px/122% Montserrat;
  }
}
.page-template-page-locations #page .locations-wrapper .filter-grid .filter-item .location-text {
  text-align: left;
  font: normal normal 300 24px/121% Montserrat;
  color: #fff;
  margin-top: 6px !important;
  padding-bottom: 10px;
}
@media all and (max-width: 768px) {
  .page-template-page-locations #page .locations-wrapper .filter-grid .filter-item .location-text {
    font: normal normal 300 19px/121% Montserrat;
  }
}
.page-template-page-locations #page .locations-wrapper .filter-grid .filter-item .location-externlink a {
  border: 2px solid #ffffff;
  border-radius: 40px;
  text-align: center;
  font: normal normal normal 25px/122% Montserrat;
  text-transform: uppercase;
  color: #ffffff;
  padding: 6px 44px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-out;
  font-size: 25px;
  margin-top: 25px;
}
.page-template-page-locations #page .locations-wrapper .filter-grid .filter-item .location-externlink a:hover {
  cursor: pointer;
  background: #fff;
  color: #000;
}
@media all and (max-width: 480px) {
  .page-template-page-locations #page .locations-wrapper .filter-grid .filter-item .location-externlink a {
    font: normal normal normal 20px/122% Montserrat;
  }
}
@media all and (max-width: 430px) {
  .page-template-page-locations #page .locations-wrapper .filter-grid .filter-item .location-externlink a {
    font-size: 20px;
    padding: 6px 25px;
  }
}

.search-results h1 {
  margin-bottom: 73px;
}
.search-results .search-results .result-item {
  width: calc(50% - 19px);
  margin: 0 8px 60px;
}
@media (max-width: 500px) {
  .search-results .search-results .result-item {
    width: 100%;
    margin: 0 0 30px;
  }
}
.search-results .search-results .result-item h2.result-heading {
  font: normal normal 300 55px/122% Montserrat;
  margin-top: 16px;
}
.search-results .search-results .result-item h2.result-heading a {
  color: #fff;
  text-decoration: none;
}
.search-results .search-results .result-item p.result-text {
  margin-top: 5px !important;
}
.search-results .search-results .result-item p.result-text a {
  text-decoration: none !important;
  font-size: 22px;
}
.search-results .posts-navigation {
  margin-top: 60px;
}
.search-results .posts-navigation .nav-links .nav-previous a, .search-results .posts-navigation .nav-links .nav-next a {
  position: relative;
  padding-left: 0px;
  font-size: 25px;
  color: #fff;
  font-weight: 300;
  text-decoration: none;
  width: 48px;
  height: 48px;
  display: inline-block;
}
.search-results .posts-navigation .nav-links .nav-previous a::before, .search-results .posts-navigation .nav-links .nav-next a::before {
  content: "";
  background: url(../img/arrow-up.svg);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  width: 48px;
  height: 48px;
  display: block;
  position: absolute;
  top: 0;
  transform: rotate(270deg);
  border: 2px solid #fff;
  border-radius: 50%;
}
.search-results .posts-navigation .nav-links .nav-previous a:hover, .search-results .posts-navigation .nav-links .nav-next a:hover {
  color: #cbfe7f;
}
.search-results .posts-navigation .nav-links .nav-next a::before {
  transform: rotate(90deg);
}

footer.site-footer {
  padding: 0 140px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media all and (max-width: 1300px) {
  footer.site-footer {
    padding: 0 100px;
  }
}
@media all and (max-width: 1024px) {
  footer.site-footer {
    padding: 0 70px;
  }
}
@media all and (max-width: 768px) {
  footer.site-footer {
    padding: 0 40px;
  }
}
@media all and (max-width: 430px) {
  footer.site-footer {
    padding: 0 25px;
  }
}
footer.site-footer #footer-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media all and (max-width: 768px) {
  footer.site-footer #footer-container {
    flex-direction: column;
  }
}
footer.site-footer #footer-container #footer-left {
  width: 40%;
}
@media all and (max-width: 1024px) {
  footer.site-footer #footer-container #footer-left {
    width: 45%;
  }
}
@media all and (max-width: 768px) {
  footer.site-footer #footer-container #footer-left {
    width: 100%;
  }
}
footer.site-footer #footer-container #footer-left #contact-area {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-headline {
  font: normal normal 300 63px/121% Montserrat;
  color: #fff;
  color: #ffffff;
  margin-bottom: 110px;
}
@media all and (max-width: 1300px) {
  footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-headline {
    font: normal normal 300 54px/121% Montserrat;
  }
}
@media all and (max-width: 1024px) {
  footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-headline {
    font: normal normal 300 48px/121% Montserrat;
  }
}
@media all and (max-width: 768px) {
  footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-headline {
    font: normal normal 300 42px/121% Montserrat;
  }
}
@media all and (max-width: 430px) {
  footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-headline {
    font: normal normal 300 36px/121% Montserrat;
  }
}
@media all and (max-width: 1024px) {
  footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-headline {
    margin-bottom: 80px;
  }
}
@media all and (max-width: 768px) {
  footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-headline {
    margin-bottom: 60px;
  }
}
footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-text p, footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-text a {
  font: normal normal normal 28px/121% Montserrat;
  color: #FFFFFF;
  margin-bottom: 40px;
}
@media all and (max-width: 1300px) {
  footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-text p, footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-text a {
    font: normal normal normal 25px/121% Montserrat;
  }
}
@media all and (max-width: 1024px) {
  footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-text p, footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-text a {
    font: normal normal normal 22px/121% Montserrat;
  }
}
@media all and (max-width: 768px) {
  footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-text p, footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-text a {
    font: normal normal normal 20px/121% Montserrat;
  }
}
@media all and (max-width: 430px) {
  footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-text p, footer.site-footer #footer-container #footer-left #contact-area #contact-area-upper .contact-text a {
    font: normal normal normal 18px/121% Montserrat;
  }
}
footer.site-footer #footer-container #footer-left #contact-area .contact-btn {
  height: 49px;
}
footer.site-footer #footer-container #footer-left #contact-area .contact-btn a {
  border: 2px solid #ffffff;
  border-radius: 40px;
  text-align: center;
  font: normal normal normal 25px/122% Montserrat;
  text-transform: uppercase;
  color: #ffffff;
  padding: 6px 44px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease-out;
}
footer.site-footer #footer-container #footer-left #contact-area .contact-btn a:hover {
  cursor: pointer;
  background: #fff;
  color: #000;
}
@media all and (max-width: 480px) {
  footer.site-footer #footer-container #footer-left #contact-area .contact-btn a {
    font: normal normal normal 20px/122% Montserrat;
  }
}
footer.site-footer #footer-container #footer-right {
  width: 50%;
  outline: none;
}
@media all and (max-width: 768px) {
  footer.site-footer #footer-container #footer-right {
    width: 100%;
  }
}
footer.site-footer #footer-container #footer-right #hashtag {
  text-align: center;
  font: normal normal 300 48px/120% Montserrat;
  color: #FFFFFF;
  margin-bottom: 110px;
  padding-top: 17px;
}
@media all and (max-width: 768px) {
  footer.site-footer #footer-container #footer-right #hashtag {
    margin-bottom: 60px;
    padding-top: 60px;
  }
}
@media all and (max-width: 480px) {
  footer.site-footer #footer-container #footer-right #hashtag {
    font: normal normal 300 36px/120% Montserrat;
  }
}
footer.site-footer #footer-container #footer-right #contact-form .wpcf7-form-control-wrap {
  width: 100%;
}
footer.site-footer #footer-container #footer-right #contact-form input, footer.site-footer #footer-container #footer-right #contact-form textarea {
  border: 2px solid #FFFFFF;
  border-radius: 11px;
  font: normal normal normal 27px/33px Montserrat;
  color: #FFFFFF;
  background: transparent;
  padding: 6px 28px;
  width: 100%;
  margin-bottom: 15px;
}
@media all and (max-width: 1300px) {
  footer.site-footer #footer-container #footer-right #contact-form input, footer.site-footer #footer-container #footer-right #contact-form textarea {
    font: normal normal normal 25px/121% Montserrat;
  }
}
@media all and (max-width: 1024px) {
  footer.site-footer #footer-container #footer-right #contact-form input, footer.site-footer #footer-container #footer-right #contact-form textarea {
    font: normal normal normal 22px/121% Montserrat;
  }
}
@media all and (max-width: 768px) {
  footer.site-footer #footer-container #footer-right #contact-form input, footer.site-footer #footer-container #footer-right #contact-form textarea {
    font: normal normal normal 20px/121% Montserrat;
  }
}
@media all and (max-width: 430px) {
  footer.site-footer #footer-container #footer-right #contact-form input, footer.site-footer #footer-container #footer-right #contact-form textarea {
    font: normal normal normal 18px/121% Montserrat;
  }
}
footer.site-footer #footer-container #footer-right #contact-form input::-webkit-input-placeholder, footer.site-footer #footer-container #footer-right #contact-form textarea::-webkit-input-placeholder {
  color: #ffffff;
}
footer.site-footer #footer-container #footer-right #contact-form input:-moz-placeholder, footer.site-footer #footer-container #footer-right #contact-form textarea:-moz-placeholder { /* Firefox 18- */
  color: #ffffff;
}
footer.site-footer #footer-container #footer-right #contact-form input::-moz-placeholder, footer.site-footer #footer-container #footer-right #contact-form textarea::-moz-placeholder { /* Firefox 19+ */
  color: #ffffff;
}
footer.site-footer #footer-container #footer-right #contact-form input:-ms-input-placeholder, footer.site-footer #footer-container #footer-right #contact-form textarea:-ms-input-placeholder {
  color: #ffffff;
}
footer.site-footer #footer-container #footer-right #contact-form input[type=checkbox] {
  text-align: left;
  margin-bottom: 0;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  appearance: none;
  padding: 0;
  background: #fff;
}
footer.site-footer #footer-container #footer-right #contact-form input[type=checkbox]:checked::before {
  content: "";
  color: #000;
  width: 18px;
  height: 18px;
  display: block;
  background: url("../img/check.svg");
  background-size: 100%;
}
footer.site-footer #footer-container #footer-right #contact-form .wpcf7-acceptance {
  margin-bottom: 10px;
  display: block;
}
footer.site-footer #footer-container #footer-right #contact-form .wpcf7-acceptance .wpcf7-list-item label {
  display: grid;
  grid-template-columns: 40px 1fr;
}
footer.site-footer #footer-container #footer-right #contact-form .wpcf7-acceptance .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 14px;
  line-height: 128.5%;
}
footer.site-footer #footer-container #footer-right #contact-form .wpcf7-checkbox .wpcf7-list-item {
  display: grid;
  grid-template-columns: 49px 1fr;
}
footer.site-footer #footer-container #footer-right #contact-form .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
  font-size: 14px;
  margin-top: 5px;
  line-height: 128.5%;
}
footer.site-footer #footer-container #footer-right #contact-form .wpcf7-list-item {
  margin-left: 0;
}
footer.site-footer #footer-container #footer-right #contact-form .submit-line {
  margin-top: 80px;
  text-align: right;
}
@media all and (max-width: 1024px) {
  footer.site-footer #footer-container #footer-right #contact-form .submit-line {
    margin-top: 40px;
  }
}
footer.site-footer #footer-container #footer-right #contact-form .submit-line .wpcf7-submit {
  width: auto;
  border-radius: 40px;
  margin-bottom: 0 !important;
  transition: all 0.2s ease-out;
}
footer.site-footer #footer-container #footer-right #contact-form .submit-line .wpcf7-submit:hover {
  cursor: pointer;
  background: #fff;
  color: #000;
}
footer.site-footer #footer-container #footer-right #contact-form .submit-line .wpcf7-spinner {
  display: none;
}
footer.site-footer #footer-container #footer-right #contact-form .wpcf7-form-control-wrap {
  position: relative;
  padding-bottom: 30px;
  display: inline-block;
}
footer.site-footer #footer-container #footer-right #contact-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
}
footer.site-footer #footer-container #footer-right #contact-form a {
  color: #ffffff;
  transition: all 0.2s ease-out;
}
footer.site-footer #footer-container #footer-right #contact-form a:hover {
  color: #cbfe7f;
  outline: none;
}
footer.site-footer #footer-menues {
  display: flex;
  justify-content: space-between;
  margin-top: 190px;
  margin-bottom: 90px;
}
@media all and (max-width: 1400px) {
  footer.site-footer #footer-menues {
    margin-left: -50px;
    margin-right: -50px;
  }
}
@media all and (max-width: 1200px) {
  footer.site-footer #footer-menues {
    flex-direction: column;
    margin-top: 120px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}
footer.site-footer #footer-menues ul {
  list-style-type: none;
}
footer.site-footer #footer-menues ul li {
  display: inline;
  margin-right: 25px;
}
@media all and (max-width: 1300px) {
  footer.site-footer #footer-menues ul li {
    margin-right: 15px;
  }
}
@media all and (max-width: 768px) {
  footer.site-footer #footer-menues ul li {
    margin-right: 10px;
  }
}
@media all and (max-width: 500px) {
  footer.site-footer #footer-menues ul li {
    display: block;
    margin: 0;
  }
}
footer.site-footer #footer-menues ul li:last-child {
  margin-right: 0;
}
footer.site-footer #footer-menues ul li a {
  font: normal normal 400 20px/120% Montserrat;
  color: #FFFFFF;
  text-transform: uppercase;
  text-decoration: none;
}
@media all and (max-width: 1600px) {
  footer.site-footer #footer-menues ul li a {
    font: normal normal 400 15px/120% Montserrat;
  }
}
@media all and (max-width: 480px) {
  footer.site-footer #footer-menues ul li a {
    font: normal normal 400 15px/120% Montserrat;
  }
}
footer.site-footer #footer-menues .glut-left-menu {
  width: 50%;
}
@media all and (max-width: 1200px) {
  footer.site-footer #footer-menues .glut-left-menu {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}
@media all and (max-width: 768px) {
  footer.site-footer #footer-menues .glut-left-menu {
    text-align: left;
  }
}
footer.site-footer #footer-menues .glut-right-menu {
  width: 50%;
  text-align: center;
}
@media all and (max-width: 1400px) {
  footer.site-footer #footer-menues .glut-right-menu {
    text-align: right;
  }
}
@media all and (max-width: 1200px) {
  footer.site-footer #footer-menues .glut-right-menu {
    width: 100%;
    text-align: center;
  }
}
@media all and (max-width: 768px) {
  footer.site-footer #footer-menues .glut-right-menu {
    text-align: left;
  }
}
footer.site-footer #footer-menues .glut-right-menu ul li {
  margin-right: 65px;
}
@media all and (max-width: 1300px) {
  footer.site-footer #footer-menues .glut-right-menu ul li {
    margin-right: 35px;
  }
}
@media all and (max-width: 768px) {
  footer.site-footer #footer-menues .glut-right-menu ul li {
    margin-right: 10px;
  }
}
@media all and (max-width: 480px) {
  footer.site-footer #footer-menues .glut-right-menu ul li {
    margin: 0;
  }
}
footer.site-footer #footer-menues .glut-right-menu ul li:last-child {
  margin-right: 0;
}

#backtotop {
  position: fixed;
  right: 67px;
  bottom: 78px;
}
@media all and (max-width: 1400px) {
  #backtotop {
    right: 25px;
    bottom: 25px;
  }
}
@media all and (max-width: 1024px) {
  #backtotop {
    right: 10px;
  }
}
@media all and (max-width: 768px) {
  #backtotop {
    right: 5px;
  }
}
#backtotop a {
  border: 2px solid #FFFFFF;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background-image: url("../img/arrow-up.svg");
  background-color: #000;
  background-repeat: no-repeat;
  background-size: 24px 24px;
  background-position: center;
  display: block;
}
@media all and (max-width: 768px) {
  #backtotop a {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-size: 18px;
  }
}

.grecaptcha-badge {
  display: none !important;
}

.fade-in {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.fade-in.visible {
  opacity: 1;
}

.move-in {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1.5s ease-in-out, transform 0.5s ease-in-out;
}
.move-in.visible {
  transform: translateY(0);
  opacity: 1;
}

#cmplz-cookiebanner-container .cmplz-cookiebanner {
  background-color: #000;
  color: #fff;
  background-image: url("../img/glut_bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #252424;
  font-family: "Montserrat", sans-serif;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-header .cmplz-logo img {
  display: none;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-header .cmplz-title {
  color: #fff !important;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-header .cmplz-close {
  border-color: #fff !important;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-header .cmplz-close svg path {
  fill: #fff !important;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-body .cmplz-message p {
  color: #fff;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-body .cmplz-message p a {
  color: #fff !important;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
  border-radius: 25px;
  padding: 5px 27px 4px;
  border: 2px solid #fff;
  background-color: #000 !important;
  color: #fff !important;
  font-family: "Montserrat", sans-serif;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept {
  background-color: #fff !important;
  color: #000 !important;
}
#cmplz-cookiebanner-container .cmplz-cookiebanner .cmplz-documents ul li a {
  color: #fff;
}

.tax-reference-group .archive-headline, .tax-reference-service .archive-headline {
  font: normal normal 300 63px/121% Montserrat;
  color: #fff;
  margin-bottom: 73px;
}
.tax-reference-group #projekte .project-grid, .tax-reference-service #projekte .project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 16px;
}
@media all and (max-width: 768px) {
  .tax-reference-group #projekte .project-grid, .tax-reference-service #projekte .project-grid {
    grid-template-columns: 1fr;
  }
}
.tax-reference-group #projekte .project-grid .filter-item, .tax-reference-service #projekte .project-grid .filter-item {
  margin-bottom: 60px;
}
.tax-reference-group #projekte .project-grid .filter-item a, .tax-reference-service #projekte .project-grid .filter-item a {
  text-decoration: none;
}
.tax-reference-group #projekte .project-grid .filter-item a h2.project-title, .tax-reference-service #projekte .project-grid .filter-item a h2.project-title {
  text-align: left;
  font: normal normal 300 55px/122% Montserrat;
  color: #fff;
  margin-top: 16px;
  hyphens: auto;
}
@media all and (max-width: 768px) {
  .tax-reference-group #projekte .project-grid .filter-item a h2.project-title, .tax-reference-service #projekte .project-grid .filter-item a h2.project-title {
    font: normal normal 300 32px/122% Montserrat;
  }
}
@media all and (max-width: 560px) {
  .tax-reference-group #projekte .project-grid .filter-item a h2.project-title, .tax-reference-service #projekte .project-grid .filter-item a h2.project-title {
    font: normal normal 300 27px/122% Montserrat;
  }
}
.tax-reference-group #projekte .project-grid .filter-item a h3.project-subtitle, .tax-reference-service #projekte .project-grid .filter-item a h3.project-subtitle {
  text-align: left;
  color: rgb(255, 255, 255);
  font: 300 22px/121% Montserrat;
}

/*# sourceMappingURL=glut-styles.css.map */
