* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
}

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

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body,
html {
  width: 100%;
  height: 100%;
  font-family: "acumin-pro", sans-serif;
}

body.single-team {
  background-color: #fdfdfa;
}

section {
  display: flex;
  flex-direction: column;
}

.container {
  width: 1295px;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

button {
  background-color: transparent;
  border: none;
}

.btn-primary {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #9e8d8d;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  width: max-content;
}
.btn-primary span {
  display: flex;
}
.btn-primary .icon {
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: 0.5s ease-in-out;
}
.btn-primary svg {
  transition: 0.5s ease-in-out;
  transform: rotate(0);
}
.btn-primary svg path {
  transition: 0.5s ease-in-out;
}
.btn-primary:hover {
  gap: 30px;
}
.btn-primary:hover svg {
  transform: rotate(45deg);
}

/*
** Switches
*/
.switches {
  display: flex;
  gap: 14px;
}
.switches .switche {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #4c2931;
  border: 1px solid rgba(214, 165, 79, 0.33);
  box-shadow: 0px 9px 26px rgba(187, 145, 72, 0.7);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

/*
** Accordions
*/
.accordions .accordion-item {
  border-bottom: 1px solid rgba(214, 165, 79, 0.1019607843);
}
.accordions .accordion-item:first-child {
  border-top: 1px solid rgba(214, 165, 79, 0.1019607843);
}
.accordions .accordion-item .accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 29px;
  padding-right: 20px;
  padding: 26px 20px 26px 0;
  cursor: pointer;
}
.accordions .accordion-item .accordion-header div {
  display: flex;
}
.accordions .accordion-item .accordion-header div.icon svg path.vertical {
  transition: 0.5s ease-in-out;
  opacity: 1;
}
.accordions .accordion-item .accordion-content {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  overflow: hidden;
  padding-top: 0;
  max-height: 0;
  transition: 0.5s ease-in-out;
}
.accordions .accordion-item .accordion-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accordions .accordion-item .accordion-content ul li {
  padding-left: 13px;
  position: relative;
  isolation: isolate;
}
.accordions .accordion-item .accordion-content ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #d6a54f;
}
.accordions
  .accordion-item.active
  .accordion-header
  div.icon
  svg
  path.vertical {
  opacity: 0;
}
.accordions .accordion-item.active .accordion-content {
  padding-bottom: 26px;
}

/*
** Equipe Items
*/
.equipe-item {
  display: flex;
  overflow: hidden;
  position: relative;
  box-shadow: 0px 20px 40px rgba(76, 41, 49, 0.5);
  height: 450px;
  width: -moz-max-content;
  width: max-content;
}
.equipe-item .image {
  overflow: hidden;
  transition: 0.5s ease-in-out;
  transform: scale(1);
  transform-origin: top;
}
.equipe-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: top;
}
.equipe-item .info {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 14px 14px 16px 23px;
  transition: 0.5s ease-in-out;
  transform: translateX(0);
}
.equipe-item .info::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 0;
  width: 37px;
  height: 2px;
  background-color: #d6a54f;
}
.equipe-item .info h4 {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
}
.equipe-item .info span {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 28px;
  color: #ffffff;
  text-transform: uppercase;
}
.equipe-item .arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  isolation: isolate;
  right: 27px;
  bottom: -50px;
  transition: 0.5s ease-in-out;
}
.equipe-item .arrow::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #d6a54f;
  z-index: -1;
  transform: scale(0.6);
  transition: 0.5s ease-in-out;
}
.equipe-item:hover .image {
  transform: scale(1.1);
}
.equipe-item:hover .info {
  transform: translateX(-100%);
}
.equipe-item:hover .arrow {
  bottom: 27px;
}
.equipe-item:hover .arrow::after {
  transform: scale(1);
}

/*
** Join Us Section
*/
.join-us-section {
  background-color: #4c2931;
  position: relative;
  isolation: isolate;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.join-us-section .shape {
  position: absolute;
  top: 0;
}
.join-us-section .shape.shape-left {
  left: 0;
}
.join-us-section .shape.shape-right {
  right: 0;
}
.join-us-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: radial-gradient(
    48.89% 127.08% at 49.97% 44.99%,
    #755b5f 0%,
    rgba(117, 91, 95, 0) 68.61%
  );
  opacity: 0.6;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.join-us-section .content {
  width: 636px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.join-us-section h2 {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 45px;
  text-align: center;
  color: #d6a54f;
  margin-bottom: 32px;
}
.join-us-section h3 {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  text-transform: uppercase;
  color: #f0f0e8;
  max-width: 567px;
  margin: 0 auto 27px;
}
.join-us-section p {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #f0f0e8;
  max-width: 580px;
  margin: 0 auto 102px;
}

.join-us-section p:not(:last-of-type) {

margin-bottom : 20px !important;	
	
}


.join-us-section a {
  position: relative;
  isolation: isolate;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.5s ease-in-out;
  padding-left: 43px;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.join-us-section a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background-color: #d6a54f;
  z-index: -1;
  transition: 0.5s ease-in-out;
}
.join-us-section a span {
  display: flex;
}
.join-us-section a span.icon {
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
}
.join-us-section a span.icon svg {
  transition: 0.5s ease-in-out;
  transform: rotate(0);
}
.join-us-section a:hover {
  padding-left: 65px;
  gap: 15px;
}
.join-us-section a:hover::after {
  width: 160px;
  height: 160px;
}
.join-us-section a:hover span {
  display: flex;
}
.join-us-section a:hover span.icon svg {
  transform: rotate(45deg);
}

/*
** Form
*/
form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}
form .input-field {
  width: calc(50% - 2px);
  max-width: 100%;
  border-radius: 4px;
  overflow: hidden;
}
form .input-field.field-submit,
form .input-field.field-check {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
form .input-field.field-submit {
  width: auto;
  display: flex;
  justify-content: flex-end;
}
form .input-field.field-check {
  position: relative;
  width: 370px;
  max-width: 100%;
}
form .input-field.field-check label {
  display: flex;
  width: 100%;
  cursor: pointer;
  padding-left: 12px;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #475d5d;
}
form .input-field.field-check label a {
  text-decoration: underline;
}
form .input-field.field-check label input[type="checkbox"] {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #d6a54f;
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
form .input-field.field-check label input[type="checkbox"]::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #d6a54f;
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
form .input-field.field-check label input[type="checkbox"]:checked:after {
  opacity: 1;
  visibility: visible;
}
form .input-field textarea {
  resize: none;
  height: auto;
}
form .full-width {
  width: 100%;
}
form .fields-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
form .form-control {
  width: 100%;
  height: 45px;
  border: none;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.6);
  color: #755b5f;
  padding: 9px 17px;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
}
form .form-control::-moz-placeholder {
  color: #755b5f;
  opacity: 0.8;
}
form .form-control::placeholder {
  color: #755b5f;
  opacity: 0.8;
}
form .form-control::-webkit-input-placeholder {
  color: #755b5f;
  opacity: 0.8;
}
form .form-control:-ms-input-placeholder {
  color: #755b5f;
  opacity: 0.8;
}
form .btn-primary {
  color: #475d5d;
}
form .btn-primary .icon {
  background-color: #d6a54f;
}


.wpcf7-not-valid-tip {
  font-size: 12px !important;
  font-weight: 400 !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  margin-top: 25px !important;
  font-size: 14px;
  font-weight: 600;
  font-family: "acumin-pro",sans-serif;
  color: #475d5d;
}

/*
** Loader
*/

body {
  overflow: hidden;
}

.logo-header a {
  display: flex;
}
.logo-header a svg {
  width: 100%;
  height: 100%;
}

.logo-header {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
  z-index: 15;
  width: 157px;
  height: 124px;
  overflow: hidden;
  opacity: 0;
}

.logo-header a svg {
  width: 100%;
  height: 100%;
}

.logo-header.pointer-events {
  pointer-events: none;
}

/*** Loader */

.loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #ffffff;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
}

.loader::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    132.3deg,
    rgba(245, 245, 245, 0.1) 50.62%,
    #f0f0e8 78.33%
  );
  transition: 1.5s ease-in-out;
}
.loader::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20px;
  height: 0%;
  background-color: #d6a54f;
  transition: height 1s ease-in-out;
}
.loader.expand::after {
  height: 100%;
}

header.active::after {
  opacity: 1;
}

header.active {
  top: 15px;
}

header.active .menu a {
  color: #4c2931 !important;
}

header.active .menu a:hover, 
header.active .menu a.active {
  color: #d6a54f !important;
}

.logo-header.active a {
  display: flex;
}

.logo-header.active a svg path.fill-color {
  fill: #4c2931 !important;
}

.logo-header.active {
  top: 15px;
}


/* 
** Start Header
*/
header {
  width: 100%;
  height: 124px;
  position: fixed;
  left: 0;
  top: 40px;
  z-index: 12;
  background-color: transparent;
  transition: 0.5s ease-in-out;
}

header::after {
  content: "";
  position: absolute;
  left: 0;
  top: -15px;
  height: calc(100% + 30px);
  width: 100%;
  background-color: #f0f0e8;
  opacity: 0;
  transition: 0.5s ease-in-out;
  pointer-events: none;
  z-index: -1;
}

header .header-container {
  width: 1440px;
  max-width: 100%;
  height: 100%;
  padding: 0 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

header .menu {
  display: flex;
  gap: 80px;
}

header .menu a {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #c7beba;
  transition: 0.5s ease-in-out;
  position: relative;
  isolation: isolate;
}

header .menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  background-color: #d6a54f;
  height: 2px;
  width: 0;
  transition: 0.5s ease-in-out;
}

header .menu-left {
  padding-left: 67px;
}
header .menu-right {
  padding-right: 155px;
}

header .menu-icon {
  position: absolute;
  right: 20px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 1px solid #806d6f;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  pointer-events: auto;
}
header .menu-icon span {
  width: 32px;
  height: 2px;
  background-color: #806d6f;
}

header .menu a:hover,
header .menu a.active {
  color: #d6a54f;
}

header .menu a:hover::after,
header .menu a.active::after {
  width: 100%;
}

body.page-template-equipe header .menu a {
  color: #f0f0e8;
}
body.single-team header .menu a {
  color: #4c2931;
}
body.single-team .logo-header a svg path.fill-color {
  fill: #4c2931 !important;
} 



/* 
** Start Home
*/
.home-template .hero-section {
  min-height: 100dvh;
  background: linear-gradient(132.3deg, #4c2931 50.62%, #381e24 78.33%);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.home-template .hero-section .shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 641px;
  height: 100%;
}
.home-template .hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 100%;
  background-color: #d6a54f;
}
.home-template .hero-section .container {
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.home-template .hero-section .content {
  width: 1166px;
  max-width: 100%;
/*   padding: 130px 0; */
	padding : 130px 0 50px 0;
}
.home-template .hero-section h1 {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 63px;
  line-height: 68px;
  letter-spacing: -0.03em;
  color: #f0f0e8;
  position: relative;
  isolation: isolate;
/*   width: -moz-max-content; */
/*   width: max-content; */
  padding-bottom: 122px;
  margin-bottom: 27px;
	
text-align: center;	
flex-direction: column;	
}

.home-template .hero-section h1 span {
	
font-size : 20px;
position : relative;	
	
}



.home-template .hero-section h1 span span.words {
	
margin : 0 30px;	
display : inline-block;	
letter-spacing : 3px;	
}


.home-template .hero-section h1 span span span:not(.words) {
	
color : #d6a54f
	
}


.home-template .hero-section h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200px;
  height: 1px;
  background-color: #755b5f;
  opacity: 0.6;
}
.home-template .hero-section .scroll-down {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #9e8d8d;
  width: -moz-max-content;
  width: max-content;
  gap: 43px;
}
.home-template .hero-section .scroll-down span {
  display: flex;
}
.home-template .about-section {
  padding: 100px 0 92px 0;
  background-color: #f0f0e8;
}
.home-template .about-section .content {
  width: 1197px;
  max-width: 100%;
  margin: 0 auto;
}
.home-template .about-section .intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.home-template .about-section h2 {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 45px;
  color: #0f2c2e;
}
.home-template .about-section .title {
  width: 503px;
}
.home-template .about-section .description {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #475d5d;
  width: 573px;
  margin-top: 10px;
}
.home-template .about-section .description p:first-child {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 18px;
}
.home-template .about-section .btns-items {
  margin-top: 86px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.home-template .about-section .btns-items .btn-item {
  position: relative;
  padding: 34px 34px 0 125px;
  border-top: 1px solid rgba(199, 190, 186, 0.5019607843);
}
.home-template .about-section .btns-items h4 {
  margin-bottom: 36px;
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 28px;
  color: #4c2931;
  max-width: 158px;
}
.home-template .about-section .btns-items .btn-shape {
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 15px;
}
.home-template .about-section .btns-items .btn-primary {
  width: 200px;
}
.home-template .about-section .btns-items .btn-primary:hover .icon {
  background-color: #d6a54f;
}
.home-template .about-section .btns-items .btn-primary:hover .icon svg path {
  stroke: #ffffff;
}
.home-template .expertise-section {
  padding: 86px 0 97px 0;
  background: linear-gradient(358.75deg, #f0f0e8 18.1%, #ffffff 122.18%);
}
.home-template .expertise-section .content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  width: 1214px;
  max-width: 100%;
}
.home-template .expertise-section h2 {
  display: flex;
  gap: 40px;
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 45px;
  color: #4c2931;
  margin-bottom: 42px;
}
.home-template .expertise-section .label {
  padding-left: 113px;
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #d6a54f;
}

.single-expertise .single-template .hero-section span {

display : none;	
	
}



.home-template .expertise-section .title {
  width: 506px;
}
.home-template .expertise-section .items {
  width: calc(100% - 586px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.home-template .expertise-section .items a {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  color: #755b5f;
  padding: 18px 0;
  border-top: 1px solid rgba(213, 163, 77, 0.4);
  position: relative;
  isolation: isolate;
  transition: 0.5s ease-in-out;
}
.home-template .expertise-section .items a::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 0;
  height: 2px;
  background-color: #d5a34d;
  transition: 0.5s ease-in-out;
}
.home-template .expertise-section .items a:hover {
  color: #4c2931;
  padding-left: 10px;
}
.home-template .expertise-section .items a:hover::after {
  width: 100%;
}
.home-template .equipe-section {
  padding: 122px 0 147px 0;
  position: relative;
  isolation: isolate;
  background: #4c2931;
  background-image: url("../images/bg-equipe-section.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
}
.home-template .equipe-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 317px 317px 0;
  border-color: transparent #f5f5f5 transparent transparent;
  transform: rotate(0deg);
  opacity: 0.1;
}
.home-template .equipe-section .content {
  width: 1184px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.home-template .equipe-section h2 {
  font-family: "acumin-pro-wide", sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 45px;
  color: #d6a54f;
}
.home-template .equipe-section .description {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #f0f0e8;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.home-template .equipe-section .description p:first-child {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
}
.home-template .equipe-section .intro {
  width: 503px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.home-template .equipe-section .team-items {
  width: 521px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.home-template .actualites-section {
  padding: 75px 0 80px 0;
  background-color: #4c2931;
  color: #f0f0e8;
	
display : none;	
	
}
.home-template .actualites-section .content {
  width: 1185px;
  max-width: 100%;
  margin: 0 auto;
}
.home-template .actualites-section .intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}
.home-template .actualites-section h2 {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 45px;
}
.home-template .actualites-section .arrows {
  display: flex;
  gap: 15px;
}
.home-template .actualites-section .arrows .arrow {
  width: 100px;
  height: 55px;
  opacity: 0.35;
  border-radius: 30px;
  border: 1px solid #f0f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.home-template .actualites-section .arrows .arrow svg path {
  transition: 0.5s ease-in-out;
}
.home-template .actualites-section .arrows .arrow:hover {
  opacity: 1;
  border-color: #d6a54f;
}
.home-template .actualites-section .arrows .arrow:hover svg path {
  stroke: #d6a54f;
}
.home-template .actualites-section .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.home-template .actualites-section .news {
  width: 898px;
}

.home-template .actualites-section .message {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
}

.home-template .actualites-section .filtre {
  display: flex;
  flex-direction: column;
}
.home-template .actualites-section .filtre .label {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #f0f0e8;
  margin-bottom: 45px;
}
.home-template .actualites-section .filtre .filter-item {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f0f0e8;
  opacity: 0.4;
  margin-bottom: 8px;
  cursor: pointer;
}
.home-template .actualites-section .filtre .filter-item.active {
  opacity: 1;
}
.home-template .actualites-section .item {
  display: flex;
  flex-direction: column;
  gap: 31px;
  padding-top: 20px;
  border-top: 1px solid rgba(213, 163, 77, 0.2509803922);
  width: 434px;
}
.home-template .actualites-section .item .news-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 10px;
}
.home-template .actualites-section .item .separator {
  color: #d6a54f;
}
.home-template .actualites-section .item .author-date {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: rgba(240, 240, 232, 0.6);
  display: flex;
  align-items: center;
  gap: 14px;
}
.home-template .actualites-section .item .category {
  padding: 1px 18px;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background-color: #755b5f;
  color: #f0f0e8;
  border-radius: 15px;
}
.home-template .actualites-section .item h3 {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 32px;
  color: rgba(240, 240, 232, 0.7019607843);
}
.home-template .actualites-section .item .read-more {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-transform: uppercase;
  color: #9e8d8d;
}
.home-template .actualites-section .item.item-article .category {
  background-color: rgba(213, 163, 77, 0.7019607843);
}

.equipe-template .hero-section {
  padding: 283px 0 77px 0;
  position: relative;
  isolation: isolate;
  background-color: #0f2c2e;
}
.equipe-template .hero-section .content {
  width: 957px;
  max-width: 100%;
  margin: 0 auto;
}
.equipe-template .hero-section::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 200px 200px 0 0;
  border-color: transparent #d6a54f transparent transparent;
  transform: rotate(0deg);
  opacity: 1;
}
.equipe-template .hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(303.1deg, #0f2c2e 31.67%, #475d5d 83.09%);
  border-radius: 0px 0px 0px 311.5px;
  z-index: -1;
}
.equipe-template .hero-section h1 {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 48px;
  line-height: 64px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #f0f0e8;
  margin-bottom: 33px;
}
.equipe-template .hero-section .labels {
  display: flex;
  gap: 45px;
  align-items: center;
  justify-content: center;
}
.equipe-template .hero-section .labels span {
  padding-right: 45px;
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f0f0e8;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}
.equipe-template .hero-section .labels span::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  height: 22px;
  background-color: #d6a54f;
}
.equipe-template .hero-section .labels span:last-child {
  padding-right: 0;
}
.equipe-template .hero-section .labels span:last-child::after {
  content: none;
}
.equipe-template .equipe-section {
  padding: 75px 0 140px 0;
  background-color: #f0f0e8;
  background-image: url("../images/equipe-bg.png");
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.equipe-template .equipe-section .content {
  width: 1166px;
  max-width: 100%;
  margin: 0 auto;
}
.equipe-template .equipe-section .intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}
.equipe-template .equipe-section h2 {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 45px;
  color: #0f2c2e;
}
.equipe-template .equipe-section .description {
  width: 428px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #475d5d;
  margin-top: 33px;
}
.equipe-template .equipe-section .associate-items {
  width: 550px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.equipe-template .equipe-section .equipe-item {
  height: 390px;
}
.equipe-template .equipe-section .teams {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 68px;
  margin-top: 70px;
}

/*
** Single Tempalte
*/
.single-template .hero-section {
  padding: 283px 0 77px 0;
  position: relative;
  isolation: isolate;
  background: linear-gradient(132.3deg, #4c2931 50.62%, #381e24 78.33%);
  min-height: 491px;
}
.single-template .hero-section .shape {
  position: absolute;
  display: flex;
  z-index: -1;
}
.single-template .hero-section .shape.shape-left {
  left: 0;
  bottom: 0;
}
.single-template .hero-section .shape.shape-right {
  right: 0;
  bottom: 0;
}
.single-template .hero-section .content {
  width: 990px;
  max-width: 100%;
  margin: 0 auto;
}
.single-template .hero-section .title {
  color: #f0f0e8;
  max-width: 837px;
  margin-left: auto;
}

body.page-template-privacy .single-template .hero-section h1 {
  margin-bottom: 0;
}

body.page-template-privacy .single-template .hero-section {
  min-height: 424px;
}

.single-template .details-section .description ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.single-template .details-section .description ul li {
  padding-left: 13px;
  position: relative;
  isolation: isolate;
}

.single-template .details-section .description ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #0f2c2e;
  opacity: 0.5;
}

.single-template .details-section .description h2 {
  line-height: 34px;
  font-size: 24px;
}

.single-template .hero-section h1 {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 45px;
  line-height: 64px;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.single-template .hero-section span {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 38px;
}
.single-template .details-section {
  padding-top: 65px;
  background-color: #f7f7ef;
}
.single-template .details-section .content {
  width: 891px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}
.single-template .details-section .switches {
  position: absolute;
  left: -120px;
  top: -10px;
}
.single-template .details-section .description {
  max-width: 684px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 56px;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #475d5d;
}
.single-template .details-section .intervention {
  background: linear-gradient(105.63deg, #0f2c2e 31.88%, #475d5d 105.86%);
  padding: 63px;
  color: #f0f0e8;
}
.single-template .details-section .accordion-wrapper {
  max-width: 684px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.single-template .details-section .accordion-wrapper h3 {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  text-transform: uppercase;
  color: #d6a54f;
}

/*
** Single Equipe
*/
.single-equipe-template .biography-section {
  position: relative;
  isolation: isolate;
}
.single-equipe-template .biography-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 443px;
  width: 100%;
  height: 100%;
  background-color: #f7f7ef;
  z-index: -1;
}
.single-equipe-template .biography-section::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background-color: #f7f7ef;
  z-index: -1;
}

.single-equipe-template .biography-section .container {
  width: 1440px;
  padding: 0;
}
.single-equipe-template .biography-section .content {
  display: flex;
  justify-content: space-between;
}
.single-equipe-template .biography-section .details {
  width: 799px;
  padding: 255px 20px 60px 20px;
  position: relative;
  isolation: isolate;
}
.single-equipe-template .biography-section .details-wrapper {
  width: 575px;
  max-width: 100%;
  margin: 0 auto;
  padding-left: 24px;
	position: relative;
	z-index: 1;
}
.single-equipe-template .biography-section .wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: -1;
}
.single-equipe-template .biography-section .label {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #4c2931;
}
.single-equipe-template .biography-section .langues {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.single-equipe-template .biography-section .langues span {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #4c2931;
}
.single-equipe-template .biography-section .langues ul {
  display: flex;
  gap: 10px;
}
.single-equipe-template .biography-section .langues ul li {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #4c2931;
}
.single-equipe-template .biography-section h1 {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  letter-spacing: -0.03em;
  color: #4c2931;
}
.single-equipe-template .biography-section .info {
  margin-bottom: 85px;
}
.single-equipe-template .biography-section .info span {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 30px;
  color: #4c2931;
}
.single-equipe-template .biography-section .info ul {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}

.single-equipe-template .biography-section .info ul li {
	height:40px;
}

.withHover {
	position: relative;
}

.withHover .icon-info {
    padding: 5px 0;
    position: absolute;
    top: 40px;
    left: 0;
    width: -moz-max-content;
    width: max-content;
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    visibility: hidden;
    transition: 0.5s ease-in-out;
}

.withHover .icon-info span {
    background-color: #d6a54f;
    border-radius: 66px;
    padding: 12px 15px;
    width: -moz-max-content;
    width: max-content;
	color: #fff !important;
	font-family: "acumin-pro-wide", sans-serif !important;
    font-style: normal !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    line-height: 24px !important;
	display: flex;
    align-items: center;
}

.withHover .icon-info span.copytext {
    gap: 5px;
}

.withHover:hover .icon-info {
    opacity: 1;
    visibility: visible;
}

.single-equipe-template .biography-section .info ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #d6a54f;
}
.single-equipe-template .biography-section .description {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #475d5d;
}
.single-equipe-template .biography-section .profile {
  width: 640px;
  height: -moz-max-content;
  height: max-content;
  padding: 188px 20px 85px 20px;
  background-color: #0f2c2e;
  position: sticky;
  top: 0;
  overflow: hidden;
  isolation: isolate;
}
.single-equipe-template .biography-section .profile::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 288px 0 0 288px;
  border-color: transparent transparent transparent #755b5f;
  opacity: 1;
  z-index: -1;
}
.single-equipe-template .biography-section .profile::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0 0 350px 0;
  background-color: #f0f0e8;
  z-index: -3;
}
.single-equipe-template .biography-section .image {
  height: 458px;
  width: 294px;
  margin: 0 auto;
  overflow: hidden;
}
.single-equipe-template .biography-section .image::after {
  content: "";
  position: absolute;
  left: -800px;
  top: 0;
  width: 1243px;
  height: 443px;
  background-color: #fdfdfa;
  z-index: -2;
  border-radius: 0 0 700px 0;
}
.single-equipe-template .biography-section .image img {
  width: 100%;
  height: 100%;
}
.single-equipe-template .biography-section .switches {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 55px;
  margin: 0 auto;
}
.single-equipe-template .biography-section .accordion-item {
  color: #475d5d;
  border-bottom: 1px solid rgba(15, 44, 46, 0.1019607843);
}
.single-equipe-template .biography-section .accordion-item:first-child {
  border-top: 1px solid rgba(15, 44, 46, 0.1019607843);
  margin-top: 27px;
}
.single-equipe-template
  .biography-section
  .accordion-item
  .accordion-content
  ul
  li
  strong {
  display: flex;
}
.single-equipe-template
  .biography-section
  .accordion-item
  .accordion-content
  ul
  li::after {
  background-color: #0f2c2e;
  opacity: 0.5;
}

/* 
** Start Footer
*/
footer {
  background-color: #f0f0e8;
  padding: 55px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
footer .info {
  width: 575px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
footer .copyrights {
  width: 237px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  font-family: "acumin-pro", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: rgba(76, 41, 49, 0.7);
}
footer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer .wrapper a {
  font-weight: 600;
  text-decoration: underline;
}
footer .contact-us {
  width: 292px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
footer .contact-us .btn-primary {
  color: #4c2931;
  margin-top: 16px;
}
footer h2 {
  position: relative;
  isolation: isolate;
  padding-bottom: 10px;
  width: -moz-max-content;
  width: max-content;
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #475d5d;
  margin-bottom: 33px;
}
footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.1;
  width: 100%;
  height: 1px;
}
footer ul {
  display: flex;
  gap: 9px;
  margin-bottom: 25px;
}
footer ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #d6a54f;
}
footer .adresse-btn {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #475d5d;
}
footer .privacy {
	
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  color: #d6a54f;
  display: flex;
  gap: 24px;
	display:none;
}
footer .privacy a {
  text-decoration: underline;
  opacity: 0.8;
}
footer .contact-from {
  width: calc(100% - 661px);
}


/*
** 404
*/

.error-404 {
  min-height: 100vh;
  padding: 100px 0;
  background-color: #4c2931;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: radial-gradient(
  48.89% 127.08% at 49.97% 44.99%,
  #755b5f 0%,
  rgba(117, 91, 95, 0) 68.61%
);
  opacity: 0.6;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  width: 100%;
  height: 100%;
  pointer-events: none;
}


.error-404 .content {
  width: 636px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #f0f0e8;
}

.error-404 h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error-404 h1 span:first-child {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 45px;
  text-align: center;
  color: #d6a54f;
  text-transform: uppercase;
}

.error-404 h1 span:last-child {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 200px;
  text-align: center;
  text-transform: uppercase;
  color: #f0f0e8;
}

.error-404 p {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #f0f0e8;
  margin-bottom: 30px;
}

.error-404 .btn-primary {
  margin: 0 auto;
}

.error-404 .btn-primary:hover .icon {
  background-color: #d6a54f;
}

.error-404 .btn-primary:hover .icon svg path {
  stroke: #ffffff;
}

.error-404 .shape {
  position: absolute;
  top: 0;
  height: 100%;
}

.error-404 .shape svg {
  width: 100%;
  height: 100%;
}

.error-404 .shape.shape-right {
  right: 0;
}

.error-404 .shape.shape-left {
  left: 0;
}

/*
** Start Responsive 
*/


#moove_gdpr_cookie_info_bar.moove-gdpr-dark-scheme {
  background-color: #0f2c2e !important;
  border-top: 1px solid #d6a54f !important;
}

#moove_gdpr_cookie_modal .moove-gdpr-modal-content .moove-gdpr-modal-left-content .moove-gdpr-branding-cnt {
  display: none !important;
}

.equipe-template .hero-section .container {
  position: relative;
  z-index: 1;
}


.menu-mobile {
  display: flex;
  position: absolute;
  top: 0;
  z-index: 11;
  background: #f0f0e8;
  width: 100%;
  height: 115px;
  padding-top: 115px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: .5s ease-in-out;
  box-shadow: 0px 20px 40px rgba(76, 41, 49, 0.5);
}

.menu-mobile.active-menu {
  opacity: 1;
  height: 490px;
  visibility: visible;
}

.menu-mobile .menu-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 85px 20px 50px 20px;
  width: 100%;
  height: max-content;
}

.menu.menu-mobile a {
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  color: #46262d;
  transition: 0.5s ease-in-out;
  position: relative;
  isolation: isolate;
}

.logo-header.active-menu svg path.fill-color {
  fill: #4c2931 !important;
}

header .menu-icon.active-menu {
  gap: 0;
}

header .menu-icon.active-menu span {
  height: 1px;
}

@media screen and (max-width: 1300px) { 
  .loader::after {
    width: 10px;
  }
  .home-template .hero-section::after {
    width: 10px;
  }

  .home-template .hero-section h1 {
    font-size: 53px;
    line-height: 58px;
  }

  .home-template .about-section,
  .home-template .expertise-section,
  .home-template .equipe-section,
  .home-template .actualites-section  {
    padding: 70px 0;
  }

  header .header-container {
    padding: 0 20px;
  }

  header .menu-left {
    padding-left: 50px;
  }

  header .menu-right {
    padding-right: 50px;
  }

  header .menu {
    gap: 40px;
  }

  
}

@media screen and (max-width: 1200px) {

  .error-404 .shape {
    width: 40%;
  }

  .home-template .expertise-section .content {
    gap: 50px;
    flex-direction: column;
  }

  .home-template .expertise-section .title {
    margin: 0 auto;

  }

  .home-template .expertise-section .items {
    width: 655px;
    max-width: 100%;
    margin: 0 auto;
  }

  .home-template .equipe-section .content {
    flex-direction: column;
    gap: 50px;
  }

  .home-template .equipe-section .intro {
    width: 100%;
  }

  .home-template .equipe-section .team-items {
    max-width: 100%;
    width: 564px;
    flex-wrap: wrap;
    margin: 0 auto;
  }

  .home-template .actualites-section .wrapper {
    flex-direction: column;
  }

  .home-template .actualites-section .filtre {
    flex-direction: row;
    justify-content: space-evenly;
  }

  .home-template .actualites-section .news {
    width: 100%;
  }

  .home-template .actualites-section .item {
    width: calc(50% - 15px);
  }

  .single-template .details-section .switches {
    position: initial;
    max-width: 684px;
    margin: 0 auto 50px;
  }

  .single-equipe-template .biography-section .details-wrapper {
    width: 100%;
    padding-left: 0;
  }

  .join-us-section .shape {
    width: 40%;
  }
  
  .join-us-section .shape svg {
    width: 100%;
    height: auto;
  }

  .equipe-template .hero-section h1 {
    font-size: 38px;
    line-height: 54px;
  }

  .equipe-template .hero-section .labels span {
    font-size: 18px;
    line-height: 22px;
  }

}

@media screen and (max-width: 1024px) {

  header .menu-icon,
  header .menu-icon span  {
    transition: .3s ease-in-out;
  }

  .home-template .about-section .title,
  .home-template .about-section .description {
    width: 100%;
  }

  .home-template .about-section .btns-items {
    flex-direction: column;
  }

  .home-template .about-section .btns-items .btn-item {
    width: 360px;
    max-width: 100%;
    margin: 0 auto;
  }


  footer .container {
    position: relative;
    flex-direction: column;
    gap: 50px;
  }

  footer .info {
    width: 600px;
    margin: 0 auto;
  }

  footer .contact-from {
    width: 600px;
    margin: 0 auto;
  }

  .equipe-template .equipe-section .description {
    width: 100%;
    margin-top: 0;
  }

  .equipe-template .equipe-section .associate-items {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .equipe-template .equipe-section .teams {
    gap: 20px;
    max-width: 760px;
    margin: 70px auto 0;
  }

  body {
    overflow: auto;
  }

  .logo-header {
    left: 20px;
    transform: initial;
    top: 20px;
    opacity: 1;
    position: absolute;
    width: 120px;
    height: auto;
  }

  header .header-container {
    opacity: 1;
  }

  header .menu.menu-desktop {
    display: none;
  }

  header {
    top: 20px;
    position: absolute;
    height: 95px;
  }


  .single-template .hero-section {
    min-height: auto !important;
    padding: 200px 0 70px 0;
  }

  .equipe-template .hero-section {
    padding: 200px 0 70px 0;
  }

  .logo-header.pointer-events {
    pointer-events: auto;
  }

  header .menu-icon {
    width: 60px;
    height: 60px;
  }


  .single-template .details-section .description h2 {
    line-height: 30px;
    font-size: 20px;
  }


  .page-template-equipe header .menu-icon:not(.active-menu),
  .home header .menu-icon:not(.active-menu),
  .single-expertise header .menu-icon:not(.active-menu),
  .page-template-privacy header .menu-icon:not(.active-menu),
  .error404 header .menu-icon:not(.active-menu) {
    border-color: #f0f0e8;
  }

  .page-template-equipe header .menu-icon:not(.active-menu) span,
  .home header .menu-icon:not(.active-menu) span,
  .single-expertise header .menu-icon:not(.active-menu) span,
  .page-template-privacy header .menu-icon:not(.active-menu) span,
  .error404 header .menu-icon:not(.active-menu) span {
    background-color: #f0f0e8;
  }



  .join-us-section .shape {
    top: initial;
  }
  .join-us-section {
    justify-content: center;
  }

}

@media screen and (max-width: 768px) {
	
	
	.home-template .hero-section h1 {
		
	font-size : 25px !important;
	line-height : 35px !important;
		
	}
	
	
	.home-template .hero-section h1 span span.words {
		
	font-size : 15px;	
		
	}
	
	
	.home-template .hero-section h1 span span span:not(.words) {
		
	display : none;	
		
	}
	

  .single-equipe-template .biography-section .info ul li a,
  footer ul li a {
    width: 55px;
    height: 55px;
  }

  .single-equipe-template .biography-section .info ul li a svg,
  footer ul li a svg {
    scale: 1.2;
  }

  footer .contact-us {
    width: 100%;
  }

  .home-template .equipe-section::after {
    border-width: 0 200px 200px 0;
  }

  .error-404 h1 span:first-child {
    font-size: 30px;
    line-height: 40px;
  }

  .error-404 h1 span:last-child {
    font-size: 170px;
  }

  .error-404 {
    justify-content: flex-end;
  }

  .error-404 p {
    font-size: 14px;
    line-height: 24px;
  }

  .loader::after {
    width: 5px;
  }

  .home-template .about-section .btns-items .btn-item {
    padding: 34px 10px 0 125px;
  }

  .home-template .expertise-section h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .home-template .expertise-section .label {
    font-size: 16px;
    line-height: 26px;
  }

  .home-template .expertise-section .items a {
    font-size: 18px;
    line-height: 28px;
  }

  .home-template .equipe-section h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .home-template .actualites-section h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .home-template .actualites-section .item h3 {
    font-size: 18px;
    line-height: 28px;
  }

  .home-template .actualites-section .filtre .filter-item {
    font-size: 14px;
    line-height: 24px;
  }

  .home-template .actualites-section .filtre .label {
    font-size: 14px;
    line-height: 24px;
  }

  .home-template .hero-section h1 {
    font-size: 43px;
    line-height: 48px;
  }

  .home-template .about-section h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .home-template .hero-section::after {
    width: 5px;
  }
  
  .home-template .expertise-section .title {
    width: 100%;
  }

  .home-template .expertise-section .items {
    width: 100%;
  }

  .home-template .equipe-section .team-items {
    flex-direction: column;
    align-items: center;
  }

  .home-template .actualites-section .filtre .label {
    margin-bottom: 0;
  }

  .home-template .actualites-section .filtre {
    justify-content: initial;
    flex-wrap: wrap;
    gap: 10px 20px;
  }

  .home-template .actualites-section .item {
    width: 100%;
  }

  .home-template .actualites-section .filtre .filter-item {
    margin-bottom: 0;
  }

  .home-template .expertise-section h2 {
    flex-direction: column;
    margin-bottom: 25px;
  }
  .home-template .expertise-section .label {
    padding-left: 0;
  }

  footer .info {
    flex-direction: column;
    width: 100%;
    gap: 50px;
  }
  footer .contact-from {
    width: 100%;
    margin: 0 auto;
  }

  form .input-field {
    width: 100%;
    max-width: 100%;
    border-radius: 4px;
    overflow: hidden;
  }

  form .fields-wrapper {
    align-items: initial;
    flex-direction: column;
    gap: 10px;
  }
  
  footer .wrapper br {
    display: none;
  }

  footer .wrapper {
    position: absolute;
    bottom: -70px;
    left: 20px;
    flex-direction: row;
    gap: 5px;
    justify-content: space-between;
    width: calc(100% - 40px);
    flex-wrap: wrap;
  }

  footer {
    background-color: #f0f0e8;
    padding: 55px 0 100px 0;
  }

  footer h2 {
    width: 100%;
  }

  footer .copyrights {
    width: 237px;
    margin: 0 auto;
    text-align: center;
  }

  .home-template .hero-section .shape {
    width: 100%;
  }

  .single-template .hero-section .shape {
    width: 50%;
  }

  .single-template .hero-section .shape svg {
    width: 100%;
    height: auto;
  }

  .single-template .hero-section h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .single-template .hero-section span {
    font-size: 22px;
    line-height: 28px;
  }

  .single-template .details-section .intervention {
    padding: 65px 0;
    background: transparent;
    position: relative;
    isolation: isolate;
  }

  .single-template .details-section .intervention::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 0;
    width: calc(100% + 40px);
    height: 100%;
    background: linear-gradient(105.63deg, #0f2c2e 31.88%, #475d5d 105.86%);
    z-index: -1;
  }

  .accordions .accordion-item .accordion-header {
    font-size: 16px;
    line-height: 26px;
  }

  .accordions .accordion-item .accordion-content {
    font-size: 16px;
    line-height: 26px;
  }

  .single-equipe-template .biography-section .content {
    flex-direction: column-reverse;
  }
  .single-equipe-template .biography-section .profile {
    width: 100%;
    padding: 200px 20px 85px 20px;
    position: relative;
  }

  .single-equipe-template .biography-section .details {
    width: 100%;
    padding: 20px;
    overflow: hidden;
  }
  .single-equipe-template .biography-section .info {
    margin-bottom: 20px;
  }

  .join-us-section {
    min-height: initial;
    overflow: hidden;
  }

  .join-us-section h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .join-us-section .content {
    padding: 50px 0 120px 0;
  }

  .single-equipe-template .biography-section .profile::before {
    border-width: 195px 0 0 195px;
  }

  .single-equipe-template .biography-section .image::after {
    left: -45%;
    width: 100%;
    height: 370px;
  }

  .equipe-template .equipe-section .associate-items {
    flex-direction: column;
    width: 100%;
    align-items: center;

  }

  .equipe-template .equipe-section .teams {
    flex-direction: column;
    width: 100%;
    align-items: center;
    margin: 20px auto 0;
  }

  .equipe-template .hero-section::before {
    border-width: 150px 150px 0 0;
  }

  .equipe-template .hero-section h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .equipe-template .hero-section .labels span {
    font-size: 14px;
    line-height: 24px;
    padding-right: 15px;
  }

  .equipe-template .hero-section .labels {
    gap: 15px;
  }

  .equipe-template .equipe-section h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .equipe-item {
    width: 320px;
  }

  .equipe-item .image {
    width: 100%;
  }

  .equipe-template .equipe-section .equipe-item {
    height: 450px;
  }

}



