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

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


ul {
  list-style: none;
}

body {
  width: 100%;
  font-family: "Switzer", sans-serif;
}

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

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 17px;
  color: #252b3e;
}
.breadcrumb a:last-child {
  pointer-events: none;
}

/* 
** Start Header
*/
.cta-page {
  width: -moz-max-content;
  width: max-content;
  padding: 16px 24px;
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #252b3e;
  background-color: #ebece5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  position: relative;
  z-index: 1;
  transition: 0.5s;
}
.cta-page:hover {
  gap: 10px;
  -webkit-box-shadow: 3px 15px 24px -20px rgba(66, 68, 90, 1);
  -moz-box-shadow: 3px 15px 24px -20px rgba(66, 68, 90, 1);
  box-shadow: 3px 15px 24px -20px rgba(66, 68, 90, 1);
}
.cta-page strong {
  font-weight: 600;
}
.cta-page span {
  display: flex;
  gap: 5px;
}

header .cta-page:hover,
.related-posts .cta-page:hover {
  background-color: #d8d2c6;
  box-shadow: none !important;
}

header {
  height: 145px;
  padding: 0 45px 0 132px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 43px;
  position: relative;
  z-index: 5;
}
header .icon-menu {
  width: 90px;
  height: 118px;
  position: fixed;
  background-color: #ebece5;
  top: 27px;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
header .icon-menu::after {
  content: "";
  position: absolute;
  left: 0;
  top: -27px;
  width: 100%;
  height: 27px;
  background-color: #ca7c51;
}
header .icon-menu .line {
  position: absolute;
  width: 26px;
  height: 2px;
  background-color: #ca7c51;
  border-radius: 1px;
  transition: transform 0.3s ease;
}
header .icon-menu .line:nth-child(1) {
  transform: translateY(-5px);
}
header .icon-menu .line:nth-child(2) {
  transform: translateY(5px);
}
header .icon-menu.active .line:nth-child(1) {
  transform: rotate(45deg);
}
header .icon-menu.active .line:nth-child(2) {
  transform: rotate(-45deg);
}
header .logo {
  position: fixed;
  left: 132px;
  top: 43px;
  z-index: 2;
}
header .logo a {
  display: flex;
  width: 257px;
  height: 88px;
}
header .logo a svg {
  width: 100%;
  height: auto;
}

.menu-wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
  isolation: isolate;
  transition: 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.menu-wrapper.active {
  opacity: 1;
  visibility: visible;
}
.menu-wrapper .overlay {
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(37, 43, 62, 0.9019607843);
  width: 100%;
  height: 100%;
  z-index: -1;
}
.menu-wrapper .navbar-wrapper {
  padding-left: 90px;
  background-color: #ebece5;
  height: 553px;
  overflow: hidden;
}
.menu-wrapper .navbar {
  width: 100%;
  height: 100%;
  background-color: #d8d2c6;
  padding: 227px 62px 54px 62px;
  display: flex;
  gap: 20px;
  overflow: hidden;
}
.menu-wrapper .navbar-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 292px;
}
.menu-wrapper .navbar-items a {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 34px;
  color: #252b3e;
  transition: 0.5s;
}
.menu-wrapper .navbar-items a:hover {
  color: #ca7c51;
}
.menu-wrapper .navbar-expertises {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 515px;
}
.menu-wrapper .navbar-expertises h3 {
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  text-transform: uppercase;
  color: #ca7c51;
  margin-bottom: 16px;
}
.menu-wrapper .navbar-expertises a {
  width: max-content;
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 34px;
  text-decoration-line: underline;
  color: #252b3e;
}
.menu-wrapper .navbar-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 15px;
  width: 287px;
  height: -moz-max-content;
  height: max-content;
  padding-top: 69px;
}
.menu-wrapper .navbar-info a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #252b3e;
}
.menu-wrapper .navbar-info a span {
  display: flex;
  justify-content: center;
}
.menu-wrapper .navbar-info a span.icon {
  width: 39px;
  height: 39px;
  align-items: center;
}

.arrows {
  display: flex;
  gap: 1px;
}
.arrows .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  cursor: pointer;
  background-color: #d8d2c6;
  transition: 0.5s;
}

.arrows .arrow:hover {
  background-color: #d44e2e;
}

/* .arrows .arrow.arrow-prev {
  background-color: #d8d2c6;
}
.arrows .arrow.arrow-next {
  background-color: #d44e2e;
} */

.team-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.team-items .item {
  display: flex;
  flex-direction: column;
  gap: 23px;
  width: 250px;
}
.team-items .item:hover .image img {
  transform: scale(1.1);
}
.team-items .image {
  height: 314px;
  overflow: hidden;
  background: #252b3e;
}
.team-items .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  transition: 0.5s ease-in-out;
  transform: scale(1);
}
.team-items .info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-items h3 {
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 31px;
  color: #252b3e;
}
.team-items ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #252b3e;
}

.lets-meet-section {
  position: relative;
  isolation: isolate;
  background-color: rgba(235, 236, 228, 0.5019607843);
  padding: 48px 0;
  min-height: 149px;
}
.lets-meet-section .shape {
  position: absolute;
  top: 0;
  display: flex;
}
.lets-meet-section .shape.shape-1 {
  left: 0;
}
.lets-meet-section .shape.shape-2 {
  right: 0;
}
.lets-meet-section .content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lets-meet-section .cta-page-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 193px;
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #252b3e;
}

.lets-meet-section .cta-page-secondary .icon {
  transition: 0.5s;
}

.lets-meet-section .cta-page-secondary:hover .icon {
  transform: rotate(45deg);
}

/* 
** Start Home
*/
.home-page .hero-section {
  padding-top: 40px;
}
.home-page .hero-section .title {
  max-width: 600px;
  padding-bottom: 72px;
}
.home-page .hero-section h1 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 52px;
  line-height: 62px;
  color: #252b3e;
}
.home-page .hero-section .content {
  padding-left: 88px;
  padding-right: 66px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.home-page .hero-section .shape {
  display: flex;
}
.home-page .expertises-section {
  overflow-x: hidden;
}
.home-page .expertises-section .content {
  padding-left: 88px;
  padding-bottom: 50px;
}
.home-page .expertises-section .exp-image {
  position: relative;
  isolation: isolate;
  width: calc(100% + 44px);
  height: 615px;
  margin-left: auto;
}
.home-page .expertises-section .exp-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
}
.home-page .expertises-section .exp-image .shape {
  width: 551px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.home-page .expertises-section .exp-image .shape svg {
  width: 100%;
  height: auto;
}
.home-page .expertises-section .intro {
  margin-top: -180px;
  position: relative;
  z-index: 2;
}
.home-page .expertises-section .title {
  width: 742px;
  padding: 55px 83px 25px 1px;
  background-color: #fff;
}
.home-page .expertises-section .title h2 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #252b3e;
}
.home-page .expertises-section .description {
  width: 942px;
  max-width: 100%;
  margin-top: 37px;
  padding-left: 428px;
  padding-bottom: 53px;
  position: relative;
  isolation: isolate;
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #252b3e;
}
.home-page .expertises-section .description::after {
  content: "";
  position: absolute;
  left: 0;
  top: -11px;
  width: 320px;
  height: 1px;
  background-color: #ca7c51;
}
.home-page .expertises-section .expertises-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(408px, 1fr));
  gap: 20px;
}
.home-page .expertises-section .expertises-items .item {
  width: 408px;
  position: relative;
  isolation: isolate;
  display: flex;
}
.home-page .expertises-section .expertises-items .item:not(.shape) {
  background-color: rgba(235, 236, 228, 0.5019607843);
  padding-top: 30px;
  padding-left: 38px;
}
.home-page .expertises-section .expertises-items .item:not(.shape)::after {
  content: "";
  width: 8px;
  position: absolute;
  left: 0;
  top: 30px;
  background-color: var(--color-exp);
}
.home-page .expertises-section .expertises-items .item.shape {
  display: flex;
  justify-content: flex-end;
}
.home-page .expertises-section .expertises-items .item.shape.shape-1 {
  align-items: flex-end;
}
.home-page .expertises-section .expertises-items .item h3 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 41px;
  color: var(--color-exp);
  padding-right: 40px;
}
.home-page .expertises-section .expertises-items .item .icon {
  margin-top: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-left: auto;
  background-color: var(--color-exp);
}
.home-page .expertises-section .expertises-items .item .icon svg {
  transition: 0.5s;
}
.home-page .expertises-section .expertises-items .item:first-child::after {
  height: 386px;
}
.home-page .expertises-section .expertises-items .item:nth-child(2)::after {
  height: 210px;
}
.home-page .expertises-section .expertises-items .item:nth-child(5)::after {
  height: 155px;
}
.home-page .expertises-section .expertises-items .item:nth-child(6)::after {
  height: 110px;
}

.home-page .expertises-section .expertises-items .item-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 19px;
}
.home-page .expertises-section .expertises-items .item:not(.shape):hover svg {
  transform: rotate(45deg);
}
.home-page .expertises-section .expertises-items p {
  padding-right: 40px;
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  color: #252b3e;
}
.home-page .why-bossard-section .content {
  padding-left: 88px;
  padding-top: 50px;
  padding-bottom: 41px;
}
.home-page .why-bossard-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  line-height: 50px;
  color: #252b3e;
  margin-bottom: 28px;
  padding-left: 107px;
}
.home-page .why-bossard-section h2 strong {
  font-weight: 600;
}
.home-page .why-bossard-section .tabs-container {
  background: rgba(235, 236, 228, 0.5019607843);
  padding: 96px 107px 90px 107px;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  position: relative;
  isolation: isolate;
}
.home-page .why-bossard-section .tabs-container::after {
  content: "";
  position: absolute;
  left: 107px;
  top: 0;
  width: 207px;
  height: 7px;
  background-color: #252b3e;
}
.home-page .why-bossard-section .tabs-container::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 87px;
  height: 7px;
  background-color: #252b3e;
}
.home-page .why-bossard-section .tab-header {
  display: flex;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 35px;
}
.home-page .why-bossard-section .tab-number {
  margin-right: 18px;
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
}
.home-page .why-bossard-section .tab-line {
  flex: 1;
  height: 1px;
  margin-bottom: 4px;
}
.home-page .why-bossard-section .tabs {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 345px;
}
.home-page .why-bossard-section .tab {
  padding-left: 23px;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  position: relative;
  isolation: isolate;
}
.home-page .why-bossard-section .tab::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 51px;
  background-color: var(--active-color);
}
.home-page .why-bossard-section .tab.active {
  font-weight: 600;
}
.home-page .why-bossard-section .tab.active::after {
  width: 7px;
}
.home-page .why-bossard-section .content-area {
  width: 622px;
}
.home-page .why-bossard-section .tab-content {
  display: none;
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #252b3e;
}
.home-page .why-bossard-section .tab-content.active {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.home-page .why-bossard-section .tab-content .cta-page {
  margin-top: 40px;
  color: #f5f5f5;
  background-color: var(--active-color);
}
.home-page .testimonials-section .content {
  padding-left: 88px;
  padding-top: 41px;
  padding-bottom: 45px;
}
.home-page .testimonials-section .intro {
  display: flex;
  justify-content: space-between;
  align-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.home-page .testimonials-section .title {
  display: flex;
  align-items: center;
}
.home-page .testimonials-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  line-height: 50px;
  color: #252b3e;
  padding-left: 31px;
}
.home-page .testimonials-section .testimonials-items .testimonial-item {
  min-height: 398px;
  height: fit-content;
  width: 409px;
  padding: 30px 38px;
  background-color: rgba(235, 236, 228, 0.5019607843);
  display: flex;
  position: relative;
  isolation: isolate;
}
.home-page
  .testimonials-section
  .testimonials-items
  .testimonial-item:nth-child(3n + 1)::after {
  height: 309px;
  background-color: #e8d986;
}
.home-page
  .testimonials-section
  .testimonials-items
  .testimonial-item:nth-child(3n + 2)::after {
  height: 218px;
  background-color: #13625a;
}
.home-page
  .testimonials-section
  .testimonials-items
  .testimonial-item:nth-child(3n)::after {
  height: 85px;
  background-color: #8185b8;
}
.home-page .testimonials-section .testimonials-items .testimonial-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  width: 8px;
}
.home-page .testimonials-section .testimonials-items .testimonial-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.home-page .testimonials-section .testimonials-items .testimonial-text {
  font-family: "Switzer", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  color: #252b3e;

  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  transition: all 0.3s ease;
}

.home-page
  .testimonials-section
  .testimonials-items
  .testimonial-text.expanded {
  -webkit-line-clamp: unset;
  overflow: visible;
}
.home-page .testimonials-section .testimonials-items .show-toggle {
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #252b3e;
  cursor: pointer;
}

.home-page .testimonials-section .testimonials-items h3 {
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #252b3e;
}
.home-page .testimonials-section .testimonials-items span {
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #252b3e;
}
.home-page .team-section .content {
  padding-top: 45px;
  padding-left: 88px;
}
.home-page .team-section .wrapper {
  padding: 53px 0 80px 107px;
  background: linear-gradient(
    135.65deg,
    rgba(235, 236, 229, 0.5) 0%,
    rgba(235, 236, 229, 0) 62.59%
  );
  position: relative;
  isolation: isolate;
}
.home-page .team-section .wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 57px;
  width: 8px;
  height: 140px;
  background-color: #d44e2e;
}
.home-page .team-section .intro {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 48px;
}
.home-page .team-section .title {
  width: 100%;
}
.home-page .team-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #252b3e;
}
.home-page .team-section .link {
  width: 166px;
}
.home-page .team-section .cta-page {
  color: #ebece5;
  background-color: #d44e2e;
}
.home-page .team-section .description {
  width: 661px;
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #252b3e;
}
.home-page .team-section .team-items {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-top: 80px;
}

/*
** Equipe
*/
.equipe-page {
  position: relative;
  isolation: isolate;
}
.equipe-page::after {
  content: "";
  width: 100%;
  height: calc(100% + 150px);
  position: absolute;
  left: 0;
  top: -150px;
  background-color: rgba(235, 236, 228, 0.5019607843);
  z-index: -1;
  pointer-events: none;
}
.equipe-page .breadcrumb {
  padding-left: 60px;
  width: 100%;
}
.equipe-page .hero-section {
  padding-top: 58px;
  padding-bottom: 45px;
  position: relative;
  z-index: 1;
}
.equipe-page .hero-section .content {
  padding-left: 88px;
}
.equipe-page .hero-section .wrapper {
  position: relative;
  isolation: isolate;
  padding-top: 40px;
  padding-right: 33px;
  padding-bottom: 336px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.equipe-page .hero-section .wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135.65deg,
    rgba(235, 236, 229, 0.5) 0%,
    rgba(235, 236, 229, 0) 62.59%
  );
  z-index: -1;
  pointer-events: none;
}
.equipe-page .hero-section h1 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 52px;
  line-height: 57px;
  color: #252b3e;
}
.equipe-page .hero-section .title {
  margin-top: 61px;
  padding-left: 60px;
  position: relative;
  isolation: isolate;
  width: 449px;
  display: flex;
  align-items: center;
}
.equipe-page .hero-section .title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background-color: #d44e2e;
  pointer-events: none;
}
.equipe-page .hero-section .intro {
  width: 580px;
  min-height: 200px;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: 40px;
  margin-top: -20px;
}
.equipe-page .hero-section .intro .splide__pagination {
  bottom: -50px;
}
.equipe-page .hero-section .intro .splide__pagination__page {
  transform: scale(1) !important;
}
.equipe-page .hero-section .intro .splide__pagination__page.is-active {
  background-color: #d44e2e;
}
.equipe-page .hero-section .splide__track {
  height: 100%;
}
.equipe-page .hero-section .intro::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background-color: #e8d986;
  pointer-events: none;
}
.equipe-page .hero-section .splide__slide {
  display: flex;
  flex-direction: column;
  /*   justify-content: space-between; */
  gap: 30px;
}
.equipe-page .hero-section .text {
  font-family: "Switzer", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  color: #252b3e;
}
.equipe-page .hero-section .info {
  width: 540px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.equipe-page .hero-section h2 {
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  color: #252b3e;
}
.equipe-page .hero-section ul:not(.splide__pagination) {
  display: flex;
  flex-direction: column;
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  color: #252b3e;
}
.equipe-page .equipe-section {
  background-color: #ffffff;
  position: relative;
  z-index: 2;
}
.equipe-page .equipe-section .shape {
  display: flex;
  justify-content: flex-end;
}
.equipe-page .equipe-section .wrapper {
  margin-top: -300px;
}
.equipe-page .equipe-section .content {
  width: 1129px;
  margin: 0 auto;
  max-width: 100%;
}
.equipe-page .equipe-section .team-items {
  gap: 19px;
  min-height: 300px;
}
.message {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 22px;
  line-height: 30px;
  color: #252b3e;
}
.equipe-page .equipe-section .team-items .item {
  width: 267px;
}
.equipe-page .equipe-section .filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.equipe-page .equipe-section .filters .line {
  display: flex;
}
.equipe-page .equipe-section .filters .filter {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #252b3e;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.equipe-page .equipe-section .filters .filter.active,
.equipe-page .equipe-section .filters .filter:hover {
  color: #13625a;
}
.equipe-page .join-us-section {
  background-color: #ffffff;
  overflow: hidden;
}
.equipe-page .join-us-section .container {
  display: flex;
  justify-content: space-between;
  position: relative;
  isolation: isolate;
}
.equipe-page .join-us-section .content {
  padding-left: 88px;
  width: 100%;
}
.equipe-page .join-us-section .wrapper {
  width: 100%;
  padding: 60px 0 83px 90px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px 20px;
  position: relative;
  isolation: isolate;
}
.equipe-page .join-us-section .wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% + 44px);
  height: 100%;
  background: linear-gradient(
    135.65deg,
    rgba(235, 236, 229, 0.5) 0%,
    rgba(235, 236, 229, 0) 62.59%
  );
  z-index: -1;
  pointer-events: none;
}
.equipe-page .join-us-section .shape {
  display: flex;
  position: absolute;
  right: 182px;
  top: 0;
}
.equipe-page .join-us-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 42px;
  line-height: 50px;
  color: #252b3e;
  width: 100%;
}
.equipe-page .join-us-section h2 strong {
  font-weight: 600;
  display: flex;
}
.equipe-page .join-us-section .cta-page {
  background-color: #ca7c51;
  color: #f5f5f5;
}
.equipe-page .join-us-section .cta-page:last-child {
  background-color: #d44e2e;
}

.news-items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.news-items .item {
  width: 392px;
  min-height: 458px;
  display: flex;
  padding-top: 28px;
  background-color: rgba(235, 236, 229, 0.5019607843);
}
.news-items .item:nth-child(3n + 1) {
  --item-color: #adab81;
}
.news-items .item:nth-child(3n + 2) {
  --item-color: #d44e2e;
}
.news-items .item:nth-child(3n) {
  --item-color: #8dced3;
}
.news-items .icon {
  width: 61px;
  height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  background-color: var(--item-color);
}
.news-items .icon svg {
  transition: 0.5s;
}
.news-items .item:hover .icon svg {
  transform: rotate(45deg);
}
.news-items .item-wrapper {
  padding-left: 38px;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-items .item-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 265px;
  background-color: var(--item-color);
}
.news-items .info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 38px;
}
.news-items .date {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 15;
  line-height: 20px;
  color: var(--item-color);
}
.news-items h2 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 29px;
  color: var(--item-color);
  margin-bottom: 5px;
}
.news-items p {
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 19px;
  line-height: 27px;
  color: #252b3e;
}

/*
** Actualites
*/
.actualites-page {
  position: relative;
  isolation: isolate;
}
.actualites-page::after {
  content: "";
  width: 100%;
  height: calc(100% + 150px);
  position: absolute;
  left: 0;
  top: -150px;
  background-color: rgba(235, 236, 228, 0.5019607843);
  z-index: -1;
  pointer-events: none;
}
.actualites-page .breadcrumb {
  padding-left: 60px;
  width: 100%;
}
.actualites-page .hero-section {
  padding-top: 58px;
  position: relative;
  z-index: 1;
}
.actualites-page .hero-section .content {
  padding-left: 88px;
}
.actualites-page .hero-section .wrapper {
  position: relative;
  isolation: isolate;
  padding-top: 40px;
  padding-right: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.actualites-page .hero-section .wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135.65deg,
    rgba(235, 236, 229, 0.5) 0%,
    rgba(235, 236, 229, 0) 62.59%
  );
  z-index: -1;
  pointer-events: none;
}
.actualites-page .hero-section h1 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 52px;
  line-height: 57px;
  color: #252b3e;
}
.actualites-page .hero-section .title {
  margin-top: 61px;
  padding-left: 60px;
  position: relative;
  isolation: isolate;
  width: 449px;
  display: flex;
  align-items: center;
  height: -moz-max-content;
  height: max-content;
}
.actualites-page .hero-section .title::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 125px;
  background-color: #13625a;
  pointer-events: none;
}
.actualites-page .hero-section .last-post {
  position: relative;
  isolation: isolate;
  padding: 45px;
  width: 640px;
  min-height: 369px;
  background-color: rgba(235, 236, 229, 0.5019607843);
}
.actualites-page .hero-section .last-post .shape {
  display: flex;
  position: absolute;
  top: 0;
  right: -66px;
}
.actualites-page .hero-section .last-post-details {
  padding-left: 45px;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  width: 436px;
  padding-top: 40px;
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  color: #252b3e;
}
.actualites-page .hero-section .last-post-details::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
  width: 100%;
  background-color: #ca7c51;
}
.actualites-page .hero-section .last-post-details::after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  width: 10px;
  height: 123px;
  background-color: #ca7c51;
}
.actualites-page .hero-section .last-post-details .date {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  color: #ca7c51;
  text-transform: capitalize;
}
.actualites-page .hero-section .cta-page {
  margin-top: 60px;
  margin-left: 5px;
  background-color: #ca7c51;
  color: #f5f5f5;
  width: 185px;
  justify-content: center;
}
.actualites-page .news-section {
  padding-top: 35px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.actualites-page .news-section .content {
  padding-left: 88px;
}
.actualites-page .news-section .filters-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 70px;
}
.actualites-page .news-section .filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.actualites-page .news-section .filter {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #252b3e;
  cursor: pointer;
}
.actualites-page .news-section .filter.active {
  font-weight: 600;
  color: #13625a;
}
.actualites-page .news-section #theme-filter .filter.active {
  color: #ca7c51;
}
.actualites-page .news-section #news-filter .label {
  margin-right: 15px;
}
.actualites-page .news-section .line {
  display: flex;
}
.actualites-page .news-section .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 105px;
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  color: #252b3e;
}

.share {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.share .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 13px;
  color: #ca7c51;
}
.share .item span {
  display: flex;
}

.share .item {
  cursor: pointer;
}

.related-posts {
  background-color: #ffffff;
  padding: 52px 0 83px 0;
}
.related-posts .content {
  padding-left: 88px;
}
.related-posts .intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  padding-left: 31px;
  padding-right: 8px;
}
.related-posts .intro h2 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 42px;
  line-height: 50px;
  color: #252b3e;
}

/*
** Single Equipe
*/
.single-equipe-page .hero-section {
  padding-top: 40px;
  position: relative;
  isolation: isolate;
}
.single-equipe-page .hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: -185px;
  height: calc(100% + 185px);
  width: 100%;
  background-color: rgba(235, 236, 228, 0.5019607843);
  z-index: -1;
}
.single-equipe-page .hero-section .arrows .arrow {
  width: 70px;
  height: 125px;
}
.single-equipe-page .hero-section .content {
  width: 1176px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.single-equipe-page .hero-section .back-btn {
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  position: absolute;
  top: 30px;
  left: 0;
  text-decoration: underline;
  z-index: 10;
}
.single-equipe-page .hero-section .wrapper {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
}
.single-equipe-page .hero-section .shape {
  position: absolute;
  display: flex;
}
.single-equipe-page .hero-section .shape.shape-1 {
  right: -22px;
  bottom: 0;
}
.single-equipe-page .hero-section .shape.shape-2 {
  right: -147px;
  top: 370px;
  width: 169px;
  z-index: -1;
}
.single-equipe-page .hero-section .shape.shape-2 svg {
  width: 100%;
  height: auto;
}
.single-equipe-page .hero-section .profile {
  padding-right: 22px;
  display: flex;
  width: 558px;
  position: relative;
  isolation: isolate;
  left: -15px;
  min-height: 914px;
}
.single-equipe-page .hero-section .profile::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 185px;
  background-color: #d44e2e;
}
.single-equipe-page .hero-section .profile::before {
  content: "";
  position: absolute;
  top: 0;
  right: -22px;
  width: 22px;
  height: 185px;
  background-color: #ca7c51;
}
.single-equipe-page .hero-section .image {
  width: 395px;
  height: 545px;
  position: relative;
  isolation: isolate;
}
.single-equipe-page .hero-section .image::after {
  content: "";
  position: absolute;
  top: 185px;
  right: 0;
  width: 22px;
  height: 184px;
  background-color: #801e20;
}
.single-equipe-page .hero-section .image::before {
  content: "";
  position: absolute;
  top: 431px;
  left: 0;
  width: 22px;
  height: 298px;
  background-color: #d8d2c6;
}
.single-equipe-page .hero-section .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.single-equipe-page .hero-section .details {
  width: 631px;
  padding-top: 101px;
  padding-bottom: 50px;
}
.single-equipe-page .hero-section h1 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  color: #252b3e;
  max-width: 450px;
  margin-bottom: 22px;
}
.single-equipe-page .hero-section .status {
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 31px;
  color: #252b3e;
  display: flex;
  margin-bottom: 22px;
}
.single-equipe-page .hero-section .contacts {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-right: 92px;
  position: relative;
  isolation: isolate;
  margin-bottom: 35px;
  z-index: 5;
}
.single-equipe-page .hero-section .contacts .hover-link {
  position: relative;
}
.single-equipe-page .hero-section .contacts .hover-link .hover-details {
  position: absolute;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #13625a;
  padding: 10px 22px;
  top: 50px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 3;
}
.single-equipe-page .hero-section .contacts .hover-link .hover-details .value {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #ebece5;
}
.single-equipe-page .hero-section .contacts .hover-link .hover-details .icon {
  height: 16px;
  cursor: pointer;
}
.single-equipe-page .hero-section .contacts .hover-link:hover .hover-details {
  opacity: 1;
  visibility: visible;
}
.single-equipe-page .hero-section .contacts::after {
  content: "";
  position: absolute;
  left: 0;
  width: 52%;
  height: 1px;
  background-color: #adab81;
}
.single-equipe-page .hero-section .contacts .btn {
  width: 48px;
  height: 48px;
  background-color: #13625a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-equipe-page .hero-section .expertises {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 33px;
}
.single-equipe-page .hero-section .expertises a {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #252b3e;
  position: relative;
  isolation: isolate;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-equipe-page .hero-section .expertises a::after,
.single-equipe-page .hero-section .expertises a::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 13px;
  background-color: var(--color-exp);
}
.single-equipe-page .hero-section .expertises a::after {
  left: 0;
}
.single-equipe-page .hero-section .expertises a::before {
  right: 0;
}
.single-equipe-page .hero-section .description {
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #252b3e;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.single-equipe-page .background-section {
  background-color: #ffffff;
  padding: 63px 0;
}
.single-equipe-page .background-section .content {
  padding-left: 88px;
}
.single-equipe-page .background-section .tabs-wrapper {
  background-color: rgba(235, 236, 229, 0.5019607843);
  padding: 75px 107px 110px;
  display: flex;
  justify-content: space-between;
  position: relative;
  isolation: isolate;
  min-height: 513px;
}
.single-equipe-page .background-section .tabs-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 75px;
  width: calc(100% - 214px);
  margin: 0 auto;
  height: 1px;
  background-color: #adab81;
}
.single-equipe-page .background-section .tabs-wrapper::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 87px;
  height: 7px;
  background-color: #252b3e;
}
.single-equipe-page .background-section .background-tabs {
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-top: 50px;
}
.single-equipe-page .background-section .tab {
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 26px;
  line-height: 34px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding-left: 23px;
  transition: 0.5s ease-in-out;
}
.single-equipe-page .background-section .tab.active {
  color: #ca7c51;
}
.single-equipe-page .background-section .tab.active::after {
  background-color: #ca7c51;
}
.single-equipe-page .background-section .tab {
  color: #adab81;
}
.single-equipe-page .background-section .tab::after {
  background-color: #adab81;
}
.single-equipe-page .background-section .tab::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  height: 51px;
  transition: 0.5s ease-in-out;
}
.single-equipe-page .background-section .tab.active {
  font-weight: 600;
}
.single-equipe-page .background-section .tab.active::after {
  width: 7px;
}
.single-equipe-page .background-section .tabs-content {
  width: 537px;
  margin-top: 50px;
}
.single-equipe-page .background-section .tab-content {
  display: none;
  flex-direction: column;
  gap: 20px;
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #252b3e;
}
.single-equipe-page .background-section .tab-content.active {
  display: flex;
}

.single-equipe-page .background-section .tab-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.single-equipe-page .background-section .tab-content ul li {
  padding-left: 20px;
  position: relative;
}

.single-equipe-page .background-section .tab-content ul li:after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 50%;
  background-color: #252b3e;
}

/*
** Single Actualites
*/
.single-post-page {
  position: relative;
  isolation: isolate;
}
.single-post-page::after {
  content: "";
  width: 100%;
  height: calc(100% + 150px);
  position: absolute;
  left: 0;
  top: -150px;
  background-color: rgba(235, 236, 228, 0.5019607843);
  z-index: -1;
  pointer-events: none;
}
.single-post-page .breadcrumb {
  padding-left: 60px;
  width: 100%;
}
.single-post-page .hero-section {
  padding-top: 58px;
  position: relative;
  z-index: 1;
}
.single-post-page .hero-section .content {
  padding-left: 88px;
}
.single-post-page .hero-section .details {
  padding-left: 60px;
  width: 810px;
}
.single-post-page .hero-section .wrapper {
  position: relative;
  isolation: isolate;
  padding-top: 40px;
  padding-right: 6px;
  padding-bottom: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.single-post-page .hero-section .wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135.65deg,
    rgba(235, 236, 229, 0.5) 0%,
    rgba(235, 236, 229, 0) 62.59%
  );
  z-index: -1;
  pointer-events: none;
}
.single-post-page .hero-section .date {
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 28px;
  color: #252b3e;
}
.single-post-page .hero-section h1 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  color: #252b3e;
}
.single-post-page .hero-section .title {
  margin-top: 45px;
  position: relative;
  isolation: isolate;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}
.single-post-page .hero-section .description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #252b3e;
}
.single-post-page .hero-section .description h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
}
.single-post-page .hero-section .description p:first-child {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
}
.single-post-page .hero-section .switches {
  width: 344px;
  position: relative;
  isolation: isolate;
  height: 800px;
  position: sticky;
  top: 77px;
}
.single-post-page .hero-section .shape {
  display: flex;
  position: absolute;
  right: -50px;
  top: -77px;
  z-index: -1;
}
.single-post-page .hero-section .arrows {
  margin-top: -17px;
  margin-left: 12px;
}
.single-post-page .hero-section .arrows .arrow {
  width: 70px;
  height: 125px;
}

/*
** Single Expertises
*/
.single-expertise-page {
  position: relative;
  isolation: isolate;
}
.single-expertise-page::after {
  content: "";
  width: 100%;
  height: calc(100% + 150px);
  position: absolute;
  left: 0;
  top: -150px;
  background-color: rgba(235, 236, 228, 0.5019607843);
  z-index: -1;
  pointer-events: none;
}
.single-expertise-page .breadcrumb {
  padding-left: 60px;
  width: 100%;
}
.single-expertise-page .hero-section {
  padding-top: 58px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.single-expertise-page .hero-section .content {
  padding-left: 88px;
}
.single-expertise-page .hero-section .details {
  padding-left: 60px;
  width: 631px;
}
.single-expertise-page .hero-section .wrapper {
  position: relative;
  isolation: isolate;
  padding-top: 40px;
  padding-right: 6px;
  padding-bottom: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 780px;
}
.single-expertise-page .hero-section h1 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  color: #252b3e;
}
.single-expertise-page .hero-section .title {
  margin-top: 45px;
  position: relative;
  isolation: isolate;
  width: 100%;
  margin-bottom: 40px;
}
.single-expertise-page .hero-section .description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 78px;
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #252b3e;
}
.single-expertise-page .hero-section .description h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
}
.single-expertise-page .hero-section .switches {
  width: 551px;
  position: relative;
  isolation: isolate;
  height: 678px;
}
.single-expertise-page .hero-section .shape {
  display: flex;
  position: absolute;
  right: -50px;
  top: -77px;
  z-index: -1;
}
.single-expertise-page .related-posts {
  padding: 110px 0;
}
.single-expertise-page .interventions-section {
  background-color: #ffffff;
  padding: 57px 0 64px 0;
}
.single-expertise-page .interventions-section .content {
  padding-left: 88px;
}
.single-expertise-page .interventions-section .wrapper {
  background-color: rgba(235, 236, 229, 0.5019607843);
  padding: 60px 107px 95px 107px;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.single-expertise-page .interventions-section .wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: calc(100% - 214px);
  height: 1px;
  background-color: #adab81;
}
.single-expertise-page .interventions-section .wrapper::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 87px;
  height: 7px;
  background-color: #252b3e;
}
.single-expertise-page .interventions-section .title {
  width: 345px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.single-expertise-page .interventions-section h2 {
  position: relative;
  isolation: isolate;
  padding-left: 23px;
  display: flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  line-height: 34px;
  color: #adab81;
}
.single-expertise-page .interventions-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  background-color: #adab81;
  width: 7px;
  height: 51px;
}
.single-expertise-page .interventions-section .content-wrapper {
  width: 537px;
  padding-top: 7px;
}
.single-expertise-page .interventions-section .detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #252b3e;
}
.single-expertise-page .interventions-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.single-expertise-page .interventions-section ul li {
  position: relative;
  padding-left: 15px;
}
.single-expertise-page .interventions-section ul li::after {
  content: "";
  position: absolute;
  left: 0;
  top: 8.5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #252b3e;
}
.single-expertise-page .next-post-section {
  position: relative;
  isolation: isolate;
  background-color: rgba(235, 236, 228, 0.5019607843);
}
.single-expertise-page .next-post-section .shape {
  position: absolute;
  top: 0;
  display: flex;
}
.single-expertise-page .next-post-section .shape.shape-1 {
  left: 0;
}
.single-expertise-page .next-post-section .shape.shape-2 {
  right: 0;
}
.single-expertise-page .next-post-section .content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 96px;
}
.single-expertise-page .next-post-section .cta-page-secondary {
  min-height: 149px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 78px;
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 41px;
  color: var(--color-exp);
  position: relative;
  isolation: isolate;
  padding-left: 120px;
}
.single-expertise-page .next-post-section .cta-page-secondary::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 100%;
  background-color: var(--color-exp);
}
.single-expertise-page .next-post-section .icon {
  width: 141px;
  height: 149px;
  background-color: var(--color-exp);
  display: flex;
  align-items: center;
  padding-left: 23px;
}

/* 
** Start Mentions Legales
*/
.ml {
  position: relative;
  isolation: isolate;
}
.ml::after {
  content: "";
  width: 100%;
  height: calc(100% + 150px);
  position: absolute;
  left: 0;
  top: -150px;
  background-color: rgba(235, 236, 228, 0.5019607843);
  z-index: -1;
  pointer-events: none;
}
.ml .breadcrumb {
  padding-left: 60px;
  width: 100%;
}
.ml .hero-section {
  padding-top: 58px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.ml .hero-section .content {
  padding-left: 88px;
}
.ml .hero-section .details {
  padding-left: 60px;
  width: 631px;
}
.ml .hero-section .wrapper {
  position: relative;
  isolation: isolate;
  padding-top: 40px;
  padding-right: 6px;
  padding-bottom: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 780px;
}
.ml .hero-section h1 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  color: #252b3e;
}
.ml .hero-section .title {
  margin-top: 45px;
  position: relative;
  isolation: isolate;
  width: 100%;
  margin-bottom: 40px;
}
.ml .hero-section .description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 78px;
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  color: #252b3e;
}
.ml .hero-section .description h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
}
.ml .hero-section .switches {
  width: 551px;
  position: relative;
  isolation: isolate;
  height: 678px;
}
.ml .hero-section .shape {
  display: flex;
  position: absolute;
  right: -50px;
  top: -77px;
  z-index: -1;
}

/* 
** Start 404
*/
.error {
  position: relative;
  isolation: isolate;
}
.error::after {
  content: "";
  width: 100%;
  height: calc(100% + 150px);
  position: absolute;
  left: 0;
  top: -150px;
  background-color: rgba(235, 236, 228, 0.5019607843);
  z-index: -1;
  pointer-events: none;
}
.error .breadcrumb {
  padding-left: 60px;
  width: 100%;
}
.error .hero-section {
  padding-top: 58px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.error .hero-section .content {
  padding-left: 88px;
}
.error .hero-section .details {
  padding-left: 60px;
  width: 631px;
}
.error .hero-section .wrapper {
  position: relative;
  isolation: isolate;
  padding-top: 40px;
  padding-right: 6px;
  padding-bottom: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  min-height: 780px;
}
.error .hero-section h1 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  color: #252b3e;
}
.error .hero-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 110px;
  line-height: 100px;
  color: #252b3e;
}
.error .hero-section p {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #252b3e;
}
.error .hero-section .title {
  margin-top: 45px;
  position: relative;
  isolation: isolate;
  width: 100%;
  margin-bottom: 40px;
}
.error .hero-section .switches {
  width: 551px;
  position: relative;
  isolation: isolate;
  height: 678px;
}
.error .hero-section .shape {
  display: flex;
  position: absolute;
  right: -50px;
  top: -77px;
  z-index: -1;
}

/* 
** Start Contact form
*/
.contactPage {
  position: relative;
  isolation: isolate;
}
.contactPage::after {
  content: "";
  width: 100%;
  height: calc(100% + 150px);
  position: absolute;
  left: 0;
  top: -150px;
  background-color: rgba(235, 236, 228, 0.5019607843);
  z-index: -1;
  pointer-events: none;
}
.contactPage .breadcrumb {
  padding-left: 60px;
  width: 100%;
}
.contactPage .hero-section {
  padding-top: 58px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.contactPage .hero-section .content {
  padding-left: 88px;
}
.contactPage .hero-section .details {
  padding-left: 60px;
  width: 631px;
}
.contactPage .hero-section .wrapper {
  position: relative;
  isolation: isolate;
  padding-top: 40px;
  padding-right: 6px;
  padding-bottom: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contactPage .hero-section h1 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  color: #252b3e;
}
.contactPage .hero-section h2 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 110px;
  line-height: 100px;
  color: #252b3e;
}
.contactPage .hero-section p {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #252b3e;
}
.contactPage .hero-section .title {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin-bottom: 40px;
}
.contactPage .hero-section .switches {
  width: 551px;
  position: relative;
  isolation: isolate;
  height: 678px;
}
.contactPage .hero-section .shape {
  display: flex;
  position: absolute;
  right: -50px;
  top: -77px;
  z-index: -1;
}
.contactPage .field-input,
.contactPage .field-textarea {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.contactPage .field-input label,
.contactPage .field-textarea label {
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #252b3e;
}

.contactPage .field-input input,
.contactPage .field-textarea textarea {
  width: 100%;
  padding: 10px 15px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  outline: none;
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #252b3e;
}

.contactPage .field-input input::placeholder,
.contactPage .field-textarea textarea::placeholder {
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #252b3e;
}

.contactPage .field-textarea textarea {
  height: 100px;
}

.contactPage .checkbox_submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.contactPage .checkbox {
  width: 375px;
  max-width: 100%;
  display: flex;
  align-items: center;
  padding-left: 15px;
}
.contactPage .checkbox label {
  font-family: "Switzer", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #252b3e;
  cursor: pointer;
  position: relative;
}
.contactPage .checkbox label a {
  color: #252b3e;
  text-decoration: underline;
}
.contactPage .checkbox input {
  z-index: 9;
  width: 0 !important;
  left: 0;
  height: 0 !important;
  margin-right: 25px;
  float: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contactPage .checkbox label:before {
  display: block;
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  top: 3px;
  left: -30px;
  background-color: #fff;
}
.contactPage .checkbox input:checked:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  left: -30px;
  top: 3px;
  background-color: #252b3e;
  transition: 0.5s;
}

.contactPage button {
  outline: none;
  border: none;
  cursor: pointer;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 15px !important;
  font-weight: normal;
  display: block;
  padding-top: 5px;
}

.wpcf7-response-output {
  font-family: "Switzer", sans-serif;
  font-style: normal !important;
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #252b3e !important;
  margin: 20px 0 !important;
  padding: 0 !important;
  border: none !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 
** Start Footer
*/
footer {
  display: flex;
}
footer .footer-logo {
  width: 27%;
  background-color: #ca7c51;
  color: #ebece5;
  padding: 53px 45px 47px 50px;
  display: flex;
  flex-direction: column;
  gap: 51px;
}
footer .copyrights {
  text-align: right;
}
footer .copyrights p {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}
footer .copyrights a {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  color: #f5f5f2;
}
footer .footer-menu {
  width: 46%;
  background-color: #d8d2c6;
  color: #252b3e;
  padding: 53px 45px 47px 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
footer .footer-menu h2 {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #252b3e;
}
footer .footer-menu a {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #252b3e;
}
footer .menu {
  width: 195px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .expertises {
  width: 338;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .privacy {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .privacy a {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  opacity: 0.6;
  width: -moz-max-content;
  width: max-content;
}
footer .footer-info {
  width: 27%;
  background-color: #13625a;
  color: #ebece5;
  padding: 53px 45px 47px 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer .footer-info a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  width: -moz-max-content;
  width: max-content;
}
footer .footer-info a span {
  display: flex;
}
footer .footer-info a span.icon {
  width: 39px;
  height: 39px;
  background-color: rgba(216, 210, 197, 0.1019607843);
  align-items: center;
  justify-content: center;
}
.grecaptcha-badge{
	display:none;
}
