/* ------ Fonts ------ */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* ------ Icons ------ */
.material-symbols-outlined {
  font-weight: 300;
  display: flex !important;
}

.material-symbols-outlined.solid {
  font-variation-settings:
  'FILL' 1
}


/* ------ Variables ------ */
:root {
    /* Fonts */
    --font-family-body: "Roboto", sans-serif;
    --font-family-titles: "Lato", sans-serif;
    
    /* Colors */
    --color-white-std: #ffffff;

    --color-lightgrey-std: #F7F7F7;
    --color-lightgrey-dark: #EFEDED;

    --color-grey-std: #999999;

    --color-corporate1-light: #1F2F5A;
    --color-corporate1-std: #091742;

    --color-corporate2-std: #64A4D4;

    --color-corporate3-std: #DA4162;

    --color-cta1-std: #85AA25;

    --color-gradient-corporate1: linear-gradient(0deg,rgba(9, 23, 66, 1) 0%, rgba(22, 39, 96, 1) 100%);
    --color-radial-gradient-corporate1: radial-gradient(at top left,rgba(22, 39, 96, 1) 0%, rgba(9, 23, 66, 1) 60%);

    --color-gradient-lightgrey: linear-gradient(0deg, rgba(255, 255, 255, 1) 50%, rgba(247, 247, 247, 1) 100%);

    --overlay-black0-black50: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);

    /* Radius */
    --border-radius-sm: 15px;
    --border-radius-md: 20px;
    --border-radius-std: 25px;
    --border-radius-lg: 35px;

     /* Box-shadow */
    --box-shadow-sm: 1px 1px 3px 1px rgba(0,0,0,0.15);
    --box-shadow-std: 1px 1px 5px 1px rgba(0,0,0,0.15);
   
}

.navbar {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23fff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ------ Default / Bootstrap / General ------ */
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern", "liga", "clig", "calt";
  font-kerning: normal;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: 1rem;
  color:var(--color-corporate1-std);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6,
.h1,.h2,.h3,.h4,.h5,.h6 {
  font-family: var(--font-family-titles);
  font-weight: 900;
}

:where(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) a {
  text-decoration: none;
}

html.font-size-medium {
  font-size: 18px;
}
html.font-size-large {
  font-size: 19px;
}

.font_mobile_small {
  font-size: 0.7rem;
}

.label {
  background-color: var(--color-corporate2-std);
  color: var(--color-white-std);
  padding: 2px 10px;
  border-radius: 5px;
  font-family: var(--font-family-titles);
  font-weight: 900;
  font-size: 13px;
  display: inline-block;
}

.label--attention {
  background-color: var(--color-corporate3-std);
}

.subtitle {
  font-family: var(--font-family-titles);
  font-weight: 400;
  font-size: 075%;
  display: block;
}

.subtitle_seperate {
  font-family: var(--font-family-titles);
  font-weight: 400;
  font-size: 1.2rem;
  display: block;
}

ol, ul {
  padding-left: 0rem;
  list-style-position: initial;
  margin: 0px 0px 0px 14px;
}

ul.clean {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

a,
a:hover {
  color: inherit;
}

ul a,
ul a:hover {
  color: inherit;
  text-decoration: none;;
}

blockquote {
  margin: 0 0 1rem;
  padding: 30px 50px;
  background-color: var(--color-lightgrey-std);
  border-radius: var(--border-radius-lg);
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}

blockquote::before {
  content: '“';
  font-size: 36px;
  position: absolute;
  top: 5px;
  left: 30px;
}

blockquote::after {
  content: '“';
  font-size: 36px;
  position: absolute;
  bottom: -14px;
  right: 30px;
}

.z_index_1 {
  z-index: 1;
}

.wrapper {
  padding: 0px;
}

.btn {
  border-radius: var(--border-radius-std) !important;
  box-shadow: var(--box-shadow-sm) !important;
  padding: 10px 20px;
}

.btn-sm {
  --bs-btn-padding-y: 0.3rem;
  --bs-btn-padding-x: 0.9rem;
  --bs-btn-font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-cta1-std) !important;
  border: var(--color-cta1-std) !important;
}

.btn-outline-primary {
  border-color: var(--color-cta1-std) !important;
  color: var(--color-cta1-std) !important;
}

.btn-outline-primary:hover {
  background-color: var(--color-white-std) !important;
  border-color: var(--color-cta1-std) !important;
  color: var(--color-cta1-std) !important;
}

.btn-secondary {
  background-color: var(--color-corporate1-std) !important;
  border: var(--color-corporate1-std) !important;
}

.btn-secondary:hover {
  background-color: var(--color-corporate1-light) !important;
  border: var(--color-corporate1-light) !important;
}

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

.bg_lightgrey_std {
  background-color: var(--color-lightgrey-std);
  color: var(--color-corporate1-std);
}

.bg_lightgrey_dark {
  background-color: var(--color-lightgrey-dark);
  color: var(--color-corporate1-dark);
}

.bg_lightgrey_gradient {
  background: var(--color-gradient-lightgrey);
  background-size: auto 200px;
  background-repeat: no-repeat;
}

.bg_corporate1_std {
  background-color:var(--color-corporate1-std);
  color: var(--color-white-std);
}

.bg_corporate1_light {
  background-color:var(--color-corporate1-light);
  color: var(--color-white-std);
}

.bg_corporate1_gradient {
  background: var(--color-gradient-corporate1);
  color: var(--color-white-std);
}

.bg_corporate1_radialgradient {
  background: var(--color-radial-gradient-corporate1);
  color: var(--color-white-std);
}

.bg_corporate3_std {
  background-color:var(--color-corporate3-std);
  color: var(--color-white-std);
}

.overlay_black {
  background: var(--overlay-black0-black50);
 }

.color_white_std {
  color: var(--color-white-std) !important;
}

.color_cta_std {
  color: var(--color-cta1-std);
}

.border_radius_sm {
  border-radius: var(--border-radius-sm);
}

.border_radius_std {
  border-radius: var(--border-radius-std);
}

.border_radius_md {
  border-radius: var(--border-radius-md);
}

.border_radius_lg {
  border-radius: var(--border-radius-lg);
}

.border_radius_lg_top {
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.border_radius_lg_right {
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
}

.border-dark {
  border-color: var(--color-corporate1-light) !important;
}

.border-light {
  border-color: var(--color-lightgrey-dark) !important;
}

.box_shadow_std {
  box-shadow: var(--box-shadow-std);
}

.icon_md,
.material-symbols-outlined.icon_md {
  height: 70px;
  width: auto;
  font-size: 70px;
}

.full_row_bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.img_control {
  object-fit: cover;
  object-position: center center;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.img_xs {
  height: 100px !important;
}

.img_sm {
  height: 160px !important;
}

.img_md {
  height: 200px !important;
}

.img_std {
  height: 260px !important;
}

.img_lg {
  height: 300px !important;
}

.img_xl {
  height: 360px !important;
}

.h_min_500 {
  min-height: 500px;
}

/* ------ Header ------ */
.pre_nav {
  border-radius: 0 0 var(--border-radius-std) var(--border-radius-std);
}

.navbar-brand img {
  height: 60px;
  width: auto;
}

#text-size-controls button {
  background-color: transparent;
  border: none;
}

.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 8px;
  border-radius: 0px 0px var(--border-radius-sm) var(--border-radius-sm);
  border: none;
  box-shadow: var(--box-shadow-std);
}

.navbar-nav {
  border-radius: var(--border-radius-lg);
  background: var(--color-gradient-corporate1);
}

.nav-link {
  color: var(--color-white-std) !important;
}

.nav-link:hover {
  color: var(--color-lightgrey-std) !important;
}

.dropdown-item.active, .dropdown-item:active {
  color: var(--color-corporate1-std);
  text-decoration: none;
  background-color: var(--color-lightgrey-std);
}

.mobile_header__account {
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
  padding: 0px 25px 5px 15px;
  height: 72px;
}

.mobile_header__account .material-symbols-outlined {
  font-size: 36px;
}

.mobile_header__menu {
  border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
  padding: 10px 14px 5px 22px;
  height: 72px;
}

.navbar-toggler {
  border: none;
}

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

.breadcrumbs {
  color: var(--color-grey-std);
}

.breadcrumbs a {
    color: var(--color-grey-std);
    text-decoration: none;
}

.breadcrumbs .material-symbols-outlined {
  font-size: 16px;
}
/* ------ Footer ------ */
#wrapper-footer {
  background-position-y: top 80px;
}

.site-footer .btn {
  width: 200px;
}

.site-footer > div:first-child::after {
  content: '';
  position: absolute;
  height: 243px;
  width: 430px;
  background-image: url('https://www.energiebesteding.com/wp-content/uploads/2025/08/energiebesteding_element.webp');
  background-position: -57px 97px;
  background-repeat: no-repeat;
  background-size: 70%;
  bottom: 0px;
}

/* ------ Homepage & std elements ------ */
#carouselHomeHero  .carousel-item img {
  height: 550px;
  object-fit: cover;
}

.hero_cta_block {
  z-index: 1;
  background: var(--color-radial-gradient-corporate1);
}

/* Tijdelijk voor form */
#adaptivity-energy-form-wrapper form h3,
#adaptivity-energy-form-wrapper form > p {
  display: none;
}

.main-ef-form .ef-input-block {
  margin-bottom: 0px;
}

.main-ef-form label {
  margin-bottom: 0px;
  line-height: 1;
}

.main-ef-form .input-block input {
  height: 38px;
  line-height: 38px;
  padding: 0px 15px 0px 15px;
}

#adaptivity-energy-form-wrapper svg {
  display: none;
}

.EnergyForm-next {
  padding: 10px 30px;
  width: auto;
  background-color: var(--color-cta1-std);
  border: 2px solid var(--color-cta1-std);
  font-weight: 600;
  cursor: pointer;
  line-height: 18px;
  border-radius: var(--border-radius-std);
  color: #fff;
  font-size: 1rem;
}
/* Tijdelijk voor form */

.bg_element_bottom_right {
  position: relative;
}

.bg_element_bottom_right::after {
  content: '';
  position: absolute;
  height: 250px;
  width: 406px;
  background-image: url('https://www.energiebesteding.com/wp-content/uploads/2025/08/energiebesteding_element.webp');
  background-position: 226px 100px;
  background-repeat: no-repeat;
  background-size: 70%;
  bottom: 0px;
  right: 0px;
}

/* FAQ */

/* Reviewpage */
.reviewpage_reviews img {
  width: 160px;
  height: 100px;
  object-fit: cover;
}

/* Landingspage */
.landingspage_hero_ct::before,
.hero_default::before {
  content: '';
  background:var(--overlay-black0-black50);
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: var(--border-radius-lg);
}

.hero_action_sticker {
  font-family: var(--font-family-titles);
  position: absolute;
  background-color: var(--color-corporate3-std);
  color: var(--color-white-std);
  font-size: 20px;
  font-weight: 800;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: revert;
  align-items: center;
  padding: 20px;
  width: 120px;
  text-align: center;
  line-height: 1;
  left: -70px;
  top: calc(50% - 120px);
}

/* Accordion */
.accordion {
  box-shadow: var(--box-shadow-std);
  border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) var(--border-radius-lg);
}

.accordion-item:first-of-type {
  border-top-left-radius: 0px;
  border-top-right-radius: var(--border-radius-lg);
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0px !important;
  border-top-right-radius: var(--border-radius-lg)!important  ;
}

.accordion-item:last-of-type {
  border-bottom-left-radius: var(--border-radius-lg);
  border-bottom-right-radius: var(--border-radius-lg);
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius:var(--border-radius-lg)!important;
  border-bottom-left-radius: var(--border-radius-lg)!important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--color-lightgrey-std);
  color: var(--color-corporate1-std);
  font-weight: 700;
}

.accordion-button::after {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin-left: auto;
  border-radius: 50%;
  background-color: var(--color-corporate1-std) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 50% !important;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Carousel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none !important;
  width: auto;
  height: auto;
}

/* Voeg Material Icons toe */
.carousel-control-prev-icon::before {
  font-family: 'Material Symbols Outlined';
  content: "chevron_left"   !important;
  font-size: 1.8rem;
  color: #000;
}

.carousel-control-next-icon::before {
  font-family: 'Material Symbols Outlined';
  content: "chevron_right" !important;
  font-size: 1.8rem;
  color: #000;
}

#carouselHomeHero .carousel-indicators {
  justify-content: right;
  margin-right: 50px;
}

#carouselHomeHero .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

#customer_reviews_carousel img {
  width: 50%;
  height: 150px;
  border-radius: var(--border-radius-md);
  object-fit: cover;
}

.customer_reviews_carousel_title {
  height: 34px;
}

#customer_reviews_carousel .carousel-control-prev {
  left: -33px;
  width: 30px;
}

#customer_reviews_carousel .carousel-control-next {
  right: -32px;
}

#customer_reviews_carousel .carousel-control-next-icon,
#customer_reviews_carousel .carousel-control-prev-icon {
  width: 16px;
  height: 16px;
  background-size: 100% 100%;
  line-height: 1;
}

#customer_reviews_carousel .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23091742'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  position: relative;
}

#customer_reviews_carousel .carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23091742'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  position: relative;
}

.carousel-control-next-icon::before,
.carousel-control-prev-icon::before {
  content: '';
  position: absolute;
  width: 29px;
  height: 29px;
  top: -4px;
  left: -5px;
  background-color: var(--color-white-std);
  z-index: -1;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--box-shadow-sm);
  padding: 0px 0px 0px 1px;
}

/* Google widget */
.ti-widget.ti-goog .ti-col-2 .ti-review-item {
  -ms-flex: 0 0 33.33% !important;
  flex: 0 0 33.33% !important;
  max-width: 33.33% !important;
}


/* CF7 */
.wpcf7 {
  max-width: none;
}

.form-line {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin: 0px 0px 5px 0px;
}

.form-line div:first-child {
  width: 180px;
}

.form-line div:nth-child(2) {
  width: 200px;
}

.form-line input,
.form-line select,
.form-line textarea {
  flex: 1;
  padding: 0.4em;
  max-width: 100%;
  line-height: 1.2 !important;
}

.form-agrement {
  width: 390px;
  margin: 0px 0px 10px 0px;
}

.checkbox-line {
  display: block;
}

.checkbox-line .wpcf7-list-item {
  margin-left: 0;
}

.wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  align-items: start;
}

.wpcf7-checkbox .wpcf7-list-item input {
  margin: 5px 10px 0px 0px;
}

.wpcf7 input[type="submit"] {
  --bs-btn-color: inherit;
}

.wpcf7-spinner {
  position: absolute;
}

.form-agrement .wpcf7-list-item label  {
  display: flex;
  align-items: start;
}

.form-agrement .wpcf7-list-item label input {
  margin: 2px 8px 0px 0px;
}

.form-agrement .wpcf7-list-item {
  margin: 0px;
}

.form-agrement .wpcf7-list-item .wpcf7-list-item-label {
  display: block;
  margin: 0px;
  font-size: 0.75rem;
  color: var(--color-grey-std);
  line-height: 1.3;
}

@media screen and (max-width:992px) {
  /* */
  .bg_mobile_delete {
    background-color: transparent !important;
  }
  .bg_lightgrey_std_mobile {
    background-color: var(--color-lightgrey-std);
    color: var(--color-corporate1-std);
    background-image: none !important;
  }
  .bg_image_reset_mobile {
     background-image: none !important;
  }
  .border_radius_lg_bottom_mobile {
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
  }
  /* Header */
  .navbar-nav {
    border-radius: var(--border-radius-lg);
    background: var(--color-gradient-corporate1);
    height: 100vh;
    border-radius: 0px;
    margin: 15px 0px 0px 0px;
  }
  .dropdown-menu[data-bs-popper] {
    box-shadow: none;
    background-color: transparent;
  }
  .dropdown-menu[data-bs-popper] a {
    color: var(--color-white-std);
  }
  .navbar-brand img {
    height: 54px;
    width: auto;
  }
  /* Homepage */
  .form-line div:nth-child(2) {
    width: 134px;
  }
  .form-agrement {
    width: 100%;
  }
  #customer_reviews_carousel img {
    width: 40%;
    height: 128px;
  }
  /* Carousel */
  #customer_reviews_carousel .carousel-control-next {
    right: 0px;
  }
}

@media screen and (max-width:576px) {
  .border_radius_mobile_reset {
    border-radius: 0px;
  }
  .border_radius_mobile_reset::before {
    border-radius: 0px;
  }
  .flip_bg_image_mobile {

  }
  .img_xs_mobile {
    height: 100px !important;
  }

  .img_sm_mobile {
    height: 160px !important;
  }

  .img_md_mobile {
    height: 200px !important;
  }

  .img_std_mobile {
    height: 260px !important;
  }

  .img_lg_mobile {
    height: 300px !important;
  }

  .img_xl_mobile {
    height: 360px !important;
  }
  /* Homepage */
  .hero_ct {
    margin: 0px 0px 400px 0px !important;
  }
  .hero_cta_block {
    bottom: -360px;
    top: auto !important;
  }
  .form-line div:first-child {
    width: 150px;
  }
  #carouselHomeHero .carousel-item img {
    height: 400px;
    object-fit: cover;
    object-position: calc(100% + 190px) center;
  }
}