/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/



:root {
/* font-sizes */
  --fs-body: {font=};
  --fs-sm: 1.75rem;
  --fs-md: 2rem;
  --fs-lg: 2.25rem;

/*  spacing variables  */
  --space-unit: 1rem;
  /* 4px Spacing-0.5*/
  --space-0-5: calc(var(--space-unit) * 0.5);
  /* 8px  Spacing-1*/
  --space-1: var(--space-unit);
  /* 16px  Spacing-2*/
  --space-2: calc(var(--space-unit) * 2);
  /* 24px  Spacing-3*/
  --space-3: calc(var(--space-unit) * 3);
  /* 32px  Spacing-4*/
  --space-4: calc(var(--space-unit) * 4);
  /* 40px  Spacing-5*/
  --space-5: calc(var(--space-unit) * 5);
  /* 48px  Spacing-6*/
  --space-6: calc(var(--space-unit) * 6);
  /* 56px  Spacing-7*/
  --space-7: calc(var(--space-unit) * 7);
  /* 64px  Spacing-8*/
  --space-8: calc(var(--space-unit) * 8);
  /* 72px  Spacing-9*/
  --space-9: calc(var(--space-unit) * 9);
  /* 80x  Spacing-10*/
  --space-10: calc(var(--space-unit) * 10);


  /* 72px*/
  --content_horizontal_padding_mobile: calc(var(--space-unit) * 9);
    /* 148px*/
  --content_horizontal_padding: calc(var(--space-unit) * 18.5);

  --size-unit: 1rem;
  /* 4px */
  --size-0-5: calc(var(--space-unit) * 0.5);
  /* 8px */
  --size-1: var(--space-unit);
  /* 16px */
  --size-2: calc(var(--space-unit) * 2);
  /* 24px */
  --size-3: calc(var(--space-unit) * 3);
  /* 32px */
  --size-4: calc(var(--space-unit) * 4);
  /* 40px */
  --size-5: calc(var(--space-unit) * 5);
  /* 48px */
  --size-6: calc(var(--space-unit) * 6);

--max-content-width: calc(var(--space-unit) * 180);

  /* Gap */
  --gap-md: var(--space-2);
  --gap-lg: var(--space-3);
  --gap-xl: var(--space-4);

  /* Arrow sizes */
  --arrow-width: 3.5rem;
  --arrow-height: 1.75rem;
  
  /* font families */
  --handsome: "Handsome";
  --rubik: "Rubik";
  --quarto: "Quarto";

  /* font weights */
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-black: 900;

  /* font-size */
  --preamble-desktop: 2.5rem;
  --preamble-mobile: 2.25rem;
  --decorative-text: 3.25rem;

  /* aspect-ratio */
  --aspect-ratio-16-9: 16/9;

/* colors */
  --pink: #FAC9DA;
  --red: #FF2B5D;
  --orange: #FFA346;
  --green-400: #41FF87;
  --green-500: #22FC73;
  --green-600: #1BCA5C;
  --blue: #38B5FF;
  --dark-blue: #1E1440;
  --yellow: #FFDE41;
  --light-grey: #F5F5F5;
  --white: #FFFFFF;
  --black: #140B26;
  --dark-grey: #6E6E69;
  --grey: #BCBCB7;
  --grey-600: #757575;
  --grey-900: #212121;
  --text-black: var(--grey-900);
  --pure-black: #000;

  --z-index-100: 100;

  --max-width: 143rem;
  --mobile-width: 477px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --white: #F5F5F5;
    --light-grey: #212121;
    --light-grey-dark-theme:#F5F5F5;
  }
}







@font-face {
  font-family: 'Handsome';
  src:
    url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/fonts/handsome/Handsome-Regular.woff2) format('woff2');
    font-size: 400;
}

@font-face {
  font-family: 'Quarto';
  src: url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/fonts/quarto/Quarto-Black.otf) format('opentype');
  font-weight: 900;
}

@font-face {
  font-family: 'Rubik';
  src: url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/fonts/rubik/Rubik-Light.ttf) format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Rubik';
  src: url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/fonts/rubik/Rubik-Regular.ttf) format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Rubik';
  src: url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/fonts/rubik/Rubik-Medium.ttf) format('truetype');
  font-weight: 500;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
  overflow-x: hidden;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

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

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

.dnd-section > .row-fluid {
  max-width: var(--max-content-width);
  padding: var(--space-4) var(--space-3);
}

@media (min-width: 80em) {
  .dnd-section > .row-fluid {
    padding: var(--space-3) var(--content_horizontal_padding_mobile);
  }
}

@media (min-width: 90em) {
  .dnd-section > .row-fluid {
    padding: var(--space-4) var(--content_horizontal_padding);
  }
}

.container-fluid:first-of-type {
  padding-top: var(--space-3);
}

.page-footer .container-fluid:first-of-type {
  padding-top: 0;
}

.container-fluid:first-of-type .dnd-section:first-of-type  > .row-fluid {
  padding-top: var(--space-7);
}

.page-footer .container-fluid:first-of-type .dnd-section:first-of-type  > .row-fluid {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

@media (min-width: 48em) {
  .container-fluid:first-of-type {
    padding-top: 14.75rem;
  }

  .container-fluid:first-of-type .dnd-section:first-of-type  > .row-fluid {
    padding-top: var(--space-3);
  }
}

.inspiration-post {
  max-width: var(--max-width);
}

/* Blockquote */
blockquote {
  display: flex;
  padding: 0 !important;
  align-items: center;
  border: none !important;
}

blockquote:before {
  width: 4rem;
  content: url("data:image/svg+xml,%3Csvg%20width%3D'34'%20height%3D'27'%20viewBox%3D'0%200%2034%2027'%20fill%3D'none'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M33.7604%2011.0809C33.7604%2019.9609%2027.2804%2025.7209%2018.0804%2026.5209L17.9204%2025.9609C25.7604%2023.7209%2027.3604%2020.3609%2027.3604%2015.4009C27.3604%2013.4809%2026.9604%2012.9209%2025.6804%2012.9209H23.6804C19.0404%2013.0809%2018.3204%2010.0409%2018.3204%207.88092C18.3204%204.04092%2020.4804%200.440918%2025.6004%200.440918C29.6004%200.440918%2033.7604%203.32092%2033.7604%2011.0809ZM16.2404%2011.0809C16.2404%2019.9609%209.76039%2025.7209%200.560391%2026.5209L0.400391%2025.9609C8.24039%2023.7209%209.84039%2020.3609%209.84039%2015.4009C9.84039%2013.4809%209.44039%2012.9209%208.16039%2012.9209H6.16039C1.52039%2013.0809%200.800391%2010.0409%200.800391%207.88092C0.800391%204.04092%202.96039%200.440918%208.08039%200.440918C12.0804%200.440918%2016.2404%203.32092%2016.2404%2011.0809Z'%20fill%3D'%23212121'/%3E%3C/svg%3E");
}


@media (prefers-color-scheme: dark) {
  blockquote:before {
    content: url("data:image/svg+xml,%3Csvg%20width%3D'34'%20height%3D'27'%20viewBox%3D'0%200%2034%2027'%20fill%3D'none'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%3E%3Cpath%20d%3D'M33.7604%2011.0814C33.7604%2019.9614%2027.2804%2025.7214%2018.0804%2026.5214L17.9204%2025.9614C25.7604%2023.7214%2027.3604%2020.3614%2027.3604%2015.4014C27.3604%2013.4814%2026.9604%2012.9214%2025.6804%2012.9214H23.6804C19.0404%2013.0814%2018.3204%2010.0414%2018.3204%207.88141C18.3204%204.04141%2020.4804%200.441406%2025.6004%200.441406C29.6004%200.441406%2033.7604%203.32141%2033.7604%2011.0814ZM16.2404%2011.0814C16.2404%2019.9614%209.76039%2025.7214%200.560391%2026.5214L0.400391%2025.9614C8.24039%2023.7214%209.84039%2020.3614%209.84039%2015.4014C9.84039%2013.4814%209.44039%2012.9214%208.16039%2012.9214H6.16039C1.52039%2013.0814%200.800391%2010.0414%200.800391%207.88141C0.800391%204.04141%202.96039%200.441406%208.08039%200.441406C12.0804%200.441406%2016.2404%203.32141%2016.2404%2011.0814Z'%20fill%3D'%23F5F5F5'/%3E%3C/svg%3E");
  }
  blockquote p {
      color: var(--text-white);
  }
}

@media (prefers-color-scheme: light) {
  blockquote p {
      color: var(--text-white);
  }
}

blockquote p {
  font-family: var(--quarto);
  font-weight: var(--fw-black);
  line-height: 1.2;
  font-size: 3.25rem;
  margin-left: 2rem;
}

.decoration-text {
  font-family: var(--handsome);
  font-size: var(--decorative-text);
  font-weight: var(--fw-regular);
  line-height: 1;
  margin: 0;
}

.background-red {
  background-color: var(--red);
}

.background-orange {
  background-color: var(--orange);
}

.background-pink {
  background-color: var(--pink);
}
.background-green {
  background-color: var(--green-500);
}
.background-blue {
  background-color: var(--blue);
}
.background-yellow {
  background-color: var(--yellow);
}
.background-light-grey {
  background-color: var(--light-grey);
}
.background-white {
  background-color: var(--white);
}
.background-black {
  background-color: var(--black);
}
.background-dark-grey {
  background-color: var(--dark-grey);
}
.background-grey {
  background-color: var(--grey);
}
.background-grey-900 {
  background-color: var(--grey-900);
}

@media (prefers-color-scheme: dark) {
  .background-pink {
    background-color: var(--black);
  }

  .background-black {
    background-color: var(--pure-black);
  }

  .background-white {
    background-color: var(--white);
  }

  .background-light-grey {
    background-color: var(--grey-900);
  }
}
.text-black {
  color: var(--black);
}
.text-white {
  color: var(--white);
}

.text-green {
  color: var(--green-500);
}

@media (prefers-color-scheme: dark) {
  .text-white {
    color: var(--black);
  }

  .text-black {
    color: var(--white);
  }

  .background-green.text-black {
    color: var(--black);
  }
}
.divider {
  height: 0.25rem;
  background-color: var(--black);
  margin-bottom: var(--space-4);
  margin-top: var(--space-4);
}

@media (max-width: 47.98em) {
  .divider {
    margin-bottom: var(--space-3);
    margin-top: var(--space-3);
  }
}
.wrap {
  flex-wrap: wrap;
}

































form {
  margin: var(--space-4) auto 0 auto;
}

form,
.submitted-message {
  font-family: Rubik, serif;
  border: 1px none #F4F4EF;
;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: 

  
  
    
  


  rgba(244, 244, 239, 0.0)

;
  font-weight: 500;
  font-size: 2.5rem;
  padding: 0px;
;
  margin-top: var(--space-3);
}

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  border: 1px solid #212121;

  background-color: 

  
  
    
  


  rgba(255, 255, 255, 1.0)

;
  color: #140B26;
  border-radius: 3px;
}

@media (prefers-color-scheme: dark) {
  form input[type=text],
  form input[type=search],
  form input[type=email],
  form input[type=password],
  form input[type=tel],
  form input[type=number],
  form input[type=file],
  form select,
  form textarea {
    background-color: black;
    color: var(--white);
    border-color: var(--light-grey-dark-theme);
  }

  form input[type=checkbox] {
    filter: invert(100%);
  }
}

/* Form placeholder text */

::-webkit-input-placeholder {
  color: #140B26;
}

::-moz-placeholder {
  color: #140B26;
}

:-ms-input-placeholder {
  color: #140B26;
}

::placeholder {
  color: #140B26;
}

@media (prefers-color-scheme: dark) {
  ::-webkit-input-placeholder {
    color: var(--white);
  }
  
  ::-moz-placeholder {
    color: var(--white);
  }
  
  :-ms-input-placeholder {
    color: var(--white);
  }
  
  ::placeholder {
    color: var(--light-grey-dark-theme);
  }
}

/* Submit button */

form input[type=submit],
form .hs-button {
  height: var(--space-6);
  border: 1px none #71bf44;
;
  padding-top: 1.5rem;
padding-right: 4rem;
padding-bottom: 1.5rem;
padding-left: 4rem;
;
  font-family: Rubik, serif;
  color: #140B26;
  font-size: 2.25rem;
  background-color: 

  
  
    
  


  rgba(34, 252, 115, 1.0)

;
  border-radius: ;
  text-transform: ;
 
}

form input[type=submit]:hover,
form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:focus {
  background-color: 

  
  
    
  


  rgba(34, 252, 115, 1.0)

;
  color: #000000;
  border: 1px none #1a334e;
;
}

form input[type=submit]:active,
form .hs-button:active {
  background-color: rgba(#null, 0.0);
  border-color: ;
}

.form-title {
  display: none;
}

.hs-fieldtype-date .input .hs-dateinput:before {
  color: #140B26;
}

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

.green {
  background-color: var(--green-500);
  border: 1px solid var(--green-500);
}


/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 48em) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/
.page-footer .dnd-section {
  padding: var(--space-3) var(--space-2) var(--space-3);
}

@media screen and (max-width: 47.98em) {
  .page-footer .dnd-section {
    padding: 0 0 var(--space-2);
  }
}
.hamburger-menu {
  display: none;
}

@media screen and (max-width: 63.98em) {
  .hamburger-menu {
    cursor: pointer;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size-5);
    height: var(--size-5);
    padding: 0;
    position: relative;
    z-index: 100;
    margin-right: calc(var(--size-spacing-1) * -1);
    font-size: var(--size-3);
  }

  .hamburger-menu,
  .hamburger-menu:hover,
  .hamburger-menu:focus {
    border: none;
    background-color: transparent;
  }

  .hamburger-menu__icon {
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }

  .hamburger-menu.open .masked-icon--hamburger,
  .hamburger-menu .masked-icon--close {
    opacity: 0;
  }

  .hamburger-menu.open .masked-icon--close {
    opacity: 1;
  }
}

@media (prefers-color-scheme: dark) {
  .hamburger-menu {
    color: var(--white);
  }
}


.header {
  position: fixed;
  width: 100%;
  transition: background-color .3s ease;
  top: 0;
  left: 0;
}

.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-3) var(--space-8);
  margin: 0 auto;
}

.header .logo {
  display: flex;
  align-items: center;
  width: 13.5rem;
  margin: -0.75rem 0;
}

.header .logo svg {
  width: 100%;
}

@media (prefers-color-scheme: dark) {
 .header path {
    fill: var(--white);
 }
}

.header__buttons-wrapper .bjorn-button {
    margin: 0 var(--space-3);
}

.header__buttons-content{
  display: flex;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 79.98em) {
  .header__content {
    padding: 1.5rem var(--space-3);
  }
}

@media screen and (max-width: 63.98em) {
  .header__content {
    height: 9rem;
  }

  .header .logo {
    position: relative;
    z-index: var(--z-index-100);
  }

  .header__buttons-wrapper {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    transform: translateX(100%);
    background-color: var(--white);
    will-change: transform, opacity;
    transition: transform 0.3s cubic-bezier(0.16, 0.97, 0.46, 0.95), opacity 0.3s cubic-bezier(0.16, 0.97, 0.46, 0.95);
  }

  .header__buttons-content {
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    height: calc(100% - 9rem);
    margin-top: 9rem; 
    padding-top: var(--space-2);
  }

  .header__item {
    width: 100%;
  }

  @media (prefers-color-scheme: dark) {
    .header__buttons-wrapper {
      background-color: var(--grey-900);
    }
  }

  .header__buttons-wrapper.open {
    transform: translateX(0);
  }
}

@media screen and (max-width: 47.98em) {
  .header__content {
    height: 7rem;
    padding: var(--space-1) var(--space-3);
  }

  .header .logo {
    width: 10rem;
  }
  
  .header__buttons-content {
    margin-top: 7rem;
    height: calc(100% - 7rem);
  }
}
a {
  font-family: var(--rubik);
  font-weight: var(--fw-medium);
  color: var(--grey-900);
  text-decoration: underline;
  text-decoration-color: var(--green-600);
  text-decoration-thickness: 2px;
  transition: text-decoration-color 0.3s ease-in-out;
  text-underline-offset: 0.6rem;
  cursor: pointer;
  font-size: 2rem;
}

a:hover {
  text-decoration-color: var(--dark-blue);
}

@media (prefers-color-scheme: dark) {
  a {
    color: var(--white);
  }

  a:hover {
  text-decoration-color: var(--white);
}
}

a.small {
  font-family: var(--rubik);
  font-weight: var(--fw-regular);
  font-size: 1.75rem;
}

a.arrow::after {
  content: "";
  background-image: url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/images/module-icons/arrow-right.svg);
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  height: 1.875rem;
  width: 3.5rem;
  margin-left: 1rem;
  transition: transform 0.3s ease-in-out;
}

@media (prefers-color-scheme: dark) {
  a.arrow:not(.text-black)::after {
    background-image: url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/images/module-icons/arrow-right-white.svg);
  }
}

a.external,
a.arrow.external::after {
  background-image: url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/images/external-link.svg);
}

a.arrow:hover::after {
  transform: translateX(1rem);
}

a.large {
  font-size: 2rem;
  font-weight: var(--fw-medium);
}

a.small {
  font-size: 1.75rem;
}

a.no-decoration {
  text-decoration: none;
}





.subtitle {
  font-family: var(--rubik);
  font-weight: var(--fw-regular);
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

@media (prefers-color-scheme: dark) {
  .subtitle {
    color: var(--white);
  }
}

body {
  line-height: 1.5;
  overflow-wrap: break-word;
  font-weight: var(--fw-regular);
  letter-spacing: 0.15px;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  margin: 0;
}

/* Headings */

h1,
.h1 {
  font-family: var(--quarto);
  font-weight: var(--fw-black);
  font-size: 8rem;
  color: var(--text-black);
  letter-spacing: -1px;
}

@media (max-width: 47.98em) {
  h1,
  .h1 {
    font-size: 5rem;
  }
}

h2,
.h2 {
  font-family: var(--quarto);
  font-weight: var(--fw-black);
  color: var(--text-black);
  font-size: 5rem;
  letter-spacing: -0.5px;
  margin-bottom: 3rem;
  margin-top: 0;
}

@media (max-width: 47.98em) {
  h2,
  .h2 {
    font-size: 4rem;
    margin-bottom: 2rem;
  }
}

h3,
.h3 {
  font-family: var(--quarto);
  font-weight: var(--fw-black);
  color: var(--text-black);
  font-size: 3.75rem;
  margin-bottom: 3rem;
  margin-top: 0;
}

@media (max-width: 47.98em) {
  h3,
  .h3 {
    font-size: 3.25rem;
    margin-bottom: 2rem;
  }
}

h4,
.h4 {
  font-weight: 500;
  font-family: Rubik, serif;
  color: #212121;
  font-size: 2.5rem;
  text-transform: ;
}

@media (prefers-color-scheme: dark) {
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4 {
    color: var(--white);
  }
}

h5,
.h5 {
  font-family: Rubik, serif;
  color: #212121;
  font-size: 20px;
  text-transform: ;
}

h6,
.h6 {
  font-family: Rubik, serif;
  font-size: 14px;
  text-transform: ;
}

h1,
h4,
h5,
h6 {
  margin: 0;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

@media (min-width: 48em) {
  h1,
  h2,
  h3 {
    max-width: 94rem;
  }
}

/* Lists */

ul,
ol {
  margin: 0;
}

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

ul li,
ol li {
  margin-bottom: 1rem;
}

.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.no-list li {
  margin-bottom: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #ccc;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}






.button {
  width: fit-content;
  display: block;
  border-radius: 5rem;
  font-size: 2rem;
  letter-spacing: 0.46px;
  font-family: var(--rubik);
  font-weight: var(--fw-medium);
  padding-top: 1.5rem;
padding-right: 4rem;
padding-bottom: 1.5rem;
padding-left: 4rem;
;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.button::after {
  content: '';
  display: inline-block;
  margin-left: 1.5rem;
  height: var(--arrow-height);
  width: var(--arrow-width);
  mask-image: url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/images/module-icons/arrow-right.svg);
  mask-size: cover;
  transition: background-color 0.15s ease-in-out, transform 0.3s ease-in-out;
}

.button:hover::after {
  transform: translateX(1rem);
}

.button.background-green:is(:hover, :active) {
  color: var(--dark-blue);
  background-color: var(--green-400);
}

.button.background-green:is(:hover, :active)::after {
  background-color: var(--dark-blue);  
}

.button.background-black:is(:hover, :active) {
  color: var(--green-400);
  background-color: var(--dark-blue);  
}

.button.background-black:is(:hover, :active)::after {
  background-color: var(--green-400);  
}

.button.text-white::after {
  background-color: var(--white);
}

.button.text-black::after {
  background-color: var(--black);
}

@media (prefers-color-scheme: dark) {
  .button.text-white::after {
    background-color: var(--black);
  }

  .button.background-black:is(:hover, :active) {
    color: var(--dark-blue);
    background-color: var(--white);  
  }

  .button.background-black:is(:hover, :active)::after {
    background-color: var(--dark-blue);  
  }
}

@media (max-width: 47.98em) {
  .button {
    padding-top: 1.5rem;
padding-right: 4rem;
padding-bottom: 1.5rem;
padding-left: 4rem;
;
  }
}
/* Fields */

.hs-form-field {
  margin-bottom: var(--space-3);
}

.hs-input[type="checkbox"] {
  height: 3rem;
  width: 3rem;
}

/* Labels */

form label {
  color: var(--black);
  display: block;
  font-size: 2.25rem;
  margin-bottom: 0.35rem;
}

@media (prefers-color-scheme: dark) {
  form label {
    color: var(--white);
  }
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  font-size: 1.75rem;
  padding: 1.625rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Placeholders */

form .hs-form-field input::placeholder,
form .hs-form-field textarea::placeholder {
  color: #9E9E9E;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; 
  letter-spacing: 0.15px;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: var(--space-1);
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p,
form span,
form p {
  font-size: 1.75rem;
  margin: 0 0 var(--space-3);
}

form label{
  font-size: 1.75rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */
.legal-consent-container a {
  font-size: 1.75rem;
}

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  font-size: 1.75rem;
}

/* Validation */


@media (prefers-color-scheme: dark) {
  .hs-form-required {
    color: var(--white);
  }
}

@media (prefers-color-scheme: light) {
  .hs-form-required {
    color: var(--grey-900);
  }
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */
form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: var(--fw-medium);
  font-family: var(--rubik);
  font-size: 2rem;
  margin-top: 1rem;
  border-radius: 40px;
  padding-right: 9rem; 
  position: relative;
  transition: background-position 0.3s ease-in-out;
  background-image: url("https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/images/module-icons/arrow-right.svg");
  background-repeat: no-repeat;
  background-size: 4rem; 
  background-position: right 4rem center;
}

form input[type=submit]:hover,
form .hs-button:hover {
  background-position: right 3rem center;
  background-color: var(--green-400); 
}

form .hs-fieldtype-textarea{
  min-height: 12.5rem;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}



.services-contact-us-form .dnd-section>.row-fluid {
  max-width: unset;
}
/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
.preambule {
  font-family: var(--rubik);
  font-size: var(--preamble-mobile);
  font-weight: var(--fw-medium);
}

@media (min-width: 64em) {
  .preambule {
    max-width: 94rem;
    font-size: var(--preamble-desktop);
  }

  .preambule #hs_cos_wrapper_preambule {
    max-width: 94rem;
    margin-bottom: var(--space-5);
  }
}
.masked-icon {
  background-color: currentColor;
  display: inline-block;
  height: 1em;
  width: 1em;
  vertical-align: middle;
  line-height: 0;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
}

.masked-icon--close {
  -webkit-mask-image: url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/images/module-icons/close.svg);
  mask-image: url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/images/module-icons/close.svg);
}

.masked-icon--chevron-down {
  -webkit-mask-image: url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/images/module-icons/chevron-down.svg);
  mask-image: url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/images/module-icons/chevron-down.svg);
}

.masked-icon--hamburger {
  -webkit-mask-image: url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/images/module-icons/hamburger.svg);
  mask-image: url(https://20274887.fs1.hubspotusercontent-na1.net/hubfs/20274887/raw_assets/public/esatto-theme-test/images/module-icons/hamburger.svg);
}
.hover-underlined {
  display: inline-block;
  position: relative;
}

.hover-underlined::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0.625rem;
  height: 0.25rem;
  background-color: currentColor;
  transform: scale(0, 1);
  transform-origin: right center;
  transition: transform 0.25s;
  will-change: transform;
}

a:hover .hover-underlined::after,
button:hover .hover-underlined::after,
.hover-underlined:hover::after {
    transform: scale(1, 1);
    transform-origin: left center;
    will-change: transform;
}
.skip-link {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  transform: translateY(0);
  padding: var(--space-1);
  text-decoration-color: currentColor;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

.skip-link:focus {
  position: relative;
  transform: translateY(0);
}

/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: var(--space-1);
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 71.875em) and (min-width: 48em) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 47.98em) {
  .header__container {
    flex-direction: column;
    padding: var(--space-1) 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 47.98em) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}




.header__search .hs-search-field__input {
  
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-position: center right 15px;
    background-repeat: no-repeat;
  
  height: 45px;
  padding: 0 0.7rem;
}




.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 48em) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 var(--space-1) 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 47.98em) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 47.98em) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 47.98em) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 47.98em) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 47.98em) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts
  .hs-item-has-children:hover
  > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts
  .hs-item-has-children:hover
  > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 47.98em) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts
    .hs-item-has-children:hover
    > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts
    .hs-item-has-children:hover
    > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

.hs_cos_wrapper_type_rich_text img {
  /*Remove white space below image without modifying display property*/
  vertical-align: bottom; 
}

.hs_cos_wrapper_type_rich_text {
  display: block;
}

.hs_cos_wrapper_type_rich_text h1,
.hs_cos_wrapper_type_rich_text h2,
.hs_cos_wrapper_type_rich_text h3,
.hs_cos_wrapper_type_rich_text h4,
.hs_cos_wrapper_type_rich_text h5,
.hs_cos_wrapper_type_rich_text h6,
.hs_cos_wrapper_type_rich_text p,
.hs_cos_wrapper_type_rich_text ul,
.hs_cos_wrapper_type_rich_text ol,
.hs_cos_wrapper_type_rich_text blockquote,
.hs_cos_wrapper_type_rich_text table, 
.hs_cos_wrapper_type_inline_rich_text h1,
.hs_cos_wrapper_type_inline_rich_text h2,
.hs_cos_wrapper_type_inline_rich_text h3,
.hs_cos_wrapper_type_inline_rich_text h4,
.hs_cos_wrapper_type_inline_rich_text h5,
.hs_cos_wrapper_type_inline_rich_text h6,
.hs_cos_wrapper_type_inline_rich_text p,
.hs_cos_wrapper_type_inline_rich_text ul,
.hs_cos_wrapper_type_inline_rich_text ol,
.hs_cos_wrapper_type_inline_rich_text blockquote,
.hs_cos_wrapper_type_inline_rich_text table 
{
  margin-bottom: var(--space-2);
}

.hs_cos_wrapper_type_rich_text p + h1,
.hs_cos_wrapper_type_rich_text p + h2,
.hs_cos_wrapper_type_rich_text p + h3,
.hs_cos_wrapper_type_rich_text p + h4,
.hs_cos_wrapper_type_rich_text p + h5,
.hs_cos_wrapper_type_rich_text p + h6,
.hs_cos_wrapper_type_inline_rich_text p + h1,
.hs_cos_wrapper_type_inline_rich_text p + h2,
.hs_cos_wrapper_type_inline_rich_text p + h3,
.hs_cos_wrapper_type_inline_rich_text p + h4,
.hs_cos_wrapper_type_inline_rich_text p + h5,
.hs_cos_wrapper_type_inline_rich_text p + h6 {
  padding-top: var(--space-2);
}

.info-box > .hs_cos_wrapper_type_inline_rich_text p{
  margin: 0;
}

.hs_cos_wrapper_type_rich_text blockquote p:last-child {
  margin-bottom: 0;
}


@media(max-width: 47.98em) {
  .page-footer :has(.hs_cos_wrapper){
    justify-content: flex-start;
  }
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* margin-bottom 8px */
.mb-sm {
  margin-bottom: var(--space-1);
}

/* margin-bottom 16px */
.mb-md {
  margin-bottom: var(--space-2);
}

/* margin-bottom 24px */
.mb-lg {
  margin-bottom: var(--space-3);
}

/* margin-bottom 32px */
.mb-xl {
  margin-bottom: var(--space-4);
}

/* margin-bottom 40px */
.mb-xxl {
  margin-bottom: var(--space-5);
}

/* margin-bottom 48px*/
.mb-xxxl {
  margin-bottom: var(--space-6);
}

/* margin-top 8px */
.mt-sm {
  margin-top: var(--space-1);
}

/* margin-top 16px */
.mt-md {
  margin-top: var(--space-2);
}

/* margin-top 24px */
.mt-lg {
  margin-top: var(--space-3);
}

/* margin-top 32px */
.mt-xl {
  margin-top: var(--space-4);
}

/* margin-top 40px */
.mt-xxl {
  margin-top: var(--space-5);
}

/* margin-top 48px*/
.mt-xxxl {
  margin-top: var(--space-6);
}

/* no margin */
.no-m {
  margin: 0;
}

/* margin top bottom 8px */
.my-sm {
  margin-top: var(--space-1);
  margin-bottom: var(--space-1);
}

/* margin top bottom 16px */
.my-md {
  margin-top: var(--space-2);
  margin-bottom: var(--space-2);
}

/* padding 24px */
.p-lg {
  padding: var(--space-4);
}

/* center horizontally */
.h-center {
  margin-left: auto;
  margin-right: auto;
}

.height-fit-content {
  height: fit-content;
}

.z-100 {
  z-index: var(--z-index-100);
}

@media (max-width: 47.98em) {
  .mt-xxl {
    margin-top: var(--space-4);
  }

  .mb-xl {
    margin-bottom: var(--space-3);
  }

  .mt-xl {
    margin-top: var(--space-3);
  }

  .mobile-mb-xl {
    margin-bottom: var(--space-4);
  }

  .p-lg {
    padding: var(--space-3);
  }
}
.sticky {
  position: sticky;
}
.LEFT {
  margin-right: auto;
}

.CENTER {
  margin: 0 auto;
}

.CENTER.MIDDLE {
  margin-inline: auto;
}

.MIDDLE {
  margin: auto 0;
}

.RIGHT {
  margin-left: auto;
}

.BOTTOM {
  margin-top: auto;
}

.TOP {
  margin-bottom: auto;
}
/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 47.98em) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Sections */

.jobs-divider-wrapper .divider-section > .row-fluid {
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}

.start-page-divider-wrapper .divider-section > .row-fluid {
  padding-top: 0;
  padding-bottom: var(--space-4);
}

@media (max-width: 47.98em) {
  .divider-section {
    margin: 0;
  }

  .jobs-divider-wrapper .divider-section > .row-fluid {
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
  }

  .start-page-divider-wrapper .divider-section > .row-fluid {
    padding-top: 0;
    padding-bottom: var(--space-4);
  }
}
.case-description.dnd-section > .row-fluid {
  padding-top: 0;
  padding-bottom: 0;
}
.cases-list-section .cases-list {
  margin-bottom: var(--space-3);
}

@media screen and (min-width: 47.98em){
  .cases-list-section .cases-list {
    margin-bottom: var(--space-4);
  }

}

.cases-list-section {
  background-color: var(--light-grey);
}

.start-page-cases .cases-list-section {
  background-color: var(--white);
}

@media (prefers-color-scheme: dark) {
  .cases-list-section {
    background-color: var(--light-grey);
  }
  
  .start-page-cases .cases-list-section {
    background-color: transparent;
  }
}
.related-articles {
  background-color: var(--light-grey);
}

.related-articles .cards-wrapper {
  margin-bottom: var(--space-3);
}

.related-articles > .row-fluid {
  padding-top: var( --space-4);
  padding-bottom: var( --space-4);
}

@media screen and (min-width: 47.98em) {
  .related-articles .cards-wrapper {
    margin-bottom: var(--space-4);
  }

  .related-articles > .row-fluid {
    padding-top: var( --space-5);
    padding-bottom: var( --space-5);
  }
}
.paragraph-link-list-picture {
  max-width: 47.98em;
  margin: 0 auto;
}
.link-list-section {
  max-width: 1514px;
  margin: 0 auto;
  padding: 98px 175px 101px;
}

.link-list-with-headings-section {
  background-color: var(--light-grey);
}

.link-list-no-heading-section {
  background-color: var(--light-grey);
}

.link-list-no-heading-section > .row-fluid {
  padding-bottom: var(--space-4);
  padding-top: var(--space-4);
}

@media screen and (min-width: 47.98em) {
  .link-list-no-heading-section > .row-fluid {
    padding-bottom: var(--space-5);
    padding-top: var(--space-5);
  }
}
.related-jobs-section {
  background-color: var(--light-grey);
}
.europe-map-wrapper > .row-fluid {
  max-width: unset;
  margin-left: auto;
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

@media screen and (min-width: 47.98em) {
  .europe-map-wrapper > .row-fluid {
    padding-top: var(--space-5);
    padding-bottom: var(--space-5);
  }
}

/* Pages */


.home-page .dnd-section > .row-fluid {
  max-width: rem;
}

.home-page.hero .dnd-section > .row-fluid {
  width: 100%;
  max-width: unset;
}

.home-page h2 {
  margin-bottom: 4rem;
}


.start-page-service-wrapper .dnd-section > .row-fluid {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

@media screen and (min-width: 47.98em) { 
  .start-page-service-wrapper .dnd-section > .row-fluid {
    padding-top: var(--space-7);
    padding-bottom: var(--space-7);
  }
}
@media (min-width: 48em) {
  .page-header h1 {
    max-width: 120rem;
  }
}
.service-page .dnd-section > .row-fluid {
  margin: 0 auto;
}

.service-page.page-header .row-fluid {
  padding-bottom: 0;
}

.service-page.content .dnd-section > .row-fluid {
  padding-top: var(--space-2);
  padding-bottom: var(--space-4);
}

.service-page.content .preambule:not(.contact-wrapper .preambule) {
  margin-bottom: var(--space-3);
}

@media screen and (min-width: 47.98em) {
  .service-page.content .dnd-section > .row-fluid {
    padding-top: var(--space-3);
    padding-bottom: var(--space-7);
  }
  
  .service-page.content .preambule:not(.contact-wrapper .preambule) {
    margin-bottom: var(--space-5);
  }
}


.cases-wrapper .dnd-section > .row-fluid {
  max-width: rem;
  padding: 0 2rem;
}
.dnd-content-wrapper.about-us-page .dnd-section:nth-child(1) > .row-fluid {
  padding-bottom: 0;
}

.dnd-content-wrapper.about-us-page .dnd-section:nth-child(2) > .row-fluid {
  padding-top: 0;
}

.dnd-content-wrapper.about-us-page .preambule {
  margin-bottom: var(--space-3);
}

.europe-map-header-wrapper.dnd-section > .row-fluid {
  padding-bottom: 0;
}

@media screen and (min-width: 47.98em) {
  .dnd-content-wrapper.about-us-page .preambule {
    margin-bottom: var(--space-3);
  }
}
.article-page .article-page__header img {
  aspect-ratio: var(--aspect-ratio-16-9);
  width: 100% !important;
  object-fit: cover;
  max-width: 100%;
  display: block;
}

.article-page .article-page__header h1 {
  margin-bottom: var(--space-2);
}

.article-page .article-page__header .h6 {
  margin-bottom: var(--space-0-5);
}


.article-page .article-page__header .preambule {
  margin-bottom: var(--space-3);
}

.article-page .dnd-section:not(.related-articles) > .row-fluid {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: var(--space-4);
}


@media (min-width: 48em) {
  .article-page .article-page__header h1 {
    margin-bottom: var(--space-3);
  }

  .article-page .article-page__header .h6 {
    margin-bottom: var(--space-1);
  }

  .article-page .article-page__header .preambule {
    margin-bottom: var(--space-5);
  }

  .article-page .dnd-section:not(.related-articles) > .row-fluid {
    margin-bottom: var(--space-5);
  }
}
.contact-us-form-wrapper .dnd-section > .row-fluid { 
    padding-top: var(--space-4);
    padding-bottom: var(--space-4);
}

.divider-wrapper .dnd-section > .row-fluid {
    padding-top: 0;
    padding-bottom: var(--space-3);
}


@media screen and (min-width: 47.98em){
    .contact-us-form-wrapper .dnd-section > .row-fluid { 
        padding-top: var(--space-6);
        padding-bottom: var(--space-6);
    }

    .divider-wrapper .dnd-section > .row-fluid {
        padding-top: 0;
        padding-bottom: var(--space-4);
}
}
.jobs-wrapper .dnd-section > .row-fluid {
    padding-top: 0;
    padding-bottom: 0;
}
.inspiration-content-wrapper .divider:not(.event-wrapper__event-time .divider) {
  margin-top: var(--space-3);
  margin-bottom: var(--space-3);
}

.inspiration-content-wrapper .dnd-section:first-of-type > .row-fluid {
  padding-top: 0;
}

.inspiration-content-wrapper .dnd-section:last-of-type > .row-fluid {
  padding-bottom: var(--space-4);
}

@media screen and (min-width: 47.98em) {
  .inspiration-content-wrapper .divider:not(.event-wrapper__event-time .divider) {
    margin-top: var(--space-5);
    margin-bottom: var(--space-5);
  }

  .inspiration-content-wrapper .dnd-section:last-of-type > .row-fluid {
    padding-bottom: var(--space-7);
  }
}
.job-page .dnd-section > .row-fluid {
  margin: 0 auto;
}

.job-page.page-header .row-fluid {
  padding-bottom: 0;
}

.job-page.content .dnd-section > .row-fluid {
  padding-top: var(--space-2);
  padding-bottom: var(--space-4);
}

.job-page.content .dnd-section .button {
    margin-top: var(--space-3);
    margin-bottom: var(--space-3);
  }

@media screen and (min-width: 47.98em) {
  .job-page.content .dnd-section > .row-fluid {
    padding-top: var(--space-3);
    padding-bottom: var(--space-7);
  }

  .job-page.content .dnd-section .button {
    margin-top: var(--space-4);
    margin-bottom: var(--space-4);
  }
}
/* Drag and drop */
.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-header-wrapper .dnd-section > .row-fluid {
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

.dnd-content-middle-wrapper .dnd-section > .row-fluid {
  padding-top: 0;
  padding-bottom: var(--space-3);
}

.dnd-content-end-wrapper .dnd-section:first-of-type > .row-fluid {
  padding-top: 0;
  padding-bottom: var(--space-4);
}

.dnd-content-wrapper .dnd-section:first-of-type > .row-fluid {
  padding-top: var(--space-3);
}
.dnd-content-wrapper .dnd-section:last-of-type > .row-fluid {
  padding-bottom: var(--space-4);
}

@media screen and (min-width: 47.98em) {
  .dnd-header-wrapper .dnd-section > .row-fluid {
    padding-bottom: var(--space-5);
    padding-top: var(--space-6);
  }

  .dnd-content-middle-wrapper .dnd-section > .row-fluid {
    padding-top: 0;
    padding-bottom: var(--space-5);
  }

  .dnd-content-end-wrapper .dnd-section:first-of-type > .row-fluid {
    padding-top: 0;
    padding-bottom: var(--space-7);
  }

  .dnd-content-wrapper .dnd-section:first-of-type > .row-fluid {
    padding-top: var(--space-6);
  }
  .dnd-content-wrapper .dnd-section:last-of-type > .row-fluid {
    padding-bottom: var(--space-7);
  }
}