.link-badge {
  background-color: #4f9c1c;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  color: #ffffff !important;
  padding: 15px 25px;
  transition: all 0.2s;
  transition-timing-function: ease-out;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.link-badge::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: #fc9c0a;
  transition: height 0.3s ease;
  z-index: 0;
}
.link-badge span {
  position: relative;
  z-index: 1;
}
.link-badge:hover::after {
  height: 100%;
}

.keyword-badge {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 5px 15px;
  border-width: 1px;
  border-style: solid;
  text-transform: capitalize;
  font-size: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
.keyword-badge span::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  margin-bottom: 1px;
}
.keyword-badge.green {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
  color: #4f9c1c;
}
.keyword-badge.green span::before {
  background-color: #4f9c1c;
}
.keyword-badge.blue {
  background-color: #dbeafe;
  border-color: #dbf5fe;
  color: #3b82f6;
}
.keyword-badge.blue span::before {
  background-color: #3b82f6;
}
.keyword-badge.orange {
  background-color: #ffedd5;
  border-color: #fff7ed;
  color: #fc9c0a;
}
.keyword-badge.orange span::before {
  background-color: #fc9c0a;
}
@media screen and (max-width: 900px) {
  .keyword-badge {
    margin: auto;
  }
}

button,
a.button {
  padding: 15px 25px;
  border-radius: 5px;
  border: none;
}
button:hover,
a.button:hover {
  cursor: pointer;
}
button.loading,
a.button.loading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
button.loading .spinner,
a.button.loading .spinner {
  display: block;
}
button.loading:disabled,
a.button.loading:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

a.button {
  text-decoration: none;
}

.btn-primary {
  background-color: #4f9c1c;
  color: #ffffff;
}
.btn-primary:hover {
  color: #ffffff;
}

.btn-secondary,
a.button.btn-secondary {
  border-color: #e5e7eb;
  border-width: 1px;
  border-style: solid;
  background-color: #ffffff;
  color: inherit;
}

.btn-primary,
.btn-secondary {
  transition: all 0.25s ease;
}
.btn-primary:hover,
.btn-secondary:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  position: absolute;
  top: 48%;
  left: 68%;
  transform: translate(-50%, -50%);
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 10px 20px -5px rgba(144, 144, 144, 0.5);
  background-color: #ffffff;
}
.card.top-image-container {
  overflow: hidden;
  padding: 0;
}
.card.top-image-container .top-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
}
.card.top-image-container .top-image.waterproofing {
  background-image: url("../assets/images/waterproofing.png");
}
.card.top-image-container .top-image.traffic {
  background-image: url("../assets/images/traffic.png");
}
.card.top-image-container .top-image.roofing {
  background-image: url("../assets/images/roofing.png");
}
.card.top-image-container .top-image.solar-panels {
  background-image: url("../assets/images/solar-panels.png");
}
.card.top-image-container .top-image.solar-panels-2 {
  background-image: url("../assets/images/solar-panels-2.png");
}
.card.top-image-container .content {
  padding: 20px;
}
.card.grey {
  background-color: #f9fafb;
}
.card.green {
  border-color: #bbf7d0;
  background-color: #e0efe6;
}
.card .card-heading,
.card .card-sub-heading {
  display: block;
}
.card .card-heading {
  font-weight: bold;
  font-size: 17px;
  color: #111827;
}
.card .card-sub-heading,
.card .card-description {
  font-size: 12px;
  font-weight: lighter;
  color: #4b5563;
}
.card .card-description {
  margin-top: 10px;
}
.card .notice {
  color: #111827;
  font-size: 50px;
  font-weight: bold;
}
.card.mini {
  padding: 20px;
  width: -moz-fit-content;
  width: fit-content;
}
.card.mini span {
  display: block;
}
.card.mini .card-mini-number {
  font-weight: bold;
  font-size: 20px;
  color: #111827;
}
.card.mini .card-mini-heading {
  font-size: 13px;
}
.card.mini .card-mini-sub-heading {
  font-size: 10px;
}
.card.mini.w-200 {
  width: 200px;
}
.card .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #ffffff;
  margin-bottom: 20px;
  display: flex;
}
.card .icon .fas {
  margin: auto;
}
.card .icon.green {
  background-color: #4f9c1c;
}
.card .icon.orange {
  background-color: #fc9c0a;
}
.card .icon.blue {
  background-color: #3b82f6;
}
.card .image {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 158px;
}
.card .image.office {
  background-image: url("../assets/images/office.png");
}

.statistic-card {
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  padding: 20px;
}
.statistic-card span {
  display: block;
}
.statistic-card .number {
  font-weight: bold;
  font-size: 17px;
}
.statistic-card.orange {
  border-color: #ffedd5;
  background-color: #fff7ed;
}
.statistic-card.orange .number {
  color: #fc9c0a;
}
.statistic-card.green {
  border-color: #dcfce7;
  background-color: #f0fdf4;
}
.statistic-card.green .number {
  color: #4f9c1c;
}

.card-icon {
  padding: 20px;
  border-radius: 20px;
  color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
}
.card-icon .icon-text {
  display: flex;
  align-items: center;
  gap: 20px;
}
.card-icon .icon-text .text {
  font-weight: bold;
}
.card-icon .icon-text .icon {
  background-color: #ffffff;
  border-radius: 25px;
  width: 25px;
  height: 25px;
  font-size: 10px;
  position: relative;
}
.card-icon .icon-text .icon .fas {
  transform: translate(50%, 70%);
  position: absolute;
}
.card-icon.green {
  background-color: #4f9c1c;
}
.card-icon.green .icon {
  color: #4f9c1c;
}

.card-info {
  display: flex;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
  color: #ffffff;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
}
.card-info .icon {
  border-radius: 50px;
  min-width: 50px;
  height: 50px;
  display: flex;
}
.card-info .icon .fas {
  margin: auto;
}
.card-info .icon.green {
  color: #4f9c1c;
  background-color: #dcfce7;
}
.card-info .icon.orange {
  color: #fc9c0a;
  background-color: #ffedd5;
}
.card-info .icon.blue {
  color: #3b82f6;
  background-color: #dbeafe;
}
.card-info .description .header {
  font-size: 17px;
  color: #111827;
  margin: 5px 0;
  font-weight: 400;
}
.card-info .description .info {
  font-size: 13px;
  color: #4b5563;
}
.card-info .description .info span {
  display: block;
}

@media screen and (max-width: 900px) {
  .card-container {
    flex-flow: column;
  }
  .card-container .card {
    width: auto !important;
    flex: 0 0 100% !important;
  }
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter/Inter-VariableFont_opsz,wght.ttf") format("ttf"), url("../assets/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("ttf");
  font-style: normal;
  font-display: swap;
  font-optical-sizing: auto;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 100;
  margin: 0;
  color: #4b5563;
}
body.menu-open {
  overflow: hidden;
  height: 100vh;
}
body a:not(.button),
body .fa:not(.no-clickable) {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s;
  transition-timing-function: linear;
}
body a:not(.button):hover,
body .fa:not(.no-clickable):hover {
  cursor: pointer;
  color: #4f9c1c;
}
body .heading {
  width: 340px;
  color: #111827;
  font-size: 50px;
  font-weight: bold;
}
body .sub-text {
  color: #4b5563;
  font-size: 14px;
  font-weight: lighter;
  width: 340px;
}
body .content {
  width: auto;
  max-width: 1280px;
  margin: auto;
  flex-wrap: wrap;
}
@media screen and (max-width: 900px) {
  body .heading,
  body .sub-text {
    width: 100%;
    text-align: center;
  }
}

.lighter {
  font-weight: lighter;
}

.smaller {
  font-size: smaller;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}
.d-flex.align-center {
  align-items: center;
}
.d-flex.space-between {
  justify-content: space-between;
}
.d-flex.flow-column {
  flex-flow: column;
}
.d-flex.flex-wrap {
  flex-wrap: wrap;
}
.d-flex.gap-5 {
  gap: 5px;
}
.d-flex.gap-10 {
  gap: 10px;
}
.d-flex.gap-20 {
  gap: 20px;
}
.d-flex.gap-50 {
  gap: 50px;
}
.d-flex .flex-1 {
  flex: 1;
}
.d-flex .flex-0-0-auto {
  flex: 0 0 auto;
}
.d-flex .flex-grow-0-2 {
  flex-grow: 0.2;
}
.d-flex .flex-grow-0-5 {
  flex-grow: 0.5;
}
.d-flex .flex-grow-0-8 {
  flex-grow: 0.8;
}
.d-flex .flex-grow-1 {
  flex-grow: 1;
}

.m-b-10 {
  margin-bottom: 10px;
}

.m-t-0 {
  margin-top: 0;
}

.m-t-5 {
  margin-top: 5px;
}

.m-t-10 {
  margin-top: 10px;
}

.m-t-20 {
  margin-top: 20px;
}

.m-t-30 {
  margin-top: 30px;
}

.m-t-50 {
  margin-top: 50px;
}

h1,
h2 {
  margin-top: 0;
  margin-bottom: 0;
}

h2 {
  color: #111827;
  font-size: 30px;
}

.w-49 {
  width: 49%;
}

.w-100 {
  width: 100%;
}

.contact-form .confirm-privacy-policy {
  width: 300px;
}
.contact-form .confirm-privacy-policy label {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.contact-form .confirm-privacy-policy label a {
  color: #4f9c1c;
}
@media screen and (max-width: 950px) {
  .contact-form .content .d-flex > *,
  .contact-form .confirm-privacy-policy {
    width: 100%;
  }
  .contact-form .form {
    flex-grow: 1;
    flex: auto;
  }
}
.contact-form {
  /* Status Text */
}
.contact-form #form-status {
  display: none;
  margin-top: 1rem;
  font-size: 0.9rem;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
}
.contact-form #form-status.success {
  color: #4f9c1c;
  background-color: #f0fdf4;
  border: 1px solid #4f9c1c;
}
.contact-form #form-status.error {
  color: #e74c3c;
  background-color: #ffbdbc;
  border: 1px solid #e74c3c;
}

.footer {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 0 112px;
}
.footer .links {
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 850px) {
  .footer .links {
    flex-direction: column;
    text-align: center;
  }
}
.footer .links .company .logo {
  width: 150px;
  height: 88px;
  background-image: url("../assets/images/logo.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.footer .links .company .slogan {
  width: 300px;
}
@media screen and (max-width: 850px) {
  .footer .links .company .logo,
  .footer .links .company .slogan {
    margin: auto;
    text-align: center;
  }
  .footer .links .company .slogan {
    width: auto;
    max-width: 300px;
  }
}
.footer .links .link-container .headline {
  font-weight: 400;
  color: #111827;
  margin-bottom: 20px;
}
@media screen and (max-width: 850px) {
  .footer .links .link-container .headline {
    margin-top: 30px;
  }
}
.footer .links .link-container a {
  display: block;
}
.footer .links .link-container a:not(:last-of-type) {
  margin-bottom: 10px;
}
.footer .bottom {
  border-top: 1px solid #e5e7eb;
  font-size: smaller;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer .bottom .legal-links {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 750px) {
  .footer .bottom .copyright,
  .footer .bottom .legal-links {
    margin: auto;
    text-align: center;
  }
  .footer .bottom .legal-links {
    margin-top: 10px;
  }
}

.icon-circle {
  font-size: 15px;
  max-width: 30px;
  height: 30px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-circle.green {
  color: #ffffff;
  background-color: #4f9c1c;
}
.icon-circle.orange {
  color: #ffffff;
  background-color: #fc9c0a;
}

.icon-with-text {
  display: flex;
  gap: 10px;
}
.icon-with-text .icon {
  min-width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  color: #ffffff;
}
.icon-with-text .icon .fas {
  margin: auto;
}
.icon-with-text .icon.green {
  background-color: #4f9c1c;
}
.icon-with-text .icon.orange {
  background-color: #fc9c0a;
}
.icon-with-text .icon.blue {
  background-color: #3b82f6;
}
.icon-with-text .icon.no-background {
  background-color: transparent;
  font-size: 25px;
  width: auto;
  height: auto;
}
.icon-with-text .icon.no-background .fas {
  margin: 2px 0 0 0;
}
.icon-with-text .icon.no-background.green {
  color: #4f9c1c;
}
.icon-with-text .icon.no-background.orange {
  color: #fc9c0a;
}
.icon-with-text .icon.no-background.blue {
  color: #3b82f6;
}
.icon-with-text .text-container.width-100 {
  width: 100%;
}
.icon-with-text .text-container .text-container-heading {
  font-size: 15px;
  font-weight: bold;
  color: #111827;
}
.icon-with-text .text-container .text-container-description {
  font-size: 12px;
  font-weight: 100;
}
@media screen and (min-width: 901px) {
  .icon-with-text .text-container {
    width: 200px;
  }
}

.input-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.input-row:not(:last-of-type) {
  margin-bottom: 10px;
}
.input-row .input-container {
  flex-grow: 1;
}
.input-row .input-container .legend {
  font-size: 13px;
  margin-bottom: 10px;
}
.input-row .input-container .input {
  font-family: "Inter", sans-serif;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
  resize: none;
}

.intro-gradient {
  background: linear-gradient(100deg, #f9fafb 0%, #ffffff 50%, #f0fdf4 100%);
}

.green-gradient {
  background: linear-gradient(100deg, #f9fafb 0%, #f0fdf4 100%);
}

.corporate-colors {
  background: -webkit-linear-gradient(0deg, #4f9c1c 0%, #fc9c0a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 900px) {
  .intro {
    padding: 0 40px;
  }
}
.intro .left .call-to-action {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (min-width: 701px) and (max-width: 900px) {
  .intro .left .call-to-action button {
    flex: 1;
    width: 49%;
  }
}
@media screen and (max-width: 700px) {
  .intro .left .call-to-action button {
    width: 100%;
  }
}
.intro .left .statistics {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid #e5e7eb;
  margin-top: 30px;
}
@media screen and (max-width: 1170px) {
  .intro .left {
    width: 49%;
  }
}
@media screen and (max-width: 900px) {
  .intro .left {
    width: 100%;
    text-align: center;
  }
}
.intro .right {
  position: relative;
  margin-right: 45px;
  margin-left: 105px;
}
@media screen and (max-width: 1170px) {
  .intro .right {
    margin-right: 0;
    margin-left: 0;
    width: 49%;
  }
}
@media screen and (max-width: 900px) {
  .intro .right {
    width: 100%;
    margin: auto;
  }
}
.intro .right .card {
  position: relative;
  z-index: 1;
}
.intro .right .card.mini {
  position: absolute;
  bottom: 50px;
  left: -100px;
  transform: rotate(-5deg);
  z-index: 0;
}
@media screen and (max-width: 1170px) {
  .intro .right .card.mini {
    display: none;
  }
}
.intro .right .card-icon {
  position: absolute;
  top: -20px;
  right: -40px;
  z-index: 1;
  transform: rotate(5deg);
}
@media screen and (max-width: 1170px) {
  .intro .right .card-icon {
    display: none;
  }
}

.intro-gradient {
  background: linear-gradient(100deg, #f9fafb 0%, #ffffff 50%, #f0fdf4 100%);
}

.green-gradient {
  background: linear-gradient(100deg, #f9fafb 0%, #f0fdf4 100%);
}

.corporate-colors {
  background: -webkit-linear-gradient(0deg, #4f9c1c 0%, #fc9c0a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legends {
  display: flex;
  gap: 20px;
}
.legends .legend {
  display: flex;
  gap: 10px;
  align-items: center;
}
.legends .legend .dot {
  width: 5px;
  height: 5px;
  border-radius: 5px;
}
.legends .legend .dot.green {
  background-color: #4f9c1c;
}
.legends .legend .dot.orange {
  background-color: #fc9c0a;
}
.legends .legend .dot.blue {
  background-color: #3b82f6;
}
.legends .legend .description {
  font-size: 12px;
  font-weight: 100;
}

.list {
  display: flex;
  gap: 10px;
  font-size: 12px;
}
.list.font-15 {
  font-size: 15px;
}
.list.green .fas {
  color: #4f9c1c;
}
.list.orange .fas {
  color: #fc9c0a;
}

.loader {
  width: 100%;
  height: 6px;
  background: #c0bebe;
  border-radius: 10px;
  overflow: hidden;
}
.loader .bar {
  width: 0%;
  height: 100%;
  background: #ffffff;
  animation: loading 2s;
  animation-fill-mode: forwards;
}
.loader.green {
  background: #e5e7eb;
}
.loader.green .bar {
  background: #4f9c1c;
}

@keyframes loading {
  0% {
    width: 0%;
  }
  100% {
    width: 82%;
  }
}
.nav {
  padding: 0 112px;
  height: 80px;
  border-bottom: 1px solid #e5e7eb;
}
@media screen and (max-width: 900px) {
  .nav {
    padding: 0 40px;
  }
}
.nav .container {
  width: 100%;
  height: 100%;
  display: flex;
}
@media screen and (min-width: 901px) {
  .nav .container {
    justify-content: space-between;
  }
}
.nav .container .logo-container {
  width: 150px;
  background-image: url("../assets/images/logo.png");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 900px) {
  .nav .container .logo-container {
    justify-self: center;
    margin: auto;
    height: -webkit-fill-available;
    height: -moz-available;
    height: stretch;
  }
}
.nav .container .menu-container {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.nav .container .menu-container ul {
  list-style: none;
  display: contents;
}
.nav .container .menu-container ul li {
  position: relative;
}
.nav .container .menu-container ul li a.active {
  color: #4f9c1c;
}
.nav .container .menu-container .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 3;
  min-width: 200px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0px 10px 20px -5px rgba(144, 144, 144, 0.5);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.25s ease;
}
.nav .container .menu-container .dropdown a {
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.2s;
}
.nav .container .menu-container .dropdown a:hover {
  background: rgba(0, 0, 0, 0.05);
}
.nav .container .menu-container {
  /* Hover Effekt */
}
.nav .container .menu-container .has-dropdown:hover .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (max-width: 900px) {
  .nav .container .menu-container {
    display: none;
  }
}
.nav .container .menu-container-mobile {
  display: none;
  align-items: center;
  font-size: 25px;
}
@media screen and (max-width: 900px) {
  .nav .container .menu-container-mobile {
    display: flex;
  }
}

.mobile-menu {
  display: none;
}
@media screen and (max-width: 900px) {
  .mobile-menu {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  /* Links */
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.mobile-menu ul li {
  margin: 1.5rem 0;
}
.mobile-menu ul li a {
  text-decoration: none;
  font-size: 2rem;
}
.mobile-menu {
  /* Close Button */
}
.mobile-menu .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 2.2rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu a,
.mobile-menu .submenu-toggle {
  display: block;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
}
.mobile-menu {
  /* Submenu */
}
.mobile-menu .submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-menu .submenu a {
  font-size: 1rem;
}
.mobile-menu {
  /* Aktiv */
}
.mobile-menu .has-submenu.active .submenu {
  max-height: 300px;
}

@media screen and (max-width: 900px) {
  .privacy-policy ul {
    list-style: none;
    text-align: center;
  }
}

.profile {
  display: flex;
  gap: 20px;
}
.profile .picture {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background-size: cover;
}
.profile .picture.ilyas-kececi {
  background-image: url("../assets/images/ilyas-kececi.png");
}
.profile .picture.stephan-bromm {
  background-image: url("../assets/images/stephan-bromm.png");
}
.profile .description .name {
  font-size: 22px;
  font-weight: bold;
  color: #111827;
}
.profile .description .department {
  margin-top: 10px;
}
.profile .description .department.green {
  color: #4f9c1c;
}
.profile .description .department.orange {
  color: #fc9c0a;
}
.profile .description .graduation {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  font-size: 12px;
}
.profile .description .graduation.green .fas {
  color: #4f9c1c;
}
.profile .description .graduation.orange .fas {
  color: #fc9c0a;
}

.products .product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.products .product-container .product {
  background-color: #f9fafb;
  border-radius: 15px;
  border: 1px solid #e5e7eb;
  width: 300px;
  padding: 30px;
  text-align: center;
  flex-grow: 1;
}
.products .product-container .product .icon {
  margin: auto;
  width: 55px;
  height: 55px;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  font-size: 25px;
}
.products .product-container .product .icon .fas {
  margin: auto;
}
.products .product-container .product .product-heading {
  font-size: 17px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 10px;
}
.products .product-container .product .product-description {
  font-size: 15px;
  margin-top: 10px;
}
.products .product-container .product a .fas {
  transition: transform 0.3s ease;
  font-size: smaller;
}
.products .product-container .product a:hover .fas {
  transform: translateX(5px);
}
.products .product-container .product.green .icon {
  background-color: #dcfce7;
  color: #4f9c1c;
}
.products .product-container .product.green a {
  color: #4f9c1c;
}
.products .product-container .product.orange .icon {
  background-color: #ffedd5;
  color: #fc9c0a;
}
.products .product-container .product.orange a {
  color: #fc9c0a;
}
.products .product-container .product.blue .icon {
  background-color: #dbeafe;
  color: #3b82f6;
}
.products .product-container .product.blue a {
  color: #3b82f6;
}
@media screen and (max-width: 900px) {
  .products .product-container .product {
    width: auto;
  }
}

.article-intro,
.section {
  padding: 80px 112px;
}
@media screen and (max-width: 900px) {
  .article-intro,
  .section {
    padding: 80px 40px;
  }
}

.article-intro {
  text-align: center;
}
.article-intro .keyword-badge {
  margin: auto;
  margin-bottom: 20px;
}
.article-intro h1 {
  font-size: 50px;
  color: #111827;
}
.article-intro p {
  font-size: 17px;
  width: 500px;
  margin: auto;
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  .article-intro p {
    width: auto;
  }
}

.section .section-heading {
  text-align: center;
  width: 600px;
  margin: auto;
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .section .content > *:not(.icon) h2,
  .section .content > *:not(.icon) p:not(.icon-with-text .text-container-description) {
    text-align: center;
  }
  .section .content > *:not(.icon) .profile-card p {
    text-align: left !important;
  }
  .section .content > *:not(.icon) {
    width: 100%;
  }
  .section .content > *:not(.icon) .d-flex,
  .section .content > *:not(.icon) .card:not(.form):not(.card-intro) {
    width: 100%;
  }
  .section .content > *:not(.icon) .d-flex {
    flex-flow: wrap;
  }
}

.picture-text-section .content {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .picture-text-section .content {
    width: 100%;
  }
}
.picture-text-section .picture {
  background-position: center;
  background-repeat: no-repeat;
  width: 48%;
  border-radius: 15px;
  position: relative;
  background-size: cover;
}
@media screen and (max-width: 900px) {
  .picture-text-section .picture {
    height: 400px;
    width: 100%;
  }
}
.picture-text-section .picture .card-mini-bottom-right {
  position: absolute;
  bottom: -30px;
  right: -30px;
}
.picture-text-section .picture .card-mini-top-left {
  position: absolute;
  left: -30px;
  top: -30px;
}
@media screen and (max-width: 1200px) {
  .picture-text-section .picture .card-mini-bottom-right,
  .picture-text-section .picture .card-mini-top-left {
    display: none;
  }
}
.picture-text-section .picture .loader-container {
  position: absolute;
  bottom: 30px;
  right: 50%;
  left: 50%;
  transform: translate(-50%);
  width: 80%;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
}
.picture-text-section .picture .loader-container .loader-description-container {
  display: flex;
  justify-content: space-between;
}
.picture-text-section .picture .loader-container .loader-description-container .loader-heading {
  font-size: 13px;
  font-weight: 100;
  margin-bottom: 10px;
}
.picture-text-section .picture .loader-container .loader-description-container .loader-stat {
  font-size: 17px;
  font-weight: bold;
  color: #111827;
}
.picture-text-section .picture .loader-container .loader-description-container .icon {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  display: flex;
}
.picture-text-section .picture .loader-container .loader-description-container .icon .fas {
  margin: auto;
}
.picture-text-section .picture .loader-container .loader-description-container .icon.green {
  background-color: #4f9c1c;
  color: #ffffff;
}
.picture-text-section .picture.worker {
  background-image: url("../assets/images/worker.png");
}
.picture-text-section .picture.bitumen {
  background-image: url("../assets/images/bitumen.png");
}
.picture-text-section .picture.construction {
  background-image: url("../assets/images/construction.png");
}
.picture-text-section .picture.air-source-heat-pumps {
  background-image: url("../assets/images/air-source-heat-pumps.png");
}
.picture-text-section .picture.worker-air-source-heat-pump {
  background-image: url("../assets/images/worker-air-source-heat-pump.png");
}
.picture-text-section .picture.solar-technician {
  background-image: url("../assets/images/solar-technician.png");
}
.picture-text-section .picture.solar-panels {
  background-image: url("../assets/images/solar-panels-3.png");
}
.picture-text-section .picture.company {
  background-image: url("../assets/images/company.png");
}
.picture-text-section .picture.wind-energy {
  background-image: url("../assets/images/wind-energy.png");
}
.picture-text-section .text {
  width: 48%;
}
.picture-text-section .text h2 {
  margin-top: 0;
}
@media screen and (max-width: 900px) {
  .picture-text-section .text {
    width: 100%;
  }
  .picture-text-section .text > p,
  .picture-text-section .text > span,
  .picture-text-section .text > h2 {
    text-align: center;
  }
  .picture-text-section .text button {
    width: 100%;
  }
}

.statistic {
  display: flex;
  flex-flow: column;
}
.statistic.row {
  flex-flow: row;
  align-items: baseline;
}
.statistic.row.space-between {
  justify-content: space-between;
}
.statistic .number {
  font-weight: bold;
  font-size: 25px;
  color: #111827;
}
.statistic .description {
  margin-top: 5px;
  font-size: 10px;
  font-weight: lighter;
}

.curve-diagram {
  background-color: #f9fafb;
  border-radius: 20px;
  padding: 20px 0;
}
.curve-diagram svg {
  width: 100%;
  height: auto;
  display: block;
}

.column-chart {
  background-image: url("../assets/images/smart-technology.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 256px;
  margin: auto;
}

.quadrants {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.quadrants .quadrant {
  border-radius: 5px;
  background-color: #000000;
  opacity: 0.2;
  height: 32px;
  flex-grow: 1;
}
.quadrants .quadrant.green {
  background-color: #4f9c1c;
  opacity: 1;
}/*# sourceMappingURL=style.css.map */