/* ...






 */
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 100px;
  background-color: transparent;
  margin-bottom: 20px;
}

.glide * {
  box-sizing: inherit;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  align-self: center;
}

@media screen and (max-width: 500px) {
  .glide__slide {
    padding: 0px 0px;
  }
}

.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}

.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}

.glide--rtl {
  direction: rtl;
}
.glide__arrow {
  position: absolute;
  display: block;
  top: 52%;
  z-index: 2;
  padding: 0 12px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 150ms ease, border 300ms ease-in-out;
  transform: translateY(-50%);
}

.glide__arrow img {
  height: 30px;
}

.glide__arrow:focus {
  outline: none;
}

.glide__arrow:hover {
  border-color: white;
}

.glide__arrow--left {
  left: 0;
}

.glide__arrow--right {
  right: 0;
}

.glide__arrow--disabled {
  opacity: 0.33;
}

.glide__bullets {
  position: absolute;
  z-index: 2;
  bottom: -33px;
  left: 50%;
  display: inline-flex;
  list-style: none;
  transform: translateX(-50%);
}

.glide__bullet {
  background-color: transparent;
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid white;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  margin: 0 0.6em;
}

.glide__bullet:focus {
  outline: none;
}

.glide__bullet:hover {
  border: 2px solid black;
  background-color: rgba(255, 255, 255, 0.5);
}

.glide__bullet--active {
  background-color: white;
}

.glide--swipeable {
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.glide--dragging {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

@media screen and (max-width: 991px) {
  .glide__arrows {
    display: none;
  }

  .glide__bullets {
    bottom: 2em;
  }
}
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #3FB8AF;
}
/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}
/* GLOBAL */

*,
::after,
::before {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family: "AT Surt", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
  max-width: 100%;
  height: auto;
}

[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}

button,
select {
  text-transform: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: circle;
}

i,
span,
a {
  display: inline-block;
}

a {
  position: relative;
  text-decoration: none;
  color: #0000cc;
}

.underline-on-hover:after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  background-color: rgb(35, 232, 193);
  height: 1px;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right;
  transform-origin: right;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.underline-on-hover:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
  transform-origin: left;
}

button,
input,
optgroup,
select,
textarea,
blockquote {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: button;
}
.button {
  border-radius: 32px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  opacity: 1;
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.button--large {
  width: 16.4em;
  height: 3.8em;
}

.button--small {
  width: 13.6em;
  height: 3em;
}

.button--green {
  background-color: #7df3de;
  color: #000;
}

.button--green:hover {
  background-color: #27ebc8;
}

.button--green:focus,
.button--green:active {
  background-color: #101010;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .button--large {
    width: 8.8rem;
    height: 1.9rem;
  }

  .button--small {
    width: 12.6em;
    height: 2.7em;
  }
}
@font-face {
  font-family: "AT Surt";
  src: url("/fonts/Surt-Light/Surt-Light.eot"); /* IE9*/
  src: url("/fonts/Surt-Light/Surt-Light.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("/fonts/Surt-Light/Surt-Light.woff") format("woff"),
    /* chrome firefox */ url("/fonts/Surt-Light/Surt-Light.ttf")
      format("truetype"),
    /* chrome firefox opera Safari, Android, iOS 4.2+*/
      url("/fonts/Surt-Light/Surt-Light.svg#AT Surt Light") format("svg"); /* iOS 4.1- */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AT Surt";
  src: url("/fonts/Surt-SemiBold/Surt-SemiBold.eot"); /* IE9*/
  src: url("/fonts/Surt-SemiBold/Surt-SemiBold.eot?#iefix")
      format("embedded-opentype"),
    /* IE6-IE8 */ url("/fonts/Surt-SemiBold/Surt-SemiBold.woff") format("woff"),
    /* chrome firefox */ url("/fonts/Surt-SemiBold/Surt-SemiBold.ttf")
      format("truetype"),
    /* chrome firefox opera Safari, Android, iOS 4.2+*/
      url("/fonts/Surt-SemiBold/Surt-SemiBold.svg#AT Surt SemiBold")
      format("svg"); /* iOS 4.1- */
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AT Surt";
  src: url("/fonts/Surt-Bold/Surt-Bold.eot"); /* IE9*/
  src: url("/fonts/Surt-Bold/Surt-Bold.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("/fonts/Surt-Bold/Surt-Bold.woff") format("woff"),
    /* chrome firefox */ url("/fonts/Surt-Bold/Surt-Bold.ttf")
      format("truetype"),
    /* chrome firefox opera Safari, Android, iOS 4.2+*/
      url("/fonts/Surt-Bold/Surt-Bold.svg#AT Surt Bold") format("svg"); /* iOS 4.1- */
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #2e2e2e;
  margin: 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  color: #777;
  margin: 0;
}
/* BLOG */
.dib-no-author { 
  display: none; 
}

div#dib-pie {
  border: 1px solid rgb(35, 232, 193);
}

div#dib-pie.dib-pie-50, div#dib-pie-fill {
  background: rgb(35, 232, 193);
}

a.dib-post:hover:after {
  content:none;
}

h1.dib-post-title {
  line-height: 1em;
  margin-bottom: 15px;
}
/* customers typography */

.customers {
  overflow-x: hidden;
}

.customers__heading {
  color: #000;
}

.customers__heading--large {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.0625;
  letter-spacing: -0.03em;
}

.customers__heading--medium {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.customers__heading--small {
  font-size: 1.875rem;
  line-height: 1.66;
  letter-spacing: -0.03em;
  font-weight: normal;
}

.customers__heading--blue {
  color: #67f1d8;
}

.customers__p {
  font-size: 1rem;
  letter-spacing: 0.018rem;
  line-height: 1.6rem;
  color: #555555;
}

@media (max-width: 500px) {
  .customers__heading--large {
    font-size: 3.5rem;
    line-height: 1.05;
  }

  .customers__heading--medium {
    font-size: 1.875rem;
    line-height: 1.0666;
  }

  .customers__heading--small {
    font-size: 1.5rem;
    line-height: 2;
  }

  .customers__p {
    line-height: 1.375rem;
    font-size: 0.875rem;
  }
}

/* customers components */

.customers__section {
  width: 100vw;
}

.customers__section--grey {
  background-color: #f4f4f4;
}

.customers__section__container {
  padding: 0 20px;
  margin: auto;
}

.customers__section__container--narrow {
  max-width: 982px;
}

.customers__section__container--wide {
  max-width: 1314px;
}

@media (max-width: 500px) {
  .customers__section__container {
    padding: 0;
  }
}
.case-studies {
  margin: 48px auto 0;
  max-width: 1104px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.case-studies__heading {
  text-transform: uppercase;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.12rem;
  line-height: 1;
  font-weight: 600;
  color: #d1d0d0;
}

.case-studies__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 20px;
  grid-gap: 10px;
}

.case-studies__img-wrapper {
  background-color: white;
  flex: 0 0 24%;
}

.case-studies__img:hover {
  opacity: 0.3;
}

@media screen and (max-width: 991px) {
  .case-studies__logos {
    grid-gap: 8px;
    padding-top: 24px;
  }

  .case-studies {
    margin: 0 20px;
  }
}

@media screen and (max-width: 500px) {
  .case-studies__img-wrapper {
    flex: 0 0 48%;
  }
}
.customers__hero {
  display: flex;
  align-items: center;
  margin: 36px 0px;
  min-height: 377px;
  grid-gap: 85px;
}

.customers__content {
  max-width: 340px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.charcoal-arrow {
  position: relative;
}

.charcoal-arrow__img-wrapper {
  position: absolute;
  width: 160%;
  top: 350px;
  right: -260px;
}

.customers__paragraph-wrapper {
  display: flex;
  flex-direction: column;
  grid-gap: 15px;
  margin-top: 35px;
  margin-bottom: 40px;
  max-width: 490px;
}

.customers__hero-img-wrapper {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .customers__hero {
    background-size: 400px;
  }

  .customers__content {
    padding-top: 0;
  }
}

@media screen and (max-width: 855px) {
  .charcoal-arrow__img-wrapper {
    top: 400px;
  }
}

@media screen and (max-width: 737px) {
  .charcoal-arrow__img-wrapper {
    top: 485px;
    right: -210px;
  }
}

@media screen and (max-width: 500px) {
  .customers__hero {
    flex-direction: column-reverse;
    margin: 0px;
    padding-right: 0px;
    grid-gap: 20px;
  }

  .customers__hero-img-wrapper {
    width: 115%;
  }

  .customers__content {
    margin: 0 auto;
  }

  .charcoal-arrow__img-wrapper {
    transform: rotate(60deg);
    top: 430px;
    right: -370px;
  }

  .customers__title {
    max-width: 315px;
    position: relative;
  }

  .customers__paragraph-wrapper {
    margin-bottom: 30px;
    max-width: 89%;
  }
}
.statistics {
  display: flex;
  margin: auto;
  padding: 62px 0px;
}

.statistics__container {
  display: flex;
  flex-direction: column;
  grid-gap: 25px;
  width: 32%;
  text-align: center;
  border-left: 3px solid rgba(229, 229, 229, 0.3);
  height: 236px;
  justify-content: space-evenly;
}

.statistics__container:nth-child(1) {
  border-left: none;
}

.statistics__container:nth-child(2) {
  width: 36%;
}

.statistics__heading {
  text-transform: uppercase;
  align-self: center;
  font-size: 0.625rem;
  letter-spacing: 0.125rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #8e8e8e;
  max-width: 269px;
}

.charcoal-oval {
  position: relative;
}

.charcoal-oval__img-wrapper {
  position: absolute;
  width: 140%;
  top: -35px;
  right: -45px;
}

.charcoal-double-underline {
  position: relative;
}

.charcoal-double-underline__img-wrapper {
  position: absolute;
  width: 160%;
  top: 30px;
  right: -30px;
}

.charcoal-arrows {
  position: relative;
}

.charcoal-arrows__img-wrapper {
  position: absolute;
  width: 160%;
}

.charcoal-arrows__img-wrapper--upper-right {
  top: -50px;
  right: -100px;
}

.charcoal-arrows__img-wrapper--upper-left {
  top: -40px;
  right: 50px;
}

.charcoal-arrows__img-wrapper--lower-right {
  top: 30px;
  right: -100px;
}

.charcoal-arrows__img-wrapper--lower-left {
  top: 50px;
  right: 40px;
}

@media screen and (max-width: 500px) {
  .statistics {
    flex-direction: column;
    padding: 0 0 20px;
  }

  .statistics__container {
    align-self: center;
    border-left: none;
    border-top: 3px solid rgba(229, 229, 229, 0.3);
    padding-top: 40px;
    height: 250px;
    width: 100%;
  }

  .statistics__container:nth-child(1) {
    border-top: none;
    margin-top: 40px;
    padding: 0;
  }

  .statistics__container:nth-child(2) {
    width: 100%;
  }

  .statistics__heading {
    max-width: 216px;
  }
}
.customers-page-testimonial-carousel {
  background-color: #f4f4f4;
  background-size: cover;
  display: flex;
  align-items: center;
}

.customers-page-testimonial {
  background-size: cover;
  min-height: 490px;
}

.customers-page-testimonial_wrapper {
  display: flex;
  padding: 70px 100px;
  justify-content: space-around;
}

.customers__carousel {
  margin: 80px auto;
}

.customers-page-testimonial__logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.customers-page-testimonial__logo {
  max-width: 350px;
}

.customers-page-testimonial__content {
  flex: 55%;
  color: #000;
  background-color: white;
  padding: 40px;
  max-width: 618px;
  display: flex;
  flex-direction: column;
  grid-gap: 40px;
}

.customers-page-testimonial__quote-wrapper {
  display: flex;
  flex-direction: column;
  grid-gap: 40px;
}

.customers-page-testimonial__quote {
  color: #6f6f6f;
  align-self: center;
}

.customers-page-testimonial__source {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  line-height: 1.666;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
}

.customers-page-testimonial__divider {
  display: none;
  margin: 20px auto 0;
  border-top: 2px solid #000;
  border-right: none;
  border-bottom: none;
  border-left: none;
  width: 10px;
}

.customers-page__glide-bullets {
  bottom: 30px;
}

@media screen and (max-width: 1090px) {
  .customers-page-testimonial {
    min-height: 510px;
  }
}

@media screen and (max-width: 991px) {
  .customers-page-testimonial {
    min-height: 610px;
  }

  .customers-page-testimonial__divider {
    display: block;
    border-top: 2px solid #000;
    border-bottom: none;
  }

  .customers-page-testimonial-carousel {
    padding: 0;
  }

  .customers-page-testimonial {
    display: block;
  }

  .customers-page-testimonial {
    padding: 0px 20px;
  }

  .customers-page-testimonial__content {
    text-align: center;
    padding: 40px 20px;
  }

  .customers-page-testimonial__source {
    font-size: 0.5rem;
    line-height: 1.25;
    letter-spacing: 0.1rem;
    margin-top: 10px;
  }

  .customers-page-testimonial__logo {
    padding: 0px 80px 60px;
  }
}

@media screen and (max-width: 800px) {
  .customers-page-testimonial_wrapper {
    flex-direction: column;
    padding: 0;
    align-items: center;
  }
}

@media screen and (max-width: 500px) {
  .customers-page-testimonial {
    padding: 0px 40px 68px;
    height: 686px;
  }

  .customers-page-testimonial__quote-wrapper {
    flex: 1;
    grid-gap: 30px;
    align-self: flex-start;
  }

  .customers-page-testimonial__source-wrapper {
    display: flex;
    flex-direction: column;
    align-self: flex-end;
  }

  .customers-page-testimonial__content {
    display: grid;
    flex: none;
    height: 390px;
    grid-gap: 0;
  }

  .customers__speechmarks__img-wrapper {
    max-width: 20px;
    margin: auto;
  }

  .customers-page-testimonial__logo {
    padding: 0 20px;
  }
}
.charcoal-underline {
  position: relative;
}

.charcoal-underline__img-wrapper {
  position: absolute;
}

.charcoal-underline__img-wrapper--hero {
  bottom: -49px;
  width: 246px;
  left: -6px;
}

.charcoal-underline__img-wrapper--net-zero {
  bottom: -35px;
  width: 158px;
  left: 2px;
}

.charcoal-underline__img-wrapper--carbon-removal {
  bottom: -30px;
  width: 158px;
  left: 12px;
}

.charcoal-underline__img-wrapper--route-to-net-zero {
  bottom: -31px;
  width: 165px;
  left: 12px;
}

@media (max-width: 500px) {
  .charcoal-underline__img-wrapper--hero {
    bottom: -33px;
    width: 150px;
    left: -1px;
  }

  .charcoal-underline__img-wrapper--net-zero {
    bottom: -21px;
    width: 93px;
    left: 2px;
  }

  .charcoal-underline__img-wrapper--carbon-removal {
    bottom: -20px;
    width: 105px;
    left: 2px;
  }

  .charcoal-underline__img-wrapper--route-to-net-zero {
    position: absolute;
    bottom: -25px;
    width: 130px;
    left: -7px;
  }
}

/* homepage typography */
.homepage {
  overflow-x: hidden;
}

.homepage__heading {
  color: #000;
}

.homepage__heading--large {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.0625;
  letter-spacing: -0.03em;
}

.homepage__heading--medium {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.homepage__heading--small {
  font-size: 1.875rem;
  line-height: 1.66;
  letter-spacing: -0.03em;
  font-weight: normal;
}

.homepage__p {
  color: #101010;
}

.homepage__p--large {
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.018em;
}

.homepage__p--small {
  font-size: 0.9375rem;
  letter-spacing: 0.018em;
  line-height: 1.6;
}

@media (max-width: 500px) {
  .homepage__heading--large {
    font-size: 2.5rem;
    line-height: 1.05;
  }

  .homepage__heading--medium {
    font-size: 1.875rem;
    line-height: 1.0666;
  }

  .homepage__heading--small {
    font-size: 1.5rem;
    line-height: 2;
  }

  .homepage__p--small,
  .homepage__p--large {
    font-size: 0.75rem;
  }
}

/* homepage components */

.section {
  width: 100vw;
}

.section--white {
  background-color: white;
  width: 100%;
}

.section--grey {
  background-color: #f4f4f4;
}

.section--net-zero {
  background-image: url("/assets/homepage/factory-e690593d9dd08c3db7a46078d2cc5843607c13ed220818901aa6b91626e40afb.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 10%;
}

.section--transparent {
  background-color: transparent;
}

.section__container {
  padding: 0 20px;
  margin: auto;
}

.section__container--narrow {
  max-width: 1148px;
}

.section__container--wide {
  max-width: 1314px;
}
.action {
  display: flex;
  flex-direction: row;
  max-width: 1104px;
  margin: auto;
}

.action__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  grid-gap: 25px;
  width: 50%;
}

.action__container:nth-child(1) {
  padding-right: 10px;
}
.action__container:nth-child(2) {
  padding-left: 25px;
  border-left: 3px solid #e5e5e5;
}

.action__paragraph-wrapper {
  max-width: 448px;
  flex: 1;
}

@media screen and (max-width: 991px) {
  .action {
    flex-direction: column;
  }

  .action__container {
    width: 100%;
    padding-top: 40px;
    border-top: 3px solid #e5e5e5;
    grid-gap: 20px;
  }

  .action__container:nth-child(1) {
    padding-bottom: 40px;
  }

  .action__container:nth-child(2) {
    padding-left: 0px;
    border-left: none;
  }
}
.brand-area {
  padding-bottom: 80px;
}

.brand-area__heading {
  text-transform: uppercase;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.12rem;
  line-height: 1;
  font-weight: 600;
  color: #8e8e8e;
  padding-bottom: 20px;
  border-bottom: 3px solid #e5e5e5;
}

.brand-area__logos {
  text-align: center;
}

.brand-area__row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.brand-area__column {
  flex: 12.5%;
}

.brand-area__img {
  margin-top: 10px;
  vertical-align: middle;
  width: 100%;
  max-width: 150px;
}

/* Responsive layout - makes a 3 column-layout instead of 6 columns */
@media screen and (max-width: 991px) {
  .brand-area {
    padding-bottom: 40px;
  }

  .brand-area__heading {
    padding-bottom: 10px;
  }

  .brand-area__column {
    flex: 30%;
  }
}
.carbon-removal {
  padding-top: 80px;
  text-align: center;
  border-top: 3px solid #f4f4f4;
  border-bottom: 3px solid #f4f4f4;
}

.carbon-removal__header {
  max-width: 625px;
  padding-bottom: 50px;
  margin: auto;
}

.carbon-removal__content {
  max-width: 910px;
  margin: auto;
  display: flex;
  flex-direction: column;
  grid-gap: 18px;
}

@media screen and (max-width: 991px) {
  .carbon-removal {
    margin-top: 0;
    padding-top: 40px;
  }

  .carbon-removal__header {
    padding-bottom: 30px;
  }
}
.chat {
  display: flex;
  margin: auto;
  flex-direction: row;
  grid-gap: 30px;
  width: fit-content;
  align-items: center;
  padding: 65px 0;
}

@media screen and (max-width: 991px) {
  .chat {
    flex-direction: column;
    padding: 50px 0;
    text-align: center;
    grid-gap: 20px;
  }
}

@media screen and (max-width: 500px) {
  .chat {
    max-width: 265px;
  }
}
.demo {
  padding: 64px;
  border: 2px solid #27ebc8;
  background-color: #e5f9f6;
  text-align: center;
  margin: 0 auto 100px;
}

.demo__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .demo {
    padding: 45px 30px;
  }

  .demo__content {
    gap: 20px;
  }
}
.footer-image {
  margin: 70px 0px 0px;
  background-image: url("/assets/homepage/border-image@2x-85add5da0991ecb5d423fda9f4c4f9480c66acf809cf372245e57907b4f19ea5.webp");
  height: 100px;
}
.hero {
  background-image: url("/assets/homepage/hero_tick@2x-25c0d42a2a4a21bd3c255e301dd8bd97bd8cde7e1a402dab830271872556a7bb.webp");
  background-position: right center;
  background-size: 512px;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  margin-bottom: 96px;
  margin-top: 25px;
}

.hero__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: 100px;
}

.hero__paragraph-wrapper {
  display: flex;
  flex-direction: column;
  grid-gap: 17px;
  margin-top: 45px;
  margin-bottom: 40px;
  max-width: 490px;
}

.hero__paragraph {
  font-size: 1.25rem;
  letter-spacing: 0.02rem;
  line-height: 2rem;
  color: #101010;
}

@media screen and (max-width: 991px) {
  .hero {
    background-size: 400px;
  }

  .hero__content {
    padding-top: 0;
  }
}

@media screen and (max-width: 900px) {
  .hero {
  background-position: right bottom;
  align-items: top;
  margin-bottom: 0;
  padding-bottom: 240px;
  }
}

@media screen and (max-width: 630px) {
  .hero {
    background-size: 300px;
  }
}

@media screen and (max-width: 500px) {
  .hero {
    background-position: 80% 10%;
    background-size: 120px;
    margin-top: 20px;
    margin-bottom: 45px;
    padding-right: 0px;
    padding-bottom: 0px;
  }

  .hero__charcoal {
    bottom: -32px;
  }

  .hero__content {
    margin: 0 auto;
  }

  .hero__title {
    max-width: 207px;
    position: relative;
    left: 8%;
  }

  .hero__button {
    margin: auto;
  }

  .hero__paragraph-wrapper {
    margin-bottom: 30px;
  }

  .hero__paragraph {
    font-size: 0.87rem;
    letter-spacing: 0.02rem;
    line-height: 1.3rem;
    color: #101010;
    text-align: center;
  }
}

@media screen and (max-width: 360px) {
  .hero {
    background-position: 90% 13%;
  }

  .hero {
    background-size: 85px;
  }
}
.infographics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: 80px;
  padding-top: 90px;
  grid-gap: 80px;
}

.infographic {
  position: relative;
}

.infographic:not(:first-child)::after {
  position: absolute;
  content: "";
  top: 0;
  left: -40px;
  width: 3px;
  height: 100%;
  background-color: #f4f4f4;
}

.infographic__animation {
  opacity: 0;
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}

.infographic__animation[data-infographic-index="2"] {
  animation-delay: 0.5s;
}

.infographic__animation[data-infographic-index="3"] {
  animation-delay: 1s;
}

.infographic__animation--fade-in-bottom {
  animation-name: fade-in-bottom;
}

.infographic__animation--fade-in-left {
  animation-name: fade-in-left;
}

.infographic__animation--fade-in-right {
  animation-name: fade-in-right;
}

@keyframes fade-in-bottom {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fade-in-right {
  from {
    transform: translateX(30px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.infographic__header {
  text-align: center;
}

.infographic__paragraph-wrapper {
  margin: 20px 0 30px 0;
}

.infographic__paragraph {
  font-size: 1.25rem;
  line-height: 1.75rem;
  letter-spacing: 0.02rem;
  color: #101010;
}

.infographic__img-wrapper {
  grid-column: 1;
  margin: 0 0 45px 0;
}

.infographic__number-wrapper {
  margin-bottom: 20px;
}

.infographic__number {
  font-size: 1.3rem;
  background-color: #27ebc8;
  height: 3rem;
  width: 3rem;
  line-height: 3rem;
  border-radius: 50%;
  text-align: center;
  color: #fff;
  margin: auto;
}

.infographic__footer-wrapper {
  text-align: center;
}

.infographic__paragraph,
.infographic__footer {
  color: #000;
}

.infographic__footer {
  font-size: 0.9rem;
  letter-spacing: 0.01rem;
  line-height: 1.3rem;
}

/* Mobile layout */
@media screen and (max-width: 991px) {
  .infographics {
    grid-template-columns: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 20px;
    padding-top: 0px;
    margin-bottom: 0;
  }

  .infographic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .infographic__animation[data-infographic-index="2"],
  .infographic__animation[data-infographic-index="3"] {
    animation-delay: 0ms;
  }

  .infographic__paragraph-wrapper {
    margin: 20px 0 10px 0;
  }

  .infographic__img-wrapper {
    align-self: center;
    grid-row: 1 / 3;
    width: calc(100% + 50px);
    margin: 0;
  }

  .infographic:nth-child(odd) .infographic__img-wrapper {
    grid-column: 2;
    transform: translateX(-10px);
  }

  .infographic:nth-child(even) .infographic__img-wrapper {
    grid-column: 1;
    transform: translateX(-30px);
  }

  .infographic:nth-child(odd) .infographic__header,
  .infographic:nth-child(odd) .infographic__footer-wrapper {
    padding-right: 30%;
  }

  .infographic:nth-child(even) .infographic__header,
  .infographic:nth-child(even) .infographic__footer-wrapper {
    grid-column: 2;
    padding-left: 40px;
  }

  .infographic__header,
  .infographic__footer-wrapper {
    text-align: left;
  }

  .infographic__header {
    grid-column: 1 / 1;
    grid-row: 1 / 1;
    min-height: unset;
  }

  .infographic__footer-wrapper {
    grid-column: 1;
    grid-row: 2 / 3;
  }

  .infographic:last-child::after,
  .infographic:first-child::after {
    display: none;
  }
}

/* Mobile typography */
@media screen and (max-width: 500px) {
  .infographic__number {
    font-size: 0.9rem;
    line-height: 1.875rem;
    margin: 0;
    height: 1.875rem;
    width: 1.875rem;
  }

  .infographic__paragraph {
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 1.12rem;
    letter-spacing: 0.01rem;
  }

  .infographic__footer {
    font-size: 0.6rem;
    letter-spacing: 0.01rem;
    line-height: 1rem;
  }
}
.net-zero {
  padding-top: 90px;
  text-align: center;
}

.net-zero__header {
  margin: 0 auto 50px auto;
}

.net-zero__content {
  display: flex;
  flex-direction: column;
  grid-gap: 18px;
  max-width: 960px;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .net-zero {
    padding: 50px 30px 25px;
  }

  .net-zero__header {
    margin-bottom: 40px;
  }

  .net-zero__content {
    grid-gap: 10px;
  }
}
.offset {
  display: flex;
  flex-direction: row;
  padding: 80px 0;
  align-items: center;
  justify-content: space-between;
  grid-gap: 40px;
}

.offset__content {
  width: 50%;
  display: flex;
  justify-content: center;
}

.offset__content,
.offset__img-container {
  width: 50%;
}

.offset__img-container {
  max-width: 530px;
}

.offset__inner-content {
  text-align: left;
  max-width: 22.5rem;
}

.offset__heading-wrapper {
  margin-bottom: 20px;
}

.offset__paragraph-wrapper {
  max-width: 21.25rem;
}

.offset__list-item {
  list-style-image: url("/assets/icons/tick-icon-3e51c8711d9f4cf58a703db4cccd2b2e518b2b4c597f52ca7f3cd64f352e99dc.svg");
  margin-top: 18px;
  list-style-position: inside;
}

@media screen and (max-width: 991px) {
  .offset {
    flex-direction: column;
    grid-gap: 0px;
    margin: 35px 0px;
    padding: 0;
  }

  .offset__content {
    text-align: center;
    margin: 40px 50px 0px;
  }

  .offset__heading-wrapper,
  .offset__paragraph-wrapper {
    text-align: center;
  }

  .offset__paragraph-wrapper {
    padding: 0 20px;
  }

  .offset__list {
    max-width: fit-content;
    margin: 30px auto 0;
  }

  .offset__list-item {
    text-align: left;
    margin-top: 10px;
  }

  .offset__img-container,
  .offset__content {
    width: 100%;
  }

  .offset__img {
    display: block;
  }
}
.press {
  margin: 100px auto;
  max-width: 1104px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.press__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 40px;
  grid-gap: 10px;
}

@media screen and (max-width: 991px) {
  .press__logos {
    grid-gap: 20px;
    padding-top: 24px;
  }

  .press {
    margin: 70px 0px;
  }
}

@media screen and (max-width: 500px) {
  .press__logos {
    grid-template-columns: repeat(2, 1fr);
  }
}
.route-to-net-zero {
  display: flex;
  flex-direction: row;
  grid-gap: 40px;
  justify-content: flex-end;
  align-items: center;
  padding: 108px 0 115px;
}

.route-to-net-zero__content {
  width: 35.875rem;
  display: flex;
  justify-content: flex-start;
  padding: 80px 40px;
  background-color: #ffffff;
}

.route-to-net-zero__inner-content {
  display: flex;
  flex-direction: column;
  max-width: 27.5rem;
}

.route-to-net-zero__paragraph-wrapper {
  margin-top: 40px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  grid-gap: 12px;
}

@media screen and (max-width: 991px) {
  .route-to-net-zero {
    flex-direction: column;
    padding: 50px 35px;
  }

  .route-to-net-zero__content {
    justify-content: center;
    width: 100%;
    padding: 45px 33px;
  }

  .route-to-net-zero__inner-content {
    align-items: center;
    text-align: center;
  }

  .route-to-net-zero__paragraph-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.subscribe-area__input-wrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  max-height: 40px;
  max-width: 524px;
}

.subscribe-area__email {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 50px;
  padding: 0 20px;
  min-height: 2.3rem;
  padding-right: 10.2rem;
}
.subscribe-area__email,
.subscribe-area__email::placeholder {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  line-height: 1.6rem;
}

.subscribe-area__email::placeholder {
  color: #8e8e8e;
}

.subscribe-area__button {
  position: absolute;
  right: 0;
  border: none;
  display: inline-flex;
}

@media screen and (max-width: 991px) {
  .subscribe-area__email,
  .subscribe-area__email::placeholder {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }

  .subscribe-area__email {
    min-height: 1.9rem;
  }
}
.testimonial-carousel {
  background-color: #27ebc8;
  padding: 40px 0 70px;
  display: flex;
  align-items: center;
}

.customer-testimonial_wrapper {
  display: flex;
  padding: 20px 100px;
}

.carousel {
  margin: 0 auto;
}

.customer-testimonial__logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 33.3%;
}

.customer-testimonial__logo {
  max-width: 256px;
}

.customer-testimonial__content {
  flex: 66.6%;
  color: #000;
  padding: 0 40px;
}

.customer-testimonial__quote {
  font-size: 1.875rem;
  letter-spacing: 0.018em;
  line-height: 1.4;
  max-width: 675px;
}

.customer-testimonial__source {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  line-height: 1.666;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  margin-top: 30px;
}

.customer-testimonial__divider {
  display: none;
  margin: 15px auto;
  border-top: 2px solid #000;
  border-right: none;
  border-bottom: none;
  border-left: none;
  width: 10px;
}

@media screen and (max-width: 991px) {
  .customer-testimonial__divider {
    display: block;
  }

  .testimonial-carousel {
    padding: 0;
  }

  .customer-testimonial {
    display: block;
  }

  .customer-testimonial_wrapper {
    flex-direction: column;
    padding: 0px 20px;
  }

  .customer-testimonial__content {
    text-align: center;
    padding: 40px 20px;
  }

  .customer-testimonial__quote {
    font-size: 1.12rem;
    letter-spacing: 0.02rem;
    line-height: 1.75rem;
  }

  .customer-testimonial__source {
    font-size: 0.5rem;
    line-height: 1.25;
    letter-spacing: 0.1rem;
    margin-top: 15px;
  }

  .customer-testimonial__divider {
    border-top: 2px solid #000;
    border-bottom: none;
  }

  .customer-testimonial__logo {
    padding: 0px 80px 60px;
  }
}
.testimonial-heading {
  padding: 100px 0 40px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .testimonial-heading {
    padding: 50px 24px;
  }
}
.hiring__paragraph {
  padding-top: 10px;
}

.job-listing {
  padding-top: 20px;
  padding-bottom: 10px;
}

.whr-title {
  font-size: 1.1rem;
}

.whr-info {
  display: none;
}
/* LAYOUT */

.page {
  font-size: 1rem;
  font-weight: normal;
  font-style: normal;
  color: #777;
  background-color: #f4f4f4;
  overflow-x: hidden;
  line-height: 1.5;
  text-align: left;
  margin: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
}

.column {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.column__segment {
  padding-right: 15px;
  padding-left: 15px;
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
  flex-grow: 0;
}

.column__segment--fixed {
  width: 540px;
}

@media (min-width: 768px) {
  .column__segment {
    max-width: 720px;
  }
  .column__segment--fixed {
    width: 720px;
  }
}

@media (min-width: 992px) {
  .column__segment {
    max-width: 960px;
  }
  .column__segment--fixed {
    width: 960px;
  }
  .column__segment--narrow {
    max-width: 770px;
  }
}

@media (min-width: 1200px) {
  .column__segment {
    max-width: 1140px;
  }
  .column__segment--fixed {
    width: 1140px;
  }
  .column__segment--narrow {
    max-width: 920px;
  }
}

.highlight {
  border-bottom: 5px solid rgb(35, 232, 193);
  top: -4px;
  position: relative;
  max-height: 24px;
}

.highlightOffset {
  position: relative;
  top: 4px;
}

.form-error {
  font-size: 0.7rem;
  color: red;
}

/* RESUABLE COMPONENTS */

.section-heading {
  font-weight: 450;
  color: #777;
  margin: 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.9rem;
  text-align: center;
}

.centered-statement {
  text-align: center;
  max-width: 680px;
  margin: auto;
}

.centered-statement__paragraph {
  line-height: 1.5em;
  margin-bottom: 1em;
}
/* PRIVACY POLICY */

.privacy-policy {
  padding-top: 20px;
}

.privacy-policy__heading {
  text-decoration: underline;
  text-decoration-color: rgb(35,232,193);
  text-underline-offset: -5px;
  text-decoration-thickness: 5px;
  text-decoration-skip-ink: none;
}

.privacy-policy__list {
  list-style-type: none;
}
.footer {
  margin-top: 20px;
}

.footer-spacer {
  height: 100%;
  flex-grow: 1;
}

.copyright {
  height: 100%;
  padding-top: 10px;
  padding-bottom: 30px;
  font-size: 0.6rem;
  color: #d1d0d0;
  letter-spacing: 2px;
  text-align: center;
}

.footer__submenu {
  list-style: none;
  display: flex;
  flex-direction: row;
  grid-gap: 15px;
  padding-left: 0;
  margin-bottom: 0;
  align-items: start;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer__link {
  text-transform: uppercase;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: #777;
  padding: 10px 0;
  white-space: nowrap;
}
.hubspot-form-page {
  max-width: 1148px;
  padding: 0 20px;
  margin: auto;
}

.hubspot-form-page__grid {
  padding: 96px 0;
  display: grid;
  grid-template-columns: minmax(min-content, 410px) minmax(min-content, 530px);
  grid-auto-rows: auto;
  column-gap: 32px;
  justify-content: space-between;
  position: relative;
}

.hubspot-form-page__hero {
  position: absolute;
  max-width: 640px;
  right: -50px;
  z-index: -1;
}

.hubspot-form-page__header {
  grid-column: 1;
  grid-row: 1 / 2;
  margin-bottom: 70px;
}

.hubspot-form-page__title,
.hubspot-form-page__subtitle {
  font-size: 1.8rem;
  line-height: 2rem;
  color: #000;
}

.hubspot-form-page__title {
  max-width: 360px;
}

.hubspot-form-page__subtitle {
  font-weight: normal;
}

.hubspot-form-page__form-container {
  padding: 80px;
  border-radius: 3px;
  background: #fff;
  grid-column: 2;
  grid-row: 1 / 3;
  box-shadow: 0px 3px 6px #00000029;
}

.hubspot-form-page__form-container--book-demo {
  min-height: 918px;
}

.hubspot-form-page__form-container--contact-us {
  min-height: 836px;
}

.hubspot-form-page__logos {
  grid-column: 1;
  grid-row: 2 / 4;
}

.hubspot-form-page__logos-title {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #8e8e8e;
  font-weight: normal;
  letter-spacing: 0.15rem;
  margin-bottom: 20px;
}

.hubspot-form-page__logos-grid {
  border-top: 3px solid #e5e5e5;
  border-bottom: 3px solid #e5e5e5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 35px 0;
}

.divider {
  border: 0;
  border-top: 1px solid #e5e5e5;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  .hubspot-form-page {
    overflow-x: hidden;
  }

  .hubspot-form-page__grid {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }

  .hubspot-form-page__header,
  .hubspot-form-page__form-container,
  .hubspot-form-page__logos {
    grid-column: 1;
  }

  .hubspot-form-page__header {
    grid-row: 1 / 2;
    margin-bottom: 40px;
  }

  .hubspot-form-page__form-container {
    grid-row: 2 / 2;
    padding: 20px;
    margin-bottom: 100px;
  }

  .hubspot-form-page__form-container--book-demo {
    min-height: 668px;
  }

  .hubspot-form-page__form-container--contact-us {
    min-height: 586px;
  }

  .hubspot-form-page__logos {
    max-width: 400px;
    grid-row: 3 / 3;
  }
}

@media screen and (max-width: 500px) {
  .hubspot-form-page__hero {
    top: 126px;
    right: -20px;
    width: calc(100% + 40px);
  }

  .hubspot-form-page__form-container--book-demo {
    min-height: 822px;
  }

  .hubspot-form-page__form-container--contact-us {
    min-height: 740px;
  }
}
/* This is to enable adding a div to allow space for for the nav bar in flex column layouts.
The nav bar is positioned absolutely and so is out of the flex flow */
.navspacer {
  padding-top: 90px;
}

.nav {
  padding: 25px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: padding 0.3s ease-out 0s;
  -moz-transition: padding 0.3s ease-out 0s;
  -ms-transition: padding 0.3s ease-out 0s;
  -o-transition: padding 0.3s ease-out 0s;
  transition: padding 0.3s ease-out 0s;
}

.nav--sticky {
  background-color: #f3f3f3;
  padding: 10px 0;
  position: fixed;
  z-index: 99;
  border-bottom: 0.5px solid #e5e5e5;
}

.nav__toggler {
  display: none;
  padding: 0;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.nav__toggler-icon {
  background-color: #2e2e2e;
  width: 30px;
  height: 2px;
  background-color: rgb(103, 103, 103);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.nav__toggler--active .nav__toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.nav__toggler--active .nav__toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.nav__toggler--active .nav__toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

.nav__content {
  padding: 0 20px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: auto;
  max-width: 1148px;
}

.nav__book-demo-mobile {
  display: none;
  margin-right: 25px;
  margin-left: auto;
  min-width: fit-content;
}

.nav__brand-container {
  margin-right: 25px;
  width: 218px;
}

.nav__img {
  display: block;
}

.nav__submenu {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  align-items: center;
  grid-gap: 40px;
  flex-direction: row;
}

.nav__item {
  position: relative;
}

.nav__link {
  text-transform: uppercase;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: #777;
  padding: 10px 0;
}

@media (max-width: 1014px) {
  .navspacer {
    padding-top: 78px;
  }

  .nav__submenu {
    position: absolute;
    top: 38px;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0 12px;
    flex-direction: column;
    display: none;
    background-color: #f4f4f4;
  }

  .nav__brand-container {
    width: 143px;
  }

  .nav__book-demo-desktop {
    display: none;
  }

  .nav__book-demo-mobile {
    display: block;
  }

  .nav__toggler {
    display: block;
  }

  .nav__item {
    margin: 20px 0;
  }

  .nav__link {
    text-transform: capitalize;
    display: inline-block;
    font-size: 1.5rem;
    padding: 4px 0;
    color: #2e2e2e;
    font-weight: normal;
    letter-spacing: -0.05em;
  }

  .nav__link--green {
    color: #27ebc8;
  }
}
/* TECHZERO */
.techzero__paragraph {
  padding-top: 20px;
}

.techzero__paragraph--emphasized {
  font-weight: 700;
}

.techzero__heading {
  padding-top: 20px;
}

.techzero__commitments {
  padding-top: 20px;
}

.techzero__commitment {
  padding-top: 1px;
}
/* FONTS */
@font-face {
  font-family: "BwModelicaSS01-MediumExpanded";
  src: url("/fonts/BwModelicaSS01-MediumExpanded/BwModelicaSS01-MediumExpanded.otf")
    format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "BwModelicaSS01-ExtraBoldExpanded";
  src: url("/fonts/BwModelicaSS01-ExtraBoldExpanded/BwModelicaSS01-ExtraBoldExpanded.otf")
    format("opentype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "BwModelicaSS01-BlackExpanded";
  src: url("/fonts/BwModelicaSS01-BlackExpanded/BwModelicaSS01-BlackExpanded.otf")
    format("opentype");
  font-weight: normal;
  font-style: normal;
}

.section--beige {
  background-color: #ede7de;
  width: 100%;
  position: relative;
}

.xmas-party-calculator-wrapper {
  background-color: #1f1653;
}

.xmas-party-calculator {
  background-color: #1f1653;
  position: relative;
}

.xmas-party-calculator-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 65px;
}

/* LIGHTS */
.xmas-lights-1-mobile,
.xmas-lights-2-mobile,
.xmas-lights-3-mobile,
.xmas-lights-4-mobile,
.xmas-lights-5-mobile,
.xmas-lights-6-mobile,
.xmas-lights-4-tablet {
  display: none;
}

.xmas-lights-left-desktop {
  position: absolute;
  max-width: 460px;
  right: calc(65% + 100px);
  top: -50px;
  text-align: center;
}

.xmas-party-left-container {
  padding: 0 20px;
  width: 100%;
}

.xmas-party-right-container {
  padding: 0 20px;
  width: 100%;
}

.xmas-lights-top-right-desktop {
  position: absolute;
  width: 960px;
}

.xmas-lights-mid-right-desktop {
  position: absolute;
  width: 960px;
  bottom: -110px;
  padding-left: 332px;
}

.xmas-lights-mid-center-desktop {
  position: absolute;
  bottom: -96px;
  right: 40%;
  width: 648px;
}

.xmas-lights-footer-container {
  display: flex;
  justify-content: center;
}

.xmas-calculator-cta-button-container {
  margin-top: 40px;
  flex-basis: 680px;
  flex-shrink: 0;
}

.xmas-lights-bottom-left-desktop {
  width: 605px;
  flex-shrink: 1;
}

.xmas-lights-bottom-right-desktop {
  width: 605px;
  flex-shrink: 1;
}

.xmas-party-left {
  position: relative;
  background-color: #ede7de;
  padding: 55px 70px;
  max-width: 596px;
  float: right;
}

.xmas-party-right {
  position: relative;
  padding: 212px 0 0 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  max-width: 596px;
}

.xmas-party-sc-logo {
  width: 175px;
  margin-bottom: 50px;
}
.xmas-party-calculator-title {
  color: #1e1750;
  margin: 0 20px;
}

.xmas-party-calculator-title-container {
  position: relative;
  margin-bottom: 50px;
}

.xmas-party-calculator-title-img-container {
  position: absolute;
  width: calc(100% + 50px);
  top: -24px;
  left: -24px;
  height: calc(100% + 50px);
}

.xmas-party-calculator-title-img {
  height: 100%;
}

.xmas-party-calculator-title {
  font-family: "BwModelicaSS01-ExtraBoldExpanded";
  font-size: 36px;
  letter-spacing: -0.36px;
  line-height: 1.277;
}

.xmas-party-form {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.xmas-party-form__group {
  display: grid;
  grid-template-columns: 30% 1fr;
  align-items: center;
  column-gap: 15px;
}

.xmas-party-form__label {
  font-family: "BwModelicaSS01-ExtraBoldExpanded";
  font-size: 15px;
  letter-spacing: -0.15px;
  line-height: 1.2;
  color: #1e1750;
}

.xmas-party-form__input {
  width: 128px;
  padding: 13px;
  font-size: 18px;
  letter-spacing: -0.18px;
  line-height: 1.11;
  border: 1px solid #707070;
  border-radius: 6px;
  color: #8e8e8e;
}

.xmas-party-form__slider {
  width: 100%;
}

.xmas-party-form__slider-labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 8px;
  margin-bottom: 12px;
}

.xmas-party-form__slider-label {
  font-family: "BwModelicaSS01-MediumExpanded";
  font-size: 11px;
  letter-spacing: 0.11px;
  line-height: 1.3;
  color: #1e1750;
  opacity: 80%;
  width: 25%;
}

.xmas-party-form__slider-label--center {
  text-align: center;
}

.xmas-party-form__slider-label--left {
  text-align: left;
}

.xmas-party-form__slider-label--right {
  text-align: right;
}

.xmas-party-transport-label {
  max-width: 68px;
}

.total-emissions-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 25px;
  text-align: center;
}

.total-emissions-title {
  font-family: "BwModelicaSS01-ExtraBoldExpanded";
  font-size: 20px;
  letter-spacing: -0.2px;
  line-height: 1.4;
  max-width: 292px;
  color: #ede7de;
  margin-bottom: 25px;
}

.total-emissions-co2-kgs {
  font-family: "BwModelicaSS01-BlackExpanded";
  font-size: 90px;
  letter-spacing: -1.8px;
  line-height: 0.46;
  color: #ffffff;
  margin-bottom: 20px;
}

.total-emissions-footer {
  font-family: "BwModelicaSS01-MediumExpanded";
  font-size: 12px;
  color: #ede7de;
  letter-spacing: -0.12px;
  line-height: 1.5;
  max-width: 200px;
}

.total-christmas-trees-copy {
  align-self: flex-end;
  text-align: right;
  margin-bottom: 30px;
}

.total-christmas-trees-copy-p {
  font-size: 12px;
  color: #ede7de;
  letter-spacing: -0.12px;
  line-height: 1.5;
  font-family: "BwModelicaSS01-MediumExpanded";
}

.total-christmas-trees-number {
  font-family: "BwModelicaSS01-ExtraBoldExpanded";
  font-size: 15px;
  color: #ede7de;
  letter-spacing: -0.15px;
}

.total-christmas-trees-copy__arrow {
  height: 37px;
  margin-bottom: 20px;
  position: relative;
  right: 8px;
}

.xmas-calculator-cta {
  max-width: 362px;
  text-align: center;
}

.xmas-calculator-cta-title {
  font-family: "BwModelicaSS01-ExtraBoldExpanded";
  font-size: 15px;
  color: #ede7de;
  letter-spacing: -0.15px;
  line-height: 1.46;
  margin-bottom: 15px;
}

.xmas-calculator-cta-button {
  background-color: #7df3de;
  border-radius: 50px;
  height: 48px;
  width: 310px;
  margin: auto;
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1e1750;
  margin-bottom: 35px;
}

.xmas-calculator-cta-button:hover {
  background-color: #27ebc8;
}

.share-buttons-p {
  font-family: "AT Surt";
  color: #ede7de;
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 18px;
  margin-bottom: 8px;
}

.information-banner {
  display: flex;
  margin: auto;
  padding: 62px 40px;
  max-width: 2075px;
}

.information-banner__container {
  display: flex;
  flex-direction: column;
  grid-gap: 25px;
  width: 32%;
  text-align: center;
  border-left: 3px solid white;
}

.information-banner__img {
  max-height: 96px;
}

.information-banner__customer-logos {
  max-height: 53px;
}

.information-banner__container:nth-child(1) {
  border-left: none;
  padding-right: 30px;
}

.information-banner__container:nth-child(2) {
  width: 36%;
  padding-right: 30px;
  padding-left: 30px;
}

.information-banner__container:nth-child(3) {
  padding-left: 30px;
}

.information-banner__heading {
  font-family: "BwModelicaSS01-ExtraBoldExpanded";
  color: #1e1750;
  font-size: 20px;
}

.information-banner__subheading {
  align-self: center;
  font-size: 15px;
  letter-spacing: -0.15px;
  font-family: "BwModelicaSS01-MediumExpanded";
  color: #1e1750;
}

.information-banner__subheading--large {
  font-size: 20px;
  line-height: 32px;
}

.information-banner__subheading--bold {
  font-family: "BwModelicaSS01-BlackExpanded";
}

.information-banner__terms {
  align-self: center;
  font-size: 10px;
  letter-spacing: -0.1px;
  line-height: 24px;
  font-family: "BwModelicaSS01-MediumExpanded";
  color: #1e1750;
}

.information-banner__customer-grid {
}

.xmas-party-calculator-footer {
  position: relative;
  z-index: 1;
  padding-bottom: 0px;
}

.xmas-party-calculator-footer__link {
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 2;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 0;
}

.xmas-party-calculator-footer__copyright {
  color: #ffffff;
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 2;
  text-decoration: none;
  opacity: 25%;
  text-align: center;
}

.xmas-party-calculator-footer__submenu {
  list-style: none;
  display: flex;
  flex-direction: row;
  grid-gap: 50px;
  padding-left: 0;
  margin-bottom: 0;
  align-items: start;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

@media screen and (max-width: 1290px) {
  .xmas-lights-left-desktop {
    left: -150px;
  }

  .xmas-lights-mid-center-desktop,
  .xmas-lights-bottom-left-desktop,
  .xmas-lights-bottom-right-desktop {
    display: none;
  }
}

@media screen and (max-width: 980px) {
  .xmas-party-calculator-grid {
    grid-template-columns: 1fr;
    padding: 40px 40px 0;
    margin-bottom: 20px;
  }

  .xmas-party-left-container {
    padding: 0px;
  }

  .xmas-party-left {
    padding: 25px 30px 46px;
    max-width: 900px;
    float: none;
  }

  .xmas-party-sc-logo {
    margin: 0 auto 50px;
  }

  .xmas-lights-mid-center-desktop {
    display: none;
  }

  .xmas-lights-mid-right-desktop {
    display: none;
  }

  .xmas-lights-top-right-desktop {
    display: none;
  }

  .xmas-lights-left-desktop {
    display: none;
  }

  .xmas-party-calculator-title-container {
    max-width: 450px;
    margin: 0 auto 50px;
    text-align: center;
  }

  .xmas-party-right-container {
    padding: 60px 0 0 0;
  }

  .xmas-party-right {
    padding: 0;
    margin: auto;
  }

  .total-emissions-footer {
    font-size: 14px;
    max-width: 215px;
    letter-spacing: -0.14px;
  }

  .total-christmas-trees-copy {
    align-self: center;
  }

  .total-christmas-trees-copy-p {
    font-size: 14px;
    letter-spacing: -0.14px;
  }

  .total-christmas-trees-number {
    font-size: 18px;
    letter-spacing: -0.18px;
  }

  .xmas-calculator-cta-title {
    font-size: 20px;
    letter-spacing: -0.2px;
  }

  .total-christmas-trees-copy {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .total-christmas-trees-copy__arrow {
    transform: rotate(45deg);
    right: 0;
  }

  .xmas-lights-1-mobile,
  .xmas-lights-2-mobile {
    display: block;
    position: absolute;
    max-width: 50%;
  }

  .xmas-lights-2-mobile {
    top: 20%;
    right: 0;
  }

  .xmas-lights-3-mobile {
    display: block;
    position: absolute;
    max-width: 50%;
    top: 42%;
    left: 0;
  }

  .xmas-lights-5-mobile {
    transform: rotate(90deg);
    display: block;
    position: absolute;
    max-width: 50%;
    top: 51%;
    right: -205px;
  }

  .xmas-lights-6-mobile {
    transform: rotate(270deg);
    display: block;
    position: absolute;
    max-width: 50%;
    top: 67%;
    left: -205px;
  }

  .xmas-lights-4-tablet {
    display: block;
    width: calc(100% + 360px);
    height: 160px;
    background-image: url("/assets/xmas_party_calculator/lights_4_mobile-ea70ffc1d998d4e251263f59a28441bb3db38e8bbe63f926d327fc1abbf5d1eb.png");
    background-size: contain;
  }

  .xmas-calculator-cta-button {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 650px) {
  .information-banner {
    flex-direction: column;
    padding: 0 0 20px;
    margin: 40px 10px;
  }

  .information-banner__container {
    align-self: center;
    border-left: none;
    border-top: 3px solid white;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
  }

  .information-banner__container:nth-child(1) {
    border-top: none;
    padding-right: 0px;
  }

  .information-banner__container:nth-child(2) {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
  }

  .information-banner__container:nth-child(3) {
    padding-left: 0px;
  }

  .information-banner__subheading {
    max-width: none;
  }
}

@media screen and (max-width: 620px) {
  .xmas-party-calculator-title-container {
    max-width: 345px;
  }

  .xmas-party-calculator-title {
    font-size: 24px;
  }
  .xmas-party-form__group {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .xmas-party-form__label {
    margin-bottom: 15px;
    font-size: 18px;
  }

  .xmas-party-calculator-footer__submenu {
    grid-gap: 10px;
  }

  .xmas-party-form__label {
    text-align: center;
  }

  .xmas-lights-1-mobile {
    max-width: 50%;
  }

  .xmas-lights-2-mobile {
    max-width: 50%;
    top: 35%;
  }

  .xmas-lights-3-mobile {
    top: 48%;
  }

  .xmas-lights-5-mobile {
    display: none;
  }

  .xmas-lights-6-mobile {
    display: none;
  }

  .total-emissions-copy {
    position: relative;
    margin-bottom: 175px;
  }

  .xmas-lights-4-tablet {
    display: none;
  }

  .xmas-lights-4-mobile {
    display: block;
    position: absolute;
    top: -85px;
    width: 100vw;
  }
}

@media screen and (max-width: 585px) {
  .xmas-lights-4-mobile {
    top: -40px;
  }
}

@media screen and (max-width: 500px) {
  .xmas-lights-4-mobile {
    top: -25px;
  }
}

@media screen and (max-width: 470px) {
  .xmas-lights-1-mobile {
    max-width: 390px;
  }

  .xmas-lights-2-mobile {
    max-width: 390px;
    top: 34%;
  }

  .xmas-lights-3-mobile {
    max-width: 390px;
    top: 49%;
  }
  .xmas-lights-4-mobile {
    top: 50px;
  }
}

@media screen and (max-width: 390px) {
  .total-emissions-co2-kgs {
    font-size: 78px;
  }

  .xmas-lights-4-mobile {
    top: 75px;
  }
}

@media screen and (max-width: 370px) {
  .xmas-lights-4-mobile {
    top: 95px;
  }

  .xmas-party-calculator-grid {
    padding: 20px 20px 0;
  }

  .xmas-party-left {
    padding: 25px 20px 46px;
  }
}

@media screen and (max-width: 350px) {
  .xmas-lights-4-mobile {
    top: 120px;
  }
}

@media screen and (max-width: 340px) {
  .xmas-party-calculator-grid {
    padding: 10px 10px 0;
  }
}

/* Slider ovverides */
/* The root element */
.noUi-target {
  border: none;
  box-shadow: none;
  border-radius: 20px;
}

/* The handles */
.noUi-horizontal .noUi-handle {
  background-color: #6fe5c6;
  border-radius: 50%;
  height: 28px;
  width: 28px;
  box-shadow: none;
  border: none;
}

/* Get rid of some additonal lines added */
.noUi-handle:before,
.noUi-handle:after {
  content: none;
}

/* The background fill */
.noUi-connect {
  background-color: #6fe5c6;
}

/* The slider tube */
.noUi-connects {
  border-radius: 20px;
}

/* The bar */
.noUi-horizontal {
  height: 14px;
}
