/*
========================
Header area start
========================
*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap');

body {	
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 400;    
	background: #fff;
	color: #191919;	
}

a {
    display: inline-block;
    text-decoration: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

h2 {
    font-weight: 700 !important;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

::selection {
    color: white; 
    background: #26A858;
}

::-webkit-selection {
    color: white; 
    background: #26A858;
}

::-moz-selection {
    color: white; 
    background: #26A858;
}

p {
    font-size: 16px;
    font-weight: 400;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: rgba(0,0,0,.5);   
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {   
    background: #000;
    color: #fff;
    box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -webkit-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
    -moz-box-shadow: 0px 0px 5px rgba(0,0,0,.5);
}

.navbar-brand img {
    max-width: 150px;
}

.header-area {
    background: #FFF;
    padding: 10px 0;
}

.navbar-nav li {
    padding: 10px 20px;
}

.navbar-nav li a {
    font-size: 16px;
    font-weight: 500;
    color: #303338;
    transition: 0.2s all ease;
}

.navbar-nav li .active,
.navbar-nav li a:hover {
    color: #26A858;
}

.navbar-nav .nav-btn {
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    background-color: #26A858;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 10px;
    transition: 0.2s all ease;
}

.navbar-nav .nav-btn:hover {
    background: #FFF;
    color: #26A858;
}

/* hamburger-area */
.hamburger {
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    outline: none!important;
    padding-right: 5px;
}

.hamburger:hover {
    opacity: 0.7; 
}

.hamburger.is-active:hover {
    opacity: 0.7; 
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #000;  
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative; 
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    outline: none;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
    outline: none; 
}

.hamburger-inner::before {
    top: -10px; 
}

.hamburger-inner::after {
    bottom: -10px; 
}

.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    outline: none;
    transition-duration: 0.13s;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}

.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s 
    cubic-bezier(0.33333, 0.66667, 0.66667, 1), 
    opacity 0.1s linear; 
}

.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s 
    cubic-bezier(0.33333, 0.66667, 0.66667, 1), 
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); 
}

.hamburger--collapse.is-active .hamburger-inner {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
    transition-delay: 0.22s;
    outline: none;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); 
}

.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s 
    cubic-bezier(0.33333, 0, 0.66667, 0.33333), 
    opacity 0.1s 0.22s linear; 
}

.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s
    cubic-bezier(0.33333, 0, 0.66667, 0.33333), 
    transform 0.13s 0.25s 
    cubic-bezier(0.215, 0.61, 0.355, 1); 
}

/*=== footer-area start ===*/
.footer-area {
    background-color: #F6FCF8;
}

.footer-main {
    background: #FBF3E2;
    padding: 80px 20px 70px;
    text-align: center;
    position: relative;
    top: 42px;
}

.footer-main h4 {
    font-size: 32px;
    font-weight: 600;
    color: #222222;
    text-align: center;
}

.footer-main p {
    font-size: 16px;
    font-weight: 400;
    color: #303338;
    text-align: center;
    max-width: 660px;
    margin: 20px auto;
}

.footer-main a {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    display: inline-block;
    background: #26A858;
    padding: 12px 25px;
    border-radius: 10px;
    margin-top: 25px;
    transition: 0.2s all ease;
}

.footer-main a:hover {
    background: #FFF;
    color: #26A858;
}

.footer-bg {
    background: #303338;
    padding: 50px 0;
}

/*=== hero-area start ===*/
.hero-area {
    background: #FBF3E2;
    padding: 0;
}

.hero-part {
    position: relative;
    top: 50px;
    padding-bottom: 115px;
}

.hero-left {
    margin-top: 10px;
    max-width: 550px;
}

.hero-left h2 {
    font-size: 48px;
    font-weight: 700;
    color: #222222;
}

.hero-left p {
    font-size: 16px;
    font-weight: 400;
    color: #303338;
    margin: 18px 0;
    padding-right: 15px;
}

.hero-left ul {
    list-style: inside;
    color: #000;
    list-style-type: disc;
    font-size: 16px;
    font-weight: 400;
    color: #303338;
}

.hero-left a {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    display: inline-block;
    transition: 0.2s all ease;
    text-decoration: underline;
    margin-bottom: 11px;
}

.hero-left a i {
    font-size: 18px;
    margin-right: 10px;
    min-width: 20px;
}

.hero-left a:hover {
    opacity: 0.55;
}

.text-info {
    font-size: 16px;
    font-weight: 500;
    color: #000 !important;
    display: inline-block;
    transition: 0.2s all ease;
    margin-bottom: 11px;
}

.text-info i {
    font-size: 18px;
    margin-right: 10px;
    min-width: 20px;
}

.text-info.red i {
    font-size: 20px;
    margin-right: 8px;
    color: #EB648B;
    margin-left: 2px;
}

.text-info.green i {
    color: #26A858;
}

.hero-main img {
    width: 100%;
    border-radius: 25px;
}

.hero-right {
    position: relative;
}

.hero-info-part {
    background: rgba(238, 213, 161, 0.16);
    height: 180px;
    padding: 40px 0;
}

.hero-info-part .d-flex {
    margin: 0;
}

.stat_block {
    width: 33.33%;
}

.stat_block.small {
    width: 25% !important;
}

.stat_block strong {
    display: block;
    font-size: 16px;
    color: #000;
}

.stat_block .stat {
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.stat_block small {
    display: block;
    font-size: 16px;
}

.play-button img {
    max-width: 130px;
    position: absolute;
    top: 20%;
    left: -55px;
    z-index: 999;
}

.hero-cnt {
    max-width: 276px;
    background: #FFFFFF;
    padding: 12px 15px;
    display: flex;
    align-items: center;   
    border-radius: 8px;
    position: absolute;
    top: 11%;
    right: -50px;
    z-index: 999;
    padding-left: 20px;
}

.hero-cnt img,
.hero-cnt2 img {
    max-width: 50px;
} 

.hero-cnt p,
.hero-cnt2 p {
    font-size: 16px;
    font-weight: 400;
    color: #303338;
    margin: 0;
    margin-left: 20px;
}

.hero-cnt2 {
    max-width: 276px;
    background: #FFFFFF;
    padding: 12px 15px;
    display: flex;
    align-items: center;   
    border-radius: 8px;
    position: absolute;
    bottom: 15%;
    left: -80px;
    z-index: 999;
    padding-left: 20px;
}

@media screen and (min-width: 1200px) and (max-width: 1320px) {
    .hero-cnt {
        right: 0;
    }
}

/*=== sec3-area start ===*/
.sec2-area {
    padding: 260px 0 130px;
}

.sec2-upper {
    max-width: 925px;
    margin: auto;
}

.sec2-upper p {
    font-size: 16px;
    font-weight: 400;
    color: #797D74;
}

.sec2-main {
    padding-top: 25px;
}

.sec2-left img,
.sec2-right img {
    width: 100%;
    border-radius: 10px;
}

.sec2-left,
.sec2-right {
    position: relative;
}

.sec2-cnt .more-btn {
    font-size: 16px;
    font-weight: 500;
    color: #222222;
    display: inline-block;
    background: #FBC047;
    padding: 12px 25px;
    position: absolute;
    border-radius: 8px;
    right: 36px;
    bottom: 56px;
    transition: 0.2s all ease;
} 

.sec2-cnt .more-btn:hover {
    background: #222222;
    color: #FBC047;
}

.sec2-cnt {
    padding: 24px 0;
}

.sec2-cnt .desc {
    font-size: 22px;
    font-weight: 500;
    color: #222222;
    transition: 0.2s all ease;
}

.sec2-cnt .desc:hover {
    opacity: 0.75;
}

/*=== energ-area start ===*/
.energ-area {
    background: #F7F8FC;
    padding: 50px 0;
}

.energ-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.energ-main p {
    font-size: 28px;
    font-weight: 700;
    color: #222222;
    margin: 0;
}

.energ-main p span {
    color: #FBC047;
}

.energ-main img {
    max-width: 340px;
}

/*=== faq-area start ===*/
.faq-area {
    padding: 150px 0;
}

.faq-title h2 {
    font-size: 22px;
    font-weight: 700;
    color: #222222;
    text-align: left;
}

.faq-main {
    max-width: 100%;
    margin: 30px auto 0;
}

.faq-main ul {
    list-style: inside;
    color: #000;
    list-style-type: disc;
    font-size: 16px;
    font-weight: 400;
    color: #303338;
}

.faq-main ul li {
    margin-bottom: 25px;
}

.faq-inner p {
    font-size: 16px;
    font-weight: 400;
    color: #797D74;
}

p.small {
    font-size: 13px;
    font-weight: 400;
    color: #797D74;
}

.faq-inner a {
    font-size: 16px;
    font-weight: 500;
    color: #26A858;
    display: inline-block;
    margin-bottom: 10px;
}

.faq-main .ziehharmonika h3 {
    font-size: 18px;
    font-weight: 500;
    padding-right: 50px;
    color: #434343;
}

/*=== popup area start ===*/
.modal-title {
    text-align: center;
}

.modal-content,
.modal-dialog {
    border-radius: 10px;
    background: #FFF!important;
}

.modal-content button {
    text-align: right;
    padding: 10px 20px 0;
    outline: none;
}

.modal-body {
    background: #FFF!important;
    max-width: 562px;
    padding: 10px 25px 30px;
}

.modal-content {
    background: #FAFAFA;
    border-radius: 10px;
}

.popup-upper h4 {
    font-size: 24px;
    font-weight: 700;
    color: #434343;
    text-align: center;
}

.popup-upper p {
    font-size: 16px;
    font-weight: 400;
    color: #303338;
    text-align: center;
    margin: 14px 0;
}

.popup-upper p a {
    color: #303338;
    text-decoration: underline;
}

.popup-form input {
    width: 100%;
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #7E7D7D;
    background: #F7F7F7;
    padding: 15px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: none;
    outline: none;
}

.form-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.form-inner input {
    width: 32%;
}

.popup-form input::placeholder {
    opacity: 1;
}

.popup-form .bg2 {
    background: #E9F8FE;
}

.popup-form label {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.popup-form select {
    font-size: 16px;
    font-weight: 400;
    color: #7E7D7D;
    display: block;
    width: 100%;
    background: #F7F7F7;
    padding: 15px 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(../images/down.png);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: 95% 50%;
    border: none;
    outline: none;
    cursor: pointer;
}

.popup-form button {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    background: #26A858;
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    transition: 0.2s all ease;
}

.popup-form button:hover {
    opacity: 0.8;
}

.popup-box {
    background: #F7F7F7;
    padding: 30px 30px;
    border-radius: 10px;
    margin-top: 20px;
}

.popup-box p {
    font-size: 16px;
    font-weight: 400;
    color: #7E7D7D;
    text-align: center;
}

.box-item {
    max-width: auto;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row wrap;
}

.box-item span {
    font-size: 18px;
    font-weight: 600;
    color: #303338;
    min-width: 48px;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 10px;
    height: 48px;
    background: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 8px;
}

.upup-btm p {
    font-size: 16px;
    font-weight: 400;
    color: #7E7D7D;
    text-align: center;
    margin-top: 16px;
    margin-bottom: 0;
}

/*=== inner-page start ===*/
.banner-area {
    background-image: url(../images/banner.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px 0;
}

.banner-cnt h2 {
    font-size: 42px;
    font-weight: 700;
    color: #FFF;
    text-align: left;
}

.banner-cnt p {
    font-size: 22px;
    font-weight: 400;
    color: #FFF;
    margin: 5px auto 0;
    text-align: left;
}

/*=== solar-panel start ===*/
.solar-panel {
    padding: 85px 0;
}

.solar-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222222;
    text-align: center;
}

.solar-item {
    background: #F2F8F4;
    padding: 10px 30px 45px;
    border-radius: 10px;
    margin-bottom: 70px;
}

.solar-item img {
    width: 100%;
    border-radius: 10px;
    margin-top: -40px;
}

.solar-cnt {
    padding-top: 30px;
}

.solar-cnt h4 {
    font-size: 22px;
    font-weight: 500;
    color: #434343;
}

.intro p {
    font-size: 16px;
    font-weight: 400;
    color: #303338;
    margin: 0 auto;
    max-width: 1000px;
    margin-bottom: 10px;
}

.solar-cnt p {
    font-size: 14px;
    font-weight: 400;
    color: #222222;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.solar-cnt p span {
    font-size: 18px;
    font-weight: 500;
    color: #26A858;
}

.solar-title {
    margin-bottom: 20px;
}

/*=== service-area start ===*/
.service-area {
    padding: 40px 0;
}

.service-left img {
    width: 100%;
}

.service-right h4 {
    font-size: 32px;
    font-weight: 700;
    color: #222222;
}

.service-right ul li {
    font-size: 16px;
    font-weight: 400;
    color: #222222;
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.service-right ul li img {
    max-width: 20px;
    margin-right: 14px;
}

/*=== meer-area start ===*/
.meer-area {
    padding: 54px 0;
}

.meer-main h2 {
    font-size: 32px;
    font-weight: 700;
    color: #434343;
    margin-bottom: 30px;
}

.meer-main ul li img {
    max-width: 20px;
    margin-right: 14px;
    margin-top: 8px;
}

.meer-main ul li {
    font-size: 16px;
    font-weight: 400;
    color: #303338;
    display: flex;
    align-items: flex-start;
    border: 1px solid #DEF2E6;
    padding: 20px 20px;
    border-radius: 10px;
    margin: 20px 0;
}


/*=== install-area start ===*/
.install-area {
    padding: 140px 0 80px;
}

.install-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 25px;
}


/*accordian*/
.install-main {
    max-width: 970px;
    margin: 0 auto;
}

.ziehharmonika h3 {
    font-weight: 500;
    font-size: 22px;
    color: #222222;
    text-align: left;
    padding: 16px 25px;
    cursor: pointer;
    margin-top: 0;
    margin-bottom: 18px;
    padding-right: 40px;
    transition: 0.25s all;
    position: relative;
    background: #F6FCF8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.ziehharmonika h3 a {
    font-size: 16px;
    font-weight: 500;
    color: #303338;
    background: #FBC047;
    display: inline-block;
    padding: 9px 20px;
    border-radius: 8px;
    margin-right: 30px;
}

.ziehharmonika h3.active {
    margin-bottom: 0;
    border-radius: 10px 10px 0 0;
}

.ziehharmonika h3.alignLeft {
    padding-left: 35px;
}

.ziehharmonika > div {
    display: none;
    background: #F6FCF8;
    text-align: left;
    padding: 16px 25px;
    margin-bottom: 16px;
    border-radius: 0 0 10px 10px;
}

.insiner-left {
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    text-align: center;
    min-height: 130px;
}

.insiner-left img {
    width: 100%;
}

.inner-cnt h4 {
    font-size: 18px;
    font-weight: 500;
    color: #434343;
}

.inner-cnt p {
    font-size: 16px;
    font-weight: 400;
    color: #434343;
}

.inr2 {
    margin-top: 45px;
}

.ziehharmonika .arrowDown {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 13.0px 7.5px 0 7.5px;
    border-color: #272e35 transparent transparent transparent;
    position: absolute;
    bottom: 0;
    left: 40px;
    transition: 0.25s all;
    opacity: 0;
}

.ziehharmonika .collapseIcon {
    position: absolute;
    right: 20px;
    top: 45%;
    font-size: 18px;
    -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
}

.ziehharmonika .collapseIcon.alignLeft {
    right: initial;
    left: 20px;
}

.ziehharmonika .collapseIcon i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    color: #222222;
    padding: 0;
    margin: 0;
}

.ziehharmonika .collapseIcon .fa-sort-up {
    color: #FFF;
    background: #26A858;
    padding-bottom: 0;
    padding-top: 7px;
} 

.modal-footer p {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0;
    margin-bottom: 0;
    opacity: 0.6;
}

.box-item span.toevoeging {
    cursor: pointer;
    transition: all 0.2s ease;
}

.box-item span.toevoeging:hover {
    background: #26A858;
    color: #fff;
}

#form_errors span {
    display: block;
}

#formStatus p {
    font-size: 16px;
}

#informatieavond_container {
    font-weight: 700;
}

break{
    flex-basis: 100%;
    width: 0px; 
    height: 0px; 
    overflow: hidden;
}

.dbl-area {
    background-color: #F6FCF8;
    margin-top: 225px;
}

.dbl-area .banner {
    margin-top: -175px;
}

.dbl-area a {
    color: #000;
    height: 25px;
}

.dbl-area a i {
    color: rgb(39 169 89);
    transition-duration: .2s;
    will-change: transform;
    margin-left: 10px;
}

.dbl-area a:hover i {
    margin-left: 5px;
}

.checklist {
    padding: 25px 100px 25px 35px;
    border-radius: 15px;
    width: auto;
}

.checklist h3 {
    font-weight: 700;
}

.checklist li {
    font-size: 16px;
    padding: 5px 0;
}

.checklist img {
    width: 20px;
    margin-right: 5px;
}

.custom-checkbox {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 35px;
    background: #F7F7F7;
    border-radius: 10px;
    margin-bottom: 5px;
}

.custom-control-label {
    cursor: pointer;
}

.custom-control-input:focus~.custom-control-label::before {
    border-color: #26A858 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.custom-control-input:checked~.custom-control-label::before {
    border-color: #26A858 !important;
    background-color: #26A858 !important;
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: rgb(55, 189, 86) !important;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    background-color: rgb(55, 189, 86) !important;
    border-color: rgb(55, 189, 86) !important;
}

.extra_info {
    padding-top: 0;
}

.extra_info .inner {
    padding-left: 50px;
}

.extra_info img {
    border-radius: 20px;
}

.img-gemeente {
    max-height: 50px;
    display: inline-block;
    margin-left: 35px;
}

.faq-inner .row {
    padding: 0;
}

#choices .choise {
	background: #fff;
	overflow: hidden;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-webkit-box-shadow: 3px 4px 18px 0px rgba(0,0,0,0.10);
	-moz-box-shadow: 3px 4px 18px 0px rgba(0,0,0,0.10);
	box-shadow: 3px 4px 18px 0px rgba(0,0,0,0.10);
	display: flex;
	margin-bottom: 15px;
	min-height: 270px;
}

#choices .choise .afb {
	background: white;
	width: 150px;
}

#choices .choise p {
	display: block;
}

#choices .choise .afb .focuspoint {
	height: 100%;
}

#choices .choise .text {
	flex: 1;
	line-height: 1.3;
	padding: 25px 35px;
}

#choices .choise .btn-success {
    color: #fff !important;
    transition: all 0.2s ease;
}
#choices .choise .btn-success:hover {
    opacity: 0.6;
}