:root {
  --header-height-desktop: 130px;
  --header-height-mobile: 145px;
  --primary-color: #0072cf;
  --primary-hover-color: #005aa7;
  --white-color: #ffffff;
  --grey-color: #f1f3f4;
  --dark-color: #000000;
  --error-color: #ff003d;
  --border-color: #919ea8;
  --font-color: #000000;
  --font-family: "urw-din", sans-serif;
  --xxs: 4px;
  --xs: 8px;
  --s: 12px;
  --m: 16px;
  --l: 24px;
  --xl: 28px;
  --xxl: 36px;
  --xxxl: 40px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1.125rem;
  line-height: 1.5625rem;
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--font-color);
  background-color: var(--grey-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  text-decoration: none;
  color: inherit;
}

a {
  max-width: 100%;
  height: auto;
  text-decoration: none;
  color: inherit;
}

#top-image-header {
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#top-image-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url("https://images.ctfassets.net/hd6763cyzwa4/40qSvcQZYX65WzzWx5bPdC/e929e4ec70a17596c82333222cfec2ff/slider-gradient.svg");
  background-size: cover;
  opacity: 0.6;
  z-index: 1;
}
.Copyright {
  -webkit-padding-start: var(--s);
  -moz-column-gap: var(--xxs);
  column-gap: var(--xxs);
  display: flex;
  flex-direction: row-reverse;
  font-weight: 400;
  inset-block-start: var(--s);
  inset-inline-end: var(--s);
  padding-inline-start: var(--s);
  position: absolute;
  top: 80%;
  right: 5%;
  font-size: 1rem;
  z-index: 999;
}
.Copyright-cta {
  background-color: #0009;
  border-radius: 50%;
  height: -moz-fit-content;
  height: fit-content;
  padding: var(--xxs);
  position: relative;
}
.Cta {
  align-items: center;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
  cursor: pointer;
  display: inline-flex;
  justify-content: space-between;
  outline-offset: 4px;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    color 0.3s ease;
  width: -moz-max-content;
  width: max-content;
  border: 0;
}
.Copyright-cta:before {
  content: "";
  inset: calc(var(--s) * -1);
  position: absolute;
}
.Copyright-cta .Icon,
.Copyright-text {
  color: #fff;
  font-size: 1rem;
}
.Cta .Icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.Icon {
  fill: currentColor;
  display: inline-flex;
  height: 1em;
  justify-content: center;
  line-height: 1;
  pointer-events: none;
  width: 1em;
}
.Copyright-text {
  display: inline-block;
  background-color: #0009;
  border-radius: 0;
  line-height: 1.3rem;
  opacity: 0;
  padding: var(--xxs) var(--s);
  margin: 0;
  pointer-events: auto;
  transition: opacity 0.3s ease;
  padding: 10px;
  margin-top: -6px;
  height: fit-content;
}
figcaption.Copyright:hover p.Copyright-text {
  opacity: 1; /* Devient complètement visible */
}
#sticky-nav-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #333339;
  color: #ffffff;
  padding: 15px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  height: 130px;
  margin-top: -145px;
}

.buttonscroll {
  position: absolute;
  top: 5%;
  right: 5%;
  z-index: 1000;
}

.header-logo img {
  height: 100px;
  width: auto;
  display: block;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-grow: 1;
  justify-content: center;
  margin: 10px 0;
  text-align: center;
  flex-basis: 100%;
  order: 3;
}

.header-logo {
  order: 1;
  flex-shrink: 0;
}

.header-cta img.arrow {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.cta-text {
  width: 440px;
}

.cta-text h1 {
  text-transform: uppercase;
  font-size: 1.3em;
  font-weight: bold;
  line-height: 1.2;
}

.cta-text span.tblue {
  text-transform: uppercase;
  color: #ffffff;
  display: inline-block;
  background: var(--primary-color);
  padding: 0 4px;
}

#content {
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 40px;
  padding-top: 50px;
}

.form-section {
  max-width: 1100px;
  margin: 180px auto 50px auto;
}

.form-section h2 {
  color: #333;
  margin: 20px 0;
}

.form-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #cccccc;
  align-items: flex-start;
}

.whitepaper-preview {
  flex: 1 1 40%;
  max-width: 40%;
  margin: 0 auto;
}

.whitepaper-preview img {
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.form-fields {
  flex: 2 1 300px;
  min-width: 280px;
}

.form-fields p {
  font-size: 0.85em;
  color: #666;
  margin-bottom: 20px;
}

.features-section {
  max-width: 1100px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  overflow: hidden;
}

.feature-item {
  background-color: #f8f9fa;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid #cccccc;
}

.feature-item img.icon {
  height: 70px;
  width: auto;
  margin: 0 auto 15px auto;
  opacity: 0.7;
}

.feature-item h3 {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--font-color);
  font-weight: bold;
  min-height: 3.3em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item p {
  font-size: 0.9em;
  color: var(--font-color);
  line-height: 1.5;
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 30px;
}

.footer-logo {
  flex-shrink: 0;
  margin: 0 auto;
}

.footer-logo img {
  height: auto;
  width: 8.625rem;
}

.footer-social {
  display: flex;
  gap: 0px;
  margin: 0 auto;
  border: 0px;
}

.footer-social a {
  display: block;
  padding: 2rem;
  border: 0.0625rem solid #ccc;
  border-left: none;
  line-height: 0;
}

.footer-social a:first-child {
  border: 0.0625rem solid #ccc;
}

.footer-social img {
  width: 1.5rem;
  height: auto;
  opacity: 1;
  vertical-align: middle;
}

.footer-social a:hover img {
  opacity: 0.7;
}

.footer-bottom {
  font-size: 0.8em;
  color: #ffffff;
  text-align: center;
  width: 100%;
  background: #000000;
  padding: 20px 5%;
  margin-top: 20px;
}
.footer-bottom span {
  display: inline-block;
}

.footer-bottom a {
  color: #ffffff;
  margin: 0 10px;
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: #bbbbbb;
}

input[type="text"],
input[type="date"],
input[type="number"],
input[type="email"],
textarea,
select {
  display: block;
  width: 100%;
  padding: 0.5rem;
  margin: 0.25rem 0 0;
  border: none;
  background-color: var(--grey-color);
  border-bottom: 0.0625rem solid var(--border-color);
  font-size: 1rem;
  line-height: 1;
}

select {
  padding: 1.0625rem 1rem;
  appearance: none;
  background-image: url("https://images.ctfassets.net/hd6763cyzwa4/45Xl2xPMH88h03FKfTg59M/aa9fb7dd5e22610e8ef41636043e134c/LP_ALL_chevron_down.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.75rem;
}

input[type="text"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: 0.0625rem solid var(--primary-color);
}

input[type="submit"],
a.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  padding: 1.5rem 2.5rem 1.5rem 1.5rem;
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  text-align: left;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  background-image: url("https://images.ctfassets.net/hd6763cyzwa4/5n2Cw516i9r30eea6wz9Bk/3f7204b760083fed3929acc642fdd9ef/EM_WIC_white_arrow.png");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
  cursor: pointer;
}

a.button.full-width {
  width: 100%;
}

header a.button.full-width {
  width: 100%;
  float: right;
}

input[type="submit"] {
  border: none;
  font-weight: 400;
  padding: 1.1625rem 3.5rem 1.1625rem 1rem;
  font-size: 1.2rem;
}

.pd-checkbox .value > span,
.pd-radio .value > span {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
}

.pd-radio .value > span {
  align-items: middle;
  padding: 10px 0 0;
}

input[type="submit"]:hover,
a.button:hover {
  background-color: var(--primary-hover-color);
}

.bg-grey {
  background-color: var(--grey-color);
}

.bg-dark {
  background-color: var(--dark-color);
  color: var(--white-color);
}

.bg-dark a {
  color: var(--white-color);
}

.margin-top-40 {
  margin-top: 2.5rem;
}

.margin-top-60 {
  margin-top: 3.75rem;
}

.two-column .container {
  display: flex;
}

.two-column.overlay .container {
  gap: 0;
}

.two-column.overlay .left-column {
  min-width: 100%;
}

.two-column.overlay .left-column img {
  object-fit: cover;
  height: 80%;
}

.two-column.overlay .right-column {
  min-width: 100%;
  position: relative;
}

.two-column.overlay .column-inner-container {
  background-color: var(--white-color);
  padding: 3.75rem;
}

.two-column.card .left-column,
.two-column.card .right-column {
  background-color: var(--white-color);
}

.two-column .left-column img,
.two-column .right-column img {
  width: 100%;
}

.two-column .column-inner-container {
  padding: 2.5rem;
}

.three-column.container,
.four-column.container {
  display: flex;
  gap: 1.25rem;
}

.three-column .column,
.four-column .column {
  flex: 1 1 25%;
}

.white-column {
  background-color: var(--white-color);
}

.bordered-column {
  padding: 1.25rem;
  border: 0.0625rem solid var(--border-color);
}

.column-inner-container {
  padding-top: 1.25rem;
}

.bordered-column .column-inner-container {
  border-top: 0.0625rem solid var(--border-color);
  margin-top: 1.25rem;
}

.white-column .column-inner-container {
  padding: 1.25rem;
}

.two-column.video .right-column {
  min-width: 100%;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 56.25%;
}

iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section.centered {
  text-align: center;
}

.right {
  text-align: left;
}

.align-items-center,
.align-items-end {
  align-items: center;
}

.social-icons {
  display: flex;
  justify-content: space-between;
  border: 0.0625rem solid #ccc;
  gap: 0;
  flex-direction: row;
}

.social-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  border-left: 0.0625rem solid var(--border-color);
  border-right: none;
  padding: 0.625rem;
}

.social-icon:first-child {
  border-left: none;
}

.social-icon:last-child {
  border-right: none;
}

.social-icon a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.social-icon img {
  width: 1.5rem;
  height: 1.5rem;
}

footer #navigation {
  background-color: var(--white-color);
}

footer nav {
  padding: 1.25rem;
  color: var(--font-color);
}

footer #navigation a {
  color: var(--font-color);
}

footer ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  flex-wrap: wrap;
}

footer ul li {
  font-size: 0.75rem;
  padding: 0 0.625rem;
}

footer ul li::after {
  content: "|";
  padding-left: 1.25rem;
}

footer ul li:last-child::after {
  content: "";
  padding-left: 0;
}

footer ul li a {
  text-decoration: none;
}

header .form {
  background-color: var(--white-color);
  padding: 1.25rem;
  margin: 0 -1.25rem;
}

.content .form {
  padding: 20px 0px 10px;
}

label:not(.inline) {
  display: block;
  font-weight: 700;
}

label.inline {
  font-size: 0.875rem;
}

#pardot-form {
  position: relative;
}

.form-field {
  vertical-align: top;
}

.form-fields .errors {
  color: var(--error-color);
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
}

.form-fields .error label,
form.form span.error {
  color: var(--error-color);
}

.form-fields .error.no-label:not(.form-field) {
  position: absolute;
  color: var(--error-color);
  font-size: 0.75rem;
  right: 1%;
  margin-top: -50px;
}

.feature {
  display: flex;
  flex-direction: column;
}

.feature-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.9375rem;
  flex-direction: row;
}

.feature-icon img {
  width: 100%;
  max-width: 3.75rem;
}

.feature-icon p {
  font-weight: 700;
  margin: 0;
}

div#ui-datepicker-div {
  background: #fff;
  border: 1px solid #000;
  width: 100%;
  max-width: 250px;
  padding: 10px;
}

a.ui-datepicker-next.ui-corner-all {
  float: right;
}

table.ui-datepicker-calendar {
  width: 100%;
  padding: 10px;
}

@media (min-width: 768px) {
  #sticky-nav-header {
    flex-wrap: nowrap;
    height: 145px;
  }

  .header-logo {
    order: 1;
    margin: 0;
  }

  .header-cta {
    justify-content: flex-start;
    order: 1;
    margin: 0;
    text-align: left;
    flex-basis: auto;
    flex-grow: 1;
    gap: 20px;
  }

  .cta-text h1 {
    font-size: 1.8em;
  }

  .form-container {
    gap: 40px;
  }

  .whitepaper-preview {
    margin: 0;
  }

  .features-section {
    margin: 50px auto;
  }

  .feature-item h3 {
    min-height: 0;
  }

  .footer-content {
    flex-wrap: nowrap;
    padding-bottom: 30px;
  }

  .footer-logo {
    order: 1;
    margin: 0;
  }

  .footer-links {
    order: 2;
    margin: 0;
  }

  .footer-social {
    order: 3;
    margin: 0;
  }

  footer #navigation {
    background-color: var(--dark-color);
  }

  footer nav {
    color: var(--white-color);
  }

  footer #navigation a {
    color: var(--white-color);
  }

  header .form {
    margin: 0;
  }

  .content .form {
    padding: 40px 40px 10px;
  }

  a.button.full-width {
    width: 70%;
  }

  input[type="submit"],
  a.button {
    padding: 1.1625rem 3.5rem 1.1625rem 1rem;
    font-size: 1.2rem;
  }

  .two-column.overlay .left-column {
    min-width: 45%;
  }

  .two-column.overlay .right-column {
    min-width: 55%;
  }

  .two-column.overlay .column-inner-container {
    margin-left: -3.75rem;
    margin-top: 3.75rem;
  }

  .two-column.video .right-column {
    min-width: 50%;
  }

  .right {
    text-align: right;
  }

  .align-items-end {
    align-items: flex-end;
  }

  .social-icon {
    padding: 2rem;
  }

  .feature-icon {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  html {
    scroll-padding-top: var(--header-height-mobile);
  }

  .Copyright {
    top: 73%;
  }

  .Copyright-text {
    margin-top: -20px;
  }
  #sticky-nav-header {
    padding: 20px 3%;
    margin-top: -195px;
    height: 195px;
  }

  #top-image-header {
    background-position: 35% center;
  }

  .cta-text {
    width: 80%;
  }

  .header-logo img {
    height: 100px;
  }

  .header-cta {
    gap: 10px;
    flex-basis: 100%;
    justify-content: center;
    order: 2;
    margin: 5px 0 0 0;
  }

  .header-logo {
    order: 1;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }

  .header-logo img {
    margin: 0 auto;
  }

  .header-cta img.arrow {
    height: 36px;
  }

  .cta-text h1 {
    font-size: 1.2em;
  }

  #content {
    padding-left: 3%;
    padding-right: 3%;
  }

  .form-section {
    margin: 30px auto 30px auto;
  }

  .form-container {
    padding: 20px;
    gap: 25px;
  }

  .whitepaper-preview {
    max-width: 200px;
    flex-basis: 150px;
  }

  .form-fields {
    flex-basis: 100%;
  }

  .features-section {
    margin: 30px auto;
  }

  .feature-item {
    padding: 20px 15px;
  }

  .feature-item h3 {
    font-size: 1em;
  }

  .feature-item p {
    font-size: 0.85em;
  }

  footer {
    padding: 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 25px;
    padding-bottom: 25px;
  }

  .footer-logo {
    order: 1;
  }

  .footer-links {
    order: 2;
    margin: 0;
  }

  .footer-social {
    order: 3;
  }

  .footer-social a {
    padding: 23px;
  }

  .footer-social img {
    height: auto;
    width: 1.3rem;
  }

  .footer-bottom {
    padding: 15px 3%;
    font-size: 0.75em;
  }

  .footer-bottom br {
    display: block;
  }
}

@media (max-width: 480px) {
  .cta-text h1 {
    font-size: 1.1em;
  }

  .form-container {
    gap: 20px;
  }

  .whitepaper-preview {
    max-width: 100%;
    flex-basis: 100%;
  }

  .form-fields {
    min-width: auto;
    flex-basis: 100%;
  }

  .feature-item h3 {
    font-size: 0.95em;
  }
}
