@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Black.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BlackItalic.otf') format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-LightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-MediumItalic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color--digital-blue-1: #0070ff;
  --basic-colors--white: white;
  --primary-color--digital-blue-0-4: #0070ff66;
  --basic-colors--carbon-black: #181818;
  --primary-color--digital-blue-0-8: #0070ffcc;
  --primary-color--digital-blue-0-6: #0070ff99;
  --primary-color--digital-blue-0-2: #0070ff33;
  --secondary-color--baby-ice-blue-1: #78b1f9;
  --secondary-color--baby-ice-blue-0-8: #78b1f9cc;
  --secondary-color--baby-ice-blue-0-6: #78b1f999;
  --secondary-color--baby-ice-blue-0-4: #78b1f966;
  --secondary-color--baby-ice-blue-0-2: #78b1f933;
  --basic-colors--platinum: #eff1f3;
  --basic-colors--black: black;
}

/* ==================== HEADER STYLES ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 24px;
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 1872px;
  height: 72px;
  padding: 12px 16px 12px 32px;
  background-color: rgba(222, 236, 255, 0.5);
  border-radius: 1000px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  z-index: 1001;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 122px;
  height: auto;
}

.header-navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 32px;
}

.header-nav-link {
  font-family: "Satoshi", Helvetica, sans-serif;
  font-weight: 400;
  color: #626262;
  font-size: 14px;
  letter-spacing: -0.14px;
  line-height: 14px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header-nav-link:hover {
  color: #0070ff;
}

.header-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.header-nav-item:hover .header-nav-link {
  color: #0070ff;
}

.header-nav-item:hover .header-nav-arrow path {
  stroke: #0070ff;
}

.header-nav-arrow {
  transition: transform 0.2s ease;
}

.header-nav-item:hover .header-nav-arrow {
  transform: rotate(180deg);
}

.header-right {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.header-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background-color: #ffffff;
  border-radius: 1000px;
  position: relative;
  overflow: hidden;
}

.header-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 1000px;
  background: linear-gradient(
    270deg,
    rgba(213, 58, 58, 0.68) 0%,
    rgba(255, 149, 0, 0.7) 33%,
    rgba(20, 174, 92, 1) 60%,
    rgba(0, 112, 255, 0.81) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.header-phone-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.header-pill-text {
  font-family: "Satoshi", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 16px;
  line-height: 19.2px;
  white-space: nowrap;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background-color: #0070ff;
  border-radius: 1000px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background-color: #005cd9;
  transform: translateY(-1px);
}

.header-cta span {
  font-family: "Satoshi", Helvetica, sans-serif;
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: -0.16px;
  line-height: 16px;
  white-space: nowrap;
}

.header-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.header-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #181818;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Tablet responsive */
@media screen and (max-width: 991px) {
  .site-header {
    padding: 16px;
  }

  .header-bar {
    padding: 12px 16px 12px 24px;
  }

  .header-navbar {
    gap: 24px;
  }

  .header-nav-link {
    font-size: 13px;
  }

  .header-pill {
    padding: 12px 16px;
  }

  .header-cta {
    padding: 12px 20px;
  }

  .header-cta span {
    font-size: 14px;
  }
}

/* Mobile responsive */
@media screen and (max-width: 767px) {
  .site-header {
    padding: 12px;
  }

  .header-bar {
    grid-template-columns: auto 1fr auto;
    height: auto;
    min-height: 64px;
    padding: 12px 16px;
  }

  .header-navbar {
    display: none;
  }

  .header-pill {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .header-mobile-toggle {
    display: flex;
  }

  .header-logo img {
    width: 100px;
  }
}

/* Small mobile */
@media screen and (max-width: 479px) {
  .site-header {
    padding: 8px;
  }

  .header-bar {
    padding: 10px 16px;
    min-height: 56px;
  }

  .header-logo img {
    width: 90px;
  }
}

/* Mega Menu Styles - Distbit Style */
.header-nav-item.has-mega-menu {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 820px;
  padding-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1001;
}

.header-nav-item.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu-container {
  display: flex;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.mega-menu-main {
  flex: 1;
  padding: 32px;
}

.mega-menu-header {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.mega-menu-heading {
  font-family: "Satoshi", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #181818;
  margin: 0 0 8px 0;
}

.mega-menu-subheading {
  font-family: "Satoshi", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #888888;
  margin: 0;
}

.mega-menu-grid {
  display: flex;
  gap: 8px;
}

.mega-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  background: transparent;
  border: 2px solid transparent;
  min-width: 100px;
  flex: 1;
}

.mega-menu-item:hover {
  background: #fafbff;
  border-color: #0070ff;
}

.mega-menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.mega-menu-icon.icon-yellow {
  background: #FFF8E6;
  color: #F5A623;
}

.mega-menu-icon.icon-blue {
  background: #E8F4FF;
  color: #0070FF;
}

.mega-menu-icon.icon-green {
  background: #E6F9F0;
  color: #14AE5C;
}

.mega-menu-icon.icon-purple {
  background: #F3EEFF;
  color: #7B61FF;
}

.mega-menu-icon.icon-gray {
  background: #F5F5F5;
  color: #666666;
}

.mega-menu-icon.icon-red {
  background: #FFE8E8;
  color: #FF4444;
}

.mega-menu-icon svg {
  width: 24px;
  height: 24px;
}

.mega-menu-icon iconify-icon {
  font-size: 24px;
  width: 24px;
  height: 24px;
}

.mega-menu-title {
  font-family: "Satoshi", Helvetica, sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #181818;
  line-height: 1.3;
  margin-bottom: 4px;
}

.mega-menu-desc {
  font-family: "Satoshi", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #888888;
  line-height: 1.4;
}

/* Sidebar */
.mega-menu-sidebar {
  width: 200px;
  background: #fafbff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid #f0f0f0;
}

.mega-menu-promo-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.mega-menu-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu-links-title {
  font-family: "Satoshi", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #181818;
  margin-bottom: 4px;
}

.mega-menu-link {
  font-family: "Satoshi", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #666666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mega-menu-link:hover {
  color: #0070ff;
}

/* Arrow rotation */
.header-nav-item.has-mega-menu:hover .header-nav-arrow {
  transform: rotate(180deg);
}

/* Tablet responsive */
@media screen and (max-width: 991px) {
  .mega-menu {
    width: 680px;
  }
  
  .mega-menu-sidebar {
    width: 180px;
  }
  
  .mega-menu-item {
    min-width: 80px;
    padding: 16px 12px;
  }
}

/* Mobile - hide mega menu */
@media screen and (max-width: 767px) {
  .mega-menu {
    display: none;
  }
}

/* ==================== MOBILE MENU STYLES ==================== */
body.no-scroll {
  overflow: hidden;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 998;
  padding-top: 20px;
  overflow: hidden;
  /* Initial state set by GSAP */
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

.mobile-menu-link {
  font-family: "Satoshi", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #181818;
  text-decoration: none;
  padding: 18px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s ease;
  /* Initial state for GSAP animation */
}

.mobile-menu-link:hover {
  color: #0070ff;
}

/* Mobile Accordion */
.mobile-menu-accordion {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  font-family: "Satoshi", Helvetica, sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #181818;
  cursor: pointer;
}

.mobile-menu-accordion-btn svg {
  transition: transform 0.3s ease;
}

.mobile-menu-accordion-btn.is-open svg {
  transform: rotate(180deg);
}

.mobile-menu-accordion-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  /* Height controlled by GSAP */
}

.mobile-submenu-link {
  font-family: "Satoshi", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #626262;
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 12px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-submenu-link:hover {
  background: #f5f7fa;
  color: #0070ff;
}

.mobile-menu-cta {
  margin-top: 32px;
}

.mobile-menu-cta .header-cta {
  width: 100%;
  justify-content: center;
  padding: 20px 24px;
  font-size: 18px;
}

/* Hamburger Animation */
.header-mobile-toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header-mobile-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.header-mobile-toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Show mobile menu only on mobile */
@media screen and (max-width: 767px) {
  .mobile-menu {
    display: block;
  }
  
  .site-header.menu-open .header-bar {
    background: #ffffff;
    position: relative;
    z-index: 1001;
  }
  
  .header-mobile-toggle {
    position: relative;
    z-index: 1002;
  }
}

/* ==================== END HEADER STYLES ==================== */

body {
  color: #333;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

.section {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
}

.section.is-hero {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 50%), url('../images/bg-back.png');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  padding-top: 140px;
  padding-bottom: 128px;
  display: flex;
  position: relative;
}

.section.is-grey {
  background-color: #eff1f3;
}

.section.is-blue {
  background-image: linear-gradient(90deg, #0070ff, #77b3ff);
}

.duo-container {
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.duo-container.is-hero {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1220px;
}

.boxes {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 524px;
  text-decoration: none;
  display: flex;
}

.box-wrapper {
  grid-column-gap: 24px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 756px;
  height: 190px;
  text-decoration: none;
  display: flex;
}

.box {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.box-image {
  border-radius: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 250px;
  height: 160px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.box-contents {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 6px;
  padding-right: 6px;
  text-decoration: none;
  display: flex;
}

.zonnepanelen {
  color: #eee;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}

.icon-wrap {
  background-color: #fff;
  border-radius: 1000px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2px 6px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.pajamasarrow-right {
  overflow: hidden;
}

.hero-content-text {
  color: #eee;
  letter-spacing: .01em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
}

.content-style {
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 480px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.hero-subtext {
  color: #fff;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #fff;
  border-radius: 1000px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 16px 48px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button.is-blue {
  background-color: #0070ff;
}

.button-text {
  color: #000;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}

.button-text.is-white {
  color: #fff;
}

.hero-text-wrapper {
  width: 100%;
  padding-top: 24px;
}

.container {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1220px;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
}

.hero-heading {
  color: #ffffff;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 120%;
}

.hero-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0%;
}

.hero-overlay.is-mobile {
  display: none;
}

.hero-overlay-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section-style {
  background-color: #eff1f3;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.pill {
  grid-row-gap: 10px;
  background-color: #0070ff;
  border-radius: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.pill-text {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.pill-text.is-blue {
  color: var(--primary-color--digital-blue-1);
}

.xl-heading {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: .75rem;
  font-family: Satoshi, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
  display: inline-block;
}

.xl-heading.is-white {
  color: var(--basic-colors--white);
}

.subtext-medium {
  color: #000;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-decoration: none;
}

.bulletpoints {
  grid-row-gap: 6px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.bullet {
  grid-column-gap: 16px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.lets-iconscheck-fill {
  width: 24px;
  height: 24px;
  overflow: hidden;
}

.bullet-text, .direct-inzicht-in-jouw-verbruik-en-besparing, .complete-installatie-onderhoud-alles-geregeld {
  color: #000c;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.button-wrap {
  grid-column-gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.meer-over-elektrapuntconnect {
  color: #fff;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}

.button-gradient {
  -webkit-backdrop-filter: blur(7.8px);
  backdrop-filter: blur(7.8px);
  background-image: linear-gradient(90deg, #00b2ff, #14ae5c 28%, #ff9500 63%, #d53a3a);
  border-radius: 1000px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  text-decoration: none;
  display: flex;
  position: absolute;
  inset: 0%;
}

.bel-ons {
  color: #000;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}

.image {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.abstract-image {
  width: 100%;
  overflow: hidden;
}

.rectangle-2 {
  min-height: 530.742px;
}

.text-pill {
  grid-column-gap: 12px;
  background-image: linear-gradient(90deg, #aed2ff, #4094ff);
  border-radius: 1000px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 24px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 4px 4px #00000040;
}

.frame-5 {
  background-color: #14ae5c26;
  border-radius: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 14px;
  height: 14px;
  text-decoration: none;
  display: flex;
}

.frame-6 {
  background-color: #14ae5c;
  border-radius: 1000px;
  width: 8px;
  height: 8px;
}

._247-bereikbaar {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
}

.duo-container-2 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  padding: 13px 20px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.content-style-2 {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 689px;
  text-decoration: none;
  display: flex;
}

.blijf-vooroplopen-met-slimme-verduurzaming-2 {
  color: #0070ff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
  display: inline-block;
}

.nav-button-2 {
  grid-row-gap: 10px;
  background-color: #0070ff;
  border-radius: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 48px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.nav-button-3 {
  z-index: 1;
  grid-column-gap: 10px;
  background-color: #fff;
  border-radius: 1000px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 16px 48px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.btn-frame {
  background-color: #fff;
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  padding: 2px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.btn-frame.is-blue {
  background-color: #0070ff;
}

.text-pill-frame {
  background-image: linear-gradient(270deg, #d53a3aad, #ff9500b3 31%, #14ae5c 60%, #0070ffcf);
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  padding: 1.5px;
  display: flex;
  position: absolute;
  top: 20px;
  transform: rotate(-9deg);
}

.text-span {
  color: #0070ff;
  font-style: italic;
  font-weight: 700;
}

.button-icon {
  width: 16px;
}

.section-style-2 {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.xlarge-container {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

._247-content-wrap {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex: 0 auto;
  justify-content: flex-end;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

._247-leftside {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 689px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.pill-2 {
  grid-row-gap: 10px;
  background-color: #0070ff;
  border-radius: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.text {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.frame-8 {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-bottom: 12px;
  text-decoration: none;
  display: flex;
}

.text-2 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.frame-9 {
  -webkit-backdrop-filter: blur(7.8px);
  backdrop-filter: blur(7.8px);
  background-image: linear-gradient(90deg, #00b2ff 0%, #14ae5c 28%, #ff9500 63%, #d53a3a 100%);
  border-radius: 1000px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 177px;
  height: 51px;
  padding: 2px;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: 243px;
  left: -1px;
}

.nav-button-4 {
  grid-column-gap: 10px;
  border: 2px undefined undefined;
  background-color: #fff;
  border-radius: 1000px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 16px 48px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.group {
  object-fit: cover;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 17.3481px;
  text-decoration: none;
  display: flex;
}

.text-3 {
  color: #000;
  letter-spacing: -.01em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}

._247-rightside {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 10px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.content-style-5 {
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 600px;
  text-decoration: none;
  display: flex;
}

._247-rightside-content {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  display: flex;
}

._247-box {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.relume {
  grid-column-gap: 10px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.rectangle-4 {
  object-fit: cover;
}

.heading-4 {
  color: #000;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  text-decoration: none;
}

.text-4 {
  color: #000;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.xlarge-icon {
  object-fit: cover;
  overflow: hidden;
}

.image-wrapper {
  aspect-ratio: 2;
  background-color: #fff;
  background-image: linear-gradient(0deg, #000, #929292);
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.heb-je-een-storing-wij-zijn-247-beschikbaar-0 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
}

.heb-je-een-storing-wij-zijn-247-beschikbaar-1 {
  color: #0070ff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 400;
  line-height: 120%;
  text-decoration: none;
}

.subtext-large {
  color: #000;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.subtext-large.is-white {
  color: var(--basic-colors--white);
}

.section-style-3 {
  background-image: linear-gradient(90deg, #0070ff 0%, #77b3ff 100%);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.testimonial-wrapper {
  grid-row-gap: 80px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  padding-top: 0;
  padding-bottom: 0;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.large-container {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
}

.reviews-content {
  grid-column-gap: 80px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.content-left {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.section-title {
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 24px;
  text-decoration: none;
  display: flex;
}

.pill-3 {
  grid-row-gap: 10px;
  background-color: #fff;
  border-radius: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.text-5 {
  color: #0070ff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-decoration: none;
}

.heading {
  color: #fff;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
}

.text-6 {
  color: #fff;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.frame-7 {
  -webkit-backdrop-filter: blur(7.8px);
  backdrop-filter: blur(7.8px);
  background-image: linear-gradient(90deg, #00b2ff 0%, #14ae5c 28%, #ff9500 63%, #d53a3a 100%);
  border-radius: 1000px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 272px;
  height: 52px;
  padding: 2px;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: 313px;
  left: -2px;
}

.nav-button {
  grid-row-gap: 10px;
  border: 2px undefined undefined;
  background-color: #fff;
  border-radius: 1000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px 48px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.content-right {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.content-style-6 {
  grid-column-gap: 32px;
  border: 2px undefined undefined;
  background-color: #fff;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 18.3px #00000040;
}

.column {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 32px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.content-style-7 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.stars {
  grid-column-gap: 4px;
  object-fit: cover;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.quote {
  color: #000;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.avatar {
  grid-column-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.avatar-image {
  object-fit: cover;
}

.avatar-content {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-7 {
  color: #000;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
}

.text-8 {
  color: #000;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.content-style-8 {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.slider-dots {
  grid-column-gap: 8px;
  object-fit: cover;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.slider-buttons {
  grid-column-gap: 16px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.slider-arrow {
  grid-column-gap: 8px;
  background-color: #fff;
  border-radius: 50px;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 12px;
  text-decoration: none;
  display: flex;
}

.iconamoonarrow-up-2-duotone {
  object-fit: cover;
  overflow: hidden;
}

.section-style-4 {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.container-2 {
  grid-row-gap: 64px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.services-header {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: grid;
}

.dads {
  font-weight: 700;
}

.buttons-wrapper {
  grid-column-gap: 10px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.nav-button-arrow {
  background-color: #0070ff;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.content-style-9 {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 12px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.card-wrapper {
  background-color: #fff;
  border-radius: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 400px;
  padding: 4px;
  text-decoration: none;
  display: flex;
  box-shadow: 0 0 14.4px #eff1f3;
}

.card-blue {
  grid-row-gap: 8px;
  background-color: #0070ff33;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 392px;
  padding-bottom: 6px;
  text-decoration: none;
  display: flex;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 356px;
  padding: 24px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.icon-wrapper {
  background-color: #0070ff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.text-10 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.services-blur {
  background-color: var(--primary-color--digital-blue-0-4);
  filter: blur(50px);
  object-fit: cover;
  border-radius: 1000px;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  text-decoration: none;
  display: flex;
  position: absolute;
  top: -36px;
  left: 201px;
}

.card-button {
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 10px;
  text-decoration: none;
  display: flex;
}

.text-11 {
  color: #0070ff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}

.card-2 {
  background-color: #fff;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 348px;
  padding: 24px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.frame-1 {
  border-radius: 100px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 2px;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  overflow: hidden;
}

.frame-2 {
  grid-row-gap: 10px;
  background-color: #0070ff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  height: 2px;
  padding: 10px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.frame-3 {
  grid-row-gap: 10px;
  background-color: #eff1f3;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 800px;
  height: 2px;
  padding: 10px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.ontdek-alle-slimme-duurzame-energie-oplossingen-die-elektrapuntconnect-aanbiedt-om-jouw-huis-toekoms {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.ontdek-alle-slimme-duurzame-energie-oplossingen-die-elektrapuntconnect-aanbiedt-om-jouw-huis-toekoms-2 {
  color: #0070ff;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.m-heading {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: .75rem;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  text-decoration: none;
  display: inline-block;
}

.m-heading.is-white {
  color: var(--basic-colors--white);
}

.m-heading.is-services {
  font-weight: 400;
  line-height: 150%;
}

.text-span-2 {
  color: var(--primary-color--digital-blue-1);
  font-style: italic;
}

.services-heading-wrapper {
  width: 100%;
  max-width: 1060px;
}

.footer-wrap {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  padding: 80px 64px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.container-3 {
  grid-row-gap: 80px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1280px;
  text-decoration: none;
  display: flex;
}

.component {
  grid-row-gap: 64px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.content-style-10 {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.column-2 {
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.logo {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.logo-2 {
  object-fit: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 42px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.content-style-11 {
  grid-row-gap: 24px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.content-style-12 {
  grid-row-gap: 4px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-12 {
  color: #000;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
}

.text-13 {
  color: #000;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.content-style-13 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.text-14 {
  color: #000;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline;
}

.column-3 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 400px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.head {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 16px;
  text-decoration: none;
  display: flex;
}

.text-15 {
  color: #0070ff;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
}

.link-style {
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  display: flex;
}

.text-16 {
  color: #000;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  text-decoration: none;
}

.credits {
  grid-row-gap: 48px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.footer-brand {
  color: #0070ff;
  text-align: center;
  width: 99%;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, Arial, sans-serif;
  font-size: 108px;
  font-style: italic;
  font-weight: 700;
  line-height: 100%;
  text-decoration: none;
}

.column-4 {
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  display: flex;
}

.row {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.text-18 {
  color: #636363;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}

.footer-links {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.text-19 {
  color: #636363;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Satoshi, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline;
}

.footer {
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  display: flex;
}

.footer.is-hero {
  background-image: url('../images/bg-back.png');
  background-position: 50%;
  background-size: cover;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  padding-top: 128px;
  padding-bottom: 128px;
  display: flex;
  position: relative;
}

.footer.is-grey {
  background-color: #eff1f3;
}

.footer.is-blue {
  background-image: linear-gradient(90deg, #0070ff, #77b3ff);
}

.divider {
  background-color: var(--basic-colors--carbon-black);
  width: 100%;
  height: 1px;
}

.divider.is-blue {
  background-color: var(--primary-color--digital-blue-1);
}

@media screen and (max-width: 991px) {
  .duo-container {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .duo-container.is-hero {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column-reverse;
  }

  .hero-heading {
    font-size: 8vw;
  }

  ._247-content-wrap {
    flex-flow: column;
  }

  .testimonial-wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }

  .reviews-content {
    flex-flow: column;
  }

  .services-header {
    flex-flow: column;
    display: flex;
  }

  .footer-brand {
    font-size: 64px;
  }
}

@media screen and (max-width: 767px) {
  ._247-rightside-content, .content-style-10 {
    flex-flow: column;
  }
}

@media screen and (max-width: 479px) {
  .section.is-hero {
    background-image: url('../images/bg-mobile-back.png');
    justify-content: flex-end;
    align-items: center;
    height: 800px;
    padding-top: 100px;
    padding-bottom: 96px;
  }

  .box-wrapper {
    grid-row-gap: 24px;
    height: auto;
  }

  .box-image {
    border-radius: 12px;
    max-width: none;
    height: auto;
  }

  .pajamasarrow-right {
    width: 10px;
  }

  .hero-content-text {
    font-size: 11px;
  }

  .hero-subtext {
    font-size: 14px;
  }

  .button {
    padding-left: 32px;
    padding-right: 32px;
  }

  .button-text {
    font-size: 15px;
  }

  .hero-text-wrapper {
    margin-bottom: 3rem;
    padding-top: 0;
  }

  .hero-overlay.is-mobile {
    width: 100%;
    height: 100%;
    display: block;
  }

  .hero-overlay.is-desktop {
    display: none;
  }

  .hero-overlay-image {
    display: block;
  }

  .xl-heading {
    font-size: 30px;
  }

  .subtext-medium {
    font-size: 14px;
  }

  .bullet {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: auto 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .button-wrap {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .xlarge-container.is-services {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  ._247-leftside {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .image-wrapper {
    aspect-ratio: 2;
  }

  .subtext-large {
    font-size: 16px;
  }

  .services-header {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .m-heading {
    font-size: 24px;
  }

  .m-heading.is-services {
    font-size: 18px;
  }

  .footer-wrap {
    padding: 24px;
  }

  .column-3 {
    flex-flow: column;
  }

  .row {
    grid-column-gap: 6px;
    grid-row-gap: 6px;
    flex-flow: column;
  }

  .footer.is-hero {
    background-image: url('../images/bg-mobile-back.png');
    justify-content: flex-end;
    align-items: center;
    height: 800px;
    padding-bottom: 96px;
  }
}

#w-node-_9b99edd5-dda7-c66f-05e0-82851fb24814-9744d605 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}