/* 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. */
/*! minireset.css v0.0.6 | MIT License | github.com/jgthms/minireset.css */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
}

ul {
	list-style: none;
}

button,
input,
select,
textarea {
	margin: 0;
}

html {
	box-sizing: border-box;
}

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

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

iframe {
	border: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

td:not([align]),
th:not([align]) {
	text-align: left;
}
/*** CLASSICO **********************************************************************************/
html {
  font-size: 62.5%;
}


/*** FOCUS OUTLINE RESET *************************/
*:focus {
  box-shadow: none !important;
  outline: none !important;
}


/*** BUTTON **************************************/
button {
	padding: 0;
	outline : none;
	background: none;
	border: 0;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	padding: 0;
	border: 0;
}


/*** IOS FORM RESET ******************************/
// input, textarea, select { -webkit-appearance: none;  }


/*** QUICK & DIRTY *******************************/
.hide { display: none; }
.show { display: block; }


/* 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 wrappers for blog post and system templates */

.content-wrapper {
  padding: 0 20px;
  margin: 0 auto;
}

/* Drag and drop layout styles */

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

@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.) */
/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

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

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

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

/* Paragraphs */

p {
  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;
}


/*** TYPO PERSO **************************************************************************/

/*** MONTSERRAT ***/
.montserrat-regular {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.montserrat-medium {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.montserrat-semibold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}
.montserrat-bold {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

/*** FREDOKA ***/
.fredoka {
  font-family: "Fredoka", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}
/* 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: #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;
}


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



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

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


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

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

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

  .header__navigation--toggle.hide,
  .header__search--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}



/*** MOTION ************************************************************************************/

/*** HEADER ****************************************/
header.header {
  position: absolute;
  top: 0;
  @media screen and (min-width: 768px) { top: 25px; }
  left: 0;
  right: 0;
  z-index: 100;
  
  display: inline-block;
  width: 100%;
}

/*** HEADER CONTAINER ***/
header.header .header__bottom {
  width: 100%;
  max-width: 1200px;
  padding: 0;
}


/*** MOBILE ***/
@media screen and (max-width: 767px) {
  
  /* WRAPPER */
  header.header .header__wrapper {
    display: flex;
    flex-direction: row;
    height: 80px;
    background-color: white;
  }
  
  /* BT MOBILE : OUVERTURE / FERMETURE MENU */
  header.header .header__bottom .header__logo-col {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  header.header .header__bottom .header__menu-toggle--show {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: none;
  }
  
  /* MENU */
  header.header .header__bottom .header__menu--show {
    height: calc(100vh - 80px);
    background-color: white;
    border-top: 1px solid #d4e4d7;
    overflow: auto;
  }
}

/*** LOGO : RESET ***/
header.header .header__bottom .header__logo-col {
  max-width: 160px;
  margin: 0;
}
header.header .header__bottom .header__logo-image { display: block; }

/*** MENU ***/
header.header .header__bottom .header__menu-col {
  margin: 0;
  text-align: center;
}
@media (min-width: 768px) {
  header.header .header__bottom .header__menu-col { flex: unset; }
}

/* CACHER : BOUTON SOUS MENU */
header.header .header__bottom .header__menu-child-toggle { display: none; }



/*** MENU : LISTE *****************************/
header.header .header__bottom .header__menu-wrapper {
  display: flex;
  flex-direction: column;
  @media screen and (min-width: 768px) {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  gap: 10px 40px;
  
  @media screen and (max-width: 767px) { padding: 20px; }
}
header.header .header__bottom .header__menu-wrapper li { padding: 0; }

header.header .header__bottom .header__menu-wrapper .header__menu-item--depth-1 > a {
  padding: 10px 0;
  color: #227836;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}

/* RESET */
@media (max-width: 767px) {
  header.header .header__menu-item--has-submenu .header__menu-link { width: 100%; }
}



/*** BT CONTACT ***/
header.header .header__bottom .header__menu-wrapper .header__menu-item--depth-1:nth-child(2) > a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 25px;

  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 18px;
  font-weight: 600;
  
  background-color: #A2CE15;
  border-radius: 20px;
}


/*** BT APP ***/
header.header .header__bottom .header__menu-wrapper .header__menu-item--depth-1:nth-child(3) > a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  @media screen and (min-width: 768px) { max-width: 210px; }
  height: 40px;
  padding: 0 25px;

  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  
  background-color: #FD6969;
  border-radius: 20px;
}


/*** DROPDOWN ***/
header.header .header__bottom .header__menu-wrapper .header__menu-submenu--level-2 {
  @media screen and (max-width: 767px) {
    display: block;
  }
  padding: 20px;
  background-color: #227837;
  border: none;
  border-radius: 6px;
}
header.header .header__bottom .header__menu-wrapper .header__menu-submenu--level-2 li { margin-top: 10px; }
header.header .header__bottom .header__menu-wrapper .header__menu-submenu--level-2 li:first-child { margin-top: 0; }
header.header .header__bottom .header__menu-wrapper .header__menu-submenu--level-2 a {
  margin: 0;
  padding: 0;

  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
}
/*** FOOTER ******************************************************************************/
.hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 {
  padding: 30px 20px;
  @media screen and (min-width: 768px) { padding: 40px 0 25px 0; }
  background: linear-gradient(to right, #419A59, #0C3109);
}


/*** FOOTER : CONTENT ******************************/
.hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid {
  align-items: center;
  @media screen and (min-width: 768px) { gap: 0 80px; }
  @media screen and (min-width: 1200px) { gap: 0 160px; }
}


/*** FOOTER : BORDER *******************************/
@media screen and (min-width: 768px) {
  .hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span { position: relative; }
  .hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span:nth-child(2):before,
  .hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span:nth-child(2):after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 120px;
    background-color: #ffffff80;
  }
}
@media screen and (min-width: 768px) {
  .hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span:nth-child(2):before { left: -40px; }
  .hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span:nth-child(2):after { right: -40px; }
}
@media screen and (min-width: 1200px) {
  .hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span:nth-child(2):before { left: -80px; }
  .hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span:nth-child(2):after { right: -80px; }
}


/*** COL 1 *****************************************/
.hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span:nth-child(1) {
  @media screen and (min-width: 768px) { width: 40%; }
  margin: 0;
}

/*** TITRE FOOTER : FIRST COL ***/
.hs-blog-id-112026470364 .footerTitre {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  gap: 0 5px;
  margin-bottom: 5px;
  
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}
.hs-blog-id-112026470364 .footerTitre_part1 {
  margin: 0;
  font-size: 26px;
  line-height: 32px;
  font-weight: bold;
}
.hs-blog-id-112026470364 .footerTitre_part2 {
  margin: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
}
.hs-blog-id-112026470364 .footerTitre_part3 {
  margin: 0;
  font-family: "Fredoka", sans-serif;
  font-size: 34px;
  line-height: 40px;
  font-weight: 600;
}


/*** COL 2 *****************************************/
.hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span:nth-child(2) {
  @media screen and (min-width: 768px) { width: 30%; }
  margin: 0;
}
.hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span:nth-child(2) ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  @media screen and (min-width: 768px) { align-items: flex-start; }
  gap: 20px 0;
}
.hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span:nth-child(2) ul a {
  color: #ffffff;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
}
.hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span:nth-child(2) ul a:hover { text-decoration: underline; }


/*** COL 3 *****************************************/
.hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span:nth-child(3) {
  display: flex;
  flex-direction: column;
  align-items: center;
  @media screen and (min-width: 768px) { width: 30%; }
  margin: 0;
}


/*** BT CONTACT ***/
.hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span:nth-child(3) .row-number-8 a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-top: 20px;
  padding: 0 25px;
  
  color: #ffffff;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  
  background-color: #A3CE16;
  border-radius: 20px;
}

/*** BT ESSAI ***/
.hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-1 > .row-fluid > .widget-span:nth-child(3) .row-number-9 a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  @media screen and (min-width: 768px) { max-width: 200px; }
  height: 40px;
  margin-top: 20px;
  padding: 0 25px;
  
  color: #ffffff;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
  text-align: center;
  
  background-color: #FD6969;
  border-radius: 20px;
}


/*** FOOTER BOTTOM ***********************************/
.hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-10 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 20px;
  background-color: #1B4522;
}
.hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-10 .row-fluid ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 0;
}
.hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-10 .row-fluid ul a {
  display: flex;
  flex-direction: row;
  align-items: center;

  color: #ffffff80;
  font-size: 14px;
  line-height: 18px;
}
.hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-10 .row-fluid ul a:hover { text-decoration: underline; }

/* SEPARATEUR PUCE */
@media screen and (min-width: 768px) {
  .hs-blog-id-112026470364 footer .row-fluid > .widget-span .row-depth-1.row-number-10 .row-fluid ul li:not(:first-child) a::before {
    content: "";
    width: 4px;
    height: 4px;
    margin: 0 15px;
    background-color: #ffffff80;
    border-radius: 50%;
  }
}


/*** FOOTER NEWSLETTER *******************************/

/*** INPUT ***/
.hs-blog-id-112026470364 footer form .hs_email {
  position: relative;
  display: flex;
  flex-direction: column;
}
.hs-blog-id-112026470364 footer form .hs_email input {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 40px;
  margin: 0;
  padding: 0 140px 0 25px;
  
  color: #227836;
  font-size: 14px;
  line-height: 18px;  
  
  background-color: #D4E4D7;
  border-radius: 20px;
}

/*** SUBMIT ***/
.hs-blog-id-112026470364 footer form .hs_submit {
  position: absolute;
  top: 0;
  right: 0;
}
.hs-blog-id-112026470364 footer form .hs_submit input {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 40px;
  padding: 0 25px;
  
  color: #227836;
  font-size: 14px;
  line-height: 18px;
  font-weight: bold;
  
  background-color: #A3CE16;
  border-radius: 20px;
}

/*** CHECKBOX ***/
.hs-blog-id-112026470364 footer form .hs-form-booleancheckbox > label {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0;
}
.hs-blog-id-112026470364 footer form .hs-form-booleancheckbox > label > input {
  float: none;
  width: 18px;
  height: 18px;
  margin-right: 10px;
}
.hs-blog-id-112026470364 footer form .hs-form-booleancheckbox > label > span {
  margin: 0 !important;
  color: white;
  font-size: 12px;
  line-height: 15px;
}


/* MESSAGE ERREUR */
.hs-blog-id-112026470364 footer form .hs-error-msg {
  font-size: 12px;
  line-height: 15px;
}

/* RESET */
.hs-blog-id-112026470364 footer form .hs_email > label { display: none; }
.hs-blog-id-112026470364 footer form .hs_email > .input { margin: 0; }


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

/* Template */
/*** POST : BANNER ***********************************************************************/
.postBanner {
  @media screen and (max-width: 767px) {
    margin-top: 80px;
    padding: 40px 20px;
    background-color: #d4e4d7;
  }
  @media screen and (min-width: 768px) {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 450px;

    background-image: url(https://144893003.fs1.hubspotusercontent-eu1.net/hubfs/144893003/Blog/header-details.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.postBanner_content {
  display: flex;
  flex-direction: column-reverse;
  @media screen and (min-width: 768px) {
    flex-direction: row;
  }
  gap: 20px 100px;
  
  max-width: 1200px;
  margin: 0 auto;
}

/*** INFO *******************************************/
.postBanner_info {
  @media screen and (min-width: 768px) {
    width: 50%;
    padding-top: 50px;
  }
}

/*** TAG ***/
.postBanner_tag {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 15px;
  margin-bottom: 15px;
}
.postBanner_tag a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin: 0;
  padding: 0 20px;
  
  color: #A3CE15;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 600;
  
  background-color: white;
  border-radius: 20px;
}

/*** TITRE ***/
.postBanner_info h1 {
  margin-bottom: 10px;
  color: #227836;
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  line-height: 32px;
  font-weight: 700;
}

/*** DATE ***/
.postBanner_date {
  color: #227836;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  line-height: 20px;
  font-weight: 400;
}

/*** ILLU *******************************************/
.postBanner_illu {
  aspect-ratio: 460/310;
  @media screen and (min-width: 768px) {
    width: 50%;
    max-width: 460px;
    max-height: 310px;
    margin-bottom: 0;
  }
  
  background-color: white;
  border-radius: 10px;
  @media screen and (min-width: 768px) { border-radius: 40px 40px 0 0; }
  overflow: hidden;
}
.postBanner_illu img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  
  display: block;
  margin: 0;
}
/*** POST : CONTENT **********************************************************************/
.postDetails {
  padding: 20px;
  @media screen and (min-width: 768px) { padding : 40px 0; }
}

/*** CONTENT ***/
.postDetails_content {
  display: flex;
  flex-direction: column;
  @media screen and (min-width: 768px) {
    flex-direction: row;
    align-items: flex-start;
  }
  gap: 20px 100px;
  
  max-width: 1200px;
  margin: 0 auto;
}


/*** ARTICLE ****************************************/
.postDetails_article {
  @media screen and (min-width: 768px) { width: 75%; }
}


/*** H2 ***/
.postDetails_article .hs_cos_wrapper h2 {
  margin: 30px 0 0 0;
  @media screen and (min-width: 768px) { margin: 60px 0 0 0; }
  
  color: #227836;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
}
.postDetails_article .hs_cos_wrapper h2:first-child { margin: 0; }


/*** H3 ***/
.postDetails_article .hs_cos_wrapper h3 {
  margin: 20px 0 0 0;
  @media screen and (min-width: 768px) { margin: 40px 0 0 0; }
  
  color: #227836;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
}
.postDetails_article .hs_cos_wrapper h2:first-child { margin: 0; }


/*** PARAGRAPH ***/
.postDetails_article .hs_cos_wrapper p {
  margin: 10px 0 0 0;
  @media screen and (min-width: 768px) { margin: 20px 0 0 0; }
  
  color: #292929;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.postDetails_article .hs_cos_wrapper p:first-child { margin: 0; }


/*** PUPUCE ***/
.postDetails_article .hs_cos_wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 6px 0;
  margin: 10px 0 0 0;
  @media screen and (min-width: 768px) { margin: 20px 0 0 0; }
  
  color: #292929;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.postDetails_article .hs_cos_wrapper li {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.postDetails_article .hs_cos_wrapper li::before {
  content: "";
  
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  
  background-image: url(https://144893003.fs1.hubspotusercontent-eu1.net/hubfs/144893003/Landing/puce-green.svg);
  background-position: center;
  background-repeat: no-repreat;
  background-size: contain;
}


/*** LIEN ***/
.postDetails_article .hs_cos_wrapper a {
  color: inherit;
  text-decoration: underline;  
}


/*** BOUTON ***/
.postDetails_article .hs_cos_wrapper .button-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.postDetails_article .hs_cos_wrapper .button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin: 20px 0 0 0;
  padding: 0 25px;

  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  text-decoration: none;

  background-color: #A3CE16;
  border-radius: 20px;
}
/*** RELATED POST ************************************************************************/
.relatedPost {
  display: flex;
  flex-direction: column;
  align-items: center;
  
  margin: 30px 0 50px;
  @media screen and (min-width: 768px) { margin: 60px 0 100px; }
}

/*** CONTENT ****************************************/
.relatedPost_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  @media screen and (max-width: 767px) { padding: 0 20px; }
}

/*** TITRE ***/
.related_post_title {
  margin-bottom: 20px;

  color: #227837;
  font-family: "Fredoka", sans-serif;
  font-size: 28px;
  line-height: 34px;
  font-weight: bold;
}

/*** LISTE ***/
.relatedPost_list {
  display: flex;
  flex-direction: column;
  @media screen and (min-width: 768px) {
    flex-direction: row;
  }
  gap: 35px 25px;
}


/*** ITEM *******************************************/
.relatedPost_list .post {
  @media screen and (min-width: 768px) { width: calc( (100% - 50px) / 3); }
  margin: 0;
  
  background-color: #ffffff;
  border: 1px solid #D4E4D7;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: -4px 4px 0px #0000001A;
  
  transition: all ease-in-out .3s;
}
.relatedPost_list .post:hover { box-shadow: -4px 4px 0px #0000003D; }

/*** POST ILLUSTRATION ***/
.relatedPost_list .post .post-image {
  display: block;
  margin: 0;
  aspect-ratio: 370/230;
}
.relatedPost_list .post .post-image img {
  display: block;
  margin: 0;
  
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*** POST CAPTION ***/
.relatedPost_list .post .post-caption { padding: 15px 10px; }

/*** POST TAG ***/
.relatedPost_list .post .post-tag {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 5px;
}
/* POST TAG : ITEM */
.relatedPost_list .post .post-tag a {
  color: #A3CE15;
  font-size: 12px;
  line-height: 15px;
  font-weight: 600;
}

/*** POST TITRE ***/
.relatedPost_list .post h3 {
  margin-bottom: 10px;

  color: #227836;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
}

/*** POST DATE ***/
.relatedPost_list .post .post-date {
  color: #227837;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
}

/*** POST LINK ***/
.relatedPost_list .post .post-link {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 40px;
  margin-top: 15px;
  padding: 0 25px;  

  color: #A3CE16;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  
  border: 3px solid #A2CE15;
  border-radius: 20px;
  
  transition: all ease-in-out .3s;
}
.relatedPost_list .post .post-link:hover {
  color: #ffffff;
  background-color: #A2CE15;
}

/*** RESET LINK ***/
.relatedPost_list .post a {
  display: block;
  margin: 0;
}
/*** POST : SIDEBAR **********************************************************************/
.postDetails_sidebar {
  @media screen and (min-width: 768px) {
    position: sticky;
    top: 40px;
    width: 25%;
  }
}


/*** AUTHOR *****************************************/
.postDetails_author {
  @media screen and (max-width: 767px) { display: none; }
  @media screen and (min-width: 768px) {
    display: flex;
    flex-direction: row;
    gap: 0 15px;
  }
}
.postDetails_author_img {
  flex-shrink: 0;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;

  border: 1px solid #227837;
  border-radius: 50%;
  overflow: hidden;
}
.postDetails_author_img img {
  width: 65%;
  height: auto;

  display: block;
  margin: 0;
}
.postDetails_author_info { flex: 1; }
.postDetails_author_name {
  color: #227836;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
}
.postDetails_author_bio {
  color: #292929;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
}
.postDetails_author_readmore {
  margin-top: 15px;

  color: #227836;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  text-decoration: underline;
}


/*** SOMMAIRE ***************************************/
.postDetails_sommaire {
  @media screen and (max-width: 767px) { display: none; }
  
  margin-top: 30px;
  padding: 25px 15px;
  background-color: #227837;
  border-radius: 6px;
}
.postDetails_sommaire h3 {
  margin-bottom: 15px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
}
.postDetails_sommaire ul {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}
.postDetails_sommaire ul li {
  display: flex;
  flex-direction: row;
}
.postDetails_sommaire ul li::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin: 7px 8px 0 0;
  background-color: white;
  border-radius: 50%;
}
.postDetails_sommaire ul li a {
  margin: 0;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}


/*** SOCIAL *****************************************/
.postDetails_social {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 30px;
  padding: 20px;

  background-color: white;
  border: 1px solid #D4E4D7;
  box-shadow: -4px 4px 0px #0000001A;
  border-radius: 6px;
}
.postDetails_social_titre {
  margin-bottom: 10px;
  color: #227836;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  text-align: center;
}
.postDetails_social_liste {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  gap: 0 15px;
  margin: 0;
}
.postDetails_social_liste a {
  display: block;
  margin: 0;
}