.btn {
  border-width: 2px;
}
body {
  font-family: Schibsted Grotesk;
}
.display-1 {
  font-family: 'Dancing Script', handwriting;
  font-size: 7.1rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8.875rem;
}
.display-2 {
  font-family: 'Dancing Script', handwriting;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.38rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.725rem;
}
.display-5 {
  font-family: 'Barlow Semi Condensed', sans-serif;
  font-size: 1.75rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-7 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.13rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.4125rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 5.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.97rem;
    font-size: calc( 3.135rem + (7.1 - 3.135) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.135rem + (7.1 - 3.135) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.104rem;
    font-size: calc( 1.133rem + (1.38 - 1.133) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.133rem + (1.38 - 1.133) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.904rem;
    font-size: calc( 1.0454999999999999rem + (1.13 - 1.0454999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0454999999999999rem + (1.13 - 1.0454999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #90afa1 !important;
}
.bg-success {
  background-color: #bdcdc6 !important;
}
.bg-info {
  background-color: #689681 !important;
}
.bg-warning {
  background-color: #c08598 !important;
}
.bg-danger {
  background-color: #33363b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #90afa1 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #618776 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #618776 !important;
  border-color: #618776 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #f1d788 !important;
  border: none  !important;
  color: #6d550d !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e8bd3a !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #6d550d !important;
  background-color: #e8bd3a !important;
  border-color: #e8bd3a !important;
}
.btn-info,
.btn-info:active {
  background-color: #689681 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #456355 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #456355 !important;
  border-color: #456355 !important;
}
.btn-success,
.btn-success:active {
  background-color: #bdcdc6 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #8ca89b !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #8ca89b !important;
  border-color: #8ca89b !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #c08598 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9d516a !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9d516a !important;
  border-color: #9d516a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #33363b !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0b0b0c !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0b0b0c !important;
  border-color: #0b0b0c !important;
}
.btn-white,
.btn-white:active {
  background-color: #efefef !important;
  border: none  !important;
  color: #707070 !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #ffffff !important;
  background-color: #c4c4c4 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #707070 !important;
  background-color: #c4c4c4 !important;
  border-color: #c4c4c4 !important;
}
.btn-black,
.btn-black:active {
  background-color: #010101 !important;
  border: none  !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-weight: 700 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border: none  !important;
  box-shadow: none !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #90afa1;
  color: #90afa1;
  border-radius: 0 !important;
}
.btn-primary-outline .mbr-iconfont,
.btn-primary-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #618776 !important;
  background-color: transparent!important;
  border-color: #618776 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #90afa1 !important;
  border-color: #90afa1 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #f1d788;
  color: #f1d788;
  border-radius: 0 !important;
}
.btn-secondary-outline .mbr-iconfont,
.btn-secondary-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #e8bd3a !important;
  background-color: transparent!important;
  border-color: #e8bd3a !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #6d550d !important;
  background-color: #f1d788 !important;
  border-color: #f1d788 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #689681;
  color: #689681;
  border-radius: 0 !important;
}
.btn-info-outline .mbr-iconfont,
.btn-info-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #456355 !important;
  background-color: transparent!important;
  border-color: #456355 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #689681 !important;
  border-color: #689681 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #bdcdc6;
  color: #bdcdc6;
  border-radius: 0 !important;
}
.btn-success-outline .mbr-iconfont,
.btn-success-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #8ca89b !important;
  background-color: transparent!important;
  border-color: #8ca89b !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #bdcdc6 !important;
  border-color: #bdcdc6 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #c08598;
  color: #c08598;
  border-radius: 0 !important;
}
.btn-warning-outline .mbr-iconfont,
.btn-warning-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #9d516a !important;
  background-color: transparent!important;
  border-color: #9d516a !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c08598 !important;
  border-color: #c08598 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #33363b;
  color: #33363b;
  border-radius: 0 !important;
}
.btn-danger-outline .mbr-iconfont,
.btn-danger-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0b0b0c !important;
  background-color: transparent!important;
  border-color: #0b0b0c !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #33363b !important;
  border-color: #33363b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #010101;
  color: #010101;
  border-radius: 0 !important;
}
.btn-black-outline .mbr-iconfont,
.btn-black-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #010101 !important;
  border-color: #010101 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  padding: 0 0.5rem 0 0 !important;
  background-color: transparent !important;
  min-height: auto !important;
  border: none;
  border-bottom: 2px solid #efefef;
  color: #efefef;
  border-radius: 0 !important;
}
.btn-white-outline .mbr-iconfont,
.btn-white-outline:active .mbr-iconfont {
  transition: 0.3s transform !important;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #c4c4c4 !important;
  background-color: transparent!important;
  border-color: #c4c4c4 !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #707070 !important;
  background-color: #efefef !important;
  border-color: #efefef !important;
}
.text-primary {
  color: #90afa1 !important;
}
.text-secondary {
  color: #f1d788 !important;
}
.text-success {
  color: #bdcdc6 !important;
}
.text-info {
  color: #689681 !important;
}
.text-warning {
  color: #c08598 !important;
}
.text-danger {
  color: #33363b !important;
}
.text-white {
  color: #FFFFFF !important;
}
.text-black {
  color: #24262b !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #5b7e6e !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #e6b82d !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #83a194 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #3e5a4d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #934c63 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #040404 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #bcbcbc !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #90afa1;
}
.nav-tabs .nav-link:not(.active) {
  color: #24262b;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #689681;
}
.alert-warning {
  background-color: #c08598;
}
.alert-danger {
  background-color: #33363b;
}
.mbr-gallery-filter li.active .btn {
  background-color: #90afa1;
  border-color: #90afa1;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #90afa1;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #dae4e0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #b3cac0;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ebd9df;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #a4a8b0;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.38rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.725rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #90afa1 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.38rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.725rem;
}
blockquote {
  border-color: #90afa1;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #90afa1;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #90afa1;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #90afa1;
  border-bottom-color: #90afa1;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #90afa1 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #f1d788 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2390afa1' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: .3s all;
  font-weight: 600 !important;
}
a:hover {
  background-image: none !important;
}
.container {
  position: relative;
  max-width: 1380px;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 540px;
  }
}
.container-fluid {
  max-width: 100%;
  padding-left: 6rem;
  padding-right: 6rem;
}
@media (max-width: 1399px) {
  .container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (max-width: 1199px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.row {
  margin-left: -16px;
  margin-right: -16px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 16px;
  padding-right: 16px;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 52px;
  padding: 10px 30px;
  border-radius: 3px;
  transition: all .3s;
}
.mbr-section-btn .btn .mbr-iconfont {
  transition: transform .3s;
}
.mbr-section-btn .btn:hover .mbr-iconfont {
  transform: translateX(0.5rem);
}
.mbr-section-btn .btn-danger,
.mbr-section-btn .btn-black {
  color: #FFFFFF;
}
.mbr-section-btn .btn-danger:hover,
.mbr-section-btn .btn-black:hover {
  color: #FFFFFF;
  background-color: #90afa1 !important;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn .btn-white-outline:hover {
  color: #90afa1 !important;
  border-color: #90afa1 !important;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tDSunbbdYc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-tDSunbbdYc nav.navbar {
  position: fixed;
}
.cid-tDSunbbdYc .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDSunbbdYc .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tDSunbbdYc .dropdown-item:hover,
.cid-tDSunbbdYc .dropdown-item:focus {
  color: #90afa1 !important;
}
.cid-tDSunbbdYc .dropdown-item:hover span {
  color: white;
}
.cid-tDSunbbdYc .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tDSunbbdYc .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tDSunbbdYc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tDSunbbdYc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tDSunbbdYc .nav-link {
  position: relative;
}
.cid-tDSunbbdYc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tDSunbbdYc .container {
    flex-wrap: nowrap;
  }
}
.cid-tDSunbbdYc .navbar-caption:hover,
.cid-tDSunbbdYc .navbar-caption:focus {
  color: #90afa1 !important;
}
.cid-tDSunbbdYc .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-tDSunbbdYc .navbar-nav .nav-item {
  color: #24262b;
}
.cid-tDSunbbdYc .navbar-nav .nav-item:hover {
  color: #90afa1;
}
.cid-tDSunbbdYc .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-tDSunbbdYc .navbar-nav .nav-item a:hover {
  color: #90afa1 !important;
}
.cid-tDSunbbdYc .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-tDSunbbdYc .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-tDSunbbdYc .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-tDSunbbdYc .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #90afa1 !important;
}
.cid-tDSunbbdYc .dropdown-menu,
.cid-tDSunbbdYc .navbar.opened {
  background: #ffffff !important;
}
.cid-tDSunbbdYc .nav-item:focus,
.cid-tDSunbbdYc .nav-link:focus {
  outline: none;
}
.cid-tDSunbbdYc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tDSunbbdYc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tDSunbbdYc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tDSunbbdYc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tDSunbbdYc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tDSunbbdYc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tDSunbbdYc .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-tDSunbbdYc .navbar.opened {
  transition: all 0.3s;
}
.cid-tDSunbbdYc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tDSunbbdYc .navbar .navbar-logo img {
  width: auto;
}
.cid-tDSunbbdYc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tDSunbbdYc .navbar.collapsed {
  justify-content: center;
}
.cid-tDSunbbdYc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tDSunbbdYc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tDSunbbdYc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-tDSunbbdYc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tDSunbbdYc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tDSunbbdYc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tDSunbbdYc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tDSunbbdYc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tDSunbbdYc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tDSunbbdYc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tDSunbbdYc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tDSunbbdYc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tDSunbbdYc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tDSunbbdYc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tDSunbbdYc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tDSunbbdYc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tDSunbbdYc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tDSunbbdYc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tDSunbbdYc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tDSunbbdYc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tDSunbbdYc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tDSunbbdYc .navbar.navbar-short {
  min-height: 70px;
}
.cid-tDSunbbdYc .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-tDSunbbdYc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tDSunbbdYc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tDSunbbdYc .dropdown-item.active,
.cid-tDSunbbdYc .dropdown-item:active {
  background-color: transparent;
}
.cid-tDSunbbdYc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tDSunbbdYc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tDSunbbdYc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tDSunbbdYc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tDSunbbdYc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tDSunbbdYc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tDSunbbdYc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tDSunbbdYc .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-tDSunbbdYc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tDSunbbdYc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tDSunbbdYc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tDSunbbdYc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDSunbbdYc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tDSunbbdYc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tDSunbbdYc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDSunbbdYc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tDSunbbdYc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tDSunbbdYc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tDSunbbdYc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tDSunbbdYc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tDSunbbdYc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tDSunbbdYc .navbar {
    height: 70px;
  }
  .cid-tDSunbbdYc .navbar.opened {
    height: auto;
  }
  .cid-tDSunbbdYc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tDSunbbdYc .container-fluid {
  padding: 0 1rem !important;
}
.cid-tDSunbbdYc .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-tDSunbbdYc .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-tDSunbbdYc .navbar-collapse {
    width: 100%;
  }
  .cid-tDSunbbdYc .navbar-nav {
    width: 100%;
  }
  .cid-tDSunbbdYc .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-tDSunpTzFY {
  padding-top: 10rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/site-maud.svg");
}
.cid-tDSunpTzFY .mbr-fallback-image.disabled {
  display: none;
}
.cid-tDSunpTzFY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .cid-tDSunpTzFY .col-content {
    text-align: center;
  }
}
.cid-tDSunpTzFY .label-text {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-tDSunpTzFY .mbr-section-title {
  color: #24262b;
}
.cid-tDSunpTzFY .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
}
.cid-tDSunpTzFY .mbr-section-btn {
  margin-top: 22px;
}
.cid-tDSunpTzFY .text-container {
  margin-top: 32px;
  row-gap: 32px;
}
.cid-tDSunpTzFY .text-item {
  border-top: 2px solid #33363b;
  padding-top: 1rem;
}
@media (max-width: 767px) {
  .cid-tDSunpTzFY .text-item {
    text-align: center;
  }
}
.cid-tDSunpTzFY .mbr-text {
  color: #24262b;
}
.cid-tDSunpTzFY .address-text {
  margin-top: 8px;
  color: #24262b;
}
.cid-v9lXWhjhJ4 {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v9lXWhjhJ4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9lXWhjhJ4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-v9lXWhjhJ4 .container {
    padding: 0 30px;
  }
}
.cid-v9lXWhjhJ4 .items-wrapper .item:first-child {
  position: relative;
}
.cid-v9lXWhjhJ4 .items-wrapper .item:first-child::before {
  content: '';
  position: absolute;
  top: -3rem;
  right: 2rem;
  width: 98px;
  height: 98px;
  border-radius: 100%;
  background-color: #f1d788;
  opacity: .9;
}
.cid-v9lXWhjhJ4 .items-wrapper .item:first-child .item-wrapper .item-content {
  position: relative;
  overflow: hidden;
}
.cid-v9lXWhjhJ4 .items-wrapper .item:first-child .item-wrapper .item-content::before {
  content: '';
  position: absolute;
  bottom: -131px;
  right: 4rem;
  width: 222px;
  height: 222px;
  border-radius: 100%;
  background-color: #cde2bb;
}
.cid-v9lXWhjhJ4 .items-wrapper .item:last-child {
  position: relative;
}
.cid-v9lXWhjhJ4 .items-wrapper .item:last-child::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 43%;
  width: 130px;
  height: 130px;
  border-radius: 100%;
  background-color: #f1d788;
  opacity: .9;
}
.cid-v9lXWhjhJ4 .items-wrapper .item:nth-child(2n) .item-wrapper {
  flex-direction: row;
}
.cid-v9lXWhjhJ4 .items-wrapper .item .item-wrapper {
  display: flex;
  flex-direction: row-reverse;
}
@media (max-width: 992px) {
  .cid-v9lXWhjhJ4 .items-wrapper .item .item-wrapper {
    display: block;
  }
}
.cid-v9lXWhjhJ4 .items-wrapper .item .item-wrapper .item-img {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v9lXWhjhJ4 .items-wrapper .item .item-wrapper .item-img {
    width: 100%;
  }
}
.cid-v9lXWhjhJ4 .items-wrapper .item .item-wrapper .item-img img {
  min-height: 630px;
  object-fit: cover;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v9lXWhjhJ4 .items-wrapper .item .item-wrapper .item-img img {
    min-height: auto;
    height: 350px;
  }
}
.cid-v9lXWhjhJ4 .items-wrapper .item .item-wrapper .card {
  justify-content: center;
}
.cid-v9lXWhjhJ4 .items-wrapper .item .item-wrapper .item-content {
  width: 50%;
  padding: 50px 110px;
  min-height: 100%;
}
@media (max-width: 992px) {
  .cid-v9lXWhjhJ4 .items-wrapper .item .item-wrapper .item-content {
    width: 100%;
    padding: 40px 0;
  }
}
.cid-v9lXWhjhJ4 .items-wrapper .item .item-wrapper .item-content .item-title {
  margin-bottom: 35px;
}
.cid-v9lXWhjhJ4 .items-wrapper .item .item-wrapper .item-content .item-text {
  margin-bottom: 25px;
}
.cid-v9lXWhjhJ4 .item-title {
  color: #144031;
}
.cid-v9lXWhjhJ4 .item-text {
  color: #000000;
}
.cid-v9lXWhjhJ4 .item-title,
.cid-v9lXWhjhJ4 .mbr-section-btn {
  color: #000000;
}
.cid-vaRb234s3P {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/trait-secretaire-independante-2000x81.webp");
}
.cid-vaRb234s3P .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRb234s3P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaRb234s3P .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-vaRb234s3P .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-vaRb234s3P .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-vaRb234s3P .wrapper {
  padding: 30px 0;
}
.cid-vaRb234s3P .mbr-section-title {
  color: #fafafa;
}
.cid-vaRb234s3P .mbr-text,
.cid-vaRb234s3P .mbr-section-btn {
  color: #ffffff;
}
.cid-vaRb234s3P H4 {
  color: #ffffff;
}
.cid-vaRb234s3P H3 {
  color: #000000;
}
.cid-v9lH3r7AJk {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v9lH3r7AJk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9lH3r7AJk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9lH3r7AJk .mbr-section-title {
  color: #24262b;
}
.cid-v9lH3r7AJk .mbr-section-subtitle {
  color: #24262b;
}
.cid-v9lH3r7AJk .mbr-section-btn {
  margin-top: 16px;
}
.cid-v9oOXilkBL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9oOXilkBL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9oOXilkBL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9oOXilkBL .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v9oOXilkBL .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-v9oOXilkBL .items-wrapper .item {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v9oOXilkBL .items-wrapper .item {
    margin-bottom: 30px;
  }
}
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-number_1,
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-number_2,
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-number_3,
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-number_4 {
  margin-bottom: 0;
}
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box {
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}
@media (max-width: 992px) {
  .cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box {
    padding: 30px 15px;
    min-height: auto;
  }
}
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box .title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box .title-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box .title-wrapper .card-title_1,
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box .title-wrapper .card-title_2,
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box .title-wrapper .card-title_3,
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box .title-wrapper .card-title_4 {
  margin-bottom: 0;
}
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box .title-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  margin-left: 20px;
}
@media (max-width: 1440px) {
  .cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box .title-wrapper .iconfont-wrapper .mbr-iconfont {
    margin-left: 0;
    margin-bottom: 15px;
  }
}
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box .text-wrapper .card-text_1,
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box .text-wrapper .card-text_2,
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box .text-wrapper .card-text_3,
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box .text-wrapper .card-text_4 {
  margin-bottom: 0;
}
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box .text-wrapper .mbr-section-btn {
  margin-top: 15px;
}
.cid-v9oOXilkBL .items-wrapper .item .item-wrapper .card-box .text-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v9oOXilkBL .items-wrapper .item .card_1 .card-box {
  background-color: #f1d788;
}
.cid-v9oOXilkBL .items-wrapper .item .card_1 .card-box .title-wrapper .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-v9oOXilkBL .items-wrapper .item .card_2 {
  padding-top: 7rem;
}
@media (max-width: 992px) {
  .cid-v9oOXilkBL .items-wrapper .item .card_2 {
    padding-top: 0;
  }
}
.cid-v9oOXilkBL .items-wrapper .item .card_2 .card-box {
  background-color: #a2c286;
}
.cid-v9oOXilkBL .items-wrapper .item .card_2 .card-box .title-wrapper .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-v9oOXilkBL .items-wrapper .item .card_3 {
  padding-top: 14rem;
}
@media (max-width: 992px) {
  .cid-v9oOXilkBL .items-wrapper .item .card_3 {
    padding-top: 0;
  }
}
.cid-v9oOXilkBL .items-wrapper .item .card_3 .card-box {
  background-color: #e4eedb;
}
.cid-v9oOXilkBL .items-wrapper .item .card_3 .card-box .title-wrapper .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-v9oOXilkBL .items-wrapper .item .card_4 {
  padding-top: 21rem;
}
@media (max-width: 992px) {
  .cid-v9oOXilkBL .items-wrapper .item .card_4 {
    padding-top: 0;
  }
}
.cid-v9oOXilkBL .items-wrapper .item .card_4 .card-box {
  background-color: #fdefc4;
}
.cid-v9oOXilkBL .items-wrapper .item .card_4 .card-box .title-wrapper .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-v9oOXilkBL .mbr-section-title {
  color: #ffffff;
}
.cid-v9oOXilkBL .card-number_1 {
  color: #000000;
}
.cid-v9oOXilkBL .card-number_2 {
  color: #000000;
}
.cid-v9oOXilkBL .card-number_3 {
  color: #000000;
}
.cid-v9oOXilkBL .card-number_4 {
  color: #000000;
}
.cid-v9oOXilkBL .card-title_1 {
  color: #000000;
}
.cid-v9oOXilkBL .card-title_2 {
  color: #000000;
}
.cid-v9oOXilkBL .card-title_3 {
  color: #000000;
}
.cid-v9oOXilkBL .card-title_4 {
  color: #000000;
}
.cid-v9oOXilkBL .card-text_1 {
  color: #000000;
}
.cid-v9oOXilkBL .card-text_2 {
  color: #000000;
}
.cid-v9oOXilkBL .card-text_3 {
  color: #000000;
}
.cid-v9oOXilkBL .card-text_4 {
  color: #000000;
}
.cid-v9lROmiKLn {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v9lROmiKLn .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9lROmiKLn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9lROmiKLn .mbr-section-title {
  color: #24262b;
}
.cid-v9lROmiKLn .mbr-section-subtitle {
  color: #24262b;
}
.cid-v9lROmiKLn .mbr-section-btn {
  margin-top: 16px;
}
.cid-v9BTr6rzQB {
  padding-top: 90px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/frise-site-secretaire-2000x198.webp");
}
.cid-v9BTr6rzQB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BTr6rzQB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BTr6rzQB .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-v9BTr6rzQB .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-v9BTr6rzQB .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-v9BTr6rzQB .wrapper {
  padding: 30px 0;
}
.cid-v9BTr6rzQB .mbr-section-title {
  color: #fafafa;
}
.cid-v9BTr6rzQB .mbr-text,
.cid-v9BTr6rzQB .mbr-section-btn {
  color: #ffffff;
}
.cid-v9BTr6rzQB H4 {
  color: #ffffff;
}
.cid-v9BTr6rzQB H3 {
  color: #000000;
}
.cid-v9lXIUnZ3i {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v9lXIUnZ3i .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9lXIUnZ3i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9lXIUnZ3i .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v9lXIUnZ3i .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-v9lXIUnZ3i .items-wrapper {
  margin: 0 -10px;
}
.cid-v9lXIUnZ3i .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v9lXIUnZ3i .item {
    margin-bottom: 16px;
  }
}
.cid-v9lXIUnZ3i .item:hover .item-wrapper .item-content .icon-wrapper,
.cid-v9lXIUnZ3i .item:focus .item-wrapper .item-content .icon-wrapper {
  transform: rotate(-25deg);
}
.cid-v9lXIUnZ3i .item:hover .item-wrapper .item-content .item-img,
.cid-v9lXIUnZ3i .item:focus .item-wrapper .item-content .item-img {
  opacity: 1;
  transform: scale(1);
}
.cid-v9lXIUnZ3i .item:nth-child(2n) .item-wrapper {
  background-color: #ffffff;
}
.cid-v9lXIUnZ3i .item:nth-child(3n) .item-wrapper {
  background-color: #e4eedb;
}
.cid-v9lXIUnZ3i .item:nth-child(4n) .item-wrapper {
  background-color: #ffffff;
}
.cid-v9lXIUnZ3i .item:nth-child(6n) .item-wrapper {
  background-color: #ffffff;
}
.cid-v9lXIUnZ3i .item .item-wrapper {
  height: 100%;
  position: relative;
  padding: 42px;
  background-color: #f1d788;
}
@media (max-width: 992px) {
  .cid-v9lXIUnZ3i .item .item-wrapper {
    padding: 46px 22px;
  }
}
.cid-v9lXIUnZ3i .item .item-wrapper .item-content {
  position: relative;
}
.cid-v9lXIUnZ3i .item .item-wrapper .item-content .icon-wrapper {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  margin-bottom: 22px;
}
.cid-v9lXIUnZ3i .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  color: #51565c;
}
.cid-v9lXIUnZ3i .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-v9lXIUnZ3i .item .item-wrapper .item-content .item-img {
  position: absolute;
  top: -205px;
  right: -105px;
  width: 250px;
  height: 250px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.5);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-v9lXIUnZ3i .item .item-wrapper .item-content .item-img {
    top: -55px;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 1;
    transform: none;
  }
}
.cid-v9lXIUnZ3i .item .item-wrapper .item-content .item-img img {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 992px) {
  .cid-v9lXIUnZ3i .item .item-wrapper .item-content .item-img img {
    width: 100px;
    height: 100px;
  }
}
.cid-v9lXIUnZ3i .item .item-wrapper .item-text {
  padding-top: 16px;
  margin-bottom: 0;
}
.cid-v9lXIUnZ3i .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-v9lXIUnZ3i .panel-title-edit {
  color: #212529;
}
.cid-v9lXIUnZ3i .panel-text {
  color: #51565c;
}
.cid-v9oV8d6Sg5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9oV8d6Sg5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9oV8d6Sg5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9oV8d6Sg5 .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-v9oV8d6Sg5 .items-wrapper .item {
  padding: 0 40px;
}
.cid-v9oV8d6Sg5 .item {
  margin-bottom: 40px;
}
.cid-v9oV8d6Sg5 .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-v9oV8d6Sg5 .item .item-wrapper .item-content .title-wrapper {
  margin-bottom: 20px;
}
.cid-v9oV8d6Sg5 .item .item-wrapper .item-content .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v9oV8d6Sg5 .item .item-wrapper .item-content .title-wrapper .title-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 20px;
  color: #19171c;
  margin-right: 10px;
}
.cid-v9oV8d6Sg5 .item .item-wrapper .item-content .title-wrapper .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-v9oV8d6Sg5 .item .item-wrapper .item-content .item-text {
  margin-bottom: 20px;
}
.cid-v9oV8d6Sg5 .item-title,
.cid-v9oV8d6Sg5 .title-wrapper {
  color: #19171c;
  text-align: center;
}
.cid-v9oV8d6Sg5 .item-text {
  color: #6e6e73;
  text-align: center;
}
.cid-v9oV8d6Sg5 .item-text,
.cid-v9oV8d6Sg5 .mbr-section-btn {
  text-align: center;
}
.cid-vaRbvfo02G {
  padding-top: 30px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/trait-secretaire-independante-2000x81.webp");
}
.cid-vaRbvfo02G .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRbvfo02G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaRbvfo02G .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-vaRbvfo02G .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-vaRbvfo02G .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-vaRbvfo02G .wrapper {
  padding: 30px 0;
}
.cid-vaRbvfo02G .mbr-section-title {
  color: #fafafa;
}
.cid-vaRbvfo02G .mbr-text,
.cid-vaRbvfo02G .mbr-section-btn {
  color: #ffffff;
}
.cid-vaRbvfo02G H4 {
  color: #ffffff;
}
.cid-vaRbvfo02G H3 {
  color: #000000;
}
.cid-v9HwpW2Zgu {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v9HwpW2Zgu .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v9HwpW2Zgu .mbr-section-title {
  color: #24262b;
}
.cid-v9HwpW2Zgu .mbr-section-subtitle {
  color: #24262b;
}
.cid-v9HwpW2Zgu .items-row {
  row-gap: 32px;
}
.cid-v9HwpW2Zgu .item {
  cursor: pointer;
}
.cid-v9HwpW2Zgu .item:focus,
.cid-v9HwpW2Zgu span:focus {
  outline: none;
}
.cid-v9HwpW2Zgu .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 0;
}
.cid-v9HwpW2Zgu .item-img {
  flex-shrink: 0;
  width: 100%;
}
.cid-v9HwpW2Zgu img {
  width: 100%;
  aspect-ratio: calc(305 / (67 * 4));
  object-fit: cover;
}
.cid-v9HwpW2Zgu .item-content {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-grow: 1;
  padding: 1.5rem 2rem;
  background: #f1d788;
}
.cid-v9HwpW2Zgu .item-title {
  color: #000000;
}
.cid-v9HwpW2Zgu .mbr-text {
  margin-top: 10px;
  color: #24262b;
}
.cid-v9HwpW2Zgu .mbr-section-btn {
  margin-top: 12px !important;
}
.cid-v9BTs6ozMr {
  padding-top: 90px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/frise-site-secretaire20copie-2000x217.webp");
}
.cid-v9BTs6ozMr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BTs6ozMr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BTs6ozMr .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-v9BTs6ozMr .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-v9BTs6ozMr .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-v9BTs6ozMr .wrapper {
  padding: 30px 0;
}
.cid-v9BTs6ozMr .mbr-section-title {
  color: #fafafa;
}
.cid-v9BTs6ozMr .mbr-text,
.cid-v9BTs6ozMr .mbr-section-btn {
  color: #ffffff;
}
.cid-v9BTs6ozMr H4 {
  color: #ffffff;
}
.cid-v9BTs6ozMr H3 {
  color: #000000;
}
.cid-vc2E6hDifv {
  padding-top: 30px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
.cid-vc2E6hDifv .mbr-section-title {
  color: #06182d;
}
.cid-vc2E6hDifv .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #689681;
  background: linear-gradient(#689681 0%, #689681 69%, #90afa1 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-vc2E6hDifv .mbr-section-subtitle {
  color: #06182d;
}
.cid-vc2E6hDifv .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-vc2E6hDifv .mbr-text {
  color: #689681;
  font-weight: 300;
}
.cid-vc2E6hDifv .title-text {
  margin-bottom: 70px;
}
.cid-vc2E6hDifv .title-text .mbr-section-subtitle {
  color: #06182d;
}
.cid-vc2E6hDifv .title-text .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-vc2E6hDifv .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-vc2E6hDifv .title-text .mbr-section-title {
  color: #f1d788;
}
.cid-vc2E6hDifv .title-text .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-vc2E6hDifv .title-text .mbr-section-title span {
  font-weight: 500;
}
.cid-vc2E6hDifv .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-vc2E6hDifv .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  font-size: 1.4rem !important;
  color: #f1d788;
}
.cid-vc2E6hDifv .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-vc2E6hDifv .p-4 {
  padding: 1rem 0 !important;
}
.cid-vc2E6hDifv .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-vc2E6hDifv .mbri-arrow-down:before {
  content: "\e960";
}
.cid-vc2E6hDifv .mbri-arrow-up:before {
  content: "\e960";
}
.cid-vc2E6hDifv .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-vc2E6hDifv .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-vc2E6hDifv .card {
  border-radius: 0px;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-vc2E6hDifv .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-vc2E6hDifv .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-vc2E6hDifv .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-vc2E6hDifv .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  border-bottom: 2px solid #689681;
  transition: all 0.3s;
  justify-content: space-between;
}
.cid-vc2E6hDifv .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #efefef;
}
.cid-vc2E6hDifv .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vc2E6hDifv .card .card-header a.panel-title h4 {
  padding: 0 0rem 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-vc2E6hDifv .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-vc2E6hDifv .card .card-header a.panel-title .toggle-icon {
  right: 14px;
  position: absolute;
  top: 20px;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 138, 0.4);
  padding: 13px;
}
.cid-vc2E6hDifv .card .card-header a.panel-title .toggle-icon:before,
.cid-vc2E6hDifv .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-vc2E6hDifv .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  transform: none;
}
.cid-vc2E6hDifv .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-vc2E6hDifv .card .panel-body {
  padding: 14px 20px;
}
.cid-vc2E6hDifv .card .panel-body p {
  color: #689681;
  line-height: 1.5;
}
.cid-vc2E6hDifv .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-vc2E6hDifv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vc2E6hDifv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vc2E6hDifv .title-text .mbr-section-title {
  color: #000000;
}
.cid-vc2E6hDifv .card .card-header a.panel-title h4 {
  color: #000000;
}
.cid-vc2E6hDifv .card .panel-body p {
  color: #000000;
}
.cid-v9HuR22gxT {
  padding-top: 75px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/frise-site-secretaire20copie202-2000x215.webp");
}
.cid-v9HuR22gxT .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9HuR22gxT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9HuR22gxT .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-v9HuR22gxT .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-v9HuR22gxT .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-v9HuR22gxT .wrapper {
  padding: 30px 0;
}
.cid-v9HuR22gxT .mbr-section-title {
  color: #fafafa;
}
.cid-v9HuR22gxT .mbr-text,
.cid-v9HuR22gxT .mbr-section-btn {
  color: #ffffff;
}
.cid-v9HuR22gxT H4 {
  color: #ffffff;
}
.cid-v9HuR22gxT H3 {
  color: #000000;
}
.cid-v9oNNVTgL7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9oNNVTgL7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9oNNVTgL7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9oNNVTgL7 .mbr-section-title {
  color: #24262b;
}
.cid-v9oNNVTgL7 .mbr-section-subtitle {
  color: #24262b;
}
.cid-v9oNNVTgL7 .mbr-section-btn {
  margin-top: 16px;
}
.cid-vc2sjvNgw9 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc2sjvNgw9 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vc2sjvNgw9 label {
  padding: 0 1rem;
}
.cid-vc2sjvNgw9 textarea {
  min-height: 150px;
}
.cid-vc2sjvNgw9 .btn {
  padding: 1rem 3rem;
}
@media (min-width: 992px) {
  .cid-vc2sjvNgw9 .image-wrapper {
    max-width: 80%;
  }
}
.cid-vc2sjvNgw9 .row {
  align-items: center;
}
.cid-vc2sjvNgw9 .form-control,
.cid-vc2sjvNgw9 .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cde2bb !important;
  border-radius: 0;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vc2sjvNgw9 .form-control::-webkit-input-placeholder,
.cid-vc2sjvNgw9 .field-input::-webkit-input-placeholder,
.cid-vc2sjvNgw9 .form-control::-webkit-input-placeholder,
.cid-vc2sjvNgw9 .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-vc2sjvNgw9 .form-control:-moz-placeholder,
.cid-vc2sjvNgw9 .field-input:-moz-placeholder,
.cid-vc2sjvNgw9 .form-control:-moz-placeholder,
.cid-vc2sjvNgw9 .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-vc2sjvNgw9 .form-control:hover,
.cid-vc2sjvNgw9 .field-input:hover,
.cid-vc2sjvNgw9 .form-control:focus,
.cid-vc2sjvNgw9 .field-input:focus {
  background-color: #fdefc4;
  border-color: #689681 !important;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-vc2sjvNgw9 .form-control:hover::-webkit-input-placeholder,
.cid-vc2sjvNgw9 .field-input:hover::-webkit-input-placeholder,
.cid-vc2sjvNgw9 .form-control:focus::-webkit-input-placeholder,
.cid-vc2sjvNgw9 .field-input:focus::-webkit-input-placeholder,
.cid-vc2sjvNgw9 .form-control:hover::-webkit-input-placeholder,
.cid-vc2sjvNgw9 .field-input:hover::-webkit-input-placeholder,
.cid-vc2sjvNgw9 .form-control:focus::-webkit-input-placeholder,
.cid-vc2sjvNgw9 .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-vc2sjvNgw9 .form-control:hover:-moz-placeholder,
.cid-vc2sjvNgw9 .field-input:hover:-moz-placeholder,
.cid-vc2sjvNgw9 .form-control:focus:-moz-placeholder,
.cid-vc2sjvNgw9 .field-input:focus:-moz-placeholder,
.cid-vc2sjvNgw9 .form-control:hover:-moz-placeholder,
.cid-vc2sjvNgw9 .field-input:hover:-moz-placeholder,
.cid-vc2sjvNgw9 .form-control:focus:-moz-placeholder,
.cid-vc2sjvNgw9 .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-vc2sjvNgw9 .jq-number__spin:hover,
.cid-vc2sjvNgw9 .jq-number__spin:focus {
  background-color: #fdefc4;
  border-color: #689681;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-vc2sjvNgw9 .jq-number__spin {
  background-color: #ffffff;
  border-color: #cde2bb;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vc2sjvNgw9 .jq-selectbox li,
.cid-vc2sjvNgw9 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-vc2sjvNgw9 .jq-selectbox li:hover,
.cid-vc2sjvNgw9 .jq-selectbox li.selected {
  background-color: #fdefc4;
  color: #000000;
}
.cid-vc2sjvNgw9 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-vc2sjvNgw9 .jq-number__spin.minus:hover:after,
.cid-vc2sjvNgw9 .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-vc2sjvNgw9 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-vc2sjvNgw9 .jq-number__spin.minus:after,
.cid-vc2sjvNgw9 .jq-number__spin.plus:after {
  border-top-color: #fdefc4;
  border-bottom-color: #fdefc4;
}
.cid-vc2sjvNgw9 input::-webkit-clear-button {
  display: none;
}
.cid-vc2sjvNgw9 input::-webkit-inner-spin-button {
  display: none;
}
.cid-vc2sjvNgw9 input::-webkit-outer-spin-button {
  display: none;
}
.cid-vc2sjvNgw9 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-vc2sjvNgw9 .wrapper {
  display: flex;
}
.cid-vc2sjvNgw9 .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #90afa1;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vc2sjvNgw9 .wrapper {
    flex-direction: column;
  }
  .cid-vc2sjvNgw9 .iconfont-wrapper {
    margin: auto;
  }
  .cid-vc2sjvNgw9 .mbr-iconfont {
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
}
.cid-vc2sjvNgw9 .mbr-section-title {
  color: #000000;
}
.cid-vaUIoUlKjI {
  padding-top: 90px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/vague-secretaire-independante-1-2000x358.webp");
}
.cid-vaUIoUlKjI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaUIoUlKjI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaUIoUlKjI .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-vaUIoUlKjI .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-vaUIoUlKjI .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-vaUIoUlKjI .wrapper {
  padding: 30px 0;
}
.cid-vaUIoUlKjI .mbr-section-title {
  color: #fafafa;
}
.cid-vaUIoUlKjI .mbr-text,
.cid-vaUIoUlKjI .mbr-section-btn {
  color: #ffffff;
}
.cid-vaUIoUlKjI H4 {
  color: #ffffff;
}
.cid-vaUIoUlKjI H3 {
  color: #000000;
}
.cid-vc2OJgKvww {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f1d788;
}
.cid-vc2OJgKvww .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-vc2OJgKvww .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-vc2OJgKvww .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-vc2OJgKvww .row {
    text-align: center;
  }
  .cid-vc2OJgKvww .row > div {
    margin: auto;
  }
  .cid-vc2OJgKvww .social-row {
    justify-content: center;
  }
}
.cid-vc2OJgKvww .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vc2OJgKvww .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-vc2OJgKvww .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vc2OJgKvww .list {
    margin-bottom: 0rem;
  }
}
.cid-vc2OJgKvww .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vc2OJgKvww .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vc2OJgKvww div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vc2OJgKvww .mbr-fallback-image.disabled {
  display: none;
}
.cid-vc2OJgKvww .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vc2OJgKvww .copyright {
  color: #000000;
}
.cid-v9Bi1fYaU4 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-v9Bi1fYaU4 nav.navbar {
  position: fixed;
}
.cid-v9Bi1fYaU4 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v9Bi1fYaU4 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v9Bi1fYaU4 .dropdown-item:hover,
.cid-v9Bi1fYaU4 .dropdown-item:focus {
  color: #90afa1 !important;
}
.cid-v9Bi1fYaU4 .dropdown-item:hover span {
  color: white;
}
.cid-v9Bi1fYaU4 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v9Bi1fYaU4 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v9Bi1fYaU4 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v9Bi1fYaU4 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v9Bi1fYaU4 .nav-link {
  position: relative;
}
.cid-v9Bi1fYaU4 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v9Bi1fYaU4 .container {
    flex-wrap: nowrap;
  }
}
.cid-v9Bi1fYaU4 .navbar-caption:hover,
.cid-v9Bi1fYaU4 .navbar-caption:focus {
  color: #90afa1 !important;
}
.cid-v9Bi1fYaU4 .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-v9Bi1fYaU4 .navbar-nav .nav-item {
  color: #24262b;
}
.cid-v9Bi1fYaU4 .navbar-nav .nav-item:hover {
  color: #90afa1;
}
.cid-v9Bi1fYaU4 .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-v9Bi1fYaU4 .navbar-nav .nav-item a:hover {
  color: #90afa1 !important;
}
.cid-v9Bi1fYaU4 .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-v9Bi1fYaU4 .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-v9Bi1fYaU4 .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-v9Bi1fYaU4 .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #90afa1 !important;
}
.cid-v9Bi1fYaU4 .dropdown-menu,
.cid-v9Bi1fYaU4 .navbar.opened {
  background: #ffffff !important;
}
.cid-v9Bi1fYaU4 .nav-item:focus,
.cid-v9Bi1fYaU4 .nav-link:focus {
  outline: none;
}
.cid-v9Bi1fYaU4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v9Bi1fYaU4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9Bi1fYaU4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v9Bi1fYaU4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v9Bi1fYaU4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9Bi1fYaU4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9Bi1fYaU4 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-v9Bi1fYaU4 .navbar.opened {
  transition: all 0.3s;
}
.cid-v9Bi1fYaU4 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v9Bi1fYaU4 .navbar .navbar-logo img {
  width: auto;
}
.cid-v9Bi1fYaU4 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v9Bi1fYaU4 .navbar.collapsed {
  justify-content: center;
}
.cid-v9Bi1fYaU4 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9Bi1fYaU4 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9Bi1fYaU4 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-v9Bi1fYaU4 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9Bi1fYaU4 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v9Bi1fYaU4 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v9Bi1fYaU4 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v9Bi1fYaU4 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v9Bi1fYaU4 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v9Bi1fYaU4 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9Bi1fYaU4 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9Bi1fYaU4 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9Bi1fYaU4 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v9Bi1fYaU4 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v9Bi1fYaU4 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v9Bi1fYaU4 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v9Bi1fYaU4 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v9Bi1fYaU4 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v9Bi1fYaU4 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v9Bi1fYaU4 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v9Bi1fYaU4 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v9Bi1fYaU4 .navbar.navbar-short {
  min-height: 70px;
}
.cid-v9Bi1fYaU4 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-v9Bi1fYaU4 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v9Bi1fYaU4 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9Bi1fYaU4 .dropdown-item.active,
.cid-v9Bi1fYaU4 .dropdown-item:active {
  background-color: transparent;
}
.cid-v9Bi1fYaU4 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v9Bi1fYaU4 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9Bi1fYaU4 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v9Bi1fYaU4 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v9Bi1fYaU4 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v9Bi1fYaU4 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v9Bi1fYaU4 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9Bi1fYaU4 .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-v9Bi1fYaU4 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v9Bi1fYaU4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v9Bi1fYaU4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v9Bi1fYaU4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9Bi1fYaU4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9Bi1fYaU4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v9Bi1fYaU4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9Bi1fYaU4 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v9Bi1fYaU4 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v9Bi1fYaU4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9Bi1fYaU4 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v9Bi1fYaU4 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v9Bi1fYaU4 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9Bi1fYaU4 .navbar {
    height: 70px;
  }
  .cid-v9Bi1fYaU4 .navbar.opened {
    height: auto;
  }
  .cid-v9Bi1fYaU4 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9Bi1fYaU4 .container-fluid {
  padding: 0 1rem !important;
}
.cid-v9Bi1fYaU4 .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-v9Bi1fYaU4 .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-v9Bi1fYaU4 .navbar-collapse {
    width: 100%;
  }
  .cid-v9Bi1fYaU4 .navbar-nav {
    width: 100%;
  }
  .cid-v9Bi1fYaU4 .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-v9Bmq3N4I5 {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.webp");
}
.cid-v9Bmq3N4I5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Bmq3N4I5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Bmq3N4I5 .content-wrapper .mbr-label {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v9Bmq3N4I5 .content-wrapper .mbr-label {
    margin-bottom: 20px;
  }
}
.cid-v9Bmq3N4I5 .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v9Bmq3N4I5 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v9Bmq3N4I5 .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 45%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-v9Bmq3N4I5 .content-wrapper .text-wrapper .mbr-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-v9Bmq3N4I5 .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v9Bmq3N4I5 .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-v9Bmq3N4I5 .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-v9Bmq3N4I5 .mbr-label {
  color: #f1f5eb;
  text-align: center;
}
.cid-v9Bmq3N4I5 .mbr-section-title {
  color: #f1f5eb;
}
.cid-v9Bmq3N4I5 .mbr-text,
.cid-v9Bmq3N4I5 .text-wrapper {
  color: #f1f5eb;
  text-align: center;
}
.cid-v9Bmq3N4I5 .mbr-section-title,
.cid-v9Bmq3N4I5 .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v9BiE1Yr1o {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9BiE1Yr1o .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BiE1Yr1o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BiE1Yr1o .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-v9BiE1Yr1o .container {
    padding: 0 50px !important;
  }
}
.cid-v9BiE1Yr1o .row {
  align-items: stretch;
}
.cid-v9BiE1Yr1o .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-v9BiE1Yr1o .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-v9BiE1Yr1o .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v9BiE1Yr1o .text-wrapper {
    padding-top: 30px;
  }
}
.cid-v9BiE1Yr1o .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-v9BiE1Yr1o .card-title {
    text-align: center;
  }
}
.cid-v9BiE1Yr1o .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-v9BiE1Yr1o .mbr-text {
    text-align: center;
  }
}
.cid-v9BiE1Yr1o .col-img {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-right: 75px !important;
}
@media (max-width: 767px) {
  .cid-v9BiE1Yr1o .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-v9BiE1Yr1o .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-v9BiE1Yr1o .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-v9BiE1Yr1o .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-v9BiE1Yr1o .image-wrapper {
    padding-right: 0;
  }
}
.cid-v9BiE1Yr1o .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #cde2bb;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  height: 65%;
  width: 90%;
}
.cid-v9BiE1Yr1o .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-v9BiE1Yr1o .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-vaQFOXvux6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaQFOXvux6 .img-row {
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .cid-vaQFOXvux6 .img-row {
    flex-wrap: nowrap;
  }
}
.cid-vaQFOXvux6 .item:focus,
.cid-vaQFOXvux6 span:focus {
  outline: none;
}
.cid-vaQFOXvux6 .mbr-section-title {
  color: #111111;
  margin-bottom: 20px;
}
.cid-vaQFOXvux6 .item-img {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-vaQFOXvux6 .item-img {
    margin-bottom: 40px;
  }
}
.cid-vaQFOXvux6 .item-img img {
  height: 100px;
  width: auto;
  object-fit: cover;
}
.cid-vaQFOXvux6 .btn-item {
  width: 100%;
}
.cid-vaQFOXvux6 .mbr-section-btn {
  font-weight: 500;
}
@media (max-width: 575px) {
  .cid-vaQFOXvux6 .mbr-section-btn {
    flex-wrap: wrap;
    display: flex;
  }
  .cid-vaQFOXvux6 .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-v9BVdSjZui {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9BVdSjZui .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BVdSjZui .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BVdSjZui .items-wrapper {
  margin: 0 -32px;
}
.cid-v9BVdSjZui .items-wrapper .item {
  padding: 0 32px;
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-v9BVdSjZui .items-wrapper .item {
    margin-bottom: 32px;
  }
  .cid-v9BVdSjZui .items-wrapper .item:last-child {
    margin-bottom: 0;
  }
}
.cid-v9BVdSjZui .items-wrapper .item .item-wrapper .iconfont-wrapper {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v9BVdSjZui .items-wrapper .item .item-wrapper .iconfont-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v9BVdSjZui .items-wrapper .item .item-wrapper .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 100%;
  font-size: 28px;
  border: 4px solid;
}
.cid-v9BVdSjZui .items-wrapper .item .item-wrapper .icon_1 .mbr-iconfont {
  background-color: #a2c286;
  border-color: #a2c286;
  box-shadow: 0 18px 32px -8px #a2c286;
}
.cid-v9BVdSjZui .items-wrapper .item .item-wrapper .icon_2 .mbr-iconfont {
  background-color: #f1d788;
  border-color: #f1d788;
  box-shadow: 0 18px 32px -8px #f1d788;
}
.cid-v9BVdSjZui .items-wrapper .item .item-wrapper .icon_3 .mbr-iconfont {
  background-color: #cde2bb;
  border-color: #cde2bb;
  box-shadow: 0 18px 32px -8px #cde2bb;
}
.cid-v9BVdSjZui .items-wrapper .item .item-wrapper .card-title {
  margin-bottom: 16px;
}
.cid-v9BVdSjZui .items-wrapper .item .item-wrapper .card-text {
  margin-bottom: 0;
}
.cid-v9BVdSjZui .card-title {
  color: #111111;
}
.cid-v9BVdSjZui .card-text {
  color: #000000;
  text-align: center;
}
.cid-v9BVdSjZui .card-title,
.cid-v9BVdSjZui .iconfont-wrapper {
  text-align: center;
}
.cid-vaRdJucCRF {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/trait-secretaire-independante-2000x81.webp");
}
.cid-vaRdJucCRF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRdJucCRF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaRdJucCRF .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-vaRdJucCRF .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-vaRdJucCRF .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-vaRdJucCRF .wrapper {
  padding: 30px 0;
}
.cid-vaRdJucCRF .mbr-section-title {
  color: #fafafa;
}
.cid-vaRdJucCRF .mbr-text,
.cid-vaRdJucCRF .mbr-section-btn {
  color: #ffffff;
}
.cid-vaRdJucCRF H4 {
  color: #ffffff;
}
.cid-vaRdJucCRF H3 {
  color: #000000;
}
.cid-vc2LmYvZNW {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vc2LmYvZNW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vc2LmYvZNW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vc2LmYvZNW .title-wrapper .mbr-section-title {
  margin-bottom: 64px;
}
@media (max-width: 992px) {
  .cid-vc2LmYvZNW .title-wrapper .mbr-section-title {
    margin-bottom: 46px;
  }
}
.cid-vc2LmYvZNW .items-wrapper {
  margin: 0 -10px;
}
.cid-vc2LmYvZNW .item {
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-vc2LmYvZNW .item {
    margin-bottom: 16px;
  }
}
.cid-vc2LmYvZNW .item:hover .item-wrapper .item-content .icon-wrapper,
.cid-vc2LmYvZNW .item:focus .item-wrapper .item-content .icon-wrapper {
  transform: rotate(-25deg);
}
.cid-vc2LmYvZNW .item:hover .item-wrapper .item-content .item-img,
.cid-vc2LmYvZNW .item:focus .item-wrapper .item-content .item-img {
  opacity: 1;
  transform: scale(1);
}
.cid-vc2LmYvZNW .item:nth-child(2n) .item-wrapper {
  background-color: #ffffff;
}
.cid-vc2LmYvZNW .item:nth-child(3n) .item-wrapper {
  background-color: #e4eedb;
}
.cid-vc2LmYvZNW .item:nth-child(4n) .item-wrapper {
  background-color: #ffffff;
}
.cid-vc2LmYvZNW .item:nth-child(6n) .item-wrapper {
  background-color: #ffffff;
}
.cid-vc2LmYvZNW .item .item-wrapper {
  height: 100%;
  position: relative;
  padding: 42px;
  background-color: #f1d788;
}
@media (max-width: 992px) {
  .cid-vc2LmYvZNW .item .item-wrapper {
    padding: 46px 22px;
  }
}
.cid-vc2LmYvZNW .item .item-wrapper .item-content {
  position: relative;
}
.cid-vc2LmYvZNW .item .item-wrapper .item-content .icon-wrapper {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  border-radius: 100%;
  margin-bottom: 22px;
}
.cid-vc2LmYvZNW .item .item-wrapper .item-content .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  transition: all 0.3s ease-in-out;
  color: #51565c;
}
.cid-vc2LmYvZNW .item .item-wrapper .item-content .item-title {
  margin-bottom: 0;
}
.cid-vc2LmYvZNW .item .item-wrapper .item-content .item-img {
  position: absolute;
  top: -205px;
  right: -105px;
  width: 250px;
  height: 250px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: scale(0.5);
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-vc2LmYvZNW .item .item-wrapper .item-content .item-img {
    top: -55px;
    right: 0;
    width: 100px;
    height: 100px;
    opacity: 1;
    transform: none;
  }
}
.cid-vc2LmYvZNW .item .item-wrapper .item-content .item-img img {
  position: absolute;
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 100% !important;
}
@media (max-width: 992px) {
  .cid-vc2LmYvZNW .item .item-wrapper .item-content .item-img img {
    width: 100px;
    height: 100px;
  }
}
.cid-vc2LmYvZNW .item .item-wrapper .item-text {
  padding-top: 16px;
  margin-bottom: 0;
}
.cid-vc2LmYvZNW .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-vc2LmYvZNW .panel-title-edit {
  color: #212529;
}
.cid-vc2LmYvZNW .panel-text {
  color: #51565c;
}
.cid-vaPmgBJjd3 {
  padding-top: 90px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/frise-site-secretaire20copie-2000x217.webp");
}
.cid-vaPmgBJjd3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaPmgBJjd3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaPmgBJjd3 .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-vaPmgBJjd3 .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-vaPmgBJjd3 .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-vaPmgBJjd3 .wrapper {
  padding: 30px 0;
}
.cid-vaPmgBJjd3 .mbr-section-title {
  color: #fafafa;
}
.cid-vaPmgBJjd3 .mbr-text,
.cid-vaPmgBJjd3 .mbr-section-btn {
  color: #ffffff;
}
.cid-vaPmgBJjd3 H4 {
  color: #ffffff;
}
.cid-vaPmgBJjd3 H3 {
  color: #000000;
}
.cid-vc2Ea8BUru {
  padding-top: 30px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
.cid-vc2Ea8BUru .mbr-section-title {
  color: #06182d;
}
.cid-vc2Ea8BUru .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #689681;
  background: linear-gradient(#689681 0%, #689681 69%, #90afa1 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-vc2Ea8BUru .mbr-section-subtitle {
  color: #06182d;
}
.cid-vc2Ea8BUru .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-vc2Ea8BUru .mbr-text {
  color: #689681;
  font-weight: 300;
}
.cid-vc2Ea8BUru .title-text {
  margin-bottom: 70px;
}
.cid-vc2Ea8BUru .title-text .mbr-section-subtitle {
  color: #06182d;
}
.cid-vc2Ea8BUru .title-text .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-vc2Ea8BUru .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-vc2Ea8BUru .title-text .mbr-section-title {
  color: #f1d788;
}
.cid-vc2Ea8BUru .title-text .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-vc2Ea8BUru .title-text .mbr-section-title span {
  font-weight: 500;
}
.cid-vc2Ea8BUru .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-vc2Ea8BUru .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  font-size: 1.4rem !important;
  color: #f1d788;
}
.cid-vc2Ea8BUru .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-vc2Ea8BUru .p-4 {
  padding: 1rem 0 !important;
}
.cid-vc2Ea8BUru .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-vc2Ea8BUru .mbri-arrow-down:before {
  content: "\e960";
}
.cid-vc2Ea8BUru .mbri-arrow-up:before {
  content: "\e960";
}
.cid-vc2Ea8BUru .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-vc2Ea8BUru .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-vc2Ea8BUru .card {
  border-radius: 0px;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-vc2Ea8BUru .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-vc2Ea8BUru .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-vc2Ea8BUru .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-vc2Ea8BUru .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  border-bottom: 2px solid #689681;
  transition: all 0.3s;
  justify-content: space-between;
}
.cid-vc2Ea8BUru .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #efefef;
}
.cid-vc2Ea8BUru .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vc2Ea8BUru .card .card-header a.panel-title h4 {
  padding: 0 0rem 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-vc2Ea8BUru .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-vc2Ea8BUru .card .card-header a.panel-title .toggle-icon {
  right: 14px;
  position: absolute;
  top: 20px;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 138, 0.4);
  padding: 13px;
}
.cid-vc2Ea8BUru .card .card-header a.panel-title .toggle-icon:before,
.cid-vc2Ea8BUru .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-vc2Ea8BUru .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  transform: none;
}
.cid-vc2Ea8BUru .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-vc2Ea8BUru .card .panel-body {
  padding: 14px 20px;
}
.cid-vc2Ea8BUru .card .panel-body p {
  color: #689681;
  line-height: 1.5;
}
.cid-vc2Ea8BUru .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-vc2Ea8BUru .mbr-fallback-image.disabled {
  display: none;
}
.cid-vc2Ea8BUru .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vc2Ea8BUru .title-text .mbr-section-title {
  color: #000000;
}
.cid-vc2Ea8BUru .card .card-header a.panel-title h4 {
  color: #000000;
}
.cid-vc2Ea8BUru .card .panel-body p {
  color: #000000;
}
.cid-v9HvKVRvnR {
  padding-top: 90px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/frise-site-secretaire20copie202-2000x215.webp");
}
.cid-v9HvKVRvnR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9HvKVRvnR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9HvKVRvnR .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-v9HvKVRvnR .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-v9HvKVRvnR .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-v9HvKVRvnR .wrapper {
  padding: 30px 0;
}
.cid-v9HvKVRvnR .mbr-section-title {
  color: #fafafa;
}
.cid-v9HvKVRvnR .mbr-text,
.cid-v9HvKVRvnR .mbr-section-btn {
  color: #ffffff;
}
.cid-v9HvKVRvnR H4 {
  color: #ffffff;
}
.cid-v9HvKVRvnR H3 {
  color: #000000;
}
.cid-vaQGwFcLAW {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vaQGwFcLAW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQGwFcLAW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQGwFcLAW .mbr-section-title {
  color: #24262b;
}
.cid-vaQGwFcLAW .mbr-section-subtitle {
  color: #24262b;
}
.cid-vaQGwFcLAW .mbr-section-btn {
  margin-top: 16px;
}
.cid-vc2PGOwbO0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc2PGOwbO0 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vc2PGOwbO0 label {
  padding: 0 1rem;
}
.cid-vc2PGOwbO0 textarea {
  min-height: 150px;
}
.cid-vc2PGOwbO0 .btn {
  padding: 1rem 3rem;
}
@media (min-width: 992px) {
  .cid-vc2PGOwbO0 .image-wrapper {
    max-width: 80%;
  }
}
.cid-vc2PGOwbO0 .row {
  align-items: center;
}
.cid-vc2PGOwbO0 .form-control,
.cid-vc2PGOwbO0 .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cde2bb !important;
  border-radius: 0;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vc2PGOwbO0 .form-control::-webkit-input-placeholder,
.cid-vc2PGOwbO0 .field-input::-webkit-input-placeholder,
.cid-vc2PGOwbO0 .form-control::-webkit-input-placeholder,
.cid-vc2PGOwbO0 .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-vc2PGOwbO0 .form-control:-moz-placeholder,
.cid-vc2PGOwbO0 .field-input:-moz-placeholder,
.cid-vc2PGOwbO0 .form-control:-moz-placeholder,
.cid-vc2PGOwbO0 .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-vc2PGOwbO0 .form-control:hover,
.cid-vc2PGOwbO0 .field-input:hover,
.cid-vc2PGOwbO0 .form-control:focus,
.cid-vc2PGOwbO0 .field-input:focus {
  background-color: #fdefc4;
  border-color: #689681 !important;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-vc2PGOwbO0 .form-control:hover::-webkit-input-placeholder,
.cid-vc2PGOwbO0 .field-input:hover::-webkit-input-placeholder,
.cid-vc2PGOwbO0 .form-control:focus::-webkit-input-placeholder,
.cid-vc2PGOwbO0 .field-input:focus::-webkit-input-placeholder,
.cid-vc2PGOwbO0 .form-control:hover::-webkit-input-placeholder,
.cid-vc2PGOwbO0 .field-input:hover::-webkit-input-placeholder,
.cid-vc2PGOwbO0 .form-control:focus::-webkit-input-placeholder,
.cid-vc2PGOwbO0 .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-vc2PGOwbO0 .form-control:hover:-moz-placeholder,
.cid-vc2PGOwbO0 .field-input:hover:-moz-placeholder,
.cid-vc2PGOwbO0 .form-control:focus:-moz-placeholder,
.cid-vc2PGOwbO0 .field-input:focus:-moz-placeholder,
.cid-vc2PGOwbO0 .form-control:hover:-moz-placeholder,
.cid-vc2PGOwbO0 .field-input:hover:-moz-placeholder,
.cid-vc2PGOwbO0 .form-control:focus:-moz-placeholder,
.cid-vc2PGOwbO0 .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-vc2PGOwbO0 .jq-number__spin:hover,
.cid-vc2PGOwbO0 .jq-number__spin:focus {
  background-color: #fdefc4;
  border-color: #689681;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-vc2PGOwbO0 .jq-number__spin {
  background-color: #ffffff;
  border-color: #cde2bb;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vc2PGOwbO0 .jq-selectbox li,
.cid-vc2PGOwbO0 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-vc2PGOwbO0 .jq-selectbox li:hover,
.cid-vc2PGOwbO0 .jq-selectbox li.selected {
  background-color: #fdefc4;
  color: #000000;
}
.cid-vc2PGOwbO0 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-vc2PGOwbO0 .jq-number__spin.minus:hover:after,
.cid-vc2PGOwbO0 .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-vc2PGOwbO0 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-vc2PGOwbO0 .jq-number__spin.minus:after,
.cid-vc2PGOwbO0 .jq-number__spin.plus:after {
  border-top-color: #fdefc4;
  border-bottom-color: #fdefc4;
}
.cid-vc2PGOwbO0 input::-webkit-clear-button {
  display: none;
}
.cid-vc2PGOwbO0 input::-webkit-inner-spin-button {
  display: none;
}
.cid-vc2PGOwbO0 input::-webkit-outer-spin-button {
  display: none;
}
.cid-vc2PGOwbO0 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-vc2PGOwbO0 .wrapper {
  display: flex;
}
.cid-vc2PGOwbO0 .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #90afa1;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vc2PGOwbO0 .wrapper {
    flex-direction: column;
  }
  .cid-vc2PGOwbO0 .iconfont-wrapper {
    margin: auto;
  }
  .cid-vc2PGOwbO0 .mbr-iconfont {
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
}
.cid-vc2PGOwbO0 .mbr-section-title {
  color: #000000;
}
.cid-vaUIsv3GTL {
  padding-top: 90px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/vague-secretaire-independante-1-2000x358.webp");
}
.cid-vaUIsv3GTL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaUIsv3GTL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaUIsv3GTL .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-vaUIsv3GTL .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-vaUIsv3GTL .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-vaUIsv3GTL .wrapper {
  padding: 30px 0;
}
.cid-vaUIsv3GTL .mbr-section-title {
  color: #fafafa;
}
.cid-vaUIsv3GTL .mbr-text,
.cid-vaUIsv3GTL .mbr-section-btn {
  color: #ffffff;
}
.cid-vaUIsv3GTL H4 {
  color: #ffffff;
}
.cid-vaUIsv3GTL H3 {
  color: #000000;
}
.cid-vc2OJgKvww {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f1d788;
}
.cid-vc2OJgKvww .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-vc2OJgKvww .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-vc2OJgKvww .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-vc2OJgKvww .row {
    text-align: center;
  }
  .cid-vc2OJgKvww .row > div {
    margin: auto;
  }
  .cid-vc2OJgKvww .social-row {
    justify-content: center;
  }
}
.cid-vc2OJgKvww .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vc2OJgKvww .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-vc2OJgKvww .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vc2OJgKvww .list {
    margin-bottom: 0rem;
  }
}
.cid-vc2OJgKvww .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vc2OJgKvww .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vc2OJgKvww div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vc2OJgKvww .mbr-fallback-image.disabled {
  display: none;
}
.cid-vc2OJgKvww .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vc2OJgKvww .copyright {
  color: #000000;
}
.cid-v9BLVw6K0U {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-v9BLVw6K0U nav.navbar {
  position: fixed;
}
.cid-v9BLVw6K0U .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v9BLVw6K0U .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v9BLVw6K0U .dropdown-item:hover,
.cid-v9BLVw6K0U .dropdown-item:focus {
  color: #90afa1 !important;
}
.cid-v9BLVw6K0U .dropdown-item:hover span {
  color: white;
}
.cid-v9BLVw6K0U .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v9BLVw6K0U .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v9BLVw6K0U .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v9BLVw6K0U .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v9BLVw6K0U .nav-link {
  position: relative;
}
.cid-v9BLVw6K0U .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v9BLVw6K0U .container {
    flex-wrap: nowrap;
  }
}
.cid-v9BLVw6K0U .navbar-caption:hover,
.cid-v9BLVw6K0U .navbar-caption:focus {
  color: #90afa1 !important;
}
.cid-v9BLVw6K0U .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-v9BLVw6K0U .navbar-nav .nav-item {
  color: #24262b;
}
.cid-v9BLVw6K0U .navbar-nav .nav-item:hover {
  color: #90afa1;
}
.cid-v9BLVw6K0U .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-v9BLVw6K0U .navbar-nav .nav-item a:hover {
  color: #90afa1 !important;
}
.cid-v9BLVw6K0U .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-v9BLVw6K0U .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-v9BLVw6K0U .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-v9BLVw6K0U .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #90afa1 !important;
}
.cid-v9BLVw6K0U .dropdown-menu,
.cid-v9BLVw6K0U .navbar.opened {
  background: #ffffff !important;
}
.cid-v9BLVw6K0U .nav-item:focus,
.cid-v9BLVw6K0U .nav-link:focus {
  outline: none;
}
.cid-v9BLVw6K0U .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v9BLVw6K0U .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9BLVw6K0U .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v9BLVw6K0U .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v9BLVw6K0U .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9BLVw6K0U .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9BLVw6K0U .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-v9BLVw6K0U .navbar.opened {
  transition: all 0.3s;
}
.cid-v9BLVw6K0U .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v9BLVw6K0U .navbar .navbar-logo img {
  width: auto;
}
.cid-v9BLVw6K0U .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v9BLVw6K0U .navbar.collapsed {
  justify-content: center;
}
.cid-v9BLVw6K0U .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9BLVw6K0U .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v9BLVw6K0U .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-v9BLVw6K0U .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9BLVw6K0U .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v9BLVw6K0U .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-v9BLVw6K0U .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v9BLVw6K0U .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v9BLVw6K0U .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v9BLVw6K0U .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9BLVw6K0U .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9BLVw6K0U .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9BLVw6K0U .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v9BLVw6K0U .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-v9BLVw6K0U .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v9BLVw6K0U .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v9BLVw6K0U .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v9BLVw6K0U .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v9BLVw6K0U .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v9BLVw6K0U .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-v9BLVw6K0U .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-v9BLVw6K0U .navbar.navbar-short {
  min-height: 70px;
}
.cid-v9BLVw6K0U .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-v9BLVw6K0U .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v9BLVw6K0U .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9BLVw6K0U .dropdown-item.active,
.cid-v9BLVw6K0U .dropdown-item:active {
  background-color: transparent;
}
.cid-v9BLVw6K0U .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v9BLVw6K0U .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9BLVw6K0U .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v9BLVw6K0U .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v9BLVw6K0U .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v9BLVw6K0U .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v9BLVw6K0U ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v9BLVw6K0U .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-v9BLVw6K0U button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v9BLVw6K0U button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-v9BLVw6K0U button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v9BLVw6K0U button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9BLVw6K0U button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v9BLVw6K0U button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v9BLVw6K0U nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9BLVw6K0U nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v9BLVw6K0U nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v9BLVw6K0U nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v9BLVw6K0U .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-v9BLVw6K0U a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v9BLVw6K0U .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9BLVw6K0U .navbar {
    height: 70px;
  }
  .cid-v9BLVw6K0U .navbar.opened {
    height: auto;
  }
  .cid-v9BLVw6K0U .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9BLVw6K0U .container-fluid {
  padding: 0 1rem !important;
}
.cid-v9BLVw6K0U .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-v9BLVw6K0U .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-v9BLVw6K0U .navbar-collapse {
    width: 100%;
  }
  .cid-v9BLVw6K0U .navbar-nav {
    width: 100%;
  }
  .cid-v9BLVw6K0U .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-v9BOTvyC3U {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1027x685.webp");
}
.cid-v9BOTvyC3U .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BOTvyC3U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BOTvyC3U .content-wrapper .mbr-label {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v9BOTvyC3U .content-wrapper .mbr-label {
    margin-bottom: 20px;
  }
}
.cid-v9BOTvyC3U .content-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v9BOTvyC3U .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v9BOTvyC3U .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 45%;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .cid-v9BOTvyC3U .content-wrapper .text-wrapper .mbr-text {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .cid-v9BOTvyC3U .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v9BOTvyC3U .content-wrapper .mbr-section-btn {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-v9BOTvyC3U .content-wrapper .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-v9BOTvyC3U .mbr-label {
  color: #f1f5eb;
  text-align: center;
}
.cid-v9BOTvyC3U .mbr-section-title {
  color: #f1f5eb;
}
.cid-v9BOTvyC3U .mbr-text,
.cid-v9BOTvyC3U .text-wrapper {
  color: #f1f5eb;
  text-align: center;
}
.cid-v9BOTvyC3U .mbr-section-title,
.cid-v9BOTvyC3U .mbr-section-btn {
  text-align: center;
  color: #000000;
}
.cid-v9BLVzgYXu {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v9BLVzgYXu .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BLVzgYXu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BLVzgYXu .mbr-section-title {
  color: #24262b;
}
.cid-v9BLVzgYXu .mbr-section-subtitle {
  color: #24262b;
}
.cid-v9BLVzgYXu .mbr-section-btn {
  margin-top: 16px;
}
.cid-v9BRQCVbfU {
  padding-top: 120px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/frise-site-secretaire-2000x198.webp");
}
.cid-v9BRQCVbfU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BRQCVbfU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BRQCVbfU .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-v9BRQCVbfU .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-v9BRQCVbfU .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-v9BRQCVbfU .wrapper {
  padding: 30px 0;
}
.cid-v9BRQCVbfU .mbr-section-title {
  color: #fafafa;
}
.cid-v9BRQCVbfU .mbr-text,
.cid-v9BRQCVbfU .mbr-section-btn {
  color: #ffffff;
}
.cid-v9BRQCVbfU H4 {
  color: #ffffff;
}
.cid-v9BRQCVbfU H3 {
  color: #000000;
}
.cid-v9BNgysiUJ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v9BNgysiUJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BNgysiUJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BNgysiUJ .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v9BNgysiUJ .mbr-section-title {
  color: #24262b;
}
.cid-v9BNgysiUJ .mbr-section-subtitle {
  color: #24262b;
}
.cid-v9BNgysiUJ .cards-row {
  align-items: stretch;
  row-gap: 32px;
}
.cid-v9BNgysiUJ .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
  border-radius: 0;
}
.cid-v9BNgysiUJ .card-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 4rem 3rem;
  transition: .3s all;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-v9BNgysiUJ .card-wrap {
    padding: 3rem 2rem;
  }
}
.cid-v9BNgysiUJ .item-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
}
.cid-v9BNgysiUJ .card-title-1 {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-v9BNgysiUJ .card-title-2 {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-v9BNgysiUJ .card-subtitle-1 {
  color: #24262b;
}
.cid-v9BNgysiUJ .card-subtitle-2 {
  color: #24262b;
}
.cid-v9BNgysiUJ .card-text-1 {
  margin-top: 16px;
  color: #24262b;
}
.cid-v9BNgysiUJ .card-text-2 {
  margin-top: 16px;
  color: #24262b;
}
.cid-v9BNgysiUJ .mbr-section-btn {
  margin-top: 20px;
}
.cid-v9BNgysiUJ .card-1 .card-wrap {
  position: relative;
  background-image: url("../../../assets/images/secretaire-liberale-seine-marne-77-1073x719.webp");
}
.cid-v9BNgysiUJ .card-1 .card-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
  background-color: #ffffff;
}
.cid-v9BNgysiUJ .card-2 .card-wrap {
  background: #cde2bb;
}
.cid-v9BOfEK4Hw {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v9BOfEK4Hw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BOfEK4Hw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BOfEK4Hw .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v9BOfEK4Hw .mbr-section-title {
  color: #24262b;
}
.cid-v9BOfEK4Hw .mbr-section-subtitle {
  color: #24262b;
}
.cid-v9BOfEK4Hw .cards-row {
  align-items: stretch;
  row-gap: 32px;
}
.cid-v9BOfEK4Hw .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
  border-radius: 0;
}
.cid-v9BOfEK4Hw .card-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 4rem 3rem;
  transition: .3s all;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-v9BOfEK4Hw .card-wrap {
    padding: 3rem 2rem;
  }
}
.cid-v9BOfEK4Hw .item-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
}
.cid-v9BOfEK4Hw .card-title-1 {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-v9BOfEK4Hw .card-title-2 {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-v9BOfEK4Hw .card-subtitle-1 {
  color: #24262b;
}
.cid-v9BOfEK4Hw .card-subtitle-2 {
  color: #24262b;
}
.cid-v9BOfEK4Hw .card-text-1 {
  margin-top: 16px;
  color: #24262b;
}
.cid-v9BOfEK4Hw .card-text-2 {
  margin-top: 16px;
  color: #24262b;
}
.cid-v9BOfEK4Hw .mbr-section-btn {
  margin-top: 20px;
}
.cid-v9BOfEK4Hw .card-1 .card-wrap {
  position: relative;
  background-image: url("../../../assets/images/saisie-document-seine-marne-77-397x331.webp");
}
.cid-v9BOfEK4Hw .card-1 .card-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
  background-color: #ffffff;
}
.cid-v9BOfEK4Hw .card-2 .card-wrap {
  background: #f1d788;
}
.cid-v9Hss7EeB8 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v9Hss7EeB8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Hss7EeB8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Hss7EeB8 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-v9Hss7EeB8 .mbr-section-title {
  color: #24262b;
}
.cid-v9Hss7EeB8 .mbr-section-subtitle {
  color: #24262b;
}
.cid-v9Hss7EeB8 .cards-row {
  align-items: stretch;
  row-gap: 32px;
}
.cid-v9Hss7EeB8 .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
  border-radius: 0;
}
.cid-v9Hss7EeB8 .card-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 4rem 3rem;
  transition: .3s all;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .cid-v9Hss7EeB8 .card-wrap {
    padding: 3rem 2rem;
  }
}
.cid-v9Hss7EeB8 .item-content {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
}
.cid-v9Hss7EeB8 .card-title-1 {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-v9Hss7EeB8 .card-title-2 {
  margin-bottom: 16px;
  color: #24262b;
}
.cid-v9Hss7EeB8 .card-subtitle-1 {
  color: #24262b;
}
.cid-v9Hss7EeB8 .card-subtitle-2 {
  color: #24262b;
}
.cid-v9Hss7EeB8 .card-text-1 {
  margin-top: 16px;
  color: #24262b;
}
.cid-v9Hss7EeB8 .card-text-2 {
  margin-top: 16px;
  color: #24262b;
}
.cid-v9Hss7EeB8 .mbr-section-btn {
  margin-top: 20px;
}
.cid-v9Hss7EeB8 .card-1 .card-wrap {
  position: relative;
  background-image: url("../../../assets/images/correction-document-seine-marne-77-399x334.webp");
}
.cid-v9Hss7EeB8 .card-1 .card-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .8;
  background-color: #fff9f8;
}
.cid-v9Hss7EeB8 .card-2 .card-wrap {
  background: #cde2bb;
}
.cid-v9BLVCc1dd {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9BLVCc1dd .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BLVCc1dd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BLVCc1dd .items-wrapper {
  justify-content: center;
  margin: 0 -40px;
}
.cid-v9BLVCc1dd .items-wrapper .item {
  padding: 0 40px;
}
.cid-v9BLVCc1dd .item {
  margin-bottom: 40px;
}
.cid-v9BLVCc1dd .item .item-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cid-v9BLVCc1dd .item .item-wrapper .item-content .title-wrapper {
  margin-bottom: 20px;
}
.cid-v9BLVCc1dd .item .item-wrapper .item-content .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v9BLVCc1dd .item .item-wrapper .item-content .title-wrapper .title-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 20px;
  color: #19171c;
  margin-right: 10px;
}
.cid-v9BLVCc1dd .item .item-wrapper .item-content .title-wrapper .title-wrap .item-title {
  margin-bottom: 0;
}
.cid-v9BLVCc1dd .item .item-wrapper .item-content .item-text {
  margin-bottom: 20px;
}
.cid-v9BLVCc1dd .item-title,
.cid-v9BLVCc1dd .title-wrapper {
  color: #19171c;
  text-align: center;
}
.cid-v9BLVCc1dd .item-text {
  color: #6e6e73;
  text-align: center;
}
.cid-v9BLVCc1dd .item-text,
.cid-v9BLVCc1dd .mbr-section-btn {
  text-align: center;
}
.cid-v9BPMnAFuQ {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v9BPMnAFuQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BPMnAFuQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BPMnAFuQ .mbr-section-title {
  color: #24262b;
}
.cid-v9BPMnAFuQ .mbr-section-subtitle {
  color: #24262b;
}
.cid-v9BPMnAFuQ .mbr-section-btn {
  margin-top: 16px;
}
.cid-v9BLVzICS1 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9BLVzICS1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BLVzICS1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BLVzICS1 .title-wrapper .mbr-section-title {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-v9BLVzICS1 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-v9BLVzICS1 .items-wrapper .item {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .cid-v9BLVzICS1 .items-wrapper .item {
    margin-bottom: 30px;
  }
}
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-number_1,
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-number_2,
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-number_3,
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-number_4 {
  margin-bottom: 0;
}
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box {
  padding: 25px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
}
@media (max-width: 992px) {
  .cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box {
    padding: 30px 15px;
    min-height: auto;
  }
}
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box .title-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box .title-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
}
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box .title-wrapper .card-title_1,
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box .title-wrapper .card-title_2,
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box .title-wrapper .card-title_3,
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box .title-wrapper .card-title_4 {
  margin-bottom: 0;
}
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box .title-wrapper .iconfont-wrapper .mbr-iconfont {
  font-size: 36px;
  display: inline-flex;
  margin-left: 20px;
}
@media (max-width: 1440px) {
  .cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box .title-wrapper .iconfont-wrapper .mbr-iconfont {
    margin-left: 0;
    margin-bottom: 15px;
  }
}
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box .text-wrapper .card-text_1,
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box .text-wrapper .card-text_2,
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box .text-wrapper .card-text_3,
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box .text-wrapper .card-text_4 {
  margin-bottom: 0;
}
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box .text-wrapper .mbr-section-btn {
  margin-top: 15px;
}
.cid-v9BLVzICS1 .items-wrapper .item .item-wrapper .card-box .text-wrapper .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-v9BLVzICS1 .items-wrapper .item .card_1 .card-box {
  background-color: #f1d788;
}
.cid-v9BLVzICS1 .items-wrapper .item .card_1 .card-box .title-wrapper .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-v9BLVzICS1 .items-wrapper .item .card_2 {
  padding-top: 7rem;
}
@media (max-width: 992px) {
  .cid-v9BLVzICS1 .items-wrapper .item .card_2 {
    padding-top: 0;
  }
}
.cid-v9BLVzICS1 .items-wrapper .item .card_2 .card-box {
  background-color: #a2c286;
}
.cid-v9BLVzICS1 .items-wrapper .item .card_2 .card-box .title-wrapper .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-v9BLVzICS1 .items-wrapper .item .card_3 {
  padding-top: 14rem;
}
@media (max-width: 992px) {
  .cid-v9BLVzICS1 .items-wrapper .item .card_3 {
    padding-top: 0;
  }
}
.cid-v9BLVzICS1 .items-wrapper .item .card_3 .card-box {
  background-color: #e4eedb;
}
.cid-v9BLVzICS1 .items-wrapper .item .card_3 .card-box .title-wrapper .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-v9BLVzICS1 .items-wrapper .item .card_4 {
  padding-top: 21rem;
}
@media (max-width: 992px) {
  .cid-v9BLVzICS1 .items-wrapper .item .card_4 {
    padding-top: 0;
  }
}
.cid-v9BLVzICS1 .items-wrapper .item .card_4 .card-box {
  background-color: #fdefc4;
}
.cid-v9BLVzICS1 .items-wrapper .item .card_4 .card-box .title-wrapper .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-v9BLVzICS1 .mbr-section-title {
  color: #ffffff;
}
.cid-v9BLVzICS1 .card-number_1 {
  color: #000000;
}
.cid-v9BLVzICS1 .card-number_2 {
  color: #000000;
}
.cid-v9BLVzICS1 .card-number_3 {
  color: #000000;
}
.cid-v9BLVzICS1 .card-number_4 {
  color: #000000;
}
.cid-v9BLVzICS1 .card-title_1 {
  color: #000000;
}
.cid-v9BLVzICS1 .card-title_2 {
  color: #000000;
}
.cid-v9BLVzICS1 .card-title_3 {
  color: #000000;
}
.cid-v9BLVzICS1 .card-title_4 {
  color: #000000;
}
.cid-v9BLVzICS1 .card-text_1 {
  color: #000000;
}
.cid-v9BLVzICS1 .card-text_2 {
  color: #000000;
}
.cid-v9BLVzICS1 .card-text_3 {
  color: #000000;
}
.cid-v9BLVzICS1 .card-text_4 {
  color: #000000;
}
.cid-vaRaLQCrny {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/trait-secretaire-independante-2000x81.webp");
}
.cid-vaRaLQCrny .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRaLQCrny .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaRaLQCrny .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-vaRaLQCrny .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-vaRaLQCrny .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-vaRaLQCrny .wrapper {
  padding: 30px 0;
}
.cid-vaRaLQCrny .mbr-section-title {
  color: #fafafa;
}
.cid-vaRaLQCrny .mbr-text,
.cid-vaRaLQCrny .mbr-section-btn {
  color: #ffffff;
}
.cid-vaRaLQCrny H4 {
  color: #ffffff;
}
.cid-vaRaLQCrny H3 {
  color: #000000;
}
.cid-v9BLVAhNNZ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v9BLVAhNNZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BLVAhNNZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BLVAhNNZ .mbr-section-title {
  color: #24262b;
}
.cid-v9BLVAhNNZ .mbr-section-subtitle {
  color: #24262b;
}
.cid-v9BLVAhNNZ .mbr-section-btn {
  margin-top: 16px;
}
.cid-vaQf5c8iSn {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaQf5c8iSn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQf5c8iSn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQf5c8iSn .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-vaQf5c8iSn .container {
    padding: 0 50px !important;
  }
}
.cid-vaQf5c8iSn .row {
  align-items: stretch;
}
.cid-vaQf5c8iSn .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-vaQf5c8iSn .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-vaQf5c8iSn .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vaQf5c8iSn .text-wrapper {
    padding-top: 30px;
  }
}
.cid-vaQf5c8iSn .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vaQf5c8iSn .card-title {
    text-align: center;
  }
}
.cid-vaQf5c8iSn .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-vaQf5c8iSn .mbr-text {
    text-align: center;
  }
}
.cid-vaQf5c8iSn .col-img {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-right: 75px !important;
}
@media (max-width: 767px) {
  .cid-vaQf5c8iSn .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-vaQf5c8iSn .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-vaQf5c8iSn .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-vaQf5c8iSn .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-vaQf5c8iSn .image-wrapper {
    padding-right: 0;
  }
}
.cid-vaQf5c8iSn .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #f1d788;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  height: 65%;
  width: 90%;
}
.cid-vaQf5c8iSn .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-vaQf5c8iSn .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-vaR9zjP2mR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/trait-secretaire-independante-2000x81.webp");
}
.cid-vaR9zjP2mR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaR9zjP2mR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaR9zjP2mR .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-vaR9zjP2mR .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-vaR9zjP2mR .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-vaR9zjP2mR .wrapper {
  padding: 30px 0;
}
.cid-vaR9zjP2mR .mbr-section-title {
  color: #fafafa;
}
.cid-vaR9zjP2mR .mbr-text,
.cid-vaR9zjP2mR .mbr-section-btn {
  color: #ffffff;
}
.cid-vaR9zjP2mR H4 {
  color: #ffffff;
}
.cid-vaR9zjP2mR H3 {
  color: #000000;
}
.cid-vaQePmkH7I {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaQePmkH7I .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQePmkH7I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQePmkH7I .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-vaQePmkH7I .container {
    padding: 0 50px !important;
  }
}
.cid-vaQePmkH7I .row {
  align-items: stretch;
}
.cid-vaQePmkH7I .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-vaQePmkH7I .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-vaQePmkH7I .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vaQePmkH7I .text-wrapper {
    padding-top: 30px;
  }
}
.cid-vaQePmkH7I .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vaQePmkH7I .card-title {
    text-align: center;
  }
}
.cid-vaQePmkH7I .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-vaQePmkH7I .mbr-text {
    text-align: center;
  }
}
.cid-vaQePmkH7I .col-img {
  width: 53%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-right: 75px !important;
}
@media (max-width: 967px) {
  .cid-vaQePmkH7I .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-vaQePmkH7I .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-vaQePmkH7I .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-vaQePmkH7I .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-vaQePmkH7I .image-wrapper {
    padding-right: 0;
  }
}
.cid-vaQePmkH7I .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #cde2bb;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  height: 65%;
  width: 90%;
}
.cid-vaQePmkH7I .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-vaQePmkH7I .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-vaQePmkH7I .mbr-text,
.cid-vaQePmkH7I .mbr-section-btn {
  text-align: justify;
}
.cid-vaRard6bu4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/trait-secretaire-independante-2000x81.webp");
}
.cid-vaRard6bu4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRard6bu4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaRard6bu4 .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-vaRard6bu4 .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-vaRard6bu4 .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-vaRard6bu4 .wrapper {
  padding: 30px 0;
}
.cid-vaRard6bu4 .mbr-section-title {
  color: #fafafa;
}
.cid-vaRard6bu4 .mbr-text,
.cid-vaRard6bu4 .mbr-section-btn {
  color: #ffffff;
}
.cid-vaRard6bu4 H4 {
  color: #ffffff;
}
.cid-vaRard6bu4 H3 {
  color: #000000;
}
.cid-vaQgL1HnUQ {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-vaQgL1HnUQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQgL1HnUQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQgL1HnUQ .container {
  max-width: 1140px;
}
@media (max-width: 991px) {
  .cid-vaQgL1HnUQ .container {
    padding: 0 50px !important;
  }
}
.cid-vaQgL1HnUQ .row {
  align-items: stretch;
  flex-direction: row-reverse;
}
.cid-vaQgL1HnUQ .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-vaQgL1HnUQ .col-text {
    width: 100%;
    padding: 0 !important;
  }
}
.cid-vaQgL1HnUQ .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vaQgL1HnUQ .text-wrapper {
    padding-top: 30px;
  }
}
.cid-vaQgL1HnUQ .card-title {
  color: #000000;
  opacity: 0.85;
  margin-bottom: 0 !important;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-vaQgL1HnUQ .card-title {
    text-align: center;
  }
}
.cid-vaQgL1HnUQ .mbr-text {
  color: #1d191f;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0 !important;
}
@media (max-width: 767px) {
  .cid-vaQgL1HnUQ .mbr-text {
    text-align: center;
  }
}
.cid-vaQgL1HnUQ .col-img {
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  padding-left: 75px !important;
}
@media (max-width: 767px) {
  .cid-vaQgL1HnUQ .col-img {
    width: 100%;
    padding: 0 !important;
    align-items: center;
  }
}
.cid-vaQgL1HnUQ .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  position: relative;
}
@media (max-width: 991px) {
  .cid-vaQgL1HnUQ .image-wrapper {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 767px) {
  .cid-vaQgL1HnUQ .image-wrapper {
    padding-right: 30px;
    max-width: 520px;
  }
}
@media (max-width: 575px) {
  .cid-vaQgL1HnUQ .image-wrapper {
    padding-right: 0;
  }
}
.cid-vaQgL1HnUQ .image-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  background-color: #f1d788;
  border-top-right-radius: 40%;
  border-bottom-right-radius: 40%;
  height: 65%;
  width: 90%;
}
.cid-vaQgL1HnUQ .image-wrapper .img-bg-wrap {
  margin-bottom: 19%;
  margin-left: 19%;
}
.cid-vaQgL1HnUQ .image-wrapper .img-bg-wrap img {
  position: relative;
  z-index: 2;
  height: auto;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
  border-top-right-radius: 120px;
}
.cid-vaQl299ffQ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #f1d788;
}
.cid-vaQl299ffQ .image-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 1rem;
  overflow: hidden;
}
.cid-vaQl299ffQ .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-vaQl299ffQ .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-vaQl299ffQ .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #90afa1;
}
.cid-vaQl299ffQ .svg-top .st0 {
  fill: #f1d788;
}
@media (max-width: 992px) {
  .cid-vaQl299ffQ .svg-top {
    width: 1000px;
  }
}
.cid-vaQl299ffQ .mbr-text {
  color: #000000;
}
.cid-vaQl299ffQ .mbr-section-title {
  color: #000000;
}
.cid-vaQl299ffQ .name {
  color: #000000;
}
.cid-vaQl299ffQ .position {
  color: #000000;
}
.cid-v9BT2GSUhP {
  padding-top: 45px;
  padding-bottom: 165px;
  background-image: url("../../../assets/images/vague-secretaire-independante-2000x358.webp");
}
.cid-v9BT2GSUhP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BT2GSUhP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BT2GSUhP .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-v9BT2GSUhP .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-v9BT2GSUhP .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-v9BT2GSUhP .wrapper {
  padding: 30px 0;
}
.cid-v9BT2GSUhP .mbr-section-title {
  color: #fafafa;
}
.cid-v9BT2GSUhP .mbr-text,
.cid-v9BT2GSUhP .mbr-section-btn {
  color: #ffffff;
}
.cid-v9BT2GSUhP H4 {
  color: #ffffff;
}
.cid-v9BT2GSUhP H3 {
  color: #000000;
}
.cid-vaRaeT8QfQ {
  padding-top: 90px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/frise-site-secretaire20copie-2000x217.webp");
}
.cid-vaRaeT8QfQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaRaeT8QfQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaRaeT8QfQ .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-vaRaeT8QfQ .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-vaRaeT8QfQ .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-vaRaeT8QfQ .wrapper {
  padding: 30px 0;
}
.cid-vaRaeT8QfQ .mbr-section-title {
  color: #fafafa;
}
.cid-vaRaeT8QfQ .mbr-text,
.cid-vaRaeT8QfQ .mbr-section-btn {
  color: #ffffff;
}
.cid-vaRaeT8QfQ H4 {
  color: #ffffff;
}
.cid-vaRaeT8QfQ H3 {
  color: #000000;
}
.cid-vaR8UcT4su {
  padding-top: 30px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
.cid-vaR8UcT4su .mbr-section-title {
  color: #06182d;
}
.cid-vaR8UcT4su .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #689681;
  background: linear-gradient(#689681 0%, #689681 69%, #90afa1 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-vaR8UcT4su .mbr-section-subtitle {
  color: #06182d;
}
.cid-vaR8UcT4su .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-vaR8UcT4su .mbr-text {
  color: #689681;
  font-weight: 300;
}
.cid-vaR8UcT4su .title-text {
  margin-bottom: 70px;
}
.cid-vaR8UcT4su .title-text .mbr-section-subtitle {
  color: #06182d;
}
.cid-vaR8UcT4su .title-text .mbr-section-subtitle.mbr-light {
  font-weight: 300;
}
.cid-vaR8UcT4su .title-text .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-vaR8UcT4su .title-text .mbr-section-title {
  color: #f1d788;
}
.cid-vaR8UcT4su .title-text .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-vaR8UcT4su .title-text .mbr-section-title span {
  font-weight: 500;
}
.cid-vaR8UcT4su .title-text .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-vaR8UcT4su .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  font-size: 1.4rem !important;
  color: #f1d788;
}
.cid-vaR8UcT4su .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-vaR8UcT4su .p-4 {
  padding: 1rem 0 !important;
}
.cid-vaR8UcT4su .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-vaR8UcT4su .mbri-arrow-down:before {
  content: "\e960";
}
.cid-vaR8UcT4su .mbri-arrow-up:before {
  content: "\e960";
}
.cid-vaR8UcT4su .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-vaR8UcT4su .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-vaR8UcT4su .card {
  border-radius: 0px;
  background-color: #f5f5f5;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 1.2rem;
}
.cid-vaR8UcT4su .card:hover .card-header {
  transition: all 0.15s linear 0s;
  opacity: 0.7;
}
.cid-vaR8UcT4su .card .card-header {
  border-radius: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-vaR8UcT4su .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-vaR8UcT4su .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  border-bottom: 2px solid #689681;
  transition: all 0.3s;
  justify-content: space-between;
}
.cid-vaR8UcT4su .card .card-header a.panel-title.collapsed {
  border-bottom: 1px solid #efefef;
}
.cid-vaR8UcT4su .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-vaR8UcT4su .card .card-header a.panel-title h4 {
  padding: 0 0rem 1.2rem;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.5px;
  color: #28303f;
}
.cid-vaR8UcT4su .card .card-header a.panel-title h4 .sign {
  line-height: 1.6 !important;
}
.cid-vaR8UcT4su .card .card-header a.panel-title .toggle-icon {
  right: 14px;
  position: absolute;
  top: 20px;
  transform: none;
  display: inline-block;
  height: 2px;
  margin-left: 0;
  width: 12px;
  border-radius: 50%;
  border: 2px solid rgba(97, 114, 138, 0.4);
  padding: 13px;
}
.cid-vaR8UcT4su .card .card-header a.panel-title .toggle-icon:before,
.cid-vaR8UcT4su .card .card-header a.panel-title .toggle-icon:after {
  background: currentColor;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-vaR8UcT4su .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: currentColor;
  border: 0;
  transform: none;
}
.cid-vaR8UcT4su .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-vaR8UcT4su .card .panel-body {
  padding: 14px 20px;
}
.cid-vaR8UcT4su .card .panel-body p {
  color: #689681;
  line-height: 1.5;
}
.cid-vaR8UcT4su .card .panel-body .display-4 {
  font-size: 16px;
}
.cid-vaR8UcT4su .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaR8UcT4su .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaR8UcT4su .title-text .mbr-section-title {
  color: #000000;
}
.cid-vaR8UcT4su .card .card-header a.panel-title h4 {
  color: #000000;
}
.cid-vaR8UcT4su .card .panel-body p {
  color: #000000;
}
.cid-v9HubyN2Wf {
  padding-top: 90px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/frise-site-secretaire20copie202-2000x215.webp");
}
.cid-v9HubyN2Wf .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9HubyN2Wf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9HubyN2Wf .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-v9HubyN2Wf .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-v9HubyN2Wf .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-v9HubyN2Wf .wrapper {
  padding: 30px 0;
}
.cid-v9HubyN2Wf .mbr-section-title {
  color: #fafafa;
}
.cid-v9HubyN2Wf .mbr-text,
.cid-v9HubyN2Wf .mbr-section-btn {
  color: #ffffff;
}
.cid-v9HubyN2Wf H4 {
  color: #ffffff;
}
.cid-v9HubyN2Wf H3 {
  color: #000000;
}
.cid-vaQIcgVTmC {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vaQIcgVTmC .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQIcgVTmC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQIcgVTmC .mbr-section-title {
  color: #24262b;
}
.cid-vaQIcgVTmC .mbr-section-subtitle {
  color: #24262b;
}
.cid-vaQIcgVTmC .mbr-section-btn {
  margin-top: 16px;
}
.cid-vc2PDkDYkf {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc2PDkDYkf .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vc2PDkDYkf label {
  padding: 0 1rem;
}
.cid-vc2PDkDYkf textarea {
  min-height: 150px;
}
.cid-vc2PDkDYkf .btn {
  padding: 1rem 3rem;
}
@media (min-width: 992px) {
  .cid-vc2PDkDYkf .image-wrapper {
    max-width: 80%;
  }
}
.cid-vc2PDkDYkf .row {
  align-items: center;
}
.cid-vc2PDkDYkf .form-control,
.cid-vc2PDkDYkf .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cde2bb !important;
  border-radius: 0;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vc2PDkDYkf .form-control::-webkit-input-placeholder,
.cid-vc2PDkDYkf .field-input::-webkit-input-placeholder,
.cid-vc2PDkDYkf .form-control::-webkit-input-placeholder,
.cid-vc2PDkDYkf .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-vc2PDkDYkf .form-control:-moz-placeholder,
.cid-vc2PDkDYkf .field-input:-moz-placeholder,
.cid-vc2PDkDYkf .form-control:-moz-placeholder,
.cid-vc2PDkDYkf .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-vc2PDkDYkf .form-control:hover,
.cid-vc2PDkDYkf .field-input:hover,
.cid-vc2PDkDYkf .form-control:focus,
.cid-vc2PDkDYkf .field-input:focus {
  background-color: #fdefc4;
  border-color: #689681 !important;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-vc2PDkDYkf .form-control:hover::-webkit-input-placeholder,
.cid-vc2PDkDYkf .field-input:hover::-webkit-input-placeholder,
.cid-vc2PDkDYkf .form-control:focus::-webkit-input-placeholder,
.cid-vc2PDkDYkf .field-input:focus::-webkit-input-placeholder,
.cid-vc2PDkDYkf .form-control:hover::-webkit-input-placeholder,
.cid-vc2PDkDYkf .field-input:hover::-webkit-input-placeholder,
.cid-vc2PDkDYkf .form-control:focus::-webkit-input-placeholder,
.cid-vc2PDkDYkf .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-vc2PDkDYkf .form-control:hover:-moz-placeholder,
.cid-vc2PDkDYkf .field-input:hover:-moz-placeholder,
.cid-vc2PDkDYkf .form-control:focus:-moz-placeholder,
.cid-vc2PDkDYkf .field-input:focus:-moz-placeholder,
.cid-vc2PDkDYkf .form-control:hover:-moz-placeholder,
.cid-vc2PDkDYkf .field-input:hover:-moz-placeholder,
.cid-vc2PDkDYkf .form-control:focus:-moz-placeholder,
.cid-vc2PDkDYkf .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-vc2PDkDYkf .jq-number__spin:hover,
.cid-vc2PDkDYkf .jq-number__spin:focus {
  background-color: #fdefc4;
  border-color: #689681;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-vc2PDkDYkf .jq-number__spin {
  background-color: #ffffff;
  border-color: #cde2bb;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vc2PDkDYkf .jq-selectbox li,
.cid-vc2PDkDYkf .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-vc2PDkDYkf .jq-selectbox li:hover,
.cid-vc2PDkDYkf .jq-selectbox li.selected {
  background-color: #fdefc4;
  color: #000000;
}
.cid-vc2PDkDYkf .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-vc2PDkDYkf .jq-number__spin.minus:hover:after,
.cid-vc2PDkDYkf .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-vc2PDkDYkf .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-vc2PDkDYkf .jq-number__spin.minus:after,
.cid-vc2PDkDYkf .jq-number__spin.plus:after {
  border-top-color: #fdefc4;
  border-bottom-color: #fdefc4;
}
.cid-vc2PDkDYkf input::-webkit-clear-button {
  display: none;
}
.cid-vc2PDkDYkf input::-webkit-inner-spin-button {
  display: none;
}
.cid-vc2PDkDYkf input::-webkit-outer-spin-button {
  display: none;
}
.cid-vc2PDkDYkf input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-vc2PDkDYkf .wrapper {
  display: flex;
}
.cid-vc2PDkDYkf .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #90afa1;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vc2PDkDYkf .wrapper {
    flex-direction: column;
  }
  .cid-vc2PDkDYkf .iconfont-wrapper {
    margin: auto;
  }
  .cid-vc2PDkDYkf .mbr-iconfont {
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
}
.cid-vc2PDkDYkf .mbr-section-title {
  color: #000000;
}
.cid-vaUHTmn2To {
  padding-top: 165px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/vague-secretaire-independante-1-2000x358.webp");
}
.cid-vaUHTmn2To .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaUHTmn2To .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaUHTmn2To .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-vaUHTmn2To .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-vaUHTmn2To .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-vaUHTmn2To .wrapper {
  padding: 30px 0;
}
.cid-vaUHTmn2To .mbr-section-title {
  color: #fafafa;
}
.cid-vaUHTmn2To .mbr-text,
.cid-vaUHTmn2To .mbr-section-btn {
  color: #ffffff;
}
.cid-vaUHTmn2To H4 {
  color: #ffffff;
}
.cid-vaUHTmn2To H3 {
  color: #000000;
}
.cid-vc2OJgKvww {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f1d788;
}
.cid-vc2OJgKvww .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-vc2OJgKvww .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-vc2OJgKvww .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-vc2OJgKvww .row {
    text-align: center;
  }
  .cid-vc2OJgKvww .row > div {
    margin: auto;
  }
  .cid-vc2OJgKvww .social-row {
    justify-content: center;
  }
}
.cid-vc2OJgKvww .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vc2OJgKvww .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-vc2OJgKvww .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vc2OJgKvww .list {
    margin-bottom: 0rem;
  }
}
.cid-vc2OJgKvww .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vc2OJgKvww .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vc2OJgKvww div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vc2OJgKvww .mbr-fallback-image.disabled {
  display: none;
}
.cid-vc2OJgKvww .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vc2OJgKvww .copyright {
  color: #000000;
}
.cid-vaQXXuNyUx {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 70px;
}
.cid-vaQXXuNyUx nav.navbar {
  position: fixed;
}
.cid-vaQXXuNyUx .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaQXXuNyUx .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vaQXXuNyUx .dropdown-item:hover,
.cid-vaQXXuNyUx .dropdown-item:focus {
  color: #90afa1 !important;
}
.cid-vaQXXuNyUx .dropdown-item:hover span {
  color: white;
}
.cid-vaQXXuNyUx .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vaQXXuNyUx .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vaQXXuNyUx .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vaQXXuNyUx .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vaQXXuNyUx .nav-link {
  position: relative;
}
.cid-vaQXXuNyUx .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vaQXXuNyUx .container {
    flex-wrap: nowrap;
  }
}
.cid-vaQXXuNyUx .navbar-caption:hover,
.cid-vaQXXuNyUx .navbar-caption:focus {
  color: #90afa1 !important;
}
.cid-vaQXXuNyUx .navbar-nav {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  width: calc(200%/3);
}
.cid-vaQXXuNyUx .navbar-nav .nav-item {
  color: #24262b;
}
.cid-vaQXXuNyUx .navbar-nav .nav-item:hover {
  color: #90afa1;
}
.cid-vaQXXuNyUx .navbar-nav .nav-item a.text-black {
  color: #24262b !important;
}
.cid-vaQXXuNyUx .navbar-nav .nav-item a:hover {
  color: #90afa1 !important;
}
.cid-vaQXXuNyUx .navbar-nav .nav-item .dropdown-menu {
  padding: 1.25rem 0 !important;
}
.cid-vaQXXuNyUx .navbar-nav .nav-item .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem !important;
}
.cid-vaQXXuNyUx .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover,
.cid-vaQXXuNyUx .navbar-nav .nav-item .dropdown-menu .dropdown-item:focus {
  color: #90afa1 !important;
}
.cid-vaQXXuNyUx .dropdown-menu,
.cid-vaQXXuNyUx .navbar.opened {
  background: #ffffff !important;
}
.cid-vaQXXuNyUx .nav-item:focus,
.cid-vaQXXuNyUx .nav-link:focus {
  outline: none;
}
.cid-vaQXXuNyUx .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vaQXXuNyUx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vaQXXuNyUx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vaQXXuNyUx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vaQXXuNyUx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vaQXXuNyUx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vaQXXuNyUx .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
  padding: 0 !important;
}
.cid-vaQXXuNyUx .navbar.opened {
  transition: all 0.3s;
}
.cid-vaQXXuNyUx .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vaQXXuNyUx .navbar .navbar-logo img {
  width: auto;
}
.cid-vaQXXuNyUx .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vaQXXuNyUx .navbar.collapsed {
  justify-content: center;
}
.cid-vaQXXuNyUx .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vaQXXuNyUx .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vaQXXuNyUx .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 7.2rem);
  }
}
.cid-vaQXXuNyUx .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vaQXXuNyUx .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vaQXXuNyUx .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vaQXXuNyUx .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vaQXXuNyUx .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-vaQXXuNyUx .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-vaQXXuNyUx .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vaQXXuNyUx .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vaQXXuNyUx .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vaQXXuNyUx .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vaQXXuNyUx .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vaQXXuNyUx .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vaQXXuNyUx .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vaQXXuNyUx .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vaQXXuNyUx .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-vaQXXuNyUx .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-vaQXXuNyUx .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-vaQXXuNyUx .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-vaQXXuNyUx .navbar.navbar-short {
  min-height: 70px;
}
.cid-vaQXXuNyUx .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  width: 25%;
}
.cid-vaQXXuNyUx .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vaQXXuNyUx .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vaQXXuNyUx .dropdown-item.active,
.cid-vaQXXuNyUx .dropdown-item:active {
  background-color: transparent;
}
.cid-vaQXXuNyUx .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vaQXXuNyUx .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vaQXXuNyUx .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vaQXXuNyUx .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vaQXXuNyUx .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vaQXXuNyUx .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vaQXXuNyUx ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vaQXXuNyUx .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  justify-content: flex-end;
  width: calc(100%/3);
}
.cid-vaQXXuNyUx button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-vaQXXuNyUx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-vaQXXuNyUx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-vaQXXuNyUx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaQXXuNyUx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-vaQXXuNyUx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-vaQXXuNyUx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaQXXuNyUx nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-vaQXXuNyUx nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-vaQXXuNyUx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vaQXXuNyUx .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-vaQXXuNyUx a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vaQXXuNyUx .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vaQXXuNyUx .navbar {
    height: 70px;
  }
  .cid-vaQXXuNyUx .navbar.opened {
    height: auto;
  }
  .cid-vaQXXuNyUx .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaQXXuNyUx .container-fluid {
  padding: 0 1rem !important;
}
.cid-vaQXXuNyUx .navbar-collapse {
  width: 75%;
}
@media (max-width: 991px) {
  .cid-vaQXXuNyUx .navbar-brand {
    width: auto !important;
    max-width: 80% !important;
  }
  .cid-vaQXXuNyUx .navbar-collapse {
    width: 100%;
  }
  .cid-vaQXXuNyUx .navbar-nav {
    width: 100%;
  }
  .cid-vaQXXuNyUx .navbar-buttons {
    justify-content: center;
    width: 100%;
  }
}
.cid-vaQXXwtoWE {
  padding-top: 7rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vaQXXwtoWE .img-row {
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .cid-vaQXXwtoWE .img-row {
    flex-wrap: nowrap;
  }
}
.cid-vaQXXwtoWE .item:focus,
.cid-vaQXXwtoWE span:focus {
  outline: none;
}
.cid-vaQXXwtoWE .mbr-section-title {
  color: #111111;
  margin-bottom: 20px;
}
.cid-vaQXXwtoWE .item-img {
  overflow: hidden;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .cid-vaQXXwtoWE .item-img {
    margin-bottom: 40px;
  }
}
.cid-vaQXXwtoWE .item-img img {
  height: 100px;
  width: auto;
  object-fit: cover;
}
.cid-vaQXXwtoWE .btn-item {
  width: 100%;
}
.cid-vaQXXwtoWE .mbr-section-btn {
  font-weight: 500;
}
@media (max-width: 575px) {
  .cid-vaQXXwtoWE .mbr-section-btn {
    flex-wrap: wrap;
    display: flex;
  }
  .cid-vaQXXwtoWE .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-vaQXXwtoWE .mbr-section-title,
.cid-vaQXXwtoWE .mbr-section-btn {
  text-align: justify;
}
.cid-vaQXXwtoWE .label-text {
  text-align: justify;
}
.cid-vaQXXzPhWU {
  padding-top: 90px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/frise-site-secretaire20copie202-2000x215.webp");
}
.cid-vaQXXzPhWU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQXXzPhWU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQXXzPhWU .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-vaQXXzPhWU .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-vaQXXzPhWU .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-vaQXXzPhWU .wrapper {
  padding: 30px 0;
}
.cid-vaQXXzPhWU .mbr-section-title {
  color: #fafafa;
}
.cid-vaQXXzPhWU .mbr-text,
.cid-vaQXXzPhWU .mbr-section-btn {
  color: #ffffff;
}
.cid-vaQXXzPhWU H4 {
  color: #ffffff;
}
.cid-vaQXXzPhWU H3 {
  color: #000000;
}
.cid-vaQXXAjddp {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-vaQXXAjddp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaQXXAjddp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaQXXAjddp .mbr-section-title {
  color: #24262b;
}
.cid-vaQXXAjddp .mbr-section-subtitle {
  color: #24262b;
}
.cid-vaQXXAjddp .mbr-section-btn {
  margin-top: 16px;
}
.cid-vc2PK6WS1T {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc2PK6WS1T .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-vc2PK6WS1T label {
  padding: 0 1rem;
}
.cid-vc2PK6WS1T textarea {
  min-height: 150px;
}
.cid-vc2PK6WS1T .btn {
  padding: 1rem 3rem;
}
@media (min-width: 992px) {
  .cid-vc2PK6WS1T .image-wrapper {
    max-width: 80%;
  }
}
.cid-vc2PK6WS1T .row {
  align-items: center;
}
.cid-vc2PK6WS1T .form-control,
.cid-vc2PK6WS1T .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cde2bb !important;
  border-radius: 0;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vc2PK6WS1T .form-control::-webkit-input-placeholder,
.cid-vc2PK6WS1T .field-input::-webkit-input-placeholder,
.cid-vc2PK6WS1T .form-control::-webkit-input-placeholder,
.cid-vc2PK6WS1T .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-vc2PK6WS1T .form-control:-moz-placeholder,
.cid-vc2PK6WS1T .field-input:-moz-placeholder,
.cid-vc2PK6WS1T .form-control:-moz-placeholder,
.cid-vc2PK6WS1T .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-vc2PK6WS1T .form-control:hover,
.cid-vc2PK6WS1T .field-input:hover,
.cid-vc2PK6WS1T .form-control:focus,
.cid-vc2PK6WS1T .field-input:focus {
  background-color: #fdefc4;
  border-color: #689681 !important;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-vc2PK6WS1T .form-control:hover::-webkit-input-placeholder,
.cid-vc2PK6WS1T .field-input:hover::-webkit-input-placeholder,
.cid-vc2PK6WS1T .form-control:focus::-webkit-input-placeholder,
.cid-vc2PK6WS1T .field-input:focus::-webkit-input-placeholder,
.cid-vc2PK6WS1T .form-control:hover::-webkit-input-placeholder,
.cid-vc2PK6WS1T .field-input:hover::-webkit-input-placeholder,
.cid-vc2PK6WS1T .form-control:focus::-webkit-input-placeholder,
.cid-vc2PK6WS1T .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-vc2PK6WS1T .form-control:hover:-moz-placeholder,
.cid-vc2PK6WS1T .field-input:hover:-moz-placeholder,
.cid-vc2PK6WS1T .form-control:focus:-moz-placeholder,
.cid-vc2PK6WS1T .field-input:focus:-moz-placeholder,
.cid-vc2PK6WS1T .form-control:hover:-moz-placeholder,
.cid-vc2PK6WS1T .field-input:hover:-moz-placeholder,
.cid-vc2PK6WS1T .form-control:focus:-moz-placeholder,
.cid-vc2PK6WS1T .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-vc2PK6WS1T .jq-number__spin:hover,
.cid-vc2PK6WS1T .jq-number__spin:focus {
  background-color: #fdefc4;
  border-color: #689681;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-vc2PK6WS1T .jq-number__spin {
  background-color: #ffffff;
  border-color: #cde2bb;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vc2PK6WS1T .jq-selectbox li,
.cid-vc2PK6WS1T .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-vc2PK6WS1T .jq-selectbox li:hover,
.cid-vc2PK6WS1T .jq-selectbox li.selected {
  background-color: #fdefc4;
  color: #000000;
}
.cid-vc2PK6WS1T .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-vc2PK6WS1T .jq-number__spin.minus:hover:after,
.cid-vc2PK6WS1T .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-vc2PK6WS1T .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-vc2PK6WS1T .jq-number__spin.minus:after,
.cid-vc2PK6WS1T .jq-number__spin.plus:after {
  border-top-color: #fdefc4;
  border-bottom-color: #fdefc4;
}
.cid-vc2PK6WS1T input::-webkit-clear-button {
  display: none;
}
.cid-vc2PK6WS1T input::-webkit-inner-spin-button {
  display: none;
}
.cid-vc2PK6WS1T input::-webkit-outer-spin-button {
  display: none;
}
.cid-vc2PK6WS1T input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-vc2PK6WS1T .wrapper {
  display: flex;
}
.cid-vc2PK6WS1T .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #90afa1;
  margin-right: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vc2PK6WS1T .wrapper {
    flex-direction: column;
  }
  .cid-vc2PK6WS1T .iconfont-wrapper {
    margin: auto;
  }
  .cid-vc2PK6WS1T .mbr-iconfont {
    margin-right: 0rem;
    margin-bottom: 2rem;
  }
}
.cid-vc2PK6WS1T .mbr-section-title {
  color: #000000;
}
.cid-vc2AfpDpSd {
  padding-top: 90px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/vague-secretaire-independante-1-2000x358.webp");
}
.cid-vc2AfpDpSd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vc2AfpDpSd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vc2AfpDpSd .card {
  border-radius: 0 !important;
}
@media (min-width: 992px) {
  .cid-vc2AfpDpSd .card {
    border-right: 1px solid white;
  }
}
@media (max-width: 991px) {
  .cid-vc2AfpDpSd .card {
    border-right: 0px;
    border-bottom: 1px solid white;
  }
}
.cid-vc2AfpDpSd .wrapper {
  padding: 30px 0;
}
.cid-vc2AfpDpSd .mbr-section-title {
  color: #fafafa;
}
.cid-vc2AfpDpSd .mbr-text,
.cid-vc2AfpDpSd .mbr-section-btn {
  color: #ffffff;
}
.cid-vc2AfpDpSd H4 {
  color: #ffffff;
}
.cid-vc2AfpDpSd H3 {
  color: #000000;
}
.cid-vc2OJgKvww {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #f1d788;
}
.cid-vc2OJgKvww .media-wrap {
  padding: 0;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-vc2OJgKvww .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .cid-vc2OJgKvww .media-wrap {
    margin: 0 auto 25px;
  }
}
@media (max-width: 767px) {
  .cid-vc2OJgKvww .row {
    text-align: center;
  }
  .cid-vc2OJgKvww .row > div {
    margin: auto;
  }
  .cid-vc2OJgKvww .social-row {
    justify-content: center;
  }
}
.cid-vc2OJgKvww .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-vc2OJgKvww .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-vc2OJgKvww .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vc2OJgKvww .list {
    margin-bottom: 0rem;
  }
}
.cid-vc2OJgKvww .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-vc2OJgKvww .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-vc2OJgKvww div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-vc2OJgKvww .mbr-fallback-image.disabled {
  display: none;
}
.cid-vc2OJgKvww .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vc2OJgKvww .copyright {
  color: #000000;
}
