/* 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.
*/

*, *: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;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* 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;
}

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



/* 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: 768px) {
  .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));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

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

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

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

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

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 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,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input::placeholder {
  color: #00A7D8;
    font-size: 1rem;
}

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 {
  display: inline-block;
      color: #00A7D8;
    font-size: 1rem;
  padding: 0.7rem;
  width: 100%;
      background: transparent;
    border-top: 0;
    border-right: 0;
    border-left: 0;
      border-bottom: 1px solid #1D1D1B;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* 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: 0.35rem;
}

/* 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 {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.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-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* 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;
}
.big-hero__container {
  position: relative;
  min-height: 36.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.big-hero__image {
  position: absolute;
  right: 0;
  top: -100px;
  z-index:-1;
}

.big-hero__image img {
  max-width: 700px !important;
}

.big-hero {
  max-width:45%; 
}

.big-hero__wrapper {
  flex:0 1 100%; 
  position:relative;
  z-index:3;
}

.big-hero-event__container {
  flex: 0 1 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index:2;
      padding: 1.5rem 0;
  padding:0 !important;
  bottom:125px !important;
  display:none !important;
}

.big-hero-event__container:before {
     content: "";
    height: 100px;
    position: absolute;
    width: 100px;
    transform: rotate(45deg);
    left: -50px;
      border-radius: 0 14px 0 0;
}  

.big-hero-event {
  max-width:65%;
  display:none !important;
}
  
.big-hero-event__info {
      display: block;
    margin-bottom: 0.875rem;
}

/* Service */

.services {
 display:flex; 
  align-items:stretch;
}

.services__item {
  flex: 1;
   /* aspect-ratio: 1.49/1;*/
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: relative;
    padding: 3rem;
}

@media screen and (min-width:1921px) {
 .services__item {
   /*aspect-ratio:auto;*/
   /*min-height:30rem;*/
  }
  
  .services {
   align-items:stretch; 
  }
}

.services__item *,
.services__item .button-text {
 color:#FFF; 
}

.services__item > .overlay {
 position:absolute;
top:0;
  right:0;
  bottom:0;
  left:0;
  opacity:0.75;
}

.services-item__sector {
      max-width: 75%;
    margin: 0 auto;
  position:relative;
  padding-bottom:1.4rem;
}

.services-item__content {
   max-width: 75%;
    margin: 0 auto;
  position:relative;
}

.services-item__content a {
 margin-top:1.4rem; 
}

/* Text and image */

.text-and-image__container {
  position: relative;
    min-height: 40rem;
    margin: 3rem 0;
      display: flex;
    align-items: center;
  overflow:hidden;
}

.text-and-image__image {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: absolute;
  aspect-ratio: 1.43/1;
  height: 40rem;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  top:0;
      -webkit-mask-size: contain;
}

.text-and-image__image--overlay {
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  left:0;
}

.text-and-image__container.image-left .text-and-image__image {
  -webkit-mask-image: url(https://26727767.fs1.hubspotusercontent-eu1.net/hubfs/26727767/masks/mask-left.png);
  mask-image: url(https://26727767.fs1.hubspotusercontent-eu1.net/hubfs/26727767/masks/mask-left.png);
}

.text-and-image__container.image-right .text-and-image__image {
  -webkit-mask-image: url(https://26727767.fs1.hubspotusercontent-eu1.net/hubfs/26727767/masks/mask-right.png);
  mask-image: url(https://26727767.fs1.hubspotusercontent-eu1.net/hubfs/26727767/masks/mask-right.png);
}

.text-and-image__container.image-right .text-and-image__image {
  right: 0;
}


.text-and-image__container.image-left .text-and-image__image {
  left: 0;
}

.text-and-image {
 max-width:50%; 
}

.text-and-image__container.image-left .text-and-image {
 margin-left:auto;
}

.text-and-image__title {
 margin-bottom:1rem; 
}
  

/* Logo feed */

.logo-feed__container {
 padding:3rem 0; 
}

.logo-feed__wrapper {
   /*   display: flex;
    flex-wrap: wrap;*/
  overflow:hidden;
}

.logo-feed__header {
 flex:0 1 100%;
  text-align:center;
  color:#FFF;
  margin-bottom:2rem;
}

.logo-feed__header h2 {
 color:#FFF; 
}

.logo-feed {
      flex: 0 1 100%;
    display: flex;
    gap: 1rem;
}

.logo-feed .swiper-wrapper {
     flex: 0 1 100%;
    display: flex;
    gap: 3rem; 
  transition-timing-function:linear !important; 
  align-items:center;
}

.logo-feed__item {
 flex:0 1 215px;
}

.logo-feed__item.logo-feed__item--manual {
 flex:0 1 auto; 
}

/* Three column text */

.three-column-text {
      display: flex;
    align-items: flex-start;
    gap: 5%;
  flex-wrap:wrap;
}



.three-column-text__item {
 flex:0 1 30%; 
}

.three-column-text__image img {
 max-width:100%; 
}

.three-column-text__image {
      width: 100%;
    min-height: 15rem;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin-bottom: 1rem;
  aspect-ratio:1;
}

.three-column-text__link:not(:last-child) {
 margin-bottom:0.75rem; 
}

/* Reference hero */

.reference-item__gutter {
 width:2%;
}

.reference-hero__container {
 padding:3rem 0; 
}

.reference-hero {
  text-align: center;
  max-width: 60%;
  margin: 0 auto;
}

.reference-item__overlay {
      position: absolute;
    background: linear-gradient(180deg, rgba(0, 167, 216, 0.30) 0%, rgba(0, 167, 216, 0.95) 100%);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  transition:all 0.3s ease;
  opacity:1;
}

.reference-item__overlay--hover {
  transition:all 0.3s ease;
  opacity:0;
  top:0;
  right:0;
  bottom:0;
  left:0;
  background: linear-gradient(180deg, #ABC676 0%, #00A7D8 100%); 
  position:absolute;
}

.reference-container-categories__item {
      display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 3.25rem;
}

.reference-container-categories__header {
      flex: 0 1 14%;
  margin-right:1rem;
}

.reference-categories {
      display: flex;
    align-items: center;
    gap: 15px;
  flex-wrap:wrap;
  width:100%;
  justify-content:center;
}

.reference-categories__item {
    
  transition:all 0.3s ease;
}

.reference-categories__item:hover,
.reference-categories__item.active-filter {
  
}

.reference-container__content:not(.reference-listing-page) {
      display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 2%;
}



.reference-container__content .swiper-wrapper {
 display:flex;
  gap:2%;
}

.reference-item  {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  flex: 0 1 32%;
  margin-bottom: 25px;
  min-height: 475px;
  display: flex;
  align-items: flex-end;
  transition:all 0.3s ease;
  border-radius:3px;
}

.reference-container__content:not(.reference-listing-page) {
  display: flex !important;
}

.reference-container__content:not(.reference-listing-page) .reference-item {
 display:flex !important; 
}

.reference-listing-page .reference-item {
 width:32%; 
}

.reference-item:hover .reference-item__overlay--hover {
 opacity:1;
}

.reference-item:hover .reference-item__overlay {
 opacity:0; 
}

.reference-item a {
     position: relative;
    padding: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    height: 100%; 
  text-decoration:none;
}

.reference-item__text {
      color: #FFF;
    overflow: hidden;
  flex:0 1 100%;
}
  
.reference-item-text__name {
      text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
  word-break:break-word;
  color:#FFF !important;
}

.reference-item-text__description {
  display:block;
      height: 0px;
    transition: all 0.3s ease;
} 

.reference-item__categories span {
  color:#FFF;
  text-transform:uppercase;
}

.reference-item:hover .reference-item-text__description {
 height:auto; 
}

.reference-item__arrow {
 display:flex; 
}

/* Single reference */
.single-reference-hero__container {
      min-height: 45vh;
    display: flex;
    align-items: flex-end;
    color: #FFF;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 3rem 0;
}

.single-reference-hero__gradient {
  position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(225deg, rgba(0, 167, 216, 0.20) 0%, rgba(0, 167, 216, 0.80) 100%);
}

.single-reference-hero__wrapper {
      position: relative;
  width:100%;
}

.single-reference-hero {
      max-width: 75%;
}

.single-reference-hero > * {
 color:#FFF; 
}

.single-reference-content {
  max-width: 75%;
    margin: 0 auto;
    padding: 5rem 0;
}

.small-cta-banner__container {
      padding: 3rem 0;
}

.small-cta-banner__container a {
 text-decoration:none; 
}

.single-reference-content__cta-banners .small-cta-banner__container--solid {
  background:#F6F6F6;
}

.single-reference-content__cta-banners .small-cta-banner__container--gradient {
  background: linear-gradient(90deg, #00A7D8 0%, #D3D800 100%);
}

.small-cta-banner__container--gradient h2 {
 color:#FFF; 
}

.small-cta-banner {
      display: flex;
    align-items: center;
    justify-content: space-between;
}

.small-cta-banner__text {
      flex: 0 1 75%;
}

.small-cta-banner__arrow {
      flex: 0 1 auto;
}

.small-cta-banner__arrow img {
      height: 68px;
}

.single-reference-content__reference-feed {
      padding: 3rem 0;
  overflow:hidden;
}



.single-reference-content__heading {
      display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.single-reference-content-heading__link {
     display: flex;
    align-items: center; 
}

.single-reference-content-heading__link > a {
 margin-right:2rem; 
}

.single-reference-feed__prev {
  transform:rotate(180deg);
  margin-right:1rem;
}

.reference-feed__arrow img {
     width: 26px; 
}

.reference-feed__arrow {
 display:flex;
  align-items:center;
  transition:all 0.3s ease;
  opacity:1;
  cursor:pointer;
}

.reference-feed__arrow.swiper-button-disabled {
 opacity:0.5;
  cursor:default;
}

/* People */

.people {
      display: flex;
    gap: 4%;
    flex-wrap: wrap;
  align-items:flex-start;
}

.people__filters {
     align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 15px; 
  padding-bottom: 3.25rem;
  justify-content:center;
  width:100%;
}

.people-gutter {
 width:4%; 
}

.people__item {
      flex: 0 1 22%;
    display: flex;
    flex-wrap: wrap;
  margin-bottom:3rem;
  justify-content:center;
  width:22%;
}

.people-item__image {
      flex: 0 1 100%;
  margin-bottom:1rem;
}

.people-item__image img {
      width: 100%;
  border-radius:3px;
}

.people-item__info {
      text-align: center;
}

.people-item__info > * {
 display:block; 
}

.people-item__info a {
 text-decoration:none; 
}

/* Text and form */

.text-and-form {
  display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.text-and-form__text {
 flex:0 1 45%; 
}

.text-and-form__form {
 flex:0 1 45%; 
}

/* Small hero */

.small-hero__container {
  align-items: flex-end;
    background-position: 50%!important;
    background-repeat: no-repeat!important;
    background-size: cover!important;
    color: #fff;
    display: flex;
    min-height: 45vh;
    padding: 3rem 0;
    position: relative;
}

.big-cta-banner.small-hero__container {
  min-height: 65vh;
  align-items: center;
}

.small-hero__overlay {
 background: linear-gradient(90deg, rgba(0, 167, 216, 1) 0%, rgba(0, 167, 216, 0.50) 100%); 
position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.big-cta-banner .small-hero__overlay {
      background: linear-gradient(49deg, rgba(0, 167, 216, 1) 0%, rgba(0, 167, 216, 0.00) 100%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.small-hero__wrapper {
 position:relative; 
}

.small-hero > * {
 color:#FFF; 
}

.small-hero {
 max-width:50%; 
  width:50%;
}

@media screen and (min-height:1440px) and (min-width:2560px) {
  .big-hero__image {
   top:-125px; 
  }
  
  .big-hero__image img {
   max-width:1200px !important; 
  }
  
  .big-hero__container {
   min-height:65.5rem; 
  }
}

@media screen and (max-width:1850px) {
 .text-and-image {
   max-width:40%; 
  } 
}

@media screen and (max-width:1600px) {

  
  .text-and-image__container {
   min-height:35rem; 
  }
  
  .text-and-image__image {
   height:35rem; 
  }
  
}

@media screen and (max-width:1500px) {
  
}

@media screen and (max-width:1400px) {
  .big-hero__image img {
    max-width: 600px!important;
  }
  
  .big-hero__image {
   top:0; 
  }
}


@media screen and (max-width:1350px) {
  .big-hero-event {
   padding-left:5rem;
    max-width:100%;
  }
  
  .text-and-image__image {
   height:30rem; 
  }
  
  .text-and-image__container {
   min-height:30rem; 
  }
}

@media screen and (max-width:1300px) {
  
}

@media screen and (max-width:1150px) {
 .text-and-image__image {
   height:25rem; 
  }
  
  .text-and-image__container {
   min-height:25rem; 
  } 
}

@media screen and (max-width:1100px) {
 .reference-item {
   flex:0 1 49%;
  }
  
  .reference-listing-page .reference-item {
   width:49%; 
  }
  
  .reference-container-categories__item {
   flex-wrap:wrap; 
  }
  
  .reference-container-categories__header {
   flex:0 1 100%;
    margin-bottom:1rem;
  }
  
  .big-hero__image img {
    max-width: 500px!important;
  }
  
  
  
  .people__item {
   flex:0 1 30%; 
    width:30%;
  }
  
  .people-gutter {
   width:5%; 
  }
  
  .people {
   gap:5%; 
  }
}

@media screen and (max-width:950px) {
  .big-hero__container {
   min-height:auto; 
  }
  
  .big-hero__wrapper {
   padding-top:32.5rem; 
  }
  
  .big-hero {
   max-width:100%; 
  }
  
  .single-reference-hero {
   max-width:100%; 
  }
  
  .text-and-image__image {
   height:20rem; 
  }
  
  .text-and-image__container {
   min-height:20rem; 
  }
  
  .single-reference-content {
   max-width:100%; 
  }
}

@media screen and (min-width:770px) {
 .three-column-text__container--four-column .three-column-text {
 gap:4%; 
}

.three-column-text__container--four-column .three-column-text__item {
 flex:0 1 22%; 
} 
}

@media screen and (max-width:769px) {
  
  .reference-categories__item {
    padding: 9.75px 18px;
  }
  
  .text-and-form {
   flex-wrap:wrap; 
  }
  
  .text-and-form__text {
   flex:0 1 100%; 
  }
  
  .text-and-form__form {
   flex:0 1 100%; 
  }
  
  
  
  .reference-hero__container {
   padding:1.5rem 0; 
  }
  .reference-hero {
   max-width:100%; 
  }
  
  .people__item {
   flex:0 1 45%; 
    width:45%;
  }
  
  .people-gutter {
   width:10%; 
  }
  
  .three-column-text__item {
   flex:0 1 45%; 
  }
  
  .text-and-image__container {
   flex-wrap:wrap; 
  }
  
  .text-and-image__image {
   order:2;
    position:relative;
    height:auto;
    width:100%;
  }
  
  .text-and-image__wrapper {
   margin-bottom:1.5rem;
    order:1;
  }
  
  .text-and-image {
   max-width:100%; 
  }
  
  .services {
   flex-wrap:wrap; 
  }
  
  .services__item {
   flex:0 1 100%; 
  }
  
  .reference-item {
   flex:0 1 100%;
  } 
  
  .reference-listing-page .reference-item {
   width:100%; 
  }
  
  .reference-item__gutter {
   width:0%; 
  }
  
  
  .small-hero {
   max-width:100%; 
    width:100%;
  }
}

@media screen and (max-width:500px) {
  
  
  
  .small-cta-banner {
   flex-wrap:wrap; 
  }
  
  .small-cta-banner__text {
   flex:0 1 100%; 
  }
  
  .small-cta-banner__arrow {
   flex:0 1 100%;
    margin-top:1rem;
  }
  
  .big-hero__wrapper {
   padding-top:95%; 
  }
  
  .big-hero__image {
   width:95%; 
  }
  
  .big-hero__image img {
   max-width:100% !important; 
  }
  
 .logo-feed__item {
 flex:0 1 125px;
}
  
  .logo-feed .swiper-wrapper {
   gap:1rem; 
  }
  
 .three-column-text__item {
   flex:0 1 100%; 
  } 
  
  .big-hero-event__container:before {
   display:none; 
  }
  
  .big-hero-event {
   padding-left:0; 
  }
  
  .services__item {
   padding:1.5rem; 
  }
  
  .people__item {
   flex:0 1 100%; 
    width:100%;
  } 
  
  .people-gutter {
   width:0%; 
  }
  
  .services-item__content, .services-item__sector {
   max-width:100%; 
  }
  
}

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

/* Header DND sections */

.header {
 position:relative;
  z-index:9999;
}

.header .dnd-section {
  padding: 0;
}

.header__container {
      display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
}

.header__logo {
 flex:0 1 auto; 
}

.header__nav {
 display: flex;
    align-items: center;
    flex: 0 1 auto; 
}


.header__nav .nav {
     display: flex;
    align-items: center; 
}

.header__nav .nav-item {
 flex:0 1 auto;
  margin-right:1.5rem;
}


.extra-links {
      display: flex;
    align-items: center;
}

/* LANGUAGE NAV HIDDEN */

.extra-links__lang-nav {
 margin-right:1.5rem; 
}

.extra-links__lang-nav a {
 text-transform:uppercase; 
}

.extra-links__buttons .basic-button--transparent {
      padding: 12px 18px;
}



/* 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;
}

/* Header nav toggle */

.header-nav__toggle {
      height: 18px;
    width: 32px;
    position: relative;
}

.header-nav__toggle > i {
  position: absolute;
    height: 2px;
    width: 100%;
  transition:all 0.3s ease;
  left:0;
  transform:rotate(0deg);
}

.header-nav__toggle > i:nth-child(1) {
  top:0;
}

.mobile-nav--open .header-nav__toggle > i:nth-child(1) {
  left:50%;
  width:0%;
}


.header-nav__toggle > i:nth-child(2) {
  top:50%;
}

.mobile-nav--open .header-nav__toggle > i:nth-child(2) {
  transform:rotate(45deg);
}

.header-nav__toggle > i:nth-child(3) {
  top:50%;
}

.mobile-nav--open .header-nav__toggle > i:nth-child(3) {
  transform:rotate(-45deg);
}

.header-nav__toggle > i:nth-child(4) {
  top:100%;
}

.mobile-nav--open .header-nav__toggle > i:nth-child(4) {
  left:50%;
  width:0%;
}

@media screen and (max-width:1320px) {
  .header__logo img {
   max-width:200px !important; 
  }
}

@media screen and (min-width:1501px) {
 .header-nav__toggle {
   display:none;
  }
  
  .header__nav, .header__nav .nav {
   display:flex !important; 
  }
}

@media screen and (max-width:1500px) {
 .header__container {
   flex-wrap:wrap;
  }
  
  .header__nav {
   flex:0 1 100%; 
    padding-top:1rem;
    display:none;
  }
  
  .header__nav, .header__nav .nav {
   flex-wrap:wrap; 
  }
  
  .header__nav .nav-item {
   flex:0 1 100%;
    margin-right:0;
  }
  
  .nav__wrapper {
   flex-wrap:wrap; 
  }
  
  .header-nav__extra-links {
        flex: 0 1 100%;
    padding-top:1rem;
  }
  
  .extra-links {
        flex-wrap: wrap;
  }
  
  .extra-links__lang-nav {
   flex:0 1 100%;
    margin-right:0;
  }
  
  .extra-links__buttons {
   flex:0 1 100%;
    margin-top:0.5rem;
  }
  
  
}
.footer {
 position:relative; 
}

.footer ul li {
  list-style:none !important;
}

.footer-image {
      position: absolute;
    right: 0;
        bottom:25%;
  z-index:1;
}

.footer-image img {
 max-width:750px; 
}

.footer-top {
      background: #FFF;
    min-height: 30rem;
    padding: 5rem 0;
    display: flex;
    align-items: center;
}

.footer-top__inner {
 flex:0 1 100%; 
}

.footer-contact {
 max-width:45%; 
}

.footer-contact__title {
 margin-bottom:1rem; 
}

.footer-contact__link {
      display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-bottom {
      background: #F6F6F6;
  padding:3rem 0;
}

.footer-content {
 display:flex; 
  justify-content:space-between;
}

.footer-content__main {
      flex: 0 1 60%;
}

.footer-content-main__top,
.footer-content-main__bottom {
      display: flex;
    gap: 5%;
}

.footer-content-main__bottom *,
.footer-content-main__top > * {
 flex:0 1 30%; 
}

.footer-content-main-icons__item {
 flex:0 1 auto !important; 
}

.footer-content-main__top {
 margin-bottom:3rem; 
}

.footer-content-main__menu .title {
 margin-bottom:1rem; 
  display:block;
}

.footer-content-main__menu .hs-menu-item {
 flex:0 1 100%;
  margin-bottom:0.5rem;
  
}

.footer-content-main__icons {
      display: flex;
    align-items: center;
    gap: 23px;
}

.footer-content__main ul {
 list-style:none;
  padding:0;
  margin:0;
}

.footer-content__main a {
  font-size: 18px;
font-weight: 700;
line-height: 26px;
  color:#056C8A;
  text-decoration:none;
}

.footer-content__side {
 flex:0 1 15%;
  display:flex;
  align-items:flex-end;
}

.footer-form__container {
     position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center; 
  opacity:0;
  visibility:hidden;
  transition:all 0.3s ease;
}

.footer-form--open .footer-form__container {
  opacity:1;
  visibility:visible;
}

.footer-form__inner {
     display: flex;
    align-items: center;
    justify-content: center; 
}

.footer-form {
  width: 75%;
  background: #f6f6f6;
  padding: 3rem;
  border-radius: 1px;
  max-height: 85vh;
  overflow-y: auto;
  position:relative;
}

.footer-form__toggle {
     position: absolute;
    right: 1rem;
    top: 1rem;
    height: 26px;
    width: 26px;
    cursor: pointer; 
}

.footer-form__toggle > i {
  background:#202020;
      width: 100%;
    height: 2px;
  top:50%;
  position:absolute;
}

.footer-form__toggle > i:nth-child(1) {
  transform:rotate(45deg);
}

.footer-form__toggle > i:nth-child(2) {
  transform:rotate(-45deg);
}

.open-footer-form {
 cursor:pointer; 
}

/* LP Footer */

.footer-small {
 padding:1.5rem 0;
  background:#f6f6f6;
}

.footer-small__content {
 text-align:center; 
}

.footer-small__content p {
 margin:0; 
}

.footer-small__content a {
      color: #056c8a;
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    text-decoration: none;
}

@media screen and (max-width:1500px) {
  .footer-image {
   
  }
  
  .footer-image img {
   max-width:550px; 
  }
}

@media screen and (max-width:950px) {
 .footer-image {
   display:none;
  }
  
  .footer-content {
   flex-wrap:wrap; 
  }
  
  .footer-content__main {
   flex:0 1 100%; 
  }
  
  .footer-content-main__top {
   flex-wrap:wrap; 
  }
  
  .footer-content-main__bottom {
   flex-wrap:wrap; 
    margin-bottom:3rem;
  }
  
  .footer-content-main__content {
   flex-wrap:wrap; 
  }
  
  .footer-content__side {
   flex:0 1 100%; 
  }
  
  .footer-content-side__item img {
   max-width:200px !important; 
  }
  
  .footer-content-main__bottom *, .footer-content-main__top>* {
   flex:0 1 47%; 
  }
  
  .footer-top {
   min-height:auto; 
  }
  
  .footer-contact {
   max-width:100%; 
  }
  
}

@media screen and (max-width:500px) {
  .footer-content-main__bottom *, .footer-content-main__top>* {
   flex:0 1 100%; 
  }
  
  .footer-content-main__content {
   margin-bottom:1rem; 
  }
}
/* 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: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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%;
}

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

/* 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: 767px) {
  .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;
  }
}