/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #f7a600;
  --secondary-color:              #ccc;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #f7a600;
  --custom-btn-bg-hover-color:    #30383a;
  --dark-color:                   #666;
  --p-color:                      #666;
  --border-color:                 #ccc;
  --link-hover-color:             #30383a;

  --body-font-family:             'Roboto Light', sans-serif;
  --title-font-family:            'Roboto Medium', sans-serif;

  --h1-font-size:                 46px;
  --h2-font-size:                 32px;
  --h3-font-size:                 46px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --menu-font-size:               14px;
  --btn-font-size:                18px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  max-width: 2544px;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
}


/*---------------------------------------
  TYPOGRAPHY
-----------------------------------------*/

@font-face {
  font-family: 'Roboto';
  src: url('../../fonts/Roboto-Regular.ttf');
}

@font-face {
  font-family: 'Roboto Medium';
  src: url('../../fonts/Roboto-Medium.ttf');
}

@font-face {
  font-family: 'Roboto Bold';
  src: url('../../fonts/Roboto-Bold.ttf');
}

@font-face {
  font-family: 'Roboto Light';
  src: url('../../fonts/Roboto-Light.ttf');
}


h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
  text-transform: uppercase;
}

h1,
h2,
h4,
h5,
h6 {
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-medium);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  line-height: 1.3em;
  color: var(--white-color);
}

h1 span{padding:0 .2em;background-color: var(--primary-color);-webkit-box-shadow: 1px 1px 15px 2px #666666;
box-shadow: 1px 1px 15px 2px #666666;}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-weight-bold);
  padding-bottom:24px;
}

h3 {
  font-family: 'Roboto Light';
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-light);
  text-transform:uppercase;
}

h3.text-white span{font-family: 'Roboto Bold';font-weight: var(--font-weight-bold);}


h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  color: var(--primary-color);
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-family: 'Roboto Bold';
  font-weight: var(--font-weight-bold);
}




/*---------------------------------------
  SECTION
-----------------------------------------*/

section, .row{padding-left:0;padding-right:0;}
.container-fluid{padding:0;}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.big-yellow-bg{background-color: var(--primary-color);width:100%;height:23vw;}

.big-yellow-bg img{width:45vw;height:auto;position:absolute;top:-6%;left:10%;}

.big-yellow-bg-2{background-color: var(--primary-color);width:100%;height:auto;position:relative;display: flex;justify-content: center;}

.big-yellow-bg-2 img{width:30vw;height:auto;position:absolute;top:-25%;left:5%;max-height:600px;max-width: 400px;}



.section-overlay {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

.section-overlay + .container {
  position: relative;
}

.tab-content {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
}

.nav-tabs {
  border-bottom: 1px solid #ecf3f2;
  margin-bottom: 40px;
  justify-content: center;
}

.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}

.nav-tabs .nav-link:first-child {
  margin-right: 20px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--primary-color);
  color: var(--primary-color);
}


/*---------------------------------------
  CUSTOM ICON COLOR
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}


/*---------------------------------------
  CUSTOM BUTTON
-----------------------------------------*/
.btn-primary{
    background-color: var(--primary-color);
    border: none;
    color: var(--white-color);
    text-transform: uppercase;
}

.btn-primary:hover{
    background-color: var(--secondary-color);
    border: none;
}

.btn-pfeil::after{
    flex-shrink: 0;
    display: inline-flex;
    width: 20px;
    height: 20px;
    margin-left: 7px;
    content: "";
    background-image: url(/storage/app/media/amperium-SOLAR/Icons/arrow-right-white.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    position: relative;
    top: 3px;
}

.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 5px 15px;

}

.custom-btn-link{

  border: none;

  color: var(--dark-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 0;

}

.custom-btn:hover {
  color: var(--primary-color);
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-border-btn:hover {
  background: var(--custom-btn-bg-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  font-family: 'Roboto Medium';
  font-weight: var(--font-weight-medium);
  border-color: var(--white-color);
  color: var(--dark-color);
  background: var(--white-color);
  text-transform:uppercase;
  padding: 3px 10px;
}

.btn-gray{
    background-color: var(--dark-color);
    border: none;
    color: var(--white-color);
    text-transform: uppercase;
}

.btn-gray:hover{
    background-color: var(--secondary-color);
        color: var(--white-color);
    border: none;
}

.btn-arrow-right{position: relative!important;left:0%!important;}

#StarkeVerbindung .btn-header{
    background-color: #ffffff;
    border: 2px solid var(--primary-color);
}

 .btn-arrow{
    font-family: 'Roboto Medium';
    background-color: var(--primary-color);
    color: var(--white-color);
    text-transform: uppercase;
}

.btn-arrow:hover{
    background-color: var(--secondary-color);
        color: var(--white-color);
    border: none;
}

.btn-arrow::after {
    flex-shrink: 0;
    display: inline-flex
;
    width: 20px;
    height: 20px;
    margin-left: 7px;
    content: "";
    background-image: url(/storage/app/media/amperium-SOLAR/Icons/arrow-right-white.svg);
    background-repeat: no-repeat;
    background-size: 17px;
    position: relative;
    top: 6px;
}


/*---------------------------------------
  SITE HEADER
-----------------------------------------*/
.header-mit-bild .col-lg-7{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.header-mit-bild .btn-header{
    width: fit-content;
}

.header-mit-bild img{
    max-height: 630px;
}

.site-header {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  padding-top: 150px;
  padding-bottom: 80px;
}

.site-header .container {
  height: 100%;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item a:hover,
.breadcrumb-item.active {
  color: var(--white-color);
}

.site-header .custom-icon {
  color: var(--white-color);
  font-size: var(--h4-font-size);
}

.site-header .custom-icon:hover {
  color: var(--secondary-color);
}

.btn-header{
    background-color: var(--white-color);
    border: none;
    color: var(--dark-color);
    font-weight: bold;
    margin-tops: 8px;
}

.btn-header:hover{
    background-color: var(--white-color);
    border: none;
    color: var(--primary-color);
}

.btn-header::after{
    flex-shrink: 0;
    display: inline-flex;
    width: 20px;
    height: 20px;
    margin-left: 7px;
    content: "";
    background-image: url(/storage/app/media/amperium-SOLAR/Icons/arrow-right.svg);
    background-repeat: no-repeat;
    background-size: 17px;
    position: relative;
    top: 3px;
}

.cta-header{
    position: fixed;
    display: flex;
    flex-direction: column;
    right: 0;
    top: 15%;
}

.btn-cta{
    background-color: var(--primary-color);
    width: auto;
    height: auto;
    border: none;
    margin: 5px 0;
    padding: 10px 10px 10px 15px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}

.btn-cta img{
    width: 45px;
}


/*---------------------------------------
  NAVIGATION
-----------------------------------------*/
.sticky-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.sticky-wrapper.is-sticky .navbar {
  background-color: #fff;
}

.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border-color);
  z-index: 9;
  height: 120px;
}

.navbar-collapse {
    flex-basis: 100%;
    flex-grow:0;
    align-items: center;
}

.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h3-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
}

.navbar-brand span {
  font-family: var(--title-font-family);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar .dropdown-menu {
  background: rgba(0,0,0,.6);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
  border-radius:0;
  min-width: 285px;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--dark-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: #fff;
  font-family: var(--body-font-family);
  font-size: var(--menu-font-size);
  font-weight: 100;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  border-bottom: 1px solid var(--primary-color);
}

.navbar .dropdown-item.active,
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus,
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--primary-color);
}

.navbar .dropdown-toggle::after {
  content: "";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-block;
  font-size: var(--h5-font-size);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.navbar-icon:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/* PRODUKT MARKERS */

.produktEig ul, #storionh50 ul, #essDC ul, #backupBoxAccord ul {
    list-style: none;
    padding-left: 0;
}

li {
    position: relative;
    padding-left: px;
}

  .checklist {
    list-style: none;
    padding: 0;
  }
  .checklist li::before {
    content: "✔";
    color: var(--primary-color);
    margin-right: 10px;
  }


.produktEig li::before, #storionh50 li::before, #essDC li::before, #backupBoxAccord li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 35%;
    transform: translateY(-50%);
    width: 50px;
    height: 28px;
    background-image: url(/storage/app/media/amperium-SOLAR/Icons/highlights-li.svg);
    background-repeat: no-repeat;
    background-size: contain;
    padding-bottom: 10px;
}

.produktEig li, #storionh50 li, #essDC li, #backupBoxAccord li {
    padding-bottom: 15px;
    padding-left: 40px;
}

/*---------------------------------------
  PRODUKT BAUKASTEN
-----------------------------------------*/

.scroll-container {
  	overflow-x: auto;
  	overflow-y: auto;
  	display: flex;
	overflow: scroll;
   scroll-snap-type: x mandatory;
   scroll-behavior: smooth;
   scrollbar-width: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-content {
  	flex-shrink: 0;
  	box-sizing: border-box;
  	flex-direction: column;
  	display: flex;	
    scroll-snap-align: center;
    padding-right: 10px;
    overflow: hidden;
    width: 100%;
}



/*---------------------------------------
  PRODUKT SEITE
-----------------------------------------*/

.card{
    border-radius: 25px;
    overflow: hidden;
    min-height: 680px;
}

.card img{
    padding: 15px;
    transition: transform .2s;
}

.card img:hover{
    transform: scale(1.5);
}

.card-body{
    border-top: 3px solid var(--primary-color);
    background-color: #ffffff;
    z-index: 2;
}

.card-body .btn-primary{
    position: absolute;
    bottom: 17px;
}


.produkt-selektor a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#blackbee1000-produkt{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/TragbareStromspeicher/BlackBee1000/BlackBee1000-RIGHT.jpg);
    background-size: cover;
    background-position: center;
}

#blackbee2000-produkt{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/TragbareStromspeicher/BlackBee2000/BlackBee2000-RIGHT.jpg);
    background-size: cover;
    background-position: center;
}

#platzhalter-produkt{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Platzhalter.jpg);
    background-size: cover;
    background-position: center;
}


.balken{
    position: absolute;
    width: 100vw;
    left: 0;
    height: 10px;
    background-color: var(--primary-color);
}

.product-image{
    overflow:hidden;
    position: relative;
    }

.product-image img:hover{
    transform: scale(1.5);
}

.btn-zoom{
    position: absolute;
    top: 0;
    background: none;
    border: none;
    transition: transform linear 0.2s;
}

.btn-zoom:hover{
    background: none;
    border: none;
    transform: scale(1.15);
}

.btn-zoom:active, .btn-zoom:focus{
    background: none;
    border: none;
}

.product-modal{
    --bs-modal-width: auto;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: var(--bs-modal-width);
        margin-right: auto;
        margin-left: auto;
        width: 50vw;
    }
}

.product-modal .modal-content{
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: none;
}

.product-modal .modal-body{
    display: flex;
    flex-direction: column;
}

.product-preview-row{
    justify-content: center;
}

.product-preview-row button{
    width: fit-content;
    padding: 0;
    background: none;
    border: none;
    padding: 0px 10px;
}

.product-preview{
    width: 75px; 
    height: 75px; 
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 7px;
    border: var(--secondary-color) 1px solid;
    box-shadow: 2px 2px 4px 0px #ccc;
    transition: transform linear 0.5s;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.product-preview:hover{
    transform: scale(1.15);
}

.carousel-item .w-100{
    padding-top: 30px;
}

/* SMILE G3 S3 

#smileG3S3 button:nth-child(1) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Heimspeicher/SMILE-G3-S3_6/SmileG3S3-LEFT.jpg);
}

#smileG3S3 button:nth-child(2) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Heimspeicher/SMILE-G3-S3_6/SmileG3S3-RIGHT.jpg);
}
#smileG3S3 button:nth-child(3) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Storion-H30/AlphaCloudDasboard-Hochkant.jpg);
}

#smileG3S3 button:nth-child(4) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Storion-H30/AlphaCloud-Hochkant.jpg);
}

/* BACKUPBOX 

#BackupBox button:nth-child(1) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Heimspeicher/BackupBox/BackupBox-RIGHT.jpg);
}
#BackupBox button:nth-child(2) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Heimspeicher/BackupBox/BackupBox-FRONT.jpg);
}
#BackupBox button:nth-child(3) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Platzhalter.jpg);
}
#BackupBox button:nth-child(4) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Platzhalter.jpg);
}

/* BLACK BEE 1000 

#BlackBee1000 button:nth-child(1) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/TragbareStromspeicher/BlackBee1000/BlackBee1000-RIGHT.jpg);
}
#BlackBee1000 button:nth-child(2) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/TragbareStromspeicher/BlackBee1000/BlackBee1000-FRONT.jpg);
}
#BlackBee1000 button:nth-child(3) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/TragbareStromspeicher/BlackBee1000/BlackBee1000-BACK.jpg);
}
#BlackBee1000 button:nth-child(4) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/TragbareStromspeicher/BlackBee1000/BlackBee1000-COMBINATION.jpg);
}

/* BLACK BEE 2000 

#BlackBee2000 button:nth-child(1) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/TragbareStromspeicher/BlackBee2000/BlackBee2000-RIGHT.jpg);
}
#BlackBee2000 button:nth-child(2) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/TragbareStromspeicher/BlackBee2000/BlackBee2000-LEFT.jpg);
}
#BlackBee2000 button:nth-child(3) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/TragbareStromspeicher/BlackBee2000/BlackBee2000-STAENDER.jpg);
}
#BlackBee2000 button:nth-child(4) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/TragbareStromspeicher/BlackBee2000/BlackBee2000-MOCKUP.jpg);
}

/* SMILE G3 

#smileG3 button:nth-child(1) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/E-Ladestation/SmileG3-RIGHT.jpg);
}
#smileG3 button:nth-child(2) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/E-Ladestation/SmileG3-FRONT.jpg);
}
#smileG3 button:nth-child(3) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/E-Ladestation/SmileG3-LEFT.jpg);
}
#smileG3 button:nth-child(4) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Platzhalter.jpg);
}

/* MONTSOL 430 

#montsol430 button:nth-child(1) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/PV-Module/Montsol430-PRODUKT.jpg);
}
#montsol430 button:nth-child(2) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/PV-Module/Montsol430-GRAPH.jpg);
}
#montsol430 button:nth-child(3) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Platzhalter.jpg);
}
#montsol430 button:nth-child(4) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Platzhalter.jpg);
}

/* ALPHA EMS 

#alphaEMS button:nth-child(1) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Storion-H30/AlphaCloudDasboard-Hochkant.jpg);
}
#alphaEMS button:nth-child(2) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/ALPHA-EMS/AppMockup.jpg);
}
#alphaEMS button:nth-child(3) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/ALPHA-EMS/AlphaEMS-Screen.jpg);
}
#alphaEMS button:nth-child(4) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Storion-H30/AlphaCloud-Hochkant.jpg);
}



/* STORION H30 

#storionH30 button:nth-child(1) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Storion-H30/STORION-H30-Front2.jpg);
}

#storionH30 button:nth-child(2) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Storion-H30/STORION-H30-Right.jpg);
}

#storionH30 button:nth-child(3) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Storion-H30/AlphaCloudDasboard-Hochkant.jpg);
}

#storionH30 button:nth-child(4) .product-preview{
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Storion-H30/AlphaCloud-Hochkant.jpg);
}

/* STORION H50 

#storionH50 button:nth-child(1) .product-preview {
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Storion-H50/STORIONH50-ContainerKasten.jpg);
}

#storionH50 button:nth-child(2) .product-preview {
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Storion-H50/STORIONH50-TowerGrau.jpg);
}

#storionH50 button:nth-child(3) .product-preview {
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Storion-H50/STORIONH50-TowerFarbig.jpg);
}

#storionH50 button:nth-child(4) .product-preview {
    background-image: url(/storage/app/media/amperium-SOLAR/Produkte/Storion-H50/STORIONH50-ProductRange.jpg);
}

/*---------------------------------------
  PARTNER SEITE
-----------------------------------------*/
.leistung-aufzaehlung .col-lg-6{
    display: flex;
    flex-direction: row;
    padding: 20px 0;
    align-items: center;
}

.leistung-aufzaehlung .col-lg-6 p{
    margin: 0;
    padding-left: 30px;
}

.leistung-icon{
width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
    border-radius: 25%;
    border: 1px solid #ccc;
    flex-shrink: 0;
    box-sizing: border-box; 

}

.leistung-icon img,
.leistung-icon svg {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain; 
}

.broschuere-teaser{
    background-image: url(/storage/app/media/amperium-SOLAR/Partner/Broschuere-Teaser-Background.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.broschuere-teaser .col-lg-6{
    padding: 40px 10px;
    position: relative;
}

.broschuere-teaser img{
    width: 90%;
    position: absolute;
    top: -50px;
}

.broschuere-teaser p span{
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-bold);
    line-height: 1.3em;
    color: var(--white-color);
    padding: 0 .2em;
    background-color: var(--primary-color);
    -webkit-box-shadow: 1px 1px 15px 2px #666666;
    box-shadow: 1px 1px 15px 2px #666666;
    text-transform: uppercase;
}

.broschuere-teaser .btn-primary::before{
    flex-shrink: 0;
    display: inline-flex;
    width: 30px;
    height: 30px;
    margin-left: 7px;
    content: "";
    background-image: url(/storage/app/media/amperium-SOLAR/Icons/PDF-Icon-White.svg);
    background-repeat: no-repeat;
    background-size: 27px;
    position: relative;
    top: 1px;
}

.broschuere-teaser .btn-primary{
    border: 2px solid var(--white-color);
    display: flex;
    align-items: center;
}

.anforderungen{
    margin: 60px 0 0 0;
}

.anforderungen .leistung-icon{
    border-width: 2px;
}

.anforderungen .leistung-icon img{
    width: 60px;
}

.anforderungen hr{
    margin-top: 70px;
}

/*---------------------------------------
  UNTERNEHMEN SEITE
-----------------------------------------*/
:root{
    --ansprechpartner-image-size:                  250px;
}

.ansprechpartner{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ansprechpartner-bild{
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(var(--ansprechpartner-image-size) + 10px);
    height: calc(var(--ansprechpartner-image-size) + 10px);
    border-radius: calc(var(--ansprechpartner-image-size) + 10px);
    background-color: var(--primary-color);
}

.ansprechpartner-bild img{
    width: var(--ansprechpartner-image-size);
    border-radius: var(--ansprechpartner-image-size);
    border: 14px solid var(--white-color);
}


.kontaktdaten .row{
    align-items: center;
    justify-content: center;
    margin-bottom: 7px;
}

.kontaktdaten img{
    width: 50px;
}

.kontaktdaten p{
    width: fit-content;
    margin: 0;
    padding-left: 7px;
}



/*---------------------------------------
  ACCORDION
-----------------------------------------*/
.accordion{
    --bs-accordion-btn-icon-transform: rotate(90deg);
    --bs-accordion-btn-focus-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-btn-icon: url(/storage/app/media/amperium-SOLAR/accordion-pfeil.svg);
    --bs-accordion-btn-active-icon: url(/storage/app/media/amperium-SOLAR/accordion-pfeil.svg);
}

.accordion-item{
  border: none;
  border-bottom: 2px var(--primary-color) solid;
}

.accordion-header{
    padding-bottom: 0px;
}

.accordion-button{
    padding-left: 0px;
}

.accordion-button, .accordion-body{
    color: var(--dark-color);
    font-size: var(--p-font-size);
}

.accordion-button::after {display: none;}

.accordion-button::before {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: 0;
    rotate: -90deg;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    animation: 1s linear rotate;
    margin-right: 7px;
}

.accordion-button:not(.collapsed) {
    color: var(--dark-color);
    background-color: white;
}

.accordion-button:not(.collapsed)::before {
    background-image: var(--bs-accordion-btn-active-icon);
    transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

th strong{
    font-size: var(--p-font-size);
    font-weight: var(--font-weight-normal);
    font-family: var(--body-font-family);
}


/*---------------------------------------
  HERO
-----------------------------------------*/
.hero-section {
  background-image: linear-gradient(15deg, #13547a 0%, #80d0c7 100%);
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 150px;
}

.hero-section .input-group {
  background-color: var(--white-color);
  border-radius: var(--border-radius-large);
  padding: 10px 15px;
}

.hero-section .input-group-text {
  background-color: transparent;
  border: 0;
}

.hero-section input[type="search"] {
  border: 0;
  box-shadow: none;
  margin-bottom: 0;
  padding-left: 0;
}

.hero-section button[type="submit"] {
  background-color: var(--primary-color);
  border: 0;
  border-radius: var(--border-radius-large) !important;
  color: var(--white-color);
  max-width: 150px;
}

.produkt-tabelle th{
    padding: 0 60px 15px 0;
}


/*---------------------------------------
  IMAGES
-----------------------------------------*/
.oc-img-rounded {
    border-radius: 12.5%;
    background-clip: padding-box;
}


/*---------------------------------------
  TOPICS
-----------------------------------------*/
.featured-section {
  background-color: var(--secondary-color);
  border-radius: 0 0 100px 100px;
  padding-bottom: 100px;
}

.featured-section .row {
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
}

.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
}

.custom-block:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.custom-block > a {
  width: 100%;
}

.custom-block-image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 35px;
}

.custom-block .rounded-pill {
  border-radius: 5px !important;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 20px;
}

.custom-block-overlay {
  height: 100%;
  min-height: 350px;
  padding: 0;
}

.custom-block-overlay > a {
  height: 100%;
}

.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  display: block;
  height: 100%;
  margin-top: 0;
}

.custom-block-overlay-text {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  padding: 30px;
}

.social-share {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
  padding: 20px 35px;
}

.social-share .bi-bookmark {
  color: var(--white-color);
  font-size: var(--h5-font-size);
}

.social-share .bi-bookmark:hover {
  color: var(--secondary-color);
}

.bg-design {
  background-color: #00B0FF;
}

.bg-graphic {
  background-color: #00BFA6;
}

.bg-advertising {
  background-color: #F50057;
}

.bg-finance {
  background-color: #536DFE;
}

.bg-music {
  background-color: #F9A826;
}

.bg-education {
  background-color: #00BFA6;
}


/*---------------------------------------
  TOPICS
-----------------------------------------*/
.topics-detail-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.topics-detail-block-image {
  display: block;
  border-radius: var(--border-radius-medium);
}

blockquote {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  font-family: var(--title-font-family);
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  text-align: center;
  margin: 30px;
  padding: 40px;
}

.topics-listing-page .site-header {
  padding-bottom: 65px;
}

.custom-block-topics-listing-info {
  margin: 30px 20px 20px 30px;
}

.custom-block-topics-listing {
  height: inherit;
}

.custom-block-topics-listing .custom-block-image {
  width: 200px;
}


/*---------------------------------------
  PAGINATION
-----------------------------------------*/
.pagination {
  margin-top: 40px;
}

.page-link {
  border: 0;
  border-radius: var(--border-radius-small);
  color: var(--p-color);
  font-family: var(--title-font-family);
  margin: 0 5px;
  padding: 10px 20px;
}

.page-link:hover,
.page-item:first-child .page-link:hover,
.page-item:last-child .page-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}

.page-item:first-child .page-link {
  margin-right: 10px;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-small);
}

.active>.page-link, .page-link.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}


/*---------------------------------------
  TIMELINE
-----------------------------------------*/
.timeline-section {
  background-image: url('');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}

.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 16px;
  height: 87%;
  background-color: var(--primary-color);
  position: absolute;
  left: 48px;
  top: 0;
  overflow: hidden;
}

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  background-color: var(--primary-color);
  width: 100%;
}

.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 0px 0px 65px 145px;
}

.timeline-container .vertical-scrollable-timeline li:last-child {
  padding-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li p {

}

.timeline-container .vertical-scrollable-timeline li p:last-child {
  margin-bottom: 0;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0;
  top: 0;
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white-color);
  border-radius:25%;
  border:1px solid #ccc;
  z-index: 1;
  transition: 0.4s all;
  -webkit-box-shadow: 1px 1px 15px 2px rgba(102,102,102,0.2);
box-shadow: 1px 1px 15px 2px rgba(102,102,102,0.2);
}

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 110px;
  height: 110px;
  border: 4px solid #fff;
  position: absolute;
  background-color: transparent;
  border-radius: 25%;
  z-index: -1;
  transition: 0.4s all;
}

.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 25px;
  color: var(--light-color);
}

.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 106%;
  width: 16px;
  background-color: var(--primary-color);
  left: 48px;
  z-index: 0;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: #ccc;
}

.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  background-color: var(--light-color);
}


/*---------------------------------------
  FAQs
-----------------------------------------*/
.faq-section .accordion-item {
  border: 0;
}

.faq-section .accordion-button {
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
}

.faq-section .accordion-item:first-of-type .accordion-button {
  border-radius: var(--border-radius-large);
}

.faq-section .accordion-button:not(.collapsed) {
  border-radius: var(--border-radius-large);
  box-shadow: none;
  color: var(--primary-color);
}

.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  line-height: 40px;
}

/*---------------------------------------
  NEWSLETTER
-----------------------------------------*/
.newsletter-image {
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  CONTACT
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
}

.contact-form .form-floating>textarea {
  border-radius: var(--border-radius-medium);
  height: 150px;
}


/*---------------------------------------
  SUBSCRIBE FORM
-----------------------------------------*/
.subscribe-form-wrap {
  padding: 50px;
}

.subscribe-form {
  width: 95%;
}


/*---------------------------------------
  CUSTOM FORM
-----------------------------------------*/
.custom-form .form-control {
  border-radius: var(--border-radius-large);
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 20px;
  outline: none;
}

.form-floating>label {
  padding-left: 20px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-family: var(--title-font-family);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-semibold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}

.input-menge{width:28.5%;}


/*---------------------------------------
  SITE FOOTER
-----------------------------------------*/
.site-footer {
  border-bottom: 10px solid var(--secondary-color);
  position: relative;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 200px 200px;
  border-color: transparent transparent var(--secondary-color) transparent;
  pointer-events: none;
}

.site-footer-title {
  color: var(--primary-color);
}

.site-footer .dropdown-menu {
  padding: 0;
}

.site-footer .dropdown-item {
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  padding: 4px 18px;
}

.footer-hr{border-bottom:2px solid #ccc;margin-top:35px;}

.site-footer .dropdown-item:hover {
  background-color: transparent;
  color: var(--primary-color);
}

.site-footer .dropdown-menu li:first-child .dropdown-item {
  padding-top: 10px;
}

.site-footer .dropdown-menu li:last-child .dropdown-item {
  padding-bottom: 12px;
}

.site-footer .dropdown-toggle {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.site-footer .dropdown-toggle:hover {
  background-color: var(--primary-color);
  border-color: transparent;
}

footer .nav-link {
    color: var(--white-color)!important;
    text-transform: uppercase;
    font-size: .8em;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  display: block;
  list-style: none;
  line-height: normal;
}

.site-footer-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  font-weight: var(--font-weight-medium);
  line-height: normal;
}

.copyright-text {
  font-size: var(--copyright-font-size);
  color: var(--white-color);
}


/*---------------------------------------
  SOCIAL ICON
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-right: 10px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}


/*---------------------------------------
  RESPONSIVE STYLES
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .navbar {
    background-color: var(--white-color);
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 10px;
    opacity: 1;
    pointer-events: auto;
    max-width: 155px;
    margin-top: 10px;
    margin-bottom: 15px;
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .nav-tabs .nav-link:first-child {
    margin-right: 5px;
  }

  .nav-tabs .nav-link {
    font-size: var(--copyright-font-size);
    padding: 10px;
  }

  .navbar-toggler {
   display:none;
}

  .featured-section {
    border-radius: 0 0 80px 80px;
    padding-bottom: 50px;
  }

  .custom-block-topics-listing .custom-block-image {
    width: auto;
  }

  .custom-block-topics-listing > .d-flex,
  .custom-block-topics-listing-info,
  .custom-block-topics-listing a {
    flex-direction: column;
  }

  .timeline-container .vertical-scrollable-timeline .list-progress {
    height: 75%;
  }

  .timeline-container .vertical-scrollable-timeline li {
    padding-left: 135px;
  }

  .subscribe-form-wrap {
    padding-top: 30px;
    padding-bottom: 0;
  }

  .big-yellow-bg {
    background-color: var(--primary-color);
    width: 100%;
    height: auto;
    margin-top:100px;
    padding-left:25px;
}



  .big-yellow-bg-2 {
    background-color: var(--primary-color);
    width: 100%;
    height: auto;
    margin-top:50px;
    padding-left:25px;
}

    .big-yellow-bg img {
        width: 45vw;
        height: auto;
        position: absolute;
        top: -15%;
        left: 10%;
    }

    .big-yellow-bg-2 img {
    width: 30vw;
    height: auto;
    position: absolute;
    top: -65%;
    left: 5%;
    max-height: 600px;
    max-width: 400px;
}

}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .big-yellow-bg img {
    width: 45vw;
    height: auto;
    position: absolute;
    top: 7%;
    left: 10%;
}

    .big-yellow-bg-2 img {
    width: 30vw;
    height: auto;
    position: absolute;
    top: -15%;
    left: 5%;
    max-height: 600px;
    max-width: 400px;
}


}
