/* Gestion des class pour les background et couleur de textes.*/
.color-primary {
  color: #802A11;
}

.bg-primary {
  background-color: #802A11 !important;
}

.color-secondary {
  color: #221D23;
}

.bg-secondary {
  background-color: #221D23 !important;
}

.color-accent {
  color: #E9531D;
}

.bg-accent {
  background-color: #E9531D !important;
}

.color-white {
  color: #FFFFFF;
}

.bg-white {
  background-color: #FFFFFF !important;
}

.color-black {
  color: #000000;
}

.bg-black {
  background-color: #000000 !important;
}

.color-default {
  color: #4A4A4A;
}

.bg-default {
  background-color: #4A4A4A !important;
}

.color-dark {
  color: #747474;
}

.bg-dark {
  background-color: #747474 !important;
}

.color-light {
  color: #E0D8C7;
}

.bg-light {
  background-color: #E0D8C7 !important;
}

* {
  font-family: "DM Sans", sans-serif;
}

html, body {
  font-size: 16px;
  line-height: 23px;
  font-style: normal;
  margin: 10px 0;
  font-weight: 400;
}

.heading {
  font-family: "Roboto Flex", sans-serif;
}
.heading--n1 {
  font-size: clamp(2.375rem, 2.008rem + 1.589vw, 3.438rem);
  letter-spacing: calc(clamp(2.375rem, 2.008rem + 1.589vw, 3.438rem) * -1 / 100);
  line-height: clamp(2.469rem, 1.874rem + 2.57vw, 4.188rem);
}
.heading--n2 {
  font-size: clamp(2rem, 1.697rem + 1.308vw, 2.875rem);
  letter-spacing: calc(clamp(2rem, 1.697rem + 1.308vw, 2.875rem) * -1 / 100);
  line-height: clamp(2.375rem, 1.964rem + 1.776vw, 3.563rem);
}
.heading--n3 {
  font-size: clamp(1.75rem, 1.447rem + 1.308vw, 2.625rem);
  letter-spacing: calc(clamp(1.75rem, 1.447rem + 1.308vw, 2.625rem) * -1 / 100);
  line-height: clamp(2.094rem, 1.694rem + 1.729vw, 3.25rem);
}
.heading--n4 {
  font-size: clamp(1.5rem, 1.414rem + 0.374vw, 1.75rem);
  letter-spacing: calc(clamp(1.5rem, 1.414rem + 0.374vw, 1.75rem) * -1 / 100);
  line-height: clamp(1.813rem, 1.726rem + 0.374vw, 2.063rem);
}
.heading--n5 {
  font-size: clamp(1.25rem, 1.207rem + 0.187vw, 1.375rem);
  letter-spacing: calc(clamp(1.25rem, 1.207rem + 0.187vw, 1.375rem) * -1 / 100);
}

span {
  line-height: inherit;
}

hr {
  border: none;
  opacity: 1;
  height: 4px;
  width: 85px;
}

.list--unstyled {
  padding: 0px;
  margin: 0px;
}
.list--unstyled li {
  list-style-type: none;
}

.label {
  font-size: 18px;
  font-weight: 500;
}

.legende {
  font-size: 12px;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

p > a {
  text-decoration: underline;
}

.btn {
  appearance: none;
  --webkit-appearance: none;
  --moz-webkit-appearance: none;
  border: none;
  background: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  padding: 5px 10px;
  transition: 0.3s;
  border-radius: 0;
  font-size: 20px;
}
@media screen and (min-width: 767px) {
  .btn {
    font-size: 16px;
  }
}
.btn:hover, .btn:focus, .btn:active {
  transition: 0.3s;
}
.btn--primary {
  background: #802A11;
  color: #FFFFFF;
  border: 1px solid #802A11;
}
.btn--primary:hover, .btn--primary:focus, .btn--primary:active {
  background: transparent;
  color: #802A11;
  border: 1px solid #802A11;
}
.btn--primary:hover svg path, .btn--primary:focus svg path, .btn--primary:active svg path {
  fill: #802A11;
}
.btn--primary-outline {
  background: #FFFFFF;
  color: #802A11;
  border: 1px solid #802A11;
}
.btn--primary-outline:hover, .btn--primary-outline:focus, .btn--primary-outline:active {
  background: #802A11;
  color: #FFFFFF;
  border: 1px solid #802A11;
}
.btn--primary-outline:hover svg path, .btn--primary-outline:focus svg path, .btn--primary-outline:active svg path {
  fill: #FFFFFF;
}
.btn--secondary {
  background: #221D23;
  color: #FFFFFF;
  border: 1px solid #221D23;
}
.btn--secondary:hover, .btn--secondary:focus, .btn--secondary:active {
  background: transparent;
  color: #221D23;
  border: 1px solid #221D23;
}
.btn--secondary:hover svg path, .btn--secondary:focus svg path, .btn--secondary:active svg path {
  fill: #221D23;
}
.btn--secondary-outline {
  background: #FFFFFF;
  color: #221D23;
  border: 1px solid #221D23;
}
.btn--secondary-outline:hover, .btn--secondary-outline:focus, .btn--secondary-outline:active {
  background: #221D23;
  color: #FFFFFF;
  border: 1px solid #221D23;
}
.btn--accent {
  background: #E9531D;
  color: #221D23;
  border: 1px solid #E9531D;
}
.btn--accent:hover, .btn--accent:focus, .btn--accent:active {
  background: transparent;
  color: #E9531D;
  border: 1px solid #E9531D;
}
.btn--accent:hover svg path, .btn--accent:focus svg path, .btn--accent:active svg path {
  fill: #E9531D;
}
.btn--accent-outline {
  background: #FFFFFF;
  color: #E9531D;
  border: 1px solid #E9531D;
}
.btn--accent-outline:hover, .btn--accent-outline:focus, .btn--accent-outline:active {
  background: #E9531D;
  color: #221D23;
  border: 1px solid #E9531D;
}
.btn--accent-outline:hover svg path, .btn--accent-outline:focus svg path, .btn--accent-outline:active svg path {
  fill: #221D23;
}
.btn--white {
  background: #FFFFFF;
  color: #221D23;
  border: 1px solid #FFFFFF;
}
.btn--white:hover, .btn--white:focus, .btn--white:active {
  background: #802A11;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.btn--white:hover svg path, .btn--white:focus svg path, .btn--white:active svg path {
  fill: #FFFFFF;
}
.btn--outline-white {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}
.btn--outline-white:hover, .btn--outline-white:focus, .btn--outline-white:active {
  background: #FFFFFF;
  color: #221D23;
  border: 1px solid #FFFFFF;
}
.btn--outline-white:hover svg path, .btn--outline-white:focus svg path, .btn--outline-white:active svg path {
  fill: #221D23;
}

form {
  position: relative;
}
form label {
  color: #4A4A4A;
  font-weight: 500;
  font-size: 15px !important;
  margin-bottom: 0;
}
form input {
  border: 1px solid #666E5C;
  height: 40px;
  padding: 5px 0;
  color: #802A11;
  background: #221D23;
  display: block;
  width: 100%;
  margin: 13px 0 30px 0;
  border-radius: 5px;
  padding: 0 10px;
}
form input:focus {
  box-shadow: none;
  border-bottom: 1px solid #802A11;
  outline: none;
}
form input::placeholder {
  font-size: 15px;
  color: #221D23;
  transition: all 0.3s;
}
form input:focus::placeholder {
  font-size: 12px;
}
form input[type=checkbox] {
  width: 10%;
}
form input[type=radio] {
  height: 15px;
  display: inline;
}
form textarea {
  border: 1px solid #666E5C;
  padding: 10px;
  color: #802A11;
  background: #221D23;
  display: block;
  width: 100%;
  margin: 13px 0 10px 0;
  border-radius: 5px;
  height: 100px;
}
form textarea::placeholder {
  color: #221D23;
  font-size: 15px;
  transition: all 0.3s;
}
form textarea:focus::placeholder {
  font-size: 14px;
}
form textarea:focus::placeholder {
  font-size: 15px;
}
form input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: -10000;
}
form:not(.wp-block-starter-form) label.checking {
  display: block;
  position: relative;
  padding-left: 30px;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 20px;
  color: #4A4A4A;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  text-align: left;
  font-weight: 400;
}
form:not(.wp-block-starter-form) label.checking::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #4A4A4A;
  position: absolute;
  left: 0;
  border-radius: 3px;
  top: 0px;
  opacity: 1;
  -webkit-transition: all 0.12s, border-color 0.08s;
  transition: all 0.12s, border-color 0.08s;
}
form:not(.wp-block-starter-form) input[type=checkbox]:checked ~ .checking::before {
  width: 10px;
  top: -2px;
  left: 5px;
  border-radius: 0;
  opacity: 1;
  border-top-color: transparent;
  border-left-color: transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
form .message_success {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.7);
}
form .message_success p {
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 700;
}
form .message_fail {
  display: none;
  color: red;
}

#matomo_optout_checkbox {
  opacity: 1;
  position: relative;
  height: auto;
  width: auto;
  margin: 0;
  padding: 0;
  display: initial;
}

.rank-math-breadcrumb {
  display: none;
}
@media (width > 767px) {
  .rank-math-breadcrumb {
    display: block;
  }
}
.rank-math-breadcrumb p {
  margin: 0;
  padding: 0;
}

#burger {
  background-color: transparent;
  border: none;
  height: 64px;
  width: 64px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  position: relative;
  z-index: 10;
  gap: 6px;
}
#burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #802A11;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#burger.opened span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
#burger.opened span:nth-child(2) {
  opacity: 0;
}
#burger.opened span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.main-navigation {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 64px);
  background-color: #FFFFFF;
  display: none;
}
@media screen and (min-width: 767px) {
  .main-navigation {
    position: relative;
    display: flex !important;
    width: 100%;
    height: auto;
    top: 0;
  }
}
.main-navigation::after {
  content: "";
  background: url("../images/motif_logo.png") no-repeat;
  width: 60%;
  height: 100%;
  background-position: bottom right;
  background-size: contain;
  bottom: 0;
  right: 0;
  position: absolute;
}
@media screen and (min-width: 767px) {
  .main-navigation::after {
    display: none;
  }
}

.header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
.header ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
@media screen and (min-width: 767px) {
  .header ul {
    display: block;
  }
}
.header #menu-header li {
  display: inline-block;
  margin-right: 20px;
}
.header #menu-header a:not(.btn) {
  color: #802A11;
  font-size: 20px;
  text-decoration: none;
  font-weight: 600;
  display: block;
  padding: 25px 0;
  transition: 0.3s;
}
@media screen and (min-width: 767px) {
  .header #menu-header a:not(.btn) {
    font-size: 16px;
    padding: 40px 0;
  }
}
.header #menu-header a:not(.btn):hover {
  color: #E9531D;
}
.header #menu-header .menu-item-has-children {
  position: relative;
  cursor: pointer;
  padding-right: 15px;
}
@media screen and (min-width: 767px) {
  .header #menu-header .menu-item-has-children::after {
    content: "";
    position: absolute;
    border-top: 1px solid #802A11;
    border-right: 1px solid #802A11;
    width: 6px;
    height: 6px;
    top: 50%;
    right: 0px;
    transform: rotate(-45deg) translateY(-50%);
    transition: 0.3s;
  }
}
.header #menu-header .menu-item-has-children:hover > a {
  color: #E9531D;
}
.header #menu-header .menu-item-has-children:hover::after {
  transform: rotate(135deg) translateY(50%);
  border-color: #E9531D;
}
.header #menu-header .menu-item-has-children:hover .sub-menu {
  display: flex;
}
.header #menu-header .sub-menu {
  width: max-content;
  flex-direction: column;
}
@media screen and (min-width: 767px) {
  .header #menu-header .sub-menu {
    padding: 10px 20px;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .header #menu-header .sub-menu::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
    background: linear-gradient(270deg, rgba(233, 83, 29, 0) 0%, #E9531D 100%, #E9531D 100%);
  }
}
.header #menu-header .sub-menu li a {
  padding: 10px;
  color: #4A4A4A;
  font-weight: 400;
}
@media screen and (min-width: 767px) {
  .header #menu-header .sub-menu li a {
    padding: 10px 0;
  }
}
.header #menu-header .sub-menu li a:hover {
  color: #E9531D;
}

main {
  margin-top: 64px;
}
@media screen and (min-width: 767px) {
  main {
    margin-top: 98px;
  }
}

body:has(#wpadminbar) .header {
  top: 32px;
}

.footer {
  overflow: hidden;
}
.footer .lines-x {
  position: relative;
}
.footer .lines-x::after, .footer .lines-x::before {
  content: "";
  left: -20%;
  background: linear-gradient(to left, rgba(233, 83, 29, 0) 15%, #E9531D 100%, #E9531D 100%);
  height: 1px;
  width: 100vw;
  position: absolute;
}
.footer .lines-x::after {
  bottom: 0;
}
.footer .lines-x::before {
  top: 0;
}
.footer .line-y {
  position: relative;
}
.footer .line-y::after {
  content: "";
  top: -3rem;
  right: 0;
  background: linear-gradient(to top, rgba(233, 83, 29, 0) 15%, #E9531D 100%, #E9531D 100%);
  height: 60%;
  width: 1px;
  position: absolute;
}
.footer .footer-motif {
  display: block;
  aspect-ratio: 1/1;
}
.footer .footer-motif::before {
  content: "";
  position: absolute;
  height: calc(100% + 3rem);
  top: -3rem;
  left: 0;
  background: linear-gradient(to top, rgba(233, 83, 29, 0) 9.91%, #E9531D 100%, #E9531D 100%);
  width: 1px;
}
.footer .footer-motif::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 1px;
  background: linear-gradient(to top, rgba(233, 83, 29, 0) 9.91%, #E9531D 100%, #E9531D 100%);
  transform: rotate(-45deg);
  transform-origin: bottom left;
}
.footer .menu-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-right: 10%;
  width: 100%;
}
.footer .menu-footer .menu-item > a {
  display: block;
  padding: 15px 0;
  color: #E9531D;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .menu-footer .menu-item > a:hover {
  color: #FFFFFF;
}
.footer .menu-footer .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .menu-footer .sub-menu .menu-item > a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .menu-footer .sub-menu .menu-item > a:hover {
  color: #E9531D;
}
.footer .footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media screen and (min-width: 767px) {
  .footer .footer-legal {
    justify-content: start;
  }
}
.footer .footer-legal a {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  line-height: normal;
  letter-spacing: 0.22px;
  color: #FFFFFF;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 20px 0;
}
.footer .footer-legal a:hover {
  color: #E9531D;
}

html {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  position: relative;
  word-wrap: break-word;
}

hr {
  opacity: 1;
}

.object-position-end {
  object-position: right !important;
}

@media screen and (max-width: 767px) {
  .row > * {
    --bs-gutter-x: 3rem !important;
  }
}
@media screen and (min-width: 991px) {
  .position-lg-absolute {
    position: absolute !important;
  }
  .w-lg-50 {
    width: 50% !important;
  }
}
.hero {
  overflow: hidden;
}
.hero .lines-x {
  position: relative;
}
.hero .lines-x::before {
  content: "";
  top: 0;
  right: -20%;
  background: linear-gradient(to right, rgba(233, 83, 29, 0) 15%, #E9531D 100%, #E9531D 100%);
  height: 1px;
  width: 100vw;
  position: absolute;
}
.hero .lines-x::after {
  content: "";
  bottom: 0;
  left: -20%;
  background: linear-gradient(to left, rgba(233, 83, 29, 0) 15%, #E9531D 100%, #E9531D 100%);
  height: 1px;
  width: 100vw;
  position: absolute;
}
.hero-image {
  position: relative;
  z-index: 1;
  margin-top: -45px;
}
@media screen and (min-width: 767px) {
  .hero-image {
    margin-top: 0;
  }
}
.hero-image::before {
  content: "";
  background: url("../images/motif_logo.png") no-repeat top left;
  background-size: contain;
  aspect-ratio: 1/1;
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero-image::after {
  z-index: -1;
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  top: -3rem;
  right: -3rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(to top, rgba(233, 83, 29, 0) 9.91%, #E9531D 100%, #E9531D 100%);
  transform: rotate(-45deg);
  transform-origin: top right;
}

.avantages {
  position: relative;
}
.avantages .lines-y {
  position: relative;
}
.avantages .lines-y::before, .avantages .lines-y::after {
  content: "";
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  background: linear-gradient(to top, rgba(233, 83, 29, 0) 15%, #E9531D 100%, #E9531D 100%);
  width: 1px;
  height: 100%;
}
.avantages .lines-y::before {
  left: 0;
}
.avantages .lines-y::after {
  right: 0;
}

.expertises {
  background: rgba(128, 42, 17, 0.2);
}
@media screen and (min-width: 767px) {
  .expertises {
    background: linear-gradient(0deg, rgba(128, 42, 17, 0) 80.68%, rgba(128, 42, 17, 0.2) 143.49%, rgba(128, 42, 17, 0.2) 143.49%);
  }
}
.expertises .expertise-card {
  background: #fff;
  padding: 32px 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.expertises .expertise-card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}

.steps .row {
  position: relative;
  z-index: 1;
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 70px;
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 767px) {
  .steps-list {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
.steps-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  height: 110%;
  left: 44px;
  width: 2px;
  background: linear-gradient(to top, rgba(233, 83, 29, 0) 10%, #E9531D 50%, #E9531D 90%, rgba(233, 83, 29, 0) 100%);
  z-index: -1;
}
@media screen and (min-width: 767px) {
  .steps-content {
    height: 100vh;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 140px;
  }
}
.steps-images {
  height: 100%;
  display: none;
}
@media screen and (min-width: 767px) {
  .steps-images {
    display: block;
  }
}
.steps .step-image {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transition: opacity 0.3s ease;
}
.steps .step-image.active {
  visibility: visible;
  opacity: 1;
}
.steps .step-item {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (min-width: 767px) {
  .steps .step-item {
    height: 40vh;
  }
}
.steps .step-item .step-number {
  aspect-ratio: 1/1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #E9531D;
  border-radius: 64px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Roboto Flex", sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 57px;
}

.testimonials-content {
  max-width: 560px;
}
.testimonials .lines-y {
  position: relative;
}
.testimonials .lines-y::before {
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(to top, rgba(233, 83, 29, 0) 2%, #E9531D 100%, #E9531D 100%);
  height: 100%;
  width: 2px;
  position: absolute;
}
.testimonials .lines-y::after {
  content: "";
  top: 0;
  right: 0;
  background: linear-gradient(to top, rgba(233, 83, 29, 0) 2%, #E9531D 100%, #E9531D 100%);
  height: 100%;
  width: 2px;
  position: absolute;
}
.testimonials .lines-x {
  position: relative;
}
.testimonials .lines-x::before {
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(to left, rgba(233, 83, 29, 0) 2%, #E9531D 100%, #E9531D 100%);
  height: 2px;
  width: 100vw;
  position: absolute;
}
.testimonials .lines-x::after {
  content: "";
  bottom: 0;
  left: 0;
  background: linear-gradient(to left, rgba(233, 83, 29, 0) 2%, #E9531D 100%, #E9531D 100%);
  height: 2px;
  width: 100vw;
  position: absolute;
}

.wprevpro-shortcode-wrapper .slickwprev-slide {
  padding: 10px;
}
.wprevpro-shortcode-wrapper .slickwprev-slide .outerrevdiv {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.insurance:after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  background: linear-gradient(to right, rgba(233, 83, 29, 0) 9.91%, #E9531D 100%, #E9531D 100%);
  height: 2px;
  width: 50%;
  z-index: 1;
}
@media screen and (min-width: 767px) {
  .insurance::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    background: linear-gradient(to top, rgba(233, 83, 29, 0) 9.91%, #E9531D 100%, #E9531D 100%);
    height: 100%;
    width: 2px;
    z-index: 1;
  }
}

.commitment .container {
  position: relative;
}
@media screen and (min-width: 767px) {
  .commitment .container::after {
    content: url("../images/motif_logo.png");
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
.commitment-image {
  height: 650px;
  object-fit: cover;
}
.commitment .commitment-item {
  display: flex;
  gap: 24px;
}
.commitment .commitment-item .icon.check {
  flex: none;
  width: 32px;
  height: 32px;
  background: url("../images/check.svg") no-repeat center;
}

.contact {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.contact::before {
  content: "";
  top: 20%;
  right: 0;
  background: linear-gradient(to left, rgba(233, 83, 29, 0) 2.5%, #E9531D 100%, #E9531D 100%);
  height: 2px;
  width: 30%;
  position: absolute;
  z-index: 1;
}
.contact-image {
  border-top-left-radius: 150px;
  border-bottom-right-radius: 150px;
}
.contact .lines-xy {
  position: relative;
  z-index: 1;
}
.contact .lines-xy::before {
  z-index: 1;
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  top: -3rem;
  right: -4rem;
  width: 80%;
  height: 2px;
  background: linear-gradient(to top, rgba(233, 83, 29, 0) 10%, #E9531D 100%, #E9531D 100%);
  transform: rotate(-36deg);
  transform-origin: top right;
}
.contact .lines-xy::after {
  z-index: 1;
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  top: -3rem;
  right: -4rem;
  width: 80%;
  height: 2px;
  background: linear-gradient(to top, rgba(233, 83, 29, 0) 10%, #E9531D 100%, #E9531D 100%);
  transform: rotate(-36deg);
  transform-origin: top right;
}

.hero-cabinet {
  background: #802A11;
}
@media screen and (min-width: 767px) {
  .hero-cabinet {
    background: linear-gradient(to bottom, #802A11 0%, #802A11 calc(100% - 192.5px), #FFFFFF calc(100% - 192.5px));
  }
}

.mission {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 767px) {
  .mission {
    margin-top: 7rem;
    margin-bottom: 7rem;
  }
}

.why-choose-accordion .accordion-item {
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}
.why-choose-accordion .accordion-item::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(to left, rgba(233, 83, 29, 0) 5px, #E9531D 100%, #E9531D 100%);
  width: 100%;
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: 1;
}
.why-choose-accordion .accordion-item .accordion-header .heading {
  color: #FFFFFF;
}
.why-choose-accordion .accordion-item.active .accordion-header .heading {
  color: #E9531D;
}
.why-choose-accordion .accordion-item.active .accordion-content {
  display: block;
}
.why-choose-accordion .accordion-item .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  cursor: pointer;
}
.why-choose-accordion .accordion-item .accordion-header::before {
  content: "+";
  font-size: 34px;
  line-height: 34px;
  position: absolute;
  right: 0;
  top: 0px;
  color: #E9531D;
}
.why-choose-accordion .accordion-item .accordion-content {
  display: none;
  padding: 24px 0;
}

.expertise {
  position: relative;
  background: #802A11;
}
@media screen and (min-width: 767px) {
  .expertise {
    background: url("../images/fond_expertise_cabinet.jpg") no-repeat center left;
    background-size: cover;
  }
}
.expertise__image::before {
  content: "";
  background: url("../images/motif_logo.png") no-repeat top right;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  z-index: -1;
}
.expertise__image::after {
  content: "";
  background: linear-gradient(to right, rgba(233, 83, 29, 0) 10px, #E9531D 100%, #E9531D 100%);
  right: 0;
  bottom: 15%;
  width: 100%;
  height: 1px;
  position: absolute;
  z-index: -1;
}
.expertise__content {
  height: auto;
}
.expertise__content::before {
  content: "";
  background: linear-gradient(to top, rgba(233, 83, 29, 0) 10px, #E9531D 100%, #E9531D 100%);
  left: -30px;
  top: 0;
  width: 1px;
  height: 60%;
  position: absolute;
  z-index: -1;
}
.expertise__content::after {
  content: "";
  background: linear-gradient(to right, rgba(233, 83, 29, 0) 10px, #E9531D 100%, #E9531D 100%);
  left: -30%;
  top: 20%;
  width: 60vw;
  height: 1px;
  position: absolute;
  z-index: -1;
}

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