:root {
  --c-white: #FBFAF7;
  --c-black: #3d3d3d;
  --c-light: #EFEDED;
  --c-green-light: #AFEBC9;
  --c-green-dark: #6CCF9A;
  --space-xs: 20px;
}

html:has(body.az-loading-body-mobile), .az-loading-body-mobile {
  overflow: hidden;
}

html body {
  font-family: proxima-nova, sans-serif;
  line-height: 1.5;
  font-weight: 300;
  font-size: 24px;
  background-color: var(--c-white);
  color: var(--c-black);
  padding: 0;
}
html body.az-loading-body-mobile #menu-switch {
  display: none;
  position: relative;
  z-index: 20;
  cursor: pointer;
}
html body.az-loading-body-mobile #menu-switch:before {
  display: block !important;
}
html body.az-loading-body-mobile #menu-switch:after {
  display: none !important;
}

.fa-sharp.highlight {
  background: #AFEBC9;
  background: linear-gradient(to top right, #6CCF9A 0%, #AFEBC9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hyphens {
  hyphens: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition-duration: 0.4s;
  transition-property: color;
  transition-timing-function: ease-in-out;
}
a:hover {
  color: var(--c-green-light);
}

.no-transition {
  transition: none !important;
}

#persy-widget {
  background: var(--c-white);
}

h1, h2, h3, h4, h5, h6, .hl {
  font-weight: 600;
  font-family: proxima-nova, sans-serif;
  margin-bottom: 60px;
  line-height: 0.95;
}
h1 em, h1 strong, h2 em, h2 strong, h3 em, h3 strong, h4 em, h4 strong, h5 em, h5 strong, h6 em, h6 strong, .hl em, .hl strong {
  font-weight: 600;
  background: #AFEBC9;
  background: linear-gradient(to top right, #6CCF9A 0%, #AFEBC9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h1, h2 {
  font-size: 50px;
}

h3 {
  margin-bottom: 10px;
}

.progress {
  width: 100%;
  height: 2px;
  background: var(--c-light);
  border-radius: 0;
}
@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.progress .bar {
  background: rgb(175, 235, 201);
  background: -moz-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: -webkit-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6CCF9A",endColorstr="#AFEBC9",GradientType=1);
  width: 0;
  height: 100%;
  opacity: 0;
}
.progress.active {
  height: 3px;
}
.progress.active .bar {
  opacity: 1;
  animation-name: progress;
  animation-duration: 8s;
}

.fadein {
  transition-duration: 0.4s;
  transition-property: opacity, max-height;
  transition-timing-function: ease-in-out;
  max-height: 0;
  opacity: 0;
  display: block;
  overflow: hidden;
}
.fadein.active {
  max-height: 999px;
  opacity: 1;
}

.click-trigger {
  cursor: pointer;
}
.click-trigger.blocked {
  pointer-events: none;
}
.click-trigger.active {
  pointer-events: none;
}

hr {
  height: 2px;
  width: 100%;
  border: none;
  background-color: var(--c-black);
  margin: 60px 0;
}

.icon-hl i {
  width: 35px;
  color: var(--c-green-light);
  margin-right: 10px;
}

em, strong {
  font-weight: 600;
  font-style: normal;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.mini-headline {
  background: #AFEBC9;
  background: linear-gradient(to top right, #6CCF9A 0%, #AFEBC9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 5px;
}

.sub-headline {
  font-weight: 600;
  font-size: 34px;
  line-height: 1.1em;
  hyphens: auto;
}

.collapse-trigger h3, .collapse-trigger .pseudo-collapse-trigger, .collapse-trigger .fa-sharp {
  transition-duration: 0.4s;
  transition-property: color;
  transition-timing-function: ease-in-out;
}
.collapse-trigger .icon-box:after {
  transition-duration: 0.4s;
  transition-property: box-shadow;
  transition-timing-function: ease-in-out;
}
.collapse-trigger .pseudo-collapse-trigger {
  display: inline-block;
  text-decoration: underline;
}
.collapse-trigger .pseudo-collapse-trigger:before {
  content: "Weniger";
}
.collapse-trigger.collapsed .pseudo-collapse-trigger:before {
  content: "Mehr";
}
.collapse-trigger:hover h3, .collapse-trigger:hover .pseudo-collapse-trigger, .collapse-trigger:hover .fa-sharp {
  color: var(--c-green-light) !important;
}
.collapse-trigger:hover .icon-box:after {
  box-shadow: 0 0 0 2px var(--c-green-light) inset !important;
}

.font-size-1 {
  font-size: 18px;
}

.font-size-2 {
  font-size: 20px;
}

.font-size-3 {
  font-size: 24px;
}

.font-size-4 {
  font-size: 40px;
}

.font-size-5 {
  font-size: 50px;
}

.font-size-6 {
  font-size: 60px;
}

.font-size-7 {
  font-size: 70px;
}

.font-size-8 {
  font-size: 80px;
}

.black-bg {
  background-color: var(--c-black);
  color: var(--c-white);
}

.white-bg {
  background-color: var(--c-white);
  color: var(--c-black);
}

.light-bg {
  background-color: var(--c-light);
  color: var(--c-black);
}

.gradient-bg {
  background: rgb(175, 235, 201);
  background: -moz-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: -webkit-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6CCF9A",endColorstr="#AFEBC9",GradientType=1);
  color: var(--c-white);
}

.green-dark-bg {
  background-color: var(--c-green-light);
  color: var(--c-white);
}

.green-light-bg {
  background-color: var(--c-green-light);
  color: var(--c-white);
}

.gradient-bg h1 em, .gradient-bg h1 strong, .gradient-bg h2 em, .gradient-bg h2 strong, .gradient-bg h3 em, .gradient-bg h3 strong, .gradient-bg h4 em, .gradient-bg h4 strong, .gradient-bg h5 em, .gradient-bg h5 strong, .gradient-bg h6 em, .gradient-bg h6 strong, .gradient-bg .hl em, .gradient-bg .hl strong, .green-dark-bg h1 em, .green-dark-bg h1 strong, .green-dark-bg h2 em, .green-dark-bg h2 strong, .green-dark-bg h3 em, .green-dark-bg h3 strong, .green-dark-bg h4 em, .green-dark-bg h4 strong, .green-dark-bg h5 em, .green-dark-bg h5 strong, .green-dark-bg h6 em, .green-dark-bg h6 strong, .green-dark-bg .hl em, .green-dark-bg .hl strong, .green-light-bg h1 em, .green-light-bg h1 strong, .green-light-bg h2 em, .green-light-bg h2 strong, .green-light-bg h3 em, .green-light-bg h3 strong, .green-light-bg h4 em, .green-light-bg h4 strong, .green-light-bg h5 em, .green-light-bg h5 strong, .green-light-bg h6 em, .green-light-bg h6 strong, .green-light-bg .hl em, .green-light-bg .hl strong {
  background: transparent;
  color: white;
  font-weight: 800;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: inherit;
}

body.campaign #campaign-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  align-items: center;
  display: flex;
  font-size: 22px;
  background: var(--c-black);
  color: var(--c-white);
  border-top: 2px solid var(--c-white);
}
body.campaign #campaign-contact:hover .button {
  background: var(--c-white);
  color: var(--c-black);
}
body.campaign #campaign-contact .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
body.campaign #campaign-contact .container em {
  font-weight: 600;
  background: #AFEBC9;
  background: linear-gradient(to top right, #6CCF9A 0%, #AFEBC9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.campaign #campaign-contact .container .text-end {
  padding-left: 25px;
}
body.campaign #campaign-contact .container .text-end i {
  display: none;
}
body.campaign #campaign-contact .button {
  padding: 5px 10px;
  background: var(--c-green-light);
  color: var(--c-black);
  transition: all 0.4s ease-in-out;
}
body.campaign .campaign-solutions p {
  text-align: center !important;
}
body.campaign .campaign-solutions .campaign-not-with-us {
  padding: 5px;
  background: rgb(175, 235, 201);
  background: -moz-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: -webkit-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6CCF9A",endColorstr="#AFEBC9",GradientType=1);
  color: var(--c-black);
  font-weight: bold;
  margin-bottom: 0;
}
body.campaign .campaign-solutions .campaign-solution {
  border: 2px solid var(--c-green-light);
  padding: 5px;
  border-top: none;
}
body.campaign #utility-contact {
  display: none;
}

body > section {
  padding: 140px 0;
  position: relative;
  background-color: var(--c-white);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body > section.campaign-image h2:first-of-type {
  margin-bottom: 0;
}
body > section.content-width-50 .container {
  max-width: 50vw;
}
body > section.minimal {
  padding: 0;
}
body > section.minimal-top {
  padding-top: 0;
}
body > section.minimal-bottom {
  padding-bottom: 0;
}
body > section.legal h2 {
  font-size: 40px;
  margin-bottom: 5px;
  margin-top: 25px;
  hyphens: auto;
}
body > section.legal h3 {
  font-size: 24px;
  margin-bottom: 5px;
}
body > section:first-of-type .next-teaser {
  display: none;
}
body > section > .next-teaser {
  position: absolute;
  top: 0;
  z-index: 9;
  width: 100%;
}
body > section > .next-teaser .next-teaser-trigger {
  padding: 7px 15px;
  background-color: var(--c-white);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  color: var(--c-black);
  font-size: 20px;
  position: absolute;
  left: 0;
  transform: translateY(-50%);
  cursor: pointer;
  transition-duration: 0.4s;
  transition-property: background-color, color;
  transition-timing-function: ease-in-out;
}
body > section > .next-teaser .next-teaser-trigger:hover {
  color: var(--c-white);
  background-color: var(--c-black);
}
body > section ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
body > section ul li {
  position: relative;
  padding-left: 15px;
}
body > section ul li:before {
  content: "-";
  margin-right: 5px;
  position: absolute;
  left: 0;
}
body > section .container {
  position: relative;
}
body > section.divider > .container::before {
  content: " ";
  display: block;
  height: 1px;
  background-color: var(--c-light);
  width: 100%;
  position: absolute;
  top: -140px;
}
body > section a {
  text-decoration: underline;
}
body > section a:hover {
  color: var(--c-green-light);
}

.disclaimer {
  padding: 15px;
  background: var(--c-light);
}

#main-disclaimer {
  background-color: var(--c-light);
  font-size: 18px;
  transition-duration: 0.8s;
  transition-property: max-height, padding;
  transition-timing-function: ease-in-out;
  max-height: 999px;
  overflow: hidden;
  padding-top: 30px;
  padding-bottom: 30px;
}
#main-disclaimer.minimize {
  max-height: 0;
  padding: 0 !important;
}
#main-disclaimer p:last-child {
  text-align: right;
  margin-bottom: 0;
}
#main-disclaimer p:last-child a {
  text-decoration: underline;
}

.info {
  font-size: 12px;
  opacity: 0.3;
  margin-top: 15px;
}

.solua input[type=text], .solua input[type=number], .solua input[type=tel], .solua input[type=email], .solua textarea, .solua select {
  appearance: none;
  outline: none;
  border: none;
  background: transparent;
  padding: 0;
  border-bottom: 1px solid var(--c-black);
  overflow: auto;
  resize: none;
  border-radius: 0;
}
.solua input[type=text]:focus, .solua input[type=number]:focus, .solua input[type=tel]:focus, .solua input[type=email]:focus, .solua textarea:focus, .solua select:focus {
  border-bottom: 1px solid var(--c-green-light);
}
.solua .wpcf7-form-control-wrap:has(> input:focus) + label {
  color: var(--c-green-light);
  font-weight: 600;
}
.solua .select-wrapper {
  position: relative;
  display: inline-block;
}
.solua .select-wrapper select {
  padding-right: 30px;
  min-width: 200px;
}
.solua .select-wrapper:after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro", sans-serif;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

form label, form .wpcf7-not-valid-tip {
  font-size: 18px;
  display: block;
}
form .wpcf7-not-valid-tip {
  position: absolute;
  top: 0;
  right: 0;
}
form sup {
  top: -2px;
  left: 2px;
  font-size: 1em;
}
form .form-group-subtitle {
  font-size: 18px;
}
form .form-group {
  position: relative;
  background: var(--c-light);
  height: 100%;
}
form .form-group.message-holder .form-group-content > div {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
form .form-group.message-holder .wpcf7-form-control-wrap {
  flex: 1;
}
form .form-group.message-holder textarea {
  height: 100%;
}
form .form-group .form-group-title {
  padding: 15px 30px;
  background-color: var(--c-black);
  color: var(--c-white);
}
form .form-group .form-group-content {
  padding: 30px;
}
form .form-group .form-group-content > div {
  margin-bottom: 20px;
}
form .form-group .form-group-content > div:last-of-type {
  margin-bottom: 0;
}
form .radio-holder input:before {
  border-radius: 50%;
}
form .radio-holder input:after {
  border-radius: 50%;
}
form .radio-holder > label, form .checkbox-holder > label {
  display: block;
}
form .radio-holder .radio-label, form .radio-holder > span, form .checkbox-holder .radio-label, form .checkbox-holder > span {
  position: relative;
  display: inline-block;
  margin-right: 20px;
  width: auto;
  cursor: pointer;
}
form .radio-holder .radio-label .wpcf7-list-item, form .radio-holder > span .wpcf7-list-item, form .checkbox-holder .radio-label .wpcf7-list-item, form .checkbox-holder > span .wpcf7-list-item {
  margin: 0 !important;
}
form .radio-holder .radio-label > div, form .radio-holder .radio-label .wpcf7-acceptance label, form .radio-holder > span > div, form .radio-holder > span .wpcf7-acceptance label, form .checkbox-holder .radio-label > div, form .checkbox-holder .radio-label .wpcf7-acceptance label, form .checkbox-holder > span > div, form .checkbox-holder > span .wpcf7-acceptance label {
  display: flex;
  flex-direction: row;
  align-items: center;
}
form .radio-holder .radio-label input, form .radio-holder > span input, form .checkbox-holder .radio-label input, form .checkbox-holder > span input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  position: relative;
  appearance: none;
  margin-right: 5px;
}
form .radio-holder .radio-label input:before, form .radio-holder > span input:before, form .checkbox-holder .radio-label input:before, form .checkbox-holder > span input:before {
  content: " ";
  background: var(--c-black);
  width: 12px;
  height: 12px;
  display: block;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition-duration: 0.4s;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
}
form .radio-holder .radio-label input:checked:before, form .radio-holder > span input:checked:before, form .checkbox-holder .radio-label input:checked:before, form .checkbox-holder > span input:checked:before {
  opacity: 1;
}
form .radio-holder .radio-label input:after, form .radio-holder > span input:after, form .checkbox-holder .radio-label input:after, form .checkbox-holder > span input:after {
  content: " ";
  background: transparent;
  border: 1px solid var(--c-black);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
form .supplier-form button {
  margin-top: 10px !important;
  border: 1px solid #000;
  border-radius: 0;
}
form .supplier-form .radio-holder .wpcf7-form-control-wrap, form .supplier-form .checkbox-holder .wpcf7-form-control-wrap {
  width: 100%;
  margin-right: 0;
}
form .supplier-form .radio-holder .wpcf7-form-control-wrap .wpcf7-list-item, form .supplier-form .checkbox-holder .wpcf7-form-control-wrap .wpcf7-list-item {
  margin-right: 15px !important;
}
form .supplier-form .radio-holder .wpcf7-form-control-wrap .wpcf7-list-item label, form .supplier-form .checkbox-holder .wpcf7-form-control-wrap .wpcf7-list-item label {
  display: flex;
  align-items: center;
  font-weight: 300;
}
form .supplier-form .radio-holder .wpcf7-not-valid-tip, form .supplier-form .checkbox-holder .wpcf7-not-valid-tip {
  bottom: 0;
  top: auto;
}
form .supplier-form .conditional-other {
  display: none !important;
  margin-top: 10px;
}
form .supplier-form .conditional-other.is-visible {
  display: block !important;
}
form .supplier-form .upload-field.is-hidden {
  display: none;
}
form .supplier-form .upload-field.is-visible {
  display: block;
  margin-top: 10px;
}
form .supplier-form .upload-hint {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
}
form .supplier-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
form .supplier-form input[type=text],
form .supplier-form input[type=tel],
form .supplier-form input[type=email],
form .supplier-form textarea, form .supplier-form .wpcf7-file {
  font-size: 18px;
}
form .supplier-form .form-group-content > div {
  border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
form .supplier-form .form-group-subtitle, form .supplier-form label {
  font-weight: 600;
}
form .supplier-form .checkbox-holder label, form .supplier-form .radio-label {
  font-weight: 300;
}
form .supplier-form .wpcf7-checkbox {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
form .supplier-form .wpcf7-checkbox label {
  display: flex;
  align-items: center;
}
form .supplier-form .wpcf7-checkbox span {
  margin: 0 !important;
}
form.wpcf7-form.init .wpcf7-not-valid-tip {
  display: none !important;
}
form.wpcf7-form input[type=text], form.wpcf7-form input[type=number], form.wpcf7-form input[type=tel], form.wpcf7-form input[type=email], form.wpcf7-form textarea {
  width: 100%;
}
form.wpcf7-form .submit-holder {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
}
form.wpcf7-form .wpcf7-spinner {
  display: none !important;
}
form.wpcf7-form input[type=submit] {
  border-radius: 0;
  border: none;
  appearance: none;
  background: transparent;
  display: inline-block;
  width: auto;
  text-decoration: underline;
  padding: 0;
}
form.wpcf7-form .wpcf7-checkbox span {
  margin: 0 !important;
}
form.wpcf7-form button {
  margin-top: 60px;
}

.grecaptcha-badge {
  display: none !important;
}

.layout-qr .qr-employee {
  background: rgb(175, 235, 201);
  background: -moz-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: -webkit-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6CCF9A",endColorstr="#AFEBC9",GradientType=1);
}
.layout-qr .logo, .layout-qr .employee {
  background: var(--c-white);
}
.layout-qr .employee-info {
  padding: 30px 0;
  color: var(--c-white);
}
.layout-qr .employee {
  position: relative;
  width: 100%;
  height: 100%;
}
.layout-qr .employee img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: contain;
  padding: 30px 30px 0 30px;
  bottom: 0;
}
.layout-qr .row {
  max-width: 840px;
  margin: 0 auto;
}
.layout-qr .name {
  font-size: 50px;
}
.layout-qr .company {
  font-weight: 600;
}
.layout-qr a {
  display: inline-block;
  margin-top: 60px;
}
.layout-qr p {
  margin-bottom: 0;
}

.block-divider {
  padding: 100px 0;
}
.block-divider.no-margin * {
  margin-bottom: 0;
  margin-top: 0;
}

.block-top-services {
  padding-top: 70px;
}
.block-top-services .top-service {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 1;
  transition-duration: 0.4s;
  transition-property: opacity;
  transition-timing-function: ease-in-out;
}
.block-top-services .top-service .image-holder {
  padding: 0 40px;
  position: relative;
  overflow: hidden;
}
.block-top-services .top-service .image-holder .circle {
  position: absolute;
  width: 100%;
  bottom: -70%;
  z-index: 0;
  left: 0;
  border-radius: 100%;
  padding-bottom: 100%;
  background: rgb(175, 235, 201);
  background: -moz-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: -webkit-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6CCF9A",endColorstr="#AFEBC9",GradientType=1);
}
.block-top-services .top-service .image-holder img {
  width: 100%;
  position: relative;
  z-index: 1;
  transform: scale(1);
  transform-origin: bottom;
  bottom: -10px;
}
.block-top-services .top-service .image-holder .circle, .block-top-services .top-service .image-holder img {
  transition-duration: 0.4s;
  transition-property: transform;
  transition-timing-function: ease-in-out;
}
.block-top-services .top-service .employee {
  font-size: 18px;
  text-align: right;
  padding: 4px 0;
}
.block-top-services .top-service h2 {
  font-size: 50px;
  margin-bottom: 10px;
  margin-top: 10px;
  font-weight: 300;
}
.block-top-services .top-service.active, .block-top-services .top-service:hover {
  opacity: 1;
}
.block-top-services .top-service.active .circle, .block-top-services .top-service:hover .circle {
  transform: scale(1.15);
}
.block-top-services .top-service.active img, .block-top-services .top-service:hover img {
  transform: scale(1.05);
}

.block-blog .image-holder {
  width: 100%;
  height: 500px;
  overflow: hidden;
  margin-bottom: 60px;
}
.block-blog .image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-blog .link-holder {
  text-align: right;
}

.block-blog-list.preview .col-12 h2 {
  font-size: 60px;
}
.block-blog-list.preview .show-all {
  text-align: center;
  margin-top: 60px;
}
.block-blog-list.preview .blog-post {
  flex-direction: column;
  margin-bottom: 0;
}
.block-blog-list.preview .blog-post .content-holder {
  background: transparent;
  color: var(--c-white);
}
.block-blog-list.preview .blog-post .image-holder {
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
}
.block-blog-list.preview .blog-post .image-holder a {
  color: var(--c-black);
}
.block-blog-list.preview .blog-post .image-holder a:after {
  content: " ";
  width: 100%;
  height: 100%;
  background-color: var(--c-white);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
  z-index: 2;
  transition-duration: 0.4s;
  transition-property: opacity, background-color;
  transition-timing-function: ease-in-out;
}
.block-blog-list.preview .blog-post .image-holder h2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 5px;
  width: calc(100% - 40px);
  margin-bottom: 0;
  font-size: 60px;
  z-index: 3;
}
.block-blog-list.preview .blog-post .image-holder:hover a {
  color: var(--c-green-light);
}
.block-blog-list.preview .blog-post .image-holder:hover a:after {
  opacity: 0.8;
  background-color: var(--c-black);
}
.block-blog-list.preview .blog-post .image-holder:hover img {
  transform: scale(1.1);
}
.block-blog-list.preview .blog-post .image-holder img {
  position: absolute;
  top: 0;
  left: 0;
  transition-duration: 0.4s;
  transition-property: transform;
  transition-timing-function: ease-in-out;
  z-index: 1;
}
.block-blog-list.preview .blog-post .content-holder {
  width: 100%;
  position: relative;
  margin-top: 20px;
}
.block-blog-list .blog-post {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  position: relative;
  margin-bottom: 120px;
}
.block-blog-list .blog-post.odd {
  justify-content: flex-start;
}
.block-blog-list .blog-post.odd .image-holder {
  order: 1;
}
.block-blog-list .blog-post.odd .content-holder {
  order: 2;
  right: 0;
  padding: 60px 0 60px 60px;
}
.block-blog-list .blog-post.even {
  justify-content: flex-end;
}
.block-blog-list .blog-post.even .image-holder {
  order: 2;
}
.block-blog-list .blog-post.even .content-holder {
  order: 1;
  left: 0;
  padding: 60px 60px 60px 0;
}
.block-blog-list .blog-post .image-holder {
  width: 30vw;
  height: 30vw;
  background: var(--c-light);
  display: flex;
  justify-content: center;
  align-items: center;
}
.block-blog-list .blog-post .image-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.block-blog-list .blog-post .content-holder {
  width: 65%;
  position: absolute;
  background: var(--c-white);
}
.block-blog-list .blog-post .content-holder h2 {
  margin-bottom: 30px;
}
.block-nv-cycle .nv-service {
  background: rgb(175, 235, 201);
  background: -moz-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: -webkit-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6CCF9A",endColorstr="#AFEBC9",GradientType=1);
  color: var(--c-white);
  padding: 60px;
}
.block-nv-cycle .frame {
  padding: 30px;
  border: 1px solid var(--c-black);
}
.block-nv-cycle .pill {
  border-radius: 30px;
  padding: 10px 20px;
  border: 1px solid var(--c-black);
  text-align: center;
}
.block-nv-cycle .nv-service, .block-nv-cycle .nv-customer, .block-nv-cycle .nv-suppliers {
  height: 100%;
}
.block-nv-cycle .nv-customer, .block-nv-cycle .nv-suppliers {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
}
.block-nv-cycle .solua {
  border-color: var(--c-green-light);
}

.block-customers-overview .customer-logos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.block-customers-overview .customer-logos .customer-logo {
  position: relative;
}
.block-customers-overview .customer-logos .customer-logo .logo, .block-customers-overview .customer-logos .customer-logo .logo-hover {
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.block-customers-overview .customer-logos .customer-logo .logo-hover {
  transition: all 0.4s ease-in-out;
  opacity: 0;
  background: var(--c-white);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.block-customers-overview .customer-logos .customer-logo .progress {
  position: absolute;
  bottom: 5%;
  width: 80%;
  left: 10%;
  background: var(--c-light);
  z-index: 9;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.block-customers-overview .customer-logos .customer-logo .progress.active {
  opacity: 1;
}
.block-customers-overview .customer-logos .customer-logo .logo {
  opacity: 0.3;
  cursor: pointer;
}
.block-customers-overview .customer-logos .customer-logo .logo:after {
  content: " ";
  display: block;
  background: var(--c-white);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.block-customers-overview .customer-logos .customer-logo img {
  width: 100%;
  height: auto;
  max-width: 200px;
  max-height: 100px;
  position: relative;
  z-index: 1;
}
.block-customers-overview .customer-logos .customer-logo.active .logo-hover {
  opacity: 1;
  pointer-events: none;
}
.block-customers-overview .customer-logos .customer-logo:hover .logo:after {
  opacity: 0.2;
}
.block-customers-overview .customer-info {
  background: var(--c-white);
  color: var(--c-black);
}
.block-customers-overview .customer-info > div {
  padding: 45px;
}
.block-customers-overview .customer-info h2 {
  margin-bottom: 20px;
  font-size: 24px;
  display: inline-block;
  background: #AFEBC9;
  background: linear-gradient(to top right, #6CCF9A 0%, #AFEBC9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.block-customers-overview .customer-info blockquote {
  margin: 0;
}
.block-customers-overview .customer-info blockquote p {
  margin-bottom: 2px;
  font-size: 24px;
}
.block-customers-overview .customer-info blockquote cite {
  font-size: 20px;
  color: var(--c-black);
}

.block-cols {
  hyphens: auto;
}
.block-cols.col-margin .row > div {
  margin-bottom: 30px;
}
.block-cols .icon-hl {
  position: relative;
  padding-left: 50px;
}
.block-cols .icon-hl i {
  position: absolute;
  left: 0;
  margin-right: 0;
}
.block-cols .row > div p:last-child {
  margin-bottom: 0;
}

.block-text-v2 {
  text-align: center;
}
.block-text-v2 .container * {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.block-text-v2 p:last-child {
  margin-bottom: 0;
}

.block-text-v3 ul {
  margin-bottom: 1rem !important;
}

.block-focus-quote {
  background: rgb(175, 235, 201);
  background: -moz-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: -webkit-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6CCF9A",endColorstr="#AFEBC9",GradientType=1);
}
.block-focus-quote .container > div {
  color: var(--c-white);
  position: relative;
}
.block-focus-quote .container > div:before {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgb(175, 235, 201);
  background: -moz-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: -webkit-linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  background: linear-gradient(45deg, rgb(108, 207, 154) 0%, rgb(175, 235, 201) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6CCF9A",endColorstr="#AFEBC9",GradientType=1);
  transform: rotate(180deg);
  z-index: 0;
}
.block-focus-quote .container > div:after {
  content: " ";
  position: absolute;
  width: 120px;
  height: 120px;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  background-image: url("../img/quotes.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.block-focus-quote .container > div .text {
  padding: 60px;
  position: relative;
  z-index: 1;
  font-size: 40px;
}
.block-focus-quote .container > div .text .from {
  margin-bottom: 0;
  font-style: italic;
  font-size: 20px;
  margin-top: 30px;
}

.block-employee {
  padding-bottom: 0;
}
.block-employee .text-holder {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.block-employee .text-holder .salutation {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 0;
}
.block-employee .text-holder blockquote {
  padding: 30px;
  margin: 0;
  position: relative;
}
.block-employee .text-holder blockquote:after {
  content: " ";
  display: block;
  position: absolute;
  width: 130%;
  top: 0;
  height: 100%;
  z-index: 0;
  right: -30%;
  border: 1px solid var(--c-light);
}
.block-employee .text-holder blockquote cite {
  font-size: 20px;
  margin-bottom: 0;
}
.block-employee img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.block-employee img.square {
  display: none;
}

.block-video {
  padding: 0;
  height: 90vh;
}
.block-video .video-overlay {
  position: relative;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}
.block-video .video-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: all 0.4s ease-in-out;
  transform: scale(1);
}
.block-video .video-overlay:hover .video-overlay-text .container > div {
  transform: scale(1.05);
}
.block-video .video-overlay:hover img {
  transform: scale(1.1);
}
.block-video .video-overlay .video-overlay-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}
.block-video .video-overlay .video-overlay-text {
  height: 100%;
  display: flex;
  align-items: center;
}
.block-video .video-overlay .video-overlay-text p:last-child {
  margin-bottom: 0;
}
.block-video .video-overlay .video-overlay-text h2 {
  margin-bottom: 10px;
}
.block-video .video-overlay .video-overlay-text .container > div {
  width: 50%;
  transform-origin: right;
  transition: all 0.4s ease-in-out;
}
.block-video .video-overlay .video-overlay-text.align-right .container {
  display: flex;
  justify-content: flex-end;
  text-align: right;
}
.block-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

header {
  position: relative;
  display: flex;
  flex-direction: column;
}
header .header-image-mobile {
  display: none;
}
header, header .image-holder {
  height: 66vh;
  max-height: 800px;
}
header .nav-holder {
  order: 1;
  width: 100%;
  background: var(--c-white);
  position: relative;
}
header .nav-holder .header-holder {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
  text-align: right;
  flex-wrap: nowrap;
  align-items: center;
  padding: 30px 0;
  transition: all 0.4s ease-in-out;
}
header .nav-holder .header-holder .logo-holder {
  flex: 1;
}
header .nav-holder .header-holder .logo-holder img {
  width: 100%;
  display: block;
  max-width: 150px;
  transition: max-width 0.4s ease-in-out;
}
header .nav-holder .header-holder #menu-switch {
  display: none;
  position: relative;
  z-index: 20;
  cursor: pointer;
}
header .nav-holder .header-holder #menu-switch:before {
  content: "\f00d";
  display: none;
}
header .nav-holder .header-holder #menu-switch:after {
  content: "\f0c9";
}
header .nav-holder .header-holder #menu-switch:after, header .nav-holder .header-holder #menu-switch:before {
  font-family: "Font Awesome 6 Pro", sans-serif;
  font-size: 1.75em;
  top: 3px;
  position: relative;
  color: var(--c-black);
}
header .nav-holder .header-holder .navs-holder {
  transition-duration: 0.4s;
  transition-property: padding;
  transition-timing-function: ease-in-out;
}
header .nav-holder .header-holder .navs-holder .nav-holder-secondary ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
}
header .nav-holder .header-holder .navs-holder .nav-holder-secondary li {
  margin: 0;
  padding: 0;
  transition: all 0.4s ease-in-out;
}
header .nav-holder .header-holder .navs-holder .nav-holder-secondary li.active a {
  font-weight: 600;
}
header .nav-holder .header-holder .navs-holder .nav-holder-secondary a {
  display: inline-block;
  white-space: nowrap;
  padding: 5px 10px;
  position: relative;
  text-align: left;
  font-size: 18px;
  transition-duration: 0.4s;
  transition-property: font-size;
  transition-timing-function: ease-in-out;
}
header .nav-holder .menu-holder {
  display: flex;
  align-items: center;
  z-index: 999;
  justify-content: flex-end;
}
header .nav-holder .menu-holder .menu-item-has-children:after {
  content: " ";
  display: block;
  width: 0;
  position: absolute;
  background: var(--c-green-light);
  height: 2px;
  opacity: 0;
  transition-duration: 0.4s;
  transition-property: opacity, width;
  transition-timing-function: ease-in-out;
}
header .nav-holder .menu-holder.pull-up .sub-menu {
  padding-bottom: 20px;
  bottom: 100%;
}
header .nav-holder .menu-holder.pull-up .menu-item-has-children:hover .sub-menu {
  padding-bottom: 8px;
}
header .nav-holder .menu-holder.pull-up .menu-item-has-children:after {
  top: 0;
}
header .nav-holder .menu-holder.pull-down .sub-menu {
  padding-top: 20px;
}
header .nav-holder .menu-holder.pull-down .menu-item-has-children:hover .sub-menu {
  padding-top: 8px;
}
header .nav-holder .menu-holder.pull-down .menu-item-has-children:after {
  bottom: 0;
}
header .nav-holder .menu-holder .menu-item-has-children:hover .sub-menu {
  pointer-events: auto !important;
  opacity: 1 !important;
}
header .nav-holder .menu-holder .menu-item-has-children:hover:after {
  opacity: 1;
  width: calc(100% - 20px);
}
header .nav-holder .menu-holder .menu-right.menu-item-has-children:after {
  right: 10px;
}
header .nav-holder .menu-holder .menu-left.menu-item-has-children:after {
  left: 10px;
}
header .nav-holder .menu-holder em {
  white-space: nowrap;
  padding-right: 5px;
}
header .nav-holder .menu-holder nav {
  position: relative;
}
header .nav-holder .menu-holder nav:hover .menu-left, header .nav-holder .menu-holder nav:hover .menu-right {
  opacity: 0.4;
}
header .nav-holder .menu-holder nav li {
  margin: 0 3px;
  position: relative;
}
header .nav-holder .menu-holder nav li:hover {
  opacity: 1 !important;
}
header .nav-holder .menu-holder nav li:hover > a {
  font-weight: 600;
}
header .nav-holder .menu-holder nav a {
  display: block;
  text-decoration: none;
  color: inherit;
  white-space: nowrap;
  padding: 5px 10px;
  text-align: center;
}
header .nav-holder .menu-holder nav a:before {
  display: block;
  content: attr(title);
  font-weight: 600;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
header .nav-holder .menu-holder nav .current_page_item.menu-item-has-children .sub-menu, header .nav-holder .menu-holder nav .current-page-parent .sub-menu {
  display: none !important;
}
header .nav-holder .menu-holder nav .current-menu-ancestor > a, header .nav-holder .menu-holder nav .current_page_parent > a, header .nav-holder .menu-holder nav .current-menu-item > a {
  font-weight: 600;
}
header .nav-holder .menu-holder nav .menu-divide {
  position: relative;
  margin-left: 20px;
}
header .nav-holder .menu-holder nav .menu-divide:before {
  content: " ";
  height: 100%;
  width: 1px;
  background-color: var(--c-black);
  left: -10px;
  display: block;
  position: absolute;
}
header .nav-holder .menu-holder nav .sub-menu {
  position: absolute;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease-in-out;
  pointer-events: none;
  opacity: 0;
  background: var(--c-white);
  font-size: 20px;
  z-index: 9;
}
header .nav-holder .menu-holder nav .sub-menu li {
  margin: 0;
  padding: 2px 0;
}
header .nav-holder .menu-holder nav .sub-menu li:nth-child(1) a:after {
  content: "01";
}
header .nav-holder .menu-holder nav .sub-menu li:nth-child(2) a:after {
  content: "02";
}
header .nav-holder .menu-holder nav .sub-menu li:nth-child(3) a:after {
  content: "03";
}
header .nav-holder .menu-holder nav .sub-menu li:nth-child(4) a:after {
  content: "04";
}
header .nav-holder .menu-holder nav .sub-menu li:nth-child(5) a:after {
  content: "05";
}
header .nav-holder .menu-holder nav .sub-menu li:nth-child(6) a:after {
  content: "06";
}
header .nav-holder .menu-holder nav .sub-menu li:nth-child(7) a:after {
  content: "07";
}
header .nav-holder .menu-holder nav .sub-menu li:nth-child(8) a:after {
  content: "08";
}
header .nav-holder .menu-holder nav .sub-menu li:nth-child(9) a:after {
  content: "09";
}
header .nav-holder .menu-holder nav .sub-menu a {
  display: block;
  padding-left: 40px;
  position: relative;
  text-align: left;
}
header .nav-holder .menu-holder nav .sub-menu a:after {
  color: var(--c-green-light);
  display: flex;
  position: absolute;
  left: 10px;
  top: 0;
  height: 100%;
  align-items: center;
}
header .nav-holder .menu-holder nav .menu-left {
  left: 0;
}
header .nav-holder .menu-holder nav .menu-right .sub-menu {
  right: 0;
}
header .nav-holder.top {
  position: fixed;
  top: 0;
  z-index: 99;
}
header .nav-holder.snapped {
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.2);
  font-size: 20px;
}
header .nav-holder.snapped .header-holder {
  padding: 15px 0;
}
header .nav-holder.snapped.bottom {
  position: fixed;
  top: 0;
  z-index: 99;
}
header .nav-holder.snapped .logo-holder img {
  max-width: 120px;
}
header .nav-holder.snapped .nav-holder-secondary a {
  font-size: 16px !important;
}
header .video-holder, header .image-holder {
  flex: 1;
  position: relative;
  overflow: hidden;
  order: 2;
}
header .video-holder .overlay, header .image-holder .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  text-align: right;
}
header .video-holder .overlay .container, header .image-holder .overlay .container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  padding-top: 60px;
  padding-bottom: 30px;
}
header .video-holder .overlay .container .link-holder a, header .image-holder .overlay .container .link-holder a {
  padding: 10px;
  color: var(--c-black);
  border: 1px solid var(--c-black);
  font-size: 20px;
  position: relative;
}
header .video-holder .overlay .container .link-holder a, header .video-holder .overlay .container .link-holder a:after, header .image-holder .overlay .container .link-holder a, header .image-holder .overlay .container .link-holder a:after {
  transition: all 0.4s ease-in-out;
}
header .video-holder .overlay .container .link-holder a:after, header .image-holder .overlay .container .link-holder a:after {
  content: " ";
  display: block;
  background: var(--c-black);
  height: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
  z-index: -1;
}
header .video-holder .overlay .container .link-holder a:hover, header .image-holder .overlay .container .link-holder a:hover {
  color: var(--c-white);
}
header .video-holder .overlay .container .link-holder a:hover:after, header .image-holder .overlay .container .link-holder a:hover:after {
  height: 100%;
}
header .video-holder .overlay .container .text-holder, header .image-holder .overlay .container .text-holder {
  color: var(--c-black);
}
header .video-holder .overlay .container .text-holder .headline, header .image-holder .overlay .container .text-holder .headline {
  font-weight: 300;
  margin: 0;
  font-size: 50px;
  max-width: 680px;
  display: inline-block;
  line-height: 1.2;
}
header .video-holder .overlay .container .text-holder .headline span, header .image-holder .overlay .container .text-holder .headline span {
  white-space: nowrap;
}
header .video-holder .overlay .arrow-down, header .image-holder .overlay .arrow-down {
  position: relative;
  top: 0;
  animation: arrow-down 2s infinite ease-in-out;
  font-size: 40px;
}
@keyframes arrow-down {
  0% {
    top: 0;
  }
  25% {
    top: 8px;
  }
  50% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
header .video-holder video, header .video-holder .header-image, header .image-holder video, header .image-holder .header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
header .video-holder .header-image.small, header .image-holder .header-image.small {
  height: 100%;
}
header .video-holder.has-overlay .link-holder a, header .image-holder.has-overlay .link-holder a {
  color: var(--c-white);
  border: 1px solid var(--c-white);
}
header .video-holder.has-overlay .link-holder a:after, header .image-holder.has-overlay .link-holder a:after {
  background: var(--c-white);
}
header .video-holder.has-overlay .link-holder a:hover, header .image-holder.has-overlay .link-holder a:hover {
  color: var(--c-black);
}
header .video-holder.has-overlay .text-holder, header .image-holder.has-overlay .text-holder {
  color: var(--c-white);
}
header .video-holder.has-overlay:after, header .image-holder.has-overlay:after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  height: 70%;
  width: 100%;
  opacity: 0.7;
  background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 20%, rgb(0, 0, 0) 100%);
  z-index: 2;
}

body.post-type-az-blog header {
  height: auto;
}
body.post-type-az-blog header .image-holder {
  background: var(--c-light);
}
body.post-type-az-blog header .image-holder .overlay {
  position: relative;
}

body.page-id-nova header {
  height: auto;
}
body.page-id-nova header .video-holder, body.page-id-nova header .image-holder {
  height: auto;
  max-height: 450px;
}

body.page-id-start header {
  height: 100vh;
  max-height: 9999999px;
}
body.page-id-start header .header-holder {
  padding: 60px 0;
}
body.page-id-start header .nav-holder {
  order: 2;
}
body.page-id-start header .video-holder, body.page-id-start header .image-holder {
  order: 1;
  height: auto;
  max-height: 9999999px;
}
body.page-id-start header .video-holder img, body.page-id-start header .image-holder img {
  position: fixed;
  height: 90%;
}

footer {
  font-size: 18px;
}
footer #primary-footer {
  background-color: var(--c-black);
  color: var(--c-white);
  padding: 80px 0 80px 0;
  background-image: url("../img/solua-footer-bg.jpg");
  background-size: cover;
}
footer #primary-footer .company p:last-of-type {
  margin-bottom: 0;
}
footer #primary-footer img {
  max-width: 160px;
  margin-bottom: 30px;
}
footer #primary-footer a {
  color: var(--c-white);
}
footer #primary-footer .col:last-child {
  border-left: 1px solid var(--c-white);
}
footer #primary-footer .menu-hl1-menu-container > ul > li > a,
footer #primary-footer .menu-hl2-menu-container > ul > li > a,
footer #primary-footer .menu-hl3-menu-container > ul > li > a {
  font-weight: 600;
  margin-top: 10px;
  position: relative;
}
footer #primary-footer .menu-hl1-menu-container > ul > li:not(:first-of-type) > a:after,
footer #primary-footer .menu-hl2-menu-container > ul > li:not(:first-of-type) > a:after,
footer #primary-footer .menu-hl3-menu-container > ul > li:not(:first-of-type) > a:after {
  content: " ";
  width: 100%;
  height: 1px;
  background: var(--c-white);
  position: absolute;
  top: -5px;
  display: block;
  opacity: 0.1;
}
footer #primary-footer .menu-hl1-menu-container > ul > li:first-child > a,
footer #primary-footer .menu-hl2-menu-container > ul > li:first-child > a,
footer #primary-footer .menu-hl3-menu-container > ul > li:first-child > a {
  margin-top: 0;
}
footer #primary-footer nav ul {
  flex-direction: column;
}
footer #primary-footer nav ul a {
  padding: 3px 0;
  display: block;
}
footer #secondary-footer {
  background-color: var(--c-light);
  padding: 20px 0;
}
footer #secondary-footer nav li a {
  padding: 3px 20px 3px 20px;
}
footer #secondary-footer nav li:first-child a {
  padding-left: 0;
}
footer a {
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
  color: inherit;
}

.scroll-trigger {
  cursor: pointer;
}

#campaign-contact {
  display: none;
}

#utility-menu {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}
#utility-menu > div {
  width: 50px;
  height: 50px;
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  max-height: 50px;
  position: relative;
}
#utility-menu > div a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#utility-menu > div.hidden {
  max-height: 0;
  overflow: hidden;
}
#utility-menu > div i {
  color: var(--c-black);
}
#utility-menu > div, #utility-menu > div i {
  transition: all 0.4s ease-in-out;
}
#utility-menu > div:hover {
  background: var(--c-black);
}
#utility-menu > div:hover i {
  color: var(--c-white);
}

.block-image-text .icon-holder > div {
  background-color: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.block-image-text .icon-holder > div i {
  font-size: 120px;
  background: #AFEBC9;
  background: linear-gradient(to top right, #6CCF9A 0%, #AFEBC9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 60px;
}
.block-image-text .image-holder > div {
  /*padding: 0 $space-xs;*/
}
.block-image-text .image-holder.full-width {
  padding: 0;
}
.block-image-text .image-holder img {
  width: 100%;
}
.block-image-text .text-holder.center-text {
  display: flex;
  align-items: center;
}

.block-preview-boxes h3 {
  font-size: 40px;
  margin-bottom: 10px;
}
.block-preview-boxes .preview-box {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.block-preview-boxes.black-bg .icon-box i {
  color: var(--c-white);
}
.block-preview-boxes.black-bg .icon-box:after {
  box-shadow: 0px 0px 0px 2px var(--c-white) inset;
}
.block-preview-boxes .icon-box {
  width: 100px;
  min-width: 100px;
}
.block-preview-boxes .icon-box:after {
  font-size: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-box {
  padding: 30px;
  display: inline-block;
  position: relative;
}
.icon-box:after {
  content: " ";
  width: 100%;
  padding-bottom: 100%;
  position: absolute;
  box-shadow: 0px 0px 0px 2px var(--c-black) inset;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.icon-box i {
  color: var(--c-black);
  display: block;
  font-size: 3rem;
  text-align: center;
  line-height: 1;
  font-style: normal;
}
.icon-box.white:after {
  box-shadow: 0px 0px 0px 2px var(--c-white) inset;
}
.icon-box.white i {
  color: var(--c-white);
}
.icon-box.large {
  padding: 120px;
}
.icon-box.large:after {
  box-shadow: 0px 0px 0px 2.5px var(--c-black) inset;
}
.icon-box.large.white:after {
  box-shadow: 0px 0px 0px 2.5px var(--c-white) inset;
}
.icon-box.large i {
  font-size: 6rem;
}

.freeprivacypolicy-com---palette-light {
  font-family: proxima-nova, sans-serif !important;
  box-shadow: 0px 0px 10px -2px rgba(0, 0, 0, 0.2);
}
.freeprivacypolicy-com---palette-light .cc-nb-main-container {
  padding: 60px !important;
}
.freeprivacypolicy-com---palette-light button {
  border-radius: 0 !important;
  font-weight: 300 !important;
  transition: all 0.4s ease-in-out;
}
.freeprivacypolicy-com---palette-light button:hover {
  background: var(--c-green-light) !important;
  color: var(--c-black) !important;
}
.freeprivacypolicy-com---palette-light.freeprivacypolicy-com---nb {
  background-color: var(--c-white) !important;
}
.freeprivacypolicy-com---palette-light .cc-cp-foot-byline {
  display: none !important;
}
.freeprivacypolicy-com---palette-light .cc-nb-okagree, .freeprivacypolicy-com---palette-light .cc-nb-reject, .freeprivacypolicy-com---palette-light .cc-cp-foot-save {
  background: var(--c-black) !important;
  color: var(--c-white) !important;
}

.block-savings #customer-form {
  display: none;
}
.block-savings .carousel-holder {
  background: var(--c-white);
  color: var(--c-black);
  padding: 30px;
}
.block-savings #results {
  text-align: center;
}
.block-savings #results h4 {
  font-size: 40px;
  margin-bottom: 10px;
}
.block-savings #nv-questions, .block-savings #nv-calc, .block-savings #nv-summary, .block-savings #customer-form-success {
  display: none;
}
.block-savings .question {
  text-align: center;
}
.block-savings .question input {
  text-align: center;
}
.block-savings .question label {
  margin-bottom: 5px;
}
.block-savings input, .block-savings select {
  min-width: 200px;
  font-size: 24px;
}
.block-savings .button-holder {
  padding-top: 30px;
}
.block-savings .question, .block-savings .button-holder {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.block-savings .next, .block-savings .prev {
  background: transparent;
  padding: 0;
  appearance: none;
  border: none;
  text-decoration: underline;
  transition: all 0.4s ease-in-out;
  color: var(--c-black);
  margin: 0 20px;
}
.block-savings .next.secondary, .block-savings .prev.secondary {
  text-decoration: none;
  opacity: 0.5;
}
.block-savings .next:hover, .block-savings .prev:hover {
  color: var(--c-green-light);
  opacity: 1;
  text-decoration: underline;
}
.block-savings .progress {
  margin-top: 30px;
  height: 5px;
}
.block-savings .progress .bar {
  opacity: 1;
  transition-duration: 0.4s;
  transition-property: width;
  transition-timing-function: ease-in-out;
}

.block-teaser-link {
  text-align: center;
}
.block-teaser-link .content {
  padding: 60px;
  position: relative;
  border: 1px solid var(--c-light);
}
.block-teaser-link .content .teaser-info {
  background: var(--c-white);
  color: var(--c-black);
  padding: 2px 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  font-size: 16px;
}
.block-teaser-link .content .inner {
  position: relative;
  z-index: 2;
}
.block-teaser-link.teaser-decoma .content {
  color: #ecebe3;
  border: none;
}
.block-teaser-link.teaser-decoma .content:after {
  content: " ";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #1c2929;
  opacity: 0.8;
  top: 0;
  left: 0;
  z-index: 0;
}
.block-teaser-link.teaser-decoma .content .inner {
  padding: 60px;
  border: 1px solid #ecebe3;
}
.block-teaser-link.teaser-decoma .content img {
  width: 80vw;
  max-width: 400px;
  margin-bottom: 60px;
}

.block-sub-pages h2 {
  margin-bottom: 0;
  text-align: center;
}
.block-sub-pages .sub-page-preview a {
  background-color: var(--c-white);
  padding: 20px;
  display: block;
  text-decoration: none;
  transition-duration: 0.4s;
  transition-property: background-color, color;
  transition-timing-function: ease-in-out;
}
.block-sub-pages .sub-page-preview a .sub-headline {
  font-size: 14px;
  color: var(--c-green-light);
  text-transform: uppercase;
  margin-bottom: 0;
  transition-duration: 0.4s;
  transition-property: color;
  transition-timing-function: ease-in-out;
}
.block-sub-pages .sub-page-preview a span {
  text-decoration: underline;
  display: block;
  margin-top: 10px;
}
.block-sub-pages .sub-page-preview a .headline {
  font-weight: 600;
  margin-bottom: 5px;
}
.block-sub-pages .sub-page-preview a:hover {
  background-color: var(--c-green-light);
  color: var(--c-white) !important;
}
.block-sub-pages .sub-page-preview a:hover .sub-headline {
  color: var(--c-black) !important;
}
.block-sub-pages .sub-page-preview .mini-headline {
  margin-bottom: 0;
}

/*# sourceMappingURL=az.custom.theme.css.map */
