/* Colors CSS */
/* --------- */
/* primary Color Style */
/* ----------------------- */
/* Text color */
/* ---------- */
.primary {
  color: #e6007e !important;
}

/* text with light primary */
.text-light-primary {
  color: rgba(230, 0, 126, 0.2) !important;
}

/* Background color */
/* ---------------- */
.bg-primary {
  background-color: #e6007e !important;
}
.bg-primary .card-header,
.bg-primary .card-footer {
  background-color: transparent;
}

/* bg color lighten for rgba - opacity set */
.bg-rgba-primary,
.bg-light-primary {
  background: rgba(230, 0, 126, 0.2) !important;
}
.bg-rgba-primary.alert,
.bg-light-primary.alert {
  color: #e6007e;
}
.bg-rgba-primary.alert.alert-dismissible .close,
.bg-light-primary.alert.alert-dismissible .close {
  color: #e6007e;
}

/* Alert primary */
/* ---------------- */
.alert.alert-primary {
  background: #e6007e !important;
  color: #fff !important;
  box-shadow: 0 3px 8px 0 rgba(230, 0, 126, 0.4);
  border: none;
}

/* Badges */
/* ------ */
.badge.badge-primary {
  background-color: #e6007e;
}
.badge.badge-light-primary {
  background-color: #ffd7ed;
  color: #e6007e !important;
}

/* Basic buttons */
/* ------------- */
.btn-primary {
  background-color: #e6007e !important;
  border: 1px solid #e6007e !important;
  color: #fff;
}
.btn-primary:hover, .btn-primary.hover {
  background-color: #ff018c !important;
  border-color: #ff018c !important;
  color: #fff;
}
.btn-primary:hover.glow, .btn-primary.hover.glow {
  box-shadow: 0 4px 12px 0 rgba(230, 0, 126, 0.6) !important;
}
.btn-primary:focus, .btn-primary:active, .btn-primary.active {
  background-color: #cd0070 !important;
  color: #fff !important;
}
.btn-primary.glow {
  box-shadow: 0 2px 4px 0 rgba(230, 0, 126, 0.5) !important;
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #fff !important;
}

.btn-light-primary {
  background-color: #ffd7ed;
  color: #e6007e !important;
}
.btn-light-primary:hover, .btn-light-primary.hover {
  background-color: #ff018c !important;
  color: #fff !important;
}
.btn-light-primary:active, .btn-light-primary.active {
  background-color: #cd0070 !important;
  color: #fff !important;
}

/* Outline buttons */
.btn-outline-primary {
  border: 1px solid #e6007e !important;
  background-color: #fff !important;
  color: #e6007e !important;
}
.btn-outline-primary i {
  color: #e6007e !important;
}
.btn-outline-primary:hover, .btn-outline-primary.hover {
  background-color: #ff018c !important;
  color: #fff !important;
}
.btn-outline-primary:hover i, .btn-outline-primary.hover i {
  color: #fff !important;
}
.btn-outline-primary:active, .btn-outline-primary.active {
  background-color: #cd0070 !important;
  color: #fff !important;
}
.btn-outline-primary:active i, .btn-outline-primary.active i {
  color: #fff !important;
}

/* Custom Checkbox & Radio - Colored */
/* --------------------------------- */
input[type=checkbox].bg-primary + .custom-control-label:before, input[type=radio].bg-primary + .custom-control-label:before {
  background-color: #e6007e !important;
  border-color: #b30062 !important;
}

.checkbox.checkbox-primary input:checked ~ label::before, .checkbox.radio-primary input:checked ~ label::before, .radio.checkbox-primary input:checked ~ label::before, .radio.radio-primary input:checked ~ label::before {
  background-color: #e6007e;
  border-color: #e6007e;
}
.checkbox.checkbox-primary input:checked ~ label::after, .checkbox.radio-primary input:checked ~ label::after, .radio.checkbox-primary input:checked ~ label::after, .radio.radio-primary input:checked ~ label::after {
  border-color: #fff;
}
.checkbox.checkbox-primary.checkbox-glow input:checked ~ label::before, .checkbox.checkbox-primary.radio-glow input:checked ~ label::before, .checkbox.radio-primary.checkbox-glow input:checked ~ label::before, .checkbox.radio-primary.radio-glow input:checked ~ label::before, .radio.checkbox-primary.checkbox-glow input:checked ~ label::before, .radio.checkbox-primary.radio-glow input:checked ~ label::before, .radio.radio-primary.checkbox-glow input:checked ~ label::before, .radio.radio-primary.radio-glow input:checked ~ label::before {
  box-shadow: 0 0 6px 0 rgba(230, 0, 126, 0.7);
}
.checkbox.checkbox-primary.checkbox-icon label i, .checkbox.radio-primary.checkbox-icon label i, .radio.checkbox-primary.checkbox-icon label i, .radio.radio-primary.checkbox-icon label i {
  color: #fff;
}

.checkbox.checkbox-primary label:after {
  transition: 250ms ease-in-out;
}

.radio.radio-primary input:checked ~ label::after {
  background-color: #fff;
  transition: all 0.15s cubic-bezier(0.35, 0.9, 0.4, 0.9);
}

/* secondary Color Style */
/* ----------------------- */
/* Text color */
/* ---------- */
.secondary {
  color: #780145 !important;
}

/* text with light secondary */
.text-light-secondary {
  color: rgba(120, 1, 69, 0.2) !important;
}

/* Background color */
/* ---------------- */
.bg-secondary {
  background-color: #780145 !important;
}
.bg-secondary .card-header,
.bg-secondary .card-footer {
  background-color: transparent;
}

/* bg color lighten for rgba - opacity set */
.bg-rgba-secondary,
.bg-light-secondary {
  background: rgba(120, 1, 69, 0.2) !important;
}
.bg-rgba-secondary.alert,
.bg-light-secondary.alert {
  color: #780145;
}
.bg-rgba-secondary.alert.alert-dismissible .close,
.bg-light-secondary.alert.alert-dismissible .close {
  color: #780145;
}

/* Alert secondary */
/* ---------------- */
.alert.alert-secondary {
  background: #780145 !important;
  color: #fff !important;
  box-shadow: 0 3px 8px 0 rgba(120, 1, 69, 0.4);
  border: none;
}

/* Badges */
/* ------ */
.badge.badge-secondary {
  background-color: #780145;
}
.badge.badge-light-secondary {
  background-color: #ebd9e3;
  color: #780145 !important;
}

/* Basic buttons */
/* ------------- */
.btn-secondary {
  background-color: #780145 !important;
  border: 1px solid #780145 !important;
  color: #fff;
}
.btn-secondary:hover, .btn-secondary.hover {
  background-color: #ab0162 !important;
  border-color: #ab0162 !important;
  color: #fff;
}
.btn-secondary:hover.glow, .btn-secondary.hover.glow {
  box-shadow: 0 4px 12px 0 rgba(120, 1, 69, 0.6) !important;
}
.btn-secondary:focus, .btn-secondary:active, .btn-secondary.active {
  background-color: #550131 !important;
  color: #fff !important;
}
.btn-secondary.glow {
  box-shadow: 0 2px 4px 0 rgba(120, 1, 69, 0.5) !important;
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff !important;
}

.btn-light-secondary {
  background-color: #ebd9e3;
  color: #780145 !important;
}
.btn-light-secondary:hover, .btn-light-secondary.hover {
  background-color: #ab0162 !important;
  color: #fff !important;
}
.btn-light-secondary:active, .btn-light-secondary.active {
  background-color: #550131 !important;
  color: #fff !important;
}

/* Outline buttons */
.btn-outline-secondary {
  border: 1px solid #780145 !important;
  background-color: #fff !important;
  color: #780145 !important;
}
.btn-outline-secondary i {
  color: #780145 !important;
}
.btn-outline-secondary:hover, .btn-outline-secondary.hover {
  background-color: #ab0162 !important;
  color: #fff !important;
}
.btn-outline-secondary:hover i, .btn-outline-secondary.hover i {
  color: #fff !important;
}
.btn-outline-secondary:active, .btn-outline-secondary.active {
  background-color: #550131 !important;
  color: #fff !important;
}
.btn-outline-secondary:active i, .btn-outline-secondary.active i {
  color: #fff !important;
}

/* Custom Checkbox & Radio - Colored */
/* --------------------------------- */
input[type=checkbox].bg-secondary + .custom-control-label:before, input[type=radio].bg-secondary + .custom-control-label:before {
  background-color: #780145 !important;
  border-color: #450128 !important;
}

.checkbox.checkbox-secondary input:checked ~ label::before, .checkbox.radio-secondary input:checked ~ label::before, .radio.checkbox-secondary input:checked ~ label::before, .radio.radio-secondary input:checked ~ label::before {
  background-color: #780145;
  border-color: #780145;
}
.checkbox.checkbox-secondary input:checked ~ label::after, .checkbox.radio-secondary input:checked ~ label::after, .radio.checkbox-secondary input:checked ~ label::after, .radio.radio-secondary input:checked ~ label::after {
  border-color: #fff;
}
.checkbox.checkbox-secondary.checkbox-glow input:checked ~ label::before, .checkbox.checkbox-secondary.radio-glow input:checked ~ label::before, .checkbox.radio-secondary.checkbox-glow input:checked ~ label::before, .checkbox.radio-secondary.radio-glow input:checked ~ label::before, .radio.checkbox-secondary.checkbox-glow input:checked ~ label::before, .radio.checkbox-secondary.radio-glow input:checked ~ label::before, .radio.radio-secondary.checkbox-glow input:checked ~ label::before, .radio.radio-secondary.radio-glow input:checked ~ label::before {
  box-shadow: 0 0 6px 0 rgba(120, 1, 69, 0.7);
}
.checkbox.checkbox-secondary.checkbox-icon label i, .checkbox.radio-secondary.checkbox-icon label i, .radio.checkbox-secondary.checkbox-icon label i, .radio.radio-secondary.checkbox-icon label i {
  color: #fff;
}

.checkbox.checkbox-secondary label:after {
  transition: 250ms ease-in-out;
}

.radio.radio-secondary input:checked ~ label::after {
  background-color: #fff;
  transition: all 0.15s cubic-bezier(0.35, 0.9, 0.4, 0.9);
}

/* tertiary Color Style */
/* ----------------------- */
/* Text color */
/* ---------- */
.tertiary {
  color: #1e3157 !important;
}

/* text with light tertiary */
.text-light-tertiary {
  color: rgba(30, 49, 87, 0.2) !important;
}

/* Background color */
/* ---------------- */
.bg-tertiary {
  background-color: #1e3157 !important;
}
.bg-tertiary .card-header,
.bg-tertiary .card-footer {
  background-color: transparent;
}

/* bg color lighten for rgba - opacity set */
.bg-rgba-tertiary,
.bg-light-tertiary {
  background: rgba(30, 49, 87, 0.2) !important;
}
.bg-rgba-tertiary.alert,
.bg-light-tertiary.alert {
  color: #1e3157;
}
.bg-rgba-tertiary.alert.alert-dismissible .close,
.bg-light-tertiary.alert.alert-dismissible .close {
  color: #1e3157;
}

/* Alert tertiary */
/* ---------------- */
.alert.alert-tertiary {
  background: #1e3157 !important;
  color: #fff !important;
  box-shadow: 0 3px 8px 0 rgba(30, 49, 87, 0.4);
  border: none;
}

/* Badges */
/* ------ */
.badge.badge-tertiary {
  background-color: #1e3157;
}
.badge.badge-light-tertiary {
  background-color: #ccd6df;
  color: #1e3157 !important;
}

/* Basic buttons */
/* ------------- */
.btn-tertiary {
  background-color: #1e3157 !important;
  border: 1px solid #1e3157 !important;
  color: #fff;
}
.btn-tertiary:hover, .btn-tertiary.hover {
  background-color: #2b467d !important;
  border-color: #2b467d !important;
  color: #fff;
}
.btn-tertiary:hover.glow, .btn-tertiary.hover.glow {
  box-shadow: 0 4px 12px 0 rgba(30, 49, 87, 0.6) !important;
}
.btn-tertiary:focus, .btn-tertiary:active, .btn-tertiary.active {
  background-color: #172644 !important;
  color: #fff !important;
}
.btn-tertiary.glow {
  box-shadow: 0 2px 4px 0 rgba(30, 49, 87, 0.5) !important;
}
.btn-tertiary:disabled, .btn-tertiary.disabled {
  color: #fff !important;
}

.btn-light-tertiary {
  background-color: #ccd6df;
  color: #1e3157 !important;
}
.btn-light-tertiary:hover, .btn-light-tertiary.hover {
  background-color: #2b467d !important;
  color: #fff !important;
}
.btn-light-tertiary:active, .btn-light-tertiary.active {
  background-color: #172644 !important;
  color: #fff !important;
}

/* Outline buttons */
.btn-outline-tertiary {
  border: 1px solid #1e3157 !important;
  background-color: #fff !important;
  color: #1e3157 !important;
}
.btn-outline-tertiary i {
  color: #1e3157 !important;
}
.btn-outline-tertiary:hover, .btn-outline-tertiary.hover {
  background-color: #2b467d !important;
  color: #fff !important;
}
.btn-outline-tertiary:hover i, .btn-outline-tertiary.hover i {
  color: #fff !important;
}
.btn-outline-tertiary:active, .btn-outline-tertiary.active {
  background-color: #172644 !important;
  color: #fff !important;
}
.btn-outline-tertiary:active i, .btn-outline-tertiary.active i {
  color: #fff !important;
}

/* Custom Checkbox & Radio - Colored */
/* --------------------------------- */
input[type=checkbox].bg-tertiary + .custom-control-label:before, input[type=radio].bg-tertiary + .custom-control-label:before {
  background-color: #1e3157 !important;
  border-color: #111c31 !important;
}

.checkbox.checkbox-tertiary input:checked ~ label::before, .checkbox.radio-tertiary input:checked ~ label::before, .radio.checkbox-tertiary input:checked ~ label::before, .radio.radio-tertiary input:checked ~ label::before {
  background-color: #1e3157;
  border-color: #1e3157;
}
.checkbox.checkbox-tertiary input:checked ~ label::after, .checkbox.radio-tertiary input:checked ~ label::after, .radio.checkbox-tertiary input:checked ~ label::after, .radio.radio-tertiary input:checked ~ label::after {
  border-color: #fff;
}
.checkbox.checkbox-tertiary.checkbox-glow input:checked ~ label::before, .checkbox.checkbox-tertiary.radio-glow input:checked ~ label::before, .checkbox.radio-tertiary.checkbox-glow input:checked ~ label::before, .checkbox.radio-tertiary.radio-glow input:checked ~ label::before, .radio.checkbox-tertiary.checkbox-glow input:checked ~ label::before, .radio.checkbox-tertiary.radio-glow input:checked ~ label::before, .radio.radio-tertiary.checkbox-glow input:checked ~ label::before, .radio.radio-tertiary.radio-glow input:checked ~ label::before {
  box-shadow: 0 0 6px 0 rgba(30, 49, 87, 0.7);
}
.checkbox.checkbox-tertiary.checkbox-icon label i, .checkbox.radio-tertiary.checkbox-icon label i, .radio.checkbox-tertiary.checkbox-icon label i, .radio.radio-tertiary.checkbox-icon label i {
  color: #fff;
}

.checkbox.checkbox-tertiary label:after {
  transition: 250ms ease-in-out;
}

.radio.radio-tertiary input:checked ~ label::after {
  background-color: #fff;
  transition: all 0.15s cubic-bezier(0.35, 0.9, 0.4, 0.9);
}

/* quaternary Color Style */
/* ----------------------- */
/* Text color */
/* ---------- */
.quaternary {
  color: #204aa9 !important;
}

/* text with light quaternary */
.text-light-quaternary {
  color: rgba(32, 74, 169, 0.2) !important;
}

/* Background color */
/* ---------------- */
.bg-quaternary {
  background-color: #204aa9 !important;
}
.bg-quaternary .card-header,
.bg-quaternary .card-footer {
  background-color: transparent;
}

/* bg color lighten for rgba - opacity set */
.bg-rgba-quaternary,
.bg-light-quaternary {
  background: rgba(32, 74, 169, 0.2) !important;
}
.bg-rgba-quaternary.alert,
.bg-light-quaternary.alert {
  color: #204aa9;
}
.bg-rgba-quaternary.alert.alert-dismissible .close,
.bg-light-quaternary.alert.alert-dismissible .close {
  color: #204aa9;
}

/* Alert quaternary */
/* ---------------- */
.alert.alert-quaternary {
  background: #204aa9 !important;
  color: #fff !important;
  box-shadow: 0 3px 8px 0 rgba(32, 74, 169, 0.4);
  border: none;
}

/* Badges */
/* ------ */
.badge.badge-quaternary {
  background-color: #204aa9;
}
.badge.badge-light-quaternary {
  background-color: #d2ddf6;
  color: #204aa9 !important;
}

/* Basic buttons */
/* ------------- */
.btn-quaternary {
  background-color: #204aa9 !important;
  border: 1px solid #204aa9 !important;
  color: #fff;
}
.btn-quaternary:hover, .btn-quaternary.hover {
  background-color: #285dd4 !important;
  border-color: #285dd4 !important;
  color: #fff;
}
.btn-quaternary:hover.glow, .btn-quaternary.hover.glow {
  box-shadow: 0 4px 12px 0 rgba(32, 74, 169, 0.6) !important;
}
.btn-quaternary:focus, .btn-quaternary:active, .btn-quaternary.active {
  background-color: #18377e !important;
  color: #fff !important;
}
.btn-quaternary.glow {
  box-shadow: 0 2px 4px 0 rgba(32, 74, 169, 0.5) !important;
}
.btn-quaternary:disabled, .btn-quaternary.disabled {
  color: #fff !important;
}

.btn-light-quaternary {
  background-color: #d2ddf6;
  color: #204aa9 !important;
}
.btn-light-quaternary:hover, .btn-light-quaternary.hover {
  background-color: #285dd4 !important;
  color: #fff !important;
}
.btn-light-quaternary:active, .btn-light-quaternary.active {
  background-color: #18377e !important;
  color: #fff !important;
}

/* Outline buttons */
.btn-outline-quaternary {
  border: 1px solid #204aa9 !important;
  background-color: #fff !important;
  color: #204aa9 !important;
}
.btn-outline-quaternary i {
  color: #204aa9 !important;
}
.btn-outline-quaternary:hover, .btn-outline-quaternary.hover {
  background-color: #285dd4 !important;
  color: #fff !important;
}
.btn-outline-quaternary:hover i, .btn-outline-quaternary.hover i {
  color: #fff !important;
}
.btn-outline-quaternary:active, .btn-outline-quaternary.active {
  background-color: #18377e !important;
  color: #fff !important;
}
.btn-outline-quaternary:active i, .btn-outline-quaternary.active i {
  color: #fff !important;
}

/* Custom Checkbox & Radio - Colored */
/* --------------------------------- */
input[type=checkbox].bg-quaternary + .custom-control-label:before, input[type=radio].bg-quaternary + .custom-control-label:before {
  background-color: #204aa9 !important;
  border-color: #142e69 !important;
}

.checkbox.checkbox-quaternary input:checked ~ label::before, .checkbox.radio-quaternary input:checked ~ label::before, .radio.checkbox-quaternary input:checked ~ label::before, .radio.radio-quaternary input:checked ~ label::before {
  background-color: #204aa9;
  border-color: #204aa9;
}
.checkbox.checkbox-quaternary input:checked ~ label::after, .checkbox.radio-quaternary input:checked ~ label::after, .radio.checkbox-quaternary input:checked ~ label::after, .radio.radio-quaternary input:checked ~ label::after {
  border-color: #fff;
}
.checkbox.checkbox-quaternary.checkbox-glow input:checked ~ label::before, .checkbox.checkbox-quaternary.radio-glow input:checked ~ label::before, .checkbox.radio-quaternary.checkbox-glow input:checked ~ label::before, .checkbox.radio-quaternary.radio-glow input:checked ~ label::before, .radio.checkbox-quaternary.checkbox-glow input:checked ~ label::before, .radio.checkbox-quaternary.radio-glow input:checked ~ label::before, .radio.radio-quaternary.checkbox-glow input:checked ~ label::before, .radio.radio-quaternary.radio-glow input:checked ~ label::before {
  box-shadow: 0 0 6px 0 rgba(32, 74, 169, 0.7);
}
.checkbox.checkbox-quaternary.checkbox-icon label i, .checkbox.radio-quaternary.checkbox-icon label i, .radio.checkbox-quaternary.checkbox-icon label i, .radio.radio-quaternary.checkbox-icon label i {
  color: #fff;
}

.checkbox.checkbox-quaternary label:after {
  transition: 250ms ease-in-out;
}

.radio.radio-quaternary input:checked ~ label::after {
  background-color: #fff;
  transition: all 0.15s cubic-bezier(0.35, 0.9, 0.4, 0.9);
}

/* quinquenary Color Style */
/* ----------------------- */
/* Text color */
/* ---------- */
.quinquenary {
  color: #6579b7 !important;
}

/* text with light quinquenary */
.text-light-quinquenary {
  color: rgba(101, 121, 183, 0.2) !important;
}

/* Background color */
/* ---------------- */
.bg-quinquenary {
  background-color: #6579b7 !important;
}
.bg-quinquenary .card-header,
.bg-quinquenary .card-footer {
  background-color: transparent;
}

/* bg color lighten for rgba - opacity set */
.bg-rgba-quinquenary,
.bg-light-quinquenary {
  background: rgba(101, 121, 183, 0.2) !important;
}
.bg-rgba-quinquenary.alert,
.bg-light-quinquenary.alert {
  color: #6579b7;
}
.bg-rgba-quinquenary.alert.alert-dismissible .close,
.bg-light-quinquenary.alert.alert-dismissible .close {
  color: #6579b7;
}

/* Alert quinquenary */
/* ---------------- */
.alert.alert-quinquenary {
  background: #6579b7 !important;
  color: #fff !important;
  box-shadow: 0 3px 8px 0 rgba(101, 121, 183, 0.4);
  border: none;
}

/* Badges */
/* ------ */
.badge.badge-quinquenary {
  background-color: #6579b7;
}
.badge.badge-light-quinquenary {
  background-color: #f0f2f8;
  color: #6579b7 !important;
}

/* Basic buttons */
/* ------------- */
.btn-quinquenary {
  background-color: #6579b7 !important;
  border: 1px solid #6579b7 !important;
  color: #fff;
}
.btn-quinquenary:hover, .btn-quinquenary.hover {
  background-color: #8897c7 !important;
  border-color: #8897c7 !important;
  color: #fff;
}
.btn-quinquenary:hover.glow, .btn-quinquenary.hover.glow {
  box-shadow: 0 4px 12px 0 rgba(101, 121, 183, 0.6) !important;
}
.btn-quinquenary:focus, .btn-quinquenary:active, .btn-quinquenary.active {
  background-color: #546aaf !important;
  color: #fff !important;
}
.btn-quinquenary.glow {
  box-shadow: 0 2px 4px 0 rgba(101, 121, 183, 0.5) !important;
}
.btn-quinquenary:disabled, .btn-quinquenary.disabled {
  color: #fff !important;
}

.btn-light-quinquenary {
  background-color: #f0f2f8;
  color: #6579b7 !important;
}
.btn-light-quinquenary:hover, .btn-light-quinquenary.hover {
  background-color: #8897c7 !important;
  color: #fff !important;
}
.btn-light-quinquenary:active, .btn-light-quinquenary.active {
  background-color: #546aaf !important;
  color: #fff !important;
}

/* Outline buttons */
.btn-outline-quinquenary {
  border: 1px solid #6579b7 !important;
  background-color: #fff !important;
  color: #6579b7 !important;
}
.btn-outline-quinquenary i {
  color: #6579b7 !important;
}
.btn-outline-quinquenary:hover, .btn-outline-quinquenary.hover {
  background-color: #8897c7 !important;
  color: #fff !important;
}
.btn-outline-quinquenary:hover i, .btn-outline-quinquenary.hover i {
  color: #fff !important;
}
.btn-outline-quinquenary:active, .btn-outline-quinquenary.active {
  background-color: #546aaf !important;
  color: #fff !important;
}
.btn-outline-quinquenary:active i, .btn-outline-quinquenary.active i {
  color: #fff !important;
}

/* Custom Checkbox & Radio - Colored */
/* --------------------------------- */
input[type=checkbox].bg-quinquenary + .custom-control-label:before, input[type=radio].bg-quinquenary + .custom-control-label:before {
  background-color: #6579b7 !important;
  border-color: #4a5f9f !important;
}

.checkbox.checkbox-quinquenary input:checked ~ label::before, .checkbox.radio-quinquenary input:checked ~ label::before, .radio.checkbox-quinquenary input:checked ~ label::before, .radio.radio-quinquenary input:checked ~ label::before {
  background-color: #6579b7;
  border-color: #6579b7;
}
.checkbox.checkbox-quinquenary input:checked ~ label::after, .checkbox.radio-quinquenary input:checked ~ label::after, .radio.checkbox-quinquenary input:checked ~ label::after, .radio.radio-quinquenary input:checked ~ label::after {
  border-color: #fff;
}
.checkbox.checkbox-quinquenary.checkbox-glow input:checked ~ label::before, .checkbox.checkbox-quinquenary.radio-glow input:checked ~ label::before, .checkbox.radio-quinquenary.checkbox-glow input:checked ~ label::before, .checkbox.radio-quinquenary.radio-glow input:checked ~ label::before, .radio.checkbox-quinquenary.checkbox-glow input:checked ~ label::before, .radio.checkbox-quinquenary.radio-glow input:checked ~ label::before, .radio.radio-quinquenary.checkbox-glow input:checked ~ label::before, .radio.radio-quinquenary.radio-glow input:checked ~ label::before {
  box-shadow: 0 0 6px 0 rgba(101, 121, 183, 0.7);
}
.checkbox.checkbox-quinquenary.checkbox-icon label i, .checkbox.radio-quinquenary.checkbox-icon label i, .radio.checkbox-quinquenary.checkbox-icon label i, .radio.radio-quinquenary.checkbox-icon label i {
  color: #fff;
}

.checkbox.checkbox-quinquenary label:after {
  transition: 250ms ease-in-out;
}

.radio.radio-quinquenary input:checked ~ label::after {
  background-color: #fff;
  transition: all 0.15s cubic-bezier(0.35, 0.9, 0.4, 0.9);
}

@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand/Quicksand-Medium.woff2") format("woff2"), url("../fonts/quicksand/Quicksand-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Quicksand";
  src: url("../fonts/quicksand/Quicksand-Bold.woff2") format("woff2"), url("../fonts/quicksand/Quicksand-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.tns-outer {
  padding: 0 !important;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  transition: all 0s;
}
.tns-slider > .tns-item {
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}
.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}
.tns-t-ct {
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}
.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: calc(100% / 70);
  height: 10px;
  float: left;
}

.btn-devis {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-radius: 5px;
  border: 1px solid #204aa9;
  background: #204aa9;
  color: #ffe000;
  transition: all 0.2s ease 0s;
  text-align: center;
  padding: 0 40px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.btn-devis:hover {
  text-decoration: none;
}
.btn-devis:hover {
  background: #18377e;
  color: #ffe000;
}
.btn-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-radius: 5px;
  border: 1px solid #1e3157;
  background: #ffffff;
  color: #1e3157;
  transition: all 0.2s ease 0s;
  text-align: center;
  padding: 0 20px;
}
.btn-rating:hover {
  text-decoration: none;
}
.btn-rating .logo-google {
  width: 46px;
  height: 46px;
  margin-right: 10px;
}
.btn-rating .content-rating {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.btn-rating .content-rating .star-rating {
  width: 120px;
  height: 20px;
  margin-bottom: 5px;
}
.btn-rating .content-rating .infos-rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1e3157;
  line-height: 16px;
  text-rendering: optimizeLegibility;
}
.btn-rating .content-rating .infos-rating strong {
  font-weight: 700;
}
.btn-rating:hover {
  background-color: #dfe3f0;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .btn-devis {
    padding: 0 10px;
    height: 46px;
    font-size: 13px;
    line-height: 16px;
    letter-spacing: 0;
    width: 50%;
  }
  .btn-rating {
    padding: 0 10px;
    height: 46px;
  }
  .btn-rating .logo-google {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
  .btn-rating .content-rating .star-rating {
    width: 70px;
    height: auto;
    margin-bottom: 5px;
  }
  .btn-rating .content-rating .infos-rating {
    font-size: 12px;
    line-height: 12px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .btn-devis {
    height: 46px;
    padding: 0 20px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
  }
  .btn-rating {
    height: 46px;
    padding: 0 10px;
  }
  .btn-rating .logo-google {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  .btn-rating .content-rating .star-rating {
    width: 70px;
    height: auto;
    margin-bottom: 5px;
  }
  .btn-rating .content-rating .infos-rating {
    font-size: 14px;
    line-height: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .btn-devis {
    height: 46px;
    padding: 0 20px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
  }
  .btn-rating {
    height: 46px;
    padding: 0 10px;
  }
  .btn-rating .logo-google {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  .btn-rating .content-rating .star-rating {
    width: 70px;
    height: auto;
    margin-bottom: 5px;
  }
  .btn-rating .content-rating .infos-rating {
    font-size: 14px;
    line-height: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .btn-devis {
    padding: 0 20px;
    height: 50px;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.15em;
  }
  .btn-rating {
    height: 50px;
  }
  .btn-rating .logo-google {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }
  .btn-rating .content-rating .star-rating {
    width: 100px;
    height: auto;
    margin-bottom: 5px;
  }
  .btn-rating .content-rating .infos-rating {
    font-size: 15px;
    line-height: 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .btn-devis {
    height: 50px;
    padding: 0 30px;
    font-size: 16px;
    line-height: 16px;
  }
  .btn-rating {
    height: 50px;
    padding: 0 20px;
  }
  .btn-rating .logo-google {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }
  .btn-rating .content-rating .star-rating {
    width: 100px;
    height: auto;
    margin-bottom: 5px;
  }
  .btn-rating .content-rating .infos-rating {
    font-size: 15px;
    line-height: 15px;
  }
}
@property --degree {
  syntax: "<angle>";
  inherits: false;
  initial-value: 90deg;
}
@keyframes spin {
  0% {
    --degree: 1deg;
  }
  100% {
    --degree: 360deg;
  }
}
.banner-map-interactive {
  position: relative;
  width: 100%;
  background: linear-gradient(180deg, #600137 40%, #720142 80%);
}
.banner-map-interactive .container {
  position: relative;
  z-index: 2;
}
.banner-map-interactive .container .content-map-interactive {
  --width-content-information: 590px;
  --height-map: 640px;
  --padding-content-map: 50px 0;
  position: relative;
  display: flex;
  width: 100%;
  padding: var(--padding-content-map);
  justify-content: space-between;
  align-items: center;
  z-index: 6;
}
.banner-map-interactive .container .content-map-interactive .content-information {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: var(--width-content-information);
  height: 100%;
  position: relative;
  gap: 30px;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-title {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-title .title-google-review {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 0.3125rem;
  background-color: #52012f;
  border: 1px solid rgba(230, 0, 126, 0.4);
  padding: 5px 10px;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-title .title-google-review .logo-google {
  width: 50px;
  height: auto;
  margin: 0 5px 0 0;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-title .title-google-review .stars {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: #e6007e;
  margin: 0 5px 0 0;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-title .title-google-review .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #c999b5;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 5px 0 0;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-title .title-google-review .number-user {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  color: #ffffff !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin: 0;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-title .title {
  --fz: 50px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: var(--fz);
  color: #e4ccda;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-title .title strong {
  font-weight: 700;
  color: #ffffff;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-title .subtitle {
  --fz: 26px;
  --lh: 34px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: var(--fz);
  color: #d7b3c7;
  line-height: var(--lh);
  text-rendering: optimizeLegibility;
  margin: 0;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-title .subtitle strong {
  color: #f2e6ec;
  font-weight: 700;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-advantage {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage .pictogram {
  --fz: 16px;
  font-size: var(--fz);
  color: #ffffff;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage .argument {
  --fz: 18px;
  --lh: 24px;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: var(--fz);
  color: #d7b3c7;
  line-height: var(--lh);
  text-rendering: optimizeLegibility;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage .argument strong {
  color: #f2e6ec;
  font-weight: 700;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-advantage .img-mobile {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotate(5deg);
  opacity: 1;
  width: var(--width-img);
  height: var(--height-img);
  object-fit: cover;
  border-radius: 4px;
  border: #ffffff solid 2px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin: 0 !important;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search {
  --width: 100%;
  display: none;
  flex-direction: column;
  width: var(--width);
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .img-panel {
  display: none;
  margin-bottom: 5px;
  opacity: 0.7;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete {
  position: relative;
  width: 100%;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete input {
  --height: 54px;
  --fz: 16px;
  --lh: 24px;
  --padding: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #ffffff;
  border-radius: 0.3125rem;
  border: 2px solid #e4ccda;
  height: var(--height);
  padding: var(--padding);
  transition: all 0.2s ease 0s;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: var(--fz);
  color: #780145;
  line-height: var(--lh);
  text-rendering: optimizeLegibility;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete input::placeholder {
  color: #bc80a2;
  font-weight: 500;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete input:focus, .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete input:focus-visible {
  background-color: #ffffff;
  border-color: #e6007e;
  outline: 0;
  border-radius: 0.3125rem 0.3125rem 0 0;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete input:hover {
  border: 2px solid #c999b5;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete input:hover:focus, .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete input:hover:focus-visible {
  border-color: #e6007e;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .pictogram {
  --fz: 16px;
  --right: 16px;
  position: absolute;
  right: var(--right);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--fz);
  color: #e6007e;
  pointer-events: none;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .search-autocomplete-results {
  --height: 260px;
  --padding: 6px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border: 2px solid #e6007e;
  border-radius: 0 0 0.3125rem 0.3125rem;
  border-top: none;
  margin-top: 0;
  max-height: var(--height);
  overflow-y: auto;
  display: none;
  z-index: 50;
  padding: var(--padding);
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .search-autocomplete-results.is-open {
  display: block;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .search-autocomplete-results .search-autocomplete-item {
  --fz: 16px;
  --lh: 36px;
  --padding: 0 6px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 3px;
  padding: var(--padding);
  cursor: pointer;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: all 0.2s ease 0s;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: var(--fz);
  color: #780145;
  line-height: var(--lh);
  text-rendering: optimizeLegibility;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .search-autocomplete-results .search-autocomplete-item:hover {
  background: #e4ccda;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .cities-slider {
  display: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-block: 10px;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .cities-slider .cities-slider-inner {
  display: flex;
  width: max-content;
  white-space: nowrap;
  gap: 15px;
  will-change: transform;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .cities-slider .cities-slider-track {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .cities-slider .cities-slider-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .cities-slider .cities-slider-item:hover {
  background: #e6007e;
  transform: translateY(-1px);
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .cities-slider .cities-slider-item .cities-slider-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .cities-slider .cities-slider-item .cities-slider-label {
  letter-spacing: 0.02em;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .cities-slider::before, .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .cities-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 54px;
  pointer-events: none;
  z-index: 1;
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .cities-slider::before {
  left: 0;
  background: linear-gradient(to right, #720142, rgba(120, 1, 69, 0));
}
.banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .cities-slider::after {
  right: 0;
  background: linear-gradient(to left, #720142, rgba(120, 1, 69, 0));
}
.banner-map-interactive .container .content-map-interactive .content-information .content-action {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video {
  margin: 0;
  background-color: #780145;
  border: 1px solid rgba(230, 0, 126, 0.4);
  padding: 0 15px;
  border-radius: 4px;
  backdrop-filter: blur(0.2rem);
  transition: all 0.2s ease 0s;
  gap: 10px;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video .play-video {
  position: relative;
  left: inherit;
  top: inherit;
  transform: inherit;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video .text-video {
  color: #ffffff;
  font-size: 16px;
  line-height: 66px;
  text-decoration: none;
  letter-spacing: -0.45px;
  margin-left: 0;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video:hover {
  background-color: #480129;
  border: 1px solid rgba(230, 0, 126, 0.6);
}
.banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-primary {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex: 1 0 0;
  position: relative;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 22px;
  --size-effect: calc(100% + 4px);
}
.banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-primary:before {
  content: "";
  position: absolute;
  width: var(--size-effect);
  height: var(--size-effect);
  background: linear-gradient(var(--degree), #780145 20%, #861a58 40%, #ee4da5 60%, #861a58 80%, #780145 100%);
  border-radius: inherit;
  z-index: -1;
  animation: spin 3s infinite linear;
  will-change: contents;
}
.banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-primary:after {
  content: "";
  position: absolute;
  width: var(--size-effect);
  height: var(--size-effect);
  top: 0;
  left: 0;
  background: linear-gradient(var(--degree), #780145 20%, #861a58 40%, #ee4da5 60%, #861a58 80%, #780145 100%);
  border-radius: inherit;
  filter: blur(5px);
  z-index: -2;
  animation: spin 3s infinite linear;
  will-change: contents;
}
.banner-map-interactive .container .content-map-interactive .content-information .hero-slider {
  --width-img: 210px;
  --height-img: 140px;
  --gap: 10px;
  --mask-width: 80px;
  --border-width: 2px;
  --shadow: 0 4px 4px 0 rgba($black, 0.25);
  --border-radius: 5px;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  min-height: var(--height-img);
  overflow: hidden;
  width: 100%;
}
.banner-map-interactive .container .content-map-interactive .content-information .hero-slider .hero-slider-inner {
  display: flex;
  width: max-content;
  white-space: nowrap;
  gap: var(--gap);
  will-change: transform;
}
.banner-map-interactive .container .content-map-interactive .content-information .hero-slider .hero-slider-track {
  display: flex;
  align-items: stretch;
  gap: var(--gap);
}
.banner-map-interactive .container .content-map-interactive .content-information .hero-slider .hero-slider-item {
  flex: 0 0 auto;
  width: var(--width-img);
  height: var(--height-img);
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  background: #30001c;
  border: var(--border-width) solid #ffffff;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  backface-visibility: hidden;
}
.banner-map-interactive .container .content-map-interactive .content-information .hero-slider .hero-slider-item img {
  width: 100%;
  height: 100%;
  display: block;
}
.banner-map-interactive .container .content-map-interactive .content-information .hero-slider::before, .banner-map-interactive .container .content-map-interactive .content-information .hero-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--mask-width);
  pointer-events: none;
  z-index: 1;
}
.banner-map-interactive .container .content-map-interactive .content-information .hero-slider::before {
  left: 0;
  background: linear-gradient(to right, #720142, rgba(120, 1, 69, 0));
}
.banner-map-interactive .container .content-map-interactive .content-information .hero-slider::after {
  right: 0;
  background: linear-gradient(to left, #720142, rgba(120, 1, 69, 0));
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.banner-map-interactive .container .content-map-interactive .content-map-country {
  display: block;
  position: relative;
  z-index: 5;
  width: auto;
  height: var(--height-map);
  --map-size: 24px;
}
.banner-map-interactive .container .content-map-interactive .content-map-country #map {
  filter: drop-shadow(0 30px 25.8px rgba(0, 0, 0, 0.25));
}
.banner-map-interactive .container .content-map-interactive .content-map-country #map #background path {
  fill: #93346a;
}
.banner-map-interactive .container .content-map-interactive .content-map-country #map #region path {
  fill: #7f0e4e;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item {
  position: absolute;
  text-align: center;
  top: var(--top);
  left: var(--left);
  transform: translate3d(-50%, -50%, 0);
  min-width: var(--map-size);
  min-height: var(--map-size);
  transition: all 0.3s cubic-bezier(0.2, 0.6, 0.4, 1);
  cursor: pointer;
  max-width: 15%;
  pointer-events: none;
  background-color: transparent;
  border: 0;
  padding: 0;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item span {
  --scale: 0.75;
  --offset: 5px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #f2e6ec;
  line-height: 1;
  text-rendering: optimizeLegibility;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.2, 0.6, 0.4, 1);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item span.top {
  left: 50%;
  bottom: calc(100% + var(--offset));
  transform: translate3d(-50%, 0, 0) scale(var(--scale));
  transform-origin: bottom center;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item span.bottom {
  left: 50%;
  top: calc(100% + var(--offset));
  transform: translate3d(-50%, 0, 0) scale(var(--scale));
  transform-origin: top center;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item span.right {
  left: calc(100% + var(--offset));
  top: 50%;
  transform: translate3d(0, -50%, 0) scale(var(--scale));
  transform-origin: center left;
  text-align: left;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item span.left {
  right: calc(100% + var(--offset));
  top: 50%;
  transform: translate3d(0, -50%, 0) scale(var(--scale));
  transform-origin: center right;
  text-align: right;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item svg,
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item img {
  --opacity: 0;
  --width: 100%;
  --scale: 1;
  --transition: cubic-bezier(0.2, 0.6, 0.4, 1);
  max-width: var(--width);
  max-height: var(--map-size);
  transition: all 0.3s var(--transition);
  position: relative;
  margin: auto;
  display: block;
  width: var(--map-size);
  min-width: var(--map-size);
  opacity: var(--opacity);
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item:before, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:after {
  content: "";
  width: var(--map-size);
  height: var(--map-size);
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.2, 0.6, 0.4, 1);
  z-index: 10;
  pointer-events: all;
  transform: translate3d(-50%, -50%, 0);
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item:before {
  --scale: 1;
  transform: translate3d(-50%, -50%, 0) scale(var(--scale));
  background-color: #e6007e;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item:after {
  --scale: 0.5;
  background-color: #ffffff;
  transform: translate3d(-50%, -50%, 0) scale(var(--scale));
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight {
  pointer-events: all;
  z-index: 1;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover span, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active span, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight span {
  --scale: 1;
  --offset: 10px;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover svg,
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover img, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active svg,
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active img, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight svg,
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight img {
  --opacity: 1;
  --width: 60px;
  --map-size: 60px;
  --scale: 1;
  transform: scale(var(--scale));
  max-width: 100%;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover:before, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active:before, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight:before {
  --scale: 0;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover:after, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active:after, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight:after {
  --scale: 0;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item.inactive:before {
  background-color: #93346a;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item.inactive:after {
  background-color: #ae678f;
}
.banner-map-interactive .container .content-map-interactive .content-map-country .map-item.inactive span {
  opacity: 0;
}
.banner-map-interactive .background-bottom {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/background-map-interactive.svg") no-repeat 0 100%;
  background-size: contain;
  left: 0;
  bottom: 0;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .banner-map-interactive {
    background: linear-gradient(180deg, #540130 0%, #720142 75%);
  }
  .banner-map-interactive .container .content-map-interactive {
    flex-direction: column;
    gap: 20px;
    --width-content-information: 100%;
    --height-map: 360px;
    --padding-content-map: 30px 0;
  }
  .banner-map-interactive .container .content-map-interactive .content-information {
    gap: 20px;
    align-items: center;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-title {
    gap: 10px;
    align-items: center;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-title .title {
    --fz: 26px;
    text-align: center;
    margin: auto;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-title .subtitle {
    --fz: 16px;
    --lh: 22px;
    width: 100%;
    text-align: center;
    margin: auto;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage {
    display: none;
    width: 80%;
    gap: 10px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage {
    width: 100%;
    justify-content: center;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage .pictogram {
    display: none;
    --fz: 18px;
    width: 18px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage .argument {
    --fz: 14px;
    --lh: 18px;
    text-align: center;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .img-mobile {
    display: none;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search {
    display: flex;
    margin-top: 10px;
    --width: 100%;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .img-panel {
    display: block;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete input {
    --height: 50px;
    --fz: 14px;
    --lh: 20px;
    --padding: 0 8px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .pictogram {
    --fz: 14px;
    --right: 8px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .search-autocomplete-results {
    --height: 260px;
    --padding: 4px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .search-autocomplete-results .search-autocomplete-item {
    --fz: 14px;
    --lh: 30px;
    --padding: 0 4px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-radius: 3px;
    padding: var(--padding);
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transition: all 0.2s ease 0s;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: var(--fz);
    color: #780145;
    line-height: var(--lh);
    text-rendering: optimizeLegibility;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .search-autocomplete-results .search-autocomplete-item:hover {
    background: #e4ccda;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .cities-slider {
    display: block;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .hero-slider {
    display: none;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    width: 100%;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-primary {
    width: 100%;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video {
    width: 100%;
    margin: 0;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video .text-video {
    font-size: 16px;
    margin-left: 0;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country {
    display: none;
    width: auto;
    --map-size: 24px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item span {
    --scale: 0.75;
    --offset: 5px;
    font-size: 16px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover img, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active img, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight img {
    --width: 40px;
    --map-size: 40px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:before {
    --scale: 0.7;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:after {
    --scale: 0.4;
  }
  .banner-map-interactive .background-bottom {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-map-interactive .container .content-map-interactive {
    flex-direction: column;
    gap: 20px;
    --width-content-information: 100%;
    --height-map: 460px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information {
    gap: 30px;
    align-items: center;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-title {
    gap: 10px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-title .title {
    --fz: 40px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-title .subtitle {
    --fz: 24px;
    --lh: 30px;
    width: 74%;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage {
    width: 100%;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage {
    width: calc(100% - 200px);
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage .pictogram {
    --fz: 22px;
    width: 22px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage .argument {
    --fz: 16px;
    --lh: 22px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .img-mobile {
    display: block;
    --width-img: 189px;
    --height-img: 126px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search {
    display: flex;
    margin-top: 10px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .cities-slider {
    display: block;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .hero-slider {
    display: none;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action {
    gap: 20px;
    justify-content: space-between;
    width: 100%;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video {
    margin: 0;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video .text-video {
    font-size: 14px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country {
    display: none;
    width: auto;
    --map-size: 24px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item span {
    --scale: 0.75;
    --offset: 5px;
    font-size: 16px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover img, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active img, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight img {
    --width: 40px;
    --map-size: 40px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:before {
    --scale: 0.7;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:after {
    --scale: 0.4;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-map-interactive .container .content-map-interactive {
    flex-direction: column;
    gap: 20px;
    --width-content-information: 100%;
    --height-map: 500px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information {
    gap: 20px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-title .subtitle {
    width: 80%;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage {
    width: 100%;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage {
    width: calc(100% - 210px);
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage .pictogram {
    --fz: 20px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage .argument {
    --fz: 16px;
    --lh: 22px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .img-mobile {
    display: block;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search {
    display: flex;
    margin-top: 20px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .cities-slider {
    display: block;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action {
    gap: 20px;
    justify-content: space-between;
    width: 100%;
    margin-top: 20px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video {
    margin: 0;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video .text-video {
    font-size: 16px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .hero-slider {
    display: none;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country {
    display: none;
    --map-size: 22px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item span {
    --scale: 0.65;
    --offset: 5px;
    font-size: 16px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover img, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active img, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight img {
    --width: 40px;
    --map-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-map-interactive .container .content-map-interactive {
    --width-content-information: 420px;
    --height-map: 480px;
    --padding-content-map: 30px 0;
  }
  .banner-map-interactive .container .content-map-interactive .content-information {
    gap: 30px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-title {
    gap: 5px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-title .title {
    --fz: 36px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-title .subtitle {
    --fz: 18px;
    --lh: 22px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage {
    gap: 5px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage .pictogram {
    --fz: 14px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage .argument {
    --fz: 15px;
    --lh: 18px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete input {
    --height: 46px;
    --fz: 14px;
    --lh: 20px;
    --padding: 0 10px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .pictogram {
    --fz: 14px;
    --right: 10px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .search-autocomplete-results {
    --height: 260px;
    --padding: 5px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .search-autocomplete-results .search-autocomplete-item {
    --fz: 14px;
    --lh: 30px;
    --padding: 0 5px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action {
    align-items: flex-start;
    justify-content: space-between;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video {
    margin: 0;
    padding: 0 10px;
    height: 58px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video .play-video {
    position: relative;
    left: inherit;
    top: inherit;
    transform: inherit;
    width: 25px;
    height: 25px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video .play-video:before, .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video .play-video:after {
    width: 25px;
    height: 25px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video .play-video i {
    font-size: 10px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video .text-video {
    margin-left: 0;
    font-size: 13px;
    line-height: 39px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-primary {
    font-size: 18px !important;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .hero-slider {
    --width-img: 170px;
    --height-img: 115px;
    --gap: 8px;
    --mask-width: 60px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country {
    --map-size: 20px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item span {
    --scale: 0.65;
    --offset: 5px;
    font-size: 15px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover img, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active img, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight img {
    --width: 40px;
    --map-size: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .banner-map-interactive .container .content-map-interactive {
    --width-content-information: 480px;
    --height-map: 560px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-title .title {
    --fz: 40px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-title .subtitle {
    --fz: 20px;
    --lh: 26px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage {
    gap: 5px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage .pictogram {
    --fz: 14px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-advantage .advantage .argument {
    --fz: 16px;
    --lh: 22px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete input {
    --height: 54px;
    --fz: 15px;
    --lh: 22px;
    --padding: 0 12px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .pictogram {
    --fz: 16px;
    --right: 16px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .search-autocomplete-results {
    --height: 260px;
    --padding: 6px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .strate-map-search .search-autocomplete .search-autocomplete-results .search-autocomplete-item {
    --fz: 15px;
    --lh: 34px;
    --padding: 0 6px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video {
    margin: 0;
    padding: 0 10px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .content-action .btn-video .text-video {
    font-size: 15px;
  }
  .banner-map-interactive .container .content-map-interactive .content-information .hero-slider {
    --width-img: 170px;
    --height-img: 115px;
    --gap: 8px;
    --mask-width: 60px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country {
    --map-size: 24px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item span {
    --scale: 0.75;
    --offset: 5px;
    font-size: 16px;
  }
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item:hover img, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.active img, .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight svg,
  .banner-map-interactive .container .content-map-interactive .content-map-country .map-item.highlight img {
    --width: 40px;
    --map-size: 40px;
  }
}
.banner-promotion {
  display: block;
  width: 100%;
  height: 40px;
  background-color: #ffd7ed;
}
.banner-promotion .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.banner-promotion .container .picto-promo {
  width: 16px;
  height: 16px;
  margin: 0;
}
.banner-promotion .container .label-promo {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #780145;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 0 0 10px;
}
.banner-promotion .container .label-promo strong {
  font-weight: 700;
  color: #e6007e;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .banner-promotion {
    height: 40px;
  }
  .banner-promotion .container .picto-promo {
    display: none;
  }
  .banner-promotion .container .label-promo {
    font-size: 14px;
    line-height: 1;
    margin: 0 0 0 0;
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-promotion {
    height: 40px;
  }
  .banner-promotion .container .picto-promo {
    display: none;
  }
  .banner-promotion .container .label-promo {
    font-size: 14px;
    line-height: 1;
    margin: 0 0 0 0;
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-promotion {
    height: 40px;
  }
  .banner-promotion .container .picto-promo {
    width: 16px;
    height: 16px;
  }
  .banner-promotion .container .label-promo {
    font-size: 16px;
    line-height: 1;
    margin: 0 0 0 10px;
  }
}
.choose-city-v2 {
  background-color: #780145;
  position: relative;
  padding: 30px 0;
}
.choose-city-v2 .container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.choose-city-v2 .container .title-choose-city {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-align: center;
}
.choose-city-v2 .container .title-choose-city strong {
  font-weight: 700;
}
.choose-city-v2 .container .items-city {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-top: 30px;
  gap: 20px;
}
.choose-city-v2 .container .items-city .item-city {
  position: relative;
  flex-grow: 1;
  flex-shrink: 1;
  align-self: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 15px;
  background-color: #5f0136;
  border: 1px solid #5f0136;
  border-radius: 5px;
}
.choose-city-v2 .container .items-city .item-city .icon-marker {
  position: absolute;
  font-size: 100px;
  left: 15px;
  top: 10px;
  z-index: 2;
  transform: rotate(-15deg);
  color: #450128;
}
.choose-city-v2 .container .items-city .item-city .present-pole {
  display: none;
}
.choose-city-v2 .container .items-city .item-city .name-city {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #ffffff;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  text-align: center;
  z-index: 3;
}
.choose-city-v2 .container .items-city .item-city .indice-center {
  display: block;
  margin-bottom: 5px;
  margin-top: 5px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  z-index: 3;
}
.choose-city-v2 .container .items-city .item-city .badge-promo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  height: 20px;
  border-radius: 10px;
  background-color: #ffd7ed;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-top: 5px;
  z-index: 3;
}
.choose-city-v2 .container .items-city .item-city .fake-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 4px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  transition: all 0.2s ease 0s;
  margin-top: 15px;
  z-index: 3;
}
.choose-city-v2 .container .items-city .item-city:hover {
  background-color: #6e013f;
  cursor: pointer;
  text-decoration: none;
}
.choose-city-v2 .container .items-city .item-city:hover .fake-btn {
  background-color: #ffffff;
  color: #204aa9;
  text-decoration: none;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .choose-city-v2 {
    padding: 20px 0;
  }
  .choose-city-v2 .container .title-choose-city {
    font-size: 20px;
    line-height: 26px;
  }
  .choose-city-v2 .container .items-city {
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .choose-city-v2 .container .items-city .item-city {
    padding: 10px;
    width: calc(50% - 5px);
  }
  .choose-city-v2 .container .items-city .item-city .icon-marker {
    font-size: 80px;
    left: 15px;
    top: 10px;
  }
  .choose-city-v2 .container .items-city .item-city .name-city {
    font-size: 18px;
    line-height: 18px;
  }
  .choose-city-v2 .container .items-city .item-city .indice-center {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .choose-city-v2 .container .items-city .item-city .badge-promo {
    height: 20px;
    border-radius: 10px;
    font-size: 11px;
    line-height: 1;
    margin-top: 5px;
  }
  .choose-city-v2 .container .items-city .item-city .fake-btn {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .choose-city-v2 {
    padding: 20px 0;
  }
  .choose-city-v2 .container .title-choose-city {
    font-size: 24px;
    line-height: 1;
  }
  .choose-city-v2 .container .items-city {
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .choose-city-v2 .container .items-city .item-city {
    padding: 10px;
    width: calc(50% - 5px);
  }
  .choose-city-v2 .container .items-city .item-city .icon-marker {
    font-size: 80px;
    left: 15px;
    top: 10px;
  }
  .choose-city-v2 .container .items-city .item-city .name-city {
    font-size: 18px;
    line-height: 18px;
  }
  .choose-city-v2 .container .items-city .item-city .indice-center {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .choose-city-v2 .container .items-city .item-city .badge-promo {
    height: 20px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1;
    margin-top: 5px;
  }
  .choose-city-v2 .container .items-city .item-city .fake-btn {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .choose-city-v2 {
    padding: 20px 0;
  }
  .choose-city-v2 .container .title-choose-city {
    font-size: 24px;
    line-height: 1;
  }
  .choose-city-v2 .container .items-city {
    gap: 10px;
    margin-top: 20px;
  }
  .choose-city-v2 .container .items-city .item-city {
    padding: 10px;
  }
  .choose-city-v2 .container .items-city .item-city .icon-marker {
    font-size: 80px;
    left: 15px;
    top: 10px;
  }
  .choose-city-v2 .container .items-city .item-city .name-city {
    font-size: 18px;
    line-height: 18px;
  }
  .choose-city-v2 .container .items-city .item-city .indice-center {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.05em;
  }
  .choose-city-v2 .container .items-city .item-city .badge-promo {
    height: 20px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1;
    margin-top: 5px;
  }
  .choose-city-v2 .container .items-city .item-city .fake-btn {
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 1;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .choose-city-v2 .container .title-choose-city {
    font-size: 32px;
    line-height: 1;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .choose-city-v2 .container .title-choose-city {
    font-size: 34px;
    line-height: 1;
  }
}
.present-atout-box .content-present-atout-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.present-atout-box .content-present-atout-box .block-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: calc(100% - 680px);
  padding-right: 50px;
}
.present-atout-box .content-present-atout-box .block-text .paragraph {
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 10px;
}
.present-atout-box .content-present-atout-box .block-text .paragraph strong {
  font-weight: 700;
}
.present-atout-box .content-present-atout-box .block-text .paragraph span {
  color: #e6007e;
  font-weight: 700;
}
.present-atout-box .content-present-atout-box .block-text .paragraph:last-of-type {
  margin-bottom: 0;
}
.present-atout-box .content-present-atout-box .block-text .content-argument {
  margin-top: 40px;
}
.present-atout-box .content-present-atout-box .block-text .content-argument .argument {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 0 20px 0;
}
.present-atout-box .content-present-atout-box .block-text .content-argument .argument:last-of-type {
  margin-bottom: 0;
}
.present-atout-box .content-present-atout-box .block-text .content-argument .argument i {
  font-size: 16px;
  color: #e6007e;
  margin-right: 15px;
  padding-top: 5px;
}
.present-atout-box .content-present-atout-box .block-text .content-argument .argument .infos .infos-title {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 0;
  font-weight: 700;
}
.present-atout-box .content-present-atout-box .block-text .content-argument .argument .infos .infos-detail {
  font-size: 14px;
  line-height: 16px;
  margin-bottom: 0;
}
.present-atout-box .content-present-atout-box .block-text .block-link {
  margin-top: 40px;
}
.present-atout-box .content-present-atout-box .block-text .block-link a:first-of-type {
  margin-right: 20px;
}
.present-atout-box .content-present-atout-box .block-illustration {
  position: relative;
  width: 680px;
  height: 600px;
  display: flex;
  justify-content: flex-end;
}
.present-atout-box .content-present-atout-box .block-illustration .background img {
  width: 570px;
  height: auto;
  border-radius: 5px;
}
.present-atout-box .content-present-atout-box .block-illustration .block-number {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  left: 0;
  bottom: 0;
}
.present-atout-box .content-present-atout-box .block-illustration .block-number .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 200px;
  height: 120px;
  border-radius: 0.3125rem;
  background-color: #ffffff;
  margin-bottom: 20px;
  border: 1px solid #cdd4e8;
  box-shadow: 0 1px 30px rgba(17, 28, 49, 0.15);
}
.present-atout-box .content-present-atout-box .block-illustration .block-number .item .number {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 60px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 5px;
  text-align: center;
}
.present-atout-box .content-present-atout-box .block-illustration .block-number .item .label {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 3px;
  text-align: center;
}
.present-atout-box .content-present-atout-box .block-illustration .block-number .item .label:last-of-type {
  margin-bottom: 0;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .present-atout-box .content-present-atout-box {
    flex-direction: column;
  }
  .present-atout-box .content-present-atout-box .block-text {
    width: 100%;
    padding: 0;
  }
  .present-atout-box .content-present-atout-box .block-text .block-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .present-atout-box .content-present-atout-box .block-text .block-title > * {
    text-align: center;
  }
  .present-atout-box .content-present-atout-box .block-text .paragraph {
    text-align: center;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument {
    margin-top: 0;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 0 15px 0;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument:first-of-type {
    margin-top: 30px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument i {
    font-size: 26px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument .infos {
    text-align: center;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument .infos .infos-title {
    line-height: 22px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument .infos .infos-detail {
    font-size: 16px;
    line-height: 22px;
  }
  .present-atout-box .content-present-atout-box .block-text .block-link {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .present-atout-box .content-present-atout-box .block-text .block-link a:first-of-type {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .present-atout-box .content-present-atout-box .block-illustration {
    width: 100%;
    height: inherit;
    margin-top: 30px;
  }
  .present-atout-box .content-present-atout-box .block-illustration img {
    display: none;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number {
    position: relative;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item {
    width: 100%;
    height: 100px;
    margin-bottom: inherit;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item .number {
    font-size: 22px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item .label {
    font-size: 14px;
    margin-bottom: 0;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item .label:last-of-type {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .present-atout-box .content-present-atout-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .present-atout-box .content-present-atout-box .block-text {
    width: 100%;
    padding: 0;
  }
  .present-atout-box .content-present-atout-box .block-text .title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 30px;
  }
  .present-atout-box .content-present-atout-box .block-text .paragraph {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument {
    margin-top: 0;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument {
    margin: 0 0 15px 0;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument:first-of-type {
    margin-top: 30px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument i {
    font-size: 16px;
    margin-right: 15px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument .infos .infos-title {
    font-size: 16px;
    line-height: 22px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument .infos .infos-detail {
    font-size: 16px;
    line-height: 22px;
  }
  .present-atout-box .content-present-atout-box .block-text .block-link {
    width: 100%;
    justify-content: space-between;
    display: flex;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .present-atout-box .content-present-atout-box .block-text .block-link a:first-of-type {
    margin-right: 30px;
  }
  .present-atout-box .content-present-atout-box .block-illustration {
    width: 100%;
    height: inherit;
  }
  .present-atout-box .content-present-atout-box .block-illustration .background img {
    width: 380px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number {
    top: 20px;
    bottom: inherit;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item {
    width: 180px;
    height: 100px;
    margin-bottom: 20px;
    padding: 0 10px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item .number {
    font-size: 40px;
    margin-bottom: 5px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item .label {
    font-size: 12px;
    margin-bottom: 3px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item:last-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .present-atout-box .content-present-atout-box {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .present-atout-box .content-present-atout-box .block-text {
    padding: 0;
    width: 100%;
  }
  .present-atout-box .content-present-atout-box .block-text .title {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 30px;
  }
  .present-atout-box .content-present-atout-box .block-text .paragraph {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument {
    margin-top: 30px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument {
    margin: 0 0 15px 0;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument i {
    font-size: 16px;
    margin-right: 15px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument .infos .infos-title {
    font-size: 16px;
    line-height: 16px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument .infos .infos-detail {
    font-size: 14px;
    line-height: 16px;
  }
  .present-atout-box .content-present-atout-box .block-text .block-link {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .present-atout-box .content-present-atout-box .block-text .block-link a:first-of-type {
    margin-right: 30px;
  }
  .present-atout-box .content-present-atout-box .block-illustration {
    width: 100%;
    height: inherit;
    justify-content: space-between;
  }
  .present-atout-box .content-present-atout-box .block-illustration .background img {
    width: 460px;
    height: auto;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number {
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item {
    width: 200px;
    height: 120px;
    margin-bottom: 20px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item .number {
    font-size: 60px;
    margin-bottom: 5px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item .label {
    font-size: 12px;
    margin-bottom: 3px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .present-atout-box .content-present-atout-box .block-text {
    width: calc(100% - 480px);
    padding-right: 30px;
  }
  .present-atout-box .content-present-atout-box .block-text .heading-title {
    font-size: 12px;
  }
  .present-atout-box .content-present-atout-box .block-text .title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 20px;
  }
  .present-atout-box .content-present-atout-box .block-text .paragraph {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument {
    margin-top: 20px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument {
    margin: 0 0 15px 0;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument i {
    font-size: 16px;
    margin-right: 15px;
    padding-top: 5px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument .infos .infos-title {
    font-size: 15px;
    line-height: 15px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument .infos .infos-detail {
    font-size: 13px;
    line-height: 15px;
  }
  .present-atout-box .content-present-atout-box .block-text .block-link {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .present-atout-box .content-present-atout-box .block-text .block-link a:first-of-type {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .present-atout-box .content-present-atout-box .block-illustration {
    width: 480px;
    height: 485px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .background img {
    width: 461px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item {
    width: 200px;
    height: 120px;
    margin-bottom: 20px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item .number {
    font-size: 60px;
    margin-bottom: 5px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item .label {
    font-size: 12px;
    margin-bottom: 3px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .present-atout-box .content-present-atout-box .block-text {
    width: calc(100% - 500px);
    padding-right: 40px;
  }
  .present-atout-box .content-present-atout-box .block-text .paragraph {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument {
    margin-top: 30px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument {
    margin: 0 0 20px 0;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument i {
    font-size: 16px;
    margin-right: 15px;
    padding-top: 5px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument .infos .infos-title {
    font-size: 16px;
    line-height: 16px;
  }
  .present-atout-box .content-present-atout-box .block-text .content-argument .argument .infos .infos-detail {
    font-size: 14px;
    line-height: 16px;
  }
  .present-atout-box .content-present-atout-box .block-text .block-link {
    margin-top: 30px;
  }
  .present-atout-box .content-present-atout-box .block-text .block-link a:first-of-type {
    margin-right: 30px;
  }
  .present-atout-box .content-present-atout-box .block-illustration {
    width: 500px;
    height: 505px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .background img {
    width: 480px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item {
    width: 200px;
    height: 120px;
    margin-bottom: 20px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item .number {
    font-size: 60px;
    margin-bottom: 5px;
  }
  .present-atout-box .content-present-atout-box .block-illustration .block-number .item .label {
    font-size: 12px;
    margin-bottom: 3px;
  }
}
section.how-rent-box .block-title {
  margin-bottom: 0 !important;
}
section.how-rent-box .items-rent-box .item {
  padding: calc(80px / 2) 0;
}
section.how-rent-box .items-rent-box .item .block-step {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 60px;
  background-color: #ffffff;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0.3125rem;
  border: 1px solid #cdd4e8;
}
section.how-rent-box .items-rent-box .item .block-step .title-step {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #1e3157;
  margin-bottom: 10px;
  text-align: center;
}
section.how-rent-box .items-rent-box .item .block-step .title {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  color: #e6007e;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
section.how-rent-box .items-rent-box .item .block-step .paragraph {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  min-height: 100px;
}
section.how-rent-box .items-rent-box .item .block-step .btn {
  margin-top: 30px;
}
section.how-rent-box .block-control-slider .control-slider {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0 0 0 10px;
}
section.how-rent-box .block-control-slider .control-slider:first-of-type {
  margin: 0 0 0 20px;
}
section.how-rent-box .block-control-slider .control-slider i {
  font-size: 16px;
}
section.how-rent-box .block-control-slider .control-slider.next:hover i {
  animation: toLeftFromRight 0.3s forwards;
}
section.how-rent-box .block-control-slider .control-slider.prev:hover i {
  animation: toRightFromLeft 0.3s forwards;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.how-rent-box .items-rent-box .item {
    padding: 30px 0;
  }
  section.how-rent-box .items-rent-box .item .block-step {
    padding: 20px;
    flex: 0 0 100% !important;
  }
  section.how-rent-box .items-rent-box .item .block-step .title {
    margin-bottom: 20px;
  }
  section.how-rent-box .items-rent-box .item .block-step .paragraph {
    margin-top: 20px;
    margin-bottom: 20px;
    min-height: 80px;
  }
  section.how-rent-box .items-rent-box .item .block-step .btn {
    margin-top: 20px;
  }
  section.how-rent-box .block-control-slider .control-slider {
    display: inline-block;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.how-rent-box .items-rent-box .item {
    padding: calc(50px / 2) 0;
  }
  section.how-rent-box .items-rent-box .item .block-step {
    padding: 15px;
    justify-content: flex-start;
  }
  section.how-rent-box .items-rent-box .item .block-step .title-step {
    font-size: 18px;
  }
  section.how-rent-box .items-rent-box .item .block-step .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  section.how-rent-box .items-rent-box .item .block-step .paragraph {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  section.how-rent-box .items-rent-box .item .block-step .btn {
    margin-top: 20px;
  }
  section.how-rent-box .block-control-slider .control-slider {
    display: inline-block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.how-rent-box .items-rent-box .item {
    padding: calc(50px / 2) 0;
  }
  section.how-rent-box .items-rent-box .item .block-step {
    padding: 15px;
    justify-content: flex-start;
  }
  section.how-rent-box .items-rent-box .item .block-step .title-step {
    font-size: 18px;
  }
  section.how-rent-box .items-rent-box .item .block-step .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  section.how-rent-box .items-rent-box .item .block-step .paragraph {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  section.how-rent-box .items-rent-box .item .block-step .btn {
    margin-top: 20px;
  }
  section.how-rent-box .block-control-slider .control-slider {
    display: inline-block;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.how-rent-box .items-rent-box .item {
    padding: calc(60px / 2) 0;
  }
  section.how-rent-box .items-rent-box .item .block-step {
    padding: 25px;
  }
  section.how-rent-box .items-rent-box .item .block-step .title-step {
    font-size: 18px;
  }
  section.how-rent-box .items-rent-box .item .block-step .title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  section.how-rent-box .items-rent-box .item {
    padding: calc(80px / 2) 0;
  }
  section.how-rent-box .items-rent-box .item .block-step {
    padding: 40px;
  }
  section.how-rent-box .items-rent-box .item .block-step .paragraph {
    min-height: 120px;
  }
}
section.testimonial {
  position: relative;
}
section.testimonial .block-testimonials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.testimonial .block-testimonials .block-text {
  width: calc(100% - 670px);
  padding-left: 50px;
}
section.testimonial .block-testimonials .block-text .block-title {
  margin-bottom: 0;
}
section.testimonial .block-testimonials .block-text .block-title .illustration {
  display: block;
  margin: 20px 0;
}
section.testimonial .block-testimonials .block-illustration {
  width: 670px;
}

@media only screen and (min-width: 0) and (max-width: 767px) {
  section.testimonial .block-testimonials {
    display: block;
  }
  section.testimonial .block-testimonials .block-text {
    width: 100%;
    padding-left: 0;
  }
  section.testimonial .block-testimonials .block-illustration {
    display: none;
  }
}
@media only screen and (min-width: 0) and (max-width: 575px) {
  section.testimonial .block-testimonials .block-text .block-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  section.testimonial .block-testimonials .block-text .block-title > * {
    text-align: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.testimonial .block-testimonials .block-text {
    width: calc(100% - 260px);
    padding-left: 30px;
  }
  section.testimonial .block-testimonials .block-illustration {
    width: 260px;
  }
  section.testimonial .block-testimonials .block-illustration img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.testimonial .block-testimonials .block-text {
    width: calc(100% - 460px);
    padding-left: 30px;
  }
  section.testimonial .block-testimonials .block-illustration {
    width: 460px;
  }
  section.testimonial .block-testimonials .block-illustration img {
    width: 80%;
    height: auto;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  section.testimonial .block-testimonials .block-text {
    width: calc(100% - 520px);
    padding-left: 40px;
  }
  section.testimonial .block-testimonials .block-illustration {
    width: 520px;
  }
  section.testimonial .block-testimonials .block-illustration img {
    width: 80%;
    height: auto;
  }
}
.services-and-benefits .block-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.services-and-benefits .block-title .content {
  width: calc(100% - 282px);
}
.services-and-benefits .block-service {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  background-color: #f2e6ec;
  border-radius: 0.3125rem;
  border: 1px solid #ebd9e3;
  padding: 15px;
  min-height: 230px;
}
.services-and-benefits .block-service .picto {
  width: 65px;
  height: 65px;
  margin-bottom: 10px;
}
.services-and-benefits .block-service .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #780145;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 0 10px 0;
}
.services-and-benefits .block-devis {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  background-color: #e6007e;
  border-radius: 0.3125rem;
  padding: 15px;
  min-height: 230px;
}
.services-and-benefits .block-devis .description {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: #ffffff;
  line-height: 30px;
  text-rendering: optimizeLegibility;
  margin-bottom: 20px;
}
.services-and-benefits .block-devis .description strong {
  font-weight: 700;
}
.services-and-benefits .block-devis .description span {
  color: #ffffff;
  font-weight: 700;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .services-and-benefits .block-title {
    flex-direction: column;
  }
  .services-and-benefits .block-title .content {
    width: 100%;
    order: 2;
  }
  .services-and-benefits .block-title .content .heading-title,
  .services-and-benefits .block-title .content .title,
  .services-and-benefits .block-title .content .subtitle-section {
    text-align: center;
  }
  .services-and-benefits .block-title .illustration {
    width: 180px;
    height: auto;
    order: 1;
    margin-bottom: 10px;
  }
  .services-and-benefits .block-service {
    justify-content: center;
    align-items: center;
    border-radius: 0.3125rem;
    min-height: 195px;
  }
  .services-and-benefits .block-service .paragraph {
    text-align: center;
  }
  .services-and-benefits .block-devis {
    min-height: 195px;
  }
  .services-and-benefits .block-control-slider {
    margin-top: 25px;
  }
  .services-and-benefits .block-control-slider .control-slider {
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0 0 0 10px;
  }
  .services-and-benefits .block-control-slider .control-slider:first-of-type {
    margin: 0 0 0 20px;
  }
  .services-and-benefits .block-control-slider .control-slider i {
    font-size: 16px;
  }
  .services-and-benefits .block-control-slider .control-slider.next:hover i {
    animation: toLeftFromRight 0.3s forwards;
  }
  .services-and-benefits .block-control-slider .control-slider.prev:hover i {
    animation: toRightFromLeft 0.3s forwards;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .services-and-benefits .block-title {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .services-and-benefits .block-title .content {
    width: 100%;
    order: 2;
  }
  .services-and-benefits .block-title .content .heading-title,
  .services-and-benefits .block-title .content .title,
  .services-and-benefits .block-title .content .subtitle-section {
    text-align: center;
  }
  .services-and-benefits .block-title .illustration {
    width: 160px;
    height: auto;
    order: 1;
    margin-bottom: 10px;
  }
  .services-and-benefits .listing-items .item {
    flex: 0 0 calc(50% - 5px) !important;
    margin-bottom: 10px !important;
  }
  .services-and-benefits .block-service {
    padding: 10px;
    min-height: 180px;
  }
  .services-and-benefits .block-service .picto {
    width: 45px;
    height: 45px;
    margin-bottom: 5px;
  }
  .services-and-benefits .block-service .title {
    font-size: 16px;
    margin: 0 0 5px 0;
  }
  .services-and-benefits .block-devis {
    min-height: 180px;
  }
  .services-and-benefits .block-devis .description {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .services-and-benefits .block-title .content {
    width: calc(100% - 200px);
  }
  .services-and-benefits .block-title .illustration {
    width: 200px;
    height: auto;
  }
  .services-and-benefits .listing-items .item {
    flex: 0 0 calc(33.3333333333% - 7.5px) !important;
    margin-bottom: 15px !important;
  }
  .services-and-benefits .block-service {
    padding: 10px;
    min-height: 222px;
  }
  .services-and-benefits .block-service .picto {
    width: 55px;
    height: 55px;
  }
  .services-and-benefits .block-service .title {
    font-size: 16px;
  }
  .services-and-benefits .block-devis {
    min-height: 222px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .services-and-benefits .listing-items .item {
    flex: 0 0 calc(25% - 15px) !important;
    margin-bottom: 15px !important;
  }
  .services-and-benefits .block-service {
    padding: 10px;
    min-height: 223px;
  }
  .services-and-benefits .block-service .title {
    font-size: 16px;
  }
  .services-and-benefits .block-devis {
    min-height: 223px;
  }
}
.atout-box-text .content-text-atout-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 60px;
}
.atout-box-text .content-text-atout-box .image-presentation {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 34%;
  margin-left: 60px;
  order: 2;
}
.atout-box-text .content-text-atout-box .image-presentation .cadre-image {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 30%;
  height: 60%;
  background-color: #e6007e;
  opacity: 0.5;
  z-index: 5;
}
.atout-box-text .content-text-atout-box .image-presentation .img-text-presentation {
  position: relative;
  width: calc(100% - 20px);
  height: auto;
  order: 1;
}
.atout-box-text .content-text-atout-box .text-presentation {
  width: 66%;
}
.atout-box-text .content-text-atout-box:nth-child(2n) .image-presentation {
  margin-right: 60px;
  margin-left: 0;
  order: 1;
}
.atout-box-text .content-text-atout-box:nth-child(2n) .text-presentation {
  order: 2;
}
.atout-box-text .content-text-atout-box:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .atout-box-text .content-text-atout-box {
    display: block;
    margin-bottom: 25px;
  }
  .atout-box-text .content-text-atout-box .text-presentation {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .atout-box-text .content-text-atout-box {
    margin-bottom: 25px;
  }
  .atout-box-text .content-text-atout-box .image-presentation {
    display: none;
  }
  .atout-box-text .content-text-atout-box .text-presentation {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .atout-box-text .content-text-atout-box {
    margin-bottom: 25px;
  }
  .atout-box-text .content-text-atout-box .image-presentation {
    width: 50%;
    margin-left: 30px;
  }
  .atout-box-text .content-text-atout-box .text-presentation {
    width: 50%;
  }
  .atout-box-text .content-text-atout-box:nth-child(2n) .image-presentation {
    margin-right: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .atout-box-text .content-text-atout-box .image-presentation {
    margin-left: 30px;
  }
  .atout-box-text .content-text-atout-box:nth-child(2n) .image-presentation {
    margin-right: 30px;
  }
}
::-moz-selection {
  color: #ffffff;
  background: #e6007e;
}

::selection {
  color: #ffffff;
  background: #e6007e;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html.axeptio-widget--open .overlay {
  visibility: visible;
  opacity: 1;
}
html.axeptio-widget--open body {
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100% !important;
  font-size: 16px;
  margin: 0;
}
body main.main-content {
  padding-top: 120px;
}
body.promo_active main.main-content {
  padding-top: 160px;
}

input,
select {
  font-size: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Quicksand", sans-serif, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 700;
}

.eg-mask {
  background: rgba(230, 0, 126, 0.6) !important;
}

.eg-button-holder a {
  background: #ffffff !important;
  color: #e6007e !important;
}
.eg-button-holder a:hover {
  background: #e6007e !important;
  color: #ffffff !important;
}

.eg-title {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  color: #6579b7 !important;
  font-size: 18px !important;
  line-height: 18px !important;
  top: 10px !important;
}

.eg-caption {
  top: 34px !important;
}
.eg-caption p {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  line-height: 15px !important;
}

.clearfix {
  clear: both;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
}

.text-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.no-scroll {
  overflow: hidden;
}

.fullscreen {
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.overlay {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1035;
  background: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.overlay.show {
  visibility: visible;
  opacity: 1;
}

.overlay-video {
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: all ease 500ms;
}
.overlay-video.open {
  position: fixed;
  z-index: 1001;
  opacity: 1;
}
.overlay-video .video-overlay-close {
  position: absolute;
  z-index: 1000;
  top: 15px;
  right: 20px;
  text-decoration: none;
  cursor: pointer;
}
.overlay-video .video-overlay-close i {
  font-size: 20px;
  color: #ffffff;
  transition: all 200ms;
}
.overlay-video .video-overlay-close:hover i {
  transform: scale(1.5);
}
.overlay-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 563px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.75);
}

.overlay-img {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  min-height: 100vh;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
}

img[data-src],
img[data-srcset] {
  min-height: 1px;
  min-width: 1px;
}

.btn-video {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  cursor: pointer;
}
.btn-video .play-video {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 15px;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.btn-video .play-video .picto-play {
  width: 8px;
  height: 10px;
  margin: 0 0 0 1px;
  z-index: 2;
}
.btn-video .play-video i {
  font-size: 16px;
  color: #ffffff;
  z-index: 2;
  padding-left: 4px;
}
.btn-video .play-video:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  background: #e6007e;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}
.btn-video .play-video:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  background: #e6007e;
  border-radius: 50%;
  transition: all 200ms;
}
.btn-video .text-video {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1e3157;
  line-height: 30px;
  text-rendering: optimizeLegibility;
  text-decoration: underline;
  margin-left: 50px;
}
.btn-video:hover .play-video:before {
  background-color: #ff1a97;
}
.btn-video:hover .play-video:after {
  background-color: #ff1a97;
}
.btn-video:hover .text-video {
  text-decoration: none;
}

.loader-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 4px solid #ffffff;
  border-right: 4px solid transparent;
  animation: rotation 1s linear infinite;
  position: absolute;
  top: calc(50% - 24px);
  left: calc(50% - 24px);
}
.loader-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border-left: 4px solid #e6007e;
  border-bottom: 4px solid transparent;
  animation: rotation 0.5s linear infinite reverse;
}

.content-loader-booking {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.content-loader-booking .loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: #e5e5e8 #e5e5e8 transparent transparent;
  animation: rotation 1s linear infinite;
  box-sizing: border-box;
}
.content-loader-booking .loader:after, .content-loader-booking .loader:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #e6007e #e6007e;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  animation: rotationBack 0.5s linear infinite;
  transform-origin: center center;
  box-sizing: border-box;
}
.content-loader-booking .loader:before {
  width: 32px;
  height: 32px;
  border-color: #e5e5e8 #e5e5e8 transparent transparent;
  animation: rotation 1.5s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBack {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-3px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(3px);
  }
}
@keyframes gelatine {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
@keyframes pulse {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
@keyframes toLeftFromRight {
  49% {
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translateX(-100%);
  }
  50% {
    opacity: 0;
    transform: translateX(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toBottomFromTop {
  49% {
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animateBox {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0 rgba(0, 0, 0, 0.2);
    transform: translatey(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0 rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}
@media only screen and (min-width: 0) and (max-width: 575px) {
  body main.main-content {
    padding-top: 80px;
  }
  body.promo_active main.main-content {
    padding-top: 80px;
  }
  .btn-responsive {
    padding: 0.469rem, 0.625rem;
    font-size: 0.813rem;
    line-height: 0.938rem;
    border-radius: 0.188rem;
  }
  .overlay-video iframe {
    width: 320px;
    height: 180px;
  }
  .btn-video {
    margin-top: 10px;
  }
  .btn-video .play-video {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 10px;
    width: 30px;
    height: 30px;
  }
  .btn-video .play-video i {
    font-size: 10px;
    padding-left: 2px;
  }
  .btn-video .play-video:before {
    width: 20px;
    height: 20px;
  }
  .btn-video .play-video:after {
    width: 20px;
    height: 20px;
  }
  .btn-video .text-video {
    font-size: 14px;
    line-height: 30px;
    margin-left: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  body main.main-content {
    padding-top: 80px;
  }
  body.promo_active main.main-content {
    padding-top: 80px;
  }
  .btn-responsive {
    padding: 0.469rem, 0.625rem;
    font-size: 0.813rem;
    line-height: 0.938rem;
    border-radius: 0.188rem;
  }
  .overlay-video iframe {
    width: 480px;
    height: 270px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body main.main-content {
    padding-top: 100px;
  }
  body.promo_active main.main-content {
    padding-top: 130px;
  }
  .btn-responsive {
    padding: 0.469rem, 0.625rem;
    font-size: 0.813rem;
    line-height: 0.938rem;
    border-radius: 0.188rem;
  }
  .overlay-video iframe {
    width: 620px;
    height: 348px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body main.main-content {
    padding-top: 120px;
  }
  body.promo_active main.main-content {
    padding-top: 135px;
  }
  .overlay-video iframe {
    width: 820px;
    height: 461px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .container.container-small {
    width: 960px;
  }
}
@media only screen and (min-width: 1500px) {
  .container.container-small {
    width: 960px;
  }
}
.form-group label {
  font-size: 16px;
  line-height: 18px;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .form-group {
    margin-bottom: 10px !important;
  }
  .form-group label {
    font-size: 14px;
    line-height: 16px;
  }
}
.block-contact,
.block-call-us {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 10px;
  background-color: #f2e6ec;
  border: 1px #ebd9e3 solid;
  border-radius: 3px;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  margin-right: 10px;
  height: 40px;
  gap: 10px;
}
.block-contact .picto,
.block-call-us .picto {
  color: #780145;
  font-size: 16px;
}
.block-contact .content-txt,
.block-call-us .content-txt {
  display: block;
}
.block-contact .content-txt .infos-first,
.block-call-us .content-txt .infos-first {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #780145;
  line-height: 22px;
  text-rendering: optimizeLegibility;
  text-align: left;
}
.block-contact .content-txt .infos-second,
.block-call-us .content-txt .infos-second {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #1e3157;
  line-height: 15px;
  text-rendering: optimizeLegibility;
  text-align: left;
}
.block-contact:hover,
.block-call-us:hover {
  background-color: #e4ccda;
  text-decoration: none;
}

.block-call-us {
  margin-right: 0;
}
.block-call-us .content-txt .infos-first {
  font-size: 14px;
  line-height: 16px;
}
.block-call-us .content-txt .infos-second {
  font-size: 13px;
  line-height: 15px;
}

.content-page .block-devis {
  background-color: #780145;
  border-radius: 5px;
  padding: 20px;
  transition: all 0.2s ease 0s;
  width: 100%;
}
.content-page .block-devis .description {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  line-height: 30px;
  text-rendering: optimizeLegibility;
  margin-bottom: 30px;
}
.content-page .block-devis .description strong {
  font-weight: 700;
}
.content-page .block-devis .description span {
  color: #ffffff;
  font-weight: 700;
}
.content-page .block-devis-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #204aa9;
  border-radius: 0.3125rem;
  padding: 20px;
  transition: all 0.2s ease 0s;
}
.content-page .block-devis-content .content-devis-text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: calc(100% - 200px);
}
.content-page .block-devis-content .content-devis-text .title {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 26px !important;
  color: #ffe000 !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px !important;
}
.content-page .block-devis-content .content-devis-text .description {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 20px !important;
  color: #ffffff !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 0 !important;
}
.content-page .block-devis-content .content-devis-text .description strong {
  font-weight: 700;
}
.content-page .block-devis-content .content-devis-text .description span {
  color: #ffe000;
  font-weight: 700;
}
.content-page .block-other-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #f0f2f8;
  border: 1px solid #abb5d7;
  border-radius: 0.3125rem;
  padding: 10px 20px;
  transition: all 0.2s ease 0s;
}
.content-page .block-other-content .content-other-text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: calc(100% - 200px);
}
.content-page .block-other-content .content-other-text .title {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  color: #42548d !important;
  line-height: 26px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px !important;
}
.content-page .block-other-content .content-other-text .description {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 17px !important;
  color: #42548d !important;
  line-height: 25px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 0 !important;
}
.content-page .block-other-content .content-other-text .description strong {
  font-weight: 700;
}
.content-page .block-pole-promotion {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  background-color: #f0f2f8;
  border: 1px solid #abb5d7;
  border-radius: 0.3125rem;
  padding: 10px;
  transition: all 0.2s ease 0s;
  margin-bottom: 20px;
}
.content-page .block-pole-promotion .content-promotion-text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: calc(100% - 370px);
}
.content-page .block-pole-promotion .content-promotion-text .title {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  color: #42548d !important;
  line-height: 26px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px !important;
}
.content-page .block-pole-promotion .content-promotion-text .title strong {
  font-weight: 700;
  color: #e6007e;
}
.content-page .block-pole-promotion .content-promotion-text .description {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 17px !important;
  color: #42548d !important;
  line-height: 25px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 0 !important;
}
.content-page .block-pole-promotion .content-promotion-text .description strong {
  font-weight: 700;
}
.content-page .block-pole-promotion .content-promotion-text .link-promotion {
  margin-top: 20px;
}
.content-page .block-pole-promotion .image-promo {
  display: block;
  width: 360px;
  height: 200px;
}
.content-page .block-pole-promotion.promotion-camion {
  background-color: #ffd7ed;
  border: 1px solid #e6007e;
  align-items: center;
}
.content-page .block-pole-promotion .image-camion {
  width: 335px;
  height: 200px;
}
.content-page .block-opinion-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  background-color: #f0f2f8;
  border: 1px solid #abb5d7;
  border-radius: 0.3125rem;
  padding: 20px;
}
.content-page .block-opinion-content .illustration-opinion {
  width: 300px;
  height: auto;
}
.content-page .block-opinion-content .content-text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: calc(100% - 300px);
  margin-left: 40px;
}
.content-page .block-opinion-content .content-text .title {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  color: #42548d !important;
  line-height: 26px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px !important;
}
.content-page .block-opinion-content .content-text .description {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 17px !important;
  color: #42548d !important;
  line-height: 25px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px !important;
}
.content-page .block-opinion-content .content-text .description:last-of-type {
  margin-bottom: 0 !important;
}
.content-page .block-opinion-content .content-text .description strong {
  font-weight: 700;
}
.content-page .block-opinion-content .content-text .content-link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.content-page .block-opinion-content .content-text .content-link .btn {
  margin-right: 10px;
  margin-top: 10px;
}
.content-page .block-opinion-content .content-text .content-link .btn:last-of-type {
  margin-right: 0;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .content-page .block-devis-content {
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .content-page .block-devis-content .content-devis-text {
    width: 100%;
    margin-bottom: 10px;
  }
  .content-page .block-devis-content .content-devis-text .title {
    font-size: 18px !important;
  }
  .content-page .block-devis-content .content-devis-text .description {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  .content-page .block-devis-content .btn {
    width: 100%;
  }
  .content-page .block-other-content {
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .content-page .block-other-content .content-other-text {
    width: 100%;
    margin-bottom: 10px;
  }
  .content-page .block-other-content .content-other-text .title {
    font-size: 18px !important;
    line-height: 22px !important;
  }
  .content-page .block-other-content .content-other-text .description {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .content-page .block-pole-promotion {
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .content-page .block-pole-promotion .content-promotion-text {
    width: 100%;
    margin-bottom: 10px;
    align-items: center;
  }
  .content-page .block-pole-promotion .content-promotion-text .title {
    font-size: 18px !important;
    line-height: 22px !important;
    text-align: center;
  }
  .content-page .block-pole-promotion .content-promotion-text .description {
    font-size: 16px !important;
    line-height: 24px !important;
    text-align: center;
  }
  .content-page .block-pole-promotion .content-promotion-text .link-promotion {
    display: block;
    width: 100%;
  }
  .content-page .block-pole-promotion .image-promo {
    width: 100%;
    height: auto;
  }
  .content-page .block-opinion-content {
    padding: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .content-page .block-opinion-content .illustration-opinion {
    width: 200px;
    margin-bottom: 15px;
  }
  .content-page .block-opinion-content .content-text {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .content-page .block-opinion-content .content-text .title {
    font-size: 18px !important;
    line-height: 22px !important;
  }
  .content-page .block-opinion-content .content-text .description {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .content-page .block-opinion-content .content-text .content-link .btn {
    margin-right: 0;
    margin-top: 5px;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .content-page .block-devis-content {
    padding: 10px 20px;
  }
  .content-page .block-devis-content .content-devis-text .title {
    font-size: 18px !important;
  }
  .content-page .block-devis-content .content-devis-text .description {
    font-size: 14px !important;
    line-height: 18px !important;
  }
  .content-page .block-other-content .content-other-text .title {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .content-page .block-other-content .content-other-text .description {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .content-page .block-pole-promotion .content-promotion-text {
    width: calc(100% - 220px);
  }
  .content-page .block-pole-promotion .content-promotion-text .title {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .content-page .block-pole-promotion .content-promotion-text .description {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .content-page .block-pole-promotion .image-promo {
    width: 220px;
    height: auto;
  }
  .content-page .block-opinion-content {
    padding: 15px;
    flex-direction: column;
    align-items: flex-start;
  }
  .content-page .block-opinion-content .illustration-opinion {
    width: 200px;
    margin-bottom: 15px;
  }
  .content-page .block-opinion-content .content-text {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .content-page .block-opinion-content .content-text .title {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .content-page .block-opinion-content .content-text .description {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .content-page .block-opinion-content .content-text .content-link .btn {
    margin-right: 5px;
    margin-top: 5px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .block-contact,
  .block-call-us {
    border-radius: 3px;
    height: 40px;
  }
  .block-contact .content-txt .infos-first,
  .block-call-us .content-txt .infos-first {
    font-size: 16px;
    line-height: 18px;
  }
  .block-contact .content-txt .infos-second,
  .block-call-us .content-txt .infos-second {
    font-size: 10px;
    line-height: 12px;
  }
  .block-call-us .content-txt .infos-first {
    font-size: 12px;
    line-height: 14px;
  }
  .block-call-us .content-txt .infos-second {
    font-size: 10px;
    line-height: 13px;
  }
  .content-page .block-devis {
    padding: 10px;
  }
  .content-page .block-devis .description {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #ffffff;
    line-height: 30px;
    text-rendering: optimizeLegibility;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .content-page .block-devis-content {
    padding: 10px 20px;
  }
  .content-page .block-devis-content .content-devis-text .title {
    font-size: 18px !important;
  }
  .content-page .block-devis-content .content-devis-text .description {
    font-size: 14px !important;
  }
  .content-page .block-other-content .content-other-text .title {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .content-page .block-other-content .content-other-text .description {
    font-size: 15px !important;
    line-height: 22px !important;
  }
  .content-page .block-pole-promotion .content-promotion-text {
    width: calc(100% - 260px);
  }
  .content-page .block-pole-promotion .content-promotion-text .title {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .content-page .block-pole-promotion .content-promotion-text .description {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  .content-page .block-pole-promotion .image-promo {
    width: 260px;
    height: auto;
  }
  .content-page .block-opinion-content {
    padding: 15px;
  }
  .content-page .block-opinion-content .illustration-opinion {
    width: 200px;
    order: 2;
  }
  .content-page .block-opinion-content .content-text {
    width: calc(100% - 200px);
    margin-left: 0;
    margin-right: 30px;
    order: 1;
  }
  .content-page .block-opinion-content .content-text .title {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .content-page .block-opinion-content .content-text .description {
    font-size: 15px !important;
    line-height: 22px !important;
  }
  .content-page .block-opinion-content .content-text .content-link .btn {
    margin-right: 5px;
    margin-top: 5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .block-contact,
  .block-call-us {
    height: 40px;
  }
  .block-contact .content-txt .infos-first,
  .block-call-us .content-txt .infos-first {
    font-size: 18px;
    line-height: 20px;
  }
  .block-contact .content-txt .infos-second,
  .block-call-us .content-txt .infos-second {
    font-size: 12px;
    line-height: 14px;
  }
  .block-call-us .content-txt .infos-first {
    font-size: 13px;
    line-height: 15px;
  }
  .block-call-us .content-txt .infos-second {
    font-size: 12px;
    line-height: 14px;
  }
  .content-page .block-devis-content {
    padding: 10px 20px;
  }
  .content-page .block-devis-content .content-devis-text .title {
    font-size: 18px !important;
  }
  .content-page .block-devis-content .content-devis-text .description {
    font-size: 14px !important;
  }
  .content-page .block-other-content .content-other-text .description {
    font-size: 15px !important;
    line-height: 22px !important;
  }
  .content-page .block-opinion-content .content-text .description {
    font-size: 15px !important;
    line-height: 22px !important;
  }
}
.header-promotion {
  display: none;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 40px;
  background-color: #e6007e;
  cursor: pointer;
}
.header-promotion .content-left {
  display: block;
  width: 120px;
  height: 100%;
}
.header-promotion .content-left .illustration {
  display: block;
  width: 120px;
  height: 40px;
  background-image: url("../img/promotion-header/illustration-promotion-xs.svg");
}
.header-promotion .content-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: calc(100% - 120px);
  height: 100%;
}
.header-promotion .content-right .illustration-50 {
  display: block;
  width: 62px;
  height: 32px;
  margin-right: 10px;
}
.header-promotion .content-right .text-promotion {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffe000;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  text-align: left;
  letter-spacing: -0.05em;
  width: 150px;
}

.header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  box-shadow: 0 0 70px rgba(40, 40, 40, 0.2);
  position: fixed;
  z-index: 1000;
  transition: all 0.2s ease 0s;
  top: 0;
}
.header a:hover {
  text-decoration: none;
}
.header.hidden {
  display: none;
}
.header .header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: calc(60px + 60px);
  background-color: #780145;
  border-bottom: 1px #780145 solid;
  position: relative;
}
.header .header-logo .logo-atout-box {
  transition: all 0.2s ease 0s;
}
.header .header-logo:hover .logo-atout-box {
  opacity: 0.7;
  transform: scale(0.9);
}
.header .header-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: calc(100% - 150px);
  height: calc(60px + 60px);
}
.header .header-content .header-top,
.header .header-content .header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  border-bottom: 1px #a5adbc solid;
  width: 100%;
  transition: all 0.2s ease 0s;
}
.header .header-content .header-top {
  height: 60px;
  padding: 0 10px;
}
.header .header-content .header-top .content-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.header .header-content .header-top .content-left .block-timetable {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 10px;
  height: 40px;
  gap: 10px;
}
.header .header-content .header-top .content-left .block-timetable .picto {
  color: #780145;
  font-size: 16px;
}
.header .header-content .header-top .content-left .block-timetable .content-txt {
  display: block;
}
.header .header-content .header-top .content-left .block-timetable .content-txt .infos-first,
.header .header-content .header-top .content-left .block-timetable .content-txt .infos-second,
.header .header-content .header-top .content-left .block-timetable .content-txt .infos-phone {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #780145;
  line-height: 15px;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.02em;
  text-align: left;
}
.header .header-content .header-top .content-left .block-timetable .content-txt .infos-first span,
.header .header-content .header-top .content-left .block-timetable .content-txt .infos-second span,
.header .header-content .header-top .content-left .block-timetable .content-txt .infos-phone span {
  color: #ffffff;
  font-weight: 700;
  display: inline-block;
  background-color: #780145;
  padding: 0 2px;
  animation-delay: 5s;
  animation: pulse 1s infinite ease-in-out alternate;
}
.header .header-content .header-top .content-left .block-timetable .content-txt .infos-phone {
  font-size: 16px;
  font-weight: 700;
}
.header .header-content .header-top .content-left .block-timetable .content-txt .infos-second {
  color: #1e3157;
}
.header .header-content .header-top .content-left .block-timetable.open {
  border: 1px #ebd9e3 solid;
  border-radius: 3px;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  background-color: #f2e6ec;
}
.header .header-content .header-top .content-left .block-timetable.open .content-txt .infos-second {
  font-size: 11px;
}
.header .header-content .header-top .content-left .block-timetable.open:hover {
  background-color: #e4ccda;
}
.header .header-content .header-top .content-left .block-promotion {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 10px;
  height: 40px;
  background-color: #6ce4ad;
  border: 1px solid #172644;
  border-radius: 3px;
  transition: all 0.2s ease 0s;
  cursor: pointer;
}
.header .header-content .header-top .content-left .block-promotion:hover {
  background-color: #172644;
}
.header .header-content .header-top .content-left .block-promotion:hover .content-txt .infos {
  color: #ffffff;
}
.header .header-content .header-top .content-left .block-promotion:hover .content-txt .infos strong {
  color: #6ce4ad;
}
.header .header-content .header-top .content-left .block-promotion .picto {
  display: block;
  width: 26px;
  height: 30px;
  margin-right: 10px;
  animation: shake 2s ease infinite;
}
.header .header-content .header-top .content-left .block-promotion .content-txt {
  display: block;
}
.header .header-content .header-top .content-left .block-promotion .content-txt .infos {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #172644;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.02em;
  text-align: left;
}
.header .header-content .header-top .content-left .block-promotion .content-txt .infos strong {
  font-weight: 700;
}
.header .header-content .header-top .content-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2px;
  flex-direction: column;
}
.header .header-content .header-top .content-right .content-elements {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-direction: row;
}
.header .header-content .header-top .content-right .content-elements .weglot-container {
  order: 1;
}
.header .header-content .header-top .content-right .content-elements .block-rating {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 5px;
  background-color: #ffffff;
  border: 1px #d2d6dd solid;
  border-radius: 3px;
  height: 24px;
  order: 2;
  transition: all 0.2s ease 0s;
}
.header .header-content .header-top .content-right .content-elements .block-rating:hover {
  background-color: #e9eaee;
  border: 1px #bcc1cd solid;
}
.header .header-content .header-top .content-right .content-elements .block-rating .rating-infos {
  display: flex;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1e3157;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  text-align: left;
  margin-right: 5px;
}
.header .header-content .header-top .content-right .content-elements .block-rating .rating-infos .label.lg {
  display: none;
}
.header .header-content .header-top .content-right .content-elements .block-rating .rating-infos strong {
  font-weight: 700;
}
.header .header-content .header-top .content-right .content-elements .block-rating .rating {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 24px;
}
.header .header-content .header-top .content-right .content-elements .block-rating .rating .star-note {
  font-size: 10px;
  color: #e6007e;
  line-height: 24px;
}
.header .header-content .header-top .content-right .block-other-link {
  display: block;
  position: relative;
}
.header .header-content .header-top .content-right .block-other-link .content-other-link .menu {
  list-style: none;
  margin: 0;
  display: flex;
  justify-items: flex-end;
  align-items: center;
  padding: 0;
}
.header .header-content .header-top .content-right .block-other-link .content-other-link .menu li {
  margin: 0;
  padding: 0;
  position: relative;
}
.header .header-content .header-top .content-right .block-other-link .content-other-link .menu li::before {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  content: "-";
  position: absolute;
  left: 5px;
}
.header .header-content .header-top .content-right .block-other-link .content-other-link .menu li a {
  display: block;
  position: relative;
  transition: all 0.2s ease 0s;
  color: #1e3157;
  text-decoration: underline;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  text-align: left;
  padding-left: 15px;
}
.header .header-content .header-top .content-right .block-other-link .content-other-link .menu li a:hover {
  color: #04060b;
  text-decoration: none;
}
.header .header-content .header-top .content-right .block-other-link .content-other-link .menu li:first-of-type a {
  padding-left: 0;
}
.header .header-content .header-top .content-right .block-other-link .content-other-link .menu li:first-of-type::before {
  content: "";
  left: 0;
}
.header .header-content .header-bottom {
  height: 60px;
  padding-right: 10px;
}
.header .header-content .header-bottom .btn-other-info {
  position: relative;
  display: none;
  width: 40px;
  height: 40px;
  border-right: 1px #abb5d7 solid;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
.header .header-content .header-bottom .btn-other-info .content {
  display: block;
  position: relative;
  width: 20px;
  height: 16px;
  margin: 12px auto 0 auto;
}
.header .header-content .header-bottom .btn-other-info .content .icon-line {
  display: block;
  position: relative;
  height: 2px;
  width: 100%;
  background-color: #780145;
  margin-bottom: 5px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.5s ease;
}
.header .header-content .header-bottom .btn-other-info .content .icon-line.left-line {
  width: 50%;
  transition: all 0.2s ease 0s;
  background-color: #1e3157;
}
.header .header-content .header-bottom .btn-other-info .content .icon-line.right-line {
  width: 50%;
  float: right;
  transition: all 0.2s ease 0s;
  background-color: #1e3157;
}
.header .header-content .header-bottom .btn-other-info:hover {
  background-color: #cdd4e8;
  border-right: 1px #bcc5e0 solid;
}
.header .header-content .header-bottom .btn-other-info:hover .content .icon-line {
  background-color: #1e3157;
}
.header .header-content .header-bottom .btn-other-info:hover .content .icon-line.left-line {
  width: 100%;
}
.header .header-content .header-bottom .btn-other-info:hover .content .icon-line.right-line {
  width: 100%;
}
.header .header-content .header-bottom .content-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header .header-content .header-bottom .content-right .cta-promotion {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #f2e6ec;
  border: 1px solid #ebd9e3;
  border-radius: 3px;
  padding: 0 15px;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  margin-right: 5px;
  height: 40px;
}
.header .header-content .header-bottom .content-right .cta-promotion .label {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #780145;
  line-height: 1;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.02em;
}
.header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.xl {
  display: block;
}
.header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.md {
  display: none;
}
.header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.sm {
  display: none;
}
.header .header-content .header-bottom .content-right .cta-promotion .label i {
  font-size: 12px;
  margin-left: 5px;
  line-height: 1;
  animation: shake 2s ease infinite;
}
.header .header-content .header-bottom .content-right .cta-promotion:hover {
  background-color: #e4ccda;
}
.header .header-content .header-bottom .content-right .btn-devis-header {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e6007e;
  border-radius: 3px;
  padding: 0 20px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  line-height: 40px;
  text-rendering: optimizeLegibility;
  transition: all 0.2s ease 0s;
}
.header .header-content .header-bottom .content-right .btn-devis-header:hover {
  background-color: #eb3398;
}

body.promo_active .header {
  margin-top: 40px;
}
body.promo_active .header.shrink {
  margin-top: 0;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .header-promotion {
    display: flex;
  }
  .header-promotion .content-left {
    width: 120px;
  }
  .header-promotion .content-left .illustration {
    width: 120px;
    background-image: url("../img/promotion-header/illustration-promotion-xs.svg");
  }
  .header-promotion .content-right {
    width: calc(100% - 120px);
  }
  .header-promotion .content-right .text-promotion {
    font-size: 14px;
    line-height: 14px;
    width: 150px;
  }
  .header {
    top: 0;
  }
  .header .header-logo {
    width: 100px;
    height: calc(40px + 40px);
  }
  .header .header-logo .logo-atout-box {
    width: 80px;
  }
  .header .header-content {
    width: calc(100% - 100px);
    height: calc(40px + 40px);
  }
  .header .header-content .header-top {
    padding: 0 10px 0 5px;
  }
  .header .header-content .header-top .content-left {
    gap: 5px;
  }
  .header .header-content .header-top .content-left .block-timetable {
    display: none;
    justify-content: center;
    align-items: center;
    padding: 0 5px;
    height: 30px;
  }
  .header .header-content .header-top .content-left .block-timetable .content-txt {
    display: none;
  }
  .header .header-content .header-top .content-left .block-timetable.open {
    display: flex;
    border-radius: 3px;
    transition: all 0.2s ease 0s;
    cursor: pointer;
  }
  .header .header-content .header-top .content-left .block-call-us {
    padding: 0 5px;
    border-radius: 3px;
    height: 30px;
  }
  .header .header-content .header-top .content-left .block-call-us .content-txt {
    display: none;
  }
  .header .header-content .header-top .content-left .block-promotion {
    display: none;
  }
  .header .header-content .header-top .content-right .block-rating .rating-infos .label.xl {
    display: none !important;
  }
  .header .header-content .header-top .content-right .block-rating .rating-infos .label.lg {
    display: none !important;
  }
  .header .header-content .header-top .content-right .block-other-link {
    display: none;
  }
  .header .header-content .header-bottom {
    height: 40px;
    padding-right: 0;
  }
  .header .header-content .header-bottom .content-nav {
    display: none;
  }
  .header .header-content .header-bottom .btn-other-info {
    display: block;
  }
  .header .header-content .header-bottom .content-right {
    width: calc(100% - 40px);
    height: 100%;
  }
  .header .header-content .header-bottom .content-right .cta-promotion {
    justify-content: center;
    border-radius: 0;
    padding: 0;
    margin-right: 0;
    height: 100%;
    flex-grow: 1;
    width: 40%;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label {
    font-size: 12px;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.xl {
    display: none !important;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.md {
    display: block !important;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.sm {
    display: none !important;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label i {
    font-size: 10px;
    margin-left: 3px;
  }
  .header .header-content .header-bottom .content-right .btn-devis-header {
    font-size: 12px;
    border-radius: 0;
    padding: 0;
    height: 100%;
    flex-grow: 1;
    width: 60%;
  }
  body.promo_active .header {
    margin-top: 0;
  }
}
@media only screen and (min-width: 0) and (max-width: 379px) {
  .header {
    top: 0;
  }
  .header .header-logo {
    width: 80px;
    height: calc(40px + 40px);
  }
  .header .header-logo .logo-atout-box {
    width: 60px;
  }
  .header .header-content {
    width: calc(100% - 80px);
    height: calc(40px + 40px);
  }
  .header .header-content .header-bottom .content-right .cta-promotion {
    width: 35%;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label {
    font-size: 12px;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.xl {
    display: none !important;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.md {
    display: none !important;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.sm {
    display: block !important;
  }
  .header .header-content .header-bottom .content-right .btn-devis-header {
    width: 65%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-promotion {
    display: flex;
  }
  .header-promotion .content-left {
    width: 202px;
  }
  .header-promotion .content-left .illustration {
    width: 202px;
    background-image: url("../img/promotion-header/illustration-promotion-sm.svg");
  }
  .header-promotion .content-right {
    width: calc(100% - 202px);
    padding-right: 10px;
  }
  .header-promotion .content-right .text-promotion {
    font-size: 16px;
    line-height: 16px;
    width: 170px;
  }
  .header {
    top: 0;
  }
  .header .header-logo {
    width: 117px;
    height: calc(40px + 40px);
  }
  .header .header-logo .logo-atout-box {
    width: 96px;
  }
  .header .header-content {
    width: calc(100% - 117px);
    height: calc(40px + 40px);
  }
  .header .header-content .header-top {
    height: 40px;
    padding: 0 10px 0 5px;
  }
  .header .header-content .header-top .content-left {
    gap: 5px;
  }
  .header .header-content .header-top .content-left .block-timetable {
    display: none;
    justify-content: center;
    padding: 0 5px;
    height: 30px;
  }
  .header .header-content .header-top .content-left .block-timetable .content-txt {
    display: none;
  }
  .header .header-content .header-top .content-left .block-timetable.open {
    display: flex;
    background-color: #ffffff;
  }
  .header .header-content .header-top .content-left .block-call-us {
    padding: 0 5px;
    height: 30px;
  }
  .header .header-content .header-top .content-left .block-call-us .content-txt {
    display: none;
  }
  .header .header-content .header-top .content-left .block-promotion {
    display: none;
  }
  .header .header-content .header-top .content-right {
    flex-direction: row;
    gap: 10px;
  }
  .header .header-content .header-top .content-right .block-rating .rating-infos .label.xl {
    display: block !important;
  }
  .header .header-content .header-top .content-right .block-rating .rating-infos .label.lg {
    display: none !important;
  }
  .header .header-content .header-top .content-right .block-other-link {
    display: none;
  }
  .header .header-content .header-top .content-right .block-other-link .content-other-link .menu li::before {
    font-size: 12px;
    line-height: 24px;
    left: 5px;
  }
  .header .header-content .header-top .content-right .block-other-link .content-other-link .menu li a {
    font-size: 12px;
    line-height: 24px;
    padding-left: 15px;
  }
  .header .header-content .header-bottom {
    height: 40px;
    padding-right: 0;
  }
  .header .header-content .header-bottom .btn-other-info {
    display: block;
  }
  .header .header-content .header-bottom .content-right {
    width: 100%;
    height: 100%;
  }
  .header .header-content .header-bottom .content-right .cta-promotion {
    border-radius: 0;
    padding: 0;
    margin-right: 0;
    height: 100%;
    flex-grow: 1;
    justify-content: center;
    width: 40%;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label {
    font-size: 14px;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.xl {
    display: none !important;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.md {
    display: block !important;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.sm {
    display: none !important;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label i {
    font-size: 10px;
    margin-left: 3px;
  }
  .header .header-content .header-bottom .content-right .btn-devis-header {
    border-radius: 0;
    padding: 0;
    font-size: 14px;
    height: 100%;
    flex-grow: 1;
    width: 60%;
  }
  body.promo_active .header {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-promotion {
    display: flex;
  }
  .header-promotion .content-left {
    width: 202px;
  }
  .header-promotion .content-left .illustration {
    width: 202px;
    background-image: url("../img/promotion-header/illustration-promotion-sm.svg");
  }
  .header-promotion .content-right {
    width: calc(100% - 202px);
    padding-right: 10px;
  }
  .header-promotion .content-right .text-promotion {
    font-size: 16px;
    line-height: 16px;
    width: 280px;
  }
  .header {
    top: 0;
  }
  .header .header-logo {
    width: 84px;
    height: calc(40px + 60px);
  }
  .header .header-logo .logo-atout-box {
    width: 64px;
  }
  .header .header-content {
    width: calc(100% - 84px);
    height: calc(40px + 60px);
  }
  .header .header-content .header-top {
    height: 40px;
    padding: 0 5px;
  }
  .header .header-content .header-top .content-left {
    gap: 5px;
  }
  .header .header-content .header-top .content-left .block-timetable {
    display: none;
    justify-content: center;
    padding: 0 5px;
    height: 30px;
  }
  .header .header-content .header-top .content-left .block-timetable .content-txt {
    display: none;
  }
  .header .header-content .header-top .content-left .block-timetable.open {
    display: flex;
  }
  .header .header-content .header-top .content-left .block-call-us {
    padding: 0 5px;
    height: 30px;
  }
  .header .header-content .header-top .content-left .block-call-us .content-txt {
    display: none;
  }
  .header .header-content .header-top .content-left .block-promotion {
    display: none;
  }
  .header .header-content .header-top .content-right {
    flex-direction: row;
    gap: 10px;
  }
  .header .header-content .header-top .content-right .block-other-link .content-other-link .menu li::before {
    font-size: 12px;
    line-height: 24px;
    left: 5px;
  }
  .header .header-content .header-top .content-right .block-other-link .content-other-link .menu li a {
    font-size: 12px;
    line-height: 24px;
    padding-left: 15px;
  }
  .header .header-content .header-bottom {
    padding-right: 0;
  }
  .header .header-content .header-bottom .content-right {
    width: 250px;
    height: 100%;
  }
  .header .header-content .header-bottom .content-right .cta-promotion {
    border-radius: 0;
    padding: 0;
    margin-right: 0;
    height: 100%;
    flex-grow: 1;
    justify-content: center;
    width: 110px;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label {
    font-size: 14px;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.xl {
    display: none !important;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.md {
    display: block !important;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.sm {
    display: none !important;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label i {
    font-size: 10px;
    margin-left: 3px;
  }
  .header .header-content .header-bottom .content-right .btn-devis-header {
    border-radius: 0;
    padding: 0 30px;
    font-size: 14px;
    line-height: 20px;
    height: 100%;
    text-align: center;
    width: calc(100% - 110px);
  }
  body.promo_active .header {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .header-logo {
    width: 120px;
  }
  .header .header-logo .logo-atout-box {
    width: 88px;
  }
  .header .header-content {
    width: calc(100% - 120px);
  }
  .header .header-content .header-top .content-right {
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 2px;
  }
  .header .header-content .header-top .content-right .content-elements {
    gap: 5px;
  }
  .header .header-content .header-top .content-right .block-other-link .content-other-link .menu li a {
    font-size: 12px;
    line-height: 20px;
  }
  .header .header-content .header-bottom {
    padding-right: 0;
  }
  .header .header-content .header-bottom .content-right {
    width: 250px;
    height: 100%;
  }
  .header .header-content .header-bottom .content-right .cta-promotion {
    border-radius: 0;
    padding: 0;
    margin-right: 0;
    height: 100%;
    flex-grow: 1;
    justify-content: center;
    width: 110px;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label {
    font-size: 14px;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.xl {
    display: none !important;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.md {
    display: block !important;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label .txt-label.sm {
    display: none !important;
  }
  .header .header-content .header-bottom .content-right .cta-promotion .label i {
    font-size: 10px;
    margin-left: 3px;
  }
  .header .header-content .header-bottom .content-right .btn-devis-header {
    border-radius: 0;
    padding: 0 30px;
    font-size: 14px;
    line-height: 20px;
    height: 100%;
    text-align: center;
    width: calc(100% - 110px);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .header .header-logo {
    width: 130px;
  }
  .header .header-logo .logo-atout-box {
    width: 104px;
  }
  .header .header-content {
    width: calc(100% - 130px);
  }
  .header .header-content .header-top .content-right .block-rating .rating-infos .label.xl {
    display: none;
  }
  .header .header-content .header-top .content-right .block-rating .rating-infos .label.lg {
    display: block !important;
  }
  .header .header-content .header-top .content-right .block-other-link .content-other-link .menu li::before {
    font-size: 12px;
  }
  .header .header-content .header-top .content-right .block-other-link .content-other-link .menu li a {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1500px) {
  .header .header-content .header-top .content-right {
    flex-direction: row;
    gap: 10px;
  }
}
.header .header-content .header-bottom .content-nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}
.header .header-content .header-bottom .content-nav ul.slimmenu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  height: 100%;
}
.header .header-content .header-bottom .content-nav ul.slimmenu:before {
  content: "";
  display: table;
}
.header .header-content .header-bottom .content-nav ul.slimmenu:after {
  content: "";
  display: table;
  clear: both;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  transition: all 0.2s ease 0s;
  border-right: 1px #a5adbc solid;
  padding: 0 10px;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li .only-mobile {
  display: none;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li.last-navigation {
  display: none;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li a,
.header .header-content .header-bottom .content-nav ul.slimmenu li .fake-link {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.02em;
  transition: all 0.2s ease 0s;
  cursor: pointer;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li .sub-toggle {
  background: none;
  position: relative;
  height: 100%;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease 0s;
  margin-left: 15px;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li .sub-toggle:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li .sub-toggle > i {
  display: inline-block;
  color: #1e3157;
  font-size: 12px;
  vertical-align: middle;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li ul {
  margin: 0;
  list-style-type: none;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #780145;
  border-right: none;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li ul li:first-of-type {
  display: none;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li ul li ul li {
  background-color: #450128;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li > ul {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 999;
  display: none;
  padding: 0;
  min-width: 200px;
  border-top: none;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li > ul > li {
  width: 100%;
  padding: 0 20px;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li > ul > li:hover {
  background-color: #450128;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li > ul > li a,
.header .header-content .header-bottom .content-nav ul.slimmenu li > ul > li .fake-link {
  color: #ffffff;
  white-space: nowrap;
  padding: 12px 0 !important;
  width: 100%;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li > ul > li .sub-toggle {
  margin-left: 10px;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li > ul > li ul {
  position: absolute;
  left: 100%;
  top: 0;
  z-index: 999;
  display: none;
  width: 100%;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover {
  background-color: #780145;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover a,
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover .fake-link {
  text-decoration: none;
  color: #ffffff;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover .sub-toggle {
  transform: rotate(180deg);
}
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover .sub-toggle > i {
  color: white;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover ul li a,
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover ul li .fake-link {
  color: #ffffff;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover ul li .sub-toggle {
  transform: rotate(-90deg);
}
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover ul li .sub-toggle > i {
  color: #ffffff;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover ul li:hover a,
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover ul li:hover .fake-link {
  color: #ffffff;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover ul li:hover .sub-toggle {
  transform: rotate(90deg);
}
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover ul li:hover .sub-toggle > i {
  color: #ffffff;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover ul li:hover ul li:hover {
  background-color: #2c0019;
}
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover ul li:hover ul li:hover a,
.header .header-content .header-bottom .content-nav ul.slimmenu li:hover ul li:hover ul li:hover .fake-link {
  color: #ffffff;
}
.header .header-content .header-bottom .content-nav ul.slimmenu > li.has-submenu + li {
  border-left: 0;
}
.header.sticky .header-bottom .container .content-left .content-nav ul.slimmenu li a,
.header.sticky .header-bottom .container .content-left .content-nav ul.slimmenu li .fake-link {
  padding: 17px 25px;
}
.header.sticky .header-bottom .container .content-left .content-nav ul.slimmenu li.menu-item-has-children a,
.header.sticky .header-bottom .container .content-left .content-nav ul.slimmenu li.menu-item-has-children .fake-link {
  padding: 17px 35px 17px 25px;
}

@media only screen and (min-width: 0) and (max-width: 767px) {
  .header .header-content .header-bottom .content-nav {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .header-content .header-bottom .content-nav {
    width: calc(100% - 250px);
  }
  .header .header-content .header-bottom .content-nav ul.slimmenu {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .header .header-content .header-bottom .content-nav ul.slimmenu li {
    flex-grow: 1;
    padding: 0 10px;
  }
  .header .header-content .header-bottom .content-nav ul.slimmenu li a,
  .header .header-content .header-bottom .content-nav ul.slimmenu li .fake-link {
    font-size: 13px;
    line-height: 15px;
    text-align: center;
  }
  .header .header-content .header-bottom .content-nav ul.slimmenu li .sub-toggle {
    margin-left: 5px;
  }
  .header .header-content .header-bottom .content-nav ul.slimmenu li .sub-toggle > i {
    font-size: 10px;
  }
  .header .header-content .header-bottom .content-nav ul.slimmenu li > ul > li a,
  .header .header-content .header-bottom .content-nav ul.slimmenu li > ul > li .fake-link {
    text-align: left;
  }
  .header .header-content .header-bottom .content-nav ul.slimmenu > li:first-child {
    border-left: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .header-content .header-bottom .content-nav {
    width: calc(100% - 250px);
  }
  .header .header-content .header-bottom .content-nav ul.slimmenu {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .header .header-content .header-bottom .content-nav ul.slimmenu li {
    flex-grow: 1;
    padding: 0;
  }
  .header .header-content .header-bottom .content-nav ul.slimmenu li a,
  .header .header-content .header-bottom .content-nav ul.slimmenu li .fake-link {
    font-size: 14px;
    line-height: 1;
  }
  .header .header-content .header-bottom .content-nav ul.slimmenu li .sub-toggle {
    margin-left: 5px;
  }
  .header .header-content .header-bottom .content-nav ul.slimmenu li .sub-toggle > i {
    font-size: 10px;
  }
  .header .header-content .header-bottom .content-nav ul.slimmenu li > ul > li a,
  .header .header-content .header-bottom .content-nav ul.slimmenu li > ul > li .fake-link {
    text-align: left;
  }
  .header .header-content .header-bottom .content-nav ul.slimmenu > li:first-child {
    border-left: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .header .header-content .header-bottom .content-nav ul.slimmenu li a,
  .header .header-content .header-bottom .content-nav ul.slimmenu li .fake-link {
    font-size: 14px;
    line-height: 1;
  }
}
.panel {
  position: fixed;
  padding: 0;
  color: #1e3157;
  display: block;
  width: 300px;
  height: 100vh;
  background-color: #ffffff;
  top: 0;
  bottom: 0;
  overflow: hidden;
  min-height: 500px;
  z-index: 1040;
  margin-top: 0 !important;
  transform: translate3d(-300px, 0, 0);
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.panel.menu, .panel.callback, .panel.warehouse, .panel.contact, .panel.promotion, .panel.gallery {
  right: 0;
  left: auto;
  transform: translate3d(300px, 0, 0);
}
.panel a:hover {
  text-decoration: none;
}
.panel .block-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 20px);
  height: 70px;
  border-bottom: 1px #cdd4e8 solid;
  margin: auto;
}
.panel .block-header .content-left {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 75%;
  height: 100%;
}
.panel .block-header .content-left .logo {
  display: block;
  width: 100%;
  max-width: 210px;
  transition: all 0.2s ease 0s;
}
.panel .block-header .content-left .logo .logo-atout-box {
  display: block;
  width: 100%;
  height: auto;
}
.panel .block-header .content-left .logo .sentence-atout-box {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #780145;
  line-height: 13px;
  text-rendering: optimizeLegibility;
  text-align: right;
}
.panel .block-header .content-left .logo:hover {
  opacity: 0.7;
}
.panel .block-header .content-left .title {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #780145;
  line-height: 26px;
  text-rendering: optimizeLegibility;
}
.panel .block-header .content-left .subtitle {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 16px;
  text-rendering: optimizeLegibility;
}
.panel .block-header .content-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 25%;
  height: 100%;
}
.panel .block-header .content-right .close-panel {
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  border: 1px #abb5d7 solid;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
.panel .block-header .content-right .close-panel:hover {
  background-color: #cdd4e8;
  border: 1px #bcc5e0 solid;
}
.panel .block-header .content-right .close-panel .picto {
  display: block;
  width: 14px;
  height: 14px;
}

body.menu-open .overlay {
  visibility: visible;
  opacity: 1;
}
body.menu-open .panel.menu {
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translate3d(0, 0, 0);
}

body.callback-open .overlay {
  visibility: visible;
  opacity: 1;
}
body.callback-open .panel.callback {
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translate3d(0, 0, 0);
}

body.warehouse-open .overlay {
  visibility: visible;
  opacity: 1;
}
body.warehouse-open .panel.warehouse {
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translate3d(0, 0, 0);
}

body.contact-open .overlay {
  visibility: visible;
  opacity: 1;
}
body.contact-open .panel.contact {
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translate3d(0, 0, 0);
}

body.promo-open .overlay {
  visibility: visible;
  opacity: 1;
}
body.promo-open .panel.promotion {
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translate3d(0, 0, 0);
}

body.gallery-open .overlay {
  visibility: visible;
  opacity: 1;
}
body.gallery-open .panel.gallery {
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform: translate3d(0, 0, 0);
}

.panel.menu .block-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: calc(100vh - 70px);
  padding: 15px 10px 70px 10px;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
}
.panel.menu .block-menu ul {
  margin: 0;
  padding: 0;
  position: relative;
  list-style: none;
  width: 100%;
}
.panel.menu .block-menu ul li {
  position: relative;
  display: block;
  width: 100%;
  min-height: 40px;
  line-height: 40px;
  transition: all 0.2s ease 0s;
  margin-bottom: 5px;
  background: #ffffff;
  border: 1px #bcc5e0 solid;
  border-radius: 5px;
}
.panel.menu .block-menu ul li a {
  display: block;
  position: relative;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1e3157;
  line-height: 40px;
  text-rendering: optimizeLegibility;
  text-align: left;
  padding: 0 10px;
}
.panel.menu .block-menu ul li a.submenu.level_1.collapsed::after {
  display: inline-block;
  border: none;
  font-family: "Font Awesome 7 Pro", sans-serif;
  font-weight: 400;
  color: #1e3157;
  font-size: 12px;
  content: "\f107";
  position: absolute;
  right: 10px;
}
.panel.menu .block-menu ul li a.submenu.level_1::after {
  display: inline-block;
  border: none;
  font-family: "Font Awesome 7 Pro", sans-serif;
  font-weight: 400;
  color: #1e3157;
  font-size: 12px;
  content: "\f106";
  position: absolute;
  right: 10px;
}
.panel.menu .block-menu ul li a.submenu.level_2.collapsed::after {
  display: inline-block;
  border: none;
  font-family: "Font Awesome 7 Pro", sans-serif;
  font-weight: 400;
  color: #1e3157;
  font-size: 12px;
  content: "+";
  position: absolute;
  right: 10px;
}
.panel.menu .block-menu ul li a.submenu.level_2::after {
  display: inline-block;
  border: none;
  font-family: "Font Awesome 7 Pro", sans-serif;
  font-weight: 400;
  color: #1e3157;
  font-size: 12px;
  content: "\f068";
  position: absolute;
  right: 10px;
}
.panel.menu .block-menu ul li a.submenu.level_3.collapsed::after {
  display: inline-block;
  border: none;
  font-family: "Font Awesome 7 Pro", sans-serif;
  font-weight: 400;
  color: #1e3157;
  font-size: 12px;
  content: "\f067";
  position: absolute;
  right: 10px;
}
.panel.menu .block-menu ul li a.submenu.level_3::after {
  display: inline-block;
  border: none;
  font-family: "Font Awesome 7 Pro", sans-serif;
  font-weight: 400;
  color: #1e3157;
  font-size: 12px;
  content: "\f068";
  position: absolute;
  right: 10px;
}
.panel.menu .block-menu ul li .level_3,
.panel.menu .block-menu ul li .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  margin-bottom: 5px;
}
.panel.menu .block-menu ul li .level_3 li,
.panel.menu .block-menu ul li .menu li {
  position: relative;
  display: block;
  width: calc(100% - 10px);
  min-height: inherit;
  line-height: inherit;
  transition: all 0.2s ease 0s;
  background: inherit;
  border: none;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 5px;
}
.panel.menu .block-menu ul li .level_3 li a,
.panel.menu .block-menu ul li .menu li a {
  display: block;
  position: relative;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-align: left;
  padding: 7px 0 7px 10px;
}
.panel.menu .block-menu ul li .level_3 li a:before,
.panel.menu .block-menu ul li .menu li a:before {
  font-family: "Font Awesome 7 Pro", sans-serif;
  font-weight: 400;
  color: #1e3157;
  font-size: 12px;
  content: "\f105";
  position: absolute;
  left: 0;
}
.panel.menu .block-menu ul li .level_3 {
  margin-bottom: 0;
}
.panel.menu .block-menu ul.level_2 {
  padding: 0 10px;
}
.panel.menu .block-footer {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  flex-direction: column;
}
.panel.menu .block-footer .block-timetable-open {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0 10px;
  background-color: #1abc9c;
  border: 1px #148f77 solid;
  border-radius: 5px;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  width: calc(100% - 20px);
  height: 40px;
  margin: 0px auto 5px auto;
}
.panel.menu .block-footer .block-timetable-open .picto {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  margin-right: 10px;
}
.panel.menu .block-footer .block-timetable-open .picto i {
  font-size: 26px;
  color: #ffffff;
}
.panel.menu .block-footer .block-timetable-open .content-txt {
  display: block;
}
.panel.menu .block-footer .block-timetable-open .content-txt .infos-first {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #ffffff;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  text-align: left;
}
.panel.menu .block-footer .block-timetable-open .content-txt .infos-first span {
  color: #1abc9c;
  font-weight: 700;
  display: inline-block;
  background: #6579b7;
  padding: 0 2px;
  animation-delay: 5s !important;
}
.panel.menu .block-footer .block-timetable-open .content-txt .infos-second {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #ffffff;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  text-align: left;
}
.panel.menu .block-footer .block-contact {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0 10px;
  background: #ffffff;
  border: 1px #bcc5e0 solid;
  border-radius: 5px;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  width: calc(100% - 20px);
  height: 40px;
  margin: 0px auto 5px auto;
}
.panel.menu .block-footer .block-contact .picto {
  display: block;
  width: 26px;
  height: 26px;
  margin-right: 10px;
}
.panel.menu .block-footer .block-contact .content-txt {
  display: block;
}
.panel.menu .block-footer .block-contact .content-txt .infos-first {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #780145;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  text-align: left;
}
.panel.menu .block-footer .block-contact .content-txt .infos-second {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: #1e3157;
  line-height: 12px;
  text-rendering: optimizeLegibility;
  text-align: left;
}
.panel.menu .block-footer .block-contact:hover {
  background-color: #cdd4e8;
  border: 1px #abb5d7 solid;
}
.panel.menu .block-footer .block-call-us {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0 10px;
  background: #ffffff;
  border: 1px #cdd4e8 solid;
  border-radius: 5px;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  width: calc(100% - 20px);
  height: 40px;
  margin: 0 auto 5px auto;
}
.panel.menu .block-footer .block-call-us .picto {
  display: block;
  width: 26px;
  height: 26px;
  margin-right: 10px;
}
.panel.menu .block-footer .block-call-us .content-txt {
  display: block;
}
.panel.menu .block-footer .block-call-us .content-txt .infos-first {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #780145;
  line-height: 12px;
  text-rendering: optimizeLegibility;
  text-align: left;
}
.panel.menu .block-footer .block-call-us .content-txt .infos-second {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: #1e3157;
  line-height: 12px;
  text-rendering: optimizeLegibility;
  text-align: left;
}
.panel.menu .block-footer .block-call-us:hover {
  background-color: #cdd4e8;
  border: 1px #abb5d7 solid;
}
.panel.menu .block-footer .btn-devis-menu {
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  padding: 0;
  width: calc(100% - 20px);
  height: 40px;
  line-height: 40px;
  background: #204aa9;
  border-radius: 5px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #6579b7;
  line-height: 40px;
  text-rendering: optimizeLegibility;
  text-align: center;
  transition: all 0.2s ease 0s;
  text-decoration: none;
  margin: 0 auto 5px auto;
}
.panel.menu .block-footer .btn-devis-menu:hover {
  color: #ffffff;
  background: #3a4a7c;
}
.panel.menu .block-customer-area {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 0 10px;
  background: #ffffff;
  border: 1px #bcc5e0 solid;
  border-radius: 5px;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  width: calc(100% - 20px);
  height: 40px;
  margin: auto;
}
.panel.menu .block-customer-area .picto {
  display: block;
  width: 26px;
  height: 26px;
  margin-right: 10px;
}
.panel.menu .block-customer-area .content-txt {
  display: block;
}
.panel.menu .block-customer-area .content-txt .infos-first {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #780145;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  text-align: left;
}
.panel.menu .block-customer-area .content-txt .infos-second {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: #1e3157;
  line-height: 12px;
  text-rendering: optimizeLegibility;
  text-align: left;
}
.panel.menu .block-customer-area:hover {
  background-color: #cdd4e8;
  border: 1px #bcc5e0 solid;
}
.panel.menu .btn-customer-area {
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
  padding: 0;
  width: calc(100% - 20px);
  height: 40px;
  line-height: 40px;
  background: #e6007e;
  border-radius: 5px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  line-height: 40px;
  text-rendering: optimizeLegibility;
  text-align: center;
  transition: all 0.2s ease 0s;
  text-decoration: none;
  margin: 5px auto 0 auto;
}
.panel.menu .btn-customer-area:hover {
  color: #ffffff;
  background: #800046;
}
.panel.menu .footer-menu-mobile {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 16vh;
  border-top: 1px rgba(0, 0, 0, 0.1) solid;
}
.panel.menu .footer-menu-mobile .content {
  display: block;
  width: 100%;
}
.panel.menu .footer-menu-mobile .content a {
  margin: 0;
}
.panel.menu .footer-menu-mobile .content a.btn-espace-client {
  border-radius: 5px;
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  display: block;
  padding: 0 20px !important;
  height: 40px;
  -webkit-transition: all 0.2s linear !important;
  transition: all 0.2s linear !important;
  margin: 0 auto 10px auto !important;
  color: rgb(255, 255, 255);
  width: 80%;
  line-height: 36px;
}
.panel.menu .footer-menu-mobile .content a.btn-espace-client:hover {
  text-decoration: none;
  background: rgba(0, 0, 0, 0.4);
  color: rgba(255, 255, 255, 0.8);
}
.panel.menu .footer-menu-mobile .content a.btn-devis-mobile {
  background: #113483;
  width: 80%;
  margin: 0 auto !important;
  color: #ffffff;
  text-transform: uppercase;
}
.panel.menu .footer-menu-mobile .content a.btn-devis-mobile:hover {
  background: #092769;
  color: #ffffff !important;
}

.panel.callback {
  width: 400px;
  transform: translate3d(400px, 0, 0);
}
.panel.callback .block-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: calc(100vh - 70px);
  padding: 15px 10px;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
}
.panel.callback .block-wrapper .content-form .block-form .form-group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
}
.panel.callback .block-wrapper .content-form .block-form .form-group input[type=checkbox] {
  height: initial;
  width: initial;
}
.panel.callback .block-wrapper .content-form .block-form .form-group .important-info-check {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: #1e3157;
  line-height: 13px;
  text-rendering: optimizeLegibility;
  text-transform: none;
  text-align: left;
  font-size: 11px !important;
}
.panel.callback .block-wrapper .content-form .block-form .form-group p.infos-confidentialite {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: #1e3157;
  line-height: 13px;
  text-rendering: optimizeLegibility;
  padding-bottom: 20px;
  margin-bottom: 0;
}
.panel.callback .block-wrapper .content-form .block-form .form-group p.infos-confidentialite a:hover {
  color: #e72085;
  text-decoration: underline;
}
.panel.callback .block-wrapper .content-form .block-success,
.panel.callback .block-wrapper .content-form .block-error {
  display: none;
  margin-bottom: 20px;
}
.panel.callback .block-wrapper .content-form .block-success ul,
.panel.callback .block-wrapper .content-form .block-error ul {
  list-style: none;
  margin: 0;
  border-radius: 5px;
  display: flex;
  background: #f0f2f8;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.panel.callback .block-wrapper .content-form .block-success ul li .title,
.panel.callback .block-wrapper .content-form .block-error ul li .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #1e3157;
  line-height: 40px;
  text-rendering: optimizeLegibility;
  display: block;
  margin-bottom: 10px;
}
.panel.callback .block-wrapper .content-form .block-success ul li .infos,
.panel.callback .block-wrapper .content-form .block-error ul li .infos {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e3157;
  line-height: 20px;
  text-rendering: optimizeLegibility;
  display: block;
}
.panel.callback .block-wrapper .content-form .block-success ul {
  background: #aef4e6;
}
.panel.callback .block-wrapper .content-form .block-success ul li .title {
  color: #1abc9c;
}
.panel.callback .block-wrapper .content-form .block-success ul li .infos {
  color: #1abc9c;
}
.panel.callback .block-wrapper .content-form .block-error ul {
  background: #f8c9c4;
}
.panel.callback .block-wrapper .content-form .block-error ul li .title {
  color: #e74c3c;
}
.panel.callback .block-wrapper .content-form .block-error ul li .infos {
  color: #e74c3c;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .panel.callback {
    width: 300px;
    transform: translate3d(300px, 0, 0);
  }
  .panel.callback .block-wrapper {
    padding: 15px 10px 70px 10px;
  }
}
.panel.promotion {
  width: 450px;
  transform: translate3d(450px, 0, 0);
}
.panel.promotion .block-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: calc(100vh - 70px);
  padding: 15px 10px;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
}
.panel.promotion .block-wrapper .promo-text {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 10px;
  background-color: #ffd7ed;
  border-radius: 0.3125rem;
}
.panel.promotion .block-wrapper .promo-text .content {
  width: 70%;
}
.panel.promotion .block-wrapper .promo-text .content .text-promo {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: #e6007e !important;
  line-height: 22px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
.panel.promotion .block-wrapper .promo-text .content .text-promo:last-of-type {
  margin-bottom: 10px;
}
.panel.promotion .block-wrapper .promo-text .image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 211px;
  height: 126px;
}
.panel.promotion .block-wrapper .title-promotion {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #780145;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
.panel.promotion .block-wrapper .infos-promotion {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #6579b7;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-align: right;
  margin-top: 5px;
}
.panel.promotion .block-wrapper .slider-promotion {
  margin-bottom: 20px;
}
@keyframes line {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.panel.promotion .block-wrapper .slider-promotion .content-name {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  gap: 5px;
  margin-bottom: 10px;
}
.panel.promotion .block-wrapper .slider-promotion .content-name .item-choice-city {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 5px;
  background-color: #ffffff;
  border: 1px #abb5d7 solid;
  border-radius: 0.3125rem;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
.panel.promotion .block-wrapper .slider-promotion .content-name .item-choice-city .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
.panel.promotion .block-wrapper .slider-promotion .content-name .item-choice-city .subtitle {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
.panel.promotion .block-wrapper .slider-promotion .content-name .item-choice-city.active {
  background-color: #ffd7ed;
  border-color: #e6007e;
}
.panel.promotion .block-wrapper .slider-promotion .content-name .item-choice-city:hover {
  background-color: #fff0f8;
  border-color: #ffb3dd;
}
.panel.promotion .block-wrapper .slider-promotion .content-name .item-choice-city:hover.active {
  background-color: #ffd7ed;
  border-color: #e6007e;
}
.panel.promotion .block-wrapper .slider-promotion .content-items {
  display: block;
  width: 100%;
  height: 240px;
}
.panel.promotion .block-wrapper .slider-promotion .content-items .link-promo {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease 0s;
}
.panel.promotion .block-wrapper .slider-promotion .content-items .link-promo.active {
  display: block;
}
.panel.promotion .block-wrapper .slider-promotion .content-items .link-promo .overlay-promo {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 49, 87, 0.3);
  opacity: 0.3;
  transition: all 0.2s ease 0s;
  border-radius: 0.3125rem;
}
.panel.promotion .block-wrapper .slider-promotion .content-items .link-promo .overlay-promo .fake-link-promo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  border-radius: 0.3125rem;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: #ffffff !important;
  line-height: 40px !important;
  text-rendering: optimizeLegibility;
  border: 1px solid #ffffff;
  background-color: rgba(30, 49, 87, 0.5);
  opacity: 0;
}
.panel.promotion .block-wrapper .slider-promotion .content-items .link-promo:hover .overlay-promo {
  opacity: 1;
}
.panel.promotion .block-wrapper .slider-promotion .content-items .link-promo:hover .overlay-promo .fake-link-promo {
  opacity: 1;
}
.panel.promotion .block-wrapper .slider-promotion .content-indication {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}
.panel.promotion .block-wrapper .slider-promotion .content-indication .indice-delay {
  position: relative;
  display: block;
  width: 180px;
  height: 10px;
  border-radius: 5px;
  background-color: #dfe3f0;
}
.panel.promotion .block-wrapper .slider-promotion .content-indication .indice-delay .indice {
  position: absolute;
  z-index: 1;
  height: 10px;
  border-radius: 5px;
  background-color: #6579b7;
  bottom: 0;
  left: 0;
}
.panel.promotion .block-wrapper .slider-promotion .content-indication .dots {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.panel.promotion .block-wrapper .slider-promotion .content-indication .dots .dot {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #dfe3f0;
  margin-left: 5px;
  transition: all 0.2s ease 0s;
  cursor: pointer;
}
.panel.promotion .block-wrapper .slider-promotion .content-indication .dots .dot.active {
  background-color: #6579b7;
}
.panel.promotion .block-wrapper .slider-promotion .content-indication .dots .dot:hover {
  background-color: #bcc5e0;
}
.panel.promotion .block-wrapper .slider-promotion .content-indication .dots .dot:hover.active {
  background-color: #6579b7;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .panel.promotion {
    width: 320px;
    transform: translate3d(320px, 0, 0);
  }
  .panel.promotion .block-header .content-left {
    width: 85%;
  }
  .panel.promotion .block-header .content-right {
    width: 15%;
  }
  .panel.promotion .block-wrapper .promo-text {
    height: 170px;
  }
  .panel.promotion .block-wrapper .promo-text .content {
    width: 75%;
    height: 100%;
    justify-content: space-between;
    display: inline-flex;
    flex-direction: column;
  }
  .panel.promotion .block-wrapper .promo-text .content .text-promo {
    font-size: 14px;
    line-height: 20px;
  }
  .panel.promotion .block-wrapper .promo-text .content .btn {
    width: 135px;
  }
  .panel.promotion .block-wrapper .promo-text .image {
    width: 150px;
    height: 90px;
  }
  .panel.promotion .block-wrapper .listing-promotion {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .panel.promotion .block-wrapper .items-promotion {
    grid-template-columns: repeat(2, 1fr);
  }
  .panel.promotion .block-wrapper .slider-promotion .content-name {
    grid-template-columns: repeat(2, 1fr);
  }
  .panel.promotion .block-wrapper .slider-promotion .content-items {
    display: block;
    width: 100%;
    height: 168px;
  }
}
.panel.gallery {
  width: 710px;
  transform: translate3d(710px, 0, 0);
}
.panel.gallery .block-header .content-left .title {
  display: block;
  margin-bottom: 0 !important;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 22px !important;
  color: #780145 !important;
  line-height: 26px !important;
  text-rendering: optimizeLegibility;
}
.panel.gallery .block-header .content-left .subtitle {
  display: block;
  margin-bottom: 0 !important;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #1e3157 !important;
  line-height: 16px !important;
  text-rendering: optimizeLegibility;
}
.panel.gallery .block-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: calc(100% - 70px);
  padding: 15px 10px 60px 10px;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .panel.gallery {
    width: 320px;
    transform: translate3d(320px, 0, 0);
  }
  .panel.gallery .block-header .content-left {
    width: 85%;
  }
  .panel.gallery .block-header .content-right {
    width: 15%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .panel.gallery {
    width: 520px;
    transform: translate3d(520px, 0, 0);
  }
  .panel.gallery .block-header .content-left {
    width: 85%;
  }
  .panel.gallery .block-header .content-right {
    width: 15%;
  }
}
section.content-page {
  padding: 80px 0 80px 0;
  position: relative;
  background-color: #ffffff;
}
section.content-page.other-bg {
  background-color: #f0f2f8;
}
section.content-page .heading-title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}
section.content-page h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #1e3157;
  line-height: 46px;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
section.content-page h2 strong {
  font-weight: 700;
}
section.content-page h3 {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #4a5f9f;
  line-height: 30px;
  text-rendering: optimizeLegibility;
  margin-bottom: 60px;
}
section.content-page h4 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #4a5f9f;
  line-height: 30px;
  text-rendering: optimizeLegibility;
  margin-bottom: 20px;
}
section.content-page p {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1e3157;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
section.content-page p strong {
  font-weight: 700;
}
section.content-page p:last-of-type {
  margin-bottom: 0;
}
section.content-page .btn-cta strong {
  color: #ffe000;
  font-weight: 700;
}
section.content-page a:not(.btn):not(.link-breadcrumb):not(.block-contact):not(.block-call-us):not(.link):not(.custom-btn):not(.btn-action):not(.link-quote) {
  text-decoration: underline;
  color: #1e3157;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
section.content-page a:not(.btn):not(.link-breadcrumb):not(.block-contact):not(.block-call-us):not(.link):not(.custom-btn):not(.btn-action):not(.link-quote):hover {
  text-decoration: none;
}
section.content-page a:not(.btn):not(.link-breadcrumb):not(.block-contact):not(.block-call-us):not(.link):not(.custom-btn):not(.btn-action):not(.link-quote) {
  color: white;
  text-decoration: underline;
}
section.content-page .link-quote {
  text-decoration: underline;
}
section.content-page .block-title {
  margin-bottom: calc(80px / 3);
}
section.content-page .block-title > * {
  text-align: left;
}
section.content-page .block-title h2 {
  margin-bottom: 0;
}
section.content-page .block-title h3 {
  margin-bottom: 0;
  margin-top: 10px;
}
section.content-page .block-title h4 {
  margin-bottom: 0;
  margin-top: 10px;
}
section.content-page .block-title.text-center > * {
  text-align: center;
}
section.content-page .block-action {
  margin-top: calc(80px / 2);
}
section.content-page .content-paragraph {
  margin-bottom: 80px;
}
section.content-page .content-paragraph:last-of-type {
  margin-bottom: 0;
}
section.content-page .listing-items {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: auto;
  justify-content: space-between;
}
section.content-page .listing-items .item {
  flex: 0 0 calc(25% - 24px);
  margin-left: 0;
  margin-bottom: 24px;
  position: relative;
}
section.content-page .listing-items .item > :last-child {
  margin-bottom: 0;
}
section.content-page .listing-items.equal-height .item > * {
  height: 100%;
}
section.content-page .listing-items.items-2 .item {
  flex: 0 0 calc(50% - 24px);
}
section.content-page .listing-items.items-3 .item {
  flex: 0 0 calc(33.3333333333% - 24px);
}
section.content-page .listing-items.items-5 .item {
  flex: 0 0 calc(20% - 24px);
}
section.content-page .listing-items.items-6 .item {
  flex: 0 0 calc(16.6666666667% - 24px);
}
section.content-page .listing-items.items-7 .item {
  flex: 0 0 calc(14.2857142857% - 24px);
}
section.content-page .listing-items.items-8 .item {
  flex: 0 0 calc(12.5% - 24px);
}
section.content-page .grid-items {
  display: grid;
  gap: 15px;
}
section.content-page .grid-items.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}
section.content-page .grid-items.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
section.content-page .grid-items.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
section.content-page .grid-items.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
section.content-page .grid-items.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
section.content-page .grid-items.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
section.content-page.other-page {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
section.content-page.other-page .content-columns {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  gap: 30px;
}
section.content-page.other-page .content-columns .column-text {
  width: 100%;
}
section.content-page.other-page .content-columns .column-text h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #1e3157;
  line-height: 46px;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.content-page.other-page .content-columns .column-text h1 strong {
  font-weight: 700;
}
section.content-page.other-page .content-columns .column-text h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #4a5f9f;
  line-height: 36px;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
  text-align: left;
  text-transform: inherit;
  margin-bottom: 20px;
  margin-top: 30px;
}
section.content-page.other-page .content-columns .column-text h2 strong {
  font-weight: 700;
}
section.content-page.other-page .content-columns .column-text h3 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #4a5f9f;
  line-height: 30px;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
  text-align: inherit;
  margin-bottom: 20px;
  font-style: normal;
}
section.content-page.other-page .content-columns .column-text h3 strong {
  font-weight: 700;
}
section.content-page.other-page .content-columns .column-text h4 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #4a5f9f;
  line-height: 26px;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
  text-align: inherit;
  margin-bottom: 20px;
  font-style: normal;
}
section.content-page.other-page .content-columns .column-text h4 strong {
  font-weight: 500;
}
section.content-page.other-page .content-columns .column-text p {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1e3157;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  margin-bottom: 15px;
  letter-spacing: 0;
}
section.content-page.other-page .content-columns .column-text p strong {
  font-weight: 700;
}
section.content-page.other-page .content-columns .column-text a:not(.btn):not(.other-link):not(.link-devis):not(.link-breadcrumb):not(.block-contact):not(.block-call-us):not(.link):not(.custom-btn):not(.btn-action) {
  color: #1e3157;
  transition: all 0.2s ease 0s;
  text-decoration: underline;
  font-weight: 700;
}
section.content-page.other-page .content-columns .column-text a:not(.btn):not(.other-link):not(.link-devis):not(.link-breadcrumb):not(.block-contact):not(.block-call-us):not(.link):not(.custom-btn):not(.btn-action):hover {
  text-decoration: none;
}
section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb),
section.content-page.other-page .content-columns .column-text ol {
  margin-left: 0;
}
section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb) li,
section.content-page.other-page .content-columns .column-text ol li {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #4a5f9f;
  line-height: 25px;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
  margin-bottom: 10px;
}
section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb) li strong,
section.content-page.other-page .content-columns .column-text ol li strong {
  font-weight: 700;
}
section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul,
section.content-page.other-page .content-columns .column-text ol.fa-ul {
  margin-left: 5rem;
}
section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul li,
section.content-page.other-page .content-columns .column-text ol.fa-ul li {
  margin-bottom: 1rem;
}
section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul li:last-child,
section.content-page.other-page .content-columns .column-text ol.fa-ul li:last-child {
  margin-bottom: 0;
}
section.content-page.other-page .content-columns .column-text .card .card-header h3 {
  margin-bottom: 0;
}
section.content-page.other-page .content-columns .column-text .card .card-image .description-img {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  background-color: rgba(120, 1, 69, 0.8);
  padding: 10px;
}
section.content-page.other-page .content-columns .column-text .card .card-image .description-img p {
  color: #ffffff;
  font-style: italic;
  margin-bottom: 0;
}
section.content-page.other-page .content-columns .column-text .card .card-image .description-img p strong {
  font-weight: 500;
  background-color: #e6007e;
}
section.content-page.other-page .content-columns .column-text .content-avantages-client h4 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1e3157;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
section.content-page.other-page .content-columns .column-text .content-avantages-client p {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #e6007e;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  text-align: center !important;
  margin: 0.5rem 0 0 0;
}
section.content-page.other-page .content-columns .column-text table tr td {
  border-bottom: 1px solid #cdd4e8;
  padding: 0.6em 1em;
}
section.content-page.other-page .content-columns .column-text .table-services-atout-box td {
  line-height: 1.5 !important;
}
section.content-page.other-page .content-columns .column-text span.subtitle-section {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  display: block;
  text-align: left;
  font-style: italic;
  margin-bottom: 1.5rem;
}
section.content-page.other-page .content-columns .column-text span strong {
  font-weight: 700;
}
section.content-page.other-page .content-columns .column-text hr {
  border-color: #abb5d7;
}
section.content-page.other-page .content-columns .column-text h1 *,
section.content-page.other-page .content-columns .column-text h2 *,
section.content-page.other-page .content-columns .column-text h3 *,
section.content-page.other-page .content-columns .column-text h4 *,
section.content-page.other-page .content-columns .column-text p *,
section.content-page.other-page .content-columns .column-text li * {
  font-size: 100% !important;
}
section.content-page.other-page .content-columns .column-text .content-present-image-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
section.content-page.other-page .content-columns .column-text .content-present-image-text .block-image {
  margin-left: 30px;
}
section.content-page.other-page .content-columns .column-text .content-map-all-center {
  display: block;
  width: 100%;
  height: 380px;
  border: 1px solid #cdd4e8;
  border-radius: 0.3125rem;
}
section.content-page.other-page .content-columns .column-text .content-map-all-center a {
  font-size: 10px !important;
}
section.content-page.other-page .content-columns .column-text .content-map-all-center .marker-map-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  border-radius: 50%;
  background-color: #e6007e;
  border: 2px solid #ffffff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
section.content-page.other-page .content-columns .column-text .content-map-all-center .marker-map-text.click-over {
  transform: scale(1.4);
  background-color: #1e3157;
  z-index: 1000;
}
section.content-page.other-page .content-columns .column-text .content-map-all-center .marker-map-text.active-over {
  transform: scale(1.4);
  z-index: 1000;
}
section.content-page.other-page .content-columns .column-text .block-promotion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffd7ed;
  border: 1px transparent solid;
  border-radius: 0.3125rem;
  padding: 10px 20px;
  margin-bottom: 30px;
  transition: all 0.2s ease 0s;
  cursor: pointer;
}
section.content-page.other-page .content-columns .column-text .block-promotion .illustration-promo {
  width: 120px;
  height: 56px;
}
section.content-page.other-page .content-columns .column-text .block-promotion .content-text {
  width: calc(100% - 120px);
  padding-right: 20px;
}
section.content-page.other-page .content-columns .column-text .block-promotion .content-text .title-promo {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #e6007e !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px !important;
}
section.content-page.other-page .content-columns .column-text .block-promotion .content-text .text-promo {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #1e3157 !important;
  line-height: 18px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 0 !important;
}
section.content-page.other-page .content-columns .column-text .block-promotion .content-text .text-promo strong {
  font-weight: 700;
  color: #e6007e;
}
section.content-page.other-page .content-columns .column-text .block-promotion:hover {
  background-color: #ffc7e6;
  border-color: #e6007e;
  text-decoration: none;
}
section.content-page.other-page .content-columns .column-action {
  position: sticky;
  width: 240px;
}
section.content-page.other-page .content-columns .column-action .block-contact {
  width: 100%;
  margin-right: 0;
  margin-bottom: 20px;
}
section.content-page.other-page .content-columns .column-action .block-call-us {
  margin-bottom: 20px;
}
section.content-page.other-page .block-form-pole {
  display: block;
  background-color: #f0f2f8;
  border: 1px #abb5d7 solid;
  border-radius: 0.3125rem;
  padding: 20px;
  margin-bottom: 30px;
}
section.content-page.other-page .block-form-pole .content-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}
section.content-page.other-page .block-form-pole .content-form .block-left .form-group:last-of-type {
  margin-bottom: 0;
}
section.content-page.other-page .block-form-pole .content-form .block-right .form-control {
  height: 100%;
}
section.content-page.other-page .block-form-pole .content-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
section.content-page.other-page .block-form-pole .content-action .h-captcha {
  margin-bottom: 0;
}
section.content-page.other-page .block-form-pole .block-success,
section.content-page.other-page .block-form-pole .block-error {
  display: none;
  margin-bottom: 20px;
  padding: 15px;
  border-radius: 0.3125rem;
}
section.content-page.other-page .block-form-pole .block-success .content-msg,
section.content-page.other-page .block-form-pole .block-error .content-msg {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
section.content-page.other-page .block-form-pole .block-success .content-msg .icon,
section.content-page.other-page .block-form-pole .block-error .content-msg .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  background-color: #52c057;
  border-radius: 10px;
}
section.content-page.other-page .block-form-pole .block-success .content-msg .icon i,
section.content-page.other-page .block-form-pole .block-error .content-msg .icon i {
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
}
section.content-page.other-page .block-form-pole .block-success .content-msg .infos-msg,
section.content-page.other-page .block-form-pole .block-error .content-msg .infos-msg {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #172644;
  line-height: 20px;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.content-page.other-page .block-form-pole .block-success {
  background-color: #ebf8ec;
  border: 1px #b7e5b9 solid;
}
section.content-page.other-page .block-form-pole .block-error {
  background-color: #fbe6e6;
  border: 1px #f1b2b2 solid;
}
section.content-page.other-page .block-form-pole .block-error .content-msg .icon {
  background-color: #e56d6d;
}
section.content-page.footer-page {
  padding-top: 0;
  padding-bottom: 5rem;
  position: relative;
}
section.content-page .content-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #ffffff;
  border: 1px #abb5d7 solid;
  border-radius: 5px;
  margin-bottom: 30px;
}
section.content-page .content-cta p {
  margin: 0;
  padding: 0;
}
section.content-page .content-cta .block-txt {
  display: block;
  width: 70%;
}
section.content-page .content-cta .block-txt .title {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 5px;
  text-align: left;
}
section.content-page .content-cta .block-txt .description {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #4a5f9f;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-align: left;
}
section.content-page .content-cta .block-txt .description strong {
  font-weight: 700;
}
section.content-page .content-cta.devis {
  background: #204aa9;
  border-color: #204aa9;
}
section.content-page .content-cta.devis .block-txt .title {
  font-weight: 700;
  color: #ffe000;
}
section.content-page .content-cta.devis .block-txt .description {
  color: #ffffff;
}
section.content-page .content-cta.devis .block-txt .description strong {
  font-weight: 700;
}
section.content-devis.other-page {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.content-page {
    padding: 30px 0 30px 0;
  }
  section.content-page.fullscreen {
    min-height: 800px;
  }
  section.content-page.fullscreen .overlay-img {
    min-height: 800px;
  }
  section.content-page .columns-text {
    columns: 1;
    column-gap: 30px;
  }
  section.content-page h2 {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1e3157;
    line-height: 28px;
    text-rendering: optimizeLegibility;
    margin-bottom: 5px;
  }
  section.content-page h2 strong {
    font-weight: 700;
  }
  section.content-page h3 {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #4a5f9f;
    line-height: 22px;
    text-rendering: optimizeLegibility;
    margin-bottom: 40px;
  }
  section.content-page h4 {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #4a5f9f;
    line-height: 24px;
    text-rendering: optimizeLegibility;
    margin-bottom: 15px;
  }
  section.content-page p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  section.content-page p strong {
    font-weight: 700;
  }
  section.content-page p:last-of-type {
    margin-bottom: 0;
  }
  section.content-page a:not(.btn):not(.link-breadcrumb):not(.block-contact):not(.block-call-us):not(.link):not(.custom-btn):not(.btn-action) {
    font-size: 14px;
  }
  section.content-page .block-title {
    margin-bottom: calc(30px / 2);
  }
  section.content-page .block-action {
    margin-top: calc(30px / 2);
  }
  section.content-page .content-paragraph {
    margin-bottom: 40px;
  }
  section.content-page .content-paragraph:last-of-type {
    margin-bottom: 0;
  }
  section.content-page.other-page {
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  section.content-page.other-page .content-columns {
    display: block;
    width: 100%;
  }
  section.content-page.other-page .content-columns .column-text {
    width: 100%;
    padding-right: 0;
  }
  section.content-page.other-page .content-columns .column-text h1 {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #1e3157;
    line-height: 30px;
    text-rendering: optimizeLegibility;
    margin-bottom: 20px;
  }
  section.content-page.other-page .content-columns .column-text h1 strong {
    font-weight: 700;
  }
  section.content-page.other-page .content-columns .column-text h2 {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: #4a5f9f;
    line-height: 26px;
    text-rendering: optimizeLegibility;
    letter-spacing: 0;
    text-align: left;
    text-transform: inherit;
    margin-bottom: 10px;
  }
  section.content-page.other-page .content-columns .column-text h2 strong {
    font-weight: 700;
    color: #1e3157;
  }
  section.content-page.other-page .content-columns .column-text h3 {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #4a5f9f;
    line-height: 24px;
    text-rendering: optimizeLegibility;
    letter-spacing: 0;
    text-align: inherit;
    margin-bottom: 10px;
    font-style: normal;
  }
  section.content-page.other-page .content-columns .column-text h3 strong {
    font-weight: 700;
  }
  section.content-page.other-page .content-columns .column-text h4 {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #4a5f9f;
    line-height: 22px;
    text-rendering: optimizeLegibility;
    letter-spacing: 0;
    text-align: inherit;
    margin-bottom: 10px;
    font-style: normal;
  }
  section.content-page.other-page .content-columns .column-text h4 strong {
    font-weight: 500;
    color: #e6007e;
  }
  section.content-page.other-page .content-columns .column-text p {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #4a5f9f;
    line-height: 24px;
    text-rendering: optimizeLegibility;
    margin-bottom: 15px;
    letter-spacing: 0;
  }
  section.content-page.other-page .content-columns .column-text p strong {
    font-weight: 700;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb),
  section.content-page.other-page .content-columns .column-text ol {
    padding-left: 15px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb) li,
  section.content-page.other-page .content-columns .column-text ol li {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #4a5f9f;
    line-height: 24px;
    text-rendering: optimizeLegibility;
    letter-spacing: 0;
    margin-bottom: 10px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb) li strong,
  section.content-page.other-page .content-columns .column-text ol li strong {
    font-weight: 700;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul,
  section.content-page.other-page .content-columns .column-text ol.fa-ul {
    margin-left: 3rem;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul li,
  section.content-page.other-page .content-columns .column-text ol.fa-ul li {
    margin-bottom: 1rem;
    font-size: 12px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul li:last-child,
  section.content-page.other-page .content-columns .column-text ol.fa-ul li:last-child {
    margin-bottom: 2rem;
  }
  section.content-page.other-page .content-columns .column-text table tr td {
    border-bottom: 1px solid #cdd4e8;
    padding: 0.6em 1em;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box td {
    line-height: 0.7 !important;
    padding: 0.4rem 0.2rem;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box td small {
    font-size: 11px;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box th {
    line-height: 0.7 !important;
    padding: 0.4rem 0.2rem;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box th small {
    font-size: 11px;
  }
  section.content-page.other-page .content-columns .column-text .content-present-image-text {
    display: block;
    margin-bottom: 30px;
  }
  section.content-page.other-page .content-columns .column-text video {
    max-width: 100%;
  }
  section.content-page.other-page .content-columns .column-text .content-map-all-center {
    display: block;
    width: 100%;
    height: 380px;
    border: 1px solid #cdd4e8;
    border-radius: 0.3125rem;
  }
  section.content-page.other-page .content-columns .column-text .content-map-all-center .marker-map-text {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    line-height: 1;
    text-rendering: optimizeLegibility;
    border-radius: 50%;
    background-color: #e6007e;
    border: 2px solid #ffffff;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s;
    width: 30px;
    height: 30px;
  }
  section.content-page.other-page .content-columns .column-text .content-map-all-center a {
    font-size: 10px !important;
  }
  section.content-page.other-page .content-columns .column-text .block-promotion {
    align-items: flex-start;
    flex-direction: column;
    padding: 10px;
    margin-bottom: 20px;
  }
  section.content-page.other-page .content-columns .column-text .block-promotion .illustration-promo {
    width: 100px;
    height: 47px;
  }
  section.content-page.other-page .content-columns .column-text .block-promotion .content-text {
    order: 2;
    width: 100%;
    padding-right: 0;
    margin-top: 10px;
  }
  section.content-page.other-page .column-action {
    display: none;
  }
  section.content-page.other-page .block-form-pole .content-form {
    grid-template-columns: repeat(1, 1fr);
  }
  section.content-page.other-page .block-form-pole .content-action {
    flex-direction: column;
  }
  section.content-page.other-page .block-form-pole .content-action .h-captcha {
    margin-bottom: 15px;
  }
  section.content-page .content-cta {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 15px;
    background: #ffffff;
    border: 1px #abb5d7 solid;
    border-radius: 5px;
    margin-bottom: 30px;
    flex-direction: column;
  }
  section.content-page .content-cta p {
    margin: 0;
    padding: 0;
  }
  section.content-page .content-cta .block-txt {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  section.content-page .content-cta .block-txt .title {
    margin: 0;
    padding: 0;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #4a5f9f;
    line-height: 1;
    text-rendering: optimizeLegibility;
    margin-bottom: 5px;
    text-align: left;
  }
  section.content-page .content-cta .block-txt .description {
    margin: 0;
    padding: 0;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #4a5f9f;
    line-height: 20px;
    text-rendering: optimizeLegibility;
    text-align: left;
  }
  section.content-page .content-cta .block-txt .description strong {
    font-weight: 700;
  }
  section.content-page .content-cta.devis {
    background: #204aa9;
    border-color: #204aa9;
  }
  section.content-page .content-cta.devis .block-txt .title {
    font-weight: 700;
    color: #ffe000;
  }
  section.content-page .content-cta.devis .block-txt .description {
    color: #ffffff;
  }
  section.content-page .content-cta.devis .block-txt .description strong {
    font-weight: 700;
  }
  section.content-devis.other-page {
    padding-top: 1rem;
    padding-bottom: 2rem;
    position: relative;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.content-page {
    padding: 50px 0 50px 0;
    position: relative;
  }
  section.content-page.fullscreen {
    min-height: 800px;
  }
  section.content-page.fullscreen .overlay-img {
    min-height: 800px;
  }
  section.content-page .columns-text {
    columns: 2;
    column-gap: 30px;
  }
  section.content-page h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 15px;
  }
  section.content-page h3 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 40px;
  }
  section.content-page h4 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  section.content-page p {
    font-size: 14px;
    line-height: 20px;
  }
  section.content-page .content-paragraph {
    margin-bottom: 40px;
  }
  section.content-page .block-title {
    margin-bottom: calc(50px / 2);
  }
  section.content-page .block-action {
    margin-top: calc(50px / 2);
  }
  section.content-page .listing-items .item.img-width-legend {
    flex: 0 0 50%;
  }
  section.content-page .listing-items .item.img-width-legend .content .content-legend {
    padding: 5px;
  }
  section.content-page .listing-items .item.img-width-legend .content .content-legend .title {
    font-size: 16px;
    line-height: 16px;
  }
  section.content-page .listing-items .item.img-width-legend .content .content-legend .legend {
    font-size: 13px;
    line-height: 14px;
  }
  section.content-page.other-page .content-columns .column-text {
    width: 100%;
    padding-right: 0;
  }
  section.content-page.other-page .content-columns .column-text h1 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 0;
  }
  section.content-page.other-page .content-columns .column-text h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  section.content-page.other-page .content-columns .column-text h3 {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 1rem;
  }
  section.content-page.other-page .content-columns .column-text h4 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 1rem;
  }
  section.content-page.other-page .content-columns .column-text p {
    font-size: 16px;
    line-height: 24px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb),
  section.content-page.other-page .content-columns .column-text ol {
    margin-left: 0;
    padding-left: 15px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb) li,
  section.content-page.other-page .content-columns .column-text ol li {
    font-size: 16px;
    line-height: 24px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul,
  section.content-page.other-page .content-columns .column-text ol.fa-ul {
    margin-left: 3rem;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul li,
  section.content-page.other-page .content-columns .column-text ol.fa-ul li {
    margin-bottom: 1rem;
    font-size: 12px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul li:last-child,
  section.content-page.other-page .content-columns .column-text ol.fa-ul li:last-child {
    margin-bottom: 2rem;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box td {
    line-height: 0.7 !important;
    padding: 0.4rem 0.2rem;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box td small {
    font-size: 11px;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box th {
    line-height: 0.7 !important;
    padding: 0.4rem 0.2rem;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box th small {
    font-size: 11px;
  }
  section.content-page.other-page .content-columns .column-text .card .card-header p {
    margin-bottom: 0;
  }
  section.content-page.other-page .content-columns .column-text .content-map-all-center {
    height: 260px;
  }
  section.content-page.other-page .content-columns .column-action {
    display: none;
  }
  section.content-page .content-cta {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  section.content-page .content-cta .block-txt {
    display: block;
    width: 100%;
  }
  section.content-page .content-cta .block-txt .title {
    font-size: 24px;
    line-height: 1;
    text-align: center;
  }
  section.content-page .content-cta .block-txt .description {
    font-size: 16px;
    line-height: 1;
    text-align: center;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.content-page {
    padding: 50px 0 50px 0;
  }
  section.content-page.fullscreen {
    min-height: 800px;
  }
  section.content-page.fullscreen .overlay-img {
    min-height: 800px;
  }
  section.content-page .columns-text {
    columns: 2;
    column-gap: 30px;
  }
  section.content-page h2 {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 15px;
  }
  section.content-page h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 50px;
  }
  section.content-page h4 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  section.content-page p {
    font-size: 15px;
    line-height: 22px;
  }
  section.content-page .content-paragraph {
    margin-bottom: 50px;
  }
  section.content-page .block-title {
    margin-bottom: calc(50px / 3);
  }
  section.content-page .block-action {
    margin-top: calc(50px / 2);
  }
  section.content-page.other-page .content-columns .column-text {
    width: 100%;
  }
  section.content-page.other-page .content-columns .column-text h1 {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 0;
  }
  section.content-page.other-page .content-columns .column-text h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  section.content-page.other-page .content-columns .column-text h3 {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0;
    margin-bottom: 1rem;
  }
  section.content-page.other-page .content-columns .column-text h4 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    margin-bottom: 1rem;
  }
  section.content-page.other-page .content-columns .column-text p {
    font-size: 15px;
    line-height: 22px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb),
  section.content-page.other-page .content-columns .column-text ol {
    margin-left: 0;
    padding-left: 15px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb) li,
  section.content-page.other-page .content-columns .column-text ol li {
    font-size: 15px;
    line-height: 22px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul,
  section.content-page.other-page .content-columns .column-text ol.fa-ul {
    margin-left: 3rem;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul li,
  section.content-page.other-page .content-columns .column-text ol.fa-ul li {
    margin-bottom: 1rem;
    font-size: 12px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul li:last-child,
  section.content-page.other-page .content-columns .column-text ol.fa-ul li:last-child {
    margin-bottom: 2rem;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box td {
    line-height: 0.7 !important;
    padding: 0.4rem 0.2rem;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box td small {
    font-size: 11px;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box th {
    line-height: 0.7 !important;
    padding: 0.4rem 0.2rem;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box th small {
    font-size: 11px;
  }
  section.content-page.other-page .content-columns .column-text .card .card-header p {
    margin-bottom: 0;
  }
  section.content-page.other-page .content-columns .column-action {
    width: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.content-page {
    padding: 60px 0 60px 0;
  }
  section.content-page.fullscreen {
    min-height: 800px;
  }
  section.content-page.fullscreen .overlay-img {
    min-height: 800px;
  }
  section.content-page h2 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 15px;
  }
  section.content-page h3 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 60px;
  }
  section.content-page h4 {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 15px;
  }
  section.content-page p {
    font-size: 14px;
    line-height: 20px;
  }
  section.content-page .content-paragraph {
    margin-bottom: 60px;
  }
  section.content-page a:not(.btn):not(.link-breadcrumb):not(.custom-btn):not(.btn-action) {
    font-size: 14px;
  }
  section.content-page .block-title {
    margin-bottom: calc(60px / 3);
  }
  section.content-page .block-action {
    margin-top: calc(60px / 2);
  }
  section.content-page.other-page .content-columns .column-text {
    width: 100%;
  }
  section.content-page.other-page .content-columns .column-text h1 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 0;
  }
  section.content-page.other-page .content-columns .column-text h2 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 1.5rem;
  }
  section.content-page.other-page .content-columns .column-text h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 1rem;
  }
  section.content-page.other-page .content-columns .column-text h4 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    margin-bottom: 1rem;
  }
  section.content-page.other-page .content-columns .column-text p {
    font-size: 15px;
    line-height: 22px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb),
  section.content-page.other-page .content-columns .column-text ol {
    margin-left: 0;
    padding-left: 15px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb) li,
  section.content-page.other-page .content-columns .column-text ol li {
    font-size: 15px;
    line-height: 22px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul,
  section.content-page.other-page .content-columns .column-text ol.fa-ul {
    margin-left: 3rem;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul li,
  section.content-page.other-page .content-columns .column-text ol.fa-ul li {
    margin-bottom: 1rem;
    font-size: 12px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul li:last-child,
  section.content-page.other-page .content-columns .column-text ol.fa-ul li:last-child {
    margin-bottom: 2rem;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box td {
    line-height: 0.7 !important;
    padding: 0.4rem 0.2rem;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box td small {
    font-size: 11px;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box th {
    line-height: 0.7 !important;
    padding: 0.4rem 0.2rem;
  }
  section.content-page.other-page .content-columns .column-text .table-services-atout-box th small {
    font-size: 11px;
  }
  section.content-page.other-page .content-columns .column-text .card .card-header p {
    margin-bottom: 0;
  }
  section.content-page.other-page .content-columns .column-action {
    width: 240px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  section.content-page {
    padding: 80px 0 80px 0;
  }
  section.content-page .heading-title {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 0.08em;
  }
  section.content-page h2 {
    font-size: 38px;
    line-height: 44px;
    margin-bottom: 15px;
  }
  section.content-page h3 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 70px;
  }
  section.content-page h4 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 20px;
  }
  section.content-page p {
    font-size: 16px;
    line-height: 24px;
  }
  section.content-page .content-paragraph {
    margin-bottom: 70px;
  }
  section.content-page .block-title {
    margin-bottom: calc(80px / 2);
  }
  section.content-page .block-action {
    margin-top: calc(80px / 2);
  }
  section.content-page.other-page .content-columns .column-text h1 {
    font-size: 38px;
    line-height: 44px;
    margin-bottom: 0;
  }
  section.content-page.other-page .content-columns .column-text h2 {
    font-size: 26px;
    line-height: 34px;
    margin-bottom: 1.5rem;
  }
  section.content-page.other-page .content-columns .column-text h3 {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 1rem;
  }
  section.content-page.other-page .content-columns .column-text h4 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    margin-bottom: 1rem;
  }
  section.content-page.other-page .content-columns .column-text p {
    font-size: 17px;
    line-height: 26px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb),
  section.content-page.other-page .content-columns .column-text ol {
    margin-left: 0;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb) li,
  section.content-page.other-page .content-columns .column-text ol li {
    font-size: 17px;
    line-height: 26px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul,
  section.content-page.other-page .content-columns .column-text ol.fa-ul {
    margin-left: 3rem;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul li,
  section.content-page.other-page .content-columns .column-text ol.fa-ul li {
    margin-bottom: 1rem;
    font-size: 12px;
  }
  section.content-page.other-page .content-columns .column-text ul:not(.breadcrumb-atb).fa-ul li:last-child,
  section.content-page.other-page .content-columns .column-text ol.fa-ul li:last-child {
    margin-bottom: 2rem;
  }
}
.card {
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 0.3125rem;
  border: 1px solid #abb5d7;
}
.card .card-header {
  background-color: #f0f2f8;
  border-bottom: 1px solid #abb5d7;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.card .card-header .title {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 18px !important;
  color: #ffffff !important;
  line-height: 20px !important;
  text-rendering: optimizeLegibility;
  margin: 0 !important;
}
.card .card-header h2 {
  margin-top: 0 !important;
}
.card .card-header .subtitle {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #8897c7;
  line-height: 16px;
  text-rendering: optimizeLegibility;
}
.card .card-header:first-child {
  border-radius: 0.3125rem 0.3125rem 0 0;
}
.card .card-body {
  padding: 15px;
}
.card .card-footer {
  background-color: #f0f2f8;
}
.card.card-primary .card-header {
  background-color: #e6007e;
}
.card.card-primary .card-header .title {
  color: #ffffff;
}
.card.card-primary .card-header .subtitle {
  color: #ff9ad1;
}
.card.card-tertiary .card-header {
  background-color: #1e3157;
}
.card.card-text-simple {
  background: #f0f2f8;
}
.card.card-text-simple .card-header {
  background: #f0f2f8;
  border-bottom: none;
}
.card.card-text-simple .card-footer {
  background: #f0f2f8;
  border-top: none;
}
.card.card-text-eco {
  background: #e3f6be;
}
.card.card-text-eco .card-header {
  background: #e3f6be;
  border-bottom: none;
}
.card.card-text-eco .card-footer {
  background: #e3f6be;
  border-top: none;
}
.card.faq-card .card-header {
  transition: all 0.2s ease 0s;
  cursor: pointer;
}
.card.faq-card .card-header[aria-expanded=false] {
  border-bottom: none;
}
.card.faq-card .card-header:hover {
  background: #cdd4e8;
}
.card.faq-card .card-body .block-question {
  padding: 15px 0 0 0;
  border-bottom: 1px #cdd4e8 solid;
}
.card.faq-card .card-body .block-question:last-of-type {
  border-bottom: none;
}

.card-promotion {
  padding: 0 !important;
  background-color: #ffffff;
  box-shadow: 0 0 10px 0 rgba(0, 54, 95, 0.13);
  margin: 10px !important;
  border: 1px solid #abb5d7;
  border-radius: 4px !important;
}
.card-promotion .card-img {
  border-radius: 4px 4px 0 0 !important;
  display: block;
  width: 100%;
  height: 180px;
  background-color: #1e3157;
}
.card-promotion .card-img img {
  border-radius: 4px 4px 0 0;
  transition: all 0.2s ease 0s;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.card-promotion:hover .card-img img {
  opacity: 1;
}
.card-promotion .card-body {
  display: flex;
  align-items: flex-start;
  height: 180px;
}
.card-promotion .card-body .card-title {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1e3157;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  letter-spacing: -0.4px;
  text-align: left;
  margin-bottom: 10px;
}
.card-promotion .card-body .card-text {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #1e3157;
  line-height: 22px;
  text-rendering: optimizeLegibility;
  text-align: left;
}
.card-promotion .card-footer {
  background-color: #ffffff;
  border-top: 0;
}
.card-promotion a:hover {
  text-decoration: none;
}

.card-categorie-boutique .card-header h3 {
  font-size: 20px !important;
}

#promotion-carousel-colonne .card-promotion {
  margin: 0 0 20px 0 !important;
  background-color: #f0f2f8;
  box-shadow: none;
}
#promotion-carousel-colonne .card-promotion .card-img .card-img-top {
  opacity: 0.7;
  border-radius: 5px 5px 0 0 !important;
  transition: 0.2s all linear;
  height: 230px;
}
#promotion-carousel-colonne .card-promotion .card-footer {
  background-color: #f0f2f8;
  border-top: 0;
}

.card-present-pink {
  background: #ffffff;
  border: 1px solid #b30062;
}
.card-present-pink .card-header {
  background: #e6007e;
  border-bottom: 1px solid #b30062;
}
.card-present-pink .card-footer {
  background: #e6007e;
  border-top: 1px solid #b30062;
}

.card-present-midnight-blue {
  background: #ffffff;
  border: 1px solid #1e3157;
}
.card-present-midnight-blue .card-header {
  background: #1e3157;
  border-bottom: 1px solid #1e3157;
}
.card-present-midnight-blue .card-footer {
  background: #1e3157;
  border-top: 1px solid #1e3157;
}

.card-text-classic {
  background: #ffffff;
  border: 1px solid #abb5d7;
}
.card-text-classic.accordion-item {
  margin-bottom: 0;
}
.card-text-classic .card-header {
  background: #f0f2f8;
  border-bottom: 1px solid #abb5d7;
}
.card-text-classic .card-header.accordion-header .accordion-button {
  width: 100%;
  position: relative;
}
.card-text-classic .card-header.accordion-header .accordion-button::after {
  content: "\f107";
  transform: rotate(180deg);
  font-family: "Font Awesome 7 Pro";
  font-weight: 500;
  position: absolute;
  right: 0;
  top: 17px;
  font-size: 26px;
  color: #1e3157;
  line-height: 0;
  transition: all 0.2s;
  cursor: pointer;
}
.card-text-classic .card-header.accordion-header .accordion-button.collapsed::after {
  transform: rotate(0deg);
}
.card-text-classic .card-header.accordion-header .accordion-button .title-accordion {
  margin-bottom: 0;
  font-size: 20px;
  color: #4a5f9f;
  cursor: pointer;
}
.card-text-classic .card-footer {
  background: #f0f2f8;
  border-top: 1px solid #abb5d7;
}

.card-content-text .card-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.colonne-centre .list_centre {
  position: relative;
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-left: 0;
  margin-top: 0;
  justify-content: flex-start;
  height: 100%;
}
.colonne-centre .list_centre li {
  display: flex;
  margin-bottom: 1rem;
}
.colonne-centre .list_centre li .card_centre {
  background: #450128;
  border: 0;
  border-radius: 5px;
  width: 100%;
}
.colonne-centre .list_centre li .card_centre .card-img-top {
  opacity: 0.8;
  border-radius: 5px 5px 0 0 !important;
}
.colonne-centre .list_centre li .card_centre .card-body ul {
  position: relative;
  height: 100%;
  width: 100%;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 0;
  margin-top: 0;
}
.colonne-centre .list_centre li .card_centre .card-body ul li {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.4rem !important;
  margin-bottom: 0.4rem !important;
}
.colonne-centre .list_centre li .card_centre .card-body ul li i {
  display: flex;
  align-self: flex-start;
  font-size: 20px;
  padding-right: 0.5rem;
  line-height: inherit !important;
  color: #ffffff;
}
.colonne-centre .list_centre li .card_centre .card-body ul li h4 {
  display: flex;
  align-self: flex-start;
  padding-bottom: 0;
  font-size: 14px;
  font-family: "Open Sans";
  color: #ffffff;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.colonne-centre .list_centre li .card_centre .card-body ul li h4 strong {
  font-weight: 800;
}
.colonne-centre .list_centre li .card_centre .card-body ul li p {
  font-weight: 400;
  font-size: 12px;
  color: #ec008c;
  line-height: 1.2;
  margin: 0;
  font-family: "Open Sans";
}
.colonne-centre .list_centre li .card_centre .card-body ul li a {
  font-size: 18px;
  font-family: "Open Sans";
  color: #ffffff;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.colonne-centre .list_centre li .card_centre .card-body ul li a.infos-mail {
  font-size: 13px;
  font-weight: 700;
}
.colonne-centre .list_centre li .card_centre .card-body ul li a:hover {
  text-decoration: none;
  color: #ec008c;
}

.card-infos {
  margin-bottom: 15px;
  border-radius: 5px;
  background-color: #f0f2f8;
}
.card-infos .card-header {
  margin: 0;
  padding: 0;
  padding: 15px;
  display: flex;
  justify-content: start;
  align-items: center;
  border-bottom: none;
  background-color: transparent;
}
.card-infos .card-header .card-title {
  display: block;
  width: 100%;
  margin-bottom: 0 !important;
}
.card-infos .card-header .card-title strong {
  font-weight: 700;
  color: #e6007e !important;
}
.card-infos .card-header .card-title a {
  display: block;
  width: 100%;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #1e3157;
  line-height: 26px;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
  margin-bottom: 0;
  padding-right: 40px;
  text-decoration: none;
}
.card-infos .card-header .card-title a:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  content: "\f077";
  font-size: 18px;
  color: #1e3157;
  position: absolute;
  right: 15px;
}
.card-infos .card-header .card-title a.collapsed:after {
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  content: "\f078";
  font-size: 18px;
  color: #1e3157;
  position: absolute;
  right: 15px;
}
.card-infos .card-body {
  border-top: 1px solid #abb5d7;
  background-color: #ffffff;
  border-radius: 0 0 5px 5px;
}
.card-infos .card-body p {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1e3157;
  line-height: 26px;
  text-rendering: optimizeLegibility;
  margin: 0 0 0.5rem !important;
}
.card-infos .card-body a {
  text-decoration: underline;
}

@media only screen and (min-width: 0) and (max-width: 379px) {
  .card-promotion .card-img {
    height: 140px;
  }
  .card-promotion .card-body {
    height: 170px;
  }
  .card-promotion .card-body .card-title {
    font-size: 16px;
    line-height: 20px;
  }
  .card-promotion .card-body .card-text {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (min-width: 380px) and (max-width: 575px) {
  .card-promotion .card-img {
    height: 180px;
  }
  .card-promotion .card-body {
    height: 180px;
  }
  .card-promotion .card-body .card-title {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
  }
  .card-promotion .card-body .card-text {
    font-size: 16px;
    line-height: 20px;
  }
  .card-infos {
    margin-bottom: 10px;
  }
  .card-infos .card-header {
    padding: 10px;
  }
  .card-infos .card-header .card-title a {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 18px;
    padding-right: 30px;
  }
  .card-infos .card-header .card-title a:after {
    font-size: 16px;
    right: 10px;
  }
  .card-infos .card-header .card-title a.collapsed:after {
    font-size: 16px;
    right: 10px;
  }
  .card-infos .card-body p {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 0.5rem !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .card-promotion .card-img {
    height: 130px;
  }
  .card-promotion .card-body {
    height: 200px;
  }
  .card-promotion .card-body .card-title {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
  }
  .card-promotion .card-body .card-text {
    font-size: 16px;
    line-height: 20px;
  }
  .card-infos {
    margin-bottom: 15px;
  }
  .card-infos .card-header {
    padding: 15px;
  }
  .card-infos .card-header .card-title a {
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 20px;
    padding-right: 40px;
  }
  .card-infos .card-header .card-title a:after {
    font-size: 18px;
    right: 15px;
  }
  .card-infos .card-header .card-title a.collapsed:after {
    font-size: 18px;
    right: 15px;
  }
  .card-infos .card-body p {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 0.5rem !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-promotion .card-img {
    height: 180px;
  }
  .card-promotion .card-body {
    height: 180px;
  }
  .card-promotion .card-body .card-title {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
  }
  .card-promotion .card-body .card-text {
    font-size: 16px;
    line-height: 20px;
  }
  .card-infos {
    margin-bottom: 15px;
  }
  .card-infos .card-header {
    padding: 15px;
  }
  .card-infos .card-header .card-title a {
    display: block;
    width: 100%;
    font-size: 18px;
    line-height: 20px;
    padding-right: 40px;
  }
  .card-infos .card-header .card-title a:after {
    font-size: 18px;
    right: 15px;
  }
  .card-infos .card-header .card-title a.collapsed:after {
    font-size: 18px;
    right: 15px;
  }
  .card-infos .card-body p {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 0.5rem !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .card-promotion .card-img {
    height: 140px;
  }
  .card-promotion .card-body {
    height: 180px;
  }
  .card-promotion .card-body .card-title {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
  }
  .card-promotion .card-body .card-text {
    font-size: 16px;
    line-height: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .card-promotion .card-img {
    height: 140px;
  }
  .card-promotion .card-body {
    height: 200px;
  }
  .card-promotion .card-body .card-title {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: -0.4px;
    margin-bottom: 10px;
  }
  .card-promotion .card-body .card-text {
    font-size: 16px;
    line-height: 20px;
  }
}
.contact-page .block-form-contact .form-group {
  margin-bottom: 15px;
}
.contact-page .block-form-contact .form-group input[type=checkbox] {
  height: initial;
  width: initial;
}
.contact-page .block-form-contact .form-group .important-info-check {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: #1e3157;
  line-height: 13px;
  text-rendering: optimizeLegibility;
  text-transform: none;
  text-align: left;
  font-size: 11px !important;
}
.contact-page .block-form-contact .form-group .important-info-check a {
  font-size: 11px !important;
  line-height: 13px !important;
}
.contact-page .block-form-contact .form-group p.infos-confidentialite {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: #1e3157;
  line-height: 13px;
  text-rendering: optimizeLegibility;
  padding-bottom: 20px;
  margin-bottom: 0;
}
.contact-page .block-success,
.contact-page .block-error {
  display: none;
  margin-bottom: 20px;
}
.contact-page .block-success ul,
.contact-page .block-error ul {
  list-style: none;
  margin: 0;
  border-radius: 5px;
  display: flex;
  background: #f0f2f8;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  text-align: left;
}
.contact-page .block-success ul li .title,
.contact-page .block-error ul li .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #1e3157;
  line-height: 40px;
  text-rendering: optimizeLegibility;
  display: block;
  margin-bottom: 10px;
}
.contact-page .block-success ul li .infos,
.contact-page .block-error ul li .infos {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e3157;
  line-height: 20px;
  text-rendering: optimizeLegibility;
  display: block;
}
.contact-page .block-success ul {
  background: #aef4e6;
}
.contact-page .block-success ul li .title {
  color: #1abc9c;
}
.contact-page .block-success ul li .infos {
  color: #1abc9c;
}
.contact-page .block-error ul {
  background: #f8c9c4;
}
.contact-page .block-error ul li .title {
  color: #e74c3c;
}
.contact-page .block-error ul li .infos {
  color: #e74c3c;
}

section.content-page.center-page .content-columns .column-text {
  width: calc(100% - 320px);
  padding-right: 60px;
  align-self: stretch;
}
section.content-page.center-page .content-columns .column-text .title-google-review {
  display: none;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  background-color: #ffffff;
  border: 1px #abb5d7 solid;
  border-radius: 0.3125rem;
  padding: 10px;
  margin-bottom: 20px;
}
section.content-page.center-page .content-columns .column-text .title-google-review .logo-google {
  width: 68px;
  height: auto;
  margin: 0 5px 0 0;
}
section.content-page.center-page .content-columns .column-text .title-google-review .stars {
  font-size: 12px;
  color: #fcbf00;
  margin: 0 5px 0 0;
}
section.content-page.center-page .content-columns .column-text .title-google-review .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 5px 0 0;
}
section.content-page.center-page .content-columns .column-text .title-google-review .number-user {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #1e3157 !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.center-page .content-columns .column-text .content-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  margin: 20px 0;
}
section.content-page.center-page .content-columns .column-text .content-card .card-1 {
  grid-area: 1/1/3/3;
}
section.content-page.center-page .content-columns .column-text .content-card .card-2 {
  grid-area: 1/3/2/4;
}
section.content-page.center-page .content-columns .column-text .content-card .card-3 {
  grid-area: 2/3/3/4;
}
section.content-page.center-page .content-columns .column-text .content-card .card-4 {
  display: none;
}
section.content-page.center-page .content-columns .column-text .content-card .card {
  margin-bottom: 0;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center:last-of-type {
  margin-bottom: 0;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center .picto {
  padding-right: 10px;
  width: 30px;
  height: auto;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center .value {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  text-decoration: none;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center .value:hover {
  text-decoration: underline;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center .value.phone {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #e6007e;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .timeline-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px rgba(171, 181, 215, 0.3) solid;
  min-height: 30px;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .timeline-center:last-of-type {
  border-bottom: none;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .timeline-center .label {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-align: left;
  padding-left: 15px;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .timeline-center .content-value {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .timeline-center .content-value .value {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-align: right;
  padding-right: 15px;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .timeline-center .content-value .current {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: #cdd4e8;
  padding: 0 10px;
  height: 20px;
  border-radius: 10px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1e3157;
  line-height: 2px;
  text-rendering: optimizeLegibility;
  margin-right: 10px;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center .title {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #e6007e;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 5px;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center ul li {
  margin-bottom: 10px;
  padding-left: 5px;
  line-height: 14px;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center ul li:last-child {
  margin-bottom: 0;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center ul li::marker {
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  content: "\f105";
  color: #1e3157;
  font-size: 12px;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center ul li a {
  margin: 0;
  padding: 0;
  transition: all 0.2s ease 0s;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 16px;
  text-rendering: optimizeLegibility;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center ul li a:hover {
  text-decoration: underline;
}
section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center hr {
  width: 100%;
  height: 1px;
  border: none;
  background-color: #abb5d7;
  margin: 0;
  padding: 0;
  margin: 10px 0;
}
section.content-page.center-page .content-columns .column-text .content-card-two {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  margin: 20px 0;
}
section.content-page.center-page .content-columns .column-text .content-card-two .card-1 {
  grid-area: 1/1/3/3;
}
section.content-page.center-page .content-columns .column-text .content-card-two .card-2 {
  grid-area: 1/3/2/4;
}
section.content-page.center-page .content-columns .column-text .content-card-two .card-3 {
  grid-area: 2/3/3/4;
}
section.content-page.center-page .content-columns .column-text .content-card-two .card {
  margin-bottom: 0;
  height: 100%;
}
section.content-page.center-page .content-columns .column-text .content-card-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  margin: 30px 0;
}
section.content-page.center-page .content-columns .column-text .content-card-three .card-1 {
  grid-area: 1/1/2/2;
}
section.content-page.center-page .content-columns .column-text .content-card-three .card-2 {
  grid-area: 1/2/2/4;
}
section.content-page.center-page .content-columns .column-text .content-card-three .card-3 {
  grid-area: 2/1/3/2;
}
section.content-page.center-page .content-columns .column-text .content-card-three .card-4 {
  grid-area: 2/2/3/4;
}
section.content-page.center-page .content-columns .column-text .content-card-three .card {
  margin-bottom: 0;
  height: 100%;
}
section.content-page.center-page .content-columns .column-text .content-map-center {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: 300px;
  border: 1px solid #cdd4e8;
  border-radius: 0.3125rem;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  width: 290px;
  border-right: 1px solid #cdd4e8;
  border-radius: 0.3125rem 0 0 0.3125rem;
  background-color: #f0f2f8;
  padding: 10px;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .title-warehouse {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address,
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-icon,
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  margin-right: 10px;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-icon i,
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-icon i {
  font-size: 16px;
  color: #1e3157;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-text,
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-text {
  display: block;
  width: calc(100% - 30px);
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-text.address,
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-text.address {
  color: #4a5f9f;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-text.schedule,
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-text.schedule {
  color: #1e3157;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-text .warning-holiday,
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-text .warning-holiday {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #e3ac00;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  margin-top: 2px;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-text .warning-holiday i,
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-text .warning-holiday i {
  margin-right: 5px;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-text .indice-schedule,
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-text .indice-schedule {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 16px;
  padding: 0 5px;
  border-radius: 8px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 16px;
  color: #ffffff;
  margin-top: 2px;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-text .indice-schedule.open,
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-text .indice-schedule.open {
  background-color: #1abc9c;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-text .indice-schedule.close,
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-text .indice-schedule.close {
  background-color: #e74c3c;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule {
  margin-bottom: 0;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .google-rate-content {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  background-color: #ffffff;
  padding: 3px 5px;
  border-radius: 3px;
  border: 1px solid #6579b7;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .google-rate-content .content-rating {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .google-rate-content .content-rating .stars {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #fcbf00;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  margin-right: 5px;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .google-rate-content .content-rating .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1e3157;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  margin-right: 5px;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .google-rate-content .link-number-user {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1e3157;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  text-decoration: underline;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .google-rate-content .link-number-user:hover {
  text-decoration: none;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 10px 0;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px;
  background-color: #ffffff;
  border: 1px solid #780145;
  border-radius: 3px;
  margin-right: 5px;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item .picto {
  display: block;
  width: 16px;
  height: auto;
  margin-right: 5px;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item .label {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #780145;
  line-height: 12px;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-map {
  display: block;
  width: calc(100% - 290px);
  height: 100%;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-map .marker-map-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  border-radius: 50%;
  background-color: #e6007e;
  border: 2px solid #ffffff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease 0s;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-map .marker-map-text.click-over {
  transform: scale(1.4);
  background-color: #1e3157;
  z-index: 1000;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-map .marker-map-text.active-over {
  transform: scale(1.4);
  z-index: 1000;
}
section.content-page.center-page .content-columns .column-text .content-map-center .content-map a {
  font-size: 10px !important;
}
section.content-page.center-page .content-columns .column-text .card .card-body .infos {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #4a5f9f !important;
  line-height: 18px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 5px !important;
}
section.content-page.center-page .content-columns .column-text .card .card-body .infos strong {
  font-weight: 700;
}
section.content-page.center-page .content-columns .column-text .card .card-body .infos.large {
  font-size: 20px !important;
  font-weight: 700 !important;
}
section.content-page.center-page .content-columns .column-text .card .card-body .infos .indice-pro {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: #ffd7ed;
  padding: 0 5px;
  height: 16px;
  border-radius: 10px;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  color: #e6007e !important;
  line-height: 16px !important;
  text-rendering: optimizeLegibility;
}
section.content-page.center-page .content-columns .column-text .card .card-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 5px;
}
section.content-page.center-page .content-columns .column-text .card .card-body ul li {
  margin: 0;
  padding: 0;
  transition: all 0.2s ease 0s;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #4a5f9f !important;
  line-height: 18px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
  padding-left: 5px;
  line-height: 14px;
}
section.content-page.center-page .content-columns .column-text .card .card-body ul li strong {
  font-weight: 700;
}
section.content-page.center-page .content-columns .column-text .card .card-body ul li:last-child {
  margin-bottom: 0;
}
section.content-page.center-page .content-columns .column-text .card .card-body ul li::marker {
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  content: "\f00c";
  color: #e6007e;
  font-size: 12px;
}
section.content-page.center-page .content-columns .column-text .card .card-body ul li .indice-pro {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: #ffd7ed;
  padding: 0 5px;
  height: 16px;
  border-radius: 10px;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  color: #e6007e !important;
  line-height: 16px !important;
  text-rendering: optimizeLegibility;
}
section.content-page.center-page .content-columns .column-text .block-gallery {
  display: grid;
  grid-template-columns: 1fr 33%;
  gap: 20px;
}
section.content-page.center-page .content-columns .column-text .block-gallery .illustration {
  display: flex;
  position: relative;
  cursor: pointer;
}
section.content-page.center-page .content-columns .column-text .block-gallery .illustration .hover-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 49, 87, 0.3);
  transition: all 0.2s ease 0s;
  position: absolute;
  opacity: 0;
  border-radius: 0.3125rem;
}
section.content-page.center-page .content-columns .column-text .block-gallery .illustration .hover-illustration .fake-link-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  border-radius: 0.3125rem;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: #ffffff !important;
  line-height: 40px !important;
  text-rendering: optimizeLegibility;
  border: 1px solid #ffffff;
  background-color: rgba(30, 49, 87, 0.5);
}
section.content-page.center-page .content-columns .column-text .block-gallery .illustration .image-illustration {
  width: 100%;
  height: 100%;
}
section.content-page.center-page .content-columns .column-text .block-gallery .illustration.one {
  grid-row: span 2/span 2;
  grid-column-start: 1;
}
section.content-page.center-page .content-columns .column-text .block-gallery .illustration.two {
  grid-row-start: 1;
  grid-column-start: 2;
}
section.content-page.center-page .content-columns .column-text .block-gallery .illustration.three {
  grid-row-start: 2;
  grid-column-start: 2;
}
section.content-page.center-page .content-columns .column-text .block-gallery .illustration:hover .hover-illustration {
  opacity: 1;
}
section.content-page.center-page .content-columns .column-text video {
  max-width: 100%;
}
section.content-page.center-page .content-columns .column-text .title-center-section {
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
}
section.content-page.center-page .content-columns .column-text .title-center-section h2 {
  color: #1e3157;
  background-color: #ffffff;
  display: inline-block;
  padding-right: 10px;
  z-index: 5;
  color: #1e3157;
}
section.content-page.center-page .content-columns .column-text .title-center-section .divider {
  background-color: #e7edfa;
  width: 100%;
  height: 5px;
  position: absolute;
  top: 55%;
}
section.content-page.center-page .content-columns .column-text .content-text-atout-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 60px;
}
section.content-page.center-page .content-columns .column-text .content-text-atout-box .image-presentation {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 34%;
  margin-left: 60px;
  order: 2;
}
section.content-page.center-page .content-columns .column-text .content-text-atout-box .image-presentation .cadre-image {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 30%;
  height: 60%;
  background-color: #e6007e;
  opacity: 0.5;
  z-index: 5;
}
section.content-page.center-page .content-columns .column-text .content-text-atout-box .image-presentation .img-text-presentation {
  position: relative;
  width: calc(100% - 20px);
  height: auto;
  order: 1;
}
section.content-page.center-page .content-columns .column-text .content-text-atout-box .text-presentation {
  width: 66%;
}
section.content-page.center-page .content-columns .column-text .content-text-atout-box:nth-child(2n) .image-presentation {
  margin-right: 60px;
  margin-left: 0;
  order: 1;
}
section.content-page.center-page .content-columns .column-text .content-text-atout-box:nth-child(2n) .text-presentation {
  order: 2;
}
section.content-page.center-page .content-columns .column-text .content-text-atout-box:last-child {
  margin-bottom: 0;
}
section.content-page.center-page .content-columns .column-action {
  position: relative;
  align-self: stretch;
  width: 320px;
}
section.content-page.center-page .content-columns .column-action .block-present-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  border: 1px #abb5d7 solid;
  border-radius: 0.3125rem;
  margin-bottom: 20px;
  transition: all 0.2s ease 0s;
}
section.content-page.center-page .content-columns .column-action .block-present-center .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 0 5px 0;
}
section.content-page.center-page .content-columns .column-action .block-present-center .title-google-review {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
}
section.content-page.center-page .content-columns .column-action .block-present-center .title-google-review .logo-google {
  width: 50px;
  height: auto;
  margin: 0 5px 0 0;
}
section.content-page.center-page .content-columns .column-action .block-present-center .title-google-review .stars {
  font-size: 12px;
  color: #fcbf00;
  margin: 0 5px 0 0;
}
section.content-page.center-page .content-columns .column-action .block-present-center .title-google-review .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 5px 0 0;
}
section.content-page.center-page .content-columns .column-action .block-present-center .title-google-review .number-user {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  color: #1e3157 !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.center-page .content-columns .column-action .block-present-center .link-promotion {
  margin-bottom: 10px;
}
section.content-page.center-page .content-columns .column-action .block-present-center .link-quote {
  display: block;
  width: 100%;
  color: #ffe000;
  margin-bottom: 5px;
}
section.content-page.center-page .content-columns .column-action .block-present-center .link-phone {
  display: block;
  width: 100%;
}
section.content-page.center-page .content-columns .column-action .block-google-review {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px #abb5d7 solid;
  border-radius: 0.3125rem;
  padding: 10px 20px;
  margin-bottom: 20px;
  transition: all 0.2s ease 0s;
}
section.content-page.center-page .content-columns .column-action .block-google-review .content-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
section.content-page.center-page .content-columns .column-action .block-google-review .content-title .logo-google {
  width: 100px;
  height: auto;
  margin-right: 10px;
}
section.content-page.center-page .content-columns .column-action .block-google-review .content-title .title-google {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.center-page .content-columns .column-action .block-google-review .content-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
section.content-page.center-page .content-columns .column-action .block-google-review .content-text .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 5px 0 0;
}
section.content-page.center-page .content-columns .column-action .block-google-review .content-text .stars {
  font-size: 20px;
  color: #fcbf00;
  margin: 0 5px 0 0;
}
section.content-page.center-page .content-columns .column-action .block-google-review .content-text .number-user {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: #1e3157 !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.center-page .content-columns .column-action .block-google-review:hover {
  background-color: #cdd4e8;
  text-decoration: none;
}
section.content-page.center-page .content-columns .column-action .block-plug-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  border: 1px #abb5d7 solid;
  border-radius: 0.3125rem;
  padding: 10px 20px;
  transition: all 0.2s ease 0s;
  margin-bottom: 20px;
}
section.content-page.center-page .content-columns .column-action .block-plug-center .picto {
  font-size: 48px;
  color: #e6007e;
  margin-right: 15px;
}
section.content-page.center-page .content-columns .column-action .block-plug-center .content-text .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 5px;
  margin-top: 0;
}
section.content-page.center-page .content-columns .column-action .block-plug-center .content-text .text-link {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #e6007e;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.content-page.center-page .content-columns .column-action .block-plug-center:hover {
  background-color: #cdd4e8;
  text-decoration: none;
}
section.content-page.center-page .content-columns .column-action .content-sticky {
  position: sticky;
  top: 150px;
}
section.content-page.center-page .content-columns .column-action .card .card-body .link-infos-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
section.content-page.center-page .content-columns .column-action .card .card-body .link-infos-center:last-of-type {
  margin-bottom: 0;
}
section.content-page.center-page .content-columns .column-action .card .card-body .link-infos-center .picto {
  padding-right: 10px;
  width: 30px;
  height: auto;
}
section.content-page.center-page .content-columns .column-action .card .card-body .link-infos-center .value {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  text-decoration: none;
}
section.content-page.center-page .content-columns .column-action .card .card-body .link-infos-center .value:hover {
  text-decoration: underline;
}
section.content-page.center-page .content-columns .column-action .card .card-body .link-infos-center .value.phone {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #e6007e;
}
section.content-page.center-page .content-columns .column-action .card .card-body .menu-center .title {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #e6007e;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
section.content-page.center-page .content-columns .column-action .card .card-body .menu-center ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 5px;
}
section.content-page.center-page .content-columns .column-action .card .card-body .menu-center ul li {
  margin-bottom: 10px;
  padding-left: 5px;
  line-height: 14px;
}
section.content-page.center-page .content-columns .column-action .card .card-body .menu-center ul li:last-child {
  margin-bottom: 0;
}
section.content-page.center-page .content-columns .column-action .card .card-body .menu-center ul li::marker {
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  content: "\f105";
  color: #1e3157;
  font-size: 12px;
}
section.content-page.center-page .content-columns .column-action .card .card-body .menu-center ul li a {
  margin: 0;
  padding: 0;
  transition: all 0.2s ease 0s;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 16px;
  text-rendering: optimizeLegibility;
}
section.content-page.center-page .content-columns .column-action .card .card-body .menu-center ul li a:hover {
  text-decoration: underline;
}
section.content-page.center-page .content-columns .column-action .card .card-body .menu-center hr {
  width: 100%;
  height: 1px;
  border: none;
  background-color: #abb5d7;
  margin: 0;
  padding: 0;
  margin: 10px 0;
}
section.content-page.center-page .content-columns .column-action .card .card-body .timeline-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px rgba(171, 181, 215, 0.3) solid;
  min-height: 30px;
}
section.content-page.center-page .content-columns .column-action .card .card-body .timeline-center:last-of-type {
  border-bottom: none;
}
section.content-page.center-page .content-columns .column-action .card .card-body .timeline-center .label {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-align: left;
  padding-left: 15px;
}
section.content-page.center-page .content-columns .column-action .card .card-body .timeline-center .value {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-align: right;
  padding-right: 15px;
}
section.content-page.center-page .content-columns .column-action .card .card-body .info-timeline {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1e3157;
  line-height: 20px;
  text-rendering: optimizeLegibility;
}
section.content-page.center-page .content-columns .column-action .card .card-body .info-timeline.large {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
section.content-page.center-page .content-columns .column-action .card .card-body .info-timeline.other {
  color: #557abc;
  font-size: 14px;
  line-height: 18px;
}
section.content-page.center-page .content-columns .column-action .card .card-body .services-available {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px rgba(171, 181, 215, 0.3) solid;
  min-height: 30px;
  padding: 5px 10px;
}
section.content-page.center-page .content-columns .column-action .card .card-body .services-available:last-of-type {
  border-bottom: none;
}
section.content-page.center-page .content-columns .column-action .card .card-body .services-available .picto {
  font-size: 14px;
  color: #1e3157;
  margin-right: 10px;
}
section.content-page.center-page .content-columns .column-action .card .card-body .services-available .value {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 16px;
  text-rendering: optimizeLegibility;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.content-page.center-page .content-columns {
    display: block;
    width: 100%;
  }
  section.content-page.center-page .content-columns .column-text {
    width: 100%;
    padding-right: 0;
  }
  section.content-page.center-page .content-columns .column-text .title-google-review {
    display: flex;
  }
  section.content-page.center-page .content-columns .column-text .block-gallery {
    gap: 10px;
  }
  section.content-page.center-page .content-columns .column-text .block-gallery .illustration .hover-illustration {
    display: none;
  }
  section.content-page.center-page .content-columns .column-text .content-card {
    gap: 10px;
    margin: 10px 0;
    grid-template-columns: repeat(1, 1fr);
  }
  section.content-page.center-page .content-columns .column-text .content-card .card-1 {
    grid-area: 1/1/2/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card-2 {
    grid-area: 2/1/3/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card-3 {
    grid-area: 3/1/4/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card-4 {
    grid-area: 4/1/5/2;
    display: block;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card {
    margin-bottom: 0;
    height: 100%;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center {
    margin-bottom: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center .picto {
    width: 26px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center .value {
    font-size: 13px;
    line-height: 16px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center .value.phone {
    font-size: 16px;
    line-height: 16px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center .title {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center ul li {
    margin-bottom: 5px;
    padding-left: 5px;
    line-height: 12px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center ul li a {
    font-size: 12px !important;
    line-height: 14px !important;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center hr {
    margin: 5px 0;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin: 10px 0;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .card-1 {
    grid-area: 1/1/2/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .card-2 {
    grid-area: 2/1/3/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .card-3 {
    grid-area: 3/1/4/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .card {
    height: 100%;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .block-plug-center {
    padding: 10px;
    height: auto;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .block-plug-center .content-text .title {
    font-size: 18px;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .block-plug-center .content-text .text-link {
    font-size: 14px;
    line-height: 16px;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin: 10px 0;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card-1 {
    grid-area: 1/1/2/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card-2 {
    grid-area: 2/1/3/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card-3 {
    grid-area: 3/1/4/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card-4 {
    grid-area: 4/1/5/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card {
    height: 100%;
  }
  section.content-page.center-page .content-columns .column-text .card {
    margin-bottom: 0;
  }
  section.content-page.center-page .content-columns .column-text .card .card-header {
    padding: 10px;
  }
  section.content-page.center-page .content-columns .column-text .card .card-header .title {
    font-size: 15px !important;
  }
  section.content-page.center-page .content-columns .column-text .card .card-header .subtitle {
    font-size: 13px !important;
    margin-bottom: 0 !important;
  }
  section.content-page.center-page .content-columns .column-text .card .card-body {
    padding: 5px 10px;
  }
  section.content-page.center-page .content-columns .column-text .card .card-body .infos {
    font-size: 13px !important;
    line-height: 16px !important;
    margin-bottom: 5px !important;
  }
  section.content-page.center-page .content-columns .column-text .card .card-body .infos strong {
    font-weight: 700;
  }
  section.content-page.center-page .content-columns .column-text .card .card-body .infos.large {
    font-size: 16px !important;
    font-weight: 700 !important;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center {
    height: auto;
    flex-direction: column;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center {
    width: 100%;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .title-warehouse {
    font-size: 18px;
    margin-bottom: 10px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule {
    margin-bottom: 10px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-icon,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-icon {
    width: 20px;
    margin-right: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-icon i,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-icon i {
    font-size: 16px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-text,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-text {
    width: calc(100% - 25px);
    font-size: 13px;
    line-height: 15px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice {
    margin: 10px 0;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item {
    padding: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item .picto {
    width: 14px;
    margin-right: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item .label {
    font-size: 12px;
    line-height: 12px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-map {
    width: 100%;
    height: 180px;
  }
  section.content-page.center-page .content-columns .column-text .content-text-atout-box {
    margin-bottom: 25px;
  }
  section.content-page.center-page .content-columns .column-text .content-text-atout-box .image-presentation {
    display: none;
  }
  section.content-page.center-page .content-columns .column-text .content-text-atout-box .text-presentation {
    width: 100%;
  }
  section.content-page.center-page .content-columns .column-action {
    display: block;
    width: 100%;
  }
  section.content-page.center-page .content-columns .column-action .navigation-page-center {
    display: none;
  }
  section.content-page.center-page .content-columns .column-action .block-present-center {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.content-page.center-page .content-columns {
    display: block;
  }
  section.content-page.center-page .content-columns .column-text {
    width: 100%;
    padding-right: 0;
  }
  section.content-page.center-page .content-columns .column-text .title-google-review {
    display: flex;
  }
  section.content-page.center-page .content-columns .column-text .block-gallery {
    gap: 10px;
  }
  section.content-page.center-page .content-columns .column-text .block-gallery .illustration .hover-illustration {
    display: none;
  }
  section.content-page.center-page .content-columns .column-text .content-card {
    gap: 10px;
    margin: 10px 0;
    grid-template-columns: repeat(2, 1fr);
  }
  section.content-page.center-page .content-columns .column-text .content-card .card-1 {
    grid-area: 1/1/2/3;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card-2 {
    grid-area: 2/2/3/3;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card-3 {
    grid-area: 3/2/4/3;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card-4 {
    grid-area: 2/1/4/2;
    display: block;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card {
    height: 100%;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center {
    margin-bottom: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center .picto {
    width: 26px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center .value {
    font-size: 13px;
    line-height: 16px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center .value.phone {
    font-size: 16px;
    line-height: 1px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center .title {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center ul li {
    margin-bottom: 5px;
    padding-left: 5px;
    line-height: 12px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center ul li a {
    font-size: 12px !important;
    line-height: 14px !important;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .menu-center hr {
    margin: 5px 0;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .card-1 {
    grid-area: 1/1/2/3;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .card-2 {
    grid-area: 2/1/3/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .card-3 {
    grid-area: 2/2/3/3;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .card {
    height: 100%;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .block-plug-center {
    padding: 10px;
    height: auto;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .block-plug-center .content-text .title {
    font-size: 18px;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .block-plug-center .content-text .text-link {
    font-size: 14px;
    line-height: 16px;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin: 10px 0;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card-1 {
    grid-area: 1/1/2/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card-2 {
    grid-area: 2/1/3/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card-3 {
    grid-area: 3/1/4/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card-4 {
    grid-area: 4/1/5/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card {
    height: 100%;
  }
  section.content-page.center-page .content-columns .column-text .card {
    margin-bottom: 0;
  }
  section.content-page.center-page .content-columns .column-text .card .card-header {
    padding: 10px;
  }
  section.content-page.center-page .content-columns .column-text .card .card-header .title {
    font-size: 15px !important;
  }
  section.content-page.center-page .content-columns .column-text .card .card-header .subtitle {
    font-size: 13px !important;
    margin-bottom: 0 !important;
  }
  section.content-page.center-page .content-columns .column-text .card .card-body {
    padding: 5px 10px;
  }
  section.content-page.center-page .content-columns .column-text .card .card-body .infos {
    font-size: 13px !important;
    line-height: 16px !important;
    margin-bottom: 5px !important;
  }
  section.content-page.center-page .content-columns .column-text .card .card-body .infos strong {
    font-weight: 700;
  }
  section.content-page.center-page .content-columns .column-text .card .card-body .infos.large {
    font-size: 16px !important;
    font-weight: 700 !important;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center {
    height: 300px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center {
    width: 260px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .title-warehouse {
    font-size: 18px;
    margin-bottom: 10px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule {
    margin-bottom: 10px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-icon,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-icon {
    width: 20px;
    margin-right: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-icon i,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-icon i {
    font-size: 16px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-text,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-text {
    width: calc(100% - 25px);
    font-size: 13px;
    line-height: 15px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice {
    margin: 10px 0;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item {
    padding: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item .picto {
    width: 14px;
    margin-right: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item .label {
    font-size: 12px;
    line-height: 12px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-map {
    width: calc(100% - 260px);
  }
  section.content-page.center-page .content-columns .column-text .content-text-atout-box {
    margin-bottom: 25px;
  }
  section.content-page.center-page .content-columns .column-text .content-text-atout-box .image-presentation {
    display: none;
  }
  section.content-page.center-page .content-columns .column-text .content-text-atout-box .text-presentation {
    width: 100%;
  }
  section.content-page.center-page .content-columns .column-action {
    display: block;
    width: 100%;
  }
  section.content-page.center-page .content-columns .column-action .navigation-page-center {
    display: none;
  }
  section.content-page.center-page .content-columns .column-action .block-present-center {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.content-page.center-page .container {
    padding: 0 !important;
  }
  section.content-page.center-page .content-columns {
    display: block;
  }
  section.content-page.center-page .content-columns .column-text {
    width: 100%;
    padding-right: 0;
  }
  section.content-page.center-page .content-columns .column-text .title-google-review {
    display: flex;
  }
  section.content-page.center-page .content-columns .column-text .block-gallery {
    gap: 10px;
  }
  section.content-page.center-page .content-columns .column-text .content-card {
    gap: 10px;
    margin: 10px 0;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card-4 {
    grid-area: 4/1/5/4;
    display: block;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card {
    margin-bottom: 0;
    height: 100%;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-header {
    padding: 10px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-header .title {
    font-size: 15px !important;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body {
    padding: 5px 10px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center {
    margin-bottom: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center .picto {
    width: 26px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center .value {
    font-size: 13px;
    line-height: 16px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .link-infos-center .value.phone {
    font-size: 16px;
    line-height: 16px;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .infos {
    font-size: 13px !important;
    line-height: 16px !important;
    margin-bottom: 5px !important;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .infos strong {
    font-weight: 700;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card .card-body .infos.large {
    font-size: 16px !important;
    font-weight: 700 !important;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .block-plug-center {
    padding: 10px;
    height: auto;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .block-plug-center .picto {
    display: none;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .block-plug-center .content-text .title {
    font-size: 18px;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .block-plug-center .content-text .text-link {
    font-size: 14px;
    line-height: 16px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center {
    height: 300px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center {
    width: 260px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .title-warehouse {
    font-size: 18px;
    margin-bottom: 10px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule {
    margin-bottom: 10px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-icon,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-icon {
    width: 20px;
    margin-right: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-icon i,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-icon i {
    font-size: 16px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-text,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-text {
    width: calc(100% - 25px);
    font-size: 13px;
    line-height: 15px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice {
    margin: 10px 0;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item {
    padding: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item .picto {
    width: 14px;
    margin-right: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item .label {
    font-size: 12px;
    line-height: 12px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-map {
    width: calc(100% - 260px);
  }
  section.content-page.center-page .content-columns .column-text .content-text-atout-box {
    margin-bottom: 25px;
  }
  section.content-page.center-page .content-columns .column-text .content-text-atout-box .image-presentation {
    display: none;
  }
  section.content-page.center-page .content-columns .column-text .content-text-atout-box .text-presentation {
    width: 100%;
  }
  section.content-page.center-page .content-columns .column-action {
    width: 100%;
  }
  section.content-page.center-page .content-columns .column-action .navigation-page-center {
    display: none;
  }
  section.content-page.center-page .content-columns .column-action .block-present-center {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.content-page.center-page .content-columns .column-text {
    width: calc(100% - 300px);
    padding-right: 40px;
  }
  section.content-page.center-page .content-columns .column-text .block-title .title-google-review {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 10px;
  }
  section.content-page.center-page .content-columns .column-text .block-title .title-google-review .logo-google {
    width: 68px;
    height: auto;
    margin: 0 5px 0 0;
  }
  section.content-page.center-page .content-columns .column-text .block-title .title-google-review .stars {
    font-size: 12px;
    color: #fcbf00;
    margin: 0 5px 0 0;
  }
  section.content-page.center-page .content-columns .column-text .block-title .title-google-review .rating {
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: #1e3157;
    line-height: 1;
    text-rendering: optimizeLegibility;
    margin: 0 5px 0 0;
  }
  section.content-page.center-page .content-columns .column-text .block-title .title-google-review .number-user {
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #1e3157;
    line-height: 1;
    text-rendering: optimizeLegibility;
    margin: 0;
  }
  section.content-page.center-page .content-columns .column-text .content-card {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 10px;
    margin: 20px 0;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card-1 {
    grid-area: 1/1/2/3;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card-2 {
    grid-area: 2/1/3/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card-3 {
    grid-area: 2/2/3/3;
  }
  section.content-page.center-page .content-columns .column-text .content-card .card-4 {
    display: none;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .card-1 {
    grid-area: 1/1/2/3;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .card-2 {
    grid-area: 2/1/3/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .card-3 {
    grid-area: 2/2/3/3;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .card {
    margin-bottom: 0;
    height: 100%;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .block-plug-center {
    padding: 10px;
    height: auto;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .block-plug-center .picto {
    font-size: 48px;
    color: #e6007e;
    margin-right: 15px;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .block-plug-center .content-text .title {
    font-size: 20px;
  }
  section.content-page.center-page .content-columns .column-text .content-card-two .block-plug-center .content-text .text-link {
    font-size: 14px;
    line-height: 16px;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card-1 {
    grid-area: 1/1/2/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card-2 {
    grid-area: 1/2/2/3;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card-3 {
    grid-area: 2/1/3/2;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card-4 {
    grid-area: 2/2/3/3;
  }
  section.content-page.center-page .content-columns .column-text .content-card-three .card {
    margin-bottom: 0;
    height: 100%;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center {
    height: 300px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center {
    width: 260px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .title-warehouse {
    font-size: 18px;
    margin-bottom: 10px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule {
    margin-bottom: 10px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-icon,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-icon {
    width: 20px;
    margin-right: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-icon i,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-icon i {
    font-size: 16px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-address .content-text,
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-schedule .content-text {
    width: calc(100% - 25px);
    font-size: 13px;
    line-height: 15px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice {
    margin: 10px 0;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item {
    padding: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item .picto {
    width: 14px;
    margin-right: 5px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-info-center .all-information .block-indice .item .label {
    font-size: 12px;
    line-height: 12px;
  }
  section.content-page.center-page .content-columns .column-text .content-map-center .content-map {
    width: calc(100% - 260px);
  }
  section.content-page.center-page .content-columns .column-text .content-text-atout-box .image-presentation {
    margin-left: 30px;
  }
  section.content-page.center-page .content-columns .column-text .content-text-atout-box:nth-child(2n) .image-presentation {
    margin-right: 30px;
  }
}
section.content-page.city-page .content-columns {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  gap: 60px;
}
section.content-page.city-page .content-columns .column-text {
  display: flex;
  flex-direction: column;
  width: calc(100% - 320px);
  padding-right: 0;
  align-self: stretch;
  gap: 80px;
}
section.content-page.city-page .content-columns .column-text .block-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
section.content-page.city-page .content-columns .column-text .block-text .title {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
section.content-page.city-page .content-columns .column-text .block-text .title h2 {
  color: #1e3157;
  font-size: 28px;
  line-height: 28px;
  margin: 0;
}
section.content-page.city-page .content-columns .column-text .block-text .title .divider {
  background-color: #e9eaee;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  flex: 1 0 0;
}
section.content-page.city-page .content-columns .column-text .block-text h3 {
  font-weight: 500;
  color: #1e3157;
  margin: 0;
  font-size: 26px;
  line-height: 32px;
}
section.content-page.city-page .content-columns .column-text .block-text .infos-paragraph {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}
section.content-page.city-page .content-columns .column-text .block-text .infos-paragraph p {
  margin: 0;
  color: #1e3157;
}
section.content-page.city-page .content-columns .column-text .block-text .infos-paragraph .link {
  color: #780145;
  text-decoration: underline;
}
section.content-page.city-page .content-columns .column-text .block-text .infos-paragraph .link:hover {
  text-decoration: none;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: 300px;
  border: 1px solid #a5adbc;
  border-radius: 0.3125rem;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  flex: 1 0 0;
  align-self: stretch;
  height: 100%;
  width: 290px;
  border-right: 1px solid #a5adbc;
  border-radius: 0.3125rem 0 0 0.3125rem;
  background-color: #ffffff;
  padding: 10px;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .title-warehouse {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .content-icon {
  display: flex;
  width: 20px;
  height: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .content-icon i {
  font-size: 16px;
  color: #1e3157;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .content-text .value {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #1e3157;
  line-height: normal;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .content-text .value strong {
  font-weight: 700;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .content-text .link-phone {
  font-size: 13px !important;
  color: #1e3157;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .content-text .warning-holiday {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #e3ac00;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  margin-top: 2px;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .content-text .warning-holiday i {
  margin-right: 5px;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .content-text .indice-schedule {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 16px;
  padding: 0 5px;
  border-radius: 8px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 16px;
  color: #ffffff;
  margin-top: 2px;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .content-text .indice-schedule.open {
  background-color: #1abc9c;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .content-text .indice-schedule.close {
  background-color: #e74c3c;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .content-text.address {
  color: #4a5f9f;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .content-text.schedule {
  color: #1e3157;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-schedule {
  margin-bottom: 0;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .google-rate-content {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  background-color: #ffffff;
  padding: 3px 5px;
  border-radius: 3px;
  border: 1px solid #6579b7;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .google-rate-content .content-rating {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .google-rate-content .content-rating .stars {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #fcbf00;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  margin-right: 5px;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .google-rate-content .content-rating .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1e3157;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  margin-right: 5px;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .google-rate-content .link-number-user {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1e3157;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  text-decoration: underline;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .google-rate-content .link-number-user:hover {
  text-decoration: none;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-map {
  display: block;
  width: calc(100% - 290px);
  height: 100%;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-map .marker-map-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  border-radius: 50%;
  background-color: #e6007e;
  border: 2px solid #ffffff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s ease 0s;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-map .marker-map-text.click-over {
  transform: scale(1.4);
  background-color: #1e3157;
  z-index: 1000;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-map .marker-map-text.active-over {
  transform: scale(1.4);
  z-index: 1000;
}
section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-map a {
  font-size: 10px !important;
  color: #780145 !important;
}
section.content-page.city-page .content-columns .column-text .block-text .listing-items {
  grid-row-gap: 20px;
}
section.content-page.city-page .content-columns .column-text .block-text .listing-items#service_exclusive .item {
  flex: 0 0 calc(25% - 15px);
}
section.content-page.city-page .content-columns .column-text .block-text .listing-items#service_normal .item {
  flex: 0 0 calc(50% - 10px);
}
section.content-page.city-page .content-columns .column-action {
  position: relative;
  align-self: stretch;
  width: 320px;
}
section.content-page.city-page .content-columns .column-action .block-google-review {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px #abb5d7 solid;
  border-radius: 0.3125rem;
  padding: 10px 20px;
  margin-bottom: 20px;
  transition: all 0.2s ease 0s;
}
section.content-page.city-page .content-columns .column-action .block-google-review .content-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
section.content-page.city-page .content-columns .column-action .block-google-review .content-title .logo-google {
  width: 100px;
  height: auto;
  margin-right: 10px;
}
section.content-page.city-page .content-columns .column-action .block-google-review .content-title .title-google {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.city-page .content-columns .column-action .block-google-review .content-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
section.content-page.city-page .content-columns .column-action .block-google-review .content-text .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 5px 0 0;
}
section.content-page.city-page .content-columns .column-action .block-google-review .content-text .stars {
  font-size: 20px;
  color: #fcbf00;
  margin: 0 5px 0 0;
}
section.content-page.city-page .content-columns .column-action .block-google-review .content-text .number-user {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: #1e3157 !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.city-page .content-columns .column-action .block-google-review:hover {
  background-color: #cdd4e8;
  text-decoration: none;
}
section.content-page.city-page .content-columns .column-action .block-plug-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #f2e6ec;
  border: 1px #d7b3c7 solid;
  border-radius: 0.3125rem;
  padding: 10px 20px;
  transition: all 0.2s ease 0s;
  margin-bottom: 20px;
}
section.content-page.city-page .content-columns .column-action .block-plug-center .picto {
  font-size: 48px;
  color: #780145;
  margin-right: 15px;
}
section.content-page.city-page .content-columns .column-action .block-plug-center .content-text .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 5px;
  margin-top: 0;
}
section.content-page.city-page .content-columns .column-action .block-plug-center .content-text .text-link {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #780145;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.content-page.city-page .content-columns .column-action .block-plug-center:hover {
  background-color: #e4ccda;
  text-decoration: none;
}
section.content-page.city-page .content-columns .column-action .content-sticky {
  position: sticky;
  top: 150px;
}
section.content-page.city-page .content-columns .column-action .card .card-body .link-infos-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
section.content-page.city-page .content-columns .column-action .card .card-body .link-infos-center:last-of-type {
  margin-bottom: 0;
}
section.content-page.city-page .content-columns .column-action .card .card-body .link-infos-center .picto {
  padding-right: 10px;
  width: 30px;
  height: auto;
}
section.content-page.city-page .content-columns .column-action .card .card-body .link-infos-center .value {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  text-decoration: none;
}
section.content-page.city-page .content-columns .column-action .card .card-body .link-infos-center .value:hover {
  text-decoration: underline;
}
section.content-page.city-page .content-columns .column-action .card .card-body .link-infos-center .value.phone {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #e6007e;
}
section.content-page.city-page .content-columns .column-action .card .card-body .menu-center .title {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #e6007e;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
section.content-page.city-page .content-columns .column-action .card .card-body .menu-center ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 5px;
}
section.content-page.city-page .content-columns .column-action .card .card-body .menu-center ul li {
  margin-bottom: 10px;
  padding-left: 5px;
  line-height: 14px;
}
section.content-page.city-page .content-columns .column-action .card .card-body .menu-center ul li:last-child {
  margin-bottom: 0;
}
section.content-page.city-page .content-columns .column-action .card .card-body .menu-center ul li::marker {
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  content: "\f105";
  color: #1e3157;
  font-size: 12px;
}
section.content-page.city-page .content-columns .column-action .card .card-body .menu-center ul li a {
  margin: 0;
  padding: 0;
  transition: all 0.2s ease 0s;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 16px;
  text-rendering: optimizeLegibility;
}
section.content-page.city-page .content-columns .column-action .card .card-body .menu-center ul li a:hover {
  text-decoration: underline;
}
section.content-page.city-page .content-columns .column-action .card .card-body .menu-center hr {
  width: 100%;
  height: 1px;
  border: none;
  background-color: #abb5d7;
  margin: 0;
  padding: 0;
  margin: 10px 0;
}
section.content-page.city-page .content-columns .column-action .card .card-body .timeline-center {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px rgba(171, 181, 215, 0.3) solid;
  min-height: 30px;
}
section.content-page.city-page .content-columns .column-action .card .card-body .timeline-center:last-of-type {
  border-bottom: none;
}
section.content-page.city-page .content-columns .column-action .card .card-body .timeline-center .label {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-align: left;
  padding-left: 15px;
}
section.content-page.city-page .content-columns .column-action .card .card-body .timeline-center .value {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-align: right;
  padding-right: 15px;
}
section.content-page.city-page .content-columns .column-action .card .card-body .info-timeline {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1e3157;
  line-height: 20px;
  text-rendering: optimizeLegibility;
}
section.content-page.city-page .content-columns .column-action .card .card-body .info-timeline.large {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}
section.content-page.city-page .content-columns .column-action .card .card-body .info-timeline.other {
  color: #557abc;
  font-size: 14px;
  line-height: 18px;
}
section.content-page.city-page .content-columns .column-action .card .card-body .services-available {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-bottom: 1px rgba(171, 181, 215, 0.3) solid;
  min-height: 30px;
  padding: 5px 10px;
}
section.content-page.city-page .content-columns .column-action .card .card-body .services-available:last-of-type {
  border-bottom: none;
}
section.content-page.city-page .content-columns .column-action .card .card-body .services-available .picto {
  font-size: 14px;
  color: #1e3157;
  margin-right: 10px;
}
section.content-page.city-page .content-columns .column-action .card .card-body .services-available .value {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 16px;
  text-rendering: optimizeLegibility;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.content-page.city-page .content-columns {
    flex-direction: column;
    gap: 30px;
  }
  section.content-page.city-page .content-columns .column-text {
    width: 100%;
    gap: 30px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .title h2 {
    font-size: 22px;
    line-height: 24px;
    width: 85%;
  }
  section.content-page.city-page .content-columns .column-text .block-text h3 {
    font-size: 20px;
    line-height: 20px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .infos-paragraph p {
    font-size: 15px;
    line-height: 21px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center {
    height: auto;
    flex-direction: column;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #a5adbc;
    border-radius: 0.3125rem 0.3125rem 0 0;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .title-warehouse {
    font-size: 18px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .link-phone {
    color: #1e3157;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-map {
    width: 100%;
    height: 240px;
    border-radius: 0 0 0.3125rem 0.3125rem;
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items {
    grid-row-gap: 20px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items .item.exclusive {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items .item.normal {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.city-page .content-columns .column-text .block-text .tns-outer {
    width: 100%;
  }
  section.content-page.city-page .content-columns .column-action {
    display: block;
    width: 100%;
  }
  section.content-page.city-page .content-columns .column-action .navigation-page-center {
    display: none;
  }
  section.content-page.city-page .content-columns .column-action .block-present-center {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.content-page.city-page .container {
    padding: 0 !important;
  }
  section.content-page.city-page .content-columns {
    flex-direction: column;
    gap: 40px;
  }
  section.content-page.city-page .content-columns .column-text {
    width: 100%;
    gap: 40px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .title h2 {
    font-size: 22px;
    line-height: 24px;
    width: 85%;
  }
  section.content-page.city-page .content-columns .column-text .block-text h3 {
    font-size: 20px;
    line-height: 20px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .infos-paragraph p {
    font-size: 15px;
    line-height: 21px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center {
    height: 300px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center {
    width: 260px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .title-warehouse {
    font-size: 18px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .link-phone {
    color: #1e3157;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-map {
    width: calc(100% - 260px);
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items {
    grid-row-gap: 20px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items .item.exclusive {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items .item.normal {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.city-page .content-columns .column-text .block-text .tns-outer {
    width: 100%;
  }
  section.content-page.city-page .content-columns .column-action {
    width: 100%;
  }
  section.content-page.city-page .content-columns .column-action .navigation-page-center {
    display: none;
  }
  section.content-page.city-page .content-columns .column-action .block-present-center {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.content-page.city-page .container {
    padding: 0 !important;
  }
  section.content-page.city-page .content-columns {
    flex-direction: column;
    gap: 40px;
  }
  section.content-page.city-page .content-columns .column-text {
    width: 100%;
    gap: 40px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .title h2 {
    font-size: 24px;
    line-height: 26px;
    width: 80%;
  }
  section.content-page.city-page .content-columns .column-text .block-text h3 {
    font-size: 22px;
    line-height: 22px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .infos-paragraph p {
    font-size: 15px;
    line-height: 21px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center {
    height: 300px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center {
    width: 260px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .title-warehouse {
    font-size: 18px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .link-phone {
    color: #1e3157;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-map {
    width: calc(100% - 260px);
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items {
    grid-row-gap: 20px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items .item.exclusive {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items .item.normal {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.city-page .content-columns .column-text .block-text .tns-outer {
    width: 100%;
  }
  section.content-page.city-page .content-columns .column-action {
    width: 100%;
  }
  section.content-page.city-page .content-columns .column-action .navigation-page-center {
    display: none;
  }
  section.content-page.city-page .content-columns .column-action .block-present-center {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.content-page.city-page .content-columns .column-text {
    gap: 60px;
    width: calc(100% - 300px);
  }
  section.content-page.city-page .content-columns .column-text .block-text .title h2 {
    font-size: 24px;
    line-height: 26px;
    width: 80%;
  }
  section.content-page.city-page .content-columns .column-text .block-text h3 {
    font-size: 22px;
    line-height: 22px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .infos-paragraph p {
    font-size: 15px;
    line-height: 21px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center {
    height: 300px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center {
    width: 260px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .title-warehouse {
    font-size: 18px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .link-phone {
    color: #1e3157;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-map {
    width: calc(100% - 260px);
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items {
    grid-row-gap: 20px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items .item.exclusive {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items .item.normal {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.city-page .content-columns .column-text .block-text .tns-outer {
    width: 100%;
  }
  section.content-page.city-page .content-columns .column-action {
    width: 300px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  section.content-page.city-page .content-columns .column-text {
    gap: 80px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .title h2 {
    font-size: 24px;
    line-height: 24px;
  }
  section.content-page.city-page .content-columns .column-text .block-text h3 {
    font-size: 22px;
    line-height: 22px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .infos-paragraph p {
    font-size: 16px;
    line-height: 24px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center {
    height: 300px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center {
    width: 260px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .title-warehouse {
    font-size: 18px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .content-map-center .content-map {
    width: calc(100% - 260px);
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items {
    grid-row-gap: 20px;
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items .item.exclusive {
    flex: 0 0 calc(25% - 15px);
  }
  section.content-page.city-page .content-columns .column-text .block-text .listing-items .item.normal {
    flex: 0 0 calc(50% - 10px);
  }
}
section.content-page.multi-center-page {
  padding: calc(80px / 2) 0;
}
section.content-page.multi-center-page .content-columns {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
  gap: 60px;
}
section.content-page.multi-center-page .content-columns .column-text {
  display: flex;
  flex-direction: column;
  width: calc(100% - 320px);
  padding-right: 0;
  align-self: stretch;
  gap: 80px;
}
section.content-page.multi-center-page .content-columns .column-text .block-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}
section.content-page.multi-center-page .content-columns .column-text .block-text .title {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
section.content-page.multi-center-page .content-columns .column-text .block-text .title h2 {
  color: #1e3157;
  font-size: 28px;
  line-height: 28px;
  margin: 0;
}
section.content-page.multi-center-page .content-columns .column-text .block-text .title .divider {
  background-color: #e9eaee;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  flex: 1 0 0;
}
section.content-page.multi-center-page .content-columns .column-text .block-text h3 {
  font-weight: 500;
  color: #1e3157;
  margin: 0;
  font-size: 26px;
  line-height: 32px;
}
section.content-page.multi-center-page .content-columns .column-text .block-text .infos-paragraph {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}
section.content-page.multi-center-page .content-columns .column-text .block-text .infos-paragraph p {
  margin: 0;
  color: #1e3157;
}
section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items {
  grid-row-gap: 20px;
}
section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items#service_exclusive .item {
  flex: 0 0 calc(25% - 15px);
}
section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items#service_normal .item {
  flex: 0 0 calc(50% - 10px);
}
section.content-page.multi-center-page .content-columns .column-action {
  position: relative;
  align-self: stretch;
  width: 320px;
}
section.content-page.multi-center-page .content-columns .column-action .content-sticky {
  position: sticky;
  top: 150px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.content-page.multi-center-page .content-columns {
    flex-direction: column;
    gap: 30px;
  }
  section.content-page.multi-center-page .content-columns .column-text {
    width: 100%;
    gap: 30px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .title h2 {
    font-size: 22px;
    line-height: 24px;
    width: 85%;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text h3 {
    font-size: 20px;
    line-height: 20px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .infos-paragraph p {
    font-size: 15px;
    line-height: 21px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center {
    height: auto;
    flex-direction: column;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-info-center {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #a5adbc;
    border-radius: 0.3125rem 0.3125rem 0 0;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .title-warehouse {
    font-size: 18px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .link-phone {
    color: #1e3157;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-map {
    width: 100%;
    height: 240px;
    border-radius: 0 0 0.3125rem 0.3125rem;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items {
    grid-row-gap: 20px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items .item.exclusive {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items .item.normal {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .tns-outer {
    width: 100%;
  }
  section.content-page.multi-center-page .content-columns .column-action {
    display: block;
    width: 100%;
  }
  section.content-page.multi-center-page .content-columns .column-action .navigation-page-center {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.content-page.multi-center-page .container {
    padding: 0 !important;
  }
  section.content-page.multi-center-page .content-columns {
    flex-direction: column;
    gap: 40px;
  }
  section.content-page.multi-center-page .content-columns .column-text {
    width: 100%;
    gap: 40px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .title h2 {
    font-size: 22px;
    line-height: 24px;
    width: 85%;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text h3 {
    font-size: 20px;
    line-height: 20px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .infos-paragraph p {
    font-size: 15px;
    line-height: 21px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center {
    height: 300px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-info-center {
    width: 260px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .title-warehouse {
    font-size: 18px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .link-phone {
    color: #1e3157;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-map {
    width: calc(100% - 260px);
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items {
    grid-row-gap: 20px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items .item.exclusive {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items .item.normal {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .tns-outer {
    width: 100%;
  }
  section.content-page.multi-center-page .content-columns .column-action {
    width: 100%;
  }
  section.content-page.multi-center-page .content-columns .column-action .navigation-page-center {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.content-page.multi-center-page .container {
    padding: 0 !important;
  }
  section.content-page.multi-center-page .content-columns {
    flex-direction: column;
    gap: 40px;
  }
  section.content-page.multi-center-page .content-columns .column-text {
    width: 100%;
    gap: 40px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .title h2 {
    font-size: 24px;
    line-height: 26px;
    width: 80%;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text h3 {
    font-size: 22px;
    line-height: 22px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .infos-paragraph p {
    font-size: 15px;
    line-height: 21px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center {
    height: 300px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-info-center {
    width: 260px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .title-warehouse {
    font-size: 18px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .link-phone {
    color: #1e3157;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-map {
    width: calc(100% - 260px);
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items {
    grid-row-gap: 20px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items .item.exclusive {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items .item.normal {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .tns-outer {
    width: 100%;
  }
  section.content-page.multi-center-page .content-columns .column-action {
    width: 100%;
  }
  section.content-page.multi-center-page .content-columns .column-action .navigation-page-center {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.content-page.multi-center-page .content-columns .column-text {
    gap: 60px;
    width: calc(100% - 300px);
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .title h2 {
    font-size: 24px;
    line-height: 26px;
    width: 80%;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text h3 {
    font-size: 22px;
    line-height: 22px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .infos-paragraph p {
    font-size: 15px;
    line-height: 21px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center {
    height: 300px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-info-center {
    width: 260px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .title-warehouse {
    font-size: 18px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .block-detail .link-phone {
    color: #1e3157;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-map {
    width: calc(100% - 260px);
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items {
    grid-row-gap: 20px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items .item.exclusive {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items .item.normal {
    flex: 0 0 calc(50% - 10px);
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .tns-outer {
    width: 100%;
  }
  section.content-page.multi-center-page .content-columns .column-action {
    width: 300px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  section.content-page.multi-center-page .content-columns .column-text .block-text .title h2 {
    font-size: 24px;
    line-height: 24px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text h3 {
    font-size: 22px;
    line-height: 22px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .infos-paragraph p {
    font-size: 16px;
    line-height: 24px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center {
    height: 300px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-info-center {
    width: 260px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-info-center .all-information .title-warehouse {
    font-size: 18px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .content-map-center .content-map {
    width: calc(100% - 260px);
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items {
    grid-row-gap: 20px;
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items .item.exclusive {
    flex: 0 0 calc(25% - 15px);
  }
  section.content-page.multi-center-page .content-columns .column-text .block-text .listing-items .item.normal {
    flex: 0 0 calc(50% - 10px);
  }
}
section.block-hero-center, section.block-hero-faq, section.block-hero-domiciliation, section.block-hero-promotion, section.block-hero-pole-promotion, section.block-hero-prices {
  display: block;
  width: 100%;
  background-color: #e7edfa;
}
section.block-hero-center .container, section.block-hero-faq .container, section.block-hero-domiciliation .container, section.block-hero-promotion .container, section.block-hero-pole-promotion .container, section.block-hero-prices .container {
  position: relative;
  z-index: 10;
  padding-top: 30px;
  padding-bottom: 60px;
}
section.block-hero-center .container .content-breadcrumb, section.block-hero-faq .container .content-breadcrumb, section.block-hero-domiciliation .container .content-breadcrumb, section.block-hero-promotion .container .content-breadcrumb, section.block-hero-pole-promotion .container .content-breadcrumb, section.block-hero-prices .container .content-breadcrumb {
  margin-bottom: 30px;
}
section.block-hero-center .container .content-breadcrumb .breadcrumb-atb, section.block-hero-faq .container .content-breadcrumb .breadcrumb-atb, section.block-hero-domiciliation .container .content-breadcrumb .breadcrumb-atb, section.block-hero-promotion .container .content-breadcrumb .breadcrumb-atb, section.block-hero-pole-promotion .container .content-breadcrumb .breadcrumb-atb, section.block-hero-prices .container .content-breadcrumb .breadcrumb-atb {
  margin: 0;
}
section.block-hero-center .container .content-breadcrumb .breadcrumb-atb li a, section.block-hero-faq .container .content-breadcrumb .breadcrumb-atb li a, section.block-hero-domiciliation .container .content-breadcrumb .breadcrumb-atb li a, section.block-hero-promotion .container .content-breadcrumb .breadcrumb-atb li a, section.block-hero-pole-promotion .container .content-breadcrumb .breadcrumb-atb li a, section.block-hero-prices .container .content-breadcrumb .breadcrumb-atb li a {
  background-color: #ffffff;
}
section.block-hero-center .container .content-presentation, section.block-hero-faq .container .content-presentation, section.block-hero-domiciliation .container .content-presentation, section.block-hero-promotion .container .content-presentation, section.block-hero-pole-promotion .container .content-presentation, section.block-hero-prices .container .content-presentation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.block-hero-center .container .content-presentation .block-text, section.block-hero-faq .container .content-presentation .block-text, section.block-hero-domiciliation .container .content-presentation .block-text, section.block-hero-promotion .container .content-presentation .block-text, section.block-hero-pole-promotion .container .content-presentation .block-text, section.block-hero-prices .container .content-presentation .block-text {
  display: block;
  width: 40%;
}
section.block-hero-center .container .content-presentation .block-text .content-title, section.block-hero-faq .container .content-presentation .block-text .content-title, section.block-hero-domiciliation .container .content-presentation .block-text .content-title, section.block-hero-promotion .container .content-presentation .block-text .content-title, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title, section.block-hero-prices .container .content-presentation .block-text .content-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
section.block-hero-center .container .content-presentation .block-text .content-title .title-google-review, section.block-hero-faq .container .content-presentation .block-text .content-title .title-google-review, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .title-google-review, section.block-hero-promotion .container .content-presentation .block-text .content-title .title-google-review, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .title-google-review, section.block-hero-prices .container .content-presentation .block-text .content-title .title-google-review {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  background-color: #ffffff;
  border-radius: 0.3125rem;
  padding: 5px;
}
section.block-hero-center .container .content-presentation .block-text .content-title .title-google-review .logo-google, section.block-hero-faq .container .content-presentation .block-text .content-title .title-google-review .logo-google, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .title-google-review .logo-google, section.block-hero-promotion .container .content-presentation .block-text .content-title .title-google-review .logo-google, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .title-google-review .logo-google, section.block-hero-prices .container .content-presentation .block-text .content-title .title-google-review .logo-google {
  width: 50px;
  height: auto;
  margin: 0 5px 0 0;
}
section.block-hero-center .container .content-presentation .block-text .content-title .title-google-review .stars, section.block-hero-faq .container .content-presentation .block-text .content-title .title-google-review .stars, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .title-google-review .stars, section.block-hero-promotion .container .content-presentation .block-text .content-title .title-google-review .stars, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .title-google-review .stars, section.block-hero-prices .container .content-presentation .block-text .content-title .title-google-review .stars {
  font-size: 12px;
  color: #fcbf00;
  margin: 0 5px 0 0;
}
section.block-hero-center .container .content-presentation .block-text .content-title .title-google-review .rating, section.block-hero-faq .container .content-presentation .block-text .content-title .title-google-review .rating, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .title-google-review .rating, section.block-hero-promotion .container .content-presentation .block-text .content-title .title-google-review .rating, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .title-google-review .rating, section.block-hero-prices .container .content-presentation .block-text .content-title .title-google-review .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 5px 0 0;
}
section.block-hero-center .container .content-presentation .block-text .content-title .title-google-review .number-user, section.block-hero-faq .container .content-presentation .block-text .content-title .title-google-review .number-user, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .title-google-review .number-user, section.block-hero-promotion .container .content-presentation .block-text .content-title .title-google-review .number-user, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .title-google-review .number-user, section.block-hero-prices .container .content-presentation .block-text .content-title .title-google-review .number-user {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  color: #1e3157 !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.block-hero-center .container .content-presentation .block-text .content-title .heading-title, section.block-hero-faq .container .content-presentation .block-text .content-title .heading-title, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .heading-title, section.block-hero-promotion .container .content-presentation .block-text .content-title .heading-title, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .heading-title, section.block-hero-prices .container .content-presentation .block-text .content-title .heading-title {
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #6579b7;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
section.block-hero-center .container .content-presentation .block-text .content-title .title, section.block-hero-faq .container .content-presentation .block-text .content-title .title, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .title, section.block-hero-promotion .container .content-presentation .block-text .content-title .title, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .title, section.block-hero-prices .container .content-presentation .block-text .content-title .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #1e3157;
  line-height: 46px;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
section.block-hero-center .container .content-presentation .block-text .content-title .title strong, section.block-hero-faq .container .content-presentation .block-text .content-title .title strong, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .title strong, section.block-hero-promotion .container .content-presentation .block-text .content-title .title strong, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .title strong, section.block-hero-prices .container .content-presentation .block-text .content-title .title strong {
  font-weight: 700;
  color: #e6007e;
}
section.block-hero-center .container .content-presentation .block-text .content-title .content-badge-center, section.block-hero-faq .container .content-presentation .block-text .content-title .content-badge-center, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .content-badge-center, section.block-hero-promotion .container .content-presentation .block-text .content-title .content-badge-center, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-badge-center, section.block-hero-prices .container .content-presentation .block-text .content-title .content-badge-center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
section.block-hero-center .container .content-presentation .block-text .content-title .content-badge-center .badge-title-center, section.block-hero-faq .container .content-presentation .block-text .content-title .content-badge-center .badge-title-center, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .content-badge-center .badge-title-center, section.block-hero-promotion .container .content-presentation .block-text .content-title .content-badge-center .badge-title-center, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-badge-center .badge-title-center, section.block-hero-prices .container .content-presentation .block-text .content-title .content-badge-center .badge-title-center {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #e6007e;
  padding: 0 5px;
  margin: 0;
  height: 19px;
  border-radius: 10px;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  color: #ffffff !important;
  line-height: 19px !important;
  text-rendering: optimizeLegibility;
}
section.block-hero-center .container .content-presentation .block-text .content-title .content-badge-center.badge-bottom, section.block-hero-faq .container .content-presentation .block-text .content-title .content-badge-center.badge-bottom, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .content-badge-center.badge-bottom, section.block-hero-promotion .container .content-presentation .block-text .content-title .content-badge-center.badge-bottom, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-badge-center.badge-bottom, section.block-hero-prices .container .content-presentation .block-text .content-title .content-badge-center.badge-bottom {
  margin-bottom: 0;
  margin-top: 10px;
}
section.block-hero-center .container .content-presentation .block-text .content-title .content-description p, section.block-hero-faq .container .content-presentation .block-text .content-title .content-description p, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .content-description p, section.block-hero-promotion .container .content-presentation .block-text .content-title .content-description p, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-description p, section.block-hero-prices .container .content-presentation .block-text .content-title .content-description p {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #4a5f9f;
  line-height: 25px;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
section.block-hero-center .container .content-presentation .block-text .content-title .content-description p:last-of-type, section.block-hero-faq .container .content-presentation .block-text .content-title .content-description p:last-of-type, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .content-description p:last-of-type, section.block-hero-promotion .container .content-presentation .block-text .content-title .content-description p:last-of-type, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-description p:last-of-type, section.block-hero-prices .container .content-presentation .block-text .content-title .content-description p:last-of-type {
  margin-bottom: 0;
}
section.block-hero-center .container .content-presentation .block-text .content-title .content-description p strong, section.block-hero-faq .container .content-presentation .block-text .content-title .content-description p strong, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .content-description p strong, section.block-hero-promotion .container .content-presentation .block-text .content-title .content-description p strong, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-description p strong, section.block-hero-prices .container .content-presentation .block-text .content-title .content-description p strong {
  font-weight: 700;
}
section.block-hero-center .container .content-presentation .block-text .content-title .description, section.block-hero-faq .container .content-presentation .block-text .content-title .description, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .description, section.block-hero-promotion .container .content-presentation .block-text .content-title .description, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .description, section.block-hero-prices .container .content-presentation .block-text .content-title .description {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #4a5f9f;
  line-height: 25px;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.block-hero-center .container .content-presentation .block-text .content-title .description strong, section.block-hero-faq .container .content-presentation .block-text .content-title .description strong, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .description strong, section.block-hero-promotion .container .content-presentation .block-text .content-title .description strong, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .description strong, section.block-hero-prices .container .content-presentation .block-text .content-title .description strong {
  font-weight: 700;
}
section.block-hero-center .container .content-presentation .block-text .content-title .block-action, section.block-hero-faq .container .content-presentation .block-text .content-title .block-action, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .block-action, section.block-hero-promotion .container .content-presentation .block-text .content-title .block-action, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .block-action, section.block-hero-prices .container .content-presentation .block-text .content-title .block-action {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  gap: 20px;
}
section.block-hero-center .container .content-presentation .block-text .content-title .block-action .btn-video, section.block-hero-faq .container .content-presentation .block-text .content-title .block-action .btn-video, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .block-action .btn-video, section.block-hero-promotion .container .content-presentation .block-text .content-title .block-action .btn-video, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .block-action .btn-video, section.block-hero-prices .container .content-presentation .block-text .content-title .block-action .btn-video {
  margin: 0;
}
section.block-hero-center .container .content-presentation .block-text .content-title .block-action .btn-video .play-video, section.block-hero-faq .container .content-presentation .block-text .content-title .block-action .btn-video .play-video, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .block-action .btn-video .play-video, section.block-hero-promotion .container .content-presentation .block-text .content-title .block-action .btn-video .play-video, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .block-action .btn-video .play-video, section.block-hero-prices .container .content-presentation .block-text .content-title .block-action .btn-video .play-video {
  left: 25px;
}
section.block-hero-center .container .content-presentation .block-text .content-title .block-action .btn-video .text-video, section.block-hero-faq .container .content-presentation .block-text .content-title .block-action .btn-video .text-video, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .block-action .btn-video .text-video, section.block-hero-promotion .container .content-presentation .block-text .content-title .block-action .btn-video .text-video, section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .block-action .btn-video .text-video, section.block-hero-prices .container .content-presentation .block-text .content-title .block-action .btn-video .text-video {
  color: #ffffff;
}
section.block-hero-center .container .content-presentation .block-gallery, section.block-hero-faq .container .content-presentation .block-gallery, section.block-hero-domiciliation .container .content-presentation .block-gallery, section.block-hero-promotion .container .content-presentation .block-gallery, section.block-hero-pole-promotion .container .content-presentation .block-gallery, section.block-hero-prices .container .content-presentation .block-gallery {
  display: grid;
  grid-template-columns: 1fr 36%;
  gap: 16px;
  width: 55%;
  min-height: 360px;
}
section.block-hero-center .container .content-presentation .block-gallery .illustration, section.block-hero-faq .container .content-presentation .block-gallery .illustration, section.block-hero-domiciliation .container .content-presentation .block-gallery .illustration, section.block-hero-promotion .container .content-presentation .block-gallery .illustration, section.block-hero-pole-promotion .container .content-presentation .block-gallery .illustration, section.block-hero-prices .container .content-presentation .block-gallery .illustration {
  display: flex;
  position: relative;
  cursor: pointer;
  background-color: #dee7f9;
}
section.block-hero-center .container .content-presentation .block-gallery .illustration .hover-illustration, section.block-hero-faq .container .content-presentation .block-gallery .illustration .hover-illustration, section.block-hero-domiciliation .container .content-presentation .block-gallery .illustration .hover-illustration, section.block-hero-promotion .container .content-presentation .block-gallery .illustration .hover-illustration, section.block-hero-pole-promotion .container .content-presentation .block-gallery .illustration .hover-illustration, section.block-hero-prices .container .content-presentation .block-gallery .illustration .hover-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 49, 87, 0.2);
  transition: all 0.2s ease 0s;
  position: absolute;
  opacity: 0;
  border-radius: 0.3125rem;
}
section.block-hero-center .container .content-presentation .block-gallery .illustration .fake-link-illustration, section.block-hero-faq .container .content-presentation .block-gallery .illustration .fake-link-illustration, section.block-hero-domiciliation .container .content-presentation .block-gallery .illustration .fake-link-illustration, section.block-hero-promotion .container .content-presentation .block-gallery .illustration .fake-link-illustration, section.block-hero-pole-promotion .container .content-presentation .block-gallery .illustration .fake-link-illustration, section.block-hero-prices .container .content-presentation .block-gallery .illustration .fake-link-illustration {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  border-radius: 0.3125rem;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #1e3157 !important;
  line-height: 30px !important;
  text-rendering: optimizeLegibility;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  gap: 5px;
}
section.block-hero-center .container .content-presentation .block-gallery .illustration .fake-link-illustration .pictogram, section.block-hero-faq .container .content-presentation .block-gallery .illustration .fake-link-illustration .pictogram, section.block-hero-domiciliation .container .content-presentation .block-gallery .illustration .fake-link-illustration .pictogram, section.block-hero-promotion .container .content-presentation .block-gallery .illustration .fake-link-illustration .pictogram, section.block-hero-pole-promotion .container .content-presentation .block-gallery .illustration .fake-link-illustration .pictogram, section.block-hero-prices .container .content-presentation .block-gallery .illustration .fake-link-illustration .pictogram {
  font-size: 14px;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
section.block-hero-center .container .content-presentation .block-gallery .illustration .image-illustration, section.block-hero-faq .container .content-presentation .block-gallery .illustration .image-illustration, section.block-hero-domiciliation .container .content-presentation .block-gallery .illustration .image-illustration, section.block-hero-promotion .container .content-presentation .block-gallery .illustration .image-illustration, section.block-hero-pole-promotion .container .content-presentation .block-gallery .illustration .image-illustration, section.block-hero-prices .container .content-presentation .block-gallery .illustration .image-illustration {
  width: 100%;
  height: 100%;
  display: none;
}
section.block-hero-center .container .content-presentation .block-gallery .illustration.one, section.block-hero-faq .container .content-presentation .block-gallery .illustration.one, section.block-hero-domiciliation .container .content-presentation .block-gallery .illustration.one, section.block-hero-promotion .container .content-presentation .block-gallery .illustration.one, section.block-hero-pole-promotion .container .content-presentation .block-gallery .illustration.one, section.block-hero-prices .container .content-presentation .block-gallery .illustration.one {
  grid-row: span 2/span 2;
  grid-column-start: 1;
}
section.block-hero-center .container .content-presentation .block-gallery .illustration.two, section.block-hero-faq .container .content-presentation .block-gallery .illustration.two, section.block-hero-domiciliation .container .content-presentation .block-gallery .illustration.two, section.block-hero-promotion .container .content-presentation .block-gallery .illustration.two, section.block-hero-pole-promotion .container .content-presentation .block-gallery .illustration.two, section.block-hero-prices .container .content-presentation .block-gallery .illustration.two {
  grid-row-start: 1;
  grid-column-start: 2;
}
section.block-hero-center .container .content-presentation .block-gallery .illustration.three, section.block-hero-faq .container .content-presentation .block-gallery .illustration.three, section.block-hero-domiciliation .container .content-presentation .block-gallery .illustration.three, section.block-hero-promotion .container .content-presentation .block-gallery .illustration.three, section.block-hero-pole-promotion .container .content-presentation .block-gallery .illustration.three, section.block-hero-prices .container .content-presentation .block-gallery .illustration.three {
  grid-row-start: 2;
  grid-column-start: 2;
}
section.block-hero-center .container .content-presentation .block-gallery .illustration:hover .hover-illustration, section.block-hero-faq .container .content-presentation .block-gallery .illustration:hover .hover-illustration, section.block-hero-domiciliation .container .content-presentation .block-gallery .illustration:hover .hover-illustration, section.block-hero-promotion .container .content-presentation .block-gallery .illustration:hover .hover-illustration, section.block-hero-pole-promotion .container .content-presentation .block-gallery .illustration:hover .hover-illustration, section.block-hero-prices .container .content-presentation .block-gallery .illustration:hover .hover-illustration {
  opacity: 1;
}
section.block-hero-center .container .content-presentation .block-image, section.block-hero-faq .container .content-presentation .block-image, section.block-hero-domiciliation .container .content-presentation .block-image, section.block-hero-promotion .container .content-presentation .block-image, section.block-hero-pole-promotion .container .content-presentation .block-image, section.block-hero-prices .container .content-presentation .block-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
}
section.block-hero-center .container .content-presentation .block-image .illustration, section.block-hero-faq .container .content-presentation .block-image .illustration, section.block-hero-domiciliation .container .content-presentation .block-image .illustration, section.block-hero-promotion .container .content-presentation .block-image .illustration, section.block-hero-pole-promotion .container .content-presentation .block-image .illustration, section.block-hero-prices .container .content-presentation .block-image .illustration {
  width: auto;
  height: 410px;
}
section.block-hero-center .container .content-presentation .block-slider, section.block-hero-faq .container .content-presentation .block-slider, section.block-hero-domiciliation .container .content-presentation .block-slider, section.block-hero-promotion .container .content-presentation .block-slider, section.block-hero-pole-promotion .container .content-presentation .block-slider, section.block-hero-prices .container .content-presentation .block-slider {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  width: 520px;
}
section.block-hero-center .container .content-presentation .block-slider .title, section.block-hero-faq .container .content-presentation .block-slider .title, section.block-hero-domiciliation .container .content-presentation .block-slider .title, section.block-hero-promotion .container .content-presentation .block-slider .title, section.block-hero-pole-promotion .container .content-presentation .block-slider .title, section.block-hero-prices .container .content-presentation .block-slider .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #ffffff;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.block-hero-center .container .content-presentation .block-slider .title strong, section.block-hero-faq .container .content-presentation .block-slider .title strong, section.block-hero-domiciliation .container .content-presentation .block-slider .title strong, section.block-hero-promotion .container .content-presentation .block-slider .title strong, section.block-hero-pole-promotion .container .content-presentation .block-slider .title strong, section.block-hero-prices .container .content-presentation .block-slider .title strong {
  font-weight: 700;
  color: #ffe000;
}
section.block-hero-center .container .content-presentation .block-slider .content-items, section.block-hero-faq .container .content-presentation .block-slider .content-items, section.block-hero-domiciliation .container .content-presentation .block-slider .content-items, section.block-hero-promotion .container .content-presentation .block-slider .content-items, section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items, section.block-hero-prices .container .content-presentation .block-slider .content-items {
  display: block;
  width: 100%;
  height: 290px;
}
section.block-hero-center .container .content-presentation .block-slider .content-items .link-promo, section.block-hero-faq .container .content-presentation .block-slider .content-items .link-promo, section.block-hero-domiciliation .container .content-presentation .block-slider .content-items .link-promo, section.block-hero-promotion .container .content-presentation .block-slider .content-items .link-promo, section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items .link-promo, section.block-hero-prices .container .content-presentation .block-slider .content-items .link-promo {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  transition: all 0.2s ease 0s;
}
section.block-hero-center .container .content-presentation .block-slider .content-items .link-promo.active, section.block-hero-faq .container .content-presentation .block-slider .content-items .link-promo.active, section.block-hero-domiciliation .container .content-presentation .block-slider .content-items .link-promo.active, section.block-hero-promotion .container .content-presentation .block-slider .content-items .link-promo.active, section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items .link-promo.active, section.block-hero-prices .container .content-presentation .block-slider .content-items .link-promo.active {
  display: block;
}
section.block-hero-center .container .content-presentation .block-slider .content-items .link-promo .overlay-promo, section.block-hero-faq .container .content-presentation .block-slider .content-items .link-promo .overlay-promo, section.block-hero-domiciliation .container .content-presentation .block-slider .content-items .link-promo .overlay-promo, section.block-hero-promotion .container .content-presentation .block-slider .content-items .link-promo .overlay-promo, section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items .link-promo .overlay-promo, section.block-hero-prices .container .content-presentation .block-slider .content-items .link-promo .overlay-promo {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 49, 87, 0.3);
  opacity: 0.3;
  transition: all 0.2s ease 0s;
  border-radius: 0.3125rem;
}
section.block-hero-center .container .content-presentation .block-slider .content-items .link-promo .overlay-promo .fake-link-promo, section.block-hero-faq .container .content-presentation .block-slider .content-items .link-promo .overlay-promo .fake-link-promo, section.block-hero-domiciliation .container .content-presentation .block-slider .content-items .link-promo .overlay-promo .fake-link-promo, section.block-hero-promotion .container .content-presentation .block-slider .content-items .link-promo .overlay-promo .fake-link-promo, section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items .link-promo .overlay-promo .fake-link-promo, section.block-hero-prices .container .content-presentation .block-slider .content-items .link-promo .overlay-promo .fake-link-promo {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  border-radius: 0.3125rem;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: #ffffff !important;
  line-height: 40px !important;
  text-rendering: optimizeLegibility;
  border: 1px solid #ffffff;
  background-color: rgba(30, 49, 87, 0.5);
  opacity: 0;
}
section.block-hero-center .container .content-presentation .block-slider .content-items .link-promo .image-promo, section.block-hero-faq .container .content-presentation .block-slider .content-items .link-promo .image-promo, section.block-hero-domiciliation .container .content-presentation .block-slider .content-items .link-promo .image-promo, section.block-hero-promotion .container .content-presentation .block-slider .content-items .link-promo .image-promo, section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items .link-promo .image-promo, section.block-hero-prices .container .content-presentation .block-slider .content-items .link-promo .image-promo {
  height: 290px;
}
section.block-hero-center .container .content-presentation .block-slider .content-items .link-promo:hover .overlay-promo, section.block-hero-faq .container .content-presentation .block-slider .content-items .link-promo:hover .overlay-promo, section.block-hero-domiciliation .container .content-presentation .block-slider .content-items .link-promo:hover .overlay-promo, section.block-hero-promotion .container .content-presentation .block-slider .content-items .link-promo:hover .overlay-promo, section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items .link-promo:hover .overlay-promo, section.block-hero-prices .container .content-presentation .block-slider .content-items .link-promo:hover .overlay-promo {
  opacity: 1;
}
section.block-hero-center .container .content-presentation .block-slider .content-items .link-promo:hover .overlay-promo .fake-link-promo, section.block-hero-faq .container .content-presentation .block-slider .content-items .link-promo:hover .overlay-promo .fake-link-promo, section.block-hero-domiciliation .container .content-presentation .block-slider .content-items .link-promo:hover .overlay-promo .fake-link-promo, section.block-hero-promotion .container .content-presentation .block-slider .content-items .link-promo:hover .overlay-promo .fake-link-promo, section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items .link-promo:hover .overlay-promo .fake-link-promo, section.block-hero-prices .container .content-presentation .block-slider .content-items .link-promo:hover .overlay-promo .fake-link-promo {
  opacity: 1;
}
section.block-hero-center .container .content-presentation .block-slider .content-indication, section.block-hero-faq .container .content-presentation .block-slider .content-indication, section.block-hero-domiciliation .container .content-presentation .block-slider .content-indication, section.block-hero-promotion .container .content-presentation .block-slider .content-indication, section.block-hero-pole-promotion .container .content-presentation .block-slider .content-indication, section.block-hero-prices .container .content-presentation .block-slider .content-indication {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  gap: 10px;
}
section.block-hero-center .container .content-presentation .block-slider .content-indication .indice-number, section.block-hero-faq .container .content-presentation .block-slider .content-indication .indice-number, section.block-hero-domiciliation .container .content-presentation .block-slider .content-indication .indice-number, section.block-hero-promotion .container .content-presentation .block-slider .content-indication .indice-number, section.block-hero-pole-promotion .container .content-presentation .block-slider .content-indication .indice-number, section.block-hero-prices .container .content-presentation .block-slider .content-indication .indice-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 26px;
  background-color: #ffd7ed;
  border-radius: 13px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
section.block-hero-center .container .content-presentation .block-slider .content-indication .indice-delay, section.block-hero-faq .container .content-presentation .block-slider .content-indication .indice-delay, section.block-hero-domiciliation .container .content-presentation .block-slider .content-indication .indice-delay, section.block-hero-promotion .container .content-presentation .block-slider .content-indication .indice-delay, section.block-hero-pole-promotion .container .content-presentation .block-slider .content-indication .indice-delay, section.block-hero-prices .container .content-presentation .block-slider .content-indication .indice-delay {
  position: relative;
  display: block;
  width: calc(100% - 100px);
  height: 6px;
  border-radius: 3px;
  background-color: #ffd7ed;
}
section.block-hero-center .container .content-presentation .block-slider .content-indication .indice-delay .indice, section.block-hero-faq .container .content-presentation .block-slider .content-indication .indice-delay .indice, section.block-hero-domiciliation .container .content-presentation .block-slider .content-indication .indice-delay .indice, section.block-hero-promotion .container .content-presentation .block-slider .content-indication .indice-delay .indice, section.block-hero-pole-promotion .container .content-presentation .block-slider .content-indication .indice-delay .indice, section.block-hero-prices .container .content-presentation .block-slider .content-indication .indice-delay .indice {
  position: absolute;
  z-index: 1;
  height: 6px;
  border-radius: 3px;
  background-color: #e6007e;
  bottom: 0;
  left: 0;
}
section.block-hero-center .container .content-presentation .block-slider .content-indication .content-button, section.block-hero-faq .container .content-presentation .block-slider .content-indication .content-button, section.block-hero-domiciliation .container .content-presentation .block-slider .content-indication .content-button, section.block-hero-promotion .container .content-presentation .block-slider .content-indication .content-button, section.block-hero-pole-promotion .container .content-presentation .block-slider .content-indication .content-button, section.block-hero-prices .container .content-presentation .block-slider .content-indication .content-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 60px;
}
section.block-hero-center .container .content-promotion-mobile, section.block-hero-faq .container .content-promotion-mobile, section.block-hero-domiciliation .container .content-promotion-mobile, section.block-hero-promotion .container .content-promotion-mobile, section.block-hero-pole-promotion .container .content-promotion-mobile, section.block-hero-prices .container .content-promotion-mobile {
  display: none;
  margin-top: 15px;
}
section.block-hero-center .container .content-additional, section.block-hero-faq .container .content-additional, section.block-hero-domiciliation .container .content-additional, section.block-hero-promotion .container .content-additional, section.block-hero-pole-promotion .container .content-additional, section.block-hero-prices .container .content-additional {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px;
  width: 100%;
  padding: 30px 0;
}
section.block-hero-center .container .content-additional .block-promotion, section.block-hero-faq .container .content-additional .block-promotion, section.block-hero-domiciliation .container .content-additional .block-promotion, section.block-hero-promotion .container .content-additional .block-promotion, section.block-hero-pole-promotion .container .content-additional .block-promotion, section.block-hero-prices .container .content-additional .block-promotion {
  display: block;
  width: 100%;
}
section.block-hero-center .container .content-additional .block-advantage, section.block-hero-faq .container .content-additional .block-advantage, section.block-hero-domiciliation .container .content-additional .block-advantage, section.block-hero-promotion .container .content-additional .block-advantage, section.block-hero-pole-promotion .container .content-additional .block-advantage, section.block-hero-prices .container .content-additional .block-advantage {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #cdd4e8;
  border-radius: 5px;
  padding: 20px;
}
section.block-hero-center .container .content-additional .block-advantage .pictogram, section.block-hero-faq .container .content-additional .block-advantage .pictogram, section.block-hero-domiciliation .container .content-additional .block-advantage .pictogram, section.block-hero-promotion .container .content-additional .block-advantage .pictogram, section.block-hero-pole-promotion .container .content-additional .block-advantage .pictogram, section.block-hero-prices .container .content-additional .block-advantage .pictogram {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}
section.block-hero-center .container .content-additional .block-advantage .content, section.block-hero-faq .container .content-additional .block-advantage .content, section.block-hero-domiciliation .container .content-additional .block-advantage .content, section.block-hero-promotion .container .content-additional .block-advantage .content, section.block-hero-pole-promotion .container .content-additional .block-advantage .content, section.block-hero-prices .container .content-additional .block-advantage .content {
  display: block;
}
section.block-hero-center .container .content-additional .block-advantage .content .title, section.block-hero-faq .container .content-additional .block-advantage .content .title, section.block-hero-domiciliation .container .content-additional .block-advantage .content .title, section.block-hero-promotion .container .content-additional .block-advantage .content .title, section.block-hero-pole-promotion .container .content-additional .block-advantage .content .title, section.block-hero-prices .container .content-additional .block-advantage .content .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 0 5px;
}
section.block-hero-center .container .content-additional .block-advantage .content .paragraph, section.block-hero-faq .container .content-additional .block-advantage .content .paragraph, section.block-hero-domiciliation .container .content-additional .block-advantage .content .paragraph, section.block-hero-promotion .container .content-additional .block-advantage .content .paragraph, section.block-hero-pole-promotion .container .content-additional .block-advantage .content .paragraph, section.block-hero-prices .container .content-additional .block-advantage .content .paragraph {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #4a5f9f;
  line-height: 22px;
  text-rendering: optimizeLegibility;
  margin: 0;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.block-hero-center, section.block-hero-faq, section.block-hero-domiciliation, section.block-hero-prices {
    padding-top: 20px;
  }
  section.block-hero-center .container .content-presentation, section.block-hero-faq .container .content-presentation, section.block-hero-domiciliation .container .content-presentation, section.block-hero-prices .container .content-presentation {
    flex-direction: column;
    justify-content: flex-start;
  }
  section.block-hero-center .container .content-presentation .block-text, section.block-hero-faq .container .content-presentation .block-text, section.block-hero-domiciliation .container .content-presentation .block-text, section.block-hero-prices .container .content-presentation .block-text {
    width: 100%;
    margin-bottom: 20px;
  }
  section.block-hero-center .container .content-presentation .block-text .content-title .title, section.block-hero-faq .container .content-presentation .block-text .content-title .title, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .title, section.block-hero-prices .container .content-presentation .block-text .content-title .title {
    font-size: 26px;
    line-height: 30px;
  }
  section.block-hero-center .container .content-presentation .block-text .content-title .description, section.block-hero-faq .container .content-presentation .block-text .content-title .description, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .description, section.block-hero-prices .container .content-presentation .block-text .content-title .description {
    font-size: 16px;
    line-height: 24px;
  }
  section.block-hero-center .container .content-presentation .block-gallery, section.block-hero-faq .container .content-presentation .block-gallery, section.block-hero-domiciliation .container .content-presentation .block-gallery, section.block-hero-prices .container .content-presentation .block-gallery {
    grid-template-columns: 1fr 33%;
    gap: 10px;
    width: 100%;
    min-height: 157px;
  }
  section.block-hero-center .container .content-presentation .block-gallery .illustration .fake-link-illustration, section.block-hero-faq .container .content-presentation .block-gallery .illustration .fake-link-illustration, section.block-hero-domiciliation .container .content-presentation .block-gallery .illustration .fake-link-illustration, section.block-hero-prices .container .content-presentation .block-gallery .illustration .fake-link-illustration {
    font-size: 12px !important;
  }
  section.block-hero-center .container .content-presentation .block-gallery .illustration .fake-link-illustration .pictogram, section.block-hero-faq .container .content-presentation .block-gallery .illustration .fake-link-illustration .pictogram, section.block-hero-domiciliation .container .content-presentation .block-gallery .illustration .fake-link-illustration .pictogram, section.block-hero-prices .container .content-presentation .block-gallery .illustration .fake-link-illustration .pictogram {
    font-size: 12px !important;
  }
  section.block-hero-center .container .content-presentation .block-image, section.block-hero-faq .container .content-presentation .block-image, section.block-hero-domiciliation .container .content-presentation .block-image, section.block-hero-prices .container .content-presentation .block-image {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }
  section.block-hero-center .container .content-presentation .block-image .illustration, section.block-hero-faq .container .content-presentation .block-image .illustration, section.block-hero-domiciliation .container .content-presentation .block-image .illustration, section.block-hero-prices .container .content-presentation .block-image .illustration {
    width: 80%;
    height: auto;
  }
  section.block-hero-center .container .content-promotion-mobile, section.block-hero-faq .container .content-promotion-mobile, section.block-hero-domiciliation .container .content-promotion-mobile, section.block-hero-prices .container .content-promotion-mobile {
    display: block;
  }
  section.block-hero-center .container .content-additional, section.block-hero-faq .container .content-additional, section.block-hero-domiciliation .container .content-additional, section.block-hero-prices .container .content-additional {
    display: block;
    padding: 15px 0 20px;
  }
  section.block-hero-center .container .content-additional .block-advantage, section.block-hero-faq .container .content-additional .block-advantage, section.block-hero-domiciliation .container .content-additional .block-advantage, section.block-hero-prices .container .content-additional .block-advantage {
    padding: 10px;
    margin-bottom: 5px;
  }
  section.block-hero-center .container .content-additional .block-advantage .content .paragraph, section.block-hero-faq .container .content-additional .block-advantage .content .paragraph, section.block-hero-domiciliation .container .content-additional .block-advantage .content .paragraph, section.block-hero-prices .container .content-additional .block-advantage .content .paragraph {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.block-hero-center .container .content-breadcrumb, section.block-hero-faq .container .content-breadcrumb, section.block-hero-domiciliation .container .content-breadcrumb, section.block-hero-prices .container .content-breadcrumb {
    padding: 0;
  }
  section.block-hero-center .container .content-presentation, section.block-hero-faq .container .content-presentation, section.block-hero-domiciliation .container .content-presentation, section.block-hero-prices .container .content-presentation {
    flex-direction: column;
    justify-content: flex-start;
  }
  section.block-hero-center .container .content-presentation .block-text, section.block-hero-faq .container .content-presentation .block-text, section.block-hero-domiciliation .container .content-presentation .block-text, section.block-hero-prices .container .content-presentation .block-text {
    width: 100%;
    margin-bottom: 20px;
  }
  section.block-hero-center .container .content-presentation .block-text .content-title .title, section.block-hero-faq .container .content-presentation .block-text .content-title .title, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .title, section.block-hero-prices .container .content-presentation .block-text .content-title .title {
    font-size: 28px;
    line-height: 34px;
  }
  section.block-hero-center .container .content-presentation .block-text .content-title .description, section.block-hero-faq .container .content-presentation .block-text .content-title .description, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .description, section.block-hero-prices .container .content-presentation .block-text .content-title .description {
    font-size: 16px;
    line-height: 24px;
  }
  section.block-hero-center .container .content-presentation .block-gallery, section.block-hero-faq .container .content-presentation .block-gallery, section.block-hero-domiciliation .container .content-presentation .block-gallery, section.block-hero-prices .container .content-presentation .block-gallery {
    grid-template-columns: 1fr 36%;
    gap: 12px;
    width: 100%;
    min-height: 240px;
  }
  section.block-hero-center .container .content-presentation .block-image, section.block-hero-faq .container .content-presentation .block-image, section.block-hero-domiciliation .container .content-presentation .block-image, section.block-hero-prices .container .content-presentation .block-image {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }
  section.block-hero-center .container .content-presentation .block-image .illustration, section.block-hero-faq .container .content-presentation .block-image .illustration, section.block-hero-domiciliation .container .content-presentation .block-image .illustration, section.block-hero-prices .container .content-presentation .block-image .illustration {
    width: 80%;
    height: auto;
  }
  section.block-hero-center .container .content-additional, section.block-hero-faq .container .content-additional, section.block-hero-domiciliation .container .content-additional, section.block-hero-prices .container .content-additional {
    display: block;
  }
  section.block-hero-center .container .content-additional .block-advantage, section.block-hero-faq .container .content-additional .block-advantage, section.block-hero-domiciliation .container .content-additional .block-advantage, section.block-hero-prices .container .content-additional .block-advantage {
    padding: 10px;
    margin-bottom: 5px;
  }
  section.block-hero-center .container .content-additional .block-advantage .content .paragraph, section.block-hero-faq .container .content-additional .block-advantage .content .paragraph, section.block-hero-domiciliation .container .content-additional .block-advantage .content .paragraph, section.block-hero-prices .container .content-additional .block-advantage .content .paragraph {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.block-hero-center .container .content-breadcrumb, section.block-hero-faq .container .content-breadcrumb, section.block-hero-domiciliation .container .content-breadcrumb, section.block-hero-prices .container .content-breadcrumb {
    padding: 30px 0;
  }
  section.block-hero-center .container .content-presentation, section.block-hero-faq .container .content-presentation, section.block-hero-domiciliation .container .content-presentation, section.block-hero-prices .container .content-presentation {
    flex-direction: column;
    justify-content: flex-start;
  }
  section.block-hero-center .container .content-presentation .block-text, section.block-hero-faq .container .content-presentation .block-text, section.block-hero-domiciliation .container .content-presentation .block-text, section.block-hero-prices .container .content-presentation .block-text {
    width: 100%;
    margin-bottom: 20px;
  }
  section.block-hero-center .container .content-presentation .block-text .content-title .title, section.block-hero-faq .container .content-presentation .block-text .content-title .title, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .title, section.block-hero-prices .container .content-presentation .block-text .content-title .title {
    font-size: 34px;
    line-height: 38px;
  }
  section.block-hero-center .container .content-presentation .block-text .content-title .description, section.block-hero-faq .container .content-presentation .block-text .content-title .description, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .description, section.block-hero-prices .container .content-presentation .block-text .content-title .description {
    font-size: 15px;
    line-height: 22px;
  }
  section.block-hero-center .container .content-presentation .block-gallery, section.block-hero-faq .container .content-presentation .block-gallery, section.block-hero-domiciliation .container .content-presentation .block-gallery, section.block-hero-prices .container .content-presentation .block-gallery {
    grid-template-columns: 1fr 36%;
    gap: 16px;
    width: 100%;
    min-height: 320px;
  }
  section.block-hero-center .container .content-presentation .block-image, section.block-hero-faq .container .content-presentation .block-image, section.block-hero-domiciliation .container .content-presentation .block-image, section.block-hero-prices .container .content-presentation .block-image {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
  }
  section.block-hero-center .container .content-presentation .block-image .illustration, section.block-hero-faq .container .content-presentation .block-image .illustration, section.block-hero-domiciliation .container .content-presentation .block-image .illustration, section.block-hero-prices .container .content-presentation .block-image .illustration {
    width: 50%;
    height: auto;
  }
  section.block-hero-center .container .content-additional, section.block-hero-faq .container .content-additional, section.block-hero-domiciliation .container .content-additional, section.block-hero-prices .container .content-additional {
    gap: 16px;
  }
  section.block-hero-center .container .content-additional .block-advantage, section.block-hero-faq .container .content-additional .block-advantage, section.block-hero-domiciliation .container .content-additional .block-advantage, section.block-hero-prices .container .content-additional .block-advantage {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px;
  }
  section.block-hero-center .container .content-additional .block-advantage .pictogram, section.block-hero-faq .container .content-additional .block-advantage .pictogram, section.block-hero-domiciliation .container .content-additional .block-advantage .pictogram, section.block-hero-prices .container .content-additional .block-advantage .pictogram {
    width: 40px;
    height: 40px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  section.block-hero-center .container .content-additional .block-advantage .content .title, section.block-hero-faq .container .content-additional .block-advantage .content .title, section.block-hero-domiciliation .container .content-additional .block-advantage .content .title, section.block-hero-prices .container .content-additional .block-advantage .content .title {
    font-size: 18px;
    line-height: 24px;
  }
  section.block-hero-center .container .content-additional .block-advantage .content .paragraph, section.block-hero-faq .container .content-additional .block-advantage .content .paragraph, section.block-hero-domiciliation .container .content-additional .block-advantage .content .paragraph, section.block-hero-prices .container .content-additional .block-advantage .content .paragraph {
    font-size: 14px;
    line-height: 22px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.block-hero-center .container .content-breadcrumb, section.block-hero-faq .container .content-breadcrumb, section.block-hero-domiciliation .container .content-breadcrumb {
    padding: 30px 0;
  }
  section.block-hero-center .container .content-presentation, section.block-hero-faq .container .content-presentation, section.block-hero-domiciliation .container .content-presentation {
    justify-content: flex-start;
  }
  section.block-hero-center .container .content-presentation .block-text, section.block-hero-faq .container .content-presentation .block-text, section.block-hero-domiciliation .container .content-presentation .block-text {
    width: 100%;
    margin-bottom: 20px;
  }
  section.block-hero-center .container .content-presentation .block-text .content-title .title, section.block-hero-faq .container .content-presentation .block-text .content-title .title, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .title {
    font-size: 30px;
    line-height: 34px;
  }
  section.block-hero-center .container .content-presentation .block-text .content-title .description, section.block-hero-faq .container .content-presentation .block-text .content-title .description, section.block-hero-domiciliation .container .content-presentation .block-text .content-title .description {
    font-size: 15px;
    line-height: 22px;
  }
  section.block-hero-center .container .content-presentation .block-gallery, section.block-hero-faq .container .content-presentation .block-gallery, section.block-hero-domiciliation .container .content-presentation .block-gallery {
    grid-template-columns: 1fr 36%;
    gap: 16px;
    width: 100%;
    min-height: 220px;
  }
  section.block-hero-center .container .content-presentation .block-image, section.block-hero-faq .container .content-presentation .block-image, section.block-hero-domiciliation .container .content-presentation .block-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
  }
  section.block-hero-center .container .content-presentation .block-image .illustration, section.block-hero-faq .container .content-presentation .block-image .illustration, section.block-hero-domiciliation .container .content-presentation .block-image .illustration {
    width: auto;
    height: 410px;
  }
  section.block-hero-center .container .content-additional, section.block-hero-faq .container .content-additional, section.block-hero-domiciliation .container .content-additional {
    gap: 16px;
  }
  section.block-hero-center .container .content-additional .block-advantage, section.block-hero-faq .container .content-additional .block-advantage, section.block-hero-domiciliation .container .content-additional .block-advantage {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px;
  }
  section.block-hero-center .container .content-additional .block-advantage .pictogram, section.block-hero-faq .container .content-additional .block-advantage .pictogram, section.block-hero-domiciliation .container .content-additional .block-advantage .pictogram {
    width: 40px;
    height: 40px;
    margin-right: 0;
    margin-bottom: 5px;
  }
  section.block-hero-center .container .content-additional .block-advantage .content .title, section.block-hero-faq .container .content-additional .block-advantage .content .title, section.block-hero-domiciliation .container .content-additional .block-advantage .content .title {
    font-size: 18px;
    line-height: 24px;
  }
  section.block-hero-center .container .content-additional .block-advantage .content .paragraph, section.block-hero-faq .container .content-additional .block-advantage .content .paragraph, section.block-hero-domiciliation .container .content-additional .block-advantage .content .paragraph {
    font-size: 14px;
    line-height: 22px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  section.block-hero-center .container .content-presentation .block-gallery {
    min-height: 286px;
  }
}
section.block-hero-faq .content-presentation {
  padding-bottom: 30px;
}
section.block-hero-faq .content-presentation .block-text {
  width: 50%;
}
section.block-hero-faq .content-presentation .block-text .content-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
section.block-hero-faq .content-presentation .block-text .content-title .description {
  margin-bottom: 10px;
}
section.content-page .content-family-faq {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
section.content-page .content-faq {
  display: block;
  column-count: 2;
  column-gap: 20px;
  width: 100%;
  margin-bottom: 10px;
}
section.content-page .content-faq .item-faq {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #cdd4e8;
  border-radius: 0.3125rem;
  padding: 20px;
  break-inside: avoid;
  margin-bottom: 20px;
}
section.content-page .content-faq .item-faq .list-badge {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
section.content-page .content-faq .item-faq .list-badge .badge {
  border-radius: 9px;
}
section.content-page .content-faq .item-faq .item-question {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #42548d;
  line-height: 20px;
  text-rendering: optimizeLegibility;
}
section.content-page .content-faq .item-faq .item-answer p {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #4a5f9f;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  margin-top: 10px;
}
section.content-page .content-faq .item-faq .item-answer a:not(.btn):not(.other-link):not(.link-devis):not(.link-breadcrumb):not(.block-contact):not(.block-call-us):not(.link):not(.custom-btn):not(.btn-action) {
  transition: all 0.2s ease 0s;
  text-decoration: underline;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #4a5f9f;
}
section.content-page .content-faq .item-faq .item-answer a:not(.btn):not(.other-link):not(.link-devis):not(.link-breadcrumb):not(.block-contact):not(.block-call-us):not(.link):not(.custom-btn):not(.btn-action):hover {
  text-decoration: none;
}
section.content-page .content-faq .item-faq .item-answer ul,
section.content-page .content-faq .item-faq .item-answer ol {
  padding-left: 25px;
  margin-top: 10px;
}
section.content-page .content-faq .item-faq .item-answer ul li,
section.content-page .content-faq .item-faq .item-answer ol li {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #4a5f9f;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
  margin-bottom: 10px;
}
section.content-page .content-faq .item-faq .item-answer ul li strong,
section.content-page .content-faq .item-faq .item-answer ol li strong {
  font-weight: 700;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.block-hero-faq .content-breadcrumb {
    display: none;
  }
  section.block-hero-faq .content-presentation .block-text {
    width: 100%;
  }
  section.content-page .content-faq {
    column-count: 1;
  }
  section.content-page .content-faq .item-faq {
    padding: 10px;
    break-inside: avoid;
    margin-bottom: 10px;
  }
  section.content-page .content-faq .item-faq .item-question {
    font-size: 17px;
    line-height: 18px;
  }
  section.content-page .content-faq .item-faq .item-answer p {
    margin-top: 5px;
  }
  section.content-page .content-faq .item-faq .item-answer ul,
  section.content-page .content-faq .item-faq .item-answer ol {
    padding-left: 25px;
    margin-top: 5px;
  }
  section.content-page .content-faq .item-faq .item-answer ul li,
  section.content-page .content-faq .item-faq .item-answer ol li {
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.block-hero-faq .content-presentation .block-text {
    width: 100%;
  }
  section.content-page .content-faq {
    column-count: 1;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.block-hero-faq .content-presentation .block-text {
    width: 100%;
  }
  section.content-page .content-faq {
    column-count: 1;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.block-hero-faq .content-presentation .block-text {
    width: 60%;
  }
  section.block-hero-faq .content-presentation .block-image {
    width: 40%;
  }
}
section.block-hero-prices {
  background-color: #dfe3f0 !important;
}
section.block-hero-prices .container {
  padding-bottom: 0 !important;
}
section.block-hero-prices .container .content-presentation {
  padding-bottom: 30px;
  align-items: flex-end !important;
}
section.block-hero-prices .container .content-presentation .block-text {
  width: 60% !important;
}
section.block-hero-prices .container .content-presentation .block-text .content-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
section.block-hero-prices .container .content-presentation .block-text .content-title .description {
  margin-bottom: 10px;
}
section.block-hero-prices .container .content-presentation .block-text .content-title .list-advantages-prices {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
  flex-wrap: wrap;
}
section.block-hero-prices .container .content-presentation .block-text .content-title .list-advantages-prices .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  gap: 5px;
  border-radius: 9999px;
  border: 1px solid #e6007e;
  background: #ffffff;
}
section.block-hero-prices .container .content-presentation .block-text .content-title .list-advantages-prices .item .pictogram-advantage {
  font-size: 16px;
  color: #e6007e;
}
section.block-hero-prices .container .content-presentation .block-text .content-title .list-advantages-prices .item .title-advantage {
  text-align: left;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.block-hero-prices .container .content-presentation .block-text .content-title .list-advantages-prices .item .title-advantage strong {
  font-weight: 700;
}
section.block-hero-prices .container .content-presentation .block-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 40% !important;
}
section.block-hero-prices .container .content-presentation .block-image .illustration {
  width: auto;
  height: 170px !important;
}
section.block-hero-prices .container .content-promotion {
  display: flex;
  padding: 15px 0;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid #e6007e;
  background: #ffd7ed;
}
section.block-hero-prices .container .content-promotion .picto-promo {
  width: 16px;
  height: 16px;
  margin: 0;
}
section.block-hero-prices .container .content-promotion .label-promo {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #780145;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 0 0 10px;
}
section.block-hero-prices .container .content-promotion .label-promo strong {
  font-weight: 700;
  color: #e6007e;
}
section.block-form-prices {
  display: flex;
  width: 100%;
  padding: 60px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(180deg, #dfe3f0 0%, #ffffff 100%);
}
section.block-form-prices .block-form-price {
  display: flex;
  padding: 60px 120px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid #cdd4e8;
  background: #ffffff;
  box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.1);
}
section.block-form-prices .block-form-price .title-form {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1e3157;
  line-height: 26px;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.block-form-prices .block-form-price .form-price {
  width: 100%;
}
section.block-form-prices .block-form-price input[type=checkbox] {
  height: initial;
  width: initial;
}
section.block-form-prices .block-form-price .important-info-check {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 11px;
  color: #1e3157;
  line-height: 13px;
  text-rendering: optimizeLegibility;
  text-transform: none;
  text-align: left;
  font-size: 11px !important;
}
section.block-form-prices .block-form-price .important-info-check a {
  font-size: 11px !important;
  line-height: 13px !important;
}
section.block-form-prices .block-form-price .block-success,
section.block-form-prices .block-form-price .block-error {
  display: none;
  margin-top: 20px;
}
section.block-form-prices .block-form-price .block-success ul,
section.block-form-prices .block-form-price .block-error ul {
  list-style: none;
  margin: 0;
  border-radius: 5px;
  display: flex;
  background: #f0f2f8;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  text-align: left;
}
section.block-form-prices .block-form-price .block-success ul li .title,
section.block-form-prices .block-form-price .block-error ul li .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #1e3157;
  line-height: 40px;
  text-rendering: optimizeLegibility;
  display: block;
  margin-bottom: 10px;
  text-align: center;
}
section.block-form-prices .block-form-price .block-success ul li .infos,
section.block-form-prices .block-form-price .block-error ul li .infos {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e3157;
  line-height: 20px;
  text-rendering: optimizeLegibility;
  display: block;
  text-align: center;
}
section.block-form-prices .block-form-price .block-success ul {
  background: #ffffff;
  border: 1px solid #1abc9c;
}
section.block-form-prices .block-form-price .block-success ul li .title {
  color: #1abc9c;
}
section.block-form-prices .block-form-price .block-success ul li .infos {
  color: #1abc9c;
}
section.block-form-prices .block-form-price .block-error ul {
  background: #ffffff;
  border: 1px solid #e74c3c;
}
section.block-form-prices .block-form-price .block-error ul li .title {
  color: #e74c3c;
}
section.block-form-prices .block-form-price .block-error ul li .infos {
  color: #e74c3c;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.block-hero-prices .container .content-presentation .block-text {
    width: 100% !important;
    margin-bottom: 0;
  }
  section.block-hero-prices .container .content-presentation .block-text .content-title .list-advantages-prices .item {
    padding: 5px 10px;
  }
  section.block-hero-prices .container .content-presentation .block-text .content-title .list-advantages-prices .item .pictogram-advantage {
    font-size: 14px;
  }
  section.block-hero-prices .container .content-presentation .block-text .content-title .list-advantages-prices .item .title-advantage {
    text-align: left;
    font-size: 12px;
    line-height: 12px;
  }
  section.block-hero-prices .container .content-presentation .block-image {
    display: none;
  }
  section.block-hero-prices .container .content-promotion {
    padding: 10px;
    gap: 10px;
  }
  section.block-hero-prices .container .content-promotion .label-promo {
    font-size: 14px;
    line-height: 18px;
  }
  section.block-form-prices {
    padding: 12px;
  }
  section.block-form-prices .container {
    padding: 0 !important;
  }
  section.block-form-prices .block-form-price {
    padding: 15px;
    gap: 10px;
  }
  section.block-form-prices .block-form-price .title-form {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.block-hero-prices .container .content-presentation .block-text {
    width: 100% !important;
    margin-bottom: 0;
  }
  section.block-hero-prices .container .content-presentation .block-text .content-title .list-advantages-prices .item {
    padding: 5px 10px;
  }
  section.block-hero-prices .container .content-presentation .block-text .content-title .list-advantages-prices .item .pictogram-advantage {
    font-size: 14px;
  }
  section.block-hero-prices .container .content-presentation .block-text .content-title .list-advantages-prices .item .title-advantage {
    text-align: left;
    font-size: 12px;
    line-height: 12px;
  }
  section.block-hero-prices .container .content-presentation .block-image {
    display: none;
  }
  section.block-hero-prices .container .content-promotion {
    padding: 10px;
    gap: 10px;
  }
  section.block-hero-prices .container .content-promotion .label-promo {
    font-size: 14px;
    line-height: 18px;
  }
  section.block-form-prices {
    padding: 30px;
  }
  section.block-form-prices .container {
    padding: 0 !important;
  }
  section.block-form-prices .block-form-price {
    padding: 20px 30px;
    gap: 20px;
  }
  section.block-form-prices .block-form-price .title-form {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.block-hero-prices .container .content-presentation .block-text {
    width: 100% !important;
  }
  section.block-hero-prices .container .content-presentation .block-image {
    display: none;
  }
  section.block-form-prices {
    padding: 40px;
  }
  section.block-form-prices .container {
    padding: 0 !important;
  }
  section.block-form-prices .block-form-price {
    padding: 40px 60px;
    gap: 20px;
  }
}
section.content-page.pole-page .content-columns .column-text {
  width: 100%;
}
section.content-page.pole-page .content-columns .column-text .block-title {
  margin-bottom: 10px;
}
section.content-page.pole-page .content-columns .column-text .block-promotion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffd7ed;
  border: 1px transparent solid;
  border-radius: 0.3125rem;
  padding: 10px 20px;
  margin-bottom: 20px;
  transition: all 0.2s ease 0s;
}
section.content-page.pole-page .content-columns .column-text .block-promotion .illustration-promo {
  width: 60px;
  height: 65px;
}
section.content-page.pole-page .content-columns .column-text .block-promotion .content-text {
  width: 50%;
  padding-right: 15px;
}
section.content-page.pole-page .content-columns .column-text .block-promotion .content-text .badge-promo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
  height: 20px;
  border-radius: 10px;
  background-color: #ffb3dd;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 5px;
}
section.content-page.pole-page .content-columns .column-text .block-promotion .content-text .text-promo {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.content-page.pole-page .content-columns .column-text .block-promotion .content-text .text-promo strong {
  font-weight: 700;
  color: #e6007e;
}
section.content-page.pole-page .content-columns .column-text .block-promotion:hover {
  background-color: #ffc7e6;
  border-color: #e6007e;
  text-decoration: none;
}
section.content-page.pole-page .content-columns .column-text .block-map-pole {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border: 1px solid #cdd4e8;
  border-radius: 0.3125rem;
}
section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map {
  display: block;
  width: 60%;
}
section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole {
  display: block;
  width: 100%;
  height: 450px;
  border-radius: 0 0.3125rem 0.3125rem 0;
}
section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole a {
  font-size: 10px !important;
}
section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole .marker-map-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  border-radius: 50%;
  background-color: #e6007e;
  border: 2px solid #ffffff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole .marker-map-text.click-over {
  z-index: 10;
  background-color: #1e3157;
}
section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole .marker-map-text.active-over {
  z-index: 10;
  background-color: #2b467d;
}
section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole.ales {
  height: 328px;
}
section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole.nimes {
  height: 389px;
}
section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole.avignon {
  height: 324px;
}
section.content-page.pole-page .content-columns .column-text .block-map-pole .content-listing-warehouse {
  width: 40%;
}
section.content-page.pole-page .content-columns .column-text .block-map-pole .content-listing-warehouse .listing-warehouse {
  grid-template-columns: repeat(1, 1fr) !important;
}
section.content-page.pole-page .content-columns .column-text .content-text-atout-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 60px;
}
section.content-page.pole-page .content-columns .column-text .content-text-atout-box .image-presentation {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 34%;
  margin-left: 60px;
  order: 2;
}
section.content-page.pole-page .content-columns .column-text .content-text-atout-box .image-presentation .cadre-image {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 30%;
  height: 60%;
  background-color: #e6007e;
  opacity: 0.5;
  z-index: 5;
}
section.content-page.pole-page .content-columns .column-text .content-text-atout-box .image-presentation .img-text-presentation {
  position: relative;
  width: calc(100% - 20px);
  height: auto;
  order: 1;
}
section.content-page.pole-page .content-columns .column-text .content-text-atout-box .text-presentation {
  width: 66%;
}
section.content-page.pole-page .content-columns .column-text .content-text-atout-box:nth-child(2n) .image-presentation {
  margin-right: 60px;
  margin-left: 0;
  order: 1;
}
section.content-page.pole-page .content-columns .column-text .content-text-atout-box:nth-child(2n) .text-presentation {
  order: 2;
}
section.content-page.pole-page .content-columns .column-text .content-text-atout-box:last-child {
  margin-bottom: 0;
}
section.content-page.pole-page .content-columns .column-text .content-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
  margin: 20px 0;
}
section.content-page.pole-page .content-columns .column-text .content-card .card-1 {
  grid-area: 1/1/3/3;
}
section.content-page.pole-page .content-columns .column-text .content-card .card-2 {
  grid-area: 1/3/2/4;
}
section.content-page.pole-page .content-columns .column-text .content-card .card-3 {
  grid-area: 2/3/3/4;
}
section.content-page.pole-page .content-columns .column-text .content-card .card {
  margin-bottom: 0;
  height: 100%;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body .link-infos-center {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body .link-infos-center:last-of-type {
  margin-bottom: 0;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body .link-infos-center .picto {
  padding-right: 10px;
  width: 30px;
  height: auto;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body .link-infos-center .value {
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  text-decoration: none;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body .link-infos-center .value:hover {
  text-decoration: underline;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body .link-infos-center .value.phone {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #e6007e;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body .infos {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #4a5f9f !important;
  line-height: 18px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 5px !important;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body .infos strong {
  font-weight: 700;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body .infos.large {
  font-size: 20px !important;
  font-weight: 700 !important;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body .infos .indice-pro {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: #ffd7ed;
  padding: 0 5px;
  height: 16px;
  border-radius: 10px;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  color: #e6007e !important;
  line-height: 16px !important;
  text-rendering: optimizeLegibility;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 5px;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body ul li {
  margin: 0;
  padding: 0;
  transition: all 0.2s ease 0s;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #4a5f9f !important;
  line-height: 18px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
  padding-left: 5px;
  line-height: 14px;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body ul li strong {
  font-weight: 700;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body ul li:last-child {
  margin-bottom: 0;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body ul li::marker {
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  content: "\f00c";
  color: #e6007e;
  font-size: 12px;
}
section.content-page.pole-page .content-columns .column-text .content-card .card .card-body ul li .indice-pro {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  background-color: #ffd7ed;
  padding: 0 5px;
  height: 16px;
  border-radius: 10px;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  color: #e6007e !important;
  line-height: 16px !important;
  text-rendering: optimizeLegibility;
}
section.content-page.pole-page .content-columns .column-text .content-description-pole {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
}
section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-text {
  width: calc(100% - 320px);
  padding-right: 60px;
}
section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action {
  position: sticky;
  top: 150px;
  width: 320px;
}
section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action .block-present-pole {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  border: 1px #abb5d7 solid;
  border-radius: 0.3125rem;
  margin-bottom: 20px;
  transition: all 0.2s ease 0s;
}
section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action .block-present-pole .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 0 5px 0;
  text-align: center;
}
section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action .block-present-pole .title-google-review {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action .block-present-pole .title-google-review .logo-google {
  width: 50px;
  height: auto;
  margin: 0 5px 0 0;
}
section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action .block-present-pole .title-google-review .stars {
  font-size: 12px;
  color: #fcbf00;
  margin: 0 5px 0 0;
}
section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action .block-present-pole .title-google-review .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 5px 0 0;
}
section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action .block-present-pole .title-google-review .number-user {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  color: #1e3157 !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action .block-present-pole .image-promotion {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action .block-present-pole .link-quote {
  display: block;
  width: 100%;
  color: #ffe000;
  margin-bottom: 5px;
}
section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action .block-present-pole .link-phone {
  display: block;
  width: 100%;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.content-page.pole-page .content-columns {
    display: block;
    width: 100%;
  }
  section.content-page.pole-page .content-columns .column-text {
    width: 100%;
    padding-right: 0;
  }
  section.content-page.pole-page .content-columns .column-text .block-promotion {
    padding: 10px;
  }
  section.content-page.pole-page .content-columns .column-text .block-promotion .content-text {
    width: 100%;
    padding-right: 0;
    margin-top: 0;
  }
  section.content-page.pole-page .content-columns .column-text .block-promotion .illustration-promo {
    display: none;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole {
    display: block;
    width: 100%;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map {
    display: none;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-listing-warehouse {
    width: 100%;
  }
  section.content-page.pole-page .content-columns .column-text .content-text-atout-box {
    margin-bottom: 25px;
  }
  section.content-page.pole-page .content-columns .column-text .content-text-atout-box .image-presentation {
    display: none;
  }
  section.content-page.pole-page .content-columns .column-text .content-text-atout-box .text-presentation {
    width: 100%;
  }
  section.content-page.pole-page .content-columns .column-text .content-card {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 20px;
    margin: 20px 0;
  }
  section.content-page.pole-page .content-columns .column-text .content-card .card-1 {
    grid-area: 3/1/4/2;
  }
  section.content-page.pole-page .content-columns .column-text .content-card .card-2 {
    grid-area: 1/1/2/2;
  }
  section.content-page.pole-page .content-columns .column-text .content-card .card-3 {
    grid-area: 2/1/3/2;
  }
  section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-text {
    width: 100%;
    padding-right: 0;
  }
  section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.content-page.pole-page .content-columns {
    display: block;
  }
  section.content-page.pole-page .content-columns .column-text {
    width: 100%;
    padding-right: 0;
  }
  section.content-page.pole-page .content-columns .column-text .block-promotion {
    padding: 10px;
  }
  section.content-page.pole-page .content-columns .column-text .block-promotion .content-text {
    width: calc(100% - 60px);
    padding-right: 15px;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole {
    display: block;
    width: 100%;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map {
    display: none;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-listing-warehouse {
    width: 100%;
  }
  section.content-page.pole-page .content-columns .column-text .content-map-pole {
    height: 260px;
  }
  section.content-page.pole-page .content-columns .column-text .content-text-atout-box {
    margin-bottom: 25px;
  }
  section.content-page.pole-page .content-columns .column-text .content-text-atout-box .image-presentation {
    display: none;
  }
  section.content-page.pole-page .content-columns .column-text .content-text-atout-box .text-presentation {
    width: 100%;
  }
  section.content-page.pole-page .content-columns .column-text .content-card {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 20px;
    margin: 20px 0;
  }
  section.content-page.pole-page .content-columns .column-text .content-card .card-1 {
    grid-area: 3/1/4/2;
  }
  section.content-page.pole-page .content-columns .column-text .content-card .card-2 {
    grid-area: 1/1/2/2;
  }
  section.content-page.pole-page .content-columns .column-text .content-card .card-3 {
    grid-area: 2/1/3/2;
  }
  section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-text {
    width: 100%;
    padding-right: 0;
  }
  section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action {
    display: none;
  }
  section.content-page.pole-page .content-columns .column-action {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.content-page.pole-page .content-columns .column-text .block-promotion {
    padding: 10px;
  }
  section.content-page.pole-page .content-columns .column-text .block-promotion .content-text {
    width: calc(100% - 60px);
    padding-right: 15px;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole {
    display: block;
    width: 100%;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map {
    display: none;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-listing-warehouse {
    width: 100%;
  }
  section.content-page.pole-page .content-columns .column-text .content-text-atout-box {
    margin-bottom: 25px;
  }
  section.content-page.pole-page .content-columns .column-text .content-text-atout-box .image-presentation {
    display: none;
  }
  section.content-page.pole-page .content-columns .column-text .content-text-atout-box .text-presentation {
    width: 100%;
  }
  section.content-page.pole-page .content-columns .column-text .content-card {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 20px;
    margin: 20px 0;
  }
  section.content-page.pole-page .content-columns .column-text .content-card .card-1 {
    grid-area: 1/1/2/3;
  }
  section.content-page.pole-page .content-columns .column-text .content-card .card-2 {
    grid-area: 2/1/3/2;
  }
  section.content-page.pole-page .content-columns .column-text .content-card .card-3 {
    grid-area: 2/2/3/3;
  }
  section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-text {
    width: calc(100% - 280px);
    padding-right: 20px;
  }
  section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action {
    width: 280px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map {
    width: 55%;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole {
    height: 419px;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole.ales {
    height: 318px;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole.nimes {
    height: 369px;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole.avignon {
    height: 314px;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-listing-warehouse {
    width: 45%;
  }
  section.content-page.pole-page .content-columns .column-text .block-promotion .content-text {
    width: 70%;
    padding-right: 15px;
  }
  section.content-page.pole-page .content-columns .column-text .content-text-atout-box .image-presentation {
    margin-left: 30px;
  }
  section.content-page.pole-page .content-columns .column-text .content-text-atout-box:nth-child(2n) .image-presentation {
    margin-right: 30px;
  }
  section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-text {
    width: calc(100% - 300px);
    padding-right: 40px;
  }
  section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action {
    width: 300px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  section.content-page.pole-page .content-columns .column-text .block-promotion .content-text {
    width: 70%;
    padding-right: 15px;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map {
    width: 55%;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole {
    height: 419px;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole.ales {
    height: 318px;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole.nimes {
    height: 369px;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-map .content-map-pole.avignon {
    height: 314px;
  }
  section.content-page.pole-page .content-columns .column-text .block-map-pole .content-listing-warehouse {
    width: 45%;
  }
  section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-text {
    width: calc(100% - 280px);
    padding-right: 40px;
  }
  section.content-page.pole-page .content-columns .column-text .content-description-pole .content-description-action {
    width: 280px;
  }
}
section.block-hero-domiciliation .content-presentation {
  padding-bottom: 40px;
}
section.block-hero-domiciliation .content-presentation .block-text {
  width: 40%;
}
section.block-hero-domiciliation .content-presentation .block-text .content-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
section.block-hero-domiciliation .content-presentation .block-text .content-title .description {
  margin-bottom: 10px;
}
section.block-hero-domiciliation .content-presentation .block-text .content-promotion {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  background-color: #e6007e;
  border: 1px solid #1e3157;
  border-radius: 5px;
}
section.block-hero-domiciliation .content-presentation .block-text .content-promotion .content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
}
section.block-hero-domiciliation .content-presentation .block-text .content-promotion .content-top .block-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: calc(100% - 150px);
}
section.block-hero-domiciliation .content-presentation .block-text .content-promotion .content-top .block-info .logo-domiciliation {
  width: auto;
  height: 60px;
}
section.block-hero-domiciliation .content-presentation .block-text .content-promotion .content-top .block-info .text-domiciliation {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  line-height: 22px;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.block-hero-domiciliation .content-presentation .block-text .content-promotion .content-top .block-info .text-domiciliation span {
  color: #1e3157;
  background-color: #ffe000;
  font-weight: 700;
}
section.block-hero-domiciliation .content-presentation .block-text .content-promotion .content-top .btn {
  width: 150px;
}
section.block-hero-domiciliation .content-presentation .block-text .content-promotion .content-bottom {
  display: block;
  padding: 5px 10px;
  background-color: #1e3157;
  border-radius: 0 0 5px 5px;
  width: 100%;
}
section.block-hero-domiciliation .content-presentation .block-text .content-promotion .content-bottom .time-promotion {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.block-hero-domiciliation .content-presentation .block-text .content-promotion .content-bottom .time-promotion strong {
  font-weight: 700;
  color: #ffe000;
}
section.block-hero-domiciliation .content-presentation .block-image .illustration {
  width: auto;
  height: 390px;
}
section.block-hero-domiciliation .content-advantages {
  display: block;
  padding-bottom: 20px;
}
section.block-hero-domiciliation .content-advantages .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #4a5f9f;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 0 10px 0;
}
section.block-hero-domiciliation .content-advantages .list-advantages {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  width: 100%;
}
section.block-hero-domiciliation .content-advantages .list-advantages .item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid #cdd4e8;
  border-radius: 5px;
}
section.block-hero-domiciliation .content-advantages .list-advantages .item .pictogram-advantage {
  width: 50px;
  height: 50px;
}
section.block-hero-domiciliation .content-advantages .list-advantages .item .text-advantage {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1e3157;
  line-height: 20px;
  text-rendering: optimizeLegibility;
  margin: 0;
  text-align: center;
}
section.content-page.domiciliation-page .content-columns {
  padding: 0 0 60px 0;
}
section.content-page.domiciliation-page .content-columns .column-text {
  width: calc(100% - 320px);
  padding-right: 60px;
  align-self: stretch;
}
section.content-page.domiciliation-page .content-columns .column-text .title-center-section {
  display: flex;
  justify-content: start;
  align-items: center;
  position: relative;
}
section.content-page.domiciliation-page .content-columns .column-text .title-center-section h2 {
  color: #1e3157;
  background-color: #ffffff;
  display: inline-block;
  padding-right: 10px;
  z-index: 5;
  color: #1e3157;
}
section.content-page.domiciliation-page .content-columns .column-text .title-center-section .divider {
  background-color: #e7edfa;
  width: 100%;
  height: 5px;
  position: absolute;
  top: 55%;
}
section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .image-presentation {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 34%;
  margin-left: 60px;
  order: 2;
}
section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .image-presentation .img-city-domiciliation {
  position: relative;
  width: 360px;
  height: auto;
  z-index: 5;
}
section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .image-presentation .img-city-domiciliation img {
  border-radius: 5px;
}
section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .image-presentation .img-center-domiciliation {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 210px;
  height: auto;
  order: 1;
  z-index: 5;
}
section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .image-presentation .img-center-domiciliation img {
  border-radius: 5px;
}
section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .text-presentation {
  width: 66%;
}
section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-1 {
  grid-area: 1/1/2/2;
}
section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-2 {
  grid-area: 1/2/2/3;
}
section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-3 {
  grid-area: 2/1/3/2;
}
section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-4 {
  grid-area: 2/2/3/3;
}
section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-choose {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-choose .content-border {
  width: 10px;
  height: 100%;
  background-color: #e6007e;
  border-radius: 5px 0 0 5px;
}
section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-choose .content-text {
  width: calc(100% - 10px);
  padding: 10px;
  border-radius: 0 5px 5px 0;
  background-color: #f0f2f8;
  display: block;
  height: 100%;
}
section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-choose .content-text .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #6579b7;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 0 10px 0;
}
section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-choose .content-text .paragraph {
  margin: 0;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation {
  display: block;
  background-color: #f0f2f8;
  border: 1px #abb5d7 solid;
  border-radius: 0.3125rem;
  padding: 20px;
  margin-bottom: 30px;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-left {
  width: 60%;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-left .form-group:last-of-type {
  margin-bottom: 0;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right {
  width: 40%;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  background-color: #e6007e;
  border: 1px solid #1e3157;
  border-radius: 5px;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
  width: 60%;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left .logo-domiciliation {
  width: auto;
  height: 70px;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left .block-info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left .block-info .text-domiciliation {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left .block-info .price-domiciliation {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 38px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left .block-info .detail-domiciliation {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #1e3157;
  line-height: 28px;
  text-rendering: optimizeLegibility;
  padding: 0 5px;
  background-color: #ffe000;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
  background-color: #1e3157;
  width: 45%;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-right .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-right .title span {
  background-color: #ffe000;
  color: #1e3157;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-right .content-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-right .content-list .list-item {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-right .content-list .list-item i {
  font-size: 15px;
  color: #e6007e;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-right .content-list .list-item .label {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #ffb3dd;
  line-height: 15px;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-right .info-service-offer {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: #ffb3dd;
  line-height: 12px;
  text-rendering: optimizeLegibility;
  font-style: italic;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-action .h-captcha {
  margin-bottom: 0;
}
section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border: 1px solid #cdd4e8;
  border-radius: 0.3125rem;
}
section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-map {
  display: block;
  width: 60%;
}
section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-map .content-map-pole {
  display: block;
  width: 100%;
  height: 450px;
  border-radius: 0 0.3125rem 0.3125rem 0;
}
section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-map .content-map-pole a {
  font-size: 10px !important;
}
section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-map .content-map-pole .marker-map-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  border-radius: 50%;
  background-color: #e6007e;
  border: 2px solid #ffffff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-map .content-map-pole .marker-map-text.click-over {
  z-index: 10;
  background-color: #1e3157;
}
section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-map .content-map-pole .marker-map-text.active-over {
  z-index: 10;
  background-color: #2b467d;
}
section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-map .content-map-pole.ales {
  height: 328px;
}
section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-map .content-map-pole.nimes {
  height: 389px;
}
section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-map .content-map-pole.avignon {
  height: 324px;
}
section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-listing-warehouse {
  width: 40%;
}
section.content-page.domiciliation-page .content-columns .column-action {
  position: sticky;
  align-self: stretch;
  width: 320px;
  top: 150px;
  height: 100%;
}
section.content-page.domiciliation-page .content-columns .column-action .content-promotion {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  background-color: #e6007e;
  border: 1px solid #1e3157;
  border-radius: 5px;
}
section.content-page.domiciliation-page .content-columns .column-action .content-promotion .content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px;
  gap: 10px;
}
section.content-page.domiciliation-page .content-columns .column-action .content-promotion .content-top .logo-domiciliation {
  width: auto;
  height: 70px;
}
section.content-page.domiciliation-page .content-columns .column-action .content-promotion .content-top .block-info {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
section.content-page.domiciliation-page .content-columns .column-action .content-promotion .content-top .block-info .text-domiciliation {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #ffffff;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.domiciliation-page .content-columns .column-action .content-promotion .content-top .block-info .text-domiciliation span {
  display: block;
  font-size: 22px;
  line-height: 1;
  margin-top: 5px;
}
section.content-page.domiciliation-page .content-columns .column-action .content-promotion .content-top .block-info .text-domiciliation span strong {
  color: #1e3157;
  background-color: #ffe000;
}
section.content-page.domiciliation-page .content-columns .column-action .content-promotion .content-bottom {
  display: block;
  padding: 5px 10px;
  background-color: #1e3157;
  border-radius: 0 0 5px 5px;
  width: 100%;
}
section.content-page.domiciliation-page .content-columns .column-action .content-promotion .content-bottom .time-promotion {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.domiciliation-page .content-columns .column-action .content-promotion .content-bottom .time-promotion strong {
  font-weight: 700;
  color: #ffe000;
}
section.content-page.domiciliation-page .content-columns .column-action .content-detail-promotion {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 20px;
  background-color: #ffd7ed;
  border: 2px solid #e6007e;
  border-radius: 5px;
  margin-top: 20px;
}
section.content-page.domiciliation-page .content-columns .column-action .content-detail-promotion .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e3157;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.domiciliation-page .content-columns .column-action .content-detail-promotion .title span {
  background-color: #ffe000;
}
section.content-page.domiciliation-page .content-columns .column-action .content-detail-promotion .content-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
section.content-page.domiciliation-page .content-columns .column-action .content-detail-promotion .content-list .list-item {
  margin-bottom: 20px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #e6007e;
  line-height: 15px;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.content-page.domiciliation-page .content-columns .column-action .content-detail-promotion .content-list .list-item i {
  font-size: 15px;
  margin-right: 5px;
  color: #1e3157;
}
section.content-page.domiciliation-page .content-columns .column-action .content-detail-promotion .info-service-offer {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: #1e3157;
  line-height: 12px;
  text-rendering: optimizeLegibility;
  font-style: italic;
}
section.content-page.domiciliation-page .content-columns.unique .column-text {
  width: 100%;
  padding-right: 0;
}
section.content-page.how-domiciliation .items-rent-box .item {
  height: 100%;
}
section.content-page.how-domiciliation .items-rent-box .item .block-step {
  padding: 30px;
  height: 100%;
  justify-content: space-around;
}
section.content-page.how-domiciliation .items-rent-box .item .block-step .paragraph {
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  min-height: inherit;
}
section.content-page.how-domiciliation .items-rent-box .item .block-step .paragraph:first-of-type {
  margin-top: 30px;
}
section.content-page.how-domiciliation .block-control-slider .control-slider:first-of-type {
  margin: 0;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.block-hero-domiciliation .content-breadcrumb {
    display: none;
  }
  section.block-hero-domiciliation .content-presentation {
    padding-bottom: 0;
  }
  section.block-hero-domiciliation .content-presentation .block-text {
    width: 100%;
  }
  section.block-hero-domiciliation .content-presentation .block-text .content-promotion .content-top {
    flex-direction: column;
  }
  section.block-hero-domiciliation .content-presentation .block-text .content-promotion .content-top .block-info {
    margin-bottom: 10px;
    width: 100%;
  }
  section.block-hero-domiciliation .content-presentation .block-text .content-promotion .content-top .block-info .logo-domiciliation {
    width: auto;
    height: 50px;
  }
  section.block-hero-domiciliation .content-presentation .block-text .content-promotion .content-top .block-info .text-domiciliation {
    font-size: 15px;
    line-height: 24px;
    margin: 0;
  }
  section.block-hero-domiciliation .content-presentation .block-text .content-promotion .content-top .btn {
    width: 100%;
  }
  section.block-hero-domiciliation .content-presentation .block-image {
    display: none;
  }
  section.block-hero-domiciliation .content-advantages {
    padding-bottom: 20px;
  }
  section.block-hero-domiciliation .content-advantages .title {
    font-size: 20px;
    line-height: 20px;
    margin: 0 0 10px 0;
  }
  section.block-hero-domiciliation .content-advantages .list-advantages {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  section.block-hero-domiciliation .content-advantages .list-advantages .item {
    padding: 10px;
  }
  section.block-hero-domiciliation .content-advantages .list-advantages .item .pictogram-advantage {
    width: auto;
    height: 40px;
  }
  section.block-hero-domiciliation .content-advantages .list-advantages .item .text-advantage {
    font-size: 14px;
    line-height: 16px;
  }
  section.content-page.domiciliation-page .content-columns .column-text {
    width: 100%;
    padding-right: 0;
  }
  section.content-page.domiciliation-page .content-columns .column-text .title-center-section .divider {
    display: none;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation {
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .image-presentation {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .image-presentation .img-city-domiciliation {
    width: 90%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .image-presentation .img-center-domiciliation {
    bottom: -30px;
    left: 0;
    width: 60%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .text-presentation {
    width: 100%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-1 {
    grid-area: 1/1/2/2;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-2 {
    grid-area: 2/1/3/2;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-3 {
    grid-area: 3/1/4/2;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-4 {
    grid-area: 4/1/5/2;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form {
    flex-direction: column;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-left {
    width: 100%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right {
    width: 100%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion {
    flex-direction: column;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left {
    width: 100%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left .logo-domiciliation {
    display: none;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left .block-info .price-domiciliation {
    font-size: 28px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left .block-info .detail-domiciliation {
    font-size: 18px;
    margin-bottom: 0;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-right {
    width: 100%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-action {
    flex-direction: column;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-action .h-captcha {
    margin-bottom: 15px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation {
    display: block;
    width: 100%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-map {
    display: none;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-listing-warehouse {
    width: 100%;
  }
  section.content-page.how-domiciliation .items-rent-box .item .block-step .title {
    text-align: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.block-hero-domiciliation .content-presentation {
    padding-bottom: 0;
  }
  section.block-hero-domiciliation .content-presentation .block-text {
    width: 100%;
  }
  section.block-hero-domiciliation .content-presentation .block-image {
    display: none !important;
  }
  section.block-hero-domiciliation .content-advantages {
    padding-bottom: 20px;
  }
  section.block-hero-domiciliation .content-advantages .title {
    font-size: 20px;
    line-height: 20px;
    margin: 0 0 10px 0;
  }
  section.block-hero-domiciliation .content-advantages .list-advantages {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  section.block-hero-domiciliation .content-advantages .list-advantages .item {
    padding: 10px;
  }
  section.block-hero-domiciliation .content-advantages .list-advantages .item .pictogram-advantage {
    width: auto;
    height: 40px;
  }
  section.block-hero-domiciliation .content-advantages .list-advantages .item .text-advantage {
    font-size: 14px;
    line-height: 16px;
  }
  section.content-page.domiciliation-page .content-columns .column-text {
    width: 100%;
    padding-right: 0;
  }
  section.content-page.domiciliation-page .content-columns .column-text .title-center-section .divider {
    display: none;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation {
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .image-presentation {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .image-presentation .img-city-domiciliation {
    width: 360px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .image-presentation .img-center-domiciliation {
    bottom: -30px;
    left: 0;
    width: 210px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .text-presentation {
    width: 100%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-1 {
    grid-area: 1/1/2/2;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-2 {
    grid-area: 2/1/3/2;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-3 {
    grid-area: 3/1/4/2;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-4 {
    grid-area: 4/1/5/2;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form {
    flex-direction: column;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-left {
    width: 100%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right {
    width: 100%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation {
    display: block;
    width: 100%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-map {
    display: none;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-listing-warehouse {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.block-hero-domiciliation .content-presentation {
    padding-bottom: 0;
  }
  section.block-hero-domiciliation .content-presentation .block-text {
    width: 100%;
  }
  section.block-hero-domiciliation .content-presentation .block-image {
    display: none !important;
  }
  section.block-hero-domiciliation .content-advantages {
    padding-bottom: 20px;
  }
  section.block-hero-domiciliation .content-advantages .title {
    font-size: 20px;
    line-height: 20px;
    margin: 0 0 10px 0;
  }
  section.block-hero-domiciliation .content-advantages .list-advantages {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  section.block-hero-domiciliation .content-advantages .list-advantages .item {
    padding: 10px;
  }
  section.block-hero-domiciliation .content-advantages .list-advantages .item .pictogram-advantage {
    width: auto;
    height: 40px;
  }
  section.block-hero-domiciliation .content-advantages .list-advantages .item .text-advantage {
    font-size: 14px;
    line-height: 16px;
  }
  section.content-page.domiciliation-page .content-columns {
    padding: 0 0 60px 0;
  }
  section.content-page.domiciliation-page .content-columns .column-text {
    width: calc(100% - 280px);
    padding-right: 20px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation {
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .image-presentation {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .image-presentation .img-city-domiciliation {
    width: 360px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .image-presentation .img-center-domiciliation {
    bottom: -30px;
    left: 0;
    width: 210px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-text-domiciliation .text-presentation {
    width: 100%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 20px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-1 {
    grid-area: 1/1/2/2;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-2 {
    grid-area: 2/1/3/2;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-3 {
    grid-area: 3/1/4/2;
  }
  section.content-page.domiciliation-page .content-columns .column-text .content-items-choose-domiciliation .item-4 {
    grid-area: 4/1/5/2;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion {
    flex-direction: column;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left {
    width: 100%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left .logo-domiciliation {
    display: none;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left .block-info {
    gap: 5px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left .block-info .price-domiciliation {
    font-size: 28px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left .block-info .detail-domiciliation {
    font-size: 18px;
    margin-bottom: 0;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-right {
    width: 100%;
    gap: 5px;
    padding: 10px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation {
    display: block;
    width: 100%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-map {
    display: none;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-map-domiciliation .content-listing-warehouse {
    width: 100%;
  }
  section.content-page.domiciliation-page .content-columns .column-action {
    width: 280px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.block-hero-domiciliation .content-presentation .block-text {
    width: 55%;
  }
  section.block-hero-domiciliation .content-presentation .block-image {
    width: 45%;
  }
  section.block-hero-domiciliation .content-presentation .block-image .illustration {
    width: auto;
    height: 240px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-left {
    width: 50%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right {
    width: 50%;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left .block-info .price-domiciliation {
    font-size: 30px;
  }
  section.content-page.domiciliation-page .content-columns .column-text .block-form-domiciliation .content-form .block-right .content-promotion .content-left .block-info .detail-domiciliation {
    font-size: 20px;
    line-height: 26px;
  }
}
section.block-hero-promotion {
  display: block;
  width: 100%;
  background-color: #780145;
}
section.block-hero-promotion .container {
  padding-top: 0;
  padding-bottom: 0;
}
section.block-hero-promotion .container .content-breadcrumb {
  padding: 30px 0;
}
section.block-hero-promotion .container .content-breadcrumb .breadcrumb-atb {
  margin: 0;
}
section.block-hero-promotion .container .content-breadcrumb .breadcrumb-atb li {
  color: #ffffff;
}
section.block-hero-promotion .container .content-presentation {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
section.block-hero-promotion .container .content-presentation .block-text {
  display: block;
  width: 60%;
}
section.block-hero-promotion .container .content-presentation .block-text .content-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
section.block-hero-promotion .container .content-presentation .block-text .content-title .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 30px;
}
section.block-hero-promotion .container .content-presentation .block-text .content-title .title strong {
  font-weight: 700;
}
section.block-hero-promotion .container .content-presentation .block-text .content-title .description {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  line-height: 30px;
  text-rendering: optimizeLegibility;
  margin-bottom: 15px;
}
section.block-hero-promotion .container .content-presentation .block-text .content-title .description:last-of-type {
  margin-bottom: 0;
}
section.block-hero-promotion .container .content-presentation .block-text .content-title .description strong {
  font-weight: 700;
}
section.block-hero-promotion .container .content-presentation .block-text .content-title .description span {
  font-weight: 700;
  color: #ffff00;
}
section.block-hero-promotion .container .content-presentation .block-text .content-title .content-indication {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
  margin-bottom: 20px;
}
section.block-hero-promotion .container .content-presentation .block-text .content-title .content-indication .indication {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #c2006a;
}
section.block-hero-promotion .container .content-presentation .block-text .content-title .content-indication .indication .picto {
  width: 23px;
  height: 30px;
}
section.block-hero-promotion .container .content-presentation .block-illustration {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  width: 40%;
}
section.block-hero-promotion .container .content-presentation .block-illustration .illustration {
  width: 540px;
  height: auto;
}

section.content-page .content-offer-promotion {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  margin-bottom: 20px;
}
section.content-page .content-offer-promotion .offer-promotion {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  background-color: #f0f2f8;
  border: 1px solid #abb5d7;
  border-radius: 0.3125rem;
  transition: all 0.2s ease 0s;
}
section.content-page .content-offer-promotion .offer-promotion .block-information {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  width: 44%;
  padding: 15px;
  height: 100%;
}
section.content-page .content-offer-promotion .offer-promotion .block-information .content-description {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .title {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  color: #1e3157 !important;
  line-height: 26px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px !important;
}
section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .title strong {
  font-weight: 700;
}
section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .description {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: #1e3157 !important;
  line-height: 22px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px !important;
}
section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .description strong {
  font-weight: 700;
}
section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .content-badge {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .content-badge .badge-promotion {
  display: block;
  padding: 1px 5px;
  background-color: #ffffff;
  border: 1px solid #780145;
  border-radius: 4px;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  color: #780145 !important;
  line-height: 20px !important;
  text-rendering: optimizeLegibility;
  text-align: center;
  margin-right: 5px;
  margin-bottom: 5px;
}
section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .content-badge.sector .badge-promotion {
  background-color: #1e3157;
  border: 1px solid #1e3157;
  color: #ffffff !important;
}
section.content-page .content-offer-promotion .offer-promotion .block-illustration {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: column;
  width: 56%;
  height: 100%;
  padding: 15px;
  background: #f0f2f8;
  background: linear-gradient(90deg, #f0f2f8 0%, #abb5d7 90%);
}
section.content-page .content-offer-promotion .offer-promotion .block-illustration .illustration-promo {
  display: block;
  width: 360px;
  height: auto;
  margin-bottom: 10px;
}
section.content-page .content-offer-promotion .offer-promotion .block-illustration .link-promotion {
  display: block;
  width: 100%;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.block-hero-promotion .container .content-breadcrumb {
    padding: 10px 0;
  }
  section.block-hero-promotion .container .content-presentation .block-text {
    width: 100%;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .title {
    font-size: 26px;
    line-height: 1;
    margin-bottom: 15px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .description {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .content-indication {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .content-indication .indication {
    display: none;
  }
  section.block-hero-promotion .container .content-presentation .block-illustration {
    display: none;
  }
  section.content-page .content-offer-promotion {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    margin-bottom: 10px;
  }
  section.content-page .content-offer-promotion .offer-promotion {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information {
    width: 100%;
    padding: 10px 10px 0 10px;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description {
    margin-bottom: 10px;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .title {
    font-size: 17px !important;
    line-height: 20px !important;
    margin-bottom: 10px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .description {
    font-size: 15px !important;
    line-height: 19px !important;
    margin-bottom: 5px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .content-badge .badge-promotion {
    padding: 1px 3px;
    font-size: 11px !important;
    line-height: 16px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-illustration {
    width: 100%;
    padding: 0 10px 10px 10px;
    background: linear-gradient(180deg, #f0f2f8 0%, #abb5d7 90%);
  }
  section.content-page .content-offer-promotion .offer-promotion .block-illustration .illustration-promo {
    width: 360px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.block-hero-promotion .container .content-breadcrumb {
    padding: 10px 0;
  }
  section.block-hero-promotion .container .content-presentation .block-text {
    width: 100%;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .title {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 15px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .description {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .content-indication {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .content-indication .indication {
    display: none;
  }
  section.block-hero-promotion .container .content-presentation .block-illustration {
    display: none;
  }
  section.content-page .content-offer-promotion {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    margin-bottom: 10px;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information {
    width: 40%;
    padding: 10px;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description {
    margin-bottom: 20px;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .title {
    font-size: 18px !important;
    line-height: 22px !important;
    margin-bottom: 10px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .description {
    font-size: 15px !important;
    line-height: 19px !important;
    margin-bottom: 10px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .content-badge .badge-promotion {
    padding: 1px 3px;
    font-size: 11px !important;
    line-height: 16px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-illustration {
    width: 60%;
    padding: 10px;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-illustration .illustration-promo {
    width: 360px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.block-hero-promotion .container .content-breadcrumb {
    padding: 20px 0;
  }
  section.block-hero-promotion .container .content-presentation {
    align-items: center;
  }
  section.block-hero-promotion .container .content-presentation .block-text {
    width: 50%;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .title {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 15px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .description {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .content-indication {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .content-indication .indication {
    display: none;
  }
  section.block-hero-promotion .container .content-presentation .block-illustration {
    width: 50%;
  }
  section.block-hero-promotion .container .content-presentation .block-illustration .illustration {
    width: 340px;
  }
  section.content-page .content-offer-promotion {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-bottom: 20px;
  }
  section.content-page .content-offer-promotion .offer-promotion {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information {
    width: 100%;
    padding: 15px 15px 0 15px;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description {
    margin-bottom: 10px;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .title {
    font-size: 20px !important;
    line-height: 24px !important;
    margin-bottom: 10px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .description {
    font-size: 16px !important;
    line-height: 22px !important;
    margin-bottom: 10px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .content-badge .badge-promotion {
    padding: 1px 5px;
    font-size: 13px !important;
    line-height: 20px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-illustration {
    width: 100%;
    padding: 0 15px 15px 15px;
    background: linear-gradient(180deg, #f0f2f8 0%, #abb5d7 90%);
  }
  section.content-page .content-offer-promotion .offer-promotion .block-illustration .illustration-promo {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.block-hero-promotion .container .content-breadcrumb {
    padding: 20px 0;
  }
  section.block-hero-promotion .container .content-presentation .block-text {
    width: 60%;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .title {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 20px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .description {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .content-indication {
    margin-top: 20px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .content-indication .indication {
    display: none;
  }
  section.block-hero-promotion .container .content-presentation .block-illustration {
    width: 40%;
  }
  section.block-hero-promotion .container .content-presentation .block-illustration .illustration {
    width: 340px;
  }
  section.content-page .content-offer-promotion {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-bottom: 20px;
  }
  section.content-page .content-offer-promotion .offer-promotion {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information {
    width: 100%;
    padding: 15px 15px 0 15px;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description {
    margin-bottom: 10px;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .title {
    font-size: 20px !important;
    line-height: 24px !important;
    margin-bottom: 10px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .description {
    font-size: 16px !important;
    line-height: 22px !important;
    margin-bottom: 10px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .content-badge .badge-promotion {
    padding: 1px 5px;
    font-size: 13px !important;
    line-height: 20px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-illustration {
    width: 100%;
    padding-top: 5px;
    background: linear-gradient(180deg, #f0f2f8 0%, #abb5d7 90%);
  }
  section.content-page .content-offer-promotion .offer-promotion .block-illustration .illustration-promo {
    width: 100%;
    height: auto;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  section.block-hero-promotion .container .content-presentation .block-text {
    width: 60%;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .title {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 20px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .description {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .content-indication {
    margin-top: 30px;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .content-indication .indication {
    width: 60px;
    height: 60px;
    border-radius: 50%;
  }
  section.block-hero-promotion .container .content-presentation .block-text .content-title .content-indication .indication .picto {
    width: 23px;
    height: 30px;
  }
  section.block-hero-promotion .container .content-presentation .block-illustration {
    width: 40%;
  }
  section.block-hero-promotion .container .content-presentation .block-illustration .illustration {
    width: 480px;
  }
  section.content-page .content-offer-promotion {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin-bottom: 20px;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information {
    width: 44%;
    padding: 15px;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .title {
    font-size: 20px !important;
    line-height: 24px !important;
    margin-bottom: 10px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .description {
    font-size: 16px !important;
    line-height: 22px !important;
    margin-bottom: 10px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-information .content-description .content-badge .badge-promotion {
    padding: 1px 5px;
    font-size: 13px !important;
    line-height: 20px !important;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-illustration {
    width: 56%;
  }
  section.content-page .content-offer-promotion .offer-promotion .block-illustration .illustration-promo {
    width: 360px;
  }
}
section.block-hero-pole-promotion {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: relative;
}
section.block-hero-pole-promotion .color-hero {
  display: block;
  position: absolute;
  z-index: 5;
  background-color: #780145;
  width: 100%;
  height: 100%;
}
section.block-hero-pole-promotion .container .content-breadcrumb .breadcrumb-atb li {
  color: #ffffff;
}
section.block-hero-pole-promotion .container .content-presentation .block-text {
  width: 52%;
}
section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .heading-title {
  color: #ffb3dd;
}
section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .title {
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
}
section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .title strong {
  color: #ffffff;
}
section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .title span {
  color: #ffe000;
  font-weight: 700;
}
section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-badge-center {
  margin: 10px 0 30px 0;
}
section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-description p {
  font-size: 26px;
  line-height: 36px;
  color: #ffffff;
}
section.tool-quote {
  display: block;
  width: 100%;
  position: relative;
  background-color: #204aa9;
}
section.tool-quote .container {
  position: relative;
  z-index: 10;
}
section.tool-quote .container .content-presentation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.tool-quote .container .content-presentation .block-text {
  display: block;
  width: 45%;
}
section.tool-quote .container .content-presentation .block-text .content-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
section.tool-quote .container .content-presentation .block-text .content-title .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 36px;
  color: #ffffff;
  line-height: 42px;
  text-rendering: optimizeLegibility;
  margin-bottom: 40px;
}
section.tool-quote .container .content-presentation .block-text .content-title .title strong {
  font-weight: 700;
  color: #ffe000;
}
section.tool-quote .container .content-presentation .block-text .content-description {
  margin-bottom: 40px;
}
section.tool-quote .container .content-presentation .block-text .content-description p {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #ffffff;
  line-height: 26px;
  text-rendering: optimizeLegibility;
  margin-bottom: 15px;
}
section.tool-quote .container .content-presentation .block-text .content-description p:last-of-type {
  margin-bottom: 0;
}
section.tool-quote .container .content-presentation .block-text .content-description p strong {
  font-weight: 700;
}
section.tool-quote .container .content-presentation .block-text .content-description p span {
  font-weight: 700;
  color: #ffe000;
}
section.tool-quote .container .content-presentation .block-text .block-action {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 40px;
  gap: 20px;
}
section.tool-quote .container .content-presentation .block-text .block-action .btn-devis {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  height: 60px;
  background: #ffe000;
  border: 1px #ffe000 solid;
  border-radius: 5px;
  transition: all 0.2s ease 0s;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-align: center;
  color: #204aa9;
}
section.tool-quote .container .content-presentation .block-text .block-action .btn-devis:hover {
  background: #18377e;
  border: 1px #18377e solid;
  color: #ffe000;
  text-decoration: none;
}
section.tool-quote .container .content-presentation .block-text .block-action .btn-devis.btn-call-quote {
  background: #cdd4e8;
  border: 1px #cdd4e8 solid;
  color: #204aa9;
}
section.tool-quote .container .content-presentation .block-text .block-action .btn-devis.btn-call-quote:hover {
  background: #ffffff;
}
section.tool-quote .container .content-presentation .block-text .promotion {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
section.tool-quote .container .content-presentation .block-text .promotion .gift {
  position: relative;
  height: 38px;
  background-color: #ffe6f4;
  border-radius: 19px;
  z-index: 5;
}
section.tool-quote .container .content-presentation .block-text .promotion .gift .content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #ffe6f4;
  border: 1px solid rgba(181, 2, 104, 0.5);
  border-radius: 19px;
  padding: 0 15px;
  transition: all 0.2s ease 0s;
}
section.tool-quote .container .content-presentation .block-text .promotion .gift .content img {
  margin-right: 5px;
}
section.tool-quote .container .content-presentation .block-text .promotion .gift .content .label {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #780145;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.tool-quote .container .content-presentation .block-text .promotion .gift .content .label .small-label {
  display: none;
}
section.tool-quote .container .content-presentation .block-text .promotion .gift .content .label strong {
  color: #e6007e;
}
section.tool-quote .container .content-presentation .block-text .promotion .gift:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--degree), hsl(326, 100%, 94%) 20%, hsl(327, 31%, 89%) 40%, hsl(326, 98%, 36%) 60%, hsl(327, 31%, 89%) 80%, hsl(326, 100%, 94%) 100%);
  border-radius: inherit;
  z-index: -1;
  animation: spin 3s infinite linear;
  will-change: contents;
}
section.tool-quote .container .content-presentation .block-text .promotion .gift:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(var(--degree), hsl(326, 100%, 94%) 20%, hsl(327, 31%, 89%) 40%, hsl(326, 98%, 36%) 60%, hsl(327, 31%, 89%) 80%, hsl(326, 100%, 94%) 100%);
  border-radius: inherit;
  filter: blur(5px);
  z-index: -2;
  animation: spin 3s infinite linear;
  will-change: contents;
}
section.tool-quote .container .content-presentation .block-text .promotion .text-promotion {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #ffb3dd;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 0 0 10px;
}
section.tool-quote .container .content-presentation .block-text .promotion .text-promotion strong {
  font-weight: 700;
  color: #ffffff;
}
section.tool-quote .container .content-presentation .mockup-quote {
  width: auto;
  height: 670px;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.block-hero-pole-promotion {
    min-height: 640px;
  }
  section.block-hero-pole-promotion .container .content-breadcrumb {
    display: none;
  }
  section.block-hero-pole-promotion .container .content-presentation {
    flex-direction: column;
    padding: 30px 0 0 0;
    gap: 20px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text {
    width: 100%;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .title {
    font-size: 22px;
    line-height: 26px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-badge-center {
    margin-bottom: 15px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-description p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .block-action {
    margin-top: 20px;
    width: 100%;
    gap: 10px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .block-action .btn-devis {
    width: 50%;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .block-action .btn-rating {
    width: 50%;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider {
    width: 100%;
    gap: 5px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .title {
    font-size: 14px;
    line-height: 18px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items {
    width: 100%;
    height: 190px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items .link-promo .image-promo {
    height: 100%;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .content-indication {
    width: 100%;
  }
  section.tool-quote .container .content-presentation {
    flex-direction: column;
    gap: 20px;
  }
  section.tool-quote .container .content-presentation .block-text {
    display: block;
    width: 100%;
  }
  section.tool-quote .container .content-presentation .block-text .content-title .title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  section.tool-quote .container .content-presentation .block-text .content-description {
    margin-bottom: 10px;
  }
  section.tool-quote .container .content-presentation .block-text .content-description p {
    font-size: 16px;
    line-height: 22px;
  }
  section.tool-quote .container .content-presentation .block-text .block-action {
    margin-top: 0;
  }
  section.tool-quote .container .content-presentation .block-text .block-action .btn-devis {
    padding: 0 10px;
    height: 46px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
  }
  section.tool-quote .container .content-presentation .block-text .promotion .gift {
    width: 180px;
  }
  section.tool-quote .container .content-presentation .block-text .promotion .text-promotion {
    font-size: 16px;
  }
  section.tool-quote .container .content-presentation .mockup-quote {
    height: auto;
    width: 60%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.block-hero-pole-promotion .container .content-presentation {
    flex-direction: column;
    gap: 20px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text {
    width: 100%;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title {
    align-items: center;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .title {
    font-size: 26px;
    line-height: 30px;
    width: 80%;
    text-align: center;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-badge-center {
    margin-bottom: 15px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-description {
    width: 80%;
    text-align: center;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-description p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider {
    width: 100%;
    gap: 5px;
    align-items: center;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .title {
    font-size: 18px;
    line-height: 22px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items {
    width: 70%;
    height: 200px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items .link-promo .image-promo {
    height: 200px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .content-indication {
    width: 70%;
  }
  section.tool-quote .container .content-presentation {
    flex-direction: column;
    gap: 20px;
  }
  section.tool-quote .container .content-presentation .block-text {
    display: block;
    width: 100%;
  }
  section.tool-quote .container .content-presentation .block-text .content-title .title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  section.tool-quote .container .content-presentation .block-text .content-description {
    margin-bottom: 10px;
  }
  section.tool-quote .container .content-presentation .block-text .content-description p {
    font-size: 16px;
    line-height: 22px;
  }
  section.tool-quote .container .content-presentation .block-text .block-action {
    margin-top: 0;
  }
  section.tool-quote .container .content-presentation .block-text .block-action .btn-devis {
    padding: 0 10px;
    height: 46px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
  }
  section.tool-quote .container .content-presentation .block-text .promotion .gift {
    width: 180px;
  }
  section.tool-quote .container .content-presentation .block-text .promotion .text-promotion {
    font-size: 16px;
  }
  section.tool-quote .container .content-presentation .mockup-quote {
    height: auto;
    width: 60%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.block-hero-pole-promotion .container .content-presentation .block-text {
    width: 55%;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .title {
    font-size: 24px;
    line-height: 28px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-badge-center {
    margin-bottom: 15px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-description p {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 10px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .block-action {
    margin-top: 15px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .block-action .btn-devis {
    padding: 0 10px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider {
    width: 40%;
    gap: 5px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .title {
    font-size: 13px;
    line-height: 16px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items {
    height: 156px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items .link-promo .image-promo {
    height: 156px;
  }
  section.tool-quote .container .content-presentation .block-text {
    display: block;
    width: 50%;
  }
  section.tool-quote .container .content-presentation .block-text .content-title .title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 10px;
  }
  section.tool-quote .container .content-presentation .block-text .content-description {
    margin-bottom: 10px;
  }
  section.tool-quote .container .content-presentation .block-text .content-description p {
    font-size: 16px;
    line-height: 22px;
  }
  section.tool-quote .container .content-presentation .block-text .block-action {
    margin-top: 0;
  }
  section.tool-quote .container .content-presentation .block-text .block-action .btn-devis {
    padding: 0 10px;
    height: 46px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.05em;
  }
  section.tool-quote .container .content-presentation .block-text .promotion .gift {
    width: 180px;
  }
  section.tool-quote .container .content-presentation .block-text .promotion .text-promotion {
    font-size: 16px;
  }
  section.tool-quote .container .content-presentation .mockup-quote {
    height: 480px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.block-hero-pole-promotion .container .content-presentation .block-text {
    width: 55%;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .title {
    font-size: 30px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-badge-center {
    margin-bottom: 20px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-description p {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider {
    width: 40%;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .title {
    font-size: 17px;
    line-height: 20px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items {
    height: 210px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items .link-promo .image-promo {
    height: 210px;
  }
  section.tool-quote .container .content-presentation .block-text {
    display: block;
    width: 55%;
  }
  section.tool-quote .container .content-presentation .block-text .content-title .title {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 20px;
  }
  section.tool-quote .container .content-presentation .block-text .content-description {
    margin-bottom: 20px;
  }
  section.tool-quote .container .content-presentation .block-text .content-description p {
    font-size: 17px;
    line-height: 26px;
  }
  section.tool-quote .container .content-presentation .block-text .block-action {
    margin-top: 0;
  }
  section.tool-quote .container .content-presentation .block-text .block-action .btn-devis {
    padding: 0 10px;
    height: 50px;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.25em;
  }
  section.tool-quote .container .content-presentation .block-text .promotion .gift {
    width: 180px;
  }
  section.tool-quote .container .content-presentation .block-text .promotion .text-promotion {
    font-size: 16px;
  }
  section.tool-quote .container .content-presentation .mockup-quote {
    height: 580px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  section.block-hero-pole-promotion .container .content-presentation .block-text {
    width: 49%;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-badge-center {
    margin-bottom: 20px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-text .content-title .content-description p {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider {
    width: 40%;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .title {
    font-size: 20px;
    line-height: 22px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items {
    height: 250px;
  }
  section.block-hero-pole-promotion .container .content-presentation .block-slider .content-items .link-promo .image-promo {
    height: 250px;
  }
  section.tool-quote .container .content-presentation .block-text {
    display: block;
    width: 50%;
  }
  section.tool-quote .container .content-presentation .block-text .content-title .title {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 30px;
  }
  section.tool-quote .container .content-presentation .block-text .content-description {
    margin-bottom: 30px;
  }
  section.tool-quote .container .content-presentation .block-text .content-description p {
    font-size: 17px;
    line-height: 26px;
  }
  section.tool-quote .container .content-presentation .block-text .block-action {
    margin-top: 10px;
  }
  section.tool-quote .container .content-presentation .block-text .block-action .btn-devis {
    padding: 0 20px;
    height: 60px;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.25em;
  }
  section.tool-quote .container .content-presentation .block-text .promotion .text-promotion {
    font-size: 16px;
  }
  section.tool-quote .container .content-presentation .mockup-quote {
    height: 620px;
  }
}
body.page-template-page-booking main.main-content {
  padding-top: 0;
  height: 100%;
}
body.page-template-page-booking section.content-page.other-page {
  padding-bottom: 0;
  position: relative;
  padding-top: 0;
  height: 100%;
}
body.page-template-page-booking section.content-page.other-page .container-fluid {
  padding: 0 !important;
  height: 100%;
}
body.page-template-page-booking section.content-page.other-page .container-fluid .content-booking {
  width: 100%;
  height: 100%;
}
body.page-template-page-booking section.content-page.other-page .container-fluid .content-booking .epGcdA {
  background: rgb(237, 237, 239);
  background: linear-gradient(180deg, rgb(237, 237, 239) 60%, rgb(255, 255, 255) 100%);
  color: #413f47;
  font-family: Roboto, sans-serif;
}
body.page-template-page-booking section.content-page.other-page .container-fluid .content-booking .epGcdA h2,
body.page-template-page-booking section.content-page.other-page .container-fluid .content-booking .epGcdA p {
  color: #413f47;
  font-family: Roboto, sans-serif;
}
body.page-template-page-booking section.content-page.other-page .container-fluid .content-booking .epGcdA .kvzntq .iBMVAq:hover {
  box-shadow: none;
  transform: none;
  border: 2px solid #e6007e;
}
body.page-template-page-booking section.content-page.other-page .container-fluid .content-booking .epGcdA .kvzntq .kxRnCb:hover {
  box-shadow: none;
  transform: none;
}
body.page-template-page-booking section.content-page.other-page .container-fluid .content-booking .epGcdA .ggaodF {
  border-top: 1px solid #a6a4ae;
  border-bottom: 1px solid #a6a4ae;
}

body.page-template-page-bookingv2 main.main-content {
  padding-top: 0;
  height: 100%;
}
body.page-template-page-bookingv2 section.content-page.other-page {
  padding-bottom: 0;
  position: relative;
  padding-top: 0;
  height: 100%;
}
body.page-template-page-bookingv2 section.content-page.other-page .container-fluid {
  padding: 0 !important;
  height: 100%;
}
body.page-template-page-bookingv2 section.content-page.other-page .container-fluid .content-booking {
  width: 100%;
  height: 100%;
}
body.page-template-page-bookingv2 section.content-page.other-page .container-fluid .content-booking .epGcdA {
  background: rgb(237, 237, 239);
  background: linear-gradient(180deg, rgb(237, 237, 239) 60%, rgb(255, 255, 255) 100%);
  color: #413F47;
  font-family: Roboto, sans-serif;
}
body.page-template-page-bookingv2 section.content-page.other-page .container-fluid .content-booking .epGcdA h2,
body.page-template-page-bookingv2 section.content-page.other-page .container-fluid .content-booking .epGcdA p {
  color: #413F47;
  font-family: Roboto, sans-serif;
}
body.page-template-page-bookingv2 section.content-page.other-page .container-fluid .content-booking .epGcdA .kvzntq .iBMVAq:hover {
  box-shadow: none;
  transform: none;
  border: 2px solid #E6007E;
}
body.page-template-page-bookingv2 section.content-page.other-page .container-fluid .content-booking .epGcdA .kvzntq .kxRnCb:hover {
  box-shadow: none;
  transform: none;
}
body.page-template-page-bookingv2 section.content-page.other-page .container-fluid .content-booking .epGcdA .ggaodF {
  border-top: 1px solid #A6A4AE;
  border-bottom: 1px solid #A6A4AE;
}

.breadcrumb-atb {
  margin: 0;
  padding: 0;
  display: block;
  margin-bottom: 20px;
}
.breadcrumb-atb li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #546aaf;
  line-height: 26px;
  text-rendering: optimizeLegibility;
  display: inline-block;
  margin-bottom: 3px;
}
.breadcrumb-atb li a {
  display: block;
  margin: 0;
  padding: 0;
  height: 26px;
  border-radius: 3px;
  background-color: #f0f2f8;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 26px;
  text-rendering: optimizeLegibility;
  padding: 0 5px;
  transition: background-color 0.2s ease 0s;
}
.breadcrumb-atb li a:hover {
  background-color: #cdd4e8;
  color: #1e3157;
  text-decoration: none;
}
.breadcrumb-atb li .divider {
  line-height: 26px;
  padding: 0 5px;
}

.block-hero-pole .breadcrumb-atb li a {
  background-color: #ffffff;
}
.block-hero-pole .breadcrumb-atb li a:hover {
  background-color: #cdd4e8;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .breadcrumb-atb {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-atb li {
    font-size: 12px;
    line-height: 26px;
  }
  .breadcrumb-atb li a {
    font-size: 12px;
    line-height: 26px;
    height: 26px;
    padding: 0 5px;
  }
  .breadcrumb-atb li .divider {
    line-height: 26px;
    padding: 0 5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-atb li {
    font-size: 13px;
    line-height: 26px;
  }
  .breadcrumb-atb li a {
    font-size: 13px;
    line-height: 26px;
    height: 26px;
    padding: 0 5px;
  }
  .breadcrumb-atb li .divider {
    line-height: 26px;
    padding: 0 5px;
  }
}
section.hero-store-locator {
  display: block;
  width: 100%;
  background: linear-gradient(180deg, #600137 40%, #780145 100%);
}
section.hero-store-locator .container {
  position: relative;
  z-index: 10;
  padding-top: 30px;
  padding-bottom: 60px;
}
section.hero-store-locator .container .content-breadcrumb {
  margin-bottom: 30px;
}
section.hero-store-locator .container .content-breadcrumb .breadcrumb-atb {
  margin: 0;
}
section.hero-store-locator .container .content-breadcrumb .breadcrumb-atb li {
  color: #c999b5;
}
section.hero-store-locator .container .content-breadcrumb .breadcrumb-atb li i {
  color: #ae678f;
}
section.hero-store-locator .container .content-breadcrumb .breadcrumb-atb li a {
  background-color: #ae678f;
  color: #600137;
}
section.hero-store-locator .container .content-breadcrumb .breadcrumb-atb li a:hover {
  background-color: #c999b5;
  color: #780145;
}
section.hero-store-locator .container .content-presentation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
}
section.hero-store-locator .container .content-presentation .block-text {
  display: block;
  width: calc(100% - 686px);
}
section.hero-store-locator .container .content-presentation .block-text .content-title {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .title-google-review {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  border-radius: 0.3125rem;
  background-color: #480129;
  padding: 5px 10px;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .title-google-review .logo-google {
  width: 50px;
  height: auto;
  margin: 0 5px 0 0;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .title-google-review .stars {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  color: #e6007e;
  margin: 0 5px 0 0;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .title-google-review .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #c999b5;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 5px 0 0;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .title-google-review .number-user {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  color: #ffffff !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin: 0;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 40px;
  color: #e4ccda;
  line-height: 46px;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .title strong {
  font-weight: 700;
  color: #ffffff;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .content-badge-center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .content-badge-center .badge-title-center {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #a14d7d;
  padding: 0 5px;
  margin: 0;
  height: 19px;
  border-radius: 10px;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  color: #ffffff !important;
  line-height: 19px !important;
  text-rendering: optimizeLegibility;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .content-description {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  margin-top: 20px;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .content-description p {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: #d7b3c7;
  line-height: 25px;
  text-rendering: optimizeLegibility;
  margin-bottom: 5px;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .content-description p:last-of-type {
  margin-bottom: 0;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .content-description p strong {
  font-weight: 700;
  color: #e4ccda;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .block-action {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  gap: 20px;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .block-action .btn-video {
  margin: 0;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .block-action .btn-video .play-video {
  left: 25px;
}
section.hero-store-locator .container .content-presentation .block-text .content-title .block-action .btn-video .text-video {
  color: #ffffff;
}
section.hero-store-locator .container .content-presentation .block-gallery {
  display: flex;
  width: 686px;
  min-height: 360px;
}
section.hero-store-locator .container .content-presentation .block-gallery .illustration {
  display: flex;
  position: relative;
  cursor: pointer;
  width: 100%;
  background-color: #720142;
  border-radius: 0.3125rem;
}
section.hero-store-locator .container .content-presentation .block-gallery .illustration .hover-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(114, 1, 66, 0.3);
  transition: all 0.2s ease 0s;
  position: absolute;
  opacity: 0;
  border-radius: 0.3125rem;
}
section.hero-store-locator .container .content-presentation .block-gallery .illustration .fake-link-illustration {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  border-radius: 0.3125rem;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #1e3157 !important;
  line-height: 30px !important;
  text-rendering: optimizeLegibility;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  gap: 5px;
}
section.hero-store-locator .container .content-presentation .block-gallery .illustration .fake-link-illustration .pictogram {
  font-size: 14px;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
section.hero-store-locator .container .content-presentation .block-gallery .illustration .image-illustration {
  width: 100%;
  height: 100%;
  display: none;
  border-radius: 0.3125rem;
}
section.hero-store-locator .container .content-presentation .block-gallery .illustration:hover .hover-illustration {
  opacity: 1;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.hero-store-locator {
    padding-top: 20px;
  }
  section.hero-store-locator .container {
    padding-top: 0;
    padding-bottom: 20px;
  }
  section.hero-store-locator .container .content-presentation {
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
  }
  section.hero-store-locator .container .content-presentation .block-text {
    width: 100%;
    margin-bottom: 20px;
  }
  section.hero-store-locator .container .content-presentation .block-text .content-title .title {
    font-size: 26px;
    line-height: 30px;
  }
  section.hero-store-locator .container .content-presentation .block-text .content-title .content-description p {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  section.hero-store-locator .container .content-presentation .block-text .block-action {
    gap: 10px;
    width: 100%;
    flex-direction: column;
  }
  section.hero-store-locator .container .content-presentation .block-text .block-action .btn-primary {
    width: 100%;
  }
  section.hero-store-locator .container .content-presentation .block-text .block-action .btn-video .play-video {
    left: 10px !important;
  }
  section.hero-store-locator .container .content-presentation .block-gallery {
    width: 100%;
    align-items: center;
    min-height: 170px;
    gap: 10px;
  }
  section.hero-store-locator .container .content-presentation .block-gallery .illustration {
    width: 100%;
    height: auto;
  }
  section.hero-store-locator .container .content-presentation .block-gallery .illustration .fake-link-illustration {
    font-size: 12px !important;
  }
  section.hero-store-locator .container .content-presentation .block-gallery .illustration .fake-link-illustration .pictogram {
    font-size: 12px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.hero-store-locator .container {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  section.hero-store-locator .container .content-breadcrumb {
    margin-bottom: 0;
    padding: 0 0 20px 0;
  }
  section.hero-store-locator .container .content-presentation {
    gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
  }
  section.hero-store-locator .container .content-presentation .block-text {
    margin-bottom: 0;
    width: 100%;
  }
  section.hero-store-locator .container .content-presentation .block-text .content-title .title {
    font-size: 28px;
    line-height: 34px;
  }
  section.hero-store-locator .container .content-presentation .block-text .content-title .content-description p {
    font-size: 16px !important;
    line-height: 24px !important;
  }
  section.hero-store-locator .container .content-presentation .block-gallery {
    width: 516px;
    align-items: center;
    min-height: 271px;
  }
  section.hero-store-locator .container .content-presentation .block-gallery .illustration {
    width: 100%;
    height: 271px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.hero-store-locator .container {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  section.hero-store-locator .container .content-breadcrumb {
    margin-bottom: 0;
    padding: 0 0 20px 0;
  }
  section.hero-store-locator .container .content-presentation {
    gap: 20px;
    flex-direction: column;
    justify-content: flex-start;
  }
  section.hero-store-locator .container .content-presentation .block-text {
    width: 100%;
    margin-bottom: 0;
  }
  section.hero-store-locator .container .content-presentation .block-text .content-title .title {
    font-size: 34px;
    line-height: 38px;
  }
  section.hero-store-locator .container .content-presentation .block-text .content-title .content-description p {
    font-size: 15px !important;
    line-height: 22px !important;
  }
  section.hero-store-locator .container .content-presentation .block-gallery {
    width: 686px;
    align-items: center;
    min-height: 360px;
  }
  section.hero-store-locator .container .content-presentation .block-gallery .illustration {
    width: 100%;
    height: 360px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.hero-store-locator .container {
    padding-top: 20px;
    padding-bottom: 40px;
  }
  section.hero-store-locator .container .content-breadcrumb {
    padding: 30px 0;
  }
  section.hero-store-locator .container .content-presentation {
    gap: 20px;
    justify-content: flex-start;
  }
  section.hero-store-locator .container .content-presentation .block-text {
    width: calc(100% - 506px);
    margin-bottom: 20px;
  }
  section.hero-store-locator .container .content-presentation .block-text .content-title .title {
    font-size: 30px;
    line-height: 34px;
  }
  section.hero-store-locator .container .content-presentation .block-text .content-title .content-description {
    gap: 5px;
  }
  section.hero-store-locator .container .content-presentation .block-text .content-title .content-description p {
    font-size: 15px;
    line-height: 22px;
  }
  section.hero-store-locator .container .content-presentation .block-text .content-title .block-action {
    gap: 10px;
  }
  section.hero-store-locator .container .content-presentation .block-text .content-title .block-action .btn-primary {
    font-size: 14px;
    padding-left: 10px;
    padding-right: 10px;
  }
  section.hero-store-locator .container .content-presentation .block-text .content-title .block-action .btn-video .text-video {
    font-size: 14px;
  }
  section.hero-store-locator .container .content-presentation .block-gallery {
    width: 486px;
    align-items: center;
    min-height: 255px;
  }
  section.hero-store-locator .container .content-presentation .block-gallery .illustration {
    width: 100%;
    height: 255px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  section.hero-store-locator .container .content-presentation {
    gap: 40px;
  }
  section.hero-store-locator .container .content-presentation .block-text {
    width: calc(100% - 626px);
  }
  section.hero-store-locator .container .content-presentation .block-gallery {
    width: 586px;
  }
}
.how-rent-box-city {
  display: flex;
  padding: 80px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #f2e6ec;
}
.how-rent-box-city .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 40px;
}
.how-rent-box-city .container .content-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: stretch;
  width: 75%;
  margin: auto;
}
.how-rent-box-city .container .content-title .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1e3157;
  line-height: 32px;
  text-rendering: optimizeLegibility;
  text-align: center;
  margin: 0;
}
.how-rent-box-city .container .content-title .subtitle {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #1e3157;
  line-height: 26px;
  text-rendering: optimizeLegibility;
  text-align: center;
  margin: 0;
}
.how-rent-box-city .container .content-list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
}
.how-rent-box-city .container .content-list .tns-outer {
  width: calc(100% - 420px);
}
.how-rent-box-city .container .content-list .list {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  width: 100%;
}
.how-rent-box-city .container .content-list .list .item {
  display: flex;
  align-self: stretch;
  flex: 1 0 0;
}
.how-rent-box-city .container .content-list .list .item .content-item {
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 0.3125rem;
  border: 1px solid #e4ccda;
  background: #ffffff;
}
.how-rent-box-city .container .content-list .list .item .content-item .content-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  align-self: stretch;
}
.how-rent-box-city .container .content-list .list .item .content-item .content-title .title-step {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #1e3157;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  text-align: center;
  margin: 0;
}
.how-rent-box-city .container .content-list .list .item .content-item .content-title .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #780145;
  line-height: 26px;
  text-rendering: optimizeLegibility;
  text-align: center;
  margin: 0;
}
.how-rent-box-city .container .content-list .list .item .content-item .illustration {
  width: auto;
  height: 124px;
}
.how-rent-box-city .container .content-list .list .item .content-item .paragraph {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 20px;
  text-rendering: optimizeLegibility;
  text-align: center;
  margin: 0;
}
.how-rent-box-city .container .content-list .item-cta {
  position: relative;
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  border-radius: 0.3125rem;
  background: #e6007e;
  width: 420px;
  overflow: hidden;
}
.how-rent-box-city .container .content-list .item-cta .mockup-devis {
  position: absolute;
  right: -87px;
  bottom: -23px;
}
.how-rent-box-city .container .content-list .item-cta .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  width: 60%;
}
.how-rent-box-city .container .content-list .item-cta .content .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: #ffffff;
  line-height: 26px;
  text-rendering: optimizeLegibility;
  margin: 0;
}
.how-rent-box-city .container .content-list .item-cta .content .paragraph {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 18px !important;
  color: #ffffff !important;
  line-height: 26px !important;
  text-rendering: optimizeLegibility;
  margin: 0 0 40px 0 !important;
}
.how-rent-box-city .container .content-list .block-control-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.how-rent-box-city .container .content-list .block-control-slider .control-slider {
  padding: 0 !important;
  width: 40px;
  height: 40px;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .how-rent-box-city {
    padding: 30px 0;
  }
  .how-rent-box-city .container {
    gap: 20px;
  }
  .how-rent-box-city .container .content-title {
    width: 100%;
  }
  .how-rent-box-city .container .content-title .title {
    font-size: 21px;
    line-height: 23px;
  }
  .how-rent-box-city .container .content-title .subtitle {
    font-size: 16px;
    line-height: 18px;
  }
  .how-rent-box-city .container .content-list {
    gap: 20px;
    flex-direction: column;
  }
  .how-rent-box-city .container .content-list .tns-outer {
    width: 100%;
  }
  .how-rent-box-city .container .content-list .list {
    gap: 0;
  }
  .how-rent-box-city .container .content-list .list .item .content-item {
    padding: 14px;
    gap: 14px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .content-title .title-step {
    font-size: 15px;
    line-height: 15px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .content-title .title {
    font-size: 20px;
    line-height: 20px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .illustration {
    height: auto;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .paragraph {
    font-size: 14px;
    line-height: 18px;
  }
  .how-rent-box-city .container .content-list .item-cta {
    padding: 16px;
    gap: 16px;
    width: 100%;
  }
  .how-rent-box-city .container .content-list .item-cta .mockup-devis {
    right: -85px;
    bottom: 0px;
    width: 70%;
  }
  .how-rent-box-city .container .content-list .item-cta .title {
    font-size: 22px;
    line-height: 22px;
  }
  .how-rent-box-city .container .content-list .item-cta .content {
    width: 65%;
  }
  .how-rent-box-city .container .content-list .item-cta .content .paragraph {
    font-size: 15px !important;
    line-height: 22px !important;
    margin: 0 0 30px 0 !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .how-rent-box-city {
    padding: 40px 0;
  }
  .how-rent-box-city .container {
    gap: 30px;
  }
  .how-rent-box-city .container .content-title {
    width: 100%;
  }
  .how-rent-box-city .container .content-title .title {
    font-size: 24px;
    line-height: 26px;
  }
  .how-rent-box-city .container .content-title .subtitle {
    font-size: 17px;
    line-height: 21px;
  }
  .how-rent-box-city .container .content-list {
    gap: 20px;
    flex-direction: column;
  }
  .how-rent-box-city .container .content-list .tns-outer {
    width: 100%;
  }
  .how-rent-box-city .container .content-list .list {
    gap: 0;
  }
  .how-rent-box-city .container .content-list .list .item .content-item {
    padding: 14px;
    gap: 14px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .content-title .title-step {
    font-size: 15px;
    line-height: 15px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .content-title .title {
    font-size: 20px;
    line-height: 20px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .illustration {
    height: auto;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .paragraph {
    font-size: 14px;
    line-height: 18px;
  }
  .how-rent-box-city .container .content-list .item-cta {
    padding: 16px;
    gap: 16px;
    width: 100%;
  }
  .how-rent-box-city .container .content-list .item-cta .mockup-devis {
    right: -110px;
    bottom: -60px;
    width: 50%;
  }
  .how-rent-box-city .container .content-list .item-cta .title {
    font-size: 22px;
    line-height: 22px;
  }
  .how-rent-box-city .container .content-list .item-cta .content {
    width: 60%;
  }
  .how-rent-box-city .container .content-list .item-cta .content .paragraph {
    font-size: 15px !important;
    line-height: 22px !important;
    margin: 0 0 30px 0 !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .how-rent-box-city {
    padding: 50px 0;
  }
  .how-rent-box-city .container {
    gap: 30px;
  }
  .how-rent-box-city .container .content-title {
    width: 100%;
  }
  .how-rent-box-city .container .content-title .title {
    font-size: 24px;
    line-height: 26px;
  }
  .how-rent-box-city .container .content-title .subtitle {
    font-size: 17px;
    line-height: 21px;
  }
  .how-rent-box-city .container .content-list {
    gap: 20px;
    flex-direction: column;
  }
  .how-rent-box-city .container .content-list .tns-outer {
    width: 100%;
  }
  .how-rent-box-city .container .content-list .list {
    gap: 16px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item {
    padding: 14px;
    gap: 14px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .content-title .title-step {
    font-size: 15px;
    line-height: 15px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .content-title .title {
    font-size: 20px;
    line-height: 20px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .illustration {
    height: auto;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .paragraph {
    font-size: 14px;
    line-height: 18px;
  }
  .how-rent-box-city .container .content-list .item-cta {
    padding: 16px;
    gap: 16px;
    width: 100%;
  }
  .how-rent-box-city .container .content-list .item-cta .mockup-devis {
    right: -110px;
    bottom: -60px;
    width: 50%;
  }
  .how-rent-box-city .container .content-list .item-cta .title {
    font-size: 22px;
    line-height: 22px;
  }
  .how-rent-box-city .container .content-list .item-cta .content {
    width: 60%;
  }
  .how-rent-box-city .container .content-list .item-cta .content .paragraph {
    font-size: 15px !important;
    line-height: 22px !important;
    margin: 0 0 30px 0 !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .how-rent-box-city {
    padding: 60px 0;
  }
  .how-rent-box-city .container {
    gap: 30px;
  }
  .how-rent-box-city .container .content-title {
    width: 90%;
  }
  .how-rent-box-city .container .content-title .title {
    font-size: 24px;
    line-height: 26px;
  }
  .how-rent-box-city .container .content-title .subtitle {
    font-size: 17px;
    line-height: 21px;
  }
  .how-rent-box-city .container .content-list {
    gap: 20px;
  }
  .how-rent-box-city .container .content-list .tns-outer {
    width: calc(100% - 320px);
  }
  .how-rent-box-city .container .content-list .list {
    gap: 16px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item {
    padding: 14px;
    gap: 14px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .content-title .title-step {
    font-size: 15px;
    line-height: 15px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .content-title .title {
    font-size: 20px;
    line-height: 20px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .illustration {
    height: auto;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .paragraph {
    font-size: 14px;
    line-height: 18px;
  }
  .how-rent-box-city .container .content-list .item-cta {
    padding: 16px;
    gap: 16px;
    width: 320px;
  }
  .how-rent-box-city .container .content-list .item-cta .mockup-devis {
    right: -115px;
    bottom: 5px;
    width: 80%;
  }
  .how-rent-box-city .container .content-list .item-cta .title {
    font-size: 22px;
    line-height: 22px;
  }
  .how-rent-box-city .container .content-list .item-cta .content {
    width: 70%;
  }
  .how-rent-box-city .container .content-list .item-cta .content .paragraph {
    font-size: 15px !important;
    line-height: 22px !important;
    margin: 0 0 40px 0 !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .how-rent-box-city .container {
    gap: 40px;
  }
  .how-rent-box-city .container .content-title {
    width: 80%;
  }
  .how-rent-box-city .container .content-title .title {
    font-size: 28px;
    line-height: 28px;
  }
  .how-rent-box-city .container .content-title .subtitle {
    font-size: 18px;
    line-height: 22px;
  }
  .how-rent-box-city .container .content-list {
    gap: 20px;
  }
  .how-rent-box-city .container .content-list .tns-outer {
    width: calc(100% - 420px);
  }
  .how-rent-box-city .container .content-list .list {
    gap: 20px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item {
    padding: 16px;
    gap: 16px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .content-title .title-step {
    font-size: 16px;
    line-height: 16px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .content-title .title {
    font-size: 22px;
    line-height: 22px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .illustration {
    height: 124px;
  }
  .how-rent-box-city .container .content-list .list .item .content-item .paragraph {
    font-size: 14px;
    line-height: 18px;
  }
  .how-rent-box-city .container .content-list .item-cta {
    padding: 16px;
    gap: 16px;
    width: 420px;
  }
  .how-rent-box-city .container .content-list .item-cta .mockup-devis {
    right: -87px;
    bottom: -23px;
  }
  .how-rent-box-city .container .content-list .item-cta .content {
    width: 60%;
    font-size: 22px;
    line-height: 22px;
  }
  .how-rent-box-city .container .content-list .item-cta .content .paragraph {
    font-size: 16px;
    line-height: 24px;
    margin: 0 0 40px 0 !important;
  }
}
.present-promotion {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  background-color: #f2e6ec;
  border: 1px #d7b3c7 solid;
  border-radius: 0.3125rem;
  transition: all 0.2s ease 0s;
  gap: 10px;
}
.present-promotion .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin: 0 !important;
}
.present-promotion .title-google-review {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0.3125rem;
  width: 100%;
  padding: 6px 0;
  gap: 5px;
  transition: all 0.2s ease 0s;
}
.present-promotion .title-google-review .logo-google {
  width: 50px;
  height: auto;
}
.present-promotion .title-google-review .stars {
  display: flex;
  justify-content: center;
  align-items: center;
}
.present-promotion .title-google-review .stars .fa-star {
  font-size: 9px;
  line-height: 9px;
  color: #e6007e;
}
.present-promotion .title-google-review .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
.present-promotion .title-google-review .number-user {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  color: #1e3157 !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin: 0;
}
.present-promotion .title-google-review:hover {
  border: 1px solid #ecdbe5;
  background-color: #fcfafb;
}
.present-promotion .link-promotion {
  transition: all 0.2s ease 0s;
}
.present-promotion .link-promotion:hover {
  opacity: 0.8;
}
.present-promotion .content-action {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.present-promotion .content-action .link-phone {
  display: block;
  width: 100%;
}

.listing-services {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.listing-services .items-services .item {
  margin-bottom: 0 !important;
}
.listing-services .items-services .item .content-item {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 0.3125rem;
  border: 1px solid #dde0e6;
  background: #f2f3f5;
  margin: 0 !important;
}
.listing-services .items-services .item .content-item .service-icon {
  display: flex;
  width: 50px !important;
  height: 50px !important;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}
.listing-services .items-services .item .content-item .service-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.listing-services .items-services .item .content-item .service-content .service-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #1e3157;
  padding: 0 5px;
  margin: 0;
  height: 19px;
  border-radius: 999px;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 11px !important;
  color: #ffffff !important;
  line-height: 19px !important;
  text-rendering: optimizeLegibility;
}
.listing-services .items-services .item .content-item .service-content .service-title {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 18px !important;
  color: #780145 !important;
  line-height: 18px !important;
  text-rendering: optimizeLegibility;
  margin: 0 !important;
}
.listing-services .items-services .item .content-item .service-content .service-description {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #1e3157 !important;
  line-height: 20px !important;
  text-rendering: optimizeLegibility;
  margin: 0 !important;
}
.listing-services .items-services .item .content-item.item-row {
  align-items: center;
  flex-direction: row;
}
.listing-services .items-services .item .content-item.item-row .service-content {
  justify-content: center;
}
.listing-services .items-services .item .content-item.exclusive {
  border: 1px solid #e4ccda;
  background: #f2e6ec;
}
.listing-services .block-control-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 10px;
}
.listing-services .block-control-slider .control-slider {
  padding: 0 !important;
  width: 40px;
  height: 40px;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .items-services .item .content-item {
    padding: 16px;
    gap: 16px;
    height: 100%;
  }
  .items-services .item .content-item .service-icon {
    width: 35px !important;
    height: 35px !important;
  }
  .items-services .item .content-item .service-content {
    gap: 10px;
  }
  .items-services .item .content-item .service-content .service-title {
    font-size: 16px !important;
    line-height: 16px !important;
  }
  .items-services .item .content-item .service-content .service-description {
    font-size: 13px !important;
    line-height: 17px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .items-services .item .content-item {
    padding: 16px;
    gap: 16px;
    height: 100%;
  }
  .items-services .item .content-item .service-icon {
    width: 35px !important;
    height: 35px !important;
  }
  .items-services .item .content-item .service-content {
    gap: 10px;
  }
  .items-services .item .content-item .service-content .service-title {
    font-size: 16px !important;
    line-height: 16px !important;
  }
  .items-services .item .content-item .service-content .service-description {
    font-size: 13px !important;
    line-height: 17px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .items-services .item .content-item {
    padding: 16px;
    gap: 16px;
  }
  .items-services .item .content-item .service-icon {
    width: 35px !important;
    height: 35px !important;
  }
  .items-services .item .content-item .service-content {
    gap: 10px;
  }
  .items-services .item .content-item .service-content .service-title {
    font-size: 16px !important;
    line-height: 16px !important;
  }
  .items-services .item .content-item .service-content .service-description {
    font-size: 13px !important;
    line-height: 17px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .items-services .item .content-item {
    padding: 16px;
    gap: 16px;
  }
  .items-services .item .content-item .service-icon {
    width: 40px !important;
    height: 40px !important;
  }
  .items-services .item .content-item .service-content {
    gap: 10px;
  }
  .items-services .item .content-item .service-content .service-title {
    font-size: 16px !important;
    line-height: 16px !important;
  }
  .items-services .item .content-item .service-content .service-description {
    font-size: 13px !important;
    line-height: 17px !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .items-services .item .content-item {
    padding: 16px;
    gap: 16px;
  }
  .items-services .item .content-item .service-icon {
    width: 40px !important;
    height: 40px !important;
  }
  .items-services .item .content-item .service-content {
    gap: 10px;
  }
  .items-services .item .content-item .service-content .service-title {
    font-size: 16px !important;
    line-height: 16px !important;
  }
  .items-services .item .content-item .service-content .service-description {
    font-size: 13px !important;
    line-height: 17px !important;
  }
}
.content-text-review {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 60px;
}
.content-text-review .image-presentation {
  display: flex;
  justify-content: flex-end;
  position: relative;
  width: 34%;
  margin-left: 60px;
  order: 1;
}
.content-text-review .image-presentation .cadre-image {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 30%;
  height: 60%;
  background-color: #e6007e;
  opacity: 0.5;
  z-index: 5;
}
.content-text-review .image-presentation .img-text-presentation {
  position: relative;
  width: calc(100% - 20px);
  height: auto;
  order: 2;
}
.content-text-review .text-presentation {
  width: 66%;
}
.content-text-review:last-child {
  margin-bottom: 0;
}

.content-listing-view .item-storage-view {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  border-radius: 0.3125rem;
  gap: 10px;
}
.content-listing-view .item-storage-view .header-storage-review {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
}
.content-listing-view .item-storage-view .header-storage-review .infos-storage {
  display: block;
}
.content-listing-view .item-storage-view .header-storage-review .infos-storage .title-storage {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 26px !important;
  color: #1e3157 !important;
  line-height: 32px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
.content-listing-view .item-storage-view .header-storage-review .infos-storage .title-storage strong {
  color: #780145;
}
.content-listing-view .item-storage-view .header-storage-review .infos-storage .link-storage {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #1e3157 !important;
  line-height: 18px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
  color: #1e3157;
  text-decoration: underline;
}
.content-listing-view .item-storage-view .header-storage-review .infos-storage .link-storage:hover {
  text-transform: none;
}
.content-listing-view .item-storage-view .header-storage-review .content-rating {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0;
}
.content-listing-view .item-storage-view .header-storage-review .content-rating .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #780145;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-align: center;
  margin-bottom: 0;
  margin-right: 10px;
  letter-spacing: -2px;
}
.content-listing-view .item-storage-view .header-storage-review .content-rating .rating span {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #780145;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
.content-listing-view .item-storage-view .header-storage-review .content-rating .content-star-number {
  display: block;
}
.content-listing-view .item-storage-view .header-storage-review .content-rating .content-star-number .stars {
  position: relative;
  top: 4px;
  font-size: 12px;
  color: #e6007e;
  text-align: center;
  margin-bottom: 2px;
  line-height: 14px;
}
.content-listing-view .item-storage-view .header-storage-review .content-rating .content-star-number .link-number-user {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e3157;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  text-decoration: underline;
  text-align: center;
  margin-bottom: 0;
}
.content-listing-view .item-storage-view .header-storage-review .content-rating .content-star-number .link-number-user:hover {
  text-decoration: none;
}
.content-listing-view .item-storage-view .body-storage-review {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  width: 100%;
}
.content-listing-view .item-storage-view .body-storage-review .item-present-review {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  background-color: #f2f3f5;
  border: 1px solid #dde0e6;
  border-radius: 0.3125rem;
  padding: 20px;
  gap: 20px;
}
.content-listing-view .item-storage-view .body-storage-review .item-present-review .content-review-infos {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}
.content-listing-view .item-storage-view .body-storage-review .item-present-review .content-review-infos .name-author {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #780145;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
.content-listing-view .item-storage-view .body-storage-review .item-present-review .content-review-infos .stars {
  font-size: 12px;
  color: #e6007e;
  text-align: left;
}
.content-listing-view .item-storage-view .body-storage-review .item-present-review .comment {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
.content-listing-view .item-storage-view .body-storage-review .item-present-review .comment p {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 20px;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
.content-listing-view .item-storage-view .body-storage-review .item-present-review .comment p.truncate {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.content-listing-view .item-storage-view .footer-storage-review {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.content-listing-view .item-storage-view .footer-storage-review .link-storage {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #1e3157 !important;
  line-height: 18px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
  text-decoration: underline;
}
.content-listing-view .item-storage-view .footer-storage-review .link-storage:hover {
  text-transform: none;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .content-text-review {
    margin-bottom: 25px;
  }
  .content-text-review .image-presentation {
    display: none;
  }
  .content-text-review .text-presentation {
    width: 100%;
  }
  .content-listing-view .item-storage-view {
    padding: 0;
    margin-bottom: 20px;
  }
  .content-listing-view .item-storage-view .header-storage-review .infos-storage .title-storage {
    font-size: 20px !important;
    line-height: 20px !important;
  }
  .content-listing-view .item-storage-view .header-storage-review .infos-storage .link-storage {
    font-size: 12px;
    line-height: 14px;
  }
  .content-listing-view .item-storage-view .header-storage-review .content-rating {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    width: 140px;
  }
  .content-listing-view .item-storage-view .header-storage-review .content-rating .rating {
    font-size: 26px;
    margin-right: 0;
    letter-spacing: -1px;
  }
  .content-listing-view .item-storage-view .header-storage-review .content-rating .rating span {
    font-size: 14px;
  }
  .content-listing-view .item-storage-view .header-storage-review .content-rating .content-star-number {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .content-listing-view .item-storage-view .header-storage-review .content-rating .content-star-number .stars {
    top: 0;
    text-align: right;
  }
  .content-listing-view .item-storage-view .body-storage-review {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    width: 100%;
    margin-bottom: 10px;
  }
  .content-listing-view .item-storage-view .body-storage-review .item-present-review {
    padding: 10px;
    gap: 10px;
  }
  .content-listing-view .item-storage-view .body-storage-review .item-present-review .name-author {
    font-size: 16px;
    line-height: 16px;
  }
  .content-listing-view .item-storage-view .body-storage-review .item-present-review .stars {
    font-size: 14px;
    margin-bottom: 0;
  }
  .content-listing-view .item-storage-view .body-storage-review .item-present-review .comment {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
  }
  .content-listing-view .item-storage-view .footer-storage-review .link-storage {
    font-size: 12px;
    line-height: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .content-text-review {
    margin-bottom: 25px;
  }
  .content-text-review .image-presentation {
    display: none;
  }
  .content-text-review .text-presentation {
    width: 100%;
  }
  .content-listing-view .item-storage-view {
    padding: 0;
    margin-bottom: 20px;
  }
  .content-listing-view .item-storage-view .header-storage-review .infos-storage .title-storage {
    font-size: 20px !important;
    line-height: 20px !important;
  }
  .content-listing-view .item-storage-view .header-storage-review .infos-storage .link-storage {
    font-size: 12px;
    line-height: 14px;
  }
  .content-listing-view .item-storage-view .header-storage-review .content-rating .rating {
    font-size: 30px;
    margin-right: 10px;
    letter-spacing: -1px;
  }
  .content-listing-view .item-storage-view .header-storage-review .content-rating .rating span {
    font-size: 14px;
  }
  .content-listing-view .item-storage-view .body-storage-review {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
    width: 100%;
    margin-bottom: 10px;
  }
  .content-listing-view .item-storage-view .body-storage-review .item-present-review {
    padding: 10px;
    gap: 10px;
  }
  .content-listing-view .item-storage-view .body-storage-review .item-present-review .name-author {
    font-size: 16px;
  }
  .content-listing-view .item-storage-view .body-storage-review .item-present-review .stars {
    font-size: 16px;
  }
  .content-listing-view .item-storage-view .body-storage-review .item-present-review .comment {
    font-size: 14px;
    line-height: 18px;
  }
  .content-listing-view .item-storage-view .footer-storage-review .link-storage {
    font-size: 12px;
    line-height: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .content-listing-view .item-storage-view .header-storage-review .infos-storage .title-storage {
    font-size: 22px !important;
    line-height: 22px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .content-text-review {
    margin-bottom: 25px;
  }
  .content-text-review .image-presentation {
    display: none;
  }
  .content-text-review .text-presentation {
    width: 100%;
  }
  .content-listing-view .item-storage-view .header-storage-review .infos-storage .title-storage {
    font-size: 22px !important;
    line-height: 22px !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .content-text-review .image-presentation {
    margin-left: 30px;
  }
  .content-text-review:nth-child(2n) .image-presentation {
    margin-right: 30px;
  }
  .content-listing-view .item-storage-view .header-storage-review .infos-storage .title-storage {
    font-size: 22px !important;
    line-height: 22px !important;
  }
}
.listing-faq {
  display: flex;
  padding: 40px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #ffffff;
}
.listing-faq .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 40px;
}
.listing-faq .container .content-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: stretch;
  width: 75%;
  margin: auto;
}
.listing-faq .container .content-title .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1e3157;
  line-height: 32px;
  text-rendering: optimizeLegibility;
  text-align: center;
  margin: 0;
}
.listing-faq .container .content-list-faq {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.listing-faq .container .content-list-faq .item-faq {
  border: 1px solid #dde0e6;
  border-radius: 0.3125rem;
  overflow: hidden;
  width: 100%;
  transition: all 0.2s ease 0s;
}
.listing-faq .container .content-list-faq .item-faq .accordion-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.listing-faq .container .content-list-faq .item-faq .accordion-question .question {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1e3157;
  line-height: 18px;
  text-rendering: optimizeLegibility;
  margin: 0;
  width: calc(100% - 40px);
}
.listing-faq .container .content-list-faq .item-faq .accordion-question .icon {
  font-size: 16px;
  color: #1e3157;
  transition: all 0.4s ease;
}
.listing-faq .container .content-list-faq .item-faq .accordion-answer {
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 20px;
  box-sizing: content-box;
}
.listing-faq .container .content-list-faq .item-faq .accordion-answer p {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #1e3157 !important;
  line-height: 20px !important;
  text-rendering: optimizeLegibility;
  margin: 0 0 5px 0 !important;
}
.listing-faq .container .content-list-faq .item-faq .accordion-answer p:last-of-type {
  margin: 0 !important;
}
.listing-faq .container .content-list-faq .item-faq .accordion-answer ul,
.listing-faq .container .content-list-faq .item-faq .accordion-answer ol {
  margin-left: 0;
}
.listing-faq .container .content-list-faq .item-faq .accordion-answer ul li,
.listing-faq .container .content-list-faq .item-faq .accordion-answer ol li {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #1e3157 !important;
  line-height: 20px !important;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
  margin-bottom: 5px;
}
.listing-faq .container .content-list-faq .item-faq .accordion-answer ul li strong,
.listing-faq .container .content-list-faq .item-faq .accordion-answer ol li strong {
  font-weight: 700;
}
.listing-faq .container .content-list-faq .item-faq .accordion-answer ul li:last-of-type,
.listing-faq .container .content-list-faq .item-faq .accordion-answer ol li:last-of-type {
  margin: 0 !important;
}
.listing-faq .container .content-list-faq .item-faq .accordion-answer.open {
  background: #ffffff;
  padding: 0 20px 20px 20px;
  max-height: 500px;
}
.listing-faq .container .content-list-faq .item-faq.active {
  border: 1px solid #a5adbc;
}
.listing-faq .container .content-list-faq .item-faq.active .accordion-question {
  background-color: #ffffff;
}
.listing-faq .container .content-list-faq .item-faq.active .accordion-question .icon {
  transform: rotate(90deg);
}
.listing-faq .container .content-list-faq .item-faq:hover {
  border: 1px solid #bcc1cd;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .listing-faq {
    padding: 30px 0;
  }
  .listing-faq .container {
    gap: 20px;
  }
  .listing-faq .container .content-title {
    width: 100%;
  }
  .listing-faq .container .content-title .title {
    font-size: 21px;
    line-height: 23px;
  }
  .listing-faq .container .content-list-faq {
    gap: 10px;
  }
  .listing-faq .container .content-list-faq .item-faq .accordion-question {
    padding: 10px;
  }
  .listing-faq .container .content-list-faq .item-faq .accordion-question .question {
    font-size: 14px;
    line-height: 16px;
  }
  .listing-faq .container .content-list-faq .item-faq .accordion-answer {
    padding: 0 10px;
  }
  .listing-faq .container .content-list-faq .item-faq .accordion-answer p {
    font-size: 13px;
    line-height: 17px;
  }
  .listing-faq .container .content-list-faq .item-faq .accordion-answer ul li,
  .listing-faq .container .content-list-faq .item-faq .accordion-answer ol li {
    font-size: 13px;
    line-height: 17px;
  }
  .listing-faq .container .content-list-faq .item-faq .accordion-answer.open {
    padding: 0 10px 10px 10px;
    max-height: 700px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .listing-faq {
    padding: 20px 0;
  }
  .listing-faq .container {
    gap: 30px;
  }
  .listing-faq .container .content-title {
    width: 100%;
  }
  .listing-faq .container .content-title .title {
    font-size: 24px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .listing-faq {
    padding: 25px 0;
  }
  .listing-faq .container {
    gap: 30px;
  }
  .listing-faq .container .content-title {
    width: 100%;
  }
  .listing-faq .container .content-title .title {
    font-size: 24px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .listing-faq {
    padding: 30px 0;
  }
  .listing-faq .container {
    gap: 30px;
  }
  .listing-faq .container .content-title {
    width: 90%;
  }
  .listing-faq .container .content-title .title {
    font-size: 24px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .listing-faq .container {
    gap: 40px;
  }
  .listing-faq .container .content-title {
    width: 80%;
  }
  .listing-faq .container .content-title .title {
    font-size: 28px;
    line-height: 28px;
  }
}
.seo-warehouse {
  display: flex;
  padding: 40px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #ffffff;
}
.seo-warehouse .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 40px;
}
.seo-warehouse .container .block-seo {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  border-radius: 0.3125rem;
  border: 1px solid #ebd9e3;
  background-color: #f2e6ec;
}
.seo-warehouse .container .block-seo h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: #780145;
  line-height: 32px;
  text-rendering: optimizeLegibility;
  margin: 0 0 20px 0;
}
.seo-warehouse .container .block-seo ul,
.seo-warehouse .container .block-seo ol {
  margin-left: 0;
}
.seo-warehouse .container .block-seo ul.no-style,
.seo-warehouse .container .block-seo ol.no-style {
  list-style: none;
  padding-left: 0;
}
.seo-warehouse .container .block-seo p,
.seo-warehouse .container .block-seo li {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: #1e3157 !important;
  line-height: normal !important;
  text-rendering: optimizeLegibility;
  margin: 0 0 10px 0 !important;
}
.seo-warehouse .container .block-seo p strong,
.seo-warehouse .container .block-seo li strong {
  font-weight: 700;
}
.seo-warehouse .container .block-seo li {
  margin: 0 0 5px 0 !important;
}
.seo-warehouse .container .block-seo li:last-of-type {
  margin: 0 !important;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .seo-warehouse {
    padding: 30px 0;
  }
  .seo-warehouse .container {
    gap: 20px;
  }
  .seo-warehouse .container .block-seo {
    padding: 14px;
  }
  .seo-warehouse .container .block-seo h2 {
    font-size: 20px !important;
    line-height: 22px !important;
    margin: 0 0 14px 0;
  }
  .seo-warehouse .container .block-seo p,
  .seo-warehouse .container .block-seo li {
    font-size: 15px !important;
    line-height: 19px !important;
    margin: 0 0 7px 0 !important;
  }
  .seo-warehouse .container .block-seo li {
    margin: 0 0 3px 0 !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .seo-warehouse {
    padding: 20px 0;
  }
  .seo-warehouse .container {
    gap: 30px;
  }
  .seo-warehouse .container .block-seo {
    padding: 14px;
  }
  .seo-warehouse .container .block-seo h2 {
    font-size: 20px !important;
    line-height: 22px !important;
    margin: 0 0 14px 0;
  }
  .seo-warehouse .container .block-seo p,
  .seo-warehouse .container .block-seo li {
    font-size: 15px !important;
    line-height: 19px !important;
    margin: 0 0 7px 0 !important;
  }
  .seo-warehouse .container .block-seo li {
    margin: 0 0 3px 0 !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .seo-warehouse {
    padding: 25px 0;
  }
  .seo-warehouse .container {
    gap: 30px;
  }
  .seo-warehouse .container .block-seo {
    padding: 20px;
  }
  .seo-warehouse .container .block-seo h2 {
    font-size: 22px !important;
    line-height: 24px !important;
    margin: 0 0 16px 0;
  }
  .seo-warehouse .container .block-seo p,
  .seo-warehouse .container .block-seo li {
    font-size: 15px !important;
    line-height: 19px !important;
    margin: 0 0 8px 0 !important;
  }
  .seo-warehouse .container .block-seo li {
    margin: 0 0 4px 0 !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .seo-warehouse {
    padding: 30px 0;
  }
  .seo-warehouse .container {
    gap: 30px;
  }
  .seo-warehouse .container .block-seo {
    padding: 20px;
  }
  .seo-warehouse .container .block-seo h2 {
    font-size: 22px !important;
    line-height: 24px !important;
    margin: 0 0 16px 0;
  }
  .seo-warehouse .container .block-seo p,
  .seo-warehouse .container .block-seo li {
    font-size: 15px !important;
    line-height: 19px !important;
    margin: 0 0 8px 0 !important;
  }
  .seo-warehouse .container .block-seo li {
    margin: 0 0 4px 0 !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .seo-warehouse .container {
    gap: 40px;
  }
}
.other-warehouse {
  display: flex;
  padding: 40px 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #e9eaee;
}
.other-warehouse .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 40px;
}
.other-warehouse .container .content-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: stretch;
  width: 75%;
  margin: auto;
}
.other-warehouse .container .content-title .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #1e3157;
  line-height: 32px;
  text-rendering: optimizeLegibility;
  text-align: center;
  margin: 0;
}
.other-warehouse .container .content-list-warehouse {
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  gap: 20px;
  align-self: stretch;
  flex-wrap: wrap;
}
.other-warehouse .container .content-list-warehouse .item-warehouse {
  display: flex;
  flex: 0 0 calc(25% - 20px);
  padding: 10px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 5px;
  border: 1px solid #dde0e6;
  background-color: #ffffff;
  transition: all 0.2s ease 0s;
}
.other-warehouse .container .content-list-warehouse .item-warehouse .first-content {
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}
.other-warehouse .container .content-list-warehouse .item-warehouse .first-content .block-infos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  flex: 1 0 0;
}
.other-warehouse .container .content-list-warehouse .item-warehouse .first-content .block-infos .name-warehouse {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1e3157;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  margin: 0;
}
.other-warehouse .container .content-list-warehouse .item-warehouse .first-content .block-infos .address-warehouse {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1e3157;
  line-height: normal;
  text-rendering: optimizeLegibility;
  margin: 0;
}
.other-warehouse .container .content-list-warehouse .item-warehouse .first-content .image-warehouse {
  width: 80px;
  height: auto;
  border-radius: 0.3125rem;
}
.other-warehouse .container .content-list-warehouse .item-warehouse .second-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  align-self: stretch;
}
.other-warehouse .container .content-list-warehouse .item-warehouse .second-content .google-rate-content {
  display: flex;
  padding: 4px 5px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  border-radius: 3px;
  border: 1px solid #dde0e6;
  background: #ffffff;
}
.other-warehouse .container .content-list-warehouse .item-warehouse .second-content .google-rate-content .content-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.other-warehouse .container .content-list-warehouse .item-warehouse .second-content .google-rate-content .content-rating .stars {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.other-warehouse .container .content-list-warehouse .item-warehouse .second-content .google-rate-content .content-rating .stars i {
  color: #e6007e;
  font-family: "Font Awesome 7 Pro";
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.other-warehouse .container .content-list-warehouse .item-warehouse .second-content .google-rate-content .content-rating .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1e3157;
  line-height: normal;
  text-rendering: optimizeLegibility;
  margin: 0;
}
.other-warehouse .container .content-list-warehouse .item-warehouse .second-content .google-rate-content .link-number-user {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1e3157;
  line-height: normal;
  text-rendering: optimizeLegibility;
  margin: 0;
}
.other-warehouse .container .content-list-warehouse .item-warehouse:hover {
  background-color: #e9eaee;
  border-color: #bcc1cd;
  cursor: pointer;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .other-warehouse {
    padding: 30px 0;
  }
  .other-warehouse .container {
    gap: 20px;
  }
  .other-warehouse .container .content-title {
    width: 100%;
  }
  .other-warehouse .container .content-title .title {
    font-size: 21px;
    line-height: 23px;
  }
  .other-warehouse .container .content-list-warehouse {
    gap: 16px;
  }
  .other-warehouse .container .content-list-warehouse .item-warehouse {
    flex: 0 0 calc(100% - 16px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .other-warehouse {
    padding: 20px 0;
  }
  .other-warehouse .container {
    gap: 30px;
  }
  .other-warehouse .container .content-title {
    width: 100%;
  }
  .other-warehouse .container .content-title .title {
    font-size: 24px;
    line-height: 26px;
  }
  .other-warehouse .container .content-list-warehouse {
    gap: 16px;
  }
  .other-warehouse .container .content-list-warehouse .item-warehouse {
    flex: 0 0 calc(50% - 16px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .other-warehouse {
    padding: 25px 0;
  }
  .other-warehouse .container {
    gap: 30px;
  }
  .other-warehouse .container .content-title {
    width: 100%;
  }
  .other-warehouse .container .content-title .title {
    font-size: 24px;
    line-height: 26px;
  }
  .other-warehouse .container .content-list-warehouse {
    gap: 16px;
  }
  .other-warehouse .container .content-list-warehouse .item-warehouse {
    flex: 0 0 calc(50% - 16px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .other-warehouse {
    padding: 30px 0;
  }
  .other-warehouse .container {
    gap: 30px;
  }
  .other-warehouse .container .content-title {
    width: 90%;
  }
  .other-warehouse .container .content-title .title {
    font-size: 24px;
    line-height: 26px;
  }
  .other-warehouse .container .content-list-warehouse {
    gap: 16px;
  }
  .other-warehouse .container .content-list-warehouse .item-warehouse {
    flex: 0 0 calc(50% - 16px);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .other-warehouse .container {
    gap: 40px;
  }
  .other-warehouse .container .content-title {
    width: 80%;
  }
  .other-warehouse .container .content-title .title {
    font-size: 28px;
    line-height: 28px;
  }
  .other-warehouse .container .content-list-warehouse {
    gap: 20px;
  }
  .other-warehouse .container .content-list-warehouse .item-warehouse {
    flex: 0 0 calc(33.3333% - 20px);
  }
}
.map-multi-center {
  display: flex;
  padding: calc(80px / 2) 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  background: #ffffff;
}
.map-multi-center .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  gap: 20px;
}
.map-multi-center .container .block-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}
.map-multi-center .container .block-text .title {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.map-multi-center .container .block-text .title h2 {
  color: #1e3157;
  font-size: 28px;
  line-height: 28px;
  margin: 0;
}
.map-multi-center .container .block-text .title .divider {
  background-color: #e9eaee;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  flex: 1 0 0;
}
.map-multi-center .container .block-text h3 {
  font-weight: 500;
  color: #1e3157;
  margin: 0;
  font-size: 26px;
  line-height: 32px;
}
.map-multi-center .container .block-text .infos-paragraph {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}
.map-multi-center .container .block-text .infos-paragraph p {
  margin: 0;
  color: #1e3157;
}
.map-multi-center .container .block-map-multi-center {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  border: 1px solid #a5adbc;
  border-radius: 0.3125rem;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
  border-right: 1px solid #a5adbc;
  background-color: #ffffff;
  border-radius: 0.3125rem 0 0 0.3125rem;
  width: 420px;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse {
  display: block;
  border: 1px solid #a5adbc;
  background-color: #ffffff;
  border-radius: 0.3125rem;
  width: 100%;
  overflow: hidden;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 10px;
  cursor: pointer;
  background-color: #f2e6ec;
  transition: all 0.2s ease 0s;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content .info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content .info .number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  background-color: #1e3157;
  border-radius: 9999px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content .info .title-warehouse {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content .indice {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  font-size: 16px;
  color: #1e3157;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content .indice:before {
  content: "\f106";
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content.collapsed {
  background-color: #ffffff;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content.collapsed .indice {
  color: #1e3157;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content.collapsed .indice:before {
  content: "\f105";
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content.collapsed .info .number {
  background-color: #e6007e;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content.collapsed:hover {
  background-color: #f2e6ec;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content.collapsed:hover .info .number {
  background-color: #e6007e;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse {
  padding: 10px;
  background-color: #f2e6ec;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 10px;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  width: calc(100% - 120px);
  gap: 10px;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .block-address {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  width: 100%;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .block-address .content-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .block-address .content-icon i {
  font-size: 16px;
  color: #1e3157;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .block-address .content-text {
  display: block;
  width: calc(100% - 30px);
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1e3157;
  line-height: normal;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content {
  display: flex;
  padding: 4px 5px;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 2px;
  border-radius: 3px;
  border: 1px solid #c7ccd5;
  background: #ffffff;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .content-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .content-rating .stars {
  display: flex;
  justify-content: center;
  align-items: center;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .content-rating .stars i {
  color: #e6007e;
  font-family: "Font Awesome 7 Pro";
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .content-rating .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1e3157;
  line-height: normal;
  text-rendering: optimizeLegibility;
  margin: 0;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .link-number-user {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1e3157;
  line-height: normal;
  text-rendering: optimizeLegibility;
  margin: 0;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .link-warehouse-mobile {
  display: none;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1e3157;
  line-height: normal;
  text-rendering: optimizeLegibility;
  text-decoration: underline;
  margin: 0;
  padding: 0;
  transition: all 0.2s ease 0s;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .link-warehouse-mobile:hover {
  text-decoration: none;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-img {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  width: 120px;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-img img {
  border-radius: 0.3125rem;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-img .link-warehouse {
  display: block;
  width: 100%;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .image-location-center {
  display: none;
}
.map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse.active-over .header-warehouse .content {
  background-color: #f2e6ec;
}
.map-multi-center .container .block-map-multi-center .content-map {
  display: block;
  width: calc(100% - 420px);
}
.map-multi-center .container .block-map-multi-center .content-map .block-map {
  display: block;
  width: 100%;
  height: 450px;
  border-radius: 0 0.3125rem 0.3125rem 0;
}
.map-multi-center .container .block-map-multi-center .content-map .block-map a {
  font-size: 10px !important;
  color: #780145;
}
.map-multi-center .container .block-map-multi-center .content-map .block-map .marker-map-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  border-radius: 50%;
  background-color: #e6007e;
  border: 2px solid #ffffff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.map-multi-center .container .block-map-multi-center .content-map .block-map .marker-map-text.click-over {
  z-index: 10;
  background-color: #1e3157;
}
.map-multi-center .container .block-map-multi-center .content-map .block-map .marker-map-text.active-over {
  z-index: 10;
  background-color: #354668;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .map-multi-center {
    padding: 30px 0;
  }
  .map-multi-center .container .block-text .title h2 {
    font-size: 22px;
    line-height: 24px;
    width: 85%;
  }
  .map-multi-center .container .block-text h3 {
    font-size: 20px;
    line-height: 20px;
  }
  .map-multi-center .container .block-text .infos-paragraph p {
    font-size: 15px;
    line-height: 21px;
  }
  .map-multi-center .container .block-map-multi-center {
    flex-direction: column;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse {
    border-right: none;
    border-top: 1px solid #a5adbc;
    border-radius: 0 0 0.3125rem 0.3125rem;
    width: 100%;
    order: 2;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content {
    height: 38px;
    padding: 0 5px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content .info {
    gap: 5px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content .info .number {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content .info .title-warehouse {
    font-size: 14px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse {
    padding: 5px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content {
    gap: 5px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info {
    width: 100%;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .block-address .content-icon {
    width: 14px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .block-address .content-icon i {
    font-size: 14px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .block-address .content-text {
    display: block;
    width: calc(100% - 14px);
    font-size: 12px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .content-rating {
    align-items: center;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .content-rating .stars {
    font-size: 10px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .content-rating .rating {
    font-size: 12px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .link-number-user {
    font-size: 12px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .link-warehouse-mobile {
    display: block;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-img {
    display: none;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .image-location-center {
    display: none;
  }
  .map-multi-center .container .block-map-multi-center .content-map {
    width: 100%;
    order: 1;
  }
  .map-multi-center .container .block-map-multi-center .content-map .block-map {
    height: 290px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .map-multi-center {
    padding: calc(40px / 2) 0;
  }
  .map-multi-center .container .block-text .title h2 {
    font-size: 22px;
    line-height: 24px;
    width: 85%;
  }
  .map-multi-center .container .block-text h3 {
    font-size: 20px;
    line-height: 20px;
  }
  .map-multi-center .container .block-text .infos-paragraph p {
    font-size: 15px;
    line-height: 21px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse {
    width: 230px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content {
    height: 38px;
    padding: 0 5px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content .info {
    gap: 5px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content .info .number {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content .info .title-warehouse {
    font-size: 14px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse {
    padding: 5px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content {
    gap: 5px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info {
    width: 100%;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .block-address .content-icon {
    width: 14px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .block-address .content-icon i {
    font-size: 14px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .block-address .content-text {
    display: block;
    width: calc(100% - 14px);
    font-size: 12px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .content-rating {
    align-items: center;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .content-rating .stars {
    font-size: 10px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .content-rating .rating {
    font-size: 12px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .link-number-user {
    font-size: 12px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .link-warehouse-mobile {
    display: block;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-img {
    display: none;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .image-location-center {
    display: none;
  }
  .map-multi-center .container .block-map-multi-center .content-map {
    width: calc(100% - 230px);
  }
  .map-multi-center .container .block-map-multi-center .content-map .block-map {
    height: 390px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .map-multi-center {
    padding: calc(50px / 2) 0;
  }
  .map-multi-center .container .block-text .title h2 {
    font-size: 24px;
    line-height: 26px;
  }
  .map-multi-center .container .block-text h3 {
    font-size: 22px;
    line-height: 22px;
  }
  .map-multi-center .container .block-text .infos-paragraph p {
    font-size: 15px;
    line-height: 21px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse {
    width: 280px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content {
    height: 48px;
    padding: 0 10px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content .info {
    gap: 10px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content .info .number {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .header-warehouse .content .info .title-warehouse {
    font-size: 16px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse {
    padding: 10px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content {
    gap: 10px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info {
    width: 100%;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .block-address .content-icon {
    width: 16px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .block-address .content-icon i {
    font-size: 16px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .block-address .content-text {
    display: block;
    width: calc(100% - 16px);
    font-size: 12px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content {
    flex-direction: row;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .content-rating {
    align-items: center;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .content-rating .stars {
    font-size: 10px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .content-rating .rating {
    font-size: 12px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .google-rate-content .link-number-user {
    font-size: 12px;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-info .link-warehouse-mobile {
    display: block;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .content .block-img {
    display: none;
  }
  .map-multi-center .container .block-map-multi-center .content-listing-warehouse .item-warehouse .wrapper-warehouse .image-location-center {
    display: none;
  }
  .map-multi-center .container .block-map-multi-center .content-map {
    width: calc(100% - 280px);
  }
  .map-multi-center .container .block-map-multi-center .content-map .block-map {
    height: 390px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .map-multi-center {
    padding: calc(60px / 2) 0;
  }
  .map-multi-center .container .block-text .title h2 {
    font-size: 24px;
    line-height: 26px;
  }
  .map-multi-center .container .block-text h3 {
    font-size: 22px;
    line-height: 22px;
  }
  .map-multi-center .container .block-text .infos-paragraph p {
    font-size: 15px;
    line-height: 21px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .map-multi-center .container .block-text .title h2 {
    font-size: 24px;
    line-height: 24px;
  }
  .map-multi-center .container .block-text h3 {
    font-size: 22px;
    line-height: 22px;
  }
  .map-multi-center .container .block-text .infos-paragraph p {
    font-size: 16px;
    line-height: 24px;
  }
}
.block-special-date {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 10px 0;
  width: 100%;
}
.block-special-date .special-date {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 0.3125rem;
  background-color: #FFE8CF;
}
.block-special-date .special-date .block-pictogram {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background-color: #ffffff;
  border-radius: 0.3125rem;
}
.block-special-date .special-date .block-pictogram i {
  font-size: 24px;
  line-height: 24px;
  color: #FF8C0F;
}
.block-special-date .special-date .block-message {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  width: calc(100% - 44px);
}
.block-special-date .special-date .block-message .title {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #1e3157 !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin: 0 !important;
}
.block-special-date .special-date .block-message .list {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}
.block-special-date .special-date .block-message .list li {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 12px !important;
  color: #1e3157 !important;
  line-height: 16px !important;
  text-rendering: optimizeLegibility;
  margin: 0 !important;
}
.block-special-date .special-date .block-message .list li strong {
  font-weight: 700;
}

.listing-warehouse .item-warehouse {
  display: block;
  padding: 10px;
  background: #ffffff;
  border: 1px #abb5d7 solid;
  border-radius: 0.3125rem;
  transition: all 0.2s ease 0s;
}
.listing-warehouse .item-warehouse .content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.listing-warehouse .item-warehouse .content .block-info {
  display: block;
  width: calc(100% - 80px);
}
.listing-warehouse .item-warehouse .content .block-info .block-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
.listing-warehouse .item-warehouse .content .block-info .block-title .number-warehouse {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  background: #e6007e;
  border-radius: 50%;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-right: 10px;
  margin-bottom: 0;
}
.listing-warehouse .item-warehouse .content .block-info .block-title .title-warehouse {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
.listing-warehouse .item-warehouse .content .block-info .address-warehouse {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #6579b7;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
.listing-warehouse .item-warehouse .content .block-info .phone-warehouse {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1e3157;
  line-height: 20px;
  text-rendering: optimizeLegibility;
}
.listing-warehouse .item-warehouse .content .block-info .mail-warehouse {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1e3157;
  line-height: 14px;
  text-rendering: optimizeLegibility;
}
.listing-warehouse .item-warehouse .content .block-info .link-warehouse {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  text-decoration: underline;
  margin-top: 10px;
  margin-bottom: 20px;
}
.listing-warehouse .item-warehouse .content .block-info .link-warehouse:hover {
  text-decoration: none;
}
.listing-warehouse .item-warehouse .content .block-img {
  display: block;
  width: 80px;
}
.listing-warehouse .item-warehouse .content .block-img img {
  border-radius: 5px;
}
.listing-warehouse .item-warehouse .content .block-img .link-warehouse {
  display: block;
  margin: 0;
  padding: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  text-decoration: underline;
  margin: 10px 0;
  text-align: right;
}
.listing-warehouse .item-warehouse .content .block-img .link-warehouse:hover {
  text-decoration: none;
}
.listing-warehouse .item-warehouse .content.large-image .block-info {
  width: calc(100% - 120px);
}
.listing-warehouse .item-warehouse .content.large-image .block-img {
  width: 120px;
}
.listing-warehouse .item-warehouse .block-indice {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 10px 0;
}
.listing-warehouse .item-warehouse .block-indice .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px;
  background-color: #ffffff;
  border: 1px solid #780145;
  border-radius: 3px;
  margin-right: 5px;
}
.listing-warehouse .item-warehouse .block-indice .item .picto {
  display: block;
  width: 16px;
  height: auto;
  margin-right: 5px;
}
.listing-warehouse .item-warehouse .block-indice .item .label {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #780145;
  line-height: 12px;
  text-rendering: optimizeLegibility;
  margin: 0;
}
.listing-warehouse .item-warehouse:hover, .listing-warehouse .item-warehouse.active-over {
  background-color: #cdd4e8;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .listing-warehouse {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(1, 1fr) !important;
    margin-bottom: 20px;
  }
  .listing-warehouse .item-warehouse {
    width: 100%;
  }
  .listing-warehouse .item-warehouse .content .block-info .address-warehouse {
    font-size: 14px;
    line-height: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
  .listing-warehouse {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .listing-warehouse {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .listing-warehouse .item-warehouse .content {
    justify-content: flex-start;
  }
  .listing-warehouse .item-warehouse .content .block-info {
    width: 100%;
  }
  .listing-warehouse .item-warehouse .content .block-img {
    display: none;
  }
  .listing-warehouse .item-warehouse .content.large-image .block-info {
    width: 100%;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .listing-warehouse {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.listing-gallery {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr) !important;
}
.listing-gallery .item-gallery {
  display: block;
  position: relative;
  height: 100%;
}
.listing-gallery .item-gallery .content-legend {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  padding: 10px;
  background: rgba(120, 1, 69, 0.6);
  bottom: 0;
  border-radius: 0 0 0.3125rem 0.3125rem;
}
.listing-gallery .item-gallery .content-legend .title {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 18px !important;
  color: #ffe000 !important;
  line-height: 18px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 5px !important;
}
.listing-gallery .item-gallery .content-legend .legend {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  color: #ffffff !important;
  line-height: 15px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 0 !important;
}
.listing-gallery .item-gallery .image-gallery {
  width: auto;
  height: 100%;
  border-radius: 0.3125rem;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .listing-gallery {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .listing-gallery .item-gallery .content-legend {
    padding: 5px;
  }
  .listing-gallery .item-gallery .content-legend .title {
    font-size: 14px;
    line-height: 16px;
  }
  .listing-gallery .item-gallery .content-legend .legend {
    font-size: 12px;
    line-height: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
  .listing-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .listing-gallery .item-gallery .content-legend {
    padding: 5px;
  }
  .listing-gallery .item-gallery .content-legend .title {
    font-size: 16px !important;
    line-height: 16px !important;
  }
  .listing-gallery .item-gallery .content-legend .legend {
    font-size: 12px !important;
    line-height: 14px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .listing-gallery {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .listing-gallery .item-gallery .content-legend {
    padding: 5px;
  }
  .listing-gallery .item-gallery .content-legend .title {
    font-size: 16px !important;
    line-height: 16px !important;
  }
  .listing-gallery .item-gallery .content-legend .legend {
    font-size: 12px !important;
    line-height: 14px !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .listing-gallery .item-gallery .content-legend {
    padding: 5px;
  }
  .listing-gallery .item-gallery .content-legend .title {
    font-size: 16px !important;
    line-height: 16px !important;
  }
  .listing-gallery .item-gallery .content-legend .legend {
    font-size: 12px !important;
    line-height: 14px !important;
  }
}
.content-listing-faq {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  padding: 10px 20px;
  background-color: #f0f2f8;
  border: 1px solid #abb5d7;
  border-radius: 0.3125rem;
  margin-bottom: 20px;
}
.content-listing-faq .header-faq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  width: 100%;
}
.content-listing-faq .header-faq .infos-faq {
  display: block;
}
.content-listing-faq .header-faq .infos-faq .title-faq {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  color: #1e3157 !important;
  line-height: 24px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
.content-listing-faq .header-faq .infos-faq .description-faq {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: #42548d !important;
  line-height: 20px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
.content-listing-faq .header-faq .infos-faq .description-faq strong {
  font-weight: 700;
}
.content-listing-faq .header-faq .link-faq {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #42548d !important;
  line-height: 18px !important;
  text-rendering: optimizeLegibility;
  text-decoration: underline;
}
.content-listing-faq .header-faq .link-faq:hover {
  text-decoration: none;
}
.content-listing-faq .body-faq {
  display: block;
  column-count: 2;
  column-gap: 20px;
  width: 100%;
  margin-bottom: 10px;
}
.content-listing-faq .body-faq .item-faq {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  background-color: #ffffff;
  border: 1px solid #cdd4e8;
  border-radius: 0.3125rem;
  padding: 20px;
  break-inside: avoid;
  margin-bottom: 20px;
}
.content-listing-faq .body-faq .item-faq .list-badge {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.content-listing-faq .body-faq .item-faq .list-badge .badge {
  border-radius: 9px;
}
.content-listing-faq .body-faq .item-faq .item-question {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #42548d;
  line-height: 20px;
  text-rendering: optimizeLegibility;
}
.content-listing-faq .body-faq .item-faq .item-answer p {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #4a5f9f;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  margin-top: 10px;
}
.content-listing-faq .body-faq .item-faq .item-answer a:not(.btn):not(.other-link):not(.link-devis):not(.link-breadcrumb):not(.block-contact):not(.block-call-us):not(.link):not(.custom-btn):not(.btn-action) {
  transition: all 0.2s ease 0s;
  text-decoration: underline;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #4a5f9f;
}
.content-listing-faq .body-faq .item-faq .item-answer a:not(.btn):not(.other-link):not(.link-devis):not(.link-breadcrumb):not(.block-contact):not(.block-call-us):not(.link):not(.custom-btn):not(.btn-action):hover {
  text-decoration: none;
}
.content-listing-faq .body-faq .item-faq .item-answer ul,
.content-listing-faq .body-faq .item-faq .item-answer ol {
  padding-left: 25px;
  margin-top: 10px;
}
.content-listing-faq .body-faq .item-faq .item-answer ul li,
.content-listing-faq .body-faq .item-faq .item-answer ol li {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #4a5f9f;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.content-listing-faq .body-faq .item-faq .item-answer ul li strong,
.content-listing-faq .body-faq .item-faq .item-answer ol li strong {
  font-weight: 700;
}
.content-listing-faq .footer-faq {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.content-listing-faq .footer-faq .link-storage {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #1e3157 !important;
  line-height: 18px !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
  text-decoration: underline;
}
.content-listing-faq .footer-faq .link-storage:hover {
  text-transform: none;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .content-listing-faq .header-faq {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }
  .content-listing-faq .header-faq .infos-faq {
    display: block;
  }
  .content-listing-faq .header-faq .infos-faq .title-faq {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px;
  }
  .content-listing-faq .header-faq .infos-faq .description-faq {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
  }
  .content-listing-faq .body-faq {
    column-count: 1;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .content-listing-faq .header-faq .infos-faq {
    display: block;
    width: 80%;
  }
  .content-listing-faq .header-faq .infos-faq .title-faq {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 5px;
  }
  .content-listing-faq .header-faq .infos-faq .description-faq {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
  }
  .content-listing-faq .body-faq {
    column-count: 1;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .content-listing-faq .header-faq .infos-faq {
    display: block;
    width: 80%;
  }
}
section.content-page.shop-page .content-columns .column-text {
  width: calc(100% - 320px);
  padding-right: 60px;
}
section.content-page.shop-page .content-columns .column-text .msg-woocommerce {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 15px;
  border-radius: 0.3125rem;
  background: #f0f2f8;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 20px;
}
section.content-page.shop-page .content-columns .column-text .msg-woocommerce .button {
  display: none;
}
section.content-page.shop-page .content-columns .column-text .msg-woocommerce.success {
  background: #aef4e6;
  color: #1abc9c;
}
section.content-page.shop-page .content-columns .column-text .msg-woocommerce.error {
  background: #f8c9c4;
  color: #e74c3c;
}
section.content-page.shop-page .content-columns .column-text .products-items {
  display: grid;
  gap: 15px;
}
section.content-page.shop-page .content-columns .column-text .products-items.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
section.content-page.shop-page .content-columns .column-text .products-items .product {
  display: block;
  padding: 10px;
  background-color: #ffffff;
  border: 1px solid #cdd4e8;
  border-radius: 0.3125rem;
}
section.content-page.shop-page .content-columns .column-text .products-items .product .link-product {
  text-decoration: none;
  transition: all 0.2s ease 0s;
}
section.content-page.shop-page .content-columns .column-text .products-items .product .link-product .title-product {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  color: #1e3157 !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin: 10px 0 5px 0;
}
section.content-page.shop-page .content-columns .column-text .products-items .product .link-product .price {
  display: block;
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  color: #6579b7 !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
section.content-page.shop-page .content-columns .column-text .products-items .product .link-product .attachment-woocommerce_thumbnail {
  transition: all 0.2s ease 0s;
}
section.content-page.shop-page .content-columns .column-text .products-items .product .link-product:hover {
  text-decoration: none;
}
section.content-page.shop-page .content-columns .column-text .products-items .product .link-product:hover .attachment-woocommerce_thumbnail {
  opacity: 0.6;
}
section.content-page.shop-page .content-columns .column-text .product-single .content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
section.content-page.shop-page .content-columns .column-text .product-single .content .content-image {
  display: block;
  width: 320px;
}
section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos {
  display: block;
  width: calc(100% - 320px);
  padding-left: 30px;
}
section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .product_title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .price {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .description {
  margin-bottom: 10px;
}
section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 3px 5px 4px 5px;
  border-radius: 0.3125rem;
  background-color: #ffffff;
  border: 1px solid #6579b7;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #6579b7;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .badge a {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #6579b7;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .badge.out-of-stock {
  border-color: #e74c3c;
  color: #e74c3c;
}
section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .product_meta {
  margin-bottom: 10px;
}
section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .cart {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .cart .quantity {
  margin-right: 10px;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .head-cart {
  background-color: #1e3157;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  border: none;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .head-cart:first-of-type {
  border-radius: 0.3125rem 0 0 0;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .head-cart:last-of-type {
  border-radius: 0 0.3125rem 0 0;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item {
  background-color: #ffffff;
  border: 1px solid #cdd4e8;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-remove {
  vertical-align: middle;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-remove .remove-product {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #8897c7;
  margin-right: 10px;
  transition: all 0.2s ease 0s;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-remove .remove-product:hover {
  background-color: #e74c3c;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-remove .remove-product i {
  color: #ffffff;
  font-size: 12px;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-thumbnail {
  vertical-align: middle;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-thumbnail .thumbnail {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid #cdd4e8;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-name {
  vertical-align: middle;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-name .name-product {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-price {
  vertical-align: middle;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-price .amount {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #4a5f9f;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-quantity {
  vertical-align: middle;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-subtotal {
  vertical-align: middle;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-subtotal .amount {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #4a5f9f;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .actions {
  background-color: #f0f2f8;
  border: 1px solid #cdd4e8;
  border-radius: 0 0 0.3125rem 0.3125rem;
}
section.content-page.shop-page .content-columns .column-text .grid-category-shop {
  display: grid;
  gap: 15px;
}
section.content-page.shop-page .content-columns .column-text .grid-category-shop.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
section.content-page.shop-page .content-columns .column-text .grid-category-shop .item-category {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  width: 100%;
  height: 358px;
  border-radius: 0.3125rem;
  position: relative;
}
section.content-page.shop-page .content-columns .column-text .grid-category-shop .item-category .link-category {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease 0s;
  border-radius: 0.3125rem;
  padding: 20px;
}
section.content-page.shop-page .content-columns .column-text .grid-category-shop .item-category .link-category:hover {
  background-color: rgba(0, 0, 0, 0.6);
  text-decoration: none !important;
}
section.content-page.shop-page .content-columns .column-text .grid-category-shop .item-category .link-category:hover .label, section.content-page.shop-page .content-columns .column-text .grid-category-shop .item-category .link-category:hover .title {
  text-decoration: none !important;
}
section.content-page.shop-page .content-columns .column-text .grid-category-shop .item-category .link-category .label {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #ffffff !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.content-page.shop-page .content-columns .column-text .grid-category-shop .item-category .link-category .title {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 700 !important;
  font-size: 22px !important;
  color: #ffffff !important;
  line-height: 1 !important;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.content-page.shop-page .content-columns .column-action {
  position: relative;
  width: 320px;
}
section.content-page.shop-page .content-columns .column-action .menu-category ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: 5px;
}
section.content-page.shop-page .content-columns .column-action .menu-category ul li {
  margin-bottom: 10px;
  padding-left: 5px;
  line-height: 14px;
}
section.content-page.shop-page .content-columns .column-action .menu-category ul li:last-child {
  margin-bottom: 0;
}
section.content-page.shop-page .content-columns .column-action .menu-category ul li::marker {
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  content: "\f105";
  color: #1e3157;
  font-size: 12px;
}
section.content-page.shop-page .content-columns .column-action .menu-category ul li a {
  margin: 0;
  padding: 0;
  transition: all 0.2s ease 0s;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1e3157;
  line-height: 16px;
  text-rendering: optimizeLegibility;
}
section.content-page.shop-page .content-columns .column-action .menu-category ul li a:hover {
  text-decoration: underline;
}
section.content-page.shop-page .content-columns .column-action .card-cart .product-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0px;
  border-bottom: 1px solid #cdd4e8;
}
section.content-page.shop-page .content-columns .column-action .card-cart .product-cart:first-of-type {
  padding-top: 0;
}
section.content-page.shop-page .content-columns .column-action .card-cart .product-cart .content-detail {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.content-page.shop-page .content-columns .column-action .card-cart .product-cart .content-detail .remove-product {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #8897c7;
  margin-right: 10px;
  transition: all 0.2s ease 0s;
}
section.content-page.shop-page .content-columns .column-action .card-cart .product-cart .content-detail .remove-product:hover {
  background-color: #e74c3c;
}
section.content-page.shop-page .content-columns .column-action .card-cart .product-cart .content-detail .remove-product i {
  color: #ffffff;
  font-size: 12px;
}
section.content-page.shop-page .content-columns .column-action .card-cart .product-cart .content-detail .infos-product {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
section.content-page.shop-page .content-columns .column-action .card-cart .product-cart .content-detail .infos-product .name-product {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 3px;
  text-transform: lowercase;
}
section.content-page.shop-page .content-columns .column-action .card-cart .product-cart .content-detail .infos-product .quantity {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12x;
  color: #6579b7;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.content-page.shop-page .content-columns .column-action .card-cart .product-cart .content-detail .infos-product .quantity strong {
  font-weight: 700;
}
section.content-page.shop-page .content-columns .column-action .card-cart .product-cart .thumbnail {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  border: 1px solid #cdd4e8;
}
section.content-page.shop-page .content-columns .column-action .card-cart .content-total {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 10px;
}
section.content-page.shop-page .content-columns .column-action .card-cart .content-total .cart_totals {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
section.content-page.shop-page .content-columns .column-action .card-cart .content-total .cart_totals .amount {
  font-weight: 700;
}
section.content-page.shop-page .content-columns .column-action .content-action-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
section.content-page.shop-page .content-columns .column-action .card-totals .card-body {
  padding: 0;
}
section.content-page.shop-page .content-columns .column-action .card-totals .card-body .shop_table {
  border: none;
  margin: 0;
}
section.content-page.shop-page .content-columns .column-action .card-totals .card-body .shop_table tbody tr th {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #4a5f9f;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
section.content-page.shop-page .content-columns .column-action .card-totals .card-body .shop_table tbody tr td {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-align: right;
}
section.content-page.shop-page .content-columns .column-action .card-totals .card-body .shop_table tbody tr:last-of-type th {
  font-size: 18px;
}
section.content-page.shop-page .content-columns .column-action .card-totals .card-body .shop_table tbody tr:last-of-type td {
  font-size: 18px;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.content-page.shop-page .content-breadcrumb {
    display: none;
  }
  section.content-page.shop-page .content-columns .column-text {
    width: 100%;
    margin-bottom: 20px;
    padding-right: 0;
  }
  section.content-page.shop-page .content-columns .column-text .content-breadcrumb {
    display: none;
  }
  section.content-page.shop-page .content-columns .column-text .products-items {
    gap: 10px;
  }
  section.content-page.shop-page .content-columns .column-text .products-items.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  section.content-page.shop-page .content-columns .column-text .products-items .product {
    padding: 5px;
  }
  section.content-page.shop-page .content-columns .column-text .products-items .product .link-product .title-product {
    font-size: 14px;
  }
  section.content-page.shop-page .content-columns .column-text .products-items .product .link-product .price {
    font-size: 12px;
  }
  section.content-page.shop-page .content-columns .column-text .products-items .product .btn {
    font-size: 12px;
    padding: 3px;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content {
    flex-direction: column;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-image {
    width: 100%;
    margin-bottom: 10px;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos {
    width: 100%;
    padding-left: 0;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .product_title {
    font-size: 22px;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .price {
    font-size: 16px;
  }
  section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .head-cart {
    font-size: 12px;
    padding: 10px 0;
  }
  section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .head-cart.product-thumbnail {
    display: none;
  }
  section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-remove {
    padding: 5px;
  }
  section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-remove .remove-product {
    width: 16px;
    height: 16px;
    margin-right: 0;
  }
  section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-remove .remove-product i {
    font-size: 10px;
  }
  section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-thumbnail {
    display: none;
  }
  section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-name {
    padding: 5px;
  }
  section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-name .name-product {
    font-size: 12px;
  }
  section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-price {
    padding: 5px;
  }
  section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-price .amount {
    font-size: 12px;
  }
  section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-quantity {
    padding: 0 5px;
  }
  section.content-page.shop-page .content-columns .column-text .woocommerce-cart-form .cart_item .product-subtotal {
    padding: 0 5px;
  }
  section.content-page.shop-page .content-columns .column-text .grid-category-shop.grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }
  section.content-page.shop-page .content-columns .column-text .grid-category-shop .item-category {
    height: 120px;
  }
  section.content-page.shop-page .content-columns .column-action {
    display: block;
    position: relative;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.content-page.shop-page .content-columns {
    flex-direction: column;
  }
  section.content-page.shop-page .content-columns .column-text {
    width: 100%;
    padding-right: 0;
  }
  section.content-page.shop-page .content-columns .column-text .products-items {
    display: grid;
    gap: 15px;
  }
  section.content-page.shop-page .content-columns .column-text .products-items.grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  section.content-page.shop-page .content-columns .column-text .products-items .product .link-product .title-product {
    font-size: 12px !important;
  }
  section.content-page.shop-page .content-columns .column-text .products-items .product .btn {
    font-size: 14px;
    padding: 3px;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content {
    flex-direction: column;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-image {
    display: block;
    width: 120px;
    margin-bottom: 10px;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos {
    width: 100%;
    padding-left: 0;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .product_title {
    font-size: 30px;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .price {
    font-size: 18px;
  }
  section.content-page.shop-page .content-columns .column-text .grid-category-shop {
    display: grid;
    gap: 15px;
  }
  section.content-page.shop-page .content-columns .column-text .grid-category-shop.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  section.content-page.shop-page .content-columns .column-text .grid-category-shop .item-category {
    height: 180px;
  }
  section.content-page.shop-page .content-columns .column-action {
    position: relative;
    width: 100%;
    display: block !important;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.content-page.shop-page .content-columns .column-text {
    width: calc(100% - 200px);
    padding-right: 20px;
  }
  section.content-page.shop-page .content-columns .column-text .products-items {
    display: grid;
    gap: 15px;
  }
  section.content-page.shop-page .content-columns .column-text .products-items.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  section.content-page.shop-page .content-columns .column-text .products-items .product .link-product .title-product {
    font-size: 14px !important;
  }
  section.content-page.shop-page .content-columns .column-text .products-items .product .btn {
    font-size: 14px;
    padding: 3px;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content {
    flex-direction: column;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-image {
    display: block;
    width: 120px;
    margin-bottom: 10px;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos {
    width: 100%;
    padding-left: 0;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .product_title {
    font-size: 30px;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .price {
    font-size: 18px;
  }
  section.content-page.shop-page .content-columns .column-text .grid-category-shop {
    display: grid;
    gap: 15px;
  }
  section.content-page.shop-page .content-columns .column-text .grid-category-shop.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  section.content-page.shop-page .content-columns .column-text .grid-category-shop .item-category {
    height: 180px;
  }
  section.content-page.shop-page .content-columns .column-action {
    position: relative;
    width: 200px;
  }
  section.content-page.shop-page .content-columns .column-action .menu-category ul {
    margin-left: 0;
  }
  section.content-page.shop-page .content-columns .column-action .menu-category ul li {
    margin-bottom: 10px;
    padding-left: 5px;
    line-height: 14px;
  }
  section.content-page.shop-page .content-columns .column-action .menu-category ul li::marker {
    font-size: 12px;
  }
  section.content-page.shop-page .content-columns .column-action .menu-category ul li a {
    font-size: 12px;
    line-height: 14px;
  }
  section.content-page.shop-page .content-columns .column-action .card-cart .card-body {
    padding: 10px 5px;
  }
  section.content-page.shop-page .content-columns .column-action .card-cart .product-cart {
    padding: 10px 0px;
  }
  section.content-page.shop-page .content-columns .column-action .card-cart .product-cart .content-detail .remove-product {
    width: 14px;
    height: 14px;
    margin-right: 5px;
  }
  section.content-page.shop-page .content-columns .column-action .card-cart .product-cart .content-detail .remove-product i {
    font-size: 10px;
  }
  section.content-page.shop-page .content-columns .column-action .card-cart .product-cart .content-detail .infos-product .name-product {
    font-size: 12px;
  }
  section.content-page.shop-page .content-columns .column-action .card-cart .product-cart .content-detail .infos-product .quantity {
    font-size: 11px;
  }
  section.content-page.shop-page .content-columns .column-action .card-cart .product-cart .thumbnail {
    width: 30px;
    height: 30px;
  }
  section.content-page.shop-page .content-columns .column-action .card-cart .content-total {
    padding-top: 10px;
  }
  section.content-page.shop-page .content-columns .column-action .card-cart .content-total .cart_totals {
    font-size: 14px;
  }
  section.content-page.shop-page .content-columns .column-action .content-action-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: column;
  }
  section.content-page.shop-page .content-columns .column-action .content-action-cart .btn {
    display: block;
    width: 100%;
    font-size: 14px;
    padding: 3px;
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.content-page.shop-page .content-columns .column-text .products-items {
    display: grid;
    gap: 15px;
  }
  section.content-page.shop-page .content-columns .column-text .products-items.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-image {
    width: 120px;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos {
    width: calc(100% - 120px);
    padding-left: 20px;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .product_title {
    font-size: 30px !important;
    margin-bottom: 10px;
  }
  section.content-page.shop-page .content-columns .column-text .product-single .content .content-infos .price {
    font-size: 18px;
    margin-bottom: 10px;
  }
  section.content-page.shop-page .content-columns .column-text .grid-category-shop {
    display: grid;
    gap: 15px;
  }
  section.content-page.shop-page .content-columns .column-text .grid-category-shop.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  section.content-page.shop-page .content-columns .column-text .grid-category-shop .item-category {
    height: 180px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  section.content-page.shop-page .content-columns .column-text .products-items {
    display: grid;
    gap: 15px;
  }
  section.content-page.shop-page .content-columns .column-text .products-items.grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  section.content-page.shop-page .content-columns .column-text .grid-category-shop {
    display: grid;
    gap: 15px;
  }
  section.content-page.shop-page .content-columns .column-text .grid-category-shop.grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  section.content-page.shop-page .content-columns .column-text .grid-category-shop .item-category {
    height: 180px;
  }
}
section.checkout-page {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  background-color: #ffffff;
}
section.checkout-page .heading-title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}
section.checkout-page .block-title {
  margin-bottom: calc(80px / 2);
}
section.checkout-page .block-title h1 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #1e3157;
  line-height: 46px;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.checkout-page .block-title h1 strong {
  font-weight: 700;
}
section.checkout-page .msg-woocommerce {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 15px;
  border-radius: 0.3125rem;
  background: #f0f2f8;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 20px;
}
section.checkout-page .msg-woocommerce .showlogin {
  margin-left: 10px;
}
section.checkout-page .msg-woocommerce .button {
  display: none;
}
section.checkout-page .msg-woocommerce.success {
  background: #aef4e6;
  color: #1abc9c;
}
section.checkout-page .msg-woocommerce.error {
  background: #f8c9c4;
  color: #e74c3c;
}
section.checkout-page .woocommerce-form-login {
  background-color: #f0f2f8;
  border: 1px solid #cdd4e8;
  padding: 15px;
  border-radius: 0.3125rem;
}
section.checkout-page .woocommerce-form-login .password-input {
  width: 100%;
}
section.checkout-page .content-columns .column-text {
  width: 100%;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-detail-checkout {
  display: block;
  width: 60%;
  background-color: #f0f2f8;
  border: 1px solid #cdd4e8;
  padding: 15px;
  border-radius: 0.3125rem;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-detail-checkout .woocommerce-billing-fields {
  margin-bottom: 30px;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-detail-checkout .form-row {
  margin: 0 0 15px 0 !important;
  padding: 0 !important;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-detail-checkout .form-row label {
  line-height: 1;
  font-size: 14px !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-detail-checkout .form-row .woocommerce-input-wrapper {
  width: 100%;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-detail-checkout .form-row .woocommerce-input-wrapper .form-control {
  font-size: 14px !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout {
  display: block;
  width: calc(40% - 30px);
  margin-left: 30px;
  border-radius: 0.3125rem;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-checkout .card-body {
  padding: 0;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-checkout .card-body .shop_table {
  border: none;
  margin: 0;
  border-collapse: collapse;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-checkout .card-body .shop_table td {
  padding: 10px 5px;
  border-bottom: 1px solid #cdd4e8;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-checkout .card-body .shop_table th {
  padding: 10px 5px;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-checkout .card-body .shop_table .cart_item .product-name {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #4a5f9f;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-checkout .card-body .shop_table .cart_item .product-name .product-quantity {
  font-weight: 700;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-checkout .card-body .shop_table .cart_item .product-total {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-align: right;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-checkout .card-body .shop_table .cart-subtotal th {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  border-bottom: 1px solid #cdd4e8;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-checkout .card-body .shop_table .cart-subtotal td {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  border-bottom: 1px solid #cdd4e8;
  text-align: right;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-checkout .card-body .shop_table .order-total th {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  border-bottom: none;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-checkout .card-body .shop_table .order-total td {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-align: right;
  border-bottom: none;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body {
  background: #ffffff !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .content-methods {
  padding: 0 !important;
  border-bottom: none !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .content-methods li {
  margin-bottom: 10px !important;
  border: 1px solid #cdd4e8;
  background-color: #f0f2f8 !important;
  border-radius: 0.3125rem;
  padding: 10px;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .content-methods li:last-of-type {
  margin-bottom: 0 !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .content-methods li label {
  margin-bottom: 0 !important;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .content-methods li .payment_box {
  border-radius: 0 0 5px 5px;
  background-color: #f0f2f8 !important;
  padding: 0 !important;
  margin: 10px 0 0 0 !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .content-methods li .payment_box:before {
  display: none !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .content-methods li .payment_box p {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #4a5f9f;
  line-height: 20px;
  text-rendering: optimizeLegibility;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .content-methods li > input:checked + label {
  margin-bottom: 0 !important;
  border-radius: 5px 5px 0 0;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .place-order {
  margin-top: 20px;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .place-order.form-row {
  padding: 0 !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .place-order p {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #4a5f9f;
  line-height: 16px;
  text-rendering: optimizeLegibility;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .place-order .form-group {
  margin-bottom: 0 !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .place-order .form-group .woocommerce-input-wrapper label {
  line-height: 1 !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .place-order .form-group.private-policy p {
  margin-bottom: 0 !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .place-order .choice-center {
  width: 100%;
  margin-bottom: 10px !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .place-order .choice-center .form-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .place-order .choice-center .form-row label {
  font-size: 14px !important;
  line-height: 1 !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .place-order .choice-center .form-row .woocommerce-input-wrapper {
  width: 100% !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .place-order .choice-center .form-row .woocommerce-input-wrapper .form-control {
  width: 100% !important;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .place-order .woocommerce-input-wrapper .input-checkbox {
  width: auto;
  height: auto;
}
section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .place-order #place_order {
  margin: 20px 0;
}

@media only screen and (min-width: 0) and (max-width: 767px) {
  section.checkout-page .heading-title {
    font-size: 10px;
    margin-bottom: 14px;
  }
  section.checkout-page .block-title {
    margin-bottom: calc(30px / 2);
  }
  section.checkout-page .block-title h1 {
    font-size: 26px;
    line-height: 30px;
  }
  section.checkout-page .content-breadcrumb {
    display: none;
  }
  section.checkout-page .content-columns .column-text {
    width: 100%;
  }
  section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form {
    flex-direction: column;
  }
  section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-detail-checkout {
    margin-bottom: 30px;
    width: 100%;
  }
  section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout {
    width: 100%;
    margin-left: 0;
  }
  section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .content-methods li label {
    width: 88%;
  }
  section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout .card-details-payment .card-body .content-methods li label img {
    display: block;
    margin-top: 5px !important;
    margin-left: 0 !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.checkout-page .block-title {
    margin-bottom: calc(50px / 2);
  }
  section.checkout-page .block-title h1 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 0;
  }
  section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form {
    flex-direction: column;
  }
  section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-detail-checkout {
    width: 100%;
    margin-bottom: 30px;
  }
  section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.checkout-page .block-title {
    margin-bottom: calc(50px / 2);
  }
  section.checkout-page .block-title h1 {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 0;
  }
  section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form {
    flex-direction: column;
  }
  section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-detail-checkout {
    width: 100%;
    margin-bottom: 30px;
  }
  section.checkout-page .content-columns .column-text .checkout .content-all-checkout-form .content-form-checkout {
    width: 100%;
    margin-left: 0;
  }
}
section.block-hero-error {
  display: block;
  width: 100%;
  background-color: #e7edfa;
  min-height: 660px;
}
section.block-hero-error .content-presentation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}
section.block-hero-error .content-presentation .block-text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  width: 50%;
}
section.block-hero-error .content-presentation .block-text .heading-title {
  margin-bottom: 10px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 130px;
  color: #e6007e;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
section.block-hero-error .content-presentation .block-text .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: #1e3157;
  line-height: 34px;
  text-rendering: optimizeLegibility;
  margin-bottom: 20px;
}
section.block-hero-error .content-presentation .block-text .info-error {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #18377e;
  line-height: 24px;
  text-rendering: optimizeLegibility;
  margin-bottom: 20px;
}
section.block-hero-error .content-presentation .block-text .info-error strong {
  font-weight: 700;
}
section.block-hero-error .content-presentation .block-text .explication-error {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #18377e;
  line-height: 22px;
  text-rendering: optimizeLegibility;
  margin-bottom: 10px;
}
section.block-hero-error .content-presentation .block-text .explication-error strong {
  font-weight: 700;
}
section.block-hero-error .content-presentation .block-text .explication-error .link {
  color: #18377e;
  text-decoration: underline;
}
section.block-hero-error .content-presentation .block-text .explication-error .link:hover {
  text-decoration: none;
}
section.block-hero-error .content-presentation .block-text .explication-error:last-of-type {
  margin-top: 10px;
}
section.block-hero-error .content-presentation .block-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
}
section.block-hero-error .content-presentation .block-image .illustration {
  width: 520px;
  height: auto;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.block-hero-error {
    min-height: inherit;
  }
  section.block-hero-error .content-presentation {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
  }
  section.block-hero-error .content-presentation .block-text {
    display: block;
    width: 100%;
    order: 2;
  }
  section.block-hero-error .content-presentation .block-text .heading-title {
    font-size: 60px;
    text-align: center;
  }
  section.block-hero-error .content-presentation .block-text .title {
    font-size: 26px;
    line-height: 30px;
    text-align: center;
  }
  section.block-hero-error .content-presentation .block-text .info-error {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
    text-align: center;
  }
  section.block-hero-error .content-presentation .block-text .explication-error {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 5px;
    text-align: center;
  }
  section.block-hero-error .content-presentation .block-image {
    display: flex;
    justify-content: center;
    width: 100%;
    order: 1;
    margin-bottom: 20px;
  }
  section.block-hero-error .content-presentation .block-image .illustration {
    width: 80%;
    height: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 991px) {
  section.block-hero-error {
    min-height: 520px;
  }
  section.block-hero-error .content-presentation {
    padding: 30px 0;
  }
  section.block-hero-error .content-presentation .block-text {
    width: 60%;
  }
  section.block-hero-error .content-presentation .block-text .heading-title {
    font-size: 80px;
  }
  section.block-hero-error .content-presentation .block-text .title {
    font-size: 26px;
    line-height: 30px;
  }
  section.block-hero-error .content-presentation .block-text .info-error {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 15px;
  }
  section.block-hero-error .content-presentation .block-text .explication-error {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 5px;
  }
  section.block-hero-error .content-presentation .block-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 40%;
  }
  section.block-hero-error .content-presentation .block-image .illustration {
    width: 90%;
    height: auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.block-hero-error {
    min-height: 660px;
  }
  section.block-hero-error .content-presentation {
    padding: 30px 0;
  }
  section.block-hero-error .content-presentation .block-text {
    width: 50%;
  }
  section.block-hero-error .content-presentation .block-text .heading-title {
    font-size: 100px;
  }
  section.block-hero-error .content-presentation .block-text .title {
    font-size: 30px;
  }
  section.block-hero-error .content-presentation .block-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
  }
  section.block-hero-error .content-presentation .block-image .illustration {
    width: 80%;
    height: auto;
  }
}
footer .footer-top {
  background-color: #182746;
  width: 100%;
}
footer .footer-top .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 90px;
  padding-bottom: 60px;
  border-bottom: 1px #1e3157 solid;
}
footer .footer-top .container .content-left,
footer .footer-top .container .content-middle,
footer .footer-top .container .content-right {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
footer .footer-top .container .content-left {
  width: 570px;
}
footer .footer-top .container .content-left .logo-atout-box {
  height: auto;
  width: 340px;
}
footer .footer-top .container .content-left .content {
  display: block;
  width: 470px;
}
footer .footer-top .container .content-left .content .copyright {
  display: block;
  text-align: left;
  margin-top: 10px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #ffffff;
  line-height: 15px;
  text-rendering: optimizeLegibility;
}
footer .footer-top .container .content-left .content .description {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #ffffff;
  line-height: 25px;
  text-rendering: optimizeLegibility;
  text-align: left;
  margin: 30px 0;
}
footer .footer-top .container .content-left .content .logo-national-box {
  display: block;
  margin: 0;
}
footer .footer-top .container .content-left .content .content-capital {
  margin-top: 20px;
}
footer .footer-top .container .content-middle {
  width: calc(100% - 810px);
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: row;
}
footer .footer-top .container .content-middle .block-menu {
  margin-right: 60px;
}
footer .footer-top .container .content-middle .block-menu:last-of-type {
  margin-right: 120px;
}
footer .footer-top .container .content-middle .block-menu .title {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 20px;
}
footer .footer-top .container .content-middle .block-menu .footer-nav {
  display: block;
}
footer .footer-top .container .content-middle .block-menu .footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .footer-top .container .content-middle .block-menu .footer-nav ul li {
  margin-bottom: 10px;
}
footer .footer-top .container .content-middle .block-menu .footer-nav ul li:last-of-type {
  margin-bottom: 0;
}
footer .footer-top .container .content-middle .block-menu .footer-nav ul li a {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #cdd4e8;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-decoration: underline;
  transition: all 0.2s ease 0s;
}
footer .footer-top .container .content-middle .block-menu .footer-nav ul li a:hover {
  text-decoration: none;
}
footer .footer-top .container .content-right {
  width: 240px;
}
footer .footer-top .container .content-right .block-contact {
  margin-right: 0;
  margin-bottom: 10px;
  width: 100%;
}
footer .footer-top .container .content-right .block-contact .picto {
  font-size: 20px;
}
footer .footer-top .container .content-right .block-call-us {
  width: 100%;
  margin-bottom: 10px;
}
footer .footer-top .container .content-right .block-call-us .picto {
  font-size: 20px;
}
footer .footer-top .container .content-right .block-devis {
  background-color: #e6007e;
  border-radius: 5px;
  padding: 20px;
  transition: all 0.2s ease 0s;
  width: 100%;
}
footer .footer-top .container .content-right .block-devis .description {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  line-height: 30px;
  text-rendering: optimizeLegibility;
  margin-bottom: 30px;
}
footer .footer-top .container .content-right .block-devis .description strong {
  font-weight: 700;
}
footer .footer-top .container .content-right .block-devis .description span {
  color: #ffffff;
  font-weight: 700;
}
footer .footer-top .container .content-right .link-devis {
  display: none;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 40px;
  background-color: #e6007e;
  border-radius: 3px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #ffffff;
  line-height: 40px;
  text-rendering: optimizeLegibility;
  transition: all 0.2s ease 0s;
}
footer .footer-top .container .content-right .link-devis span {
  font-weight: 700;
  color: #ffffff;
}
footer .footer-top .container .content-right .link-devis:hover {
  text-decoration: none;
  background-color: #e91a8b;
}
footer .footer-bottom {
  background-color: #182746;
  width: 100%;
}
footer .footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
}
footer .footer-bottom .container .content-left,
footer .footer-bottom .container .content-right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer .footer-bottom .container .content-left .footer-other-link ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-content: center;
  padding: 0;
  flex-wrap: wrap;
  margin-bottom: 0;
  height: 30px;
}
footer .footer-bottom .container .content-left .footer-other-link ul li {
  margin-right: 15px;
}
footer .footer-bottom .container .content-left .footer-other-link ul li:last-of-type {
  margin-right: 0;
}
footer .footer-bottom .container .content-left .footer-other-link ul li a {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #ffffff;
  line-height: 16px;
  text-rendering: optimizeLegibility;
  transition: all 0.2s ease 0s;
}
footer .footer-bottom .container .content-left .footer-other-link ul li a:hover {
  text-decoration: underline;
}
footer .footer-bottom .container .content-right {
  justify-content: flex-end;
}
footer .footer-bottom .container .content-right .btn-social-network {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 3px;
  width: 40px;
  height: 40px;
  background: #1e3157;
  border: 1px #1e3157 solid;
  transition: all 0.2s ease 0s;
  color: #ffffff;
  margin-right: 10px;
}
footer .footer-bottom .container .content-right .btn-social-network i {
  font-size: 20px;
  display: block;
  line-height: 1;
  text-align: center;
}
footer .footer-bottom .container .content-right .btn-social-network:last-of-type {
  margin-right: 0;
}
footer .footer-bottom .container .content-right .btn-social-network:hover {
  background: #172644;
  border-color: #172644;
  text-decoration: none;
}
footer.no-footer {
  display: none;
}

.block-quote-footer {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: -60px;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 60px;
  background-color: #780145;
  z-index: 10;
  box-shadow: 0px -10px 10px rgba(0, 0, 0, 0.12);
  transition: all 0.2s ease 0s;
}
.block-quote-footer .cta {
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  width: 88%;
}
.block-quote-footer.show {
  opacity: 1;
  bottom: 0;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  footer {
    padding-bottom: 60px;
  }
  footer .footer-top .container {
    padding-top: 20px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }
  footer .footer-top .container .content-left {
    width: 100%;
  }
  footer .footer-top .container .content-left .logo-atout-box {
    height: auto;
    width: 280px;
  }
  footer .footer-top .container .content-left .content {
    width: 100%;
  }
  footer .footer-top .container .content-left .content .description {
    font-size: 13px;
    line-height: 20px;
    margin: 10px 0;
  }
  footer .footer-top .container .content-left .content .content-capital {
    margin-top: 10px;
  }
  footer .footer-top .container .content-middle {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  footer .footer-top .container .content-middle .block-menu {
    margin-right: 0;
    width: 100%;
  }
  footer .footer-top .container .content-middle .block-menu:last-of-type {
    margin-right: 0;
  }
  footer .footer-top .container .content-middle .block-menu .title {
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 20px;
  }
  footer .footer-top .container .content-middle .block-menu .footer-nav ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }
  footer .footer-top .container .content-middle .block-menu .footer-nav ul li {
    margin-bottom: 5px;
    margin-right: 10px;
  }
  footer .footer-top .container .content-middle .block-menu .footer-nav ul li:last-of-type {
    margin-right: 0;
  }
  footer .footer-top .container .content-middle .block-menu .footer-nav ul li a {
    font-size: 12px;
  }
  footer .footer-top .container .content-right {
    width: 100%;
    flex-direction: row;
    margin-top: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  footer .footer-top .container .content-right .block-devis {
    display: none;
  }
  footer .footer-top .container .content-right .link-devis {
    display: flex;
    width: 100%;
    height: 50px;
  }
  footer .footer-bottom .container {
    padding-top: 15px;
    padding-bottom: 15px;
    flex-wrap: wrap;
  }
  footer .footer-bottom .container .content-left .footer-other-link ul {
    height: inherit;
  }
  footer .footer-bottom .container .content-left .footer-other-link ul li {
    margin-right: 25px;
    margin-bottom: 10px;
  }
  footer .footer-bottom .container .content-left .footer-other-link ul li a {
    font-size: 14px;
    text-decoration: underline;
  }
  footer .footer-bottom .container .content-right {
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  footer .footer-bottom .container .content-right .btn-social-network {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  footer .footer-bottom .container .content-right .btn-social-network i {
    font-size: 14px;
  }
  .block-quote-footer {
    display: flex;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  footer .footer-top .container {
    padding-top: 30px;
    padding-bottom: 30px;
    flex-wrap: wrap;
  }
  footer .footer-top .container .content-left {
    width: 100%;
  }
  footer .footer-top .container .content-left .logo-atout-box {
    width: 280px;
  }
  footer .footer-top .container .content-left .content {
    width: 100%;
  }
  footer .footer-top .container .content-left .content .description {
    font-size: 13px;
    line-height: 20px;
    margin: 10px 0;
  }
  footer .footer-top .container .content-middle {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  footer .footer-top .container .content-middle .block-menu {
    margin-right: 0;
    width: 100%;
  }
  footer .footer-top .container .content-middle .block-menu:last-of-type {
    margin-right: 0;
  }
  footer .footer-top .container .content-middle .block-menu .title {
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 20px;
  }
  footer .footer-top .container .content-middle .block-menu .footer-nav ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
  }
  footer .footer-top .container .content-middle .block-menu .footer-nav ul li {
    margin-bottom: 5px;
    margin-right: 10px;
  }
  footer .footer-top .container .content-middle .block-menu .footer-nav ul li:last-of-type {
    margin-right: 0;
  }
  footer .footer-top .container .content-middle .block-menu .footer-nav ul li a {
    font-size: 12px;
  }
  footer .footer-top .container .content-right {
    width: 100%;
    flex-direction: row;
    margin-top: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  footer .footer-top .container .content-right .block-contact {
    margin-bottom: 20px;
    width: 48%;
  }
  footer .footer-top .container .content-right .block-call-us {
    width: 48%;
    margin-bottom: 20px;
  }
  footer .footer-top .container .content-right .block-devis {
    display: none;
  }
  footer .footer-top .container .content-right .link-devis {
    display: flex;
    width: 100%;
    height: 50px;
  }
  footer .footer-bottom .container {
    padding-top: 15px;
    padding-bottom: 15px;
    flex-wrap: wrap;
  }
  footer .footer-bottom .container .content-left {
    justify-content: flex-start;
  }
  footer .footer-bottom .container .content-left .footer-other-link ul {
    height: inherit;
    justify-content: flex-start;
  }
  footer .footer-bottom .container .content-left .footer-other-link ul li {
    margin-right: 15px;
  }
  footer .footer-bottom .container .content-left .footer-other-link ul li a {
    font-size: 12px;
    line-height: 14px;
  }
  footer .footer-bottom .container .content-right {
    justify-content: flex-start;
    margin-top: 10px;
  }
  footer .footer-bottom .container .content-right .btn-social-network {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  footer .footer-bottom .container .content-right .btn-social-network i {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  footer .footer-top .container {
    padding-top: 40px;
    padding-bottom: 40px;
    flex-wrap: wrap;
  }
  footer .footer-top .container .content-left {
    width: 280px;
  }
  footer .footer-top .container .content-left .logo-atout-box {
    width: 280px;
  }
  footer .footer-top .container .content-left .content {
    width: 100%;
  }
  footer .footer-top .container .content-left .content .description {
    font-size: 13px;
    line-height: 20px;
    margin: 20px 0;
  }
  footer .footer-top .container .content-middle {
    width: calc(100% - 280px);
  }
  footer .footer-top .container .content-middle .block-menu {
    margin-right: 30px;
  }
  footer .footer-top .container .content-middle .block-menu:last-of-type {
    margin-right: 0;
  }
  footer .footer-top .container .content-middle .block-menu .title {
    font-size: 14px;
    margin-bottom: 15px;
  }
  footer .footer-top .container .content-middle .block-menu .footer-nav ul li {
    margin-bottom: 5px;
  }
  footer .footer-top .container .content-middle .block-menu .footer-nav ul li a {
    font-size: 12px;
  }
  footer .footer-top .container .content-right {
    width: 100%;
    flex-direction: row;
    margin-top: 40px;
    justify-content: space-around;
  }
  footer .footer-top .container .content-right .block-contact {
    margin-bottom: 0;
    width: 25%;
  }
  footer .footer-top .container .content-right .block-contact .picto {
    font-size: 18px;
  }
  footer .footer-top .container .content-right .block-call-us {
    width: 25%;
    margin-bottom: 0;
  }
  footer .footer-top .container .content-right .block-call-us .picto {
    font-size: 18px;
  }
  footer .footer-top .container .content-right .block-devis {
    display: none;
  }
  footer .footer-top .container .content-right .link-devis {
    display: flex;
    width: 40%;
  }
  footer .footer-bottom .container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  footer .footer-bottom .container .content-left {
    justify-content: flex-start;
  }
  footer .footer-bottom .container .content-left .footer-other-link ul {
    height: 20px;
  }
  footer .footer-bottom .container .content-left .footer-other-link ul li {
    margin-right: 10px;
  }
  footer .footer-bottom .container .content-left .footer-other-link ul li a {
    font-size: 12px;
    line-height: 14px;
  }
  footer .footer-bottom .container .content-right {
    justify-content: flex-start;
  }
  footer .footer-bottom .container .content-right .btn-social-network {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  footer .footer-bottom .container .content-right .btn-social-network i {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  footer .footer-top .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  footer .footer-top .container .content-left {
    width: 280px;
  }
  footer .footer-top .container .content-left .logo-atout-box {
    width: 280px;
  }
  footer .footer-top .container .content-left .content {
    width: 100%;
  }
  footer .footer-top .container .content-left .content .description {
    font-size: 13px;
    line-height: 20px;
    margin: 20px 0;
  }
  footer .footer-top .container .content-middle {
    width: calc(100% - 470px);
  }
  footer .footer-top .container .content-middle .block-menu {
    margin-right: 30px;
  }
  footer .footer-top .container .content-middle .block-menu:last-of-type {
    margin-right: 30px;
  }
  footer .footer-top .container .content-middle .block-menu .title {
    font-size: 14px;
    margin-bottom: 15px;
  }
  footer .footer-top .container .content-middle .block-menu .footer-nav ul li {
    margin-bottom: 5px;
  }
  footer .footer-top .container .content-middle .block-menu .footer-nav ul li a {
    font-size: 12px;
  }
  footer .footer-top .container .content-right {
    width: 190px;
  }
  footer .footer-top .container .content-right .block-contact {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
  footer .footer-top .container .content-right .block-call-us {
    width: 100%;
    margin-bottom: 10px;
  }
  footer .footer-top .container .content-right .block-devis {
    padding: 10px;
  }
  footer .footer-top .container .content-right .block-devis .description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 20px;
  }
  footer .footer-top .container .content-right .block-devis .btn {
    display: block;
    padding-left: inherit;
    padding-right: inherit;
  }
  footer .footer-bottom .container {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  footer .footer-bottom .container .content-left .footer-other-link ul {
    height: 20px;
  }
  footer .footer-bottom .container .content-left .footer-other-link ul li {
    margin-right: 10px;
  }
  footer .footer-bottom .container .content-left .footer-other-link ul li a {
    font-size: 12px;
    line-height: 14px;
  }
  footer .footer-bottom .container .content-right .btn-social-network {
    width: 30px;
    height: 30px;
    margin-right: 5px;
  }
  footer .footer-bottom .container .content-right .btn-social-network i {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  footer .footer-top .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  footer .footer-top .container .content-left {
    width: 340px;
  }
  footer .footer-top .container .content-left .content {
    width: 100%;
  }
  footer .footer-top .container .content-middle {
    width: calc(100% - 580px);
  }
  footer .footer-top .container .content-middle .block-menu {
    margin-right: 30px;
  }
  footer .footer-top .container .content-middle .block-menu:last-of-type {
    margin-right: 30px;
  }
}
.weglot-container {
  position: relative;
  font-family: "Quicksand", sans-serif;
  height: 24px;
}

.weglot_switcher {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #d2d6dd;
  border-radius: 3px;
  padding: 0 6px;
  cursor: pointer;
  transition: all 0.2s ease 0s;
  width: auto !important;
  height: 100%;
}
.weglot_switcher:hover {
  border-color: #bcc1cd;
  background-color: #e9eaee;
}
.weglot_switcher .wgcurrent {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #1e3157;
}
.weglot_switcher .wgcurrent a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  font-size: 12px;
  position: relative;
  width: 100%;
  padding-right: 15px;
}
.weglot_switcher .wgcurrent a::after {
  font-family: "Font Awesome 7 Pro";
  content: "\f107";
  font-weight: 400;
  font-size: 10px;
  color: #1e3157;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
  pointer-events: none;
}
.weglot_switcher .wg-flag {
  border-radius: 2px;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  width: 16px;
  height: auto;
}
.weglot_switcher ul {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 5px;
  background: #ffffff;
  border: 1px solid #d2d6dd;
  border-radius: 3px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  list-style: none;
  padding: 0;
  min-width: 120px;
  display: none;
  z-index: 1000;
}
.weglot_switcher.open ul, .weglot_switcher:not(.closed) ul {
  display: block;
}
.weglot_switcher li {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.2s ease 0s;
  width: 100%;
}
.weglot_switcher li:hover {
  background: #e9eaee;
}
.weglot_switcher li a {
  text-decoration: none;
  color: #1e3157;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  width: 100%;
}
.weglot_switcher.weg-openup ul {
  top: auto;
  margin-top: 0;
  bottom: 100%;
  margin-bottom: 5px;
}
.weglot_switcher.weg-openup .wgcurrent a::after, .weglot_switcher.weg-openleft .wgcurrent a::after, .weglot_switcher.open .wgcurrent a::after {
  transform: translateY(-50%) rotate(180deg);
}

section.storage-map {
  height: 766px;
  padding: 0;
}
section.storage-map .container-fluid {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
section.storage-map .container-fluid .content-list-storage {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
section.storage-map .container-fluid .content-list-storage .content-title {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  background-color: #1e3157;
  width: 100%;
  height: 160px;
  padding: 0 20px;
}
section.storage-map .container-fluid .content-list-storage .content-title .title {
  color: #ffffff;
}
section.storage-map .container-fluid .content-list-storage .content-title .subtitle {
  color: #cdd4e8;
  margin-bottom: 0;
}
section.storage-map .container-fluid .content-list-storage .content-listing {
  height: calc(100% - 160px);
  width: 100%;
  border-right: 1px solid #cdd4e8;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage {
  display: block;
  width: 100%;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
  padding: 0 20px;
  background-color: #f0f2f8;
  border-bottom: 1px solid #f0f2f8;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content .info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content .info .number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  background-color: #1e3157;
  border-radius: 50%;
  margin-right: 20px;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content .info .title-storage {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content .indice {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background-color: #1e3157;
  font-family: "Font Awesome 7 Pro";
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content .indice:before {
  content: "\f068";
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content.collapsed {
  background-color: #ffffff;
  border-bottom: 1px solid #cdd4e8;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content.collapsed .indice {
  background-color: #ffffff;
  color: #1e3157;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content.collapsed .indice:before {
  content: "+";
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content.collapsed .info .number {
  background-color: #e6007e;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content.collapsed:hover {
  background-color: #f0f2f8;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content.collapsed:hover .info .number {
  background-color: #e6007e;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content {
  padding: 10px 20px;
  width: 100%;
  background-color: #f0f2f8;
  border-bottom: 1px solid #cdd4e8;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage {
  width: 80%;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .content-infos {
  margin-bottom: 10px;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .content-infos .label {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #1e3157;
  line-height: 1;
  text-rendering: optimizeLegibility;
  margin-bottom: 3px;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .content-infos .value {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #4a5f9f;
  line-height: 20px;
  text-rendering: optimizeLegibility;
  margin-bottom: 0;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .content-infos:last-of-type {
  margin-bottom: 0;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .google-rate-content {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
  background-color: #ffffff;
  padding: 3px 5px;
  border-radius: 3px;
  border: 1px solid #6579b7;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .google-rate-content .content-rating {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .google-rate-content .content-rating .stars {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #fcbf00;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  margin-right: 5px;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .google-rate-content .content-rating .rating {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: #1e3157;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  margin-right: 5px;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .google-rate-content .link-number-user {
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: #1e3157;
  line-height: 14px;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  text-decoration: underline;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .google-rate-content .link-number-user:hover {
  text-decoration: none;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-action-storage {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: column;
  width: 20%;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-action-storage .action {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0 0 10px 0;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-action-storage .action:last-of-type {
  margin-bottom: 0;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-action-storage .action i {
  font-size: 16px;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-action-storage .action.location {
  display: none;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .image-location-center {
  display: none;
}
section.storage-map .container-fluid .content-list-storage .content-listing .item-storage.active-over .header-storage .content {
  background-color: #f0f2f8;
}
section.storage-map .container-fluid .content-map {
  display: block;
  position: relative;
  width: 70%;
  height: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #cdd4e8;
  border-top: 1px solid #cdd4e8;
}
section.storage-map .container-fluid .content-map .marker-map-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
  text-rendering: optimizeLegibility;
  border-radius: 50%;
  background-color: #e6007e;
  border: 2px solid #ffffff;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  transition: opacity 0.2s;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
section.storage-map .container-fluid .content-map .marker-map-text.click-over {
  z-index: 10;
  background-color: #1e3157;
}
section.storage-map .container-fluid .content-map .marker-map-text.active-over {
  z-index: 10;
  background-color: #2b467d;
}
section.storage-map .container-fluid .content-map .mapboxgl-ctrl.mapboxgl-ctrl-attrib .mapboxgl-ctrl-attrib-inner a {
  color: #6579b7 !important;
  font-size: 10px !important;
}
section.storage-map .container-fluid .content-action-button-map {
  position: absolute;
  bottom: 40px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.storage-map .container-fluid .content-action-button-map .zoom-in,
section.storage-map .container-fluid .content-action-button-map .zoom-out {
  padding: 0;
  height: 40px;
  width: 40px;
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  section.storage-map {
    background-color: #f0f2f8;
    padding: 50px 0;
    height: auto;
  }
  section.storage-map .container-fluid .content-list-storage {
    width: calc(100% - 24px);
    margin: auto;
    background-color: #ffffff;
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0.3125rem;
    border: 1px solid #cdd4e8;
  }
  section.storage-map .container-fluid .content-list-storage .content-title {
    align-items: center;
    height: 120px;
    padding: 10px;
    border-radius: 0.3125rem 0.3125rem 0 0;
  }
  section.storage-map .container-fluid .content-list-storage .content-title .title {
    text-align: center;
  }
  section.storage-map .container-fluid .content-list-storage .content-title .subtitle {
    text-align: center;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing {
    height: calc(100% - 120px);
    border-right: none;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content {
    padding: 10px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .image-location-center {
    width: 100%;
    height: auto;
    border: 1px solid #cdd4e8;
    border-radius: 0.3125rem;
    margin-top: 10px;
    display: block;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .image-location-center img {
    border-radius: 0.3125rem;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage:last-of-type .header-storage .content.collapsed {
    border-radius: 0 0 5px 5px;
    border-bottom: none;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage:last-of-type .wrapper-storage.show .content {
    border-radius: 0 0 5px 5px;
  }
  section.storage-map .container-fluid .content-action-button-map {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  section.storage-map {
    height: 552px;
  }
  section.storage-map .container-fluid .content-list-storage {
    width: 42%;
  }
  section.storage-map .container-fluid .content-list-storage .content-title {
    height: 130px;
    padding: 0 5px;
  }
  section.storage-map .container-fluid .content-list-storage .content-title .title {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 5px;
  }
  section.storage-map .container-fluid .content-list-storage .content-title .subtitle {
    font-size: 14px;
    line-height: 18px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing {
    height: calc(100% - 130px);
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content {
    height: 40px;
    padding: 0 5px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content .info .number {
    margin-right: 5px;
    width: 18px;
    height: 18px;
    font-size: 12px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content .info .title-storage {
    font-size: 14px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content .indice {
    width: 18px;
    height: 18px;
    font-size: 14px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content {
    padding: 5px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage {
    width: calc(100% - 28px);
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .content-infos {
    margin-bottom: 5px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .content-infos .label {
    font-size: 12px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .content-infos .value {
    font-size: 12px;
    line-height: 16px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-action-storage {
    width: 28px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-action-storage .action {
    width: 28px;
    height: 28px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-action-storage .action:first-of-type {
    margin-bottom: 5px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-action-storage .action i {
    font-size: 14px;
  }
  section.storage-map .container-fluid .content-map {
    width: 58%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  section.storage-map {
    height: 697px;
  }
  section.storage-map .container-fluid .content-list-storage {
    width: 40%;
  }
  section.storage-map .container-fluid .content-list-storage .content-title {
    height: 165px;
    padding: 0 10px;
  }
  section.storage-map .container-fluid .content-list-storage .content-title .title {
    font-size: 28px;
    line-height: 30px;
  }
  section.storage-map .container-fluid .content-list-storage .content-title .subtitle {
    font-size: 17px;
    line-height: 24px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing {
    height: calc(100% - 165px);
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content {
    height: 50px;
    padding: 0 10px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content .info .number {
    margin-right: 10px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content .info .title-storage {
    font-size: 18px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content {
    padding: 10px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage {
    width: 80%;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .content-infos {
    margin-bottom: 10px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .content-infos .label {
    font-size: 14px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content .content-infos-column .block-infos-storage .content-infos .value {
    font-size: 14px;
  }
  section.storage-map .container-fluid .content-map {
    width: 60%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  section.storage-map {
    height: 836px;
  }
  section.storage-map .container-fluid .content-list-storage {
    width: 37%;
  }
  section.storage-map .container-fluid .content-list-storage .content-title {
    height: 230px;
    padding: 20px 10px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing {
    height: calc(100% - 230px);
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content {
    padding: 0 10px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content .info .number {
    margin-right: 10px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content {
    padding: 10px;
  }
  section.storage-map .container-fluid .content-map {
    width: 63%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  section.storage-map {
    height: 836px;
  }
  section.storage-map .container-fluid .content-list-storage .content-title {
    height: 230px;
    padding: 20px 10px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing {
    height: calc(100% - 230px);
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content {
    padding: 0 10px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .header-storage .content .info .number {
    margin-right: 10px;
  }
  section.storage-map .container-fluid .content-list-storage .content-listing .item-storage .wrapper-storage .content {
    padding: 10px;
  }
}

/*# sourceMappingURL=style-version-1.18.css.map */
