
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #232323;
  font-family: "Open Sans", sans-serif;
  hyphens: auto;
}

a {
  color: #FF9500;
  text-decoration: none;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #FF9500;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  padding: 0;
}

::-moz-selection { background: #505050; color: #fff; }
::selection { background: #505050; color: #fff; }

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}





/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #FF9500;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #FF9500;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}





/*--------------------------------------------------------------
# Link (zum Produkt)
--------------------------------------------------------------*/

.link {
  --line: #FF9500;
  --color: #FF9500;
  text-decoration: none;
  color: #FF9500;
  position: relative;
} 

.link span {
  background-image: linear-gradient(0deg, var(--line) 0%, var(--line) 100%);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: var(--background-size, 100%) 1px;
  transition: background-size 0.2s linear var(--background-delay, 0.15s);
  font-size: 16px;
  font-weight: 400 !important;
  line-height: 20px;
  transform: translateZ(0);
  text-transform: none !important;
  color: #FF9500 !important;
}

.link svg {
  vertical-align: top;
  display: inline;
  line-height: 1;
  width: 13px;
  height: 25px;
  position: relative;
  left: -2px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1px;
  stroke: var(--line);
  stroke-dasharray: 7.95 30;
  stroke-dashoffset: var(--stroke-dashoffset, 46);
  transition: stroke-dashoffset var(--stroke-duration, 0.15s) var(--stroke-easing, linear) var(--stroke-delay, 0s);
}

.link:hover {
  --background-size: 0%;
  --background-delay: 0s;
  --stroke-dashoffset: 26;
  --stroke-duration: 0.3s;
  --stroke-easing: cubic-bezier(0.3, 1.5, 0.5, 1);
  --stroke-delay: 0.195s;
}

.link {
  width: 140px;
  margin: 16px 0;
}






/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 80px;
  z-index: 997;
  transition: all 0.5s;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(160, 160, 160, 0.3);
}

#header.header-scrolled {
  height: 60px;
}

#header .logo img {
  padding: 0;
  max-height: 60px;
}

#header .bi-instagram{
  font-size: 25px;
}

#header .bi-facebook{
  font-size: 25px;
}

#header .bi-linkedin{
  font-size: 25px;
}

@media (max-width: 991px) {
  #header .logo img {
    height: 40px;
  }
}





/*--------------------------------------------------------------
# Nav
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 20px;
  color: #232323;
  font-weight: 400;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a button,
.navbar a:focus button {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #FF9500;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 15px);
  margin: 0;
  padding: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
  color: #000;
}

.navbar .dropdown .bi {
  font-size: 12px;
  padding: 0 0 0 10px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #FF9500;
  background: #fff;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  visibility: visible;
}


.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 15px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}


@media (min-width: 1280px) and (max-width: 1366px) {
.navbar .dropdown .dropdown ul {
  left: -90%;
}

.navbar .dropdown .dropdown:hover>ul {
  left: -100%;
}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #283d50;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(23, 35, 46, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #FF9500;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #FF9500;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}





/*--------------------------------------------------------------
# Hero 
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  background: url("../img/hero-bg-11.png") center bottom no-repeat;
  background-size: cover;
  padding: 200px 0 250px 0; 
}

#hero .hero-info {
  width: 50%;
  float: left;
}

#hero .hero-info h2 {
  color: #fff;
  margin-bottom: 0px !important;
  font-size: 60px;
  font-weight: 800;
}

.btn-get-started {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 20px 0 20px 0;
  color: #fff;
}

.btn-get-started {
  background: #2c9f5d;
  border: 2px solid #2c9f5d;
  color: #fff;
}

.btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}


@media (max-width: 1600px) {
  #hero {
    padding: 200px 0 200px 0;
  }
}

@media (max-width: 991px) {
  #hero {
    padding: 160px 0 160px 0;
  }
   #hero .hero-info {
    width: 80%;
    float: left;
    margin: auto;
  }
  #hero .hero-info h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  #hero .hero-info {
    width: 100%;
  }
  #hero .hero-info h2 {
    font-size: 40px;
    margin-bottom: 10px;
  }
}

@media (max-width: 574px) {
  #hero {
    padding: 400px 0 90px 0;
    width: 100%;
    position: relative;
    background: url("../img/hero-xs-bg-1.png") center top no-repeat;
    background-size: cover;
  }
}



/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 45px;
  text-align: center;
  font-weight: 900;
  position: relative;
  color: #FF9500;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 18px;
  padding-bottom: 60px;
  width: 70%;
}

@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
  .section-header h3 {
    font-size: 30px;
  }
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #f2f2f2;
}





/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f2f2f2;
  min-height: 40px;
  margin-top: 80px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}

.breadcrumbs h2 {
  font-size: 30px;
  color: #FF9500;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 15px 0 10px 0;
    font-size: 25px;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #000000;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}






/*--------------------------------------------------------------
# Förderung
--------------------------------------------------------------*/

#foerderung{
  padding: 50px 0 100px 0;
}

#foerderung .container{
  background-color: #f2f2f2;
  padding: 50px;
  border-radius: 20px;
}

#foerderung h3{
  margin-bottom: 40px !important;
}

#foerderung h4{
  text-transform: none;
}

#foerderung span{
  color: #FF9500;
}






/*--------------------------------------------------------------
# Was wir bieten
--------------------------------------------------------------*/
#system {
  padding: 50px 0 150px 0;
}

#system .about-container .background {
  margin: 20px 0;
}

#system .about-container .title {
  color: #000;
  font-weight: 700;
  font-size: 32px;
  margin-left: 60px;
  font-weight: 800;
  margin-bottom: 5px;
  font-size: 18px;
  padding-top: 10px;
}

#system .about-container .title-grey {
  color: #cacaca;
  margin-left: 60px;
  font-weight: 800;
  margin-bottom: 5px;
  font-size: 18px;
  padding-top: 10px;
}

#system .about-container p:last-child {
  margin-bottom: 0;
}

#system .about-container .icon-box {
  background-size: cover;
  padding: 0 0 30px 0;
}

#system .about-container .icon-box .icon-orange {
  float: left;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #FF9500;
  transition: all 0.3s ease-in-out;
}

#system .about-container .icon-orange p{
  color: #FF9500;
  font-weight: 700;
  font-size: 25px;
}

#system .about-container .icon-box:hover .icon-orange {
  background: #FF9500;
}

#system .about-container .icon-box:hover .icon-orange p {
  color : #fff;
}

#system .about-container .icon-box .icon-green {
  float: left;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #2c9f5d;
  transition: all 0.3s ease-in-out;
}

#system .about-container .icon-green p{
  color: #2c9f5d;
  font-weight: 700;
  font-size: 25px;
}

#system .about-container .icon-box:hover .icon-green {
  background: #2c9f5d;
}
 
#system .about-container .icon-box:hover .icon-green p {
  color : #fff;
}

#system .about-container .icon-box .icon-grey {
  float: left;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #cacaca;
  transition: all 0.3s ease-in-out;
}

#system .about-container .icon-grey p{
  color: #cacaca;
  font-weight: 700;
  font-size: 25px;
}

#system .about-container .icon-box .icon-grey a{
  color: #cacaca !important;
}

#system .about-container .icon-box:hover .icon-grey {
  background: #cacaca;
}
 
#system .about-container .icon-box:hover .icon-grey p {
  color : #fff;
}

#system .about-extra {
  padding-top: 60px;
}




/*--------------------------------------------------------------
# Home Produktslider
--------------------------------------------------------------*/

.splide{
  background-image: url(../img/dark-bg.jpeg);
  background-size: cover;
  padding: 100px 0;
}

.splide__slide{
  margin: 20px;
}

.splide__slide .img{
  height: auto;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
}

.splide__slide:hover img{
  transform: scale(1.1);
  transition: 0.6s;
  overflow: hidden;
}

.splide__slide h2{
  padding-left: 20px;
  padding-top: 20px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
}

.splide__slide h3{
  padding-left: 20px;
  margin-top: 5px;
}

.splide__slide p{
  padding-left: 20px;
  color: #fff;
  margin: 0;
}

.splide__arrow{
  display: none;
}





/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing{
  padding: 150px 0 100px 0;
  background: linear-gradient(to bottom, #fff 60%, #f2f2f2 40%);
}

.pricing .pricing-item {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.288);
  background: #fff;
  height: 100%;
  position: relative;
  border-radius: 15px;
  text-align: center;
}

.pricing h3 {
  text-align: center;
}

.pricing h4 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0;
  text-align: center;
  text-transform: none;
}

.pricing ul {
  padding: 10px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 50px;
  color: #ffffff;
  background: #2c9f5d;
  transition: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: #ffffff;
  color: #2c9f5d;
  border: 2px solid #2c9f5d;
}

.pricing .featured {
  z-index: 10;
  border: 2px solid #2c9f5d;
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}





/* Wärme-Spar-paket
--------------------------------*/
#waerme-spar-paket {
  background: #f2f2f2;
  padding: 60px 20px;
}

#waerme-spar-paket .waerme-spar-paket-container .background {
  margin: 20px 0;
}

#waerme-spar-paket .waerme-spar-paket-container h3 {
  color: #333;
  font-size: 45px;
  color: #FF9500;
}

#waerme-spar-paket .waerme-spar-paket-container p {
  line-height: 26px;
}

#waerme-spar-paket .waerme-spar-paket-container p:last-child {
  margin-bottom: 0;
}

#waerme-spar-paket .waerme-spar-paket-container .icon-box {
  background-size: cover;
  padding: 0 0 30px 0;
}

#waerme-spar-paket .waerme-spar-paket-container .icon-box .icon {
  float: left;
  width: 64px;
  height: 64px;
  display: flex;
}

#waerme-spar-paket .waerme-spar-paket-container .icon-box .title {
  margin-left: 80px;
  margin-right: 50px;
  font-weight: 900;
  margin-bottom: 5px;
  font-size: 18px;
}

#waerme-spar-paket .waerme-spar-paket-container .icon-box .description {
  margin-left: 80px;
  margin-right: 50px;
  line-height: 24px;
  font-size: 14px;
}

#waerme-spar-paket .waerme-spar-paket-extra {
  padding-top: 60px;
}

#waerme-spar-paket .waerme-spar-paket-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

@media (max-width:768px) {
  #waerme-spar-paket .waerme-spar-paket-container h3 {
    font-size: 30px;
  }
}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

#services {
  padding: 60px 0 40px 0;
}

body{margin-top:20px;}
.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap:wrap
}

.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem
}

@media (min-width:768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .15rem solid #FF9500;
        width: 1.46rem;
        position: absolute;
        left: 9.5rem;
        top: 4rem
    }
    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .15rem solid #FF9500;
        width: 1.8125rem;
        position: absolute;
        right: 9.5rem;
        top: 4rem
    }
}

.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center
}


.timeline-steps .timeline-content .service-icon {
    content: "";
    display: inline-block;
    height: 8rem;
    width: 8rem;
    min-width: 3rem;
}




/*--------------------------------------------------------------
# Nachhaltig in die Zukunft
--------------------------------------------------------------*/

#nachhaltig_in_die_zukunft {
  padding: 60px 0;
  background-image: url(../img/Banner.jpg);
  background-size: cover;
}

#nachhaltig_in_die_zukunft .section-header h3{
  color: #fff;
}

#nachhaltig_in_die_zukunft .section-header p{
  color: #fff;
  font-size: 18px;
}

#nachhaltig_in_die_zukunft .card .icon {
  max-height: 150px;
}

#nachhaltig_in_die_zukunft .card {
  background: #fff;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #232323;
  transition: 0.3s ease-in-out;
  height: 100%;
}

@media (max-width: 991px) {
  #nachhaltig_in_die_zukunft .card {
    margin: 0;
  }
}

#nachhaltig_in_die_zukunft .card:hover {
  transition: ease-in-out 0.3s;
  transform: translateY(-10px);
}

#nachhaltig_in_die_zukunft .card:hover p, #nachhaltig_in_die_zukunft .card:hover .readmore{
  color: #232323;
}

#nachhaltig_in_die_zukunft .card i {
  font-size: 48px;
  padding-top: 15px;
  color: #232323;
}

#nachhaltig_in_die_zukunft .card h5 {
  font-size: 26px;
  font-weight: 800;
}

#nachhaltig_in_die_zukunft .card p {
  font-size: 15px;
  color: #232323;
}

#nachhaltig_in_die_zukunft .card .readmore {
  color: #232323;
  font-weight: 600;
  display: inline-block;
  transition: 0.3s ease-in-out;
  border-bottom: #FF9500 solid 2px;
}

#nachhaltig_in_die_zukunft .card .readmore:hover {
  border-bottom: #fff solid 2px;
}

#nachhaltig_in_die_zukunft .counters {
  padding-top: 40px;
}

#nachhaltig_in_die_zukunft .counters span {
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #fff;
}

#nachhaltig_in_die_zukunft .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 14px;
  color: #cce5ff;
}






/*--------------------------------------------------------------
# Partner
--------------------------------------------------------------*/

#clients {
  padding: 60px 0;
  background-color: #fff;
}

#clients h3{
  padding-top: 50px;
}

#clients .clients-wrap {
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  overflow: hidden;
  background: #fff;
  height: 160px;
}

#clients .client-logo:hover img {
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}







/*--------------------------------------------------------------
# Hero Produkte
--------------------------------------------------------------*/
#hero-produkte {
  width: 100%;
  position: relative;
  background: url("../img/hero-bg-7.png") center bottom no-repeat;
  background-size: cover;
  padding: 210px 0 300px 0;
}

#hero-produkte #hero-info {
  text-align: right;
}

#hero-produkte #hero-info h2 {
  color: #fff;
  text-align: right;
  font-size: 60px;
  font-weight: 800;
}

@media (max-width: 1600px) {
  #hero-produkte {
    padding: 200px 0 220px 0;
  }
}

@media (max-width: 767px) {

  #hero-produkte {
    width: 100%;
    position: relative;
    background: url("../img/hero-xs-bg-5.png") center top no-repeat;
    background-size: cover;
    padding: 400px 0 140px 0;
    text-align: center;
  }
  #hero-produkte #hero-info {
    text-align: center;
  }
  #hero-produkte #hero-info h2 {
    text-align: center;
    font-size: 45px;
  }

} 







/*--------------------------------------------------------------
# Produkt Solarmodule
--------------------------------------------------------------*/

#produkt-solarmodule{
  padding-bottom: 100px;
  background-size: cover;
}

#produkt-solarmodule .produkt-img{
  display: flex; 
  align-items: center;
  justify-content: center;
}

#produkt-solarmodule .produkt-img img{
  width: 100%;
  height: auto;
  padding: 15px;
}

#produkt-solarmodule .col-lg-7{
  justify-content: center;
  display: flex; 
  align-items: center;
  justify-content: center;
}

#produkt-solarmodule .produk-info-bg{
  border-radius: 10px;
  background-color: #f2f2f2;
  padding: 40px;
}

#produkt-solarmodule .col-lg-7 span{
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
}

#produkt-solarmodule .col-lg-7 h3{
  color: #FF9500;
  font-size: 45px;
}

#produkt-solarmodule .produkt-info li{
list-style: none;
align-items: center;
display: flex;
}

#produkt-solarmodule .produkt-info p{
  color: #000;
  align-items: center;
}

#produkt-solarmodule .solarmodule-info-container{
  margin-bottom: 30px;
}

#produkt-solarmodule .solarmodule-info-container p {
  color: #000;
  margin-left: 60px;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 16px;
  padding-top: 10px;
  text-transform: none;
  margin-left: 25px;
}

  @media (max-width: 991px) {
    #produkt-solarmodule .produk-info-bg{
      margin-top: 30px;
    }
    #produkt-solarmodule .col-lg-7 h3{
      font-size: 35px;
    }
  }





/*--------------------------------------------------------------
# Produkt Batteriespeicher
--------------------------------------------------------------*/

#produkt-batteriespeicher{
  padding: 70px 0;
  background-color: #f2f2f2;
  background-size: cover;
}

#produkt-batteriespeicher .produkt-img{
  display: flex; 
  align-items: center;
  justify-content: center;
}

#produkt-batteriespeicher .produkt-img img{
  width: 100%;
  height: auto;
  padding: 5px;
}

#produkt-batteriespeicher .col-lg-7{
  display: flex; 
  align-items: center;
  justify-content: center;
}


#produkt-batteriespeicher .col-lg-7 span{
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
}

#produkt-batteriespeicher .col-lg-7 h3{
  color: #FF9500;
  font-size: 45px;
}

#produkt-batteriespeicher .produkt-info li{
list-style: none;
align-items: center;
display: flex;
}

#produkt-batteriespeicher .produkt-info p{
  color: #000;
  align-items: center;
}

#produkt-batteriespeicher .batteriespeicher-info-container{
  margin-bottom: 30px;
}

#produkt-batteriespeicher .batteriespeicher-info-container p {
  color: #000;
  margin-left: 60px;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 16px;
  padding-top: 10px;
  text-transform: none;
  margin-left: 25px;
}

#produkt-batteriespeicher .btn-zum-produkt{
margin-top: 25px;
font-size: 16px;
}

#produkt-batteriespeicher .btn-zum-produkt:hover{
  text-decoration: underline;
}

@media (max-width: 991px) {
  #produkt-batteriespeicher .col-lg-7 h3{
    font-size: 35px;
  }
}






/*--------------------------------------------------------------
# Produkt Wärmepumpen
--------------------------------------------------------------*/

#produkt-waermepumpen{
  background-image: url(../img/dunkler-bg.jpeg);
  background-size: cover;
  padding: 50px 20px;
}

#produkt-waermepumpen .row{
  justify-content: center;
  align-items: center;
}

#produkt-waermepumpen .produkt-img{
  display: flex; 
  align-items: center;
  justify-content: center;
}

#produkt-waermepumpen .produkt-img img{
  width: 100%;
  height: auto;
  padding: 0 0 0 40px;
}

#produkt-waermepumpen .produk-info-bg{
  border-radius: 10px;
  background-color: #5050506e;
  backdrop-filter: blur(5px);
  padding: 50px;
  margin: 0 50px;
  box-shadow: rgba(3, 3, 3, 0.719) 0px 7px 15px 0px;
}

#produkt-waermepumpen .col-lg-7 span{
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

#produkt-waermepumpen .col-lg-7 h3{
  color: #FF9500;
  margin-top: 10px;
  font-size: 45px;
}

#produkt-waermepumpen .produkt-info li{
list-style: none;
align-items: center;
display: flex;
}

#produkt-waermepumpen .produkt-info p{
  color: #fff;
  align-items: center;
}

#produkt-waermepumpen .waermepumpen-info-container p {
  color: #fff;
  margin-left: 60px;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 16px;
  padding-top: 10px;
  text-transform: none;
  margin-left:25px
}

#produkt-waermepumpen .btn-zum-produkt{
margin-top: 15px;
font-size: 16px;
}

#produkt-waermepumpen .btn-zum-produkt:hover{
  text-decoration: underline;
  }

  @media (max-width: 1024px) {
    #produkt-waermepumpen .col-lg-7 h3{
      font-size: 35px;
    }
    #produkt-waermepumpen .produk-info-bg{
      margin: 0;
      padding: 30px;
    }
  }







/*--------------------------------------------------------------
# Produkt Pufferspeicher
--------------------------------------------------------------*/

#produkt-pufferspeicher{
  padding: 100px 0;
}

#produkt-pufferspeicher h3{
  color: #FF9500;
  font-size: 45px;
  text-align: center;
}

#produkt-pufferspeicher p{
  text-align: center;

}

#produkt-pufferspeicher .produkt-info-links p{
  text-align: right;
}

#produkt-pufferspeicher .produkt-info-rechts p{
  text-align: left;
}


#produkt-pufferspeicher .produkt-bild{
  text-align: center;
  justify-content: center;
}

#produkt-pufferspeicher .produkt-bild img{
  width: 100%;
  height: auto;
}

#text-1{
  margin-top: 200px !important;
  border-right: #FF9500 solid;
  padding-right: 10px;
}

#text-2{
  margin-top: 120px !important;
  border-right: #FF9500 solid;
  padding-right: 10px;
}

#text-3{
  margin-top: 120px !important;
  border-right: #FF9500 solid;
  padding-right: 10px;
}

#text-4{
  margin-top: 200px !important;
  border-left: #FF9500 solid;
  padding-left: 10px;
}

#text-5{
  margin-top: 120px !important;
  border-left: #FF9500 solid;
  padding-left: 10px;
}

#text-6{
  margin-top: 120px !important;
  border-left: #FF9500 solid;
  padding-left: 10px;
}

#produkt-pufferspeicher .link-pufferspeicher{
  text-align: center !important;
  align-items: center;
}


@media (max-width: 991px) {
  #text-1{
    margin-top: 0 !important;
    border-right: #FF9500 solid;
    padding-right: 10px;
  }
  
  #text-2{
    margin-top: 0 !important;
    border-right: #FF9500 solid;
    padding-right: 10px;
  }
  
  #text-3{
    margin-top: 0 !important;
    padding-left: 10px;
  }
  
  #text-4{
    margin-top: 30px !important;
    border-left: #FF9500 solid;
    padding-left: 10px;
  }

  #text-5{
    margin-top: 0 !important;
    border-left: #FF9500 solid;
    padding-left: 10px;
  }

  #text-6{
    margin-top: 0 !important;
    border-left: #FF9500 solid;
    padding-left: 10px;
  }

  #produkt-pufferspeicher h3{
    font-size: 35px;
  }
}





/*--------------------------------------------------------------
# Produkt Frischwasserstation
--------------------------------------------------------------*/

#produkt-frischwasserstation{
  padding: 90px 0;
  background-size: cover;
}

#produkt-frischwasserstation .produkt-img{
  display: flex; 
  align-items: center;
  justify-content: center;
}

#produkt-frischwasserstation .produkt-img img{
  width: 100%;
  height: auto;
  border-radius: 10px 0 0 10px;
}

#produkt-frischwasserstation .col-lg-5{
  padding: 0;
}

#produkt-frischwasserstation .col-lg-7{
  justify-content: center;
  align-items: center;
  justify-content: center;
  padding: 0;
}

#produkt-frischwasserstation .produk-info-bg{
  border-radius: 0 10px 10px 0;
  background-color: #f2f2f2;
  padding: 50px 40px 40px 40px;
  height: 100%;
}

#produkt-frischwasserstation .col-lg-7 span{
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
}

#produkt-frischwasserstation .col-lg-7 h3{
  color: #FF9500;
  font-size: 45px;
}

#produkt-frischwasserstation .produkt-info li{
list-style: none;
align-items: center;
display: flex;
}

#produkt-frischwasserstation .produkt-info p{
  color: #000;
  align-items: center;
}

#produkt-frischwasserstation .frischwasserstation-info-container{
  margin-bottom: 30px;
}

#produkt-frischwasserstation .frischwasserstation-info-container p{
  color: #000;
  margin-left: 60px;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 16px;
  padding-top: 10px;
  text-transform: none;
  margin-left: 25px;
}

@media (max-width: 991px) {
  #produkt-frischwasserstation{
    margin: 15px;
    }
  #produkt-frischwasserstation .col-lg-7 h3{
      font-size: 35px;
  }
  #produkt-frischwasserstation .produkt-img img{
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
  }
  #produkt-frischwasserstation .produk-info-bg{
    border-radius: 0 0 10px 10px;
    background-color: #f2f2f2;
    padding: 50px 40px 40px 40px;
    height: 100%;
  }
}







/*--------------------------------------------------------------
# Produkt Wärmeverteilung
--------------------------------------------------------------*/

#produkt-wärmeverteilung{
  padding: 70px 0 150px 0;
  background-color: #f2f2f2;
  background-size: cover;
}

#produkt-wärmeverteilung .produkt-img{
  display: flex; 
  align-items: center;
  justify-content: center;
}

#produkt-wärmeverteilung .produkt-img img{
  width: 100%;
  height: auto;
  padding: 5px;
}

#produkt-wärmeverteilung .col-lg-7{
  display: flex; 
  align-items: center;
  justify-content: center;
}

#produkt-wärmeverteilung .col-lg-7 span{
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
}

#produkt-wärmeverteilung .col-lg-7 h3{
  color: #FF9500;
  font-size: 45px;
}


#produkt-wärmeverteilung .produkt-info li{
list-style: none;
align-items: center;
display: flex;
}

#produkt-wärmeverteilung .produkt-info p{
  color: #000;
  align-items: center;
}

#produkt-wärmeverteilung .wärmeverteilung-info-container{
  margin-bottom: 30px;
}

#produkt-wärmeverteilung .wärmeverteilung-info-container p {
  color: #000;
  margin-left: 60px;
  margin-bottom: 5px;
  font-weight: 400;
  font-size: 16px;
  padding-top: 10px;
  text-transform: none;
  margin-left: 25px;
}

#produkt-wärmeverteilung .btn-zum-produkt{
margin-top: 25px;
font-size: 16px;
}

#produkt-wärmeverteilung .btn-zum-produkt:hover{
  text-decoration: underline;
}

#produkt-wärmeverteilung .entec-kategorien img{
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
    #produkt-wärmeverteilung .col-lg-7 h3{
      font-size: 35px;
  }
}







#entec-kategorien{
  padding: 0;
}

#entec-kategorien .row{
  display: grid;
	grid-template-columns: repeat(5, 1fr);
  gap: 1em 2em;
}

#entec-kategorien a{
color: #000;
}

#entec-kategorien .entec-kategorien-box{
  text-align: center;
  height: 100%;
  width: 100%;
  border-style: solid;
  border-width: 1px;
  border-color: #757575;
  padding: 20px;
  border-radius: 10px;
}

#entec-kategorien .entec-kategorien-box:hover{
  transition: ease-in-out 0.3s;
  transform: translateY(-10px);
}

#entec-kategorien .entec-kategorien-box:hover a{
  color: #FF9500;
}

#entec-kategorien .entec-kategorien-box img{
 max-height: 90px;
}

#entec-kategorien .entec-kategorien-box p{
  text-align: center;
  margin: 0;
 }

 #entec-kategorien .entec-kategorien-box:hover{
  background-color: #f2f2f2;
}


@media (max-width: 991px) {
  #entec-kategorien .row{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  #entec-kategorien .entec-kategorien-box{
    padding-top: 20px;
  }
}

@media (max-width: 767px) {
  #entec-kategorien .row{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
} 

@media (max-width: 574px) {
  #entec-kategorien .row{
    display: none;
  }
}








/*--------------------------------------------------------------
# Produkt Master Steuerung
--------------------------------------------------------------*/

#produkt-mastersteuerung{
  background-image: url(../img/master.controller-bg.jpg);
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}

#produkt-mastersteuerung .row{
  align-items: center;
}

#produkt-mastersteuerung .produkt-img img{
  width: 100%;
  height: auto;
}

#produkt-mastersteuerung .produkt-info{
  text-align: right;
  justify-content: center;
}

#produkt-mastersteuerung .produkt-info span{
  color: #000;
  font-weight: 900;
  text-transform: uppercase;
}

#produkt-mastersteuerung .produkt-info h3{
  color: #FF9500;
  margin-top: 10px;
  font-size: 45px;
}

#produkt-mastersteuerung .produkt-info p{
  color: #000;
  align-items: center;
}

  @media (max-width: 991px) {
    #produkt-mastersteuerung .produkt-info h3{
      font-size: 35px;
    }
  }






/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 60px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
  max-height: 650px;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #323232;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #323232;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(62, 71, 78, 0.123);
  border-radius: 20px;
}

.portfolio-details .portfolio-info h3 {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d1d1d1;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.portfolio-details .portfolio-info .produkt-ausführung-btn {
  padding: 10px 15px;
  margin: 0 5px 5px 0;
  line-height: 50px;
  border-radius: 20px;
  background-color: #f2f2f2;
  color: #000;
}

.portfolio-details .portfolio-info .produkt-ausführung-btn-active {
  padding: 10px 15px;
  margin: 0 5px 5px 0;
  line-height: 50px;
  border-radius: 20px;
  background-color: #FF9500;
  color: #fff;
}

.portfolio-details .portfolio-info .produkt-ausführung-btn:hover {
  background-color: #FF9500;
  color: #fff;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-info .produkt-ausführung-btn {
    line-height: 40px;
  }
  
  .portfolio-details .portfolio-info .produkt-ausführung-btn-active {
    line-height: 40px;
  }
}




#quick-info {
  margin-top: 40px;
}

#quick-info li {
  list-style: none;
  align-items: center;
  display: flex;
}

#quick-info p {
  margin-bottom: 0;
  margin-left: 15px;
}





.portfolio-details .info-tabs .tabs {
  margin-top: 120px;
  margin-bottom: 50px;
}

.portfolio-details .info-tabs .tabs h3 {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .portfolio-details .info-tabs .tabs h3 {
    font-size: 28px;
  }

  .portfolio-details .portfolio-info .produkt-ausführung-btn-active {
    padding: 5px 7px;

  }
  .portfolio-details .portfolio-info .produkt-ausführung-btn {
    padding: 5px 7px;

  }
}

.portfolio-details .info-tabs .tabs .nav-pills {
  border-bottom: 1px solid #eee;
}

.portfolio-details .info-tabs .tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 800;
  color: #000;
  padding: 12px 0;
  margin-right: 25px;
  margin-bottom: -2px;
  border-radius: 0;
}

.portfolio-details .info-tabs .tabs .nav-link.active {
  color: #FF9500;
  border-bottom: 3px solid #FF9500;
}

@media (max-width: 768px) {
  .portfolio-details .info-tabs .feature-icons h3 {
    font-size: 28px;
  }
}




.tg{
  width: 100%;
  margin-bottom: 40px;
}

.tg td{
  font-size: 16px;
  padding: 0 5px;
}

.tg th{
  font-size: 16px;
  font-weight: normal;
  padding: 5px 5px;
}

.tg .table-head{
  font-size:16px;
  background-color:#656565;
  color:#ffffff;
}

.tg .grey-bg{
  background-color:#f2f2f2
}

@media (max-width: 768px) {
  .tg td{
    font-size: 12px;
  }
  
  .tg th{
    font-size: 12px;
  }
  
  .tg .table-head{
    font-size:12px;
  }
  #tab1 p{
    font-size:12px;
  }
}






#auslieferungszustand{
  padding: 50px 0;
  background-size: cover;
}

#auslieferungszustand .produkt-img{
  display: flex; 
  align-items: center;
  justify-content: center;
}

#auslieferungszustand .produkt-img img{
  width: 100%;
  height: auto;
  border-radius: 10px 0 0 10px;
}

#auslieferungszustand .col-lg-5{
  padding: 0;
}

#auslieferungszustand .col-lg-7{
  padding: 50px 40px 40px 40px;
}

#auslieferungszustand .row{
  height: 100% !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 10px;
  background-color: #f2f2f2;
}

#auslieferungszustand .produkt-info h4{
  margin-bottom: 5px;
  color: #FF9500;
  }


@media (max-width: 991px) {
  #auslieferungszustand .produkt-img img{
    border-radius: 10px 10px 0 0;
  }
}






#abmessungen p{
  margin-top: 40px;
}

#abmessungen h4{
  color: #FF9500;
}






#komponenten{
  padding: 50px 0;
  background-size: cover;
}


#komponenten h4{
  color: #FF9500;
  margin-bottom: 20px;
}

#komponenten .produkt-img{
  display: flex; 
  align-items: center;
  justify-content: center;
}

#komponenten .produkt-img img{
  width: 100%;
  text-align: center;
  height: auto;
  border-radius: 10px 0 0 10px;
}

#komponenten .row{
  justify-content: center !important;
  border-radius: 10px;
  background-color: #f2f2f2;
  margin-bottom: 60px;
}



  

#komponenten .produkt-info p:last-child {
  margin-bottom: 0;
}

#komponenten .produkt-info .nummerierung {
  background-size: cover;
  padding: 0 0 10px 0;
  justify-content: center;
  align-items: center;
}

#komponenten .produkt-info .nummerierung .icon-orange {
  float: left;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #FF9500;
  margin-right: 10px;
}

#komponenten .nummerierung .icon-orange p{
  color: #fff;
}






#anschlussplan h4{
  color: #FF9500;
  margin-bottom: 20px;
}





.coming-soon{
  height: 1000px;
}

.coming-soon p{
  margin-top: 100px;
  text-align: center;
}









/*--------------------------------------------------------------
# Hero Partnerprogramm
--------------------------------------------------------------*/
#hero-partnerprogramm {
  width: 100%;
  position: relative;
  background: url("../img/hero-bg-4.png") center bottom no-repeat;
  background-size: cover;
  padding: 200px 0 200px 0;
  justify-content: center;
}

#hero-partnerprogramm .hero-info {
  float: left;
}

#hero-partnerprogramm .hero-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 60px;
  font-weight: 800;
  text-align: left;
}

#hero-partnerprogramm .hero-info p {
  color: #fff;
  font-size: 20px;
}

#hero-partnerprogramm .hero-img img {
  width: 80%;
  height: auto;
  border-radius: 10px;
}

#hero-partnerprogramm .btn-get-started,
#hero-partnerprogramm .btn-services {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 0 15px 0;
  color: #fff;
}

#hero-partnerprogramm .btn-get-started {
  background: #2c9f5d;
  border: 2px solid #2c9f5d;
  color: #fff;
}

#hero-partnerprogramm .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#hero-partnerprogramm .btn-services {
  border: 2px solid #fff;
}

#hero-partnerprogramm .btn-services:hover {
  background: #2c9f5d;
  border-color: #2c9f5d;
  color: #fff;
}

@media (max-width: 1600px) {
  #hero-partnerprogramm {
    padding: 130px 0 160px 0;
  }
}

@media (max-width: 991px) {
  #hero-partnerprogramm {
    padding: 140px 0 120px 0;
  }
  #hero-partnerprogramm .hero-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
  #hero-partnerprogramm .hero-info {
    width: 80%;
    float: left;
    margin: auto;
  }
  #hero-partnerprogramm .hero-info h2 {
    font-size: 45px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  #hero-partnerprogramm {
    padding: 400px 0 80px 0;
    width: 100%;
    position: relative;
    background: url("../img/hero-xs-bg-2.png") center top no-repeat;
    background-size: cover;
    justify-content: center;
  }
  #hero-partnerprogramm .hero-info {
    width: 100%;
  }
  #hero-partnerprogramm .hero-info h2 {
    font-size: 35px;
    margin-bottom: 30px;
  }
}





/* Schulung
--------------------------------*/
#schulung {
  background: #fff;
  padding: 0 0 100px 0;
}

#schulung .schulung-container .content {
  background: #fff;
}

#schulung .schulung-extra h2 {
  color: #FF9500;
  font-size: 45px;
  font-weight: 900;
  margin: 0 0 30px 0;
}

#schulung .schulung-container p {
  line-height: 26px;
}

#schulung .schulung-container p:last-child {
  margin-bottom: 0;
}

#schulung .schulung-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#schulung .schulung-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#schulung .schulung-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#schulung .schulung-extra {
  padding-top: 60px;
}

#schulung .schulung-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

@media (max-width: 767px) {
  #schulung .schulung-extra h2 {
    font-size: 30px;
  }
}





#schulung-vorteile{
  padding: 100px 0 150px 0;
}

#schulung-vorteile p{
  text-align: left;
  margin: 0;
  width: 100%;
}

#schulung-vorteile .row{
  margin-top: 40px;
}

#schulung-vorteile .col-lg-4{
  text-align: left;
  padding: 15px;
}

#schulung-vorteile .col-lg-4 .info-box{
  background-color: #f2f2f2;
  border-radius: 0 0 15px 15px;
}

#schulung-vorteile .col-lg-4 h3{
  padding: 20px;
  margin: 0;
}

#schulung-vorteile .col-lg-4 p{
  padding: 0 20px 20px 20px;
}

#schulung-vorteile .col-lg-4 img{
  width: 100%;
  border-radius:  15px 15px 0 0;
}










/* Schulungspartner
--------------------------------*/
#clients {
  padding: 60px 0;
  background-color: #f2f2f2;
}

#clients .clients-wrap {
  margin-bottom: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 160px;
}

#clients .client-logo:hover img {
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out;
}













/*--------------------------------------------------------------
# Hero News
--------------------------------------------------------------*/
#hero-news {
  width: 100%;
  position: relative;
  background: url("../img/hero-bg-10.png") center bottom no-repeat;
  background-size: cover;
  padding: 300px 0 300px 0;
}

#hero-news .hero-info {
  width: 50%;
  float: left;
}

#hero-news .hero-info h2{
  font-size: 60px;
  color: #fff;
  font-weight: 800;
}

#hero-news .hero-info p{
  font-size: 20px;
  color: #ffffff;
}

#hero-news .hero-info .btn-get-started,
#hero-news .hero-info .btn-services {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}

#hero-news .hero-info .btn-get-started {
  background: #2c9f5d;
  border: 2px solid #2c9f5d;
  color: #fff;
}

#hero-news .hero-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}

#hero-news .hero-info .btn-services {
  border: 2px solid #fff;
}s

#hero-news .hero-info .btn-services:hover {
  background: #2c9f5d;
  border-color: #2c9f5d;
  color: #fff;
}

@media (max-width: 1600px) {
  #hero-news {
    padding: 220px 0 220px 0;
  }
}

@media (max-width: 991px) { 
  #hero-news {
    padding: 150px 0 110px 0;
  }
  #hero-news .hero-info {
    width: 80%;
    float: left;
    margin: auto;
  }
}

@media (max-width: 767px) {
  #hero-news {
    width: 100%;
    position: relative;
    background: url("../img/hero-xs-bg-3.png") center top no-repeat;
    background-size: cover;
    padding: 400px 0 120px 0;
  }
  #hero-news .hero-info h2{
    font-size: 30px;
  }
}













/*--------------------------------------------------------------
# Blog Posts
--------------------------------------------------------------*/
#recent-blog-posts{
  padding: 100px 0;
}

#recent-blog-posts .post-box {
  transition: 0.3s;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

#recent-blog-posts .post-box .post-img {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

#recent-blog-posts .post-box .post-img img {
  transition: 0.5s;
}

#recent-blog-posts .post-box .meta {
  margin-top: 15px;
}

#recent-blog-posts .post-box .meta .post-date {
  font-size: 15px;
  color: #505050;
}

#recent-blog-posts .post-box .post-title {
  font-size: 24px;
  color: #000;
  font-weight: 900;
  margin: 15px 0 0 0;
  position: relative;
  transition: 0.3s;
  text-transform: none;
  font-family: "Open Sans", sans-serif;
}

#recent-blog-posts .post-box p {
  margin: 15px 0 0 0;
}

#recent-blog-posts .post-box .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  margin-top: 15px;
}

#recent-blog-posts .post-box .readmore i {
  line-height: 0;
  margin-left: 4px;
  font-size: 18px;
}

#recent-blog-posts .post-box:hover .post-title {
  color: var(--color-primary);
}

#recent-blog-posts .post-box:hover .post-img img {
  transform: scale(1.1);
}







/*--------------------------------------------------------------
# Diagramm 1
--------------------------------------------------------------*/

#diagramm-1{
  padding-bottom: 130px;
}

#mychart{
  max-width: 800px !important;
}








/*--------------------------------------------------------------
# F.A.Q 
--------------------------------------------------------------*/
@media (max-width: 991px) {
  #faq {
    padding: 0;
  }
}

#faq .content h3 {
  font-size: 45px;
  color: #FF9500;
  padding-top: 40px;
  margin: 0;
}

#faq .content h4 {
  margin-top: 5px;
}

#faq .content p {
  font-size: 15px;
}

#faq .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}

#faq .accordion {
  margin: 10px 0 40px 0;
}

#faq .accordion-item {
  border: 0;
  margin-top: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 15px 0px;
}

#faq .accordion-collapse {
  border: 0;
}

#faq .accordion-button {
  padding: 15px 40px 20px 20px;
  border: 0;
  font-size: 18px;
  color: #000;
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 5px;
}

#faq .accordion-button i{
  margin-right: 20px;
  color: #FF9500;
}

#faq .accordion-button:not(.collapsed) {
  color: #FF9500;
  border-bottom: 0;
  box-shadow: none;
}

#faq .accordion-button:after(.collapsed){
  color: #FF9500;
}

#faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
}

#faq .accordion-button:after {
  position: absolute;
  right: 15px;
  top: 15px;
}

#faq .accordion-body {
  padding: 0 30px 25px 60px;
  border: 0;
  border-radius: 5px;
  background: #fff;
  box-shadow: none;
}





@media (max-width: 767px) {
  #faq .content h3 {
    font-size: 30px;
  }
}




/*--------------------------------------------------------------
# Hero contact
--------------------------------------------------------------*/
#hero-contact {
  width: 100%;
  position: relative;
  background: url("../img/hero-bg-1.png") center bottom no-repeat;
  background-size: cover;
  padding: 300px 0 300px 0;
}

#hero-contact .hero-img {
  width: 50%;
  float: right;
}

#hero-contact .hero-info {
  width: 50%;
  float: right;
}

#hero-contact .hero-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 60px;
  font-weight: 800;
  text-align: right;
}

@media (max-width: 1600px) {
  #hero-contact {
    padding: 230px 0 230px 0;
  }
}

@media (max-width: 991px) {
  #hero-contact {
    padding: 140px 0 120px 0;
  }
  #hero-contact .hero-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
  #hero-contact .hero-info {
    width: 80%;
    float: right;
    margin: auto;
  }
  #hero-contact .hero-info h2 {
    font-size: 50px;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  #hero-contact {
    width: 100%;
    position: relative;
    background: url("../img/hero-xs-bg-4.png") center top no-repeat;
    background-size: cover;
    padding: 400px 0 130px 0;
  }
  
  #hero-contact .hero-info {
    width: 100%;
  }
  #hero-contact .hero-info h2 {
    font-size: 35px;
    margin-bottom: 30px;
    text-align: center;
  }
}



/*--------------------------------------------------------------
# contact Formular
--------------------------------------------------------------*/
#contact{
  padding: 80px 0;
}

#contact h2{
  font-size: 45px;
  text-align: center;
  font-weight: 900;
  position: relative;
  color: #FF9500;
  margin-bottom: 60px;
}

#contact .col-lg-8 {
  margin: 0;
}

#contact .col-lg-4 {
  margin: 0;
}

#contact .info-container {
  background-color: #FF9500;
  height: 100%;
  padding: 20px;
  border-radius: 10px 0 0 10px;
}

#contact .info-item {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 20px;
  width: 100%;
  border-radius: 10px;
  color: #fff;
}

#contact .info-item:last-child {
  margin-bottom: 0;
}

#contact .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background-color: #FF9500;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  margin-bottom: 5px;
  color: #000;
}

#contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #000;
}

#contact .info-item:hover i {
  background: #2c9f5d;
  color: #fff;
}

#contact .php-email-form {
  width: 100%;
  height: 100%;
  background: #f2f2f2;
  padding: 30px;
  border-radius: 0 10px 10px 0;
}

#contact .php-email-form .form-group {
  padding-bottom: 8px;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input,
#contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .php-email-form input[type=text],
#contact .php-email-form input[type=email],
#contact .php-email-form textarea {
  padding: 12px 15px;
}

#contact .php-email-form input[type=text]:focus,
#contact .php-email-form input[type=email]:focus,
#contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

#contact .php-email-form textarea {
  padding: 10px 12px;
}

#contact .php-email-form button[type=submit] {
  background: #059652;
  border: 0;
  padding: 14px 45px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

#contact .php-email-form button[type=submit]:hover {
  background: #FF9500;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  #contact .info-container {
    background-color: #FF9500;
    height: 100%;
    padding: 20px;
    border-radius: 10px 10px 0 0;
  }
  #contact .php-email-form {
    width: 100%;
    height: 100%;
    background: #f2f2f2;
    padding: 30px;
    border-radius: 0 0 10px 10px;
    margin-top: 0 !important;
  }
}



/*--------------------------------------------------------------
# Map
--------------------------------------------------------------*/

#map {
  margin: 40px 0;
}

#map iframe {
  border: 0;
  width: 100%;
  height: 500px;
}




/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
#team{
  padding: 60px 0;
}

#team .team-member {
  padding-bottom: 30px;
  align-items: center;
}

#team h2{
  font-size: 45px;
  text-align: center;
  font-weight: 900;
  position: relative;
  color: #FF9500;
  margin-bottom: 60px;
}

#team .team-member .member-img {
  border-radius: 8px;
  overflow: hidden;
}

#team .team-member .member-info {
  padding: 30px 15px;
  text-align: center;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 15px 0px;
  background: #fff;
  margin: -50px 20px 0 20px;
  position: relative;
  border-radius: 8px;
}

#team .team-member .member-info h4 {
  margin-bottom: 5px;
  font-size: 24px;
}

#team .team-member .member-info span {
  display: block;
  font-size: 16px;
  color: #FF9500;
  margin-bottom: 10px;
}

#team .team-member .member-info a {
  font-size: 14px;
  line-height: 26px;
  color: #000;
}

#team .team-member .member-info i {
  font-style: normal;
  color: #000;
}

#team .team-member .member-info i.bi.bi-phone-fill::before {
margin-right: 8px;
}

#team .team-member .member-info i.bi.bi-envelope-fill::before {
  margin-right: 8px;
  }





/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #0e0e0e;
  padding: 60px 0 0 0;
}

#footer .footer-top img {
 width: 70%;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FF9500;
  color: #fff;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a i {
  line-height: 0;
}

#footer .footer-top .social-links a:hover {
  background: #fff;
  color: #FF9500;
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 3px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
}

#footer .footer-top .footer-links ul a:hover {
  color: #FF9500;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}