@charset "UTF-8";
/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/
/* ----------------------- ELEMENTS PRINCIPAUX ----------------------- */
/* ----------------------- COULEURS PRINCIPALES ----------------------- */
/* ----------------------- FONTS ----------------------- */
/* ----------------------- BREAK POINTS ----------------------- */
/* ----------------------- TAILLE STRUCTURE ----------------------- */
/*
::-moz-selection {
	background: $border-color;
}
::selection {
	background: $border-color;
}

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-thumb {
	background: $secondary-400;
	border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
}
::-webkit-scrollbar-track {
	background: $border-color;
	border-radius: 0px;
}
*/
ul,
ol,
dl,
address,
pre,
table,
blockquote,
fieldset {
  margin: 0 0 0.75rem;
}

p,
ul {
  margin: 0 0 1.5rem;
}
@media (max-width: 900px) {
  p,
  ul {
    margin: 0 0 1rem;
  }
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
h1 + h2,
h2 + h3,
h3 + h4,
h4 + h5,
h5 + h6 {
  padding-top: 0;
}

body .h1,
body h1 {
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  margin-bottom: var(--h1-margin-bottom);
}
@media (max-width: 767px) {
  body .h1,
  body h1 {
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
    margin-bottom: var(--h2-margin-bottom);
  }
}
@media (max-width: 600px) {
  body .h1,
  body h1 {
    font-size: 2rem;
  }
}
body .h2,
body h2 {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  margin-bottom: var(--h2-margin-bottom);
}
@media (max-width: 767px) {
  body .h2,
  body h2 {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
    margin-bottom: var(--h3-margin-bottom);
  }
}
body .h3,
body h3 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  margin-bottom: var(--h3-margin-bottom);
}
@media (max-width: 767px) {
  body .h3,
  body h3 {
    font-size: var(--h4-font-size);
    line-height: var(--h4-line-height);
    margin-bottom: var(--h4-margin-bottom);
  }
}
body .h4,
body h4 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  margin-bottom: var(--h4-margin-bottom);
}
@media (max-width: 767px) {
  body .h4,
  body h4 {
    font-size: var(--h5-font-size);
    line-height: var(--h5-line-height);
    margin-bottom: var(--h5-margin-bottom);
  }
}
body .h5,
body h5 {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
}
body .h6,
body h6 {
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
}
body .body {
  font-size: var(--font-size);
  line-height: var(--line-height);
}
body .body-small {
  font-size: 0.9rem;
  line-height: 1.4rem;
}
body .body-xsmall {
  font-size: 0.8rem;
  line-height: 1.3rem;
}
body ul {
  margin-left: 1.1rem;
  list-style-type: square;
}

h1 > span,
h2 > span,
h3 > span,
h4 > span,
h5 > span,
h6 > span {
  color: var(--color-content-secondary) !important;
}

.highlight {
  color: var(--color-content-secondary);
}

.dark-block h1 > span,
.dark-block h2 > span,
.dark-block h3 > span,
.dark-block h4 > span,
.dark-block h5 > span,
.dark-block h6 > span {
  color: #598AFF !important;
}

.regular {
  font-weight: 400;
}

@media (min-width: 767px) {
  .center-on-desktop {
    text-align: center;
  }
}

ul.checklist {
  list-style: none;
  margin-left: 0;
}
ul.checklist li {
  position: relative;
  background: url("/wp-content/uploads/icone-14.png") no-repeat left top;
  background-size: 31px;
  padding-left: 2.3rem;
  margin: 0 0 0.75rem;
}
ul.checklist li:last-child {
  margin-bottom: 0;
}
@media (min-width: 767px) {
  ul.checklist.col-2 {
    columns: 2;
    column-gap: 3rem;
  }
}

.wpb_text_column ul li::marker {
  color: var(--color-content-secondary);
}

.step-list {
  counter-reset: my-counter;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 767px) {
  .step-list {
    gap: 2rem;
  }
}
.step-list .wpb_text_column {
  counter-increment: my-counter;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 0;
}
.step-list .wpb_text_column:not(:last-child):after {
  content: "";
  position: absolute;
  background-color: #C4D6FF;
  width: 2px;
  top: 0.5rem;
  bottom: -4rem;
  left: calc(1rem - 1.5px);
  z-index: 0;
}
.step-list .wpb_text_column:before {
  content: counter(my-counter);
  position: absolute;
  left: 0;
  font-weight: bold;
  width: 2rem;
  height: 2rem;
  background-color: var(--color-content-secondary);
  border-radius: 100px;
  text-align: center;
  line-height: 1.9rem;
  color: white;
  top: 0.1rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .step-list .wpb_text_column:before {
    top: 0;
  }
}
.step-list .wpb_text_column h3 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  margin-bottom: var(--h4-margin-bottom);
}
@media (max-width: 767px) {
  .step-list .wpb_text_column h3 {
    font-size: var(--h5-font-size);
    line-height: var(--h5-line-height);
    margin-bottom: var(--h5-margin-bottom);
  }
}

table.tarifs {
  width: 100%;
  border-collapse: collapse;
}
table.tarifs th, table.tarifs td {
  border: 6px solid var(--color-content-bg);
  background-color: white;
  padding: 0.8rem 1.3rem;
  text-align: left;
  width: 33.3333%;
}
@media (max-width: 600px) {
  table.tarifs th, table.tarifs td {
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
    line-height: 1.4rem;
    border-width: 3px;
  }
}
table.tarifs th {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
  font-weight: 700;
}
table.tarifs th:first-child {
  background-color: transparent;
}
@media (max-width: 600px) {
  table.tarifs th {
    font-size: 0.9rem;
    line-height: 1.4rem;
  }
}

.fa-arrow-circle-right:before {
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-image: url("/wp-content/uploads/arrow.svg");
  mask-image: url("/wp-content/uploads/arrow.svg");
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.w-testimonial-rating::before {
  width: 6.5rem;
  height: 1.3rem;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28"><path d="M12,.8l3.2,9.2h8.8l-7.1,5.4,2.5,9.5-7.4-5.7-7.4,5.7,2.5-9.5L0,9.9h8.8L12,.8Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28"><path d="M12,.8l3.2,9.2h8.8l-7.1,5.4,2.5,9.5-7.4-5.7-7.4,5.7,2.5-9.5L0,9.9h8.8L12,.8Z"/></svg>');
  -webkit-mask-size: 1.3rem;
  mask-size: 1.3rem;
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
}
.w-testimonial-rating i:before {
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  background-color: currentColor;
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28"><path d="M12,.8l3.2,9.2h8.8l-7.1,5.4,2.5,9.5-7.4-5.7-7.4,5.7,2.5-9.5L0,9.9h8.8L12,.8Z"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28"><path d="M12,.8l3.2,9.2h8.8l-7.1,5.4,2.5,9.5-7.4-5.7-7.4,5.7,2.5-9.5L0,9.9h8.8L12,.8Z"/></svg>');
  -webkit-mask-size: 1.3rem;
  mask-size: 1.3rem;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.far.fa-globe::before {
  content: "\f0ac";
}
.far.fa-users::before {
  content: "\f0c0";
}
.far.fa-flag::before {
  content: "\f024";
}
.far.fa-laptop::before {
  content: "\f109";
}
.far.fa-map-marker-alt {
  -webkit-mask-image: url("/wp-content/uploads/map-pin.svg");
  mask-image: url("/wp-content/uploads/map-pin.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  margin-top: 2px;
}
.far.fa-calendar {
  -webkit-mask-image: url("/wp-content/uploads/calendar.svg");
  mask-image: url("/wp-content/uploads/calendar.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  margin-top: 2px;
}
.far.fa-euro-sign {
  -webkit-mask-image: url("/wp-content/uploads/euro.svg");
  mask-image: url("/wp-content/uploads/euro.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  margin-top: 2px;
}
.far.fa-graduation-cap {
  -webkit-mask-image: url("/wp-content/uploads/education.svg");
  mask-image: url("/wp-content/uploads/education.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  margin-top: 2px;
}
.far.fa-file-alt {
  -webkit-mask-image: url("/wp-content/uploads/documents.svg");
  mask-image: url("/wp-content/uploads/documents.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  margin-top: 2px;
}
.far.fa-file-user {
  -webkit-mask-image: url("/wp-content/uploads/resume.svg");
  mask-image: url("/wp-content/uploads/resume.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  margin-top: 2px;
}
.far.fa-laptop {
  -webkit-mask-image: url("/wp-content/uploads/laptop.svg");
  mask-image: url("/wp-content/uploads/laptop.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  margin-top: 2px;
}
.far.fa-briefcase::before {
  -webkit-mask-image: url("/wp-content/uploads/business.svg");
  mask-image: url("/wp-content/uploads/business.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  margin-top: 2px;
}

header .l-subheader.at_middle .l-subheader-h .l-subheader-cell.at_right > .w-btn {
  padding: 0.5rem 1.2rem 0;
  margin-left: 0;
  height: 2.5rem;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell .w-image {
  margin-right: 0;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav ul.w-nav-list.level_1 li.menu-item.level_1 ul.w-nav-list.level_2 {
  border-radius: 15px;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile {
  margin-left: 1rem;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile ul.w-nav-list.level_1 {
  background-color: white;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  min-height: initial;
  bottom: 0;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile ul.w-nav-list.level_1 li.menu-item.level_1 {
  border-bottom: 1px solid var(--color-alt-content-border);
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile ul.w-nav-list.level_1 li.menu-item.level_1 .w-nav-arrow {
  display: none;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile ul.w-nav-list.level_1 li.menu-item.level_1.btn {
  order: -1;
  border-bottom: 0;
  display: flex;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile ul.w-nav-list.level_1 li.menu-item.level_1.last-item {
  border-bottom: none;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile ul.w-nav-list.level_1 li.menu-item.level_1 a:not(.w-btn) {
  padding: 1rem 0rem;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile ul.w-nav-list.level_1 li.menu-item.level_1 .w-btn {
  margin: 0;
  margin-bottom: 1rem;
  width: 100%;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile ul.w-nav-list.level_1 ul.w-nav-list.level_2 {
  background-color: white;
  margin-bottom: 1rem;
  margin-top: -0.5rem;
  display: block;
  border-radius: 0 !important;
  opacity: 1 !important;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile ul.w-nav-list.level_1 ul.w-nav-list.level_2 .w-grid.layout_278 {
  padding: 0;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile ul.w-nav-list.level_1 ul.w-nav-list.level_2 .w-grid.layout_278 .w-grid-list .w-grid-item-h {
  padding: 0.5rem 0.75rem;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile ul.w-nav-list.level_1 ul.w-nav-list.level_2 .w-grid.layout_278 .w-grid-list .w-grid-item-h .post_title {
  font-size: var(--font-size);
  line-height: var(--line-height);
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile .w-nav-control {
  height: 2.5rem;
  width: 2.5rem;
  background-color: #E6DED3;
  border-radius: 100px;
  margin-right: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile .w-nav-control .w-nav-icon {
  font-size: 1rem;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav.type_mobile .w-nav-control .w-nav-icon > div {
  border-width: 2px;
}
header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav .w-btn {
  padding: 0.5rem 1.1rem 0.7rem 1.1rem;
}
@media (min-width: 1024px) {
  header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav .w-btn {
    font-size: 0.9rem;
    line-height: 1.4rem;
  }
}
@media (max-width: 1024px) {
  header .l-subheader.at_middle .l-subheader-h .l-subheader-cell nav.w-nav .w-btn {
    padding: 0.5rem 1.1rem 0.85rem 1.1rem;
  }
}
.w-separator:empty {
  margin: 0;
}
.w-separator.size_medium:empty {
  height: 3rem;
}
@media (max-width: 1024px) {
  .w-separator.size_medium:empty {
    height: 3rem;
  }
}
@media (max-width: 767px) {
  .w-separator.size_medium:empty {
    height: 3rem;
  }
}
@media (max-width: 480px) {
  .w-separator.size_medium:empty {
    height: 2.5rem;
  }
}
.w-separator.size_medium.with_line {
  height: 6rem;
}
@media (max-width: 1024px) {
  .w-separator.size_medium.with_line {
    height: 6rem;
  }
}
@media (max-width: 767px) {
  .w-separator.size_medium.with_line {
    height: 6rem;
  }
}
@media (max-width: 480px) {
  .w-separator.size_medium.with_line {
    height: 5rem;
  }
}
.w-separator.size_small:empty {
  height: 1.75rem;
}
@media (max-width: 1024px) {
  .w-separator.size_small:empty {
    height: 1.75rem;
  }
}
@media (max-width: 767px) {
  .w-separator.size_small:empty {
    height: 1.75rem;
  }
}
@media (max-width: 480px) {
  .w-separator.size_small:empty {
    height: 1.5rem;
  }
}
.w-separator.size_small.with_line {
  height: 3.5rem;
}
@media (max-width: 1024px) {
  .w-separator.size_small.with_line {
    height: 3.5rem;
  }
}
@media (max-width: 767px) {
  .w-separator.size_small.with_line {
    height: 3.5rem;
  }
}
@media (max-width: 480px) {
  .w-separator.size_small.with_line {
    height: 3rem;
  }
}
.w-separator.size_huge:empty {
  height: 5.5rem;
}
@media (max-width: 1024px) {
  .w-separator.size_huge:empty {
    height: 5rem;
  }
}
@media (max-width: 767px) {
  .w-separator.size_huge:empty {
    height: 4.5rem;
  }
}
@media (max-width: 480px) {
  .w-separator.size_huge:empty {
    height: 4rem;
  }
}
.w-separator.size_huge.with_line {
  height: 11rem;
}
@media (max-width: 1024px) {
  .w-separator.size_huge.with_line {
    height: 10rem;
  }
}
@media (max-width: 767px) {
  .w-separator.size_huge.with_line {
    height: 9rem;
  }
}
@media (max-width: 480px) {
  .w-separator.size_huge.with_line {
    height: 8rem;
  }
}

.w-iconbox .w-iconbox-title {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  margin-bottom: var(--h4-margin-bottom);
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0 !important;
}
@media (max-width: 767px) {
  .w-iconbox .w-iconbox-title {
    font-size: var(--h5-font-size);
    line-height: var(--h5-line-height);
    margin-bottom: var(--h5-margin-bottom);
  }
}
.w-iconbox .w-iconbox-icon {
  margin-bottom: 1rem;
  width: initial !important;
}
@media (max-width: 767px) {
  .w-iconbox .w-iconbox-icon {
    margin-bottom: 0.75rem;
  }
}
.w-iconbox .w-iconbox-icon img {
  width: 4.4rem;
  height: 4.4rem;
}
@media (max-width: 767px) {
  .w-iconbox .w-iconbox-icon img {
    width: 4rem;
    height: 4rem;
  }
}
.w-iconbox.iconpos_left .w-iconbox-icon {
  margin-right: 1.5rem;
}
@media (min-width: 767px) and (max-width: 900px) {
  .w-iconbox.iconpos_left {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .w-iconbox.iconpos_left {
    flex-direction: column;
  }
}

.icon {
  margin-bottom: 1rem;
}
.icon .w-iconbox-icon {
  width: 4.4rem;
  height: 4.4rem;
}
@media (max-width: 767px) {
  .icon .w-iconbox-icon {
    width: 4rem;
    height: 4rem;
  }
}

.w-btn.us-btn-style_1 {
  padding: 0.6rem 1.4rem 0.8rem 1.4rem;
}
.w-btn.us-btn-style_2 {
  padding: 0.6rem 1.4rem 0.8rem 1.4rem;
}
.w-btn.icon_atright {
  display: flex;
  align-items: center;
  text-align: left;
}
.w-btn.icon_atright span {
  flex-grow: 1;
}
.w-btn.icon_atright i {
  display: flex;
  padding-top: 0.2rem;
  margin: -0.6rem 0rem -0.6rem 0.5rem;
}
.w-btn.icon_atright i::before {
  font-size: 1rem;
}
.w-btn.icon_atright i.fa-arrow-circle-right {
  margin-right: -0.7rem;
  margin-left: 0.6rem;
  padding-top: 0.15rem;
}
.w-btn.icon_atright i.fa-arrow-circle-right:before {
  font-size: 1.7rem;
}

.dark-block .w-btn.us-btn-style_2 {
  background-color: transparent;
  color: var(--color-content-bg) !important;
}
.dark-block .w-btn.us-btn-style_2:hover {
  color: white !important;
  background-color: var(--color-content-link-hover);
}

.w-btn-wrapper {
  margin: 0 !important;
}

.btn-wrap-full-width {
  gap: 1rem;
}
@media (max-width: 900px) {
  .btn-wrap-full-width {
    flex-direction: column;
  }
}

.btn-wrap {
  gap: 1rem;
}
@media (max-width: 480px) {
  .btn-wrap {
    flex-direction: column;
  }
  .btn-wrap .w-btn-wrapper {
    width: 100%;
  }
}

.w-grid.layout_96 {
  --gap: 1rem !important;
  margin-left: -3rem;
  margin-right: -3rem;
}
@media (max-width: 767px) {
  .w-grid.layout_96 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
@media (max-width: 480px) {
  .w-grid.layout_96 {
    margin-left: -1.2rem;
    margin-right: -1.2rem;
  }
}
@media (max-width: 900px) {
  .w-grid.layout_96 {
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .w-grid.layout_96 {
    --gap: 0.7rem !important;
    padding-right: 1.5rem;
  }
}
.w-grid.layout_96 .owl-stage-outer {
  overflow: visible;
}
.w-grid.layout_96#entreprise .w-btn.entreprise {
  display: initial;
  margin-bottom: 0;
  margin-top: 1rem;
}
.w-grid.layout_96#entreprise .expertise {
  display: initial;
}
.w-grid.layout_96#entreprise .overlay-link,
.w-grid.layout_96#entreprise .post_content {
  display: none;
}
.w-grid.layout_96#candidat .w-btn.candidat {
  display: initial;
  margin-bottom: 0;
  margin-top: 1rem;
}
.w-grid.layout_96#candidat .overlay-link {
  display: none;
}
.w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h {
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 700px;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
}
@media (max-width: 480px) {
  .w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h {
    border-top-left-radius: 30px;
  }
}
@media (max-width: 480px) {
  .w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h {
    border-bottom-right-radius: 30px;
  }
}
@media (max-width: 1024px) {
  .w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h {
    height: 650px;
  }
}
@media (max-width: 900px) {
  .w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h {
    height: 600px;
  }
}
@media (max-width: 480px) {
  .w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h {
    height: 500px;
  }
}
.w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -moz-transform: scale(1.05);
}
.w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 90%;
  right: -100px;
  bottom: 40%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 182 650"><circle fill="none" stroke="white" stroke-width="2" cx="91" cy="91" r="90"/><rect fill="none" stroke="white" stroke-width="2" x="1" y="199" width="180" height="450" rx="90" ry="90"/></svg>');
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}
.w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  -webkit-background-image: linear-gradient(0deg, rgba(20, 20, 23, 0.9) 15%, rgba(20, 20, 23, 0) 100%);
  background-image: linear-gradient(0deg, rgba(20, 20, 23, 0.9) 15%, rgba(20, 20, 23, 0) 100%);
  -moz-background-image: linear-gradient(0deg, rgba(20, 20, 23, 0.9) 15%, rgba(20, 20, 23, 0) 100%);
  z-index: -1;
}
.w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h .us_tile_additional_image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h .us_tile_additional_image img {
  height: 100%;
  object-fit: cover;
}
.w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h .overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 0;
  opacity: 0;
  z-index: 2;
}
.w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h .w-btn {
  display: none;
}
.w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h .w-btn.overlay-link {
  display: block;
}
.w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h .expertise {
  display: none;
  font-size: 0.9rem;
  line-height: 1.4rem;
}
.w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h .post_content {
  font-size: 0.9rem;
  line-height: 1.4rem;
}
.w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h .post_title {
  margin-bottom: 0.5rem;
}
.w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h .usg_vwrapper_1 {
  padding: 2rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
@media (max-width: 480px) {
  .w-grid.layout_96 .w-grid-list .w-grid-item .w-grid-item-h .usg_vwrapper_1 {
    padding: 1.5rem;
  }
}
.w-grid.layout_96 .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.w-grid.layout_96 .owl-dots.disabled {
  display: none;
}
.w-grid.layout_96 .owl-dots .owl-dot span {
  background-color: #D7CCC0;
  box-shadow: none !important;
  opacity: 1;
  margin: 0;
}
.w-grid.layout_96 .owl-dots .owl-dot.active span {
  background: var(--color-content-secondary) !important;
}
.w-grid.layout_96 .owl-dots .owl-dot span {
  background-color: #46464A;
}
.w-grid.layout_96 .owl-dots {
  margin-bottom: 1rem;
}

.w-grid.layout_104 {
  --gap: 1rem !important;
}
@media (max-width: 900px) {
  .w-grid.layout_104 {
    margin-left: -3rem;
    margin-right: -3rem;
    --gap: 0.7rem !important;
    padding-right: 1rem;
  }
}
@media (max-width: 900px) and (max-width: 767px) {
  .w-grid.layout_104 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
@media (max-width: 900px) and (max-width: 480px) {
  .w-grid.layout_104 {
    margin-left: -1.2rem;
    margin-right: -1.2rem;
  }
}
@media (max-width: 900px) {
  .w-grid.layout_104 .owl-stage-outer {
    overflow: visible;
  }
}
@media (min-width: 900px) {
  .w-grid.layout_104 .owl-stage-outer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1rem;
    bottom: 0;
    height: 100%;
    -webkit-background-image: linear-gradient(90deg, #f4eee6 30%, rgba(244, 238, 230, 0) 100%);
    background-image: linear-gradient(90deg, #f4eee6 30%, rgba(244, 238, 230, 0) 100%);
    -moz-background-image: linear-gradient(90deg, #f4eee6 30%, rgba(244, 238, 230, 0) 100%);
    z-index: 1;
  }
  .w-grid.layout_104 .owl-stage-outer::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1rem;
    bottom: 0;
    height: 100%;
    -webkit-background-image: linear-gradient(-90deg, #f4eee6 30%, rgba(244, 238, 230, 0) 100%);
    background-image: linear-gradient(-90deg, #f4eee6 30%, rgba(244, 238, 230, 0) 100%);
    -moz-background-image: linear-gradient(-90deg, #f4eee6 30%, rgba(244, 238, 230, 0) 100%);
    z-index: 1;
  }
}
.w-grid.layout_104 .owl-stage-outer .owl-item {
  display: flex;
  flex-direction: column;
}
.w-grid.layout_104 .w-grid-list .w-grid-item {
  flex-grow: 1;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h {
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 2rem;
  background-color: white;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h {
    border-top-left-radius: 30px;
  }
}
@media (max-width: 480px) {
  .w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h {
    border-bottom-right-radius: 30px;
  }
}
@media (max-width: 480px) {
  .w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h {
    padding: 1.5rem;
  }
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .post_content {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .post_date {
  font-size: 0.9rem;
  line-height: 1.4rem;
  color: #89898C;
  flex-grow: 1;
  text-align: right;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .post_title {
  margin-bottom: 0.75rem;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .usg_hwrapper_1 {
  align-items: end;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .usg_hwrapper_1 .usg_vwrapper_1 {
  flex-grow: 1;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .usg_hwrapper_1 .usg_vwrapper_1 .us_testimonial_author {
  font-weight: 700;
  margin-bottom: 0;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .usg_hwrapper_1 .usg_vwrapper_1 .us_testimonial_role {
  font-size: 0.9rem;
  line-height: 1.4rem;
  margin-bottom: 0;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .usg_hwrapper_1 .usg_vwrapper_1 .us_testimonial_company {
  font-size: 0.9rem;
  line-height: 1.4rem;
  color: #89898C;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .usg_vwrapper_1 {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .usg_vwrapper_1 .post_image {
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 0;
  border-radius: 100px;
  border: 1px solid var(--color-content-border);
  flex-shrink: 0;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .us_testimonial_rating {
  margin-bottom: 1rem;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .us_testimonial_rating .w-testimonial-rating {
  width: 100%;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .us_testimonial_rating .w-testimonial-rating::before {
  color: #D7CCC0;
  opacity: 1;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .us_testimonial_rating .w-testimonial-rating i::before {
  color: var(--color-content-secondary);
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .post_taxonomy span {
  font-size: 0.8rem;
  line-height: 1.3rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem 0.15rem;
  border-radius: 5px;
  border: 1px solid;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .post_taxonomy span.term-entreprise {
  color: #7830A4;
  border-color: rgba(120, 48, 164, 0.2);
  background-color: #F3E4FB;
}
.w-grid.layout_104 .w-grid-list .w-grid-item .w-grid-item-h .post_taxonomy span.term-candidat {
  color: #377B71;
  border-color: rgba(55, 123, 113, 0.2);
  background-color: #E9F6F4;
}
.w-grid.layout_104 .owl-nav button {
  height: 2.5rem;
  width: 2.5rem;
  background-color: #E6DED3;
  font-size: 1rem !important;
}
.w-grid.layout_104 .owl-nav button:hover {
  background-color: #D7CCC0 !important;
}
.w-grid.layout_104 .owl-nav button.owl-prev::after {
  content: "\f060";
  padding-right: 0.1rem;
}
.w-grid.layout_104 .owl-nav button.owl-next::after {
  content: "\f061";
  padding-left: 0.1rem;
}
.w-grid.layout_104 .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.w-grid.layout_104 .owl-dots.disabled {
  display: none;
}
.w-grid.layout_104 .owl-dots .owl-dot span {
  background-color: #D7CCC0;
  box-shadow: none !important;
  opacity: 1;
  margin: 0;
}
.w-grid.layout_104 .owl-dots .owl-dot.active span {
  background: var(--color-content-secondary) !important;
}

.w-grid.layout_128 {
  --gap: 1.5rem !important;
}
@media (max-width: 900px) {
  .w-grid.layout_128 {
    margin-left: -3rem;
    margin-right: -3rem;
    --gap: 0.7rem !important;
    padding-right: 1rem;
  }
}
@media (max-width: 900px) and (max-width: 767px) {
  .w-grid.layout_128 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
@media (max-width: 900px) and (max-width: 480px) {
  .w-grid.layout_128 {
    margin-left: -1.2rem;
    margin-right: -1.2rem;
  }
}
.w-grid.layout_128 .owl-stage-outer {
  overflow: visible;
}
.w-grid.layout_128 .w-grid-list .w-grid-item .w-grid-item-h .post_content {
  font-size: 0.9rem;
  line-height: 1.4rem;
}
.w-grid.layout_128 .w-grid-list .w-grid-item .w-grid-item-h .post_title {
  margin-bottom: 0.75rem;
}
.w-grid.layout_128 .w-grid-list .w-grid-item .w-grid-item-h .post_image {
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .w-grid.layout_128 .w-grid-list .w-grid-item .w-grid-item-h .post_image {
    border-top-left-radius: 30px;
  }
}
@media (max-width: 480px) {
  .w-grid.layout_128 .w-grid-list .w-grid-item .w-grid-item-h .post_image {
    border-bottom-right-radius: 30px;
  }
}
.w-grid.layout_128 .w-grid-list .w-grid-item .w-grid-item-h .post_taxonomy {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
}
.w-grid.layout_128 .w-grid-list .w-grid-item .w-grid-item-h .post_taxonomy span {
  font-size: 0.8rem;
  line-height: 1.3rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem 0.15rem;
  border-radius: 5px;
  border: 1px solid;
}
.w-grid.layout_128 .w-grid-list .w-grid-item .w-grid-item-h .post_taxonomy span.term-entreprise {
  color: #7830A4;
  border-color: rgba(120, 48, 164, 0.2);
  background-color: #F3E4FB;
}
.w-grid.layout_128 .w-grid-list .w-grid-item .w-grid-item-h .post_taxonomy span.term-candidat {
  color: #377B71;
  border-color: rgba(55, 123, 113, 0.2);
  background-color: #E9F6F4;
}
.w-grid.layout_128 .w-grid-list .w-grid-item .w-grid-item-h .usg_hwrapper_1 {
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
  font-size: 0.8rem;
  line-height: 1.3rem;
  color: #89898C;
}
.w-grid.layout_128 .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.w-grid.layout_128 .owl-dots.disabled {
  display: none;
}
.w-grid.layout_128 .owl-dots .owl-dot span {
  background-color: #D7CCC0;
  box-shadow: none !important;
  opacity: 1;
  margin: 0;
}
.w-grid.layout_128 .owl-dots .owl-dot.active span {
  background: var(--color-content-secondary) !important;
}
.w-grid.layout_128 .owl-dots {
  margin-bottom: 1rem;
}

.w-grid.layout_197 {
  --gap: 0rem !important;
}
.w-grid.layout_197 .owl-stage-outer {
  overflow: visible;
}
.w-grid.layout_197 .w-grid-item-h {
  padding: 0 1rem;
}
.w-grid.layout_197 .w-grid-item-h .post_image {
  max-width: 8rem;
  margin: auto;
  opacity: 0.75;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
}
.w-grid.layout_197 .w-grid-item-h .post_image:hover {
  opacity: 1;
}

.w-grid.layout_278 {
  padding: 0.5rem;
  --gap: 0 !important;
}
.w-grid.layout_278 .w-grid-item-h {
  padding: 1rem 1.5rem;
  background-color: white;
  border-radius: 8px;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
}
.w-grid.layout_278 .w-grid-item-h:hover {
  background-color: #ECF2FF;
  cursor: pointer;
}
.w-grid.layout_278 .w-grid-item-h:hover .post_title {
  color: var(--color-content-link-hover);
}
.w-grid.layout_278 .w-grid-item-h .post_title {
  font-weight: 700;
  margin-bottom: 0.25rem;
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
  -moz-transition: all 0.15s ease;
}
.w-grid.layout_278 .w-grid-item-h .post_content {
  color: #89898C;
  font-size: 0.8rem;
  line-height: 1.3rem;
}
.w-grid.layout_278 .w-grid-item-h .w-btn {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.w-grid.layout_640 {
  --gap: 1rem !important;
  margin-left: -3rem;
  margin-right: -3rem;
}
@media (max-width: 767px) {
  .w-grid.layout_640 {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
@media (max-width: 480px) {
  .w-grid.layout_640 {
    margin-left: -1.2rem;
    margin-right: -1.2rem;
  }
}
.w-grid.layout_640 .w-grid-item-h {
  padding: 4rem;
  padding: 3rem;
  background-color: white;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .w-grid.layout_640 .w-grid-item-h {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  .w-grid.layout_640 .w-grid-item-h {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  .w-grid.layout_640 .w-grid-item-h {
    padding: 1.5rem 1.2rem 1.2rem;
  }
}
@media (max-width: 480px) {
  .w-grid.layout_640 .w-grid-item-h {
    border-top-left-radius: 40px;
  }
}
@media (max-width: 480px) {
  .w-grid.layout_640 .w-grid-item-h {
    border-bottom-right-radius: 40px;
  }
}
@media (max-width: 767px) {
  .w-grid.layout_640 .w-grid-item-h {
    flex-direction: column;
    gap: 0rem;
  }
}
.w-grid.layout_640 .w-grid-item-h .w-btn {
  height: 2.5rem;
  width: 2.5rem;
  padding: 0;
  justify-content: center;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .w-grid.layout_640 .w-grid-item-h .w-btn {
    align-self: flex-end;
    height: 2rem;
    width: 2rem;
  }
}
.w-grid.layout_640 .w-grid-item-h .w-btn i {
  padding: 0;
  display: flex;
  width: initial;
}
.w-grid.layout_640 .w-grid-item-h .usg_vwrapper_1 {
  flex-grow: 1;
}
@media (max-width: 767px) {
  .w-grid.layout_640 .w-grid-item-h .usg_vwrapper_1 {
    width: 100%;
  }
}
.w-grid.layout_640 .w-grid-item-h .post_title {
  font-weight: 700;
  margin-bottom: 1rem;
}
.w-grid.layout_640 .w-grid-item-h .post_date {
  color: #89898C;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.3rem;
}
@media (max-width: 767px) {
  .w-grid.layout_640 .w-grid-item-h .post_date {
    position: absolute;
    bottom: -2rem;
  }
}
.w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 2.5rem;
  max-width: 840px;
}
@media (max-width: 1280px) {
  .w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.3rem;
    margin-bottom: 0;
  }
}
.w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .post_taxonomy, .w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .usg_hwrapper_1 {
  padding-bottom: 0.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-alt-content-border);
  font-size: 0.9rem;
  line-height: 1.4rem;
}
@media (max-width: 767px) {
  .w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .post_taxonomy, .w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .usg_hwrapper_1 {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .post_taxonomy:last-child, .w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .usg_hwrapper_1:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (min-width: 1280px) {
  .w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .post_taxonomy:nth-last-child(3), .w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .usg_hwrapper_1:nth-last-child(3) {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
@media (min-width: 767px) {
  .w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .post_taxonomy:nth-last-child(2), .w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .usg_hwrapper_1:nth-last-child(2) {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
.w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .post_taxonomy i, .w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .usg_hwrapper_1 i {
  color: var(--color-content-secondary);
  width: 1.25rem;
  height: 1.25rem;
  text-align: center;
  line-height: 1.5rem;
  font-size: 1rem;
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .post_taxonomy i, .w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .usg_hwrapper_1 i {
    width: 1rem;
    height: 1rem;
    line-height: 1.3rem;
    font-size: 0.9rem;
  }
}
.w-grid.layout_640 .w-grid-item-h .usg_vwrapper_2 .usg_hwrapper_1 .w-post-elm {
  margin-right: 0.25rem;
}

.color_primary .w-grid.layout_640 {
  color: var(--color-content-primary);
}

footer.l-footer .color_footer-bottom {
  padding-top: 5.5rem;
}
@media (max-width: 1024px) {
  footer.l-footer .color_footer-bottom {
    padding-top: 5rem;
  }
}
@media (max-width: 767px) {
  footer.l-footer .color_footer-bottom {
    padding-top: 4.5rem;
  }
}
@media (max-width: 480px) {
  footer.l-footer .color_footer-bottom {
    padding-top: 4rem;
  }
}
@media (max-width: 767px) {
  footer.l-footer .g-cols.wpb_row {
    flex-direction: column-reverse;
    gap: 2.5rem;
  }
}
@media (max-width: 767px) {
  footer.l-footer .g-cols.wpb_row .vc_column_container {
    margin-bottom: 0 !important;
  }
}
footer.l-footer .g-cols.wpb_row .vc_column_container:last-child .w-hwrapper {
  flex-wrap: wrap;
  row-gap: 2.5rem;
}
@media (max-width: 400px) {
  footer.l-footer .g-cols.wpb_row .vc_column_container:last-child .w-hwrapper {
    flex-direction: column;
    gap: 2.5rem;
  }
}
footer.l-footer .g-cols.wpb_row .vc_column_container:last-child .w-hwrapper:first-of-type {
  padding-bottom: 3rem;
}
@media (max-width: 900px) {
  footer.l-footer .g-cols.wpb_row .vc_column_container:last-child .w-hwrapper:first-of-type {
    padding-bottom: 2.5rem;
  }
}
footer.l-footer .g-cols.wpb_row .vc_column_container:last-child .w-hwrapper:last-of-type {
  justify-content: end;
}
footer.l-footer .g-cols.wpb_row .vc_column_container:last-child .w-hwrapper .vc_wp_custommenu {
  width: 33.3333%;
  padding-right: 1rem;
}
@media (max-width: 900px) {
  footer.l-footer .g-cols.wpb_row .vc_column_container:last-child .w-hwrapper .vc_wp_custommenu {
    width: 50%;
  }
}
@media (max-width: 400px) {
  footer.l-footer .g-cols.wpb_row .vc_column_container:last-child .w-hwrapper .vc_wp_custommenu {
    width: 100%;
  }
}
footer.l-footer .g-cols.wpb_row .vc_wp_custommenu .widgettitle {
  color: #89898C;
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media (max-width: 600px) {
  footer.l-footer .g-cols.wpb_row .vc_wp_custommenu .widgettitle {
    margin-bottom: 0.5rem;
  }
}
footer.l-footer .g-cols.wpb_row .vc_wp_custommenu .menu {
  font-size: 0.9rem;
  line-height: 1.4rem;
}
footer.l-footer .bottom-footer {
  align-items: center;
  font-size: 0.8rem;
  line-height: 1.3rem;
  color: #89898C;
}
@media (max-width: 900px) {
  footer.l-footer .bottom-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.4rem;
  }
}
footer.l-footer .bottom-footer .vc_wp_custommenu {
  flex-grow: 1;
}
footer.l-footer .bottom-footer .vc_wp_custommenu .menu {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  footer.l-footer .bottom-footer .vc_wp_custommenu .menu {
    flex-direction: column;
    gap: 1rem;
  }
}
footer.l-footer .bottom-footer .vc_wp_custommenu .menu li {
  margin-bottom: 0;
}
footer.l-footer .bottom-footer .vc_wp_custommenu .menu li a {
  color: #89898C;
}
footer.l-footer .bottom-footer .vc_wp_custommenu .menu li a:hover {
  color: #598AFF;
}
footer.l-footer .bottom-footer .wpb_text_column {
  margin-right: 1rem;
}
footer.l-footer .bottom-footer .w-socials-list {
  display: flex;
}
footer.l-footer .bottom-footer .w-socials-list a {
  font-size: 1.5rem;
}
@media (max-width: 900px) {
  footer.l-footer .bottom-footer .w-image {
    margin-bottom: 1rem;
  }
}

.style-1 .w-image-h {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 480px) {
  .style-1 .w-image-h {
    border-top-left-radius: 40px;
  }
}
@media (max-width: 480px) {
  .style-1 .w-image-h {
    border-bottom-right-radius: 40px;
  }
}
.style-1 .w-image-h::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 110%;
  max-height: 800px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 1;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 182 650"><circle fill="none" stroke="white" stroke-width="2" cx="91" cy="91" r="90"/><rect fill="none" stroke="white" stroke-width="2" x="1" y="199" width="180" height="450" rx="90" ry="90"/></svg>');
}
.style-1 .w-image-h::after {
  right: -150px;
  top: 22%;
}

.style-2 .w-image-h {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 480px) {
  .style-2 .w-image-h {
    border-top-left-radius: 40px;
  }
}
@media (max-width: 480px) {
  .style-2 .w-image-h {
    border-bottom-right-radius: 40px;
  }
}
.style-2 .w-image-h::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 110%;
  max-height: 800px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 1;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 182 650"><circle fill="none" stroke="white" stroke-width="2" cx="91" cy="91" r="90"/><rect fill="none" stroke="white" stroke-width="2" x="1" y="199" width="180" height="450" rx="90" ry="90"/></svg>');
}
.style-2 .w-image-h::after {
  left: -150px;
  bottom: 22%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}

.icon img {
  width: 4.4rem;
  height: 4.4rem;
}

.w-image .w-image-meta {
  padding-top: 0 !important;
}
.w-image .w-image-meta .w-image-title {
  font-size: 0.9rem;
  line-height: 1.4rem;
  font-weight: 700;
}
.w-image .w-image-meta .w-image-description {
  color: #89898C;
  font-size: 0.8rem;
  line-height: 1.3rem;
  margin: 0;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .wpcf7-form {
    gap: 1rem;
  }
}
.wpcf7-form .field-row {
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .wpcf7-form .field-row {
    gap: 1rem;
  }
}
@media (min-width: 900px) and (max-width: 1024px) {
  .wpcf7-form .field-row {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .wpcf7-form .field-row {
    flex-direction: column;
  }
}
.wpcf7-form .field-row .field {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.wpcf7-form .field-row .field > label {
  font-size: 0.9rem;
  line-height: 1.4rem;
}
.wpcf7-form .field-row .field .mandatory {
  color: #FF2A00;
  padding-left: 0.15rem;
}
.wpcf7-form .field-row .field input {
  font-size: var(--font-size);
  line-height: var(--line-height);
}
.wpcf7-form .field-row .field input[type=radio] {
  margin-right: 0.6rem;
}
.wpcf7-form .field-row .field input[type=radio]::before {
  background-color: var(--color-content-secondary);
  height: 50%;
  width: 50%;
  margin: 26%;
}
.wpcf7-form .field-row .field input[type=file] {
  line-height: 2.5rem;
}
.wpcf7-form .field-row .field .wpcf7-form-control-wrap {
  margin-top: 0.3rem;
}
.wpcf7-form .field-row .field .wpcf7-radio {
  display: flex;
  gap: 1.75rem;
}
.wpcf7-form .field-row .field .wpcf7-spinner {
  order: -1;
  margin: 0.5rem;
}
.wpcf7-form .field-row .field .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  line-height: 1.3rem;
  color: #FF2A00;
  margin-top: 0.1rem;
}
.wpcf7-form .field-row .field .wpcf7-not-valid {
  border-color: #FF2A00;
}
.wpcf7-form .field-row .legal {
  font-size: 0.9rem;
  line-height: 1.4rem;
}
@media (min-width: 900px) and (max-width: 1024px) {
  .wpcf7-form .field-row .legal {
    align-self: flex-start;
  }
}
@media (max-width: 767px) {
  .wpcf7-form .field-row .legal {
    align-self: flex-start;
  }
}
.wpcf7-form .field-row .legal span {
  color: #FF2A00;
  padding-right: 0.15rem;
}
.wpcf7-form .field-row.submit {
  padding-top: 1.25rem;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .wpcf7-form .field-row.submit {
    padding-top: 1rem;
  }
}
.wpcf7-form .field-row.submit .field {
  flex-direction: row;
  align-items: center;
  flex-grow: 0;
  width: initial;
  align-self: flex-end;
}
.wpcf7-form .field-row.submit input[type=submit] {
  padding: 0.6rem 1.4rem 0.8rem 1.4rem;
}
.wpcf7-form .wpcf7-response-output {
  border: none !important;
  border-radius: 5px;
}
.wpcf7-form.invalid .wpcf7-response-output {
  background-color: rgba(255, 42, 0, 0.1);
  color: #FF2A00;
}
.wpcf7-form.sent .wpcf7-response-output {
  background-color: rgba(0, 128, 0, 0.1);
  color: green;
}

.g-breadcrumbs {
  font-size: 0.9rem;
  line-height: 1.4rem;
}
@media (max-width: 767px) {
  .hide-on-mobile {
    display: none;
  }
}

.show-on-mobile {
  display: none;
}
@media (max-width: 767px) {
  .show-on-mobile {
    display: block;
  }
}

body .l-subheader,
body .l-section {
  padding-left: 4rem;
  padding-right: 4rem;
}
@media (max-width: 1024px) {
  body .l-subheader,
  body .l-section {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}
@media (max-width: 767px) {
  body .l-subheader,
  body .l-section {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media (max-width: 600px) {
  body .l-subheader,
  body .l-section {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
}
body .l-subheader.height_medium,
body .l-section.height_medium {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}
@media (max-width: 1024px) {
  body .l-subheader.height_medium,
  body .l-section.height_medium {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
@media (max-width: 767px) {
  body .l-subheader.height_medium,
  body .l-section.height_medium {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
@media (max-width: 480px) {
  body .l-subheader.height_medium,
  body .l-section.height_medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
body .l-section.shape {
  overflow: hidden;
}
body .l-section.shape::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 230px;
  height: 800px;
  right: -115px;
  bottom: -240px;
  opacity: 0.5;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 182 650"><circle fill="none" stroke="%23E6DED3" stroke-width="2" cx="91" cy="91" r="90"/><rect fill="none" stroke="%23E6DED3" stroke-width="2" x="1" y="199" width="180" height="450" rx="90" ry="90"/></svg>');
  z-index: 0;
}
@media (max-width: 600px) {
  body .l-section.shape::after {
    height: 620px;
    bottom: -140px;
  }
}
body .l-section.shape .l-section-h {
  z-index: 1;
}
body .l-section .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  body .l-section .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 480px) {
  body .l-section .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
}
@media (max-width: 766px) {
  body .l-section .g-cols.stacking_default.via_flex > div:not([class*=vc_col-xs]) {
    margin: 0 0 2.5rem;
  }
  body .l-section .g-cols.stacking_default.via_flex:not(.reversed) > div:last-child {
    margin-bottom: 0;
  }
  body .l-section .g-cols.stacking_default.via_flex.reversed > div:first-child {
    margin-bottom: 0;
  }
}
body .l-section .g-cols.via_flex.type_default {
  margin: 0 -1.75rem;
}
body .l-section .g-cols.via_flex.type_default > div > .vc_column-inner {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
body .l-section.color_alternate:not(.color_primary ~ .color_primary) {
  border-top-left-radius: 70px;
}
@media (max-width: 480px) {
  body .l-section.color_alternate:not(.color_primary ~ .color_primary) {
    border-top-left-radius: 50px;
  }
}
body .l-section.color_alternate:not(:has(+ .color_primary)) {
  border-bottom-right-radius: 70px;
}
@media (max-width: 480px) {
  body .l-section.color_alternate:not(:has(+ .color_primary)) {
    border-bottom-right-radius: 50px;
  }
}
body .l-section.color_alternate:last-of-type::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-bottom-right-radius: 70px;
  background-color: white;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 480px) {
  body .l-section.color_alternate:last-of-type::before {
    width: 50px;
  }
}
@media (max-width: 480px) {
  body .l-section.color_alternate:last-of-type::before {
    height: 50px;
  }
}
@media (max-width: 480px) {
  body .l-section.color_alternate:last-of-type::before {
    border-bottom-right-radius: 50px;
  }
}
body .l-section.color_alternate:last-of-type::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: var(--color-content-primary);
  bottom: 0;
  right: 0;
  z-index: 0;
}
@media (max-width: 480px) {
  body .l-section.color_alternate:last-of-type::after {
    width: 50px;
  }
}
@media (max-width: 480px) {
  body .l-section.color_alternate:last-of-type::after {
    height: 50px;
  }
}
body .l-section.color_primary {
  color: var(--color-content-bg);
}
body .l-section.color_primary:not(.color_primary ~ .color_primary) {
  border-top-left-radius: 70px;
}
@media (max-width: 480px) {
  body .l-section.color_primary:not(.color_primary ~ .color_primary) {
    border-top-left-radius: 50px;
  }
}
body .l-section.color_primary:not(:has(+ .color_primary)) {
  border-bottom-right-radius: 70px;
}
@media (max-width: 480px) {
  body .l-section.color_primary:not(:has(+ .color_primary)) {
    border-bottom-right-radius: 50px;
  }
}
body .l-section.color_primary h1 > span,
body .l-section.color_primary h2 > span,
body .l-section.color_primary h3 > span,
body .l-section.color_primary h4 > span,
body .l-section.color_primary h5 > span,
body .l-section.color_primary h6 > span {
  color: #598AFF !important;
}
body .l-section.color_footer-bottom .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 600px) {
  body .l-section.color_footer-bottom .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
}
body .l-section.white-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
  padding: 4rem;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: white;
}
@media (max-width: 1024px) {
  body .l-section.white-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    padding: 3rem;
  }
}
@media (max-width: 767px) {
  body .l-section.white-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  body .l-section.white-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    padding: 1.5rem 1.2rem 1.2rem;
  }
}
@media (max-width: 480px) {
  body .l-section.white-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    border-top-left-radius: 40px;
  }
}
@media (max-width: 480px) {
  body .l-section.white-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    border-bottom-right-radius: 40px;
  }
}
body .l-section.white-block.split .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1024px) {
  body .l-section.white-block.split .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  body .l-section.white-block.split .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    padding: 2rem;
  }
}
@media (max-width: 480px) {
  body .l-section.white-block.split .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    padding: 1.5rem 1.2rem 1.2rem;
  }
}
body .l-section.white-block.split .l-section-h > .g-cols.via_flex.type_default {
  margin: 0 -0.75rem;
}
body .l-section.white-block.split .l-section-h > .g-cols.via_flex.type_default > div > .vc_column-inner {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
@media (max-width: 766px) {
  body .l-section.white-block.split .l-section-h > .g-cols.stacking_default.via_flex > div:not([class*=vc_col-xs]) {
    margin: 0 0 1.5rem;
  }
  body .l-section.white-block.split .l-section-h > .g-cols.stacking_default.via_flex:not(.reversed) > div:last-child {
    margin-bottom: 0;
  }
}
body .l-section.white-block.split .w-btn-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: end;
}
@media (min-width: 600px) and (max-width: 767px) {
  body .l-section.white-block.split.custom-1 .l-section-h > .g-cols {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  body .l-section.white-block.split.custom-1 .l-section-h > .g-cols > .vc_column_container {
    margin-bottom: 0 !important;
  }
}
body .l-section.white-block.split.custom-1 .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 990px) {
  body .l-section.white-block.split.custom-1 .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    align-items: flex-end;
  }
}
body .l-section.white-block.split.custom-1 .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper .w-iconbox {
  align-items: center;
  flex-grow: 1;
}
@media (max-width: 990px) {
  body .l-section.white-block.split.custom-1 .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper .w-iconbox {
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
  }
}
@media (min-width: 990px) {
  body .l-section.white-block.split.custom-1 .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper .w-iconbox .w-iconbox-icon {
    margin-bottom: 0;
  }
}
body .l-section.white-block.split.custom-1 .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper .w-btn-wrapper {
  flex-grow: 0;
}
body .l-section.white-block.split.custom-1 .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper .w-btn-wrapper .w-btn {
  height: 2.5rem;
  width: 2.5rem;
  padding: 0;
  justify-content: center;
}
body .l-section.white-block.split.custom-1 .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper .w-btn-wrapper .w-btn i {
  padding: 0;
  display: flex;
  width: initial;
}
body .l-section.white-block.with-shape .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
  position: relative;
  overflow: hidden;
}
@media (max-width: 480px) {
  body .l-section.white-block.with-shape .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::before, body .l-section.white-block.with-shape .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::after {
    display: none;
  }
}
body .l-section.white-block.with-shape .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::before, body .l-section.white-block.with-shape .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 600px;
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0.1;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 182 650"><circle fill="none" stroke="white" stroke-width="2" cx="91" cy="91" r="90"/><rect fill="none" stroke="white" stroke-width="2" x="1" y="199" width="180" height="450" rx="90" ry="90"/></svg>');
}
@media (max-width: 767px) {
  body .l-section.white-block.with-shape .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::before, body .l-section.white-block.with-shape .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::after {
    width: 140px;
  }
}
body .l-section.white-block.with-shape .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::before {
  right: -90px;
  top: 12%;
}
@media (max-width: 767px) {
  body .l-section.white-block.with-shape .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::before {
    right: -70px;
    bottom: -220px;
    top: initial;
  }
}
body .l-section.white-block.with-shape .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::after {
  left: -90px;
  bottom: 12%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}
@media (max-width: 767px) {
  body .l-section.white-block.with-shape .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::after {
    left: -70px;
    top: -220px;
    bottom: initial;
  }
}
body .l-section.white-block.with-shape .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::before, body .l-section.white-block.with-shape .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 182 650"><circle fill="none" stroke="%23E6DED3" stroke-width="2" cx="91" cy="91" r="90"/><rect fill="none" stroke="%23E6DED3" stroke-width="2" x="1" y="199" width="180" height="450" rx="90" ry="90"/></svg>');
  opacity: 0.5;
}
body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
  padding: 4rem 8rem;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: var(--color-content-primary);
  color: var(--color-content-bg);
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    padding: 3rem 6rem;
  }
}
@media (max-width: 480px) {
  body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    padding: 1.75rem;
  }
}
@media (max-width: 480px) {
  body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    border-top-left-radius: 40px;
  }
}
@media (max-width: 480px) {
  body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    border-bottom-right-radius: 40px;
  }
}
body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper > div {
  z-index: 1;
  position: relative;
}
@media (min-width: 767px) {
  body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper .wpb_row > .vc_column_container:first-child {
    border-right: 1px solid #46464A;
  }
}
@media (max-width: 767px) {
  body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper .wpb_row > .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper {
    border-bottom: 1px solid #46464A;
    padding-bottom: 2.5rem;
  }
}
@media (max-width: 480px) {
  body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::before, body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::after {
    display: none;
  }
}
body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::before, body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 600px;
  background-repeat: no-repeat;
  background-size: 100%;
  opacity: 0.1;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 182 650"><circle fill="none" stroke="white" stroke-width="2" cx="91" cy="91" r="90"/><rect fill="none" stroke="white" stroke-width="2" x="1" y="199" width="180" height="450" rx="90" ry="90"/></svg>');
}
@media (max-width: 767px) {
  body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::before, body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::after {
    width: 140px;
  }
}
body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::before {
  right: -90px;
  top: 12%;
}
@media (max-width: 767px) {
  body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::before {
    right: -70px;
    bottom: -220px;
    top: initial;
  }
}
body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::after {
  left: -90px;
  bottom: 12%;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}
@media (max-width: 767px) {
  body .l-section.dark-block .l-section-h > .g-cols > .vc_column_container > .vc_column-inner > .wpb_wrapper::after {
    left: -70px;
    top: -220px;
    bottom: initial;
  }
}

.max-width-1 {
  max-width: 700px;
}

.max-width-2 {
  max-width: 850px;
}

.max-width-3 {
  max-width: 1000px;
}

@media (min-width: 900px) {
  .hero .vc_row > .vc_column_container > .vc_column-inner > .wpb_wrapper {
    padding-right: 0 !important;
  }
}
.hero .wpb_row {
  flex-wrap: nowrap;
}
@media (max-width: 900px) {
  .hero .wpb_row {
    flex-direction: column-reverse;
  }
}
.hero .wpb_row .vc_column_container:first-child {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  min-width: 27rem;
  width: 55%;
}
@media (max-width: 900px) {
  .hero .wpb_row .vc_column_container:first-child {
    min-width: 100%;
    width: 100%;
  }
}
.hero .wpb_row .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
@media (max-width: 900px) {
  .hero .wpb_row .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper {
    padding-bottom: 0;
    padding-top: 0;
    margin-top: -1.5rem;
  }
}
@media (max-width: 480px) {
  .hero .wpb_row .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper h1 {
    font-size: 8vw;
  }
}
.hero .wpb_row .vc_column_container:last-child {
  width: initial;
  z-index: 0;
  flex-grow: 1;
}
@media (min-width: 900px) {
  .hero .wpb_row .vc_column_container:last-child {
    margin-left: -8rem;
  }
}
.hero .wpb_row .vc_column_container:last-child .wpb_wrapper {
  height: 100%;
  display: flex;
}
@media (max-width: 900px) {
  .hero .wpb_row .vc_column_container:last-child .wpb_wrapper {
    margin-left: -3rem;
    margin-right: -3rem;
  }
}
@media (max-width: 900px) and (max-width: 767px) {
  .hero .wpb_row .vc_column_container:last-child .wpb_wrapper {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
@media (max-width: 900px) and (max-width: 480px) {
  .hero .wpb_row .vc_column_container:last-child .wpb_wrapper {
    margin-left: -1.2rem;
    margin-right: -1.2rem;
  }
}
.hero .wpb_row .vc_column_container:last-child .wpb_wrapper .w-image {
  display: flex;
}
@media (max-width: 900px) {
  .hero .wpb_row .vc_column_container:last-child .wpb_wrapper .w-image {
    padding-bottom: 65%;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .hero .wpb_row .vc_column_container:last-child .wpb_wrapper .w-image {
    padding-bottom: 80%;
  }
}
.hero .wpb_row .vc_column_container:last-child .wpb_wrapper .w-image::before {
  content: "";
  position: absolute;
  -webkit-background-image: linear-gradient(90deg, rgba(244, 238, 230, 0.7) 0%, rgba(244, 238, 230, 0) 100%);
  background-image: linear-gradient(90deg, rgba(244, 238, 230, 0.7) 0%, rgba(244, 238, 230, 0) 100%);
  -moz-background-image: linear-gradient(90deg, rgba(244, 238, 230, 0.7) 0%, rgba(244, 238, 230, 0) 100%);
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero .wpb_row .vc_column_container:last-child .wpb_wrapper .w-image::before {
    width: initial;
    height: 70%;
    bottom: 0;
    left: -2rem;
    right: 0;
    top: initial;
    -webkit-background-image: linear-gradient(0deg, rgba(244, 238, 230, 0.85) 0%, rgba(244, 238, 230, 0) 100%);
    background-image: linear-gradient(0deg, rgba(244, 238, 230, 0.85) 0%, rgba(244, 238, 230, 0) 100%);
    -moz-background-image: linear-gradient(0deg, rgba(244, 238, 230, 0.85) 0%, rgba(244, 238, 230, 0) 100%);
  }
}
@media (max-width: 900px) {
  .hero .wpb_row .vc_column_container:last-child .wpb_wrapper .w-image .w-image-h {
    position: absolute;
    height: 100%;
  }
}
.hero .wpb_row .vc_column_container:last-child .wpb_wrapper .w-image img {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .bloc-image-gauche {
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  .bloc-image-gauche .vc_column_container {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .bloc-image-gauche .vc_column_container:first-child {
    margin-bottom: 2.5rem;
  }
}
.bloc-image-gauche .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper {
  position: relative;
  height: 100%;
}
@media (min-width: 900px) {
  .bloc-image-gauche .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper {
    min-height: 500px;
  }
}
@media (max-width: 900px) {
  .bloc-image-gauche .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper {
    margin-left: -3rem;
    margin-right: -3rem;
  }
}
@media (max-width: 900px) and (max-width: 767px) {
  .bloc-image-gauche .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
@media (max-width: 900px) and (max-width: 480px) {
  .bloc-image-gauche .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper {
    margin-left: -1.2rem;
    margin-right: -1.2rem;
  }
}
.bloc-image-gauche .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper .w-image {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: initial;
}
@media (min-width: 900px) {
  .bloc-image-gauche .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper .w-image {
    position: absolute;
    bottom: 0;
    top: 0;
    left: -3rem;
    right: 1.5rem;
  }
}
@media (min-width: 900px) {
  .bloc-image-gauche .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper .w-image .w-image-h {
    height: 15rem;
    flex-grow: 1;
  }
}
@media (max-width: 767px) {
  .bloc-image-gauche .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper .w-image .w-image-h {
    padding-top: 100%;
  }
}
.bloc-image-gauche .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper .w-image .w-image-h img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .bloc-image-gauche .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper .w-image .w-image-h img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (min-width: 900px) {
  .bloc-image-gauche .vc_column_container:last-child > .vc_column-inner > .wpb_wrapper {
    padding-top: 3rem;
  }
}

@media (max-width: 900px) {
  .bloc-image-droite {
    flex-direction: column;
  }
}
@media (max-width: 900px) {
  .bloc-image-droite .vc_column_container {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .bloc-image-droite .vc_column_container:last-child {
    order: -1;
  }
}
@media (min-width: 900px) {
  .bloc-image-droite .vc_column_container:last-child > .vc_column-inner > .wpb_wrapper .w-image {
    right: -3rem !important;
    left: 1.5rem !important;
  }
}
@media (max-width: 900px) {
  .bloc-image-droite .vc_column_container:last-child {
    margin-bottom: 2.5rem;
  }
}
.bloc-image-droite .vc_column_container:last-child > .vc_column-inner > .wpb_wrapper {
  position: relative;
  height: 100%;
}
@media (min-width: 900px) {
  .bloc-image-droite .vc_column_container:last-child > .vc_column-inner > .wpb_wrapper {
    min-height: 500px;
  }
}
@media (max-width: 900px) {
  .bloc-image-droite .vc_column_container:last-child > .vc_column-inner > .wpb_wrapper {
    margin-left: -3rem;
    margin-right: -3rem;
  }
}
@media (max-width: 900px) and (max-width: 767px) {
  .bloc-image-droite .vc_column_container:last-child > .vc_column-inner > .wpb_wrapper {
    margin-left: -2rem;
    margin-right: -2rem;
  }
}
@media (max-width: 900px) and (max-width: 480px) {
  .bloc-image-droite .vc_column_container:last-child > .vc_column-inner > .wpb_wrapper {
    margin-left: -1.2rem;
    margin-right: -1.2rem;
  }
}
.bloc-image-droite .vc_column_container:last-child > .vc_column-inner > .wpb_wrapper .w-image {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: initial;
}
@media (min-width: 900px) {
  .bloc-image-droite .vc_column_container:last-child > .vc_column-inner > .wpb_wrapper .w-image {
    position: absolute;
    bottom: 0;
    top: 0;
    left: -3rem;
    right: 1.5rem;
  }
}
@media (min-width: 900px) {
  .bloc-image-droite .vc_column_container:last-child > .vc_column-inner > .wpb_wrapper .w-image .w-image-h {
    height: 15rem;
    flex-grow: 1;
  }
}
@media (max-width: 767px) {
  .bloc-image-droite .vc_column_container:last-child > .vc_column-inner > .wpb_wrapper .w-image .w-image-h {
    padding-top: 100%;
  }
}
.bloc-image-droite .vc_column_container:last-child > .vc_column-inner > .wpb_wrapper .w-image .w-image-h img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .bloc-image-droite .vc_column_container:last-child > .vc_column-inner > .wpb_wrapper .w-image .w-image-h img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (min-width: 900px) {
  .bloc-image-droite .vc_column_container:first-child > .vc_column-inner > .wpb_wrapper {
    padding-top: 3rem;
  }
}

.hero-text::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 230px;
  height: 800px;
  right: -115px;
  top: -180px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 182 650"><circle fill="none" stroke="%23E6DED3" stroke-width="2" cx="91" cy="91" r="90"/><rect fill="none" stroke="%23E6DED3" stroke-width="2" x="1" y="199" width="180" height="450" rx="90" ry="90"/></svg>');
  z-index: 0;
}
@media (max-width: 600px) {
  .hero-text::after {
    height: 620px;
  }
}
.hero-text .l-section-h {
  z-index: 1;
}

.title-bar + .l-section {
  padding-top: 0 !important;
}

.l-main > section:last-child {
  border-bottom-right-radius: 0 !important;
}

.contact-container {
  flex-wrap: nowrap !important;
}
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
}
@media (min-width: 767px) and (max-width: 900px) {
  .contact-container {
    gap: 2rem;
  }
}
@media (min-width: 767px) {
  .contact-container .vc_column_container:last-child {
    width: 15rem;
    flex-shrink: 0;
  }
}
.contact-container .vc_column_container:last-child a {
  font-weight: 700;
}
.contact-container .vc_column_container:last-child .wpb_text_column p {
  margin-bottom: 1rem;
}
.contact-container .vc_column_container:first-child {
  width: initial;
}
@media (min-width: 900px) {
  .contact-container .vc_column_container:first-child .vc_column-inner > .wpb_wrapper {
    padding-right: 3rem;
    border-right: 1px solid var(--color-content-border);
  }
}
.contact-container .w-socials-list {
  display: flex;
  margin-top: 1.5rem;
}
.contact-container .w-socials-list a {
  font-size: 2rem;
}

.cta-meet .vc_column-inner > .wpb_wrapper {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
@media (max-width: 1024px) {
  .cta-meet .vc_column-inner > .wpb_wrapper {
    gap: 1.75rem;
  }
}
@media (max-width: 767px) {
  .cta-meet .vc_column-inner > .wpb_wrapper {
    gap: 1.75rem;
  }
}
@media (max-width: 480px) {
  .cta-meet .vc_column-inner > .wpb_wrapper {
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cta-meet .vc_column-inner > .wpb_wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.cta-meet .vc_column-inner > .wpb_wrapper .w-vwrapper {
  flex-grow: 1;
}
.cta-meet .vc_column-inner > .wpb_wrapper .w-vwrapper > .wpb_text_column {
  margin-bottom: 0;
}
.cta-meet .vc_column-inner > .wpb_wrapper .w-btn-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 3rem;
  border-left: 1px solid var(--color-alt-content-border);
}
@media (max-width: 767px) {
  .cta-meet .vc_column-inner > .wpb_wrapper .w-btn-wrapper {
    border-left: none;
    padding-left: 0;
  }
}
.cta-meet .vc_column-inner > .wpb_wrapper .w-iconbox {
  align-items: center;
  margin-top: 1.75rem;
}
@media (max-width: 1024px) {
  .cta-meet .vc_column-inner > .wpb_wrapper .w-iconbox {
    margin-top: 1.75rem;
  }
}
@media (max-width: 767px) {
  .cta-meet .vc_column-inner > .wpb_wrapper .w-iconbox {
    margin-top: 1.75rem;
  }
}
@media (max-width: 480px) {
  .cta-meet .vc_column-inner > .wpb_wrapper .w-iconbox {
    margin-top: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cta-meet .vc_column-inner > .wpb_wrapper .w-iconbox {
    flex-direction: column;
  }
}
.cta-meet .vc_column-inner > .wpb_wrapper .w-iconbox .w-iconbox-title {
  font-weight: 700;
  margin-bottom: 0.25rem;
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
}
@media (max-width: 600px) {
  .cta-meet .vc_column-inner > .wpb_wrapper .w-iconbox .w-iconbox-title {
    font-size: var(--h6-font-size);
    line-height: var(--h6-line-height);
  }
}
.cta-meet .vc_column-inner > .wpb_wrapper .w-iconbox .w-iconbox-icon {
  margin-bottom: 0;
  margin-right: 1.5rem;
  border-radius: 300px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cta-meet .vc_column-inner > .wpb_wrapper .w-iconbox .w-iconbox-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.cta-meet .vc_column-inner > .wpb_wrapper .w-iconbox .w-iconbox-icon img {
  width: 7rem;
  height: 7rem;
}
@media (max-width: 767px) {
  .cta-meet .vc_column-inner > .wpb_wrapper .w-iconbox .w-iconbox-icon img {
    width: 6rem;
    height: 6rem;
  }
}

.single-post .article-content .tag-style {
  display: flex;
  margin-bottom: 0.5rem;
}
.single-post .article-content .tag-style a {
  font-size: 0.8rem;
  line-height: 1.3rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem 0.15rem;
  border-radius: 5px;
  border: 1px solid;
  font-size: var(--font-size);
  line-height: var(--line-height);
  padding: 0.1rem 0.6rem 0.15rem;
}
.single-post .article-content .tag-style a.term-entreprise {
  color: #7830A4;
  border-color: rgba(120, 48, 164, 0.2);
  background-color: #F3E4FB;
}
.single-post .article-content .tag-style a.term-candidat {
  color: #377B71;
  border-color: rgba(55, 123, 113, 0.2);
  background-color: #E9F6F4;
}
.single-post .article-content .post_title {
  margin-bottom: 1rem;
}
.single-post .article-content .w-hwrapper {
  color: #89898C;
  column-gap: 2rem;
  flex-wrap: wrap;
  row-gap: 0.5rem;
}
.single-post .article-content .post_image {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 480px) {
  .single-post .article-content .post_image {
    border-top-left-radius: 40px;
  }
}
@media (max-width: 480px) {
  .single-post .article-content .post_image {
    border-bottom-right-radius: 40px;
  }
}
.single-post .article-content .post_image::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 110%;
  max-height: 800px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 1;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 182 650"><circle fill="none" stroke="white" stroke-width="2" cx="91" cy="91" r="90"/><rect fill="none" stroke="white" stroke-width="2" x="1" y="199" width="180" height="450" rx="90" ry="90"/></svg>');
}
.single-post .article-content .post_image::after {
  right: -150px;
  top: 22%;
}
.single-post .article-content .post_content h2 {
  font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
  margin-bottom: var(--h3-margin-bottom);
}
@media (max-width: 767px) {
  .single-post .article-content .post_content h2 {
    font-size: var(--h4-font-size);
    line-height: var(--h4-line-height);
    margin-bottom: var(--h4-margin-bottom);
  }
}
.single-post .article-content .post_content h3 {
  font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
  margin-bottom: var(--h4-margin-bottom);
}
@media (max-width: 767px) {
  .single-post .article-content .post_content h3 {
    font-size: var(--h5-font-size);
    line-height: var(--h5-line-height);
    margin-bottom: var(--h5-margin-bottom);
  }
}
.single-post .article-content .post_content h4 {
  font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
}
.key-figures {
  display: none;
}
@media (min-width: 767px) {
  .key-figures .wpb_row .vc_column_container:not(:last-child) {
    border-right: 1px solid var(--color-alt-content-border);
  }
}
@media (max-width: 767px) {
  .key-figures .wpb_row .vc_column_container:not(:last-child) {
    margin: 0 0 1.5rem !important;
  }
  .key-figures .wpb_row .vc_column_container:not(:last-child) .vc_column-inner > .wpb_wrapper {
    border-bottom: 1px solid var(--color-alt-content-border);
    padding-bottom: 1.5rem;
  }
}
@media (max-width: 767px) {
  .key-figures .wpb_row .vc_column_container:last-child .vc_column-inner > .wpb_wrapper {
    padding-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .key-figures .wpb_row .vc_column_container .vc_column-inner > .wpb_wrapper {
    max-width: 20rem;
    margin: auto;
  }
}
.key-figures .wpb_row .vc_column_container .wpb_text_column h3 {
  font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
  margin-bottom: var(--h1-margin-bottom);
  margin-bottom: 0.75rem !important;
}
@media (max-width: 767px) {
  .key-figures .wpb_row .vc_column_container .wpb_text_column h3 {
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
    margin-bottom: var(--h2-margin-bottom);
  }
}
@media (max-width: 600px) {
  .key-figures .wpb_row .vc_column_container .wpb_text_column h3 {
    font-size: 2rem;
  }
}
@media (max-width: 1024px) {
  .key-figures .wpb_row .vc_column_container .wpb_text_column h3 {
    font-size: var(--h2-font-size);
    line-height: var(--h2-line-height);
    margin-bottom: var(--h2-margin-bottom);
  }
}
@media (max-width: 1024px) and (max-width: 767px) {
  .key-figures .wpb_row .vc_column_container .wpb_text_column h3 {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
    margin-bottom: var(--h3-margin-bottom);
  }
}

.contact-lp .l-section-h {
  max-width: 850px;
}

.jobs-list ul {
  columns: 3;
  column-gap: 3rem;
  margin-top: -0.5rem;
}
@media (max-width: 1024px) {
  .jobs-list ul {
    columns: 2;
  }
}
@media (max-width: 600px) {
  .jobs-list ul {
    columns: 1;
  }
}
.jobs-list ul li {
  padding: 0.5rem 0 0;
  margin-bottom: 0;
  font-weight: 700;
}
.jobs-list ul li::marker {
  color: var(--color-content-secondary);
}

@media (min-width: 767px) {
  .hero.landing-page .intro {
    padding-right: 8rem;
  }
}

.liste-ville .jobs-list ul {
  columns: 1;
}
.liste-ville .jobs-list ul li:nth-child(n+5) {
  display: none;
}

@media (max-width: 767px) {
  .single-offre-emploi .top-offer .w-hwrapper {
    flex-direction: column;
    font-size: 0.9rem;
    line-height: 1.4rem;
  }
}
@media (min-width: 767px) {
  .single-offre-emploi .top-offer .w-hwrapper .published::after {
    content: " • ";
    margin-right: 5px;
  }
}
.single-offre-emploi .top-offer .w-hwrapper .updated {
  color: #89898C;
}
.single-offre-emploi .resume .w-vwrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 3rem;
}
@media (max-width: 767px) {
  .single-offre-emploi .resume .w-vwrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.single-offre-emploi .resume .w-vwrapper .post_taxonomy,
.single-offre-emploi .resume .w-vwrapper .w-hwrapper {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-alt-content-border);
  font-size: 0.9rem;
  line-height: 1.4rem;
}
@media (max-width: 767px) {
  .single-offre-emploi .resume .w-vwrapper .post_taxonomy,
  .single-offre-emploi .resume .w-vwrapper .w-hwrapper {
    font-size: 0.8rem;
    line-height: 1.3rem;
  }
}
.single-offre-emploi .resume .w-vwrapper .post_taxonomy .w-post-elm-before,
.single-offre-emploi .resume .w-vwrapper .w-hwrapper .w-post-elm-before {
  font-weight: 700;
}
.single-offre-emploi .resume .w-vwrapper .post_taxonomy i,
.single-offre-emploi .resume .w-vwrapper .w-hwrapper i {
  color: var(--color-content-secondary);
  width: 1.25rem;
  height: 1.25rem;
  text-align: center;
  line-height: 1.5rem;
  font-size: 1rem;
  margin-right: 0.5rem;
}
@media (max-width: 767px) {
  .single-offre-emploi .resume .w-vwrapper .post_taxonomy i,
  .single-offre-emploi .resume .w-vwrapper .w-hwrapper i {
    width: 1rem;
    height: 1rem;
    line-height: 1.3rem;
    font-size: 0.9rem;
  }
}
.single-offre-emploi .resume .w-vwrapper .post_taxonomy:last-child,
.single-offre-emploi .resume .w-vwrapper .w-hwrapper:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
@media (min-width: 767px) {
  .single-offre-emploi .resume .w-vwrapper .post_taxonomy:nth-last-child(2),
  .single-offre-emploi .resume .w-vwrapper .w-hwrapper:nth-last-child(2) {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
.single-offre-emploi .resume .w-vwrapper .w-hwrapper > .salaire_max > .w-post-elm-before {
  font-weight: 400;
  padding-left: 0.2rem;
}
.single-offre-emploi .bottom-offer-links {
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 767px) {
  .single-offre-emploi .bottom-offer-links {
    flex-direction: column;
    gap: 1rem;
  }
}
@media (min-width: 767px) {
  .single-offre-emploi .bottom-offer-links .w-btn-wrapper:last-child {
    position: absolute;
    left: 0;
  }
}
.single-offre-emploi .bottom-offer-links .w-btn-wrapper:last-child .us-btn-style_2 {
  background-color: #E6DED3;
  color: var(--color-content-primary) !important;
  border: none;
}
.single-offre-emploi .bottom-offer-links .w-btn-wrapper:last-child .us-btn-style_2::before {
  display: none;
}
.single-offre-emploi .bottom-offer-links .w-btn-wrapper:last-child .us-btn-style_2:hover {
  background-color: var(--color-content-secondary);
  color: white !important;
}

.offers-container .w-filter.for_grid {
  margin-left: -1rem;
  margin-right: -1rem;
  margin-bottom: 0;
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list {
  grid-template-columns: repeat(3, 1fr);
  display: grid;
  gap: 1.5rem 1rem;
}
@media (max-width: 1024px) {
  .offers-container .w-filter.for_grid.state_desktop .w-filter-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item .w-filter-item-title {
  padding: 0 1rem;
  padding-left: 2.75rem;
  border: none;
  position: relative;
  border-radius: 0;
  background-color: transparent;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  height: 3rem;
  box-shadow: none;
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item .w-filter-item-title > span {
  display: none !important;
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item .w-filter-item-title::before {
  border-bottom: 1px solid #B3A391;
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item .w-filter-item-title::after {
  margin: 0;
  top: 1.25rem;
  right: 1rem;
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item .w-filter-item-content {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 1rem;
  background-color: white;
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item .w-filter-item-content .w-filter-item-values {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item .w-filter-item-content .w-filter-item-values .w-filter-item-value {
  margin-bottom: 0;
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item .w-filter-item-content .w-filter-item-values .w-filter-item-value .w-filter-item-value-label {
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-weight: 400;
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item .w-filter-item-content .w-filter-item-values .w-filter-item-value .w-filter-item-value-amount {
  color: #89898C;
  font-size: 0.9rem;
  line-height: 1.4rem;
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item .w-filter-item-content .w-filter-item-values .w-filter-item-value .w-filter-item-value-amount::before {
  content: "(";
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item .w-filter-item-content .w-filter-item-values .w-filter-item-value .w-filter-item-value-amount::after {
  content: ")";
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item .w-filter-item-content .w-filter-item-values .w-filter-item-value input[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.6rem;
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item.dropped .w-filter-item-title {
  background-color: white;
  box-shadow: var(--box-shadow);
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item.dropped .w-filter-item-title::before {
  left: 0;
  right: 0;
  border-bottom: 1px solid var(--color-alt-content-border) !important;
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item.has_value .w-filter-item-title {
  font-weight: 700;
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item.has_value .w-filter-item-title::before {
  border-bottom: 2px solid var(--color-content-secondary);
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item::before {
  font-family: "fontawesome";
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  color: var(--color-content-secondary);
  z-index: 1;
  font-weight: 400;
  width: 1.2rem;
  text-align: center;
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item[data-source="tax|domaine"]::before {
  content: "\f0b1";
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item[data-source="tax|ville"]::before {
  content: "\f3c5";
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item[data-source="tax|type-de-contrat"]::before {
  content: "\f15c";
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item[data-source="cf|salaire_max"]::before {
  content: "\f153";
}
.offers-container .w-filter.for_grid.state_desktop .w-filter-list .w-filter-item[data-source="tax|region"]::before {
  content: "\f0ac";
}
.offers-container .w-filter.for_grid.state_mobile {
  margin: 0;
}
.offers-container .w-filter.for_grid.state_mobile.is-sticky {
  position: fixed;
  top: 10px;
  left: 1.4rem;
  z-index: 10;
}
.offers-container .w-filter.for_grid.state_mobile .w-filter-list {
  padding: 1.5rem;
  flex-direction: column;
  gap: 1.5rem;
  bottom: 5rem;
  background-color: white;
}
.offers-container .w-filter.for_grid.state_mobile .w-filter-list .w-filter-list-title {
  font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
  margin-bottom: var(--h2-margin-bottom);
  font-weight: 700;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .offers-container .w-filter.for_grid.state_mobile .w-filter-list .w-filter-list-title {
    font-size: var(--h3-font-size);
    line-height: var(--h3-line-height);
    margin-bottom: var(--h3-margin-bottom);
  }
}
.offers-container .w-filter.for_grid.state_mobile .w-filter-list .w-filter-list-closer {
  right: 1.5rem;
  top: 1.5rem;
  background-color: var(--color-content-bg);
  border-radius: 100px;
  width: 2.75rem;
  height: 2.75rem;
  line-height: 2.2rem;
  font-size: 1.25rem;
  z-index: 12;
}
.offers-container .w-filter.for_grid.state_mobile .w-filter-list .w-filter-item {
  margin-bottom: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-alt-content-border);
}
.offers-container .w-filter.for_grid.state_mobile .w-filter-list .w-filter-item .w-filter-item-title {
  font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
  margin-bottom: 0.75rem;
}
.offers-container .w-filter.for_grid.state_mobile .w-filter-list-panel {
  height: 5rem;
  padding: 1rem;
  box-shadow: none;
  border: none;
  background-color: white;
}
.offers-container .w-filter.for_grid.state_mobile .w-filter-list-panel .w-btn {
  line-height: 1.1rem !important;
}
.offers-container .w-filter.for_grid.state_mobile.open .w-filter-list {
  display: flex;
}
.offers-container .w-filter.for_grid.state_mobile.open .w-filter-list-panel {
  display: flex;
}
.offers-container .w-filter.for_grid.state_mobile .w-filter-opener {
  padding: 0.6rem 1.2rem;
  width: 100%;
  flex-shrink: 0;
  display: flex;
}
.offers-container .w-filter.for_grid .w-filter-list .ui-slider {
  height: 24px;
}
.offers-container .w-filter.for_grid .w-filter-list .ui-slider::before {
  border: none;
  background-color: var(--color-content-secondary);
}
.offers-container .w-filter.for_grid .w-filter-list .ui-slider:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 5px;
  background-color: #E6DED3;
  right: -12px;
  border-radius: 100px;
  margin: auto;
  top: 0;
  bottom: 0;
}
.offers-container .w-filter.for_grid .w-filter-list .ui-slider .ui-slider-handle {
  background-color: var(--color-content-secondary);
  border: none;
  width: 24px;
  height: 24px;
}
.offers-container .w-filter.for_grid .w-filter-list .ui-slider .ui-slider-range {
  background-color: #E6DED3;
  border: none;
}
.offers-container .w-filter.for_grid .w-filter-list .w-filter-item-slider-result .for_max_value {
  display: none;
}
.offers-container .w-filter.for_grid .w-filter-list .w-filter-item-slider-result .for_min_value::after {
  content: " €";
}
.offers-container .w-order {
  background-color: white;
  align-self: end;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  width: initial !important;
  font-size: 0.9rem;
  line-height: 1.4rem;
  gap: 0.25rem;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .offers-container .w-order {
    flex-direction: column;
    align-items: flex-end;
    width: 100% !important;
    background-color: transparent;
    padding: 0;
  }
}
.offers-container .w-order .w-order-label::before {
  content: "\f161";
  font-family: "fontawesome";
  color: var(--color-content-secondary);
  margin-right: 0.5rem;
}
.offers-container .w-order .w-order-select {
  display: flex;
  align-items: center;
  flex-grow: 0 !important;
  width: initial;
  gap: 0.5rem;
}
.offers-container .w-order .w-order-select select {
  padding: 0;
  border: none;
  background-color: transparent;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.4rem;
  height: var(--line-height);
  min-height: var(--line-height);
  -webkit-appearance: none;
}
.offers-container .w-order .w-order-select::after {
  margin: 0;
  top: 0.22rem;
  position: relative;
  content: "";
  inset-inline-end: 0;
  font-size: var(--inputs-font-size);
  color: var(--inputs-text-color);
  pointer-events: none;
  border: 0.4em solid;
  border-left-color: transparent;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 2px;
}

@media (max-width: 600px) {
  .filter-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 -1rem;
  }
  .filter-container .w-separator {
    display: none;
  }
}

.city-list ul {
  columns: 3;
  column-gap: 3rem;
  margin-top: -0.5rem;
}
@media (max-width: 1024px) {
  .city-list ul {
    columns: 2;
  }
}
@media (max-width: 600px) {
  .city-list ul {
    columns: 1;
  }
}
.city-list ul li {
  padding: 0.5rem 0 0;
  margin-bottom: 0;
  font-weight: 700;
}
.city-list ul li::marker {
  color: var(--color-content-secondary);
}

.contact-exp .vc_column-inner > .wpb_wrapper {
  max-width: 850px;
  margin: auto;
}

.grecaptcha-badge {
  display: none;
}

/*# sourceMappingURL=style.css.map */
