:root {
  --forest-green: #378c3c;
  --dark-slate-grey-2: #3d3d3d;
  --dark-orange-2: #f28322;
  --olive-drab: #6d8c3f;
  --white: white;
  --dark-orange: #f29422;
  --dim-grey: #6b6b6b;
  --black: black;
  --dark-slate-grey: #0d0d0d;
  --white-smoke: #e9e9e9;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #1a1b1f;
  font-family: "Exo 2 Regular Webfont", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 44px;
  font-weight: 400;
  line-height: 62px;
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 36px;
  font-weight: 400;
  line-height: 50px;
}

h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 34px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

p {
  margin-bottom: 10px;
}

a {
  color: #1a1b1f;
  text-decoration: underline;
  transition: opacity .2s;
  display: block;
}

a:hover {
  color: #32343a;
}

a:active {
  color: #43464d;
}

ul {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 40px;
  list-style-type: disc;
}

li {
  margin-bottom: 10px;
}

img {
  display: block;
}

label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-top: 25px;
  margin-bottom: 25px;
  padding: 15px 30px;
  font-size: 20px;
  line-height: 34px;
}

figcaption {
  opacity: 1;
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  line-height: 26px;
}

.divider {
  width: 80%;
  height: 1px;
  background-color: #dfdfdf;
  margin-left: auto;
  margin-right: auto;
}

.styleguide-content-wrap {
  text-align: center;
}

.section {
  margin-bottom: 0;
  margin-left: 30px;
  margin-right: 30px;
  padding-bottom: 20px;
}

.section.cc-cta {
  background-color: #f4f4f4;
  padding-left: 80px;
  padding-right: 80px;
}

.section.cc-store-home-wrap {
  margin-top: 100px;
}

.section.cc-store-home-wrap._2 {
  margin-top: 40px;
  padding-bottom: 0;
}

.styleguide-block {
  text-align: left;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 80px;
  display: block;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.paragraph-tiny {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-size: 12px;
  line-height: 20px;
}

.paragraph-bigger {
  opacity: 1;
  margin-bottom: 10px;
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 34px;
}

.paragraph-bigger.cc-bigger-light {
  opacity: .6;
}

.paragraph-bigger.cc-bigger-white-light {
  opacity: 1;
  color: var(--forest-green);
  letter-spacing: .9px;
  text-transform: uppercase;
  padding-left: 1px;
  font-family: "Exo 2 Regular Webfont", sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  border-radius: 0;
  padding: 12px 25px;
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .4s, opacity .4s, color .4s;
}

.button:hover {
  color: #fff;
  background-color: #32343a;
}

.button:active {
  background-color: #43464d;
}

.button.cc-jumbo-button {
  padding: 16px 35px;
  font-size: 14px;
  line-height: 26px;
}

.button.cc-jumbo-button.cc-jumbo-white {
  color: #000;
  background-color: #fff;
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  display: none;
}

.button.cc-jumbo-button.cc-jumbo-white:hover {
  background-color: #f1f1f1;
}

.button.cc-jumbo-button.cc-jumbo-white:active {
  background-color: #e1e1e1;
}

.button.cc-contact-us {
  z-index: 5;
  background-color: var(--dark-slate-grey-2);
  margin-top: 3px;
  padding-top: 14px;
  padding-bottom: 11px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.button.cc-contact-us:hover {
  background-color: var(--dark-orange-2);
}

.button.cc-contact-us.w--current {
  background-color: var(--dark-slate-grey-2);
}

.button.cc-white-button {
  color: #202020;
  background-color: #fff;
  padding: 16px 35px;
  font-size: 14px;
  line-height: 26px;
}

.button.cc-white-button:hover {
  background-color: rgba(255, 255, 255, .8);
}

.button.cc-white-button:active {
  background-color: rgba(255, 255, 255, .9);
}

.label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}

.label.cc-styleguide-label {
  margin-bottom: 25px;
  font-family: Tahoma, Verdana, Segoe, sans-serif;
}

.label.cc-light {
  opacity: 1;
  color: #ed7908;
  letter-spacing: 3px;
  font-family: "Exo 2 Regular Webfont", sans-serif;
  font-size: 15px;
  line-height: 21px;
}

.label.cc-light.sub {
  opacity: 1;
  margin-top: 31px;
  margin-bottom: 31px;
}

.label.cc-blog-date {
  opacity: .6;
  margin-top: 20px;
}

.heading-jumbo-tiny {
  color: #2d687e;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
}

.rich-text {
  width: 70%;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

.rich-text p {
  opacity: .6;
  margin-top: 15px;
  margin-bottom: 25px;
}

.rich-text figcaption {
  opacity: .6;
}

.rich-text figure {
  margin-top: 25px;
  padding-bottom: 20px;
}

.paragraph-light {
  opacity: .6;
  color: #000;
  font-family: "Exo 2 Regular Webfont", sans-serif;
  font-size: 17px;
  font-weight: 400;
}

.heading-jumbo {
  color: var(--dark-orange-2);
  text-align: left;
  letter-spacing: 1px;
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 5px;
  font-family: "Exo 2 Bold Webfont", sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 49px;
}

.heading-jumbo-small {
  color: var(--olive-drab);
  letter-spacing: 1px;
  text-transform: none;
  margin-top: 10px;
  margin-bottom: 15px;
  font-family: "Exo 2 Regular Webfont", sans-serif;
  font-size: 33px;
  font-weight: 400;
  line-height: 44px;
}

.styleguide-button-wrap {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Tahoma, Verdana, Segoe, sans-serif;
}

.styleguide-header-wrap {
  height: 460px;
  color: #fff;
  text-align: center;
  background-color: #1a1b1f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

.paragraph-small {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-size: 14px;
  line-height: 26px;
}

.logo-link {
  z-index: 1;
  width: auto;
  margin-left: 27px;
  margin-right: 27px;
}

.logo-link:hover {
  opacity: .8;
}

.logo-link:active {
  opacity: .7;
}

.logo-link.mobile {
  display: none;
}

.menu {
  z-index: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.navigation-wrap {
  height: 100%;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.navigation {
  width: 100%;
  height: 110px;
  background-color: var(--white);
  align-items: center;
  padding: 30px 50px;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.navigation-item {
  opacity: 1;
  color: var(--dark-slate-grey-2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-top: 9px;
  padding-bottom: 9px;
  font-family: "Exo 2 Bold Webfont", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  transition-property: all;
  transition-duration: .35s;
}

.navigation-item:hover {
  opacity: .9;
  color: var(--dark-orange-2);
}

.navigation-item:active {
  opacity: .8;
}

.navigation-item.w--current {
  opacity: 1;
  color: var(--olive-drab);
  font-weight: 600;
}

.navigation-item.w--current:hover {
  opacity: .8;
}

.navigation-item.w--current:active {
  opacity: .7;
  color: #32343a;
}

.logo-image {
  display: block;
}

.navigation-items {
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-wrap {
  justify-content: center;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.webflow-link {
  opacity: .5;
  align-items: center;
  text-decoration: none;
  transition: opacity .4s;
  display: flex;
}

.webflow-link:hover {
  opacity: 1;
}

.webflow-link:active {
  opacity: .8;
}

.webflow-logo-tiny {
  margin-top: -2px;
  margin-right: 8px;
}

.cta-text {
  width: 70%;
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
}

.cta-wrap {
  text-align: center;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 120px;
  display: flex;
}

.intro-header {
  height: 32vw;
  color: #fff;
  background-color: #f4f4f4;
  background-image: url('../images/sky-dorn.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 98px;
  display: flex;
  position: relative;
}

.intro-header.cc-subpage {
  height: 480px;
  color: #fff;
  background-color: #000;
  background-image: none;
}

.intro-header.unterseite {
  background-image: url('../images/solar-roof.jpg');
  background-position: 50%;
  background-attachment: scroll;
  margin-bottom: 60px;
}

.intro-header.unterseite.impress {
  height: 15vw;
  background-image: url('../images/solar-roof-orange.jpg');
}

.intro-header.waermepumpen {
  background-image: url('../images/aroTHERM-Split-Szene_print.jpg');
  background-position: 50% 74%;
  background-attachment: scroll;
  margin-bottom: 60px;
}

.intro-content {
  width: 70%;
  max-width: 1140px;
  text-align: center;
}

.intro-content.cc-homepage {
  width: auto;
  background-color: #fff;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-bottom: 0;
  padding: 0;
}

.intro-content.cc-homepage.start {
  width: 50%;
}

.motto-wrap {
  width: 80%;
  text-align: center;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading-wrap {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 80px;
}

.status-message {
  color: #fff;
  text-align: center;
  background-color: #202020;
  padding: 9px 30px;
  font-size: 14px;
  line-height: 26px;
}

.status-message.cc-error-message {
  background-color: #db4b68;
}

.status-message.cc-no-data {
  width: 70%;
  margin: 100px auto;
  display: block;
}

.details-wrap {
  margin-bottom: 30px;
}

.text-field {
  border: 1px solid #e4e4e4;
  border-radius: 0;
  margin-bottom: 18px;
  padding: 21px 20px;
  font-size: 14px;
  line-height: 26px;
  transition: border-color .4s;
}

.text-field:hover {
  border-color: #e3e6eb;
}

.text-field:active, .text-field:focus {
  border-color: #43464d;
}

.text-field::-ms-input-placeholder {
  color: rgba(50, 52, 58, .4);
}

.text-field::placeholder {
  color: rgba(50, 52, 58, .4);
}

.project-overview-header {
  height: 620px;
  color: #fff;
  background-color: #f4f4f4;
  background-image: url('../images/portfolio-1---wide.svg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  display: flex;
}

.project-overview-header.cc-project-2-header {
  background-image: url('../images/portfolio-2---wide.svg');
  background-position: 50%;
}

.project-overview-header.cc-project-3-header {
  background-image: url('../images/portfolio-3---wide.svg');
  background-size: cover;
}

.project-details-grid {
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 1fr 2fr;
  align-items: start;
  margin-top: 100px;
  margin-bottom: 100px;
}

.project-pics {
  margin-bottom: 120px;
}

.detail-image {
  width: 100%;
  margin-bottom: 30px;
}

.blog-detail-header-wrap {
  width: 70%;
  margin: 60px auto;
}

.detail-header-image {
  width: 100%;
  height: 620px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  margin-bottom: 60px;
  display: block;
}

.detail-header-image.w--current {
  margin-bottom: 60px;
}

.blog-list-wrap {
  margin-bottom: 100px;
}

.blog-item {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.blog-preview-image {
  width: 100%;
  height: 620px;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: cover;
  margin-bottom: 45px;
  transition: opacity .6s;
  display: block;
}

.blog-preview-image:hover {
  opacity: .8;
}

.blog-preview-image:active {
  opacity: .7;
}

.blog-summary-wrap {
  width: 70%;
  text-align: left;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.blog-heading-link {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 46px;
  text-decoration: none;
}

.blog-heading-link:hover {
  opacity: .8;
}

.blog-heading-link:active {
  opacity: .7;
}

.protected-form {
  flex-direction: column;
  display: flex;
}

.protected-wrap {
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 100px;
  display: flex;
}

.protected-heading {
  margin-bottom: 30px;
}

.utility-page-wrap {
  width: 100vw;
  height: 100vh;
  max-height: 100%;
  max-width: 100%;
  color: #fff;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

._404-wrap {
  width: 100%;
  height: 100%;
  background-color: #1a1b1f;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

._404-content-wrap {
  margin-bottom: 20px;
}

.home-content-wrap {
  margin-top: 60px;
  margin-bottom: 60px;
}

.home-section-wrap {
  margin-bottom: 0;
  padding-top: 10px;
}

.about-grid {
  grid-column-gap: 82px;
  grid-row-gap: 30px;
  grid-template: ". ."
  / 2fr 2fr;
  align-items: center;
  margin-bottom: 80px;
}

.about-grid.cc-about-2 {
  grid-template-columns: 2fr 1fr;
  grid-template-areas: ". .";
  margin-bottom: auto;
}

.intro-text {
  width: auto;
  text-align: left;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 14px 33px;
}

.heading {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-size: 40px;
}

.heading-2 {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-size: 32px;
}

.heading-3 {
  font-family: "Exo 2 Bold Webfont", sans-serif;
  font-size: 28px;
  line-height: 32px;
}

.heading-4 {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
}

.heading-5 {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-weight: 400;
}

.paragraph {
  width: auto;
  font-family: "Exo 2 Regular Webfont", sans-serif;
  line-height: 24px;
}

.link {
  color: var(--dark-slate-grey-2);
  font-family: "Exo 2 Regular Webfont", sans-serif;
}

.heading-6 {
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  font-weight: 400;
}

.section-2 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.image-block {
  height: 16vh;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: auto;
  position: relative;
}

.image-block.speicher {
  background-image: url('../images/aroTHERM-Split-Szene_print.jpg');
  background-position: 50% 63%;
  background-size: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.image-block.photovoltaik {
  background-image: url('../images/versoTHERM-plus-und-uniSTOR-plus-Szene_print.jpg');
  background-position: 50% 25%;
  background-size: cover;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.link-block {
  background-color: rgba(0, 0, 0, .25);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all .425s cubic-bezier(.455, .03, .515, .955);
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.link-block:hover {
  background-color: rgba(0, 0, 0, 0);
}

.link-block._2 {
  border-radius: 20px 0 0 20px;
}

.link-block._2:hover {
  background-color: rgba(0, 0, 0, 0);
}

.div-block-2 {
  background-color: var(--dark-orange-2);
  color: var(--white);
  letter-spacing: 1px;
  -webkit-text-stroke-width: 0px;
  text-transform: uppercase;
  padding: 10px 20px;
  font-family: Tahoma, Verdana, Segoe, sans-serif;
  text-decoration: none;
}

.text-block {
  letter-spacing: 3px;
  font-family: "Exo 2 Bold Webfont", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.col {
  flex-flow: column;
  flex: 0 auto;
  align-items: flex-start;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  position: relative;
}

.col.lg-3 {
  width: 25%;
  flex: none;
}

.col.lg-3.sm-1.xs-1 {
  width: 33.3%;
}

.col.lg-3.md-4 {
  width: 33.3%;
  justify-content: center;
}

.no-underline {
  text-decoration: none;
}

.footer-logo-2 {
  margin-bottom: 40px;
}

.footer-links-container {
  flex-direction: column;
  display: flex;
}

.negative-margin {
  margin-left: -18px;
}

.social-media-icon {
  filter: hue-rotate(219deg);
  padding: 8px;
}

.row {
  flex-flow: wrap;
  align-content: stretch;
  align-items: stretch;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.footer-heading {
  margin-bottom: 20px;
  text-decoration: none;
}

.wrapper {
  width: 100%;
  max-width: 1230px;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  display: block;
  top: 0;
  left: 0;
  right: 0;
}

.footer-link {
  opacity: 1;
  color: var(--dark-slate-grey-2);
  cursor: pointer;
  margin-bottom: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: "Exo 2 Regular Webfont", sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: opacity .2s ease-in-out;
}

.footer-link:hover {
  opacity: 1;
}

.footer-link.w--current {
  opacity: 1;
  font-weight: 500;
}

.footer-link.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.heading-7 {
  color: #804baf;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
}

.heading-7.h2 {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 22px;
  line-height: 30px;
}

.heading-7.h2.white {
  color: #fff;
  margin-top: 11px;
  margin-bottom: 0;
  font-family: "Exo 2 Bold Webfont", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.div-block-17 {
  margin-top: -9px;
}

.contact-form-container {
  width: 100%;
  border-radius: 6px;
}

.contact-form-container.card {
  max-width: 1000px;
  background-color: rgba(255, 255, 255, 0);
  border: 1px rgba(9, 106, 208, .2);
  border-radius: 0;
  margin: 0 auto 70px;
  padding: 40px 0 40px 50px;
  position: relative;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, .1);
}

.image-9 {
  float: none;
  filter: brightness(200%);
  margin-right: 0;
  padding-top: 2px;
}

.div-block-12 {
  width: 100%;
  height: 100%;
  border-radius: 20px 0 0 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.div-block-11 {
  width: 90%;
  height: 200px;
  background-color: #202c3b;
  border: 1px solid #ffb000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 20px 20px;
  display: flex;
}

.div-block-11.invert {
  width: auto;
  height: 100px;
  background-color: #b89b57;
  border-style: none;
  justify-content: flex-start;
  align-items: center;
  padding: 17px 12px;
  text-decoration: none;
  transition: all .2s cubic-bezier(.25, .46, .45, .94);
}

.div-block-11.invert:hover {
  background-color: #804baf;
}

.div-block-11.invert.gold {
  background-color: var(--dark-slate-grey-2);
  background-image: none;
  border-radius: 20px 0 0 20px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 0;
  transition: all .45s;
}

.div-block-11.invert.gold:hover {
  background-color: var(--dark-orange);
}

.image-8 {
  float: none;
  filter: brightness(200%);
  margin-bottom: -3px;
  margin-right: 0;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

._20px {
  height: 20px;
}

.grid-8 {
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  align-items: center;
}

.div-block-19 {
  width: 60vw;
  height: 100%;
  background-image: url('../images/auroPOWER-VPV-325-Kopie.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: auto;
  margin-bottom: -12%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.grid-9 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
}

.div-block-20 {
  height: 400px;
  background-image: url('../images/flexoCOMPACT-Szene_print.jpg');
  background-position: 50% 35%;
  background-size: cover;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  position: relative;
}

.div-block-21 {
  margin-right: 30%;
}

.text-block-3 {
  font-family: "Exo 2 Bold Webfont", sans-serif;
}

.pic-hor {
  height: 400px;
  background-image: url('../images/sensoCOMFORT_szene_s.jpg');
  background-position: 50% 46%;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.pic-hor._2 {
  background-image: url('../images/versoTHERM-plus-und-uniSTOR-plus-Szene_print_s.jpg');
  position: relative;
}

.madewithlove {
  height: auto;
  background-color: #e0e0e0;
  padding-top: 15px;
  padding-bottom: 15px;
  position: relative;
}

.text-block-4 {
  color: #fff;
  text-align: center;
  display: block;
}

.link-5 {
  color: #fff;
  transition-property: color;
  transition-duration: .475s;
  display: inline;
}

.link-5:hover {
  color: #fff;
}

.text-block-5 {
  color: var(--dark-slate-grey-2);
  background-color: rgba(255, 255, 255, .32);
  padding-left: 4px;
  padding-right: 4px;
  font-family: "Exo 2 Regular Webfont", sans-serif;
  font-size: 14px;
  line-height: 20px;
  display: inline;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.text-block-5.left-padding {
  padding-left: 20px;
}

.bold-text {
  font-family: "Exo 2 Bold Webfont", sans-serif;
}

.follow-us {
  display: none;
}

.regular {
  font-family: "Exo 2 Regular Webfont", sans-serif;
  font-weight: 400;
}

.rich-text-block {
  font-family: "Exo 2 Regular Webfont", sans-serif;
  line-height: 22px;
}

.body {
  font-family: "Exo 2 Regular Webfont", sans-serif;
}

@media screen and (max-width: 991px) {
  .divider {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .section.cc-cta {
    padding-left: 0;
    padding-right: 0;
  }

  .section.cc-store-home-wrap {
    margin-top: 86px;
    padding-bottom: 0;
    position: relative;
  }

  .styleguide-block {
    text-align: center;
  }

  .paragraph-bigger.cc-bigger-white-light {
    width: 87%;
    line-height: 22px;
  }

  .button {
    justify-content: center;
  }

  .button.cc-contact-us {
    display: none;
  }

  .paragraph-light {
    width: auto;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .heading-jumbo {
    font-size: 36px;
    line-height: 36px;
  }

  .heading-jumbo-small {
    line-height: 40px;
  }

  .logo-link {
    margin-left: 0;
  }

  .logo-link.w--current {
    flex: 1;
  }

  .logo-link.mobile {
    width: 100px;
    display: block;
  }

  .logo-link.desktop {
    display: none;
  }

  .menu-icon {
    display: block;
  }

  .menu {
    margin-left: 30px;
    position: static;
  }

  .navigation-wrap {
    background-color: #fff;
  }

  .navigation {
    height: 90px;
    padding: 25px 30px;
  }

  .navigation-item {
    float: right;
    clear: right;
    opacity: 1;
    text-align: center;
    background-color: rgba(255, 255, 255, .92);
    padding: 15px 30px;
    transition: background-color .4s, opacity .4s, color .4s;
    display: inline-block;
    position: relative;
  }

  .navigation-item:hover {
    color: var(--dark-orange);
    background-color: #f7f8f9;
  }

  .navigation-item:active {
    opacity: 1;
    color: var(--dark-orange);
    background-color: #eef0f3;
  }

  .menu-button {
    padding: 0;
  }

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
  }

  .navigation-items {
    background-color: rgba(0, 0, 0, 0);
    justify-content: center;
    margin-top: 89px;
    display: block;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .cta-text {
    width: auto;
  }

  .cta-wrap {
    width: auto;
    padding: 80px 50px 90px;
  }

  .intro-header {
    height: 40vw;
    background-color: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    margin-bottom: 80px;
  }

  .intro-header.unterseite {
    margin-bottom: 40px;
  }

  .intro-header.unterseite.impress {
    height: 29vw;
  }

  .intro-header.waermepumpen {
    margin-bottom: 40px;
  }

  .intro-content.cc-homepage {
    width: 60%;
    margin-left: -1px;
  }

  .project-details-grid {
    width: 80%;
    grid-row-gap: 50px;
    text-align: center;
    grid-template: "."
                   "."
                   / 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-detail-header-wrap {
    width: 70%;
  }

  .detail-header-image {
    height: 460px;
  }

  .blog-item {
    width: 80%;
  }

  .blog-preview-image {
    height: 460px;
  }

  .blog-summary-wrap {
    width: 100%;
  }

  .home-content-wrap {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .home-section-wrap {
    width: 70%;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .about-grid {
    grid-row-gap: 50px;
    text-align: center;
    grid-template: "."
                   "."
                   / 1fr;
  }

  .about-grid.cc-about-2 {
    grid-row-gap: 40px;
    grid-template-columns: 1fr;
    grid-template-areas: "."
                         ".";
  }

  .intro-text {
    width: auto;
  }

  .paragraph {
    line-height: 24px;
  }

  .section-2 {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .col {
    width: 50%;
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .col.lg-3 {
    width: 33.33%;
    flex-wrap: nowrap;
  }

  .col.lg-3.md-4 {
    width: 100%;
  }

  .footer-logo-2 {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .negative-margin {
    margin-left: -19px;
  }

  .row {
    flex-flow: wrap;
    justify-content: flex-start;
  }

  .wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .heading-7.h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .heading-7.h2.white {
    font-size: 16px;
    line-height: 20px;
  }

  .contact-form-container.card {
    margin-top: 0;
    margin-bottom: 0;
    padding: 50px 0 50px 30px;
  }

  .image-9 {
    margin-right: 4px;
  }

  .div-block-11.invert {
    justify-content: center;
  }

  .div-block-19 {
    width: 56vw;
    margin-bottom: -15%;
  }

  .div-block-20 {
    background-position: 50% 47%;
    background-size: cover;
  }

  .div-block-21 {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    display: block;
  }

  .pic-hor, .pic-hor._2 {
    background-attachment: scroll;
  }

  .text-block-5.left-padding {
    padding-left: 16px;
  }
}

@media screen and (max-width: 767px) {
  .section {
    margin-left: 15px;
    margin-right: 15px;
  }

  .section.cc-cta {
    padding: 15px;
  }

  .section.cc-home-wrap {
    margin-left: 15px;
    margin-right: 15px;
  }

  .section.cc-store-home-wrap {
    margin-top: 86px;
    margin-left: 15px;
    margin-right: 15px;
  }

  .container {
    text-align: center;
  }

  .paragraph-bigger {
    font-size: 16px;
    line-height: 28px;
  }

  .paragraph-bigger.cc-bigger-white-light {
    padding-left: 0;
    font-size: 15px;
    line-height: 20px;
  }

  .rich-text {
    width: 90%;
    max-width: 470px;
    text-align: left;
  }

  .paragraph-light {
    line-height: 24px;
  }

  .heading-jumbo {
    font-size: 28px;
    line-height: 30px;
  }

  .heading-jumbo-small {
    font-size: 28px;
    line-height: 32px;
  }

  .logo-link {
    padding-left: 0;
  }

  .logo-link.mobile {
    width: 80px;
  }

  .navigation {
    height: 90px;
    padding: 20px 30px;
  }

  .navigation-items {
    margin-top: 88px;
  }

  .cta-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  .intro-content {
    width: 80%;
  }

  .status-message.cc-no-data {
    width: 80%;
    max-width: 470px;
  }

  .detail-image {
    margin-bottom: 15px;
  }

  .blog-detail-header-wrap {
    width: 90%;
    max-width: 470px;
    text-align: left;
  }

  .blog-item {
    width: 90%;
    max-width: 470px;
  }

  .blog-summary-wrap {
    text-align: center;
  }

  .utility-page-wrap {
    padding: 15px;
  }

  ._404-wrap {
    padding: 30px;
  }

  .about-grid.cc-about-2 {
    grid-row-gap: 40px;
  }

  .paragraph {
    line-height: 21px;
  }

  .text-block {
    text-align: center;
    line-height: 18px;
  }

  .col.lg-3.sm-1 {
    width: 50%;
  }

  .col.lg-3.sm-2 {
    width: 100%;
  }

  .footer-logo-2 {
    padding-left: 0;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    display: flex;
  }

  .row {
    flex-wrap: wrap;
  }

  .footer-link {
    text-align: left;
  }

  .div-block-17 {
    margin-right: 40px;
  }

  .contact-form-container.card {
    padding-left: 40px;
    padding-right: 0;
  }

  .div-block-12 {
    padding-left: 19px;
    padding-right: 40px;
  }

  .div-block-11 {
    height: 130px;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .grid-8 {
    grid-template-rows: auto auto;
    grid-template-columns: 1.5fr;
  }

  .grid-9 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div-block-20 {
    height: 250px;
    border-radius: 0;
  }

  .div-block-21 {
    margin-right: 0%;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 36px;
    line-height: 52px;
  }

  .paragraph-bigger.cc-bigger-white-light {
    width: auto;
    margin-bottom: 0;
    padding-left: 0;
    font-size: 14px;
    line-height: 18px;
  }

  .label.cc-light {
    font-size: 14px;
    line-height: 19px;
  }

  .label.cc-light.sub {
    line-height: 21px;
  }

  .rich-text {
    width: 100%;
    max-width: none;
  }

  .heading-jumbo {
    margin-top: 5px;
    font-size: 24px;
    line-height: 25px;
  }

  .heading-jumbo-small {
    font-size: 22px;
    line-height: 27px;
  }

  .menu {
    margin-left: 15px;
  }

  .navigation {
    padding-left: 20px;
    padding-right: 20px;
  }

  .menu-button, .menu-button.w--open {
    flex: none;
  }

  .cta-wrap {
    padding-left: 15px;
    padding-right: 15px;
  }

  .intro-header {
    height: 80vw;
    min-height: 287px;
    align-items: flex-start;
    padding-top: 12vw;
  }

  .intro-header.unterseite {
    flex-wrap: wrap;
    align-items: center;
    padding-top: 0;
  }

  .intro-header.unterseite.impress {
    height: 36vw;
    min-height: auto;
  }

  .intro-header.waermepumpen {
    background-position: 42% 0;
    background-size: auto 110%;
    align-items: center;
    padding-top: 0;
  }

  .intro-content.cc-homepage {
    width: 82%;
  }

  .intro-content.cc-homepage.start {
    width: auto;
    margin-right: 25%;
  }

  .motto-wrap {
    width: auto;
  }

  .status-message.cc-no-data, .project-details-grid {
    width: 100%;
  }

  .blog-detail-header-wrap, .blog-item {
    width: 100%;
    max-width: none;
  }

  .about-grid.cc-about-2 {
    grid-row-gap: 40px;
  }

  .intro-text {
    padding: 10px 16px;
  }

  .paragraph {
    width: auto;
    line-height: 21px;
  }

  .image-block.speicher {
    margin-left: 40px;
  }

  .image-block.photovoltaik {
    margin-right: 40px;
  }

  .div-block-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .text-block {
    font-size: 11px;
    line-height: 16px;
  }

  .col {
    margin-bottom: 0;
  }

  .col.lg-3 {
    width: 100%;
  }

  .col.lg-3.sm-1.xs-1 {
    width: 50%;
    padding-right: 5px;
  }

  .negative-margin {
    margin-left: -10px;
  }

  .social-media-icon {
    padding: 0;
  }

  .footer-link {
    color: var(--dim-grey);
  }

  .heading-7.h2 {
    margin-left: 3px;
    margin-right: 3px;
  }

  .div-block-17 {
    margin-right: 20px;
  }

  .contact-form-container {
    padding: 0;
  }

  .contact-form-container.card {
    padding: 40px 0 40px 20px;
  }

  .div-block-12 {
    padding: 11px 30px 11px 7px;
  }

  .div-block-11 {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .div-block-11.invert {
    width: auto;
    height: auto;
  }

  .grid-8 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .div-block-19 {
    width: 95%;
    margin-bottom: -26%;
    display: block;
    right: 6%;
  }

  .grid-9 {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .div-block-20 {
    height: 50vw;
    background-position: 50%;
    border-radius: 0;
    margin-right: 0;
  }

  .div-block-21 {
    margin-right: 0%;
  }

  .pic-hor {
    height: 50vw;
  }

  .text-block-5.left-padding {
    font-size: 12px;
    line-height: 18px;
  }

  .link-6 {
    color: var(--dim-grey);
  }
}

#w-node-_033597d1-cced-af27-4b2e-dcdead578b22-b14bbf31 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_86e64837-0616-515b-4568-76c147234d41-b14bbf31 {
  grid-area: 1 / 2 / 2 / 3;
  align-self: auto;
}

#w-node-_3a7aa00d-0b8f-7195-ab54-2e088b897c75-8b897c65 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_04f0a967-21fb-babc-19eb-034a64d3e8ac-64d3e8ac, #w-node-_04f0a967-21fb-babc-19eb-034a64d3e8af-64d3e8ac, #w-node-_04f0a967-21fb-babc-19eb-034a64d3e8b4-64d3e8ac {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_86e64837-0616-515b-4568-76c147234d41-b14bbf31 {
    grid-area: 2 / 1 / 3 / 2;
    justify-self: auto;
  }
}


@font-face {
  font-family: 'Exo 2 Bold Webfont';
  src: url('../fonts/exo2-bold-webfont.woff2') format('woff2'), url('../fonts/exo2-bold-webfont.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Exo 2 Regular Webfont';
  src: url('../fonts/exo2-regular-webfont.woff2') format('woff2'), url('../fonts/exo2-regular-webfont.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}