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

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

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
@font-face {
  font-family: "Aeonik";
  src: url("https://4746090.fs1.hubspotusercontent-na1.net/hubfs/4746090/Fonts%20-%20New%20branding/Aeonik-Regular.otf")
      format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("https://4746090.fs1.hubspotusercontent-na1.net/hubfs/4746090/Fonts%20-%20New%20branding/Aeonik-Medium.otf")
      format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Aeonik";
  src: url("https://4746090.fs1.hubspotusercontent-na1.net/hubfs/4746090/Fonts%20-%20New%20branding/Aeonik-Bold.otf")
      format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
 font-family:'Lora';
 src: url('https://4746090.fs1.hubspotusercontent-na1.net/hubfs/4746090/Fonts%20-%20New%20branding/Lora-Bold.ttf') format('truetype');
 font-weight: 700;
 font-style: normal;
 font-display: swap;
}

@font-face {
 font-family:'Lora';
 font-weight: 400;
 src: url('https://4746090.fs1.hubspotusercontent-na1.net/hubfs/4746090/Fonts%20-%20New%20branding/Lora-Regular.ttf') format('truetype');
 font-display: swap;
}

html, body{
  margin:0;
  padding:0;
  height:100%;
  background-color: #F7EEFF;
  width: 100%;
}

html{
  font-family:'Aeonik', sans-serif;
  font-weight: 400;
  line-height:1.15;
}

body {
 background: #F7EEFF !important;
 overflow-x: hidden;
}

body > * {
 background-color: #F7EEFF;
}

body h5 {
  font-size: 1.1rem;
}

.section {
  padding: 60px max(15vw, 100px) 60px;
  box-sizing: content-box;
}

.button {
  width: fit-content;
  height: fit-content;
  font-size: 1.25rem;
  text-decoration: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  display: block;
  text-align: center;
  transition: background-color 100ms ease-out;
}

.hs-button {
  transition: background-color 100ms ease-out;
  cursor: pointer;
  font-size: 1rem;
}

.inputs-list {
 list-style: none;
 padding-left: 0;
 margin: 4px;
}

.hs-form-booleancheckbox > * {
 display: grid;
 grid-template-columns: max-content 1fr;
 font-size: 0.8rem;
}

.hs-form-booleancheckbox > * > span {
 margin: auto;
}

input[type='checkbox']{
    margin: 10px;
    width: auto !important;
}

.hs-input {
    background: #fcfcfc;
    border-color: #dcdcdc;
    box-sizing: border-box;
    padding: 0.5rem 1rem;
    height: fit-content;
    width: 100%!important;
    display: block;
    height: auto;
    border-radius: 0.5rem;
    font-family: Aeonik, sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    font-weight: 400;
    border-style: solid;
    margin-top: 6px;
    margin-bottom: 14px;
    border-width: 1px;
}

.hs-error-msg {
  color: #ff2c2c;
  font-size: 0.80rem;
}

.hs-error-msgs {
 margin-top: -10px;
 margin-bottom: 10px;
}

.is-placeholder {
  color: #6c6c6c !important;
}

h1, h2, h3, h4 {
 font-weight: 400;
}

@media only screen and (max-width: 1023px) {
  .section {
    padding: 40px 10vw 40px;
  }
}

.form_modale {
  display: flex;
  position: fixed;
  top: 0;
  width: 100vw;
  bottom: 0;
  background-color: rgba(0,0,0,.2);
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.modale_hidden {
 display: none!important;
}

.modal_button {
 cursor: pointer;
}

.close_modal {
 cursor: pointer;
 text-decoration: underline;
 margin: auto;
 text-align: center;
}

.form-title {
 display: none;
}

}