/* 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: 4.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: 1024px) {
  .content-wrapper {
    padding: 0;
    padding: 0 2rem;
  }
}

.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;
}
div:not(.hs-content-id-131564407296) a:not([class]) {
/*  text-decoration: underline !important;*/
}
div.hs-content-id-131564407296 a:not([class]) {
/*  text-decoration: none !important;*/
}

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






#hs_cos_wrapper_dnd_area-module-1 .interactive-button,
.interactive-button-wrapper .interactive-button {
  color: #000000 !important;
  font-weight: 400 !important;
}

.button_max--wrapper-all {
  margin:0px -15px; 
  overflow:hidden;
}

.header .cta_button, 
.button_max--wrapper a,
.button_max--wrapper button,
.hs-form__actions__submit,
.page-event .cta_button {
  color: #000000;font-size: 16px;font-family: Outfit, sans-serif; font-weight: 700;;
  font-weight:500!important;
  min-height:50px;
  width:auto;
  padding: 10px 30px;
  display:flex;
  justify-content:center;
  align-items:center;
  background-color: 

  
  
    
  


  rgba(255, 168, 82, 1.0)

;
  border-radius:30px!important;
  border:1px solid 

  
  
    
  


  rgba(255, 168, 82, 1.0)

;
  box-sizing: border-box!important;
  -webkit-transition: background-color 300ms linear;
  -ms-transition: background-color 300ms linear;
  transition: background-color 300ms linear;
  line-height:1rem;
  margin:10px 0px;
	box-sizing: border-box;
}
.header .cta_button:hover,
.OFFbutton_max--wrapper:not(.button_style-animated) a:hover,
.page-event .cta_button:hover {
  color: #000000;font-size: 16px;font-family: Outfit, sans-serif; font-weight: 700;;
  background-color: white;
  border:1px solid 

  
  
    
  


  rgba(255, 168, 82, 1.0)

;
}
/* fixe le décalage vers le bas quand le cta est dans un p dans les hubdb */
.button_max--wrapper.button_style-cta > p {
	line-height:0px!important;
	margin:0px!important;
}
.button_max--wrapper.button_style-icon.button_style-cta a {
  padding-left:56px;
}
.button_max--wrapper.button_style-fullwidth {
  width:calc(100% - 30px);
}
.button_max--wrapper.button_style-fullwidth  .hs_cos_wrapper_type_cta {
  width:100%;
}
.button_max--wrapper {
  position:relative;
  display:inline-flex; 
  flex-direction:row;
  justify-items:flex-start;
  align-items:center;
  width: auto;
  margin:0px 15px; 
	width: fit-content;
}
.button_max--wrapper .button_max--cat_content,
.button_max--wrapper a,
.button_max--wrapper button {
  width:100%; 
}

.button_max--wrapper.button_style-animated .button_max-animated_dot {
  position:absolute;
  right:40px;
  width:12px;
  height:12px;
  display:block;
  border-radius:50%;
  background-color:white;
  opacity:0;
  transform: translateX(0px);
  transition:.3s ease-in-out;
} 
.button_max--wrapper.button_style-animated:hover .button_max-animated_dot {
  transform: translateX(20px);
  opacity:1;
}
.button_max--wrapper.button_style-animated.button_style-outline.button_color-primary .button_max-animated_dot {
  background-color:#036EFF;
}
.button_max--wrapper.button_style-animated.button_style-outline.button_color-secondary .button_max-animated_dot {
  background-color:#ffa852;
}
.button_max--wrapper.button_style-animated a,
.button_max--wrapper.button_style-animated button {
  padding-right:60px;
}
.button_max--wrapper .button_max-icon {
  position:relative;
  margin-right:10px;
  font-size:18px;
  height:18px;
  width:18px;
  fill:white;
}
.button_max--wrapper .button_max-image {
  position:relative;
  margin-right:10px;
  height:20px;
  width:20px;
  background-color:white;
} 
.button_max--wrapper.button_style-outline:not(.button_style-animated):hover .button_max-image {
  background-color:white!important;
}
.button_max--wrapper.button_style-outline.button_color-primary .button_max-image,
.button_max--wrapper.button_color-primary:not(.button_style-animated):hover .button_max-image {
  background-color: #036EFF;
}
.button_max--wrapper.button_style-outline.button_color-secondary .button_max-image,
.button_max--wrapper.button_color-secondary:not(.button_style-animated):hover .button_max-image {
  background-color: #ffa852;
}
.button_max--wrapper .button_max-icon.button_max-icon-cta {
  position:absolute;
  left: 30px;
}
.button_max--wrapper .button_max-image.button_max-image-cta {
  position:absolute;
  left: 28px;
}

.button_max--wrapper.button_style-outline.button_color-primary .button_max-icon,
.button_max--wrapper.button_color-primary:not(.button_style-animated):hover .button_max-icon {
  fill: #036EFF;
}
.button_max--wrapper.button_style-outline.button_color-secondary .button_max-icon,
.button_max--wrapper.button_color-secondary:not(.button_style-animated):hover .button_max-icon {
  fill: #ffa852;
}
.button_max--wrapper.button_style-outline:not(.button_style-animated):hover .button_max-icon {
  fill:white!important;
}
.button_max--wrapper .button_max-icon-cta > span {
  line-height:18px;
  display:block; 
}

.button_max--wrapper .button_max-icon svg {
  max-height:18px;
  max-width:18px;
}
.button_max--wrapper.button_color-primary a,
.button_max--wrapper.button_color-primary.button_style-outline:not(.button_style-animated):hover a,
.button_max--wrapper.button_color-primary button,
.button_max--wrapper.button_color-primary.button_style-outline:not(.button_style-animated):hover button{
  background-color: #056DFF;
/*   #036EFF; */
  color:white;
  border-color: #056DFF;
}

.button_max--wrapper.button_color-secondary a,
.button_max--wrapper.button_color-secondary.button_style-outline:not(.button_style-animated):hover a,
.button_max--wrapper.button_color-secondary button,
.button_max--wrapper.button_color-secondary.button_style-outline:not(.button_style-animated):hover button{
  background-color: #ffa852;
  color:black;
  border-color: #ffa852;
}

.button_max--wrapper.button_style-outline a,
.button_max--wrapper:not(.button_style-animated):hover a,
.button_max--wrapper.button_style-outline button,
.button_max--wrapper:not(.button_style-animated):hover button {
  /*background:white;*/
}

.button_max--wrapper.button_style-outline.button_color-primary a,
.button_max--wrapper.button_color-primary:not(.button_style-animated):hover a,
.button_max--wrapper.button_style-outline.button_color-primary button,
.button_max--wrapper.button_color-primary:not(.button_style-animated):hover button {
  /*color: #036EFF;*/
}
.button_max--wrapper.button_style-outline.button_color-secondary a,
.button_max--wrapper.button_color-secondary:not(.button_style-animated):hover a,
.button_max--wrapper.button_style-outline.button_color-secondary button,
.button_max--wrapper.button_color-secondary:not(.button_style-animated):hover button,
.header .cta_button:hover {
  /*color: #ffa852;*/
}



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[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;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

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: var(--secondary_color);
}

.hs-input.invalid.error {
  border-color: var(--secondary_color);
}

.hs-error-msg {
  color: var(--secondary_color);
  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;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

  .body-container-wrapper .hs-search-field__suggestions li a {
    color: #494A52;
    padding: 0.35rem 0.7rem;
    text-decoration: none;
    transition: background-color 0.3s;
  }

/* 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;
}
[data-aos^=lgi][data-aos^=lgi].aos-animate {
	animation:spin 1.4s 0s linear forwards; 
	transition-duration:1.4s!important;
	transition-timing-function: linear!important;  
}
[data-aos^=lgi][data-aos^=lgi] {
	opacity: 1;
	transform: translateZ(0) scale(0) rotate(-90deg);
}


@-moz-keyframes spin { 
  0% {
     transform: translateZ(0) scale(0.8) rotate(-90deg);
     opacity: 1;
  }
  35% {
     transform: translateZ(0) scale(1) rotate(-90deg);
     opacity: 1;
  }

  100% {
    transform: translateZ(0) scale(1) rotate(0deg);
    opacity: 1;
 }
}

@-webkit-keyframes spin { 
  0% {
     transform: translateZ(0) scale(0.8) rotate(-90deg);
     opacity: 1;
  }
  35% {
     transform: translateZ(0) scale(1) rotate(-90deg);
     opacity: 1;
  }

  100% {
    transform: translateZ(0) scale(1) rotate(0deg);
    opacity: 1;
 }
}

@keyframes spin { 
  0% {
     transform: translateZ(0) scale(0.8) rotate(-90deg);
     opacity: 1;
  }
  35% {
     transform: translateZ(0) scale(1) rotate(-90deg);
     opacity: 1;
  }

  100% {
    transform: translateZ(0) scale(1) rotate(0deg);
    opacity: 1;
 }
} 

.circled_image--wrapper { 
  position:relative;
  display:block;
  width: 100%;
  height:auto;
  padding:40px;
  max-height: 700px;
  max-width: 700px;
  overflow:hidden;
}
.circled_image--wrapper.small {
  max-height: 260px;
  max-width: 260px;
}
.circled_image {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 100%;
/*   height:100%; */
  display: block;
  border-radius: 50%;
  position:relative;
}
.circled_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.circled_image--wrapper .circled_border {
  display:block;
  width:100%;
  height:100%;
  position:absolute;
  top:0px;
  left:0px;
  border-radius:50%;
}
.circled_image--wrapper .circled_border:before {
  display:block;
  content:'';
  width:100%;
  height:100%;
  border-width: 42px;
  border-style: solid;
  transform: rotate(-45deg);
  position:absolute;
  top:0px;
  left:0px;
  border-radius:50%;
/*   -webkit-animation:spin 1s ease-in-out forwards .5s;
  -moz-animation:spin 1s ease-in-out forwards .5s;
  animation:spin 1s ease-in-out forwards .5s; */
}

.circled_image--wrapper.small {
  padding:20px;
}

.circled_image--wrapper.small .circled_border:before {
  border-width: 22px;
}

@media (max-width:1023px) {
  .circled_image--wrapper {
    padding:20px;
  }
  .circled_image--wrapper .circled_border:before {
    border-width: 22px;
  }
}

/* @-moz-keyframes spin { 
    100% { -moz-transform: rotate(-45deg); } 
}
@-webkit-keyframes spin { 
    100% { -webkit-transform: rotate(-45deg); } 
}
@keyframes spin { 
    100% { 
        -webkit-transform: rotate(-45eg); 
        transform:rotate(-45deg); 
    } 
} */






 

.book .widget-type-linked_image {
	position:relative;
}
.book .book-wrapper {
	position: relative;
}
.book .book-content {  
	position: relative;
	transform-style: preserve-3d;
	height: fit-content;
	width: fit-content;
	perspective-origin: center; 
	animation: bookLoader 1s linear;
	animation-fill-mode: forwards;
  transform-origin: center bottom;
}

.book.book-small .book-content .book-image img {  
	max-width:230px;
	max-height:230px;
}
.book.book-small .book-content .book-side {
	width: 15px;
}

@keyframes bookLoader {
	0% { 
		transform: perspective(100000px) rotateX(-96deg) rotateY(0deg) rotateZ(0deg) translate(0px, 0px);
	}
	100% { 
		transform: perspective(1100px) rotateX(-96deg) rotateY(0deg) rotateZ(35deg) translate(130px, 130px);
	}
}

.book .book-content .book-image {
	position: relative;
	transform: rotateX(90deg);
	transform-origin: bottom;
	left: 0px;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
}
.book img {
	display:none;
}
.hs-inline-edit .book img {
	display:block!important;
}
.book .book-content .book-image img {
	width: 100%!important;
	display:block!important;
	height: auto!important;
	border-radius: 0px 4px 4px 0px;
	position:relative;
}
.book .book-content .book-side {
	width: 30px;
	height: 100%;
	position: absolute;
	left: 0px;
	background-size: 2000px 100%;
	z-index: 339;
	background-position: -10px 0px;
	transform: rotateY(90deg) rotatez(90deg) translateZ(1px);
	transform-origin: left bottom;
	top:0px;
	background-color:#fff;
}
.book .book-content .book-side:after {
	content:'';
	display:block;
	width: 100%;
	height: 100%;
	position: absolute;
	background-size: cover;
	left: 0px;
	top:0px;
	background:rgba(0,0,0,.4);
}
/* .book-front {
	display: inline-block;
	justify-content: center;
	position: relative;
	max-width: 250px;
	box-shadow: -9px 11px 10px 0px rgb(0 0 0 / 30%);
	clear: both;
	margin: 0 auto;
}
.book-front img {
	float:left;
	max-width:none!important;
	width:100%;
} */
.book .book-content .book-image:before,
.book-front:before {
	content: '';
	display: block;
	width: 15px;
	height: 100%;
	position: absolute;
	background-size: cover;
	left: 0px;
	top: 0px;
	background: linear-gradient(90deg, white 60%, #ddd);
	transform-origin: left;
	mix-blend-mode: multiply;
	transform-style: preserve-3d;
	z-index:11;
}
.book .book-content .book-shadow {
	content: "";
	position: absolute;
	top: 100%;
	left: 0px;
	width: 100%;
	background: linear-gradient(0,transparent, rgba(0,0,0,.4) 80%);
	transform-origin: top;
	height: 30%;
	filter: blur(5px);
	z-index: 138;
	transform: translateZ(1px) translateY(0px) skewX(-30deg);
}
.book .book-content .book-circle {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 300px;
  transform-origin: 50% 50%;
  height: 300px;
  z-index: 138;
  transform: translateZ(1px) translateY(150px) translateX(-150px) rotateZ(45deg);
  border-radius: 150px;
	border-color: #ffa852 #ffa852 #ffa852 transparent;
	border-width: 28px;
	border-style:solid;
	animation: bookLoaderCircle 2s ease-in-out 1s;
	animation-fill-mode: forwards;
}
.book.book-small .book-content .book-circle {
  width: 140px;
  height: 140px;
  border-radius: 70px;
	border-width: 13px;
	transform: translateZ(1px) translateY(70px) translateX(-70px) rotateZ(45deg);
	animation: bookLoaderCircleMobile 2s ease-in-out 1s;
	animation-fill-mode: forwards;
}
@keyframes bookLoaderCircle {
	0% { transform:translateZ(1px) translateY(150px) translateX(-150px) rotateZ(45deg); }
	100% { transform:translate(1px) translateY(150px) translateX(-150px) rotateZ(405deg);  }
}
@keyframes bookLoaderCircleMobile {
	0% { transform:translateZ(1px) translateY(70px) translateX(-70px) rotateZ(45deg); }
	100% { transform:translate(1px) translateY(70px) translateX(-70px) rotateZ(405deg);  }
}

@media(max-width:575px) {
	.book.book-small .book-content .book-image img {  
		max-width:200px;
		max-height:180px;
	}
	.book .book-content .book-image img {  
		max-width:240px;
		max-height:200px;
	}
	.book {  
    margin-bottom:1rem;
	}

	.book .book-content .book-side {
		width: 15px;
	}
	.book .book-content .book-circle {
		width: 140px;
		height: 140px;
		border-radius: 70px;
		border-width: 13px;
		transform: translateZ(1px) translateY(70px) translateX(-70px) rotateZ(45deg);
		animation: bookLoaderCircleMobile 2s ease-in-out 1s;
		animation-fill-mode: forwards;
  }
	.row-fluid-wrapper.dynamic_page2-header .row-fluid {
		flex-direction: column-reverse;
	}
}






 
.tv .widget-type-linked_image {
	position:relative;
}
.tv .tv-wrapper {
	position: relative;
}
.tv .tv-content {  
	position: relative;
	transform-style: preserve-3d;
	height: 330px;
	width: fit-content;
	perspective-origin: center; 
	left: 40%;
	top: 160px;
	animation: tvLoader 1s linear;
	animation-fill-mode: forwards;
	transform-origin: left;

}
.tv.tv-small .tv-content {  
  height: 240px;
  top: 110px;
  left: 45%;
}


@keyframes tvLoader {
	0% { 
		transform: perspective(1000px) rotateX(-100deg) rotateY(0deg) rotateZ(-55deg) translateX(-47%);
	}
	100% { 
		transform: perspective(1000px) rotateX(-100deg) rotateY(0deg) rotateZ(-20deg) translateX(-47%);
	}
}

.tv .tv-content .tv-image {
	max-width:100%;
	float: left;
	position: relative;
	transform: rotateX(90deg);
	transform-origin: bottom;
	width: auto!important;
	height: 100%!important;
	left: 0px;
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	border: 2px solid #ababab;
  border-radius: 22px;
}
.tv img {
	display:none;
}
.hs-inline-edit .tv img {
	display:block!important;
}
.tv .tv-content .tv-image img {
	width: auto!important;
	max-height: 100%;
	display:block!important;
	max-width:unset!important;
	height: 100%!important;
	border-radius: 20px;
	border: 14px solid black;
	object-fit: cover;
  aspect-ratio: 1.45;
}
.tv .tv-content .tv-button {
	width: 140px;
	height: 140px;
	position: absolute;
	background-size: cover;
	left: 0px;
	background-size: 2000px 100%;
	z-index: 339;
	background-position: -10px 0px;
	transform: translateZ(0px) translate(-70px, -70px);
	transform-origin: bottom left;
	left: 50%;
	top: 50%;
	border-radius: 70px;
	background: rgba(0,0,0,.4);
	border: none;
	backdrop-filter: blur(2px);
	padding: 25px;
}
.tv .tv-content .tv-button:hover {
	background: rgba(0,0,0,.6);
}

.tv .tv-content .tv-image:before,
.tv-front:before {
	content: '';
	display: block;
	width: 15px;
	height: 100%;
	position: absolute;
	background-size: cover;
	left: 0px;
	top: 0px;
	background: linear-gradient(90deg, white 60%, #ddd);
	transform-origin: left;
	mix-blend-mode: multiply;
	transform-style: preserve-3d;
	z-index:11;
	display:none;
}
.tv .tv-content .tv-shadow {
	content: "";
	position: relative;
	top: 100%;
	left: 15px;
	width: calc(100% - 30px);
	background: linear-gradient(0,transparent, rgba(0,0,0,.4) 80%);
	transform-origin: top;
	height: 70%;
	filter: blur(5px);
	z-index: 138;
	transform: translateZ(1px) translateY(0px) skewX(14deg);
}
.tv .tv-content .tv-circle {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0%;
  width: 200px;
  transform-origin: 50% 50%;
  height: 200px;
  z-index: 138;
  transform: translateZ(1px) translateY(100px) translateX(-100px) rotateZ(45deg);
  border-radius: 100px;
	border-color: #ffa852 #ffa852 #ffa852 transparent;
	border-width: 20px;
	border-style:solid;
	animation: tvLoaderCircle 2s ease-in-out 1s;
	animation-fill-mode: forwards;
}
.tv.tv-small .tv-content .tv-circle {
  width: 140px;
  height: 140px;
  border-radius: 70px;
	border-width: 13px;
	transform: translateZ(1px) translateY(70px) translateX(-70px) rotateZ(45deg);
	animation: tvLoaderCircleMobile 2s ease-in-out 1s;
	animation-fill-mode: forwards;
}
@keyframes tvLoaderCircle {
	0% { transform:translateZ(1px) translateY(100px) translateX(-100px) rotateZ(45deg); }
	100% { transform:translate(1px) translateY(100px) translateX(-100px) rotateZ(405deg);  }
}
@keyframes tvLoaderCircleMobile {
	0% { transform:translateZ(1px) translateY(70px) translateX(-70px) rotateZ(45deg); }
	100% { transform:translate(1px) translateY(70px) translateX(-70px) rotateZ(405deg);  }
}

@media(max-width:575px) {
	.tv .tv-content, .tv.tv-small .tv-content {  
    height: 180px;
    top: 70px;
    left: 43%;
	}

	.tv .tv-content .tv-circle {
		width: 140px;
		height: 140px;
		border-radius: 70px;
		border-width: 13px;
		transform: translateZ(1px) translateY(70px) translateX(-70px) rotateZ(45deg);
		animation: tvLoaderCircleMobile 2s ease-in-out 1s;
		animation-fill-mode: forwards;
  }
	.row-fluid-wrapper.dynamic_page2-header .row-fluid {
		flex-direction: column-reverse;
	}
	.tv .tv-content .tv-button {
		width: 80px;
		height: 80px;
		transform: translateZ(0px) translate(-40px, -40px);
		padding: 10px;
	}
	.dynamic_page2-content_description {
		margin-top:2rem;
	}
	.tv .tv-content .tv-image {
		border-radius: 17px;
	}

	.tv .tv-content .tv-image img {
		border-radius: 15px;
		border: 12px solid black;
	}
}

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













.megamenu h5 {
  color: #ffa852!important;  
}

/* remove event to all childrens of li.megamenu_li_wrapper */
/* .megamenu_li_wrapper a.menu__link, */
.megamenu_li_wrapper div.megamenu-item,
.megamenu_li_wrapper .menu__child-toggle {
  pointer-events: none;
} 
.megamenu_li_wrapper:hover {
  cursor:pointer;
}
.megamenu_li_wrapper .menu__submenu.menu__submenu--level-2 {
  display:none;
}
html.hs-inline-edit input.megamenu_nav:checked ~ #mega_menu--wrapper {
  display:block;
  position:relative;
  height:calc(100vh - 200px);
  z-index:999!important;
  overflow: scroll;
}

html.hs-inline-edit .megamenu_nav,
html.hs-inline-edit .megamenu_nav--label {
  display:inline-block;
}
html.hs-inline-edit .hs-baymax-editor .megamenu_nav,
html.hs-inline-edit .hs-baymax-editor .megamenu_nav--label {
  display:none!important;
}
html.hs-inline-edit .megamenu_nav--label {
  color:#036EFF;
  font-size: 16px;
  display: inline-block;
  margin-left:.5rem;
}
html.hs-inline-edit #mega_menu--wrapper .mega_menu--section {
  padding: 2rem 15px;
  background:#122a5f;
}
html.hs-inline-edit .container-fluid.megamenu {
  padding:20px;
  background:white;
}
html.hs-inline-edit #mega_menu--wrapper .mega-menu--title {
  display:block!important;
  font-size:18px;
  color: #ffa852;
  font-weight:600;
}
html.hs-inline-edit #mega_menu--wrapper .mega-menu--title p {
  margin-top:5px;
  font-size:14px;
  color: #036EFF;
}
html.hs-inline-edit #mega_menu--wrapper .mega-menu--title input {
  width:800px; 
  font-size:14px;
  display:block;
  background: #036EFF;
  border: none;
  padding: 3px;
}

html.hs-inline-edit input.megamenu_nav:checked ~ #mega_menu--wrapper .mega_menu--content {
  position: relative;
  top:0px;
  bottom: unset;
  opacity:1;
  z-index:99999999;
  box-shadow: none!important;
}
.megamenu_nav, .megamenu_nav--label {
  display:none;
}
#mega_menu--wrapper .mega_menu--section {
  padding: 0rem 2rem;
}

/* #mega_menu--wrapper .mega_menu--section .row-fluid .row-depth-1 > .row-fluid > .widget-span:not(:last-child) {
  border-right: solid  1px;
}
#mega_menu--wrapper .mega_menu--section .row-fluid .row-depth-1 > .row-fluid > .widget-span .widget-span {
  border-right: solid  0px;
} */

#mega_menu--wrapper .mega-menu--title {
  display:none;
  font-size:20px;
  font-weight:bold;
  color:#999;
  margin-bottom:20px;
}
#mega_menu--wrapper {
  position: absolute;
  width: 100%;
  height: 0px;
  display: block;
  bottom: 0px;
  left: 0px;
  z-index: -1;
}

#mega_menu--wrapper .mega_menu--content {
  position: absolute;
  background: white;
  width:100%;
  height: auto;
  display: block;
  bottom: 0px;
  left:0px;
  margin:0px auto;
  box-shadow: 0px 10px 30px 0px rgba(0,0,0,.2)!important;
  opacity:0;
  -moz-transition:  .4s ease-in-out;
  -webkit-transition:  .4s ease-in-out;
  -o-transition:  .4s ease-in-out;
  transition:  .4s ease-in-out;
}
#mega_menu--wrapper .mega_menu--content.mega_menu_open {
  opacity:1;
}

#mega_menu--wrapper ul li a {
  color: #036EFF;
}
#mega_menu--wrapper ul li a:hover {
  color: #ffa852;
}
.megamenu_li_wrapper .menu__link  {
  display: flex;
  flex-direction: row;
  align-items: center;
} 
.megamenu_li_wrapper a.menu__link:after,
.megamenu_li_wrapper span:after {
  background-color: #036EFF;
  width:10px;
  height:20px;
  content: "";
	mask: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M233.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L256 338.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z"/></svg>');
	mask-size: 10px 20px;
  display: flex;
  font-size: 10px;
  right: 0px;
  top: 2px;
  pointer-events: none;
  position: relative;
  font-weight: bold;
  margin-left:6px;
}
.megamenu_li_wrapper a.menu__link:hover:after, 
.megamenu_li_wrapper span:hover:after {
  background-color: #ffa852;
}


/* Header DND sections */
html:not(.hs-inline-edit) body:not(.as_content_submenu) #header {
  position: fixed;
  width: 100vw;
} 
#header {
	min-height:158px;
	position: relative;
	z-index:8000;
}
#header.header-sticky {
	min-height:120px;
}
.header {
  z-index:100;
}

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


/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
  padding:0px 2rem;
}

.header__row-1 {
  display: flex;
  height:38px;
  background-color:transparent;
  flex-direction : row;
  justify-content: flex-end;
  width: 100%;
  align-items: center;
  padding:0px;
  align-items: flex-end;
  max-height:38px;
  transition: .3s ease-in-out ;
}

.header__row-2 {
  display: flex;
  padding:0px;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  background-color:transparent; 
  -moz-transition:  .3s ease-in-out;
  -webkit-transition:  .3s ease-in-out; 
  -o-transition:  .3s ease-in-out;
  transition:  .3s ease-in-out;
  min-height:120px;
}
@media (min-width: 1024px) {
  .header__row-2 ul.menu__wrapper {
    display: flex;
    flex-direction:row;
  }
  .header__row-2 ul.menu__wrapper > li.menu__item.menu__item--depth-1 {
		display: flex;
		flex-direction: row;
		align-items: center;
		padding: 0rem .5rem;
		margin: 0rem .5rem;
		height: 120px;
		-moz-transition:  .3s ease-in-out;
		-webkit-transition:  .3s ease-in-out;
		-o-transition:  .3s ease-in-out;
		transition:  .3s ease-in-out;
	}
  #header.header-sticky .header__row-2 ul.menu__wrapper > li.menu__item.menu__item--depth-1 {
      height: 90px;
  }
}

.menu__item--depth-1 > .menu__child-toggle {
  height: auto;
  margin-left: 0.25rem;
}
#header.header-sticky  {
  top: 0px;
  padding:0px;
  width:100%;
  -moz-transition:  .3s ease-in-out;
  -webkit-transition:  .3s ease-in-out;
  -o-transition:  .3s ease-in-out;
  transition:  .3s ease-in-out;
}
#header.header-sticky  .header__row-1  {
  max-height:0px;
}
.header__column {
  width: 100%;
}

.header.header-no-navigation .header__row-2 {
  background-color:#ffa852;
  padding:15px 2rem;
}

@media (max-width: 1023px) {
	#header {
		min-height:120px;
	}
  .header__container {
    flex-direction: column;
    padding:0px 1rem;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: space-between;
    padding: .5rem 0px;
    background-color:white; 
  }
	.hs-landing-page .header__row-2 {
		flex-direction:column;
		justify-content: center;
	}

  #header.header-sticky .header__row-2 {
    padding: 0rem;
  }

}

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


#hs_cos_wrapper_module_logo img {
  max-width:150px;
  -moz-transition:  .3s ease-in-out;
  -webkit-transition:  .3s ease-in-out;
  -o-transition:  .3s ease-in-out;
  transition:  .3s ease-in-out;
  transform-origin:left;
}

#header.header-sticky #hs_cos_wrapper_module_logo img {
  max-width:120px;
}
#header #hs_cos_wrapper_logo_FR_animation lottie-player { 
  -moz-transition:  .3s ease-in-out;
  -webkit-transition:  .3s ease-in-out;
  -o-transition:  .3s ease-in-out;
  transition:  .3s ease-in-out;
  max-width:200px; 
  width:200px;
}
#header.header-sticky #hs_cos_wrapper_logo_FR_animation lottie-player { 
  max-width:120px!important;
  width:120px:!imporant;
}

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  max-width: 200px;
  overflow: hidden;
	min-width:145px;
	min-height:90px;
}
#hs_cos_wrapper_header_link {
	min-height:70px;
}
@media (max-width: 1023px) {
  .header__logo {
    margin: 0px auto 0px 0px;
    width: 100%;
  }
  
  #hs_cos_wrapper_module_logo img {
    max-width:130px;
  }
}

.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: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */
.lang_switcher .lang_switcher_link {
  color: #036EFF;
  margin: 0 0.5rem;
  padding: 0 0.5rem;
  font-weight:200;
}
.lang_switcher .lang_switcher_link:hover {
  color: #ffa852;
}
.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0rem 0.5rem;
  margin: 0rem 0.5rem;
  height: 120px;
  -moz-transition: .3s ease-in-out;
  -webkit-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}
@media (max-width: 1023px) {
 .header__language-switcher {
   padding:0px!important;
   height:auto!important;
   margin:0px!important;
   
  }
  .header__language-switcher a {
    padding: 0.6rem 1rem!important;
    line-height:20px;
    margin:0px!important;
    display:block;
  }
}
@media (min-width: 1024px) {
#header.header-sticky .header__language-switcher {
    height: 90px;
  }
}
.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: 1023px) {
  .header__language-switcher {
    border-top: 1px dashed #036EFF;
    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 */

.header__navigation--mobile {
  display:none;
}
.header__navigation--mobile #toggle-menu {
  display:none;
}

/* cta */

#hs_cos_wrapper_cta_header_1 {
  display:block;
	position: relative;
}

#hs_cos_wrapper_cta_header_1-mobile {
  display:none;
}
@media (max-width:1023px) {
  #hs_cos_wrapper_cta_header_1 {
    display:none;
  }
  #hs_cos_wrapper_cta_header_1-mobile {
    display:block;
  }
}

/* Mobile toggles */

@media (max-width: 1023px) {
  .header__navigation,
  .header__search,
  .header__row-1 {
    display: none;
    width: 100%;
  }
  .header__navigation--mobile {
    display:block;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex: 0 1 auto!important;
  }
  .header__navigation--mobile  label {
    font-size:30px;
    margin:0px 1rem 0px 1.5rem;
  }
  .header__navigation--mobile  label:hover {
    cursor:pointer;
  }
  .header__navigation--mobile  input {
    display:none;
  }
  .header__navigation--mobile  #hs_cos_wrapper_navigation-mobile {
    position:absolute;
    left:0px;
    width:100vw;
    top:100%;
    background:#F3F9FF;
    height: auto;
    max-height:0px;
    overflow: auto;
    transition: max-height .5s ease-in-out;
    left:-1rem;
  }
  .header__navigation--mobile #toggle-menu {
    display:block;
    color: white;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0 1rem;
  }
  
  .header__navigation--mobile input + #toggle-menu svg {
    display:none;
    max-width: 30px;
    width: 100%;
    max-height: 30px;
    height: auto;
  }
  .header__navigation--mobile #toggle-menu svg path {
    fill:#036EFF!important;
  }
  .header__navigation--mobile input[type="checkbox"]:not(:checked) + label#toggle-menu .icon-menu {
    display:block;
  }
  .header__navigation--mobile input[type="checkbox"]:checked + label#toggle-menu .icon-close {
    display:block;
    max-width: 26px;
  }
  
  .header__navigation--mobile input[type="checkbox"]:checked + label + .menu.menu--mobile #hs_cos_wrapper_navigation-mobile {
    height: auto!important;
    max-height: calc(100vh - 75px)!important;
    transition: max-height .5s ease-in-out; 
  }

  .header__navigation--mobile .menu__item--depth-1 {
    border-top:1px solid rgba(255,255,255,.1)!important;
  }
    .header__navigation--mobile .menu__item--depth-1:first-child {
    border-top:none;
  }
  .header__navigation--mobile .menu__submenu {
    border:none!important;
  }
  .header__navigation--mobile .menu__submenu .menu__item {
    border-top:none!important;
    border-bottom:none!important;
    border-color: #ffa852;
    background-color: #F3F9FF;
  }
  .header__navigation--mobile .menu__link {
    padding:.6rem 1rem!important;
    font-size:.5rem; 
  }
  #hs_cos_wrapper_navigation-mobile .menu__wrapper {
    border-bottom: 20px solid #ffa852;
  }
  .header__navigation--mobile .menu__item--has-submenu .menu__submenu .menu__link {
    background-color: #F3F9FF;
    margin-left: 0rem;
    transition: .5s ease-in-out;
  }
  .header__navigation--mobile .menu__item--has-submenu .menu__submenu {
    overflow:hidden;
    height:auto;
    max-height:0px;
    display:block!important;
    transition: .5s ease-in-out;
    float: left;
    width:calc(100% - 2rem);
  }
  .header__navigation--mobile .menu__item--has-submenu.menu__item--open .menu__submenu {
    height:auto;
    max-height:600px;
    transition: .3s ease-in-out;
  }
  .header__navigation--mobile .menu__item--has-submenu.menu__item--open .menu__submenu .menu__link {
    margin-left: 1rem;
    border-left:2px solid #ffa852;
  }
  .header__navigation--mobile .menu__child-toggle {
    background:none!important;
    border: 0;
    cursor: pointer;
    height: 60px;
    padding: 0px 0px;
    position: absolute;
    right: 0;
    top: 0;
    width: 30%;
    color:white;
    display: flex;
    align-items: center;
  }
  .header__navigation--mobile .menu__child-toggle i {
    background:none!important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 1rem;
    margin:0px;
  }
  
  .header__navigation--mobile button:hover {
    box-shadow:none!important;
  }

  .header__search--toggle,
  .header__language-switcher--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }
  
  .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__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .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__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .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";
  }
  
  /* Mobile toggles */
  
  @media (max-width: 1023px) {
    .header__navigation,
    .header__search,
    .header__row-1 {
      display: none;
      width: 100%;
    }
    .header__navigation--mobile {
      display:block;
      display: flex;
      flex-direction: row;
      justify-content: flex-end;
      align-items: center;
      flex: 1 1 80%;
			z-index:2000;
    }
    .header__navigation--mobile  label {
      font-size:30px;
      margin:0px 1rem 0px 1.5rem;
    }
    .header__navigation--mobile  label:hover {
      cursor:pointer;
    }
    .header__navigation--mobile  input {
      display:none;
    }
    .header__navigation--mobile  #hs_cos_wrapper_navigation-mobile {
      position:absolute;
      left:0px;
      width:100vw;
      top:100%;
      background:#F3F9FF;
      height: auto;
      max-height:0px;
      overflow: auto;
      transition: max-height .5s ease-in-out;
      left:-1rem;
    }
    .header__navigation--mobile #toggle-menu {
      display:block;
      color: white;
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    
    .header__navigation--mobile input + #toggle-menu svg {
      display:none;
      max-width: 30px;
      width: 100%;
      max-height: 30px;
      height: auto;
    }
    .header__navigation--mobile #toggle-menu svg path {
      fill:white;
    }
    .header__navigation--mobile input[type="checkbox"]:not(:checked) + label#toggle-menu .icon-menu {
      display:block;
    }
    .header__navigation--mobile input[type="checkbox"]:checked + label#toggle-menu .icon-close {
      display:block;
      max-width: 26px;
    }
    
    .header__navigation--mobile input[type="checkbox"]:checked + label + #hs_cos_wrapper_navigation-mobile {
      height: auto!important;
      max-height: calc(100vh - 75px)!important;
      transition: max-height .5s ease-in-out; 
    }
  
    .header__navigation--mobile .menu__item--depth-1 {
      border-top:1px solid rgba(255,255,255,.1)!important;
    }
     .header__navigation--mobile .menu__item--depth-1:first-child {
      border-top:none;
    }
    .header__navigation--mobile .menu__submenu {
      border:none!important;
    }
    .header__navigation--mobile .menu__submenu .menu__item {
      border-top:none!important;
      border-bottom:none!important;
      background-color: #F3F9FF;
    }
    .header__navigation--mobile .menu__link {
      padding:.6rem 1rem!important;
      font-size:.5rem; 
    }

    .header__navigation--mobile .menu__item--has-submenu .menu__submenu .menu__link {
      background-color: #F3F9FF;
      margin-left: 0rem;
      border-color: #ffa852;
      transition: .5s ease-in-out;
    }
    .header__navigation--mobile .menu__item--has-submenu .menu__submenu {
      overflow:hidden;
      height:auto;
      max-height:0px;
      display:block!important;
      transition: .5s ease-in-out;
      float: left;
    }
    .header__navigation--mobile .menu__item--has-submenu.menu__item--open .menu__submenu {
      height:auto;
      max-height:600px;
      transition: .3s ease-in-out;
    }
    .header__navigation--mobile .menu__item--has-submenu.menu__item--open .menu__submenu .menu__link {
      margin-left: 1rem;
      border-left:2px solid #ffa852;
    }
    .header__navigation--mobile .menu__child-toggle {
      background:none!important;
      border: 0;
      cursor: pointer;
      height: 60px;
      padding: 0px 0;
      position: absolute;
      right: 0;
      top: 0;
      width: 30%;
      color:white;
      display: flex;
      align-items: center;
    }
    .header__navigation--mobile .menu__child-toggle i {
      background:none!important;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      right: 1rem;
      margin:0px;
    }
    
    
  
    .header__search--toggle,
    .header__language-switcher--toggle {
      cursor: pointer;
      margin: 0 5vw;
      position: relative;
    }
  
    .header__search--toggle.hide,
    .header__language-switcher--toggle.hide {
      display: none;
    }
    
    .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__search--toggle.open,
    .header__language-switcher--toggle.open {
      display: block;
      margin-left: 0;
      margin-right: auto;
    }
  
    .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__search--toggle.open:after,
    .header__language-switcher--toggle.open:after {
      display: block;
      word-break: normal;
    }
  
    .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";
    }
  
  }

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

.heroslider-wrapper .splide__slide .splide__slide__container_title {
  font-weight: 300 !important;
}

h1, .h1,
.content_title.h3
{
  font-weight: 300 !important;
}

#hs_cos_wrapper_widget_1690820965334 .card_module--item.card_module--item_secondary .card_module--icon,
.button_max-image,
[data-content-filter]:hover .button_max-image, [data-content-filter]:focus .button_max-image, [data-content-filter].selected .button_max-image {
  background-color:#000 !important;
}
.selected[data-content-filter], .selected[data-content-filter] {
  color: #000 !important;
}

#hs_cos_wrapper_widget_1690821379912 .card_module--item.card_module--item_secondary .card_module--content,
#hs_cos_wrapper_widget_1690821379912 .card_module--item.card_module--item_secondary .card_module--content h2,
#hs_cos_wrapper_widget_1690821379912 .card_module--item.card_module--item_secondary .card_module--content p,
.ressources-filters-content-button,
#hs_cos_wrapper_widget_1690820965334 .card_module--item.card_module--item_secondary .card_module--content p {
  color: #000 !important;
} 




footer.footer {
  background-color: #036EFF;
  padding: 8rem 30px 2rem 30px;
}
.footer.footer-landing_page {
	padding-top:2rem;
}

footer > .content-wrapper {
  padding-left:0px;
  padding-right:0px;
}
.footer.footer-landing_page .footer__container--copyright {
  margin-top:0rem;
  border-top: 0px solid white;
  padding: 0px 0px 0px 0px;
  color: white;
  font-size: .6rem;
  text-decoration:none;
}
.footer__container--copyright {
  margin-top:5rem;
  border-top: 1px solid white;
  padding: 20px 0px 0px 0px;
  color: white;
  font-size: .6rem;
  text-decoration:none;
}
.footer__container--copyright a {
  color: white;
  text-decoration:none;
  margin:0px .5rem;
}
.footer__container--copyright a:hover {
  color: white;
  text-decoration:underline;
}

footer .social-links { 
  margin-left: calc(30% + 1.3rem);
  justify-content: flex-start;
}

@media (max-width:575px) {
  .footer__container--col.footer__container--col1 img {
    width:240px!important; 
  }
  footer.footer {
    padding: 4rem 30px 2rem 30px;
  }
  .footer__container--copyright a {
    display:block;
    width:100%;
    margin-top:.3rem;
  }
  .footer__container--copyright {
    margin-top:3rem;
  }
  footer .social-links { 
    margin-left: calc(30% + .3rem);
  }
}

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