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

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

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

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

a.btn-back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  background: #ffbf00;
  z-index: 99;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: .5s ease-in-out;
}

.wpml-ls-legacy-list-horizontal,
.otgs-development-site-front-end {
  display: none;
}

body {
  width: 100%;
  font-family: "aktiv-grotesk-extended", sans-serif;
}

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

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

.empty-message {
  grid-column: 1 / -1;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-align: center;
}

.btn-contact.with-hover {
  position: relative;
  isolation: isolate;
}

.btn-contact.with-hover .icon-info {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 55px;
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 5px;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease-in-out;
}

.btn-contact.with-hover:hover .icon-info {
  opacity: 1;
  pointer-events: initial;
}

.btn-contact.with-hover .icon-info span {
  display: flex;
  font-size: 14px;
}

.btn-contact.with-hover .icon-info span.copytext {
  gap: 10px;
}

div#mobileDropdown {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  width: 100%;
}

div#mobileBtn {
  display: none;
}

/* 
** Start Header
*/
header {
  color: #212326;
  width: 100%;
  height: 222px;
  position: absolute;
  z-index: 15;
  left: 0;
  top: 0;
}

header.header-white {
  color: #ffffff;
}

header.header-white .logo svg path:not(.line) {
  fill: #ffffff;
}

header .header-container {
  padding: 0 60px;
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  isolation: isolate;
}

header .menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

header .menu ul {
  display: flex;
  gap: 50px;
  padding-top: 78px;
}

header .menu ul li {
  position: relative;
  isolation: isolate;
  height: -moz-fit-content;
  height: fit-content;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
}

header .menu ul li a.active {
  font-weight: 600;
}

header .menu ul li.active::after {
  opacity: 1;
}

body.single-post .menu ul.right li:first-child::after,
body.single-equipes .menu ul.left li:nth-child(2)::after,
body.single-expertise .menu ul.left li:last-child::after {
  opacity: 1;
}

header .menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f8c200;
  opacity: 0;
  transition: 0.5s ease-in-out;
}

header .logo {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 54px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}

/*
** Menu Mobile
*/
body.page-template-equipe .menu-btn,
body.single .menu-btn,
body.page-template-privacy .menu-btn,
body.error404 .menu-btn {
  background: #484d5614;
  color: #212326;
}

body.page-template-equipe .hamburger span,
body.single .hamburger span,
body.page-template-privacy .hamburger span,
body.error404 .hamburger span {
  background: #212326;
}

.menu-btn {
  width: 126px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto;
  background: #ffffff1a;
  color: #f8c200;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 4;
}

.hamburger {
  width: 20px;
  height: 14px;
  position: relative;
}

.hamburger span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #f8c200;
  left: 0;
  transition: 0.3s ease;
}

.menu-btn.active {
  color: #f8c200 !important;
  background: transparent !important;
}

.menu-btn.active .hamburger span {
  background: #f8c200;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 6px;
}

.hamburger span:nth-child(3) {
  top: 12px;
}

.menu-btn.active .hamburger span:nth-child(1) {
  transform: rotate(45deg);
  top: 6px;
}

.menu-btn.active .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  top: 6px;
}

/* OVERLAY */

#menuMobile {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 3;
}

#menuMobile.active {
  opacity: 1;
  visibility: visible;
}

#menuMobile .menu-panel {
  background-color: #fff;
  padding: 42px 5px 5px 5px;
  width: 325px;
  height: fit-content;
  margin: 0 auto;
}

#menuMobile .menu-panel ul {
  border: 1px solid #21232633;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 20px;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  color: #212326;
}

#menuMobile .menu-panel ul a.active {
  font-weight: 600;
}

/* 
** Start Home
*/
.cta-primary {
  display: flex;
  align-items: center;
  height: 70px;
  padding-left: 22px;
  gap: 20px;
  position: relative;
  isolation: isolate;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cta-primary::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 70px;
  border-radius: 50px;
  background-color: #f8c200;
  z-index: -1;
  transition: 0.5s ease-in-out;
  transform-origin: center;
}

.cta-primary span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-primary .icon {
  width: 30px;
  height: 30px;
  position: relative;
  overflow: hidden;
}

.cta-primary .icon svg {
  position: absolute;
  transition: 0.5s ease-in-out;
}

.cta-primary .icon svg.arrow-left {
  left: -30px;
}

.cta-primary:hover svg.arrow-left {
  left: 8px;
}

.cta-primary svg.arrow-right {
  left: 8px;
}

.cta-primary:hover svg.arrow-right {
  left: 30px;
}

.cta-primary:hover::after {
  transform: scale(1.15);
}

.analysis-news-section {
  padding-top: 125px;
  padding-bottom: 100px;
  position: relative;
  isolation: isolate;
  background-color: #f6f6f6;
}

.analysis-news-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: calc(100% - 46px);
  margin: 0 auto;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='1395' height='679' viewBox='0 0 1395 679' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.7'%3E%3Cpath d='M1394.5 0V679' stroke='url(%23paint0_linear_954_13723)'/%3E%3Cpath d='M1312.5 0V542' stroke='url(%23paint1_linear_954_13723)'/%3E%3Cpath d='M1230.5 0V321' stroke='url(%23paint2_linear_954_13723)'/%3E%3Cpath d='M1148.5 0V179' stroke='url(%23paint3_linear_954_13723)'/%3E%3Cpath d='M1066.5 0V281' stroke='url(%23paint4_linear_954_13723)'/%3E%3Cpath d='M984.5 0V357' stroke='url(%23paint5_linear_954_13723)'/%3E%3Cpath d='M902.5 0V464' stroke='url(%23paint6_linear_954_13723)'/%3E%3Cpath d='M820.5 0V327' stroke='url(%23paint7_linear_954_13723)'/%3E%3Cpath d='M738.5 0V260' stroke='url(%23paint8_linear_954_13723)'/%3E%3Cpath d='M656.5 0V169' stroke='url(%23paint9_linear_954_13723)'/%3E%3Cpath d='M574.5 0V64' stroke='url(%23paint10_linear_954_13723)'/%3E%3Cpath d='M492.5 0V64' stroke='url(%23paint11_linear_954_13723)'/%3E%3Cpath d='M410.5 0V99' stroke='url(%23paint12_linear_954_13723)'/%3E%3Cpath d='M328.5 0V243' stroke='url(%23paint13_linear_954_13723)'/%3E%3Cpath d='M246.5 0V117' stroke='url(%23paint14_linear_954_13723)'/%3E%3Cpath d='M164.5 0V85' stroke='url(%23paint15_linear_954_13723)'/%3E%3Cpath d='M82.5 0V223' stroke='url(%23paint16_linear_954_13723)'/%3E%3Cpath d='M0.5 0V405' stroke='url(%23paint17_linear_954_13723)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_954_13723' x1='1395' y1='0' x2='1395' y2='679' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_954_13723' x1='1313' y1='0' x2='1313' y2='542' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint2_linear_954_13723' x1='1231' y1='0' x2='1231' y2='321' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint3_linear_954_13723' x1='1149' y1='0' x2='1149' y2='179' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint4_linear_954_13723' x1='1067' y1='0' x2='1067' y2='281' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint5_linear_954_13723' x1='985' y1='0' x2='985' y2='357' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint6_linear_954_13723' x1='903' y1='0' x2='903' y2='464' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint7_linear_954_13723' x1='821' y1='0' x2='821' y2='327' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint8_linear_954_13723' x1='739' y1='0' x2='739' y2='260' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint9_linear_954_13723' x1='657' y1='0' x2='657' y2='169' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint10_linear_954_13723' x1='575' y1='0' x2='575' y2='64' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint11_linear_954_13723' x1='493' y1='0' x2='493' y2='64' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint12_linear_954_13723' x1='411' y1='0' x2='411' y2='99' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint13_linear_954_13723' x1='329' y1='0' x2='329' y2='243' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint14_linear_954_13723' x1='247' y1='0' x2='247' y2='117' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint15_linear_954_13723' x1='165' y1='0' x2='165' y2='85' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint16_linear_954_13723' x1='83' y1='0' x2='83' y2='223' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint17_linear_954_13723' x1='1' y1='0' x2='1' y2='405' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23DDDCE7'/%3E%3Cstop offset='1' stop-color='%23DDDCE7' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.analysis-news-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: calc(100% - 46px);
  margin: 0 auto;
  height: 25px;
  background-color: #f8c200;
}

.analysis-news-section .content {
  width: 1067px;
  max-width: 100%;
  margin: 0 auto;
}

.analysis-news-section h2 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 36px;
  line-height: 46px;
  color: #212326;
}

.analysis-news-section .intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  padding-left: 20px;
}

.analysis-news-section .items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.analysis-news-section .items .item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px;
  gap: 20px;
  border-bottom: 1px solid #aeafbb;
  color: #212326;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.analysis-news-section .items .date {
  width: 100%;
  text-transform: capitalize;
}

.analysis-news-section .items .title {
  width: calc(100% - 115px);
}

.analysis-news-section .items .title h3 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 31px;
}

.analysis-news-section .items .read-more {
  width: auto;
  height: 26px;
  overflow: hidden;
}

.analysis-news-section .items .read-more .text {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease;
}

.analysis-news-section .items .read-more .text span {
  height: 26px;
  line-height: 26px;
}

.analysis-news-section .items .item:hover .read-more .text {
  transform: translateY(-26px);
}

.empty-section {
  padding: 74px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-section .shape {
  display: flex;
}

.video-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05)),
    linear-gradient(180deg, #212326 0%, #464c56 100%);
}

.video-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: #000000;
  opacity: 0.05;
}

.video-bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.6;
}

.teams-items {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 82px;
}

.teams-items .item {
  width: 246px;
  min-height: 501px;
  position: relative;
  isolation: isolate;
  border-left: 3px solid #f8c200;
}

.teams-items .item::after {
  content: "";
  width: 9px;
  height: 108px;
  position: absolute;
  left: -6px;
  bottom: 0;
  background-color: #f8c200;
  z-index: 1;
}

.teams-items .item:hover .image::after {
  opacity: 1;
}

.teams-items .item:hover .image .arrow {
  transform: scale(1);
  opacity: 1;
}

.teams-items .item .image {
  width: 100%;
  height: 369px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background-color: rgba(72, 77, 86, 0.0509803922);
}

.teams-items .item .image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(192.53deg,
      rgba(248, 194, 0, 0) 0%,
      rgba(248, 194, 0, 0.5) 90.91%);
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.teams-items .item .image .arrow {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #f2f0fa;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  transform: scale(0.3);
  opacity: 0;
  transform-origin: bottom;
  margin: 0 auto;
  transition: 0.5s ease-in-out;
  z-index: 1;
}

.teams-items .item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

body.page-template-equipe .teams-items .item .info {
  background-color: #fff;
}

.teams-items .item .info {
  height: calc(100% - 369px);
  padding: 19px 10px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.teams-items .item .info h3 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #212326;
}

.teams-items .item .info p {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #212326;
}

.home-template .hero-section {
  min-height: 100dvh;
  position: relative;
  isolation: isolate;
  padding: 307px 0;
  display: flex;
  align-items: center;
}

.home-template .hero-section .hero-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  display: flex;
}

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

.home-template .hero-section .content {
  width: 812px;
  max-width: 100%;
  margin: 50px auto 0 auto;
}

.home-template .hero-section .line-wrapper {
  overflow: hidden;
  height: 58px;
}

.home-template .hero-section .line-wrapper.group-2 .rotation-group .main-text,
.home-template .hero-section .line-wrapper.group-2 .rotation-group .clone-text {
  text-align: right;
}

.home-template .hero-section .rotation-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.home-template .hero-section .main-text,
.home-template .hero-section .clone-text {
  margin: 0;
  white-space: nowrap;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 45px;
  line-height: 58px;
  height: 58px;
  color: #ffffff;
}

.home-template .hero-section .main-text strong,
.home-template .hero-section .clone-text strong {
  font-weight: 500;
}

.home-template .manifeste-section {
  background-color: #212326;
  color: #ffffff;
  padding: 110px 0 160px 0;
}

.home-template .manifeste-section .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  width: 1255px;
  max-width: 100%;
  margin: 0 auto;
}

.home-template .manifeste-section .intro {
  max-width: 491px;
}

.home-template .manifeste-section .label {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffbf00;
  margin-bottom: 25px;
  width: 100%;
}

.home-template .manifeste-section .description {
  max-width: 675px;
  padding-top: 51px;
  border-top: 1px solid #f8c200;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  margin-top: -60px;
}

.home-template .manifeste-section .description strong {
  font-weight: 500;
}

.home-template .manifeste-section h2 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 36px;
  line-height: 46px;
  margin-bottom: 70px;
}

.home-template .manifeste-section h2 strong {
  font-weight: 500;
  display: flex;
}

.home-template .difference-section {
  padding: 90px 0 170px 0;
  color: #212326;
  position: relative;
  isolation: isolate;
}

.home-template .difference-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 83px);
  background-color: #ffffff;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='617' viewBox='0 0 1440 617' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_3001_2601' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='1440' height='617'%3E%3Crect width='1440' height='616.32' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_3001_2601)'%3E%3Cg opacity='0.07'%3E%3Cpath d='M22 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M104 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M186 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M268 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M350 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M432 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M514 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M596 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M678 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M760 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M842 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M924 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M1006 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M1088 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M1170 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M1252 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M1334 -1V615.235' stroke='%23474C55'/%3E%3Cpath d='M1416 -0.234863V616' stroke='%23474C55'/%3E%3C/g%3E%3Cpath d='M1416 616.318V650.318' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='4.64' stroke-miterlimit='10'/%3E%3Cpath d='M1416 616.328L1416 579.774' stroke='%23F8C200'/%3E%3Cpath d='M1334.26 616.318V650.318' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='6.33' stroke-miterlimit='10'/%3E%3Cpath d='M1334.26 616.328L1334.26 545.742' stroke='%23F8C200'/%3E%3Cpath d='M1251.34 616.318V650.318' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='8.01' stroke-miterlimit='10'/%3E%3Cpath d='M1251.34 616.328L1251.34 564.649' stroke='%23F8C200'/%3E%3Cpath d='M1169.61 616.318V650.318' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='9.7' stroke-miterlimit='10'/%3E%3Cpath d='M1169.61 616.328L1169.61 584.186' stroke='%23F8C200'/%3E%3Cpath d='M1088 616.318V650.318' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='11.39' stroke-miterlimit='10'/%3E%3Cpath d='M1088 616.328L1088 545.742' stroke='%23F8C200'/%3E%3Cpath d='M1006 616.318V650.318' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='13.08' stroke-miterlimit='10'/%3E%3Cpath d='M1006 616.328L1006 506.037' stroke='%23F8C200'/%3E%3Cpath d='M924.211 616.328L924.211 551.414' stroke='%23F8C200'/%3E%3Cpath d='M841.473 616.328L841.473 579.774' stroke='%23F8C200'/%3E%3Cpath d='M759.736 616.328L759.736 590.488' stroke='%23F8C200'/%3E%3Cpath d='M678 616.328L678 598.051' stroke='%23F8C200'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

.home-template .difference-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 83px;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='84' viewBox='0 0 1440 84' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_3001_2602' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='1440' height='84'%3E%3Crect width='1440' height='84' transform='matrix(1 0 0 -1 0 84)' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_3001_2602)'%3E%3Cpath d='M1416 -0.00219727V33.9978' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='4.64' stroke-miterlimit='10'/%3E%3Cpath d='M1416 33.998V83.469' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='23.2' stroke-miterlimit='10'/%3E%3Cpath d='M1416 0.0078342L1416 -36.5457' stroke='%23F8C200'/%3E%3Cpath d='M1334.26 -0.00219727V33.9978' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='6.33' stroke-miterlimit='10'/%3E%3Cpath d='M1333.79 33.998V83.469' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='21.51' stroke-miterlimit='10'/%3E%3Cpath d='M1334.26 0.00780773L1334.26 -70.5782' stroke='%23F8C200'/%3E%3Cpath d='M1251.34 -0.00219727V33.9978' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='8.01' stroke-miterlimit='10'/%3E%3Cpath d='M1251.58 33.998V83.469' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='19.83' stroke-miterlimit='10'/%3E%3Cpath d='M1251.34 0.00781536L1251.34 -51.6713' stroke='%23F8C200'/%3E%3Cpath d='M1169.61 -0.00219727V33.9978' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='9.7' stroke-miterlimit='10'/%3E%3Cpath d='M1169.37 33.998V83.469' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='18.14' stroke-miterlimit='10'/%3E%3Cpath d='M1169.61 0.00783271L1169.61 -32.134' stroke='%23F8C200'/%3E%3Cpath d='M1088 -0.00219727V33.9978' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='11.39' stroke-miterlimit='10'/%3E%3Cpath d='M1088.47 33.998V83.469' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='16.45' stroke-miterlimit='10'/%3E%3Cpath d='M1088 0.00780773L1088 -70.5782' stroke='%23F8C200'/%3E%3Cpath d='M1006 -0.00231934V33.9977' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='13.08' stroke-miterlimit='10'/%3E%3Cpath d='M1006 33.9979V83.4689' stroke='%23F8C200' stroke-opacity='0.47' stroke-width='14.76' stroke-miterlimit='10'/%3E%3Cpath d='M1006 0.00775456L1006 -110.283' stroke='%23F8C200'/%3E%3Cpath d='M924.211 0.00782859L924.211 -64.9061' stroke='%23F8C200'/%3E%3Cpath d='M841.473 0.0078342L841.473 -36.5457' stroke='%23F8C200'/%3E%3Cpath d='M759.736 0.0077529L759.736 -25.8318' stroke='%23F8C200'/%3E%3Cpath d='M678 0.00782335L678 -18.2689' stroke='%23F8C200'/%3E%3C/g%3E%3C/svg%3E%0A");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  z-index: -1;
}

.home-template .difference-section .content {
  width: 1255px;
  max-width: 100%;
  margin: 0 auto;
}

.home-template .difference-section .label {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #474c55;
  margin-bottom: 30px;
}

.home-template .difference-section h2 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 36px;
  line-height: 46px;
  color: #474c55;
  margin-bottom: 26px;
}

.home-template .difference-section .controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 53px;
}

.home-template .difference-section .controls .pagination {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #474c55;
  margin-left: 18px;
}

.home-template .difference-section .controls button {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  border: 1px solid rgba(71, 77, 87, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: 0.5s ease-in-out;
}

.home-template .difference-section .controls button:hover {
  background-color: #464c56;
  border-color: #ffbf00;
}

.home-template .difference-section .controls button:hover svg path {
  stroke: #ffbf00;
}

.home-template .difference-section .controls button svg {
  display: flex;
}

.home-template .difference-section .controls button svg path {
  transition: 0.5s ease-in-out;
}

.home-template .difference-section .culture-box {
  position: relative;
}

.home-template .difference-section .headline {
  display: flex;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 31px;
  color: #474c55;
}

.home-template .difference-section .headline strong {
  font-weight: 600;
}

.home-template .difference-section .headline .mask .text-inner {
  width: 100%;
}

.home-template .difference-section .headline #leftText {
  width: 242px;
  padding-right: 6px;
}

.home-template .difference-section .headline #rightText {
  padding-left: 22px;
}

.home-template .difference-section .headline .bar {
  width: calc(100% - 484px);
  height: 1px;
  background-color: #ffbf00;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  top: 21px;
}

.home-template .difference-section .headline .bar::after {
  content: "";
  position: absolute;
  left: 31px;
  left: var(--bar-left, 31px);
  width: 82px;
  height: 15px;
  background-color: #ffbf00;
  transition: .5s ease-in-out;
}

.home-template .difference-section .mask {
  position: relative;
  overflow: hidden;
}

.home-template .difference-section .paragraph {
  width: 595px;
  max-width: 100%;
  margin: 0 auto;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #212326;
  margin-top: 50px;
  padding-bottom: 50px;
}

.home-template .difference-section .paragraph .text-inner {
  padding-right: 29px;
}

.home-template .difference-section .move-up {
  animation: moveUp 0.5s ease forwards;
}

.home-template .difference-section .move-down {
  animation: moveDown 0.5s ease forwards;
}

@keyframes moveUp {
  from {
    transform: translateY(100%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes moveDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.home-template .expertises-section {
  background-color: #212326;
  color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='617' viewBox='0 0 1440 617' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_3001_2601' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='1440' height='617'%3E%3Crect width='1440' height='616.32' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_3001_2601)'%3E%3Cg opacity='0.07'%3E%3Cpath d='M22 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M104 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M186 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M268 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M350 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M432 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M514 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M596 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M678 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M760 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M842 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M924 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M1006 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M1088 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M1170 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M1252 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M1334 -1V615.235' stroke='%23D9D9D9'/%3E%3Cpath d='M1416 -0.234863V616' stroke='%23D9D9D9'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}

.home-template .expertises-section .container {
  padding: 0;
}

.home-template .expertises-section .content {
  display: flex;
  flex-wrap: wrap;
}

.home-template .expertises-section .label {
  min-height: 285px;
  width: 433px;
  position: relative;
  isolation: isolate;
  padding-left: 105px;
  padding-top: 90px;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f8c200;
}

.home-template .expertises-section .label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 32px;
  background-color: #f8c200;
}

.home-template .expertises-section .title {
  width: calc(100% - 433px);
  background-color: #464c56;
  padding-left: 165px;
  padding-top: 90px;
  padding-right: 20px;
}

.home-template .expertises-section h2 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 36px;
  line-height: 46px;
}

.home-template .expertises-section h2 strong {
  font-weight: 500;
  display: flex;
}

.home-template .expertises-section .items {
  background-color: #212326;
  width: 1286px;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-top: 77px;
}

.home-template .expertises-section .items .item {
  width: 261px;
  min-height: 341px;
  background-color: #fbfbf7;
  padding: 30px 32px 62px 32px;
  color: #212326;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  border-right: 2px solid #ffbf00;
  position: relative;
  isolation: isolate;
}

.home-template .expertises-section .items .item .hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(192.53deg,
      rgba(248, 194, 0, 0) 0%,
      rgba(248, 194, 0, 0.5) 90.91%);
  opacity: 0;
  transition: 0.5s ease-in-out;
  z-index: -1;
}

.home-template .expertises-section .items .item:hover .hover {
  opacity: 1;
}

.home-template .expertises-section .items .item::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 9px;
  height: 168px;
  background: linear-gradient(to bottom,
      #ffbf00 0,
      #ffbf00 calc(100% - 27px),
      white calc(100% - 27px),
      white 100%);
}

.home-template .expertises-section .items .item::before {
  content: "";
  width: calc(100% - 16px);
  height: 27px;
  background-color: #ffbf00;
  position: absolute;
  left: 16px;
  bottom: 0;
}

.home-template .expertises-section .items .item .ex-shape {
  position: absolute;
}

.home-template .expertises-section .items .item .ex-shape.shape-left {
  width: 16px;
  height: 100%;
  background-color: #212326;
  top: 0;
  left: 0;
}

.home-template .expertises-section .items .item .ex-shape.shape-left::before {
  content: "";
  background-color: rgba(174, 175, 187, 0.2);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 100%;
}

.home-template .expertises-section .items .item .ex-shape.shape-left::after {
  content: "";
  background-color: #474c55;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16px;
  height: 27px;
}

.home-template .expertises-section .items .item .ex-shape.shape-middle {
  background-color: #ffbf00;
  width: 2px;
  height: 124px;
  bottom: 0;
  right: 82px;
}

.home-template .expertises-section .items .item .ex-shape.shape-middle::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 79px;
  bottom: 0;
  left: -3px;
  background: linear-gradient(to bottom,
      #ffbf00 0,
      #ffbf00 calc(100% - 27px),
      white calc(100% - 27px),
      white 100%);
}

.home-template .expertises-section .items .item .read-more-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.3);
  opacity: 0;
  transform-origin: bottom;
  transition: 0.5s ease-in-out;
  z-index: 1;
}

.home-template .expertises-section .items .item .read-more-btn svg {
  width: 12px;
  height: 12px;
}

.home-template .expertises-section .items .item:hover .read-more-btn {
  transform: scale(1);
  opacity: 1;
}

.home-template .expertises-section .items h3 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 31px;
}

.home-template .experts-section {
  padding-top: 61px;
  background-color: #ffffff;
}

.home-template .experts-section .wrapper-slides {
  display: flex;
  gap: 24px;
}

.home-template .experts-section .wrapper-slides .fixed-item {
  width: 243px !important;
  margin-right: 0 !important;
  margin-top: 143px !important;
}

.home-template .experts-section .content {
  padding: 0 3px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  isolation: isolate;
}

.home-template .experts-section .line {
  position: absolute;
  top: -61px;
  height: calc(100% + 61px);
  width: 6px;
  background-color: #474c55;
}

.home-template .experts-section .line-1 {
  right: 38px;
  background-color: #484d560d;
}

.home-template .experts-section .line-1::after {
  content: "";
  position: absolute;
  width: 10px;
  left: -2px;
  top: 0;
  height: calc(100% - 372px);
  background-color: #ecedee;
}

.home-template .experts-section .line-2 {
  right: 366px;
  background-color: #484d560d;
}

.home-template .experts-section .line-2::after {
  content: "";
  position: absolute;
  width: 14px;
  left: -4px;
  bottom: 0;
  height: calc(100% - 272px);
  background-color: #ecedee;
}

.home-template .experts-section .line-3 {
  right: 697px;
  background-color: #e4e5e6;
}

.home-template .experts-section .content::after {
  content: "";
  position: absolute;
  width: 820px;
  height: 372px;
  bottom: 0;
  right: 0;
  background-color: #474c55;
  opacity: 0.05;
  z-index: -1;
}

.home-template .experts-section .content::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 372px;
  bottom: 0;
  left: -23px;
  background-color: #474c55;
  z-index: -1;
  opacity: 0.1;
}

.home-template .experts-section .intro {
  width: 595px;
  padding: 95px 40px 47px 82px;
  background-color: rgba(72, 77, 86, 0.0509803922);
  position: relative;
  isolation: isolate;
}

.home-template .experts-section .intro::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -61px;
  background-color: #474c55;
  width: 40px;
  height: 272px;
  opacity: 0.1;
}

.home-template .experts-section .intro::before {
  content: "";
  position: absolute;
  width: 4px;
  right: -22px;
  bottom: 0;
  height: calc(100% - 210px);
  background-color: #474c55;
  opacity: 0.1;
}

.home-template .experts-section .container {
  position: relative;
  isolation: isolate;
}

.home-template .experts-section .container::before {
  content: "";
  position: absolute;
  width: 20px;
  height: calc(100% - 71px);
  top: -61px;
  right: 0;
  background-color: #474c55;
  z-index: -1;
  opacity: 0.1;
}

.home-template .experts-section .intro .label {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #212326;
  margin-bottom: 33px;
}

.home-template .experts-section .intro h2 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 36px;
  line-height: 46px;
  color: #212326;
  margin-bottom: 85px;
}

.home-template .experts-section .intro h2 strong {
  font-weight: 500;
}

.home-template .experts-section .intro .shape {
  margin-top: 86px;
  display: flex;
}

.home-template .experts-section .teams-items {
  width: 413px;
  max-width: 100%;
  margin-right: 82px;
  margin-top: 82px;
  position: relative;
  isolation: isolate;
  gap: 20px;
}

.home-template .experts-section .teams-items .splide__slide {
  width: 246px !important;
}

.home-template .experts-section .teams-items .splide__slide a {
  width: 100%;
  height: 100%;
  display: block;
}

.home-template .experts-section .teams-items .splide__track {
  padding-left: 4px !important;
}

.home-template .experts-section .teams-items .switch-slider {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
}

.home-template .experts-section .teams-items button {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  border: 1px solid rgba(71, 77, 87, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: 0.5s ease-in-out;
}

.home-template .experts-section .teams-items button:hover {
  background-color: #464c56;
  border-color: #ffbf00;
}

.home-template .experts-section .teams-items button:hover svg path {
  stroke: #ffbf00;
}

.home-template .experts-section .teams-items button svg {
  display: flex;
}

.home-template .experts-section .teams-items button svg path {
  transition: 0.5s ease-in-out;
}

.home-template .experts-section .teams-items::after {
  content: "";
  position: absolute;
  left: -61px;
  bottom: 0;
  width: 40px;
  height: 133px;
  background-color: #e4e5e6;
  opacity: 0;
}

.home-template .experts-section .teams-items::before {
  content: "";
  position: absolute;
  left: -52px;
  bottom: 0;
  width: 22px;
  height: calc(100% - 129px);
  background-color: #e4e5e6;
  opacity: 0;
}

.home-template .experts-section .teams-items .item .info {
  position: relative;
  isolation: isolate;
}

.home-template .experts-section .teams-items .item .info::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -24px;
  width: 24px;
  height: 100%;
  background-color: #e5e5e6;
}

/* 
** Start Equipe
*/

.equipe-template .hero-section {
  padding-top: 236px;
  position: relative;
  isolation: isolate;
}

.equipe-template .hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 83px);
  background-color: #ffffff;
  z-index: -1;
  background-image: repeating-linear-gradient(to right,
      #484d5614 0,
      #484d5600 1px,
      transparent 1px,
      transparent 82px);
  background-position: 23px 0;
  background-repeat: no-repeat;
}

.equipe-template .hero-section::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc((100% - 1394px) / 2);
  height: 83px;
  background-color: #ffffff;
}

.equipe-template .hero-section .container::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc((100% - 1394px) / 2);
  height: 83px;
  background-color: #ffffff;
}

.equipe-template .hero-section .content {
  width: 1394px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 83px;
}

.equipe-template .hero-section .content::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 41px;
  height: 349px;
  background-color: #474c55;
  opacity: 0.05;
}

.equipe-template .hero-section .content::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -83px;
  width: 738px;
  height: 193px;
  background-image: url("data:image/svg+xml,%3Csvg width='751' height='194' viewBox='0 0 751 194' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M738.5 110.281V144.281' stroke='%23FFBF00' stroke-opacity='0.5' stroke-width='4.64' stroke-miterlimit='10'/%3E%3Cpath d='M738.5 144.281V193.752' stroke='%23FFBF00' stroke-opacity='0.5' stroke-width='23.2' stroke-miterlimit='10'/%3E%3Cpath d='M738.5 110.291L738.5 73.7372' stroke='%23FFBF00' stroke-opacity='0.5'/%3E%3Cpath d='M656.764 110.281V144.281' stroke='%23FFBF00' stroke-opacity='0.5' stroke-width='6.33' stroke-miterlimit='10'/%3E%3Cpath d='M656.29 144.281V193.752' stroke='%23FFBF00' stroke-opacity='0.5' stroke-width='21.51' stroke-miterlimit='10'/%3E%3Cpath d='M656.764 110.291L656.764 39.7048' stroke='%23FFBF00' stroke-opacity='0.5'/%3E%3Cpath d='M573.842 110.281V144.281' stroke='%23FFBF00' stroke-opacity='0.5' stroke-width='8.01' stroke-miterlimit='10'/%3E%3Cpath d='M574.078 144.281V193.752' stroke='%23FFBF00' stroke-opacity='0.5' stroke-width='19.83' stroke-miterlimit='10'/%3E%3Cpath d='M573.842 110.291L573.842 58.6117' stroke='%23FFBF00' stroke-opacity='0.5'/%3E%3Cpath d='M492.106 110.281V144.281' stroke='%23FFBF00' stroke-opacity='0.5' stroke-width='9.7' stroke-miterlimit='10'/%3E%3Cpath d='M491.869 144.281V193.752' stroke='%23FFBF00' stroke-opacity='0.5' stroke-width='18.14' stroke-miterlimit='10'/%3E%3Cpath d='M492.106 110.291L492.106 78.149' stroke='%23FFBF00' stroke-opacity='0.5'/%3E%3Cpath d='M410.5 110.281V144.281' stroke='%23FFBF00' stroke-opacity='0.5' stroke-width='11.39' stroke-miterlimit='10'/%3E%3Cpath d='M410.974 144.281V193.752' stroke='%23FFBF00' stroke-opacity='0.5' stroke-width='16.45' stroke-miterlimit='10'/%3E%3Cpath d='M410.5 110.291L410.5 39.7048' stroke='%23FFBF00' stroke-opacity='0.5'/%3E%3Cpath d='M328.5 110.281V144.281' stroke='%23FFBF00' stroke-opacity='0.5' stroke-width='13.08' stroke-miterlimit='10'/%3E%3Cpath d='M328.5 144.281V193.752' stroke='%23FFBF00' stroke-opacity='0.5' stroke-width='14.76' stroke-miterlimit='10'/%3E%3Cpath d='M328.5 110.291L328.5 0' stroke='%23FFBF00' stroke-opacity='0.5'/%3E%3Cpath d='M246.711 110.291L246.711 45.3768' stroke='%23FFBF00' stroke-opacity='0.5'/%3E%3Cpath d='M163.973 110.291L163.973 73.7374' stroke='%23FFBF00' stroke-opacity='0.5'/%3E%3Cpath d='M82.2363 110.291L82.2363 84.4512' stroke='%23FFBF00' stroke-opacity='0.5'/%3E%3Cpath d='M0.500001 110.291L0.5 92.014' stroke='%23FFBF00' stroke-opacity='0.5'/%3E%3C/svg%3E%0A");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.equipe-template .hero-section .intro {
  width: 1063px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
}

.equipe-template .hero-section .intro h1,
.equipe-template .hero-section .intro h2 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 38px;
  line-height: 49px;
  color: #212326;
  padding-left: 45px;
  border-left: 2px solid #ffffff;
  min-height: 317px;
  position: relative;
  isolation: isolate;
}

.equipe-template .hero-section .intro h1::after,
.equipe-template .hero-section .intro h2::after {
  content: "";
  position: absolute;
  left: -3px;
  top: 67px;
  width: 4px;
  height: 88px;
  background-color: #dddce7;
}

.equipe-template .hero-section .intro h1 strong,
.equipe-template .hero-section .intro h2 strong {
  font-weight: 400;
}

.equipe-template .hero-section .intro h1 {
  padding-top: 67px;
  max-width: 537px;
}

.equipe-template .hero-section .intro h2 {
  max-width: 573px;
  margin-left: auto;
  padding-top: 165px;
  left: -38px;
  z-index: -1;
}

.equipe-template .hero-section .intro h2::after {
  top: 170px;
}

.equipe-template .hero-section .challenges {
  position: relative;
  isolation: isolate;
  width: 100%;
  background-color: rgba(72, 77, 86, 0.0509803922);
  padding: 56px 0 51px 43px;
}

.equipe-template .hero-section .challenges::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 41px;
  height: calc(100% + 83px);
  background-color: #f6f6f6;
}

.equipe-template .hero-section .challenges::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background-color: #ffbf00;
}

.equipe-template .hero-section .challenges-wrapper {
  width: 1066px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
}

.equipe-template .hero-section h3 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 31px;
  text-transform: uppercase;
  color: #212326;
}

.equipe-template .hero-section .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 23px;
  grid-row-gap: 30px;
}

.equipe-template .hero-section .items .item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.equipe-template .hero-section .items .dot {
  width: 10px;
  height: 10px;
  background-color: #f8c200;
  border-radius: 50%;
}

.equipe-template .hero-section .items h4 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 28px;
  color: #212326;
}

.equipe-template .hero-section .items p {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #212326;
}

.equipe-template .equipes-section {
  padding-bottom: 60px;
  background-color: #ffffff;
}

.equipe-template .equipes-section .content {
  width: 1394px;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 0;
  background-color: #f6f6f6;
  position: relative;
  isolation: isolate;

  background-image: repeating-linear-gradient(to right,
      #484d5614 0,
      #484d5600 1px,
      transparent 1px,
      transparent 82px);
  background-position: 82px 0;
  background-repeat: no-repeat;
}

.equipe-template .equipes-section .content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 82px;
  height: 75px;
  background-color: #474c55;
  opacity: 0.08;
}

.equipe-template .equipes-section .content::before {
  content: "";
  position: absolute;
  left: 328px;
  bottom: 0;
  opacity: 0.08;
  width: 82px;
  height: 582px;
  background-color: #474c55;
}

.equipe-template .equipes-section .content .shape {
  position: absolute;
  background-color: #474c55;
  opacity: 0.08;
}

.equipe-template .equipes-section .content .shape.shape-1 {
  width: 738px;
  height: 561px;
  right: 0;
  top: 80px;
}

.equipe-template .equipes-section .content .shape.shape-2 {
  width: 984px;
  height: 561px;
  left: 0;
  top: 451px;
}

.equipe-template .equipes-section .content .shape.shape-3 {
  width: 410px;
  height: 210px;
  bottom: 0;
  right: 328px;
}

.equipe-template .equipes-section .teams-items {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
}

/*
** Single Equipe
*/
.arrows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.arrows .arrow {
  width: 82px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fbfbfb;
  transition: 0.5s ease-in-out;
}

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

.arrows .arrow span {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion {
  max-width: 574px;
}

.accordion .accordion-item {
  border-top: 2px solid #f8c200;
}

.accordion .accordion-item .accordion-header {
  width: 100%;
  padding: 20px 0 10px 0;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11px;
  cursor: pointer;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #474c55;
}

.accordion .accordion-item .accordion-header span {
  display: flex;
}

.accordion .accordion-item .accordion-header .icon {
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease-in-out;
}

.accordion .accordion-item .accordion-header .text {
  width: calc(100% - 35px);
}

.accordion .accordion-item .accordion-content {
  height: 0;
  overflow: hidden;
  padding-top: 10px;
  transition: 0.5s ease-in-out;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #474c55;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.accordion .accordion-item .accordion-content strong {
  font-weight: 500;
}

.accordion .accordion-item.active .accordion-header .icon {
  transform: rotate(180deg);
}

.accordion .accordion-item.active .accordion-content {
  padding-top: 0;
  padding-bottom: 24px;
}

.single-equipe-template {
  background-color: #f6f6f6;
}

.single-equipe-template .hero-section {
  padding-top: 236px;
  position: relative;
  isolation: isolate;
  color: #212326;
  background-image: repeating-linear-gradient(to right,
      #484d5614 0,
      #484d5600 1px,
      transparent 1px,
      transparent 82px);
  background-position: 82px 0;
  background-repeat: no-repeat;
}

.single-equipe-template .hero-section .content {
  width: 1230px;
  max-width: 100%;
  min-height: 335px;
  margin: 0 auto;
  padding: 0 82px;
  position: relative;
  isolation: isolate;
  border-left: 1px solid #ffbf00;
}

.single-equipe-template .hero-section .content::after {
  content: "";
  position: absolute;
  left: -2.5px;
  top: 86px;
  width: 5px;
  height: 103px;
  background-color: #ffbf00;
}

.single-equipe-template .hero-section .back-btn {
  width: fit-content;
  display: flex;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 71px;
}

.single-equipe-template .hero-section .info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 44px;
}

.single-equipe-template .hero-section h1 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 46px;
}

.single-equipe-template .hero-section p {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 28px;
  line-height: 36px;
}

.single-equipe-template .hero-section .profile-contacts {
  display: flex;
  gap: 10px;
}

.single-equipe-template .hero-section .profile-contacts .btn-contact {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(72, 77, 86, 0.1019607843);
}

.single-equipe-template .bio-section .container {
  background-color: #fff;
  padding: 0;
}

.single-equipe-template .bio-section .content {
  padding: 63px 0 55px 164px;
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #f8c200;
}

.single-equipe-template .bio-section .bio-wrapper {
  width: calc(100% - 520px);
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.single-equipe-template .bio-section .description {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #212326;
  max-width: 574px;
}

.single-equipe-template .bio-section .description h2 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #212326;
}

.single-equipe-template .bio-section .bio-profile {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 491px;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 182px;
  margin-top: -415px;
}

.single-equipe-template .bio-section .image {
  position: relative;
  isolation: isolate;
  border-left: 2px solid #f8c200;
  height: 512px;
}

.single-equipe-template .bio-section .image::after {
  content: "";
  width: 100%;
  height: 21px;
  background-color: #f8c200;
  position: absolute;
  bottom: 0;
  left: 0;
}

.single-equipe-template .bio-section .image::before {
  content: "";
  position: absolute;
  left: -4.5px;
  bottom: 0;
  width: 9px;
  height: 130px;
  background: linear-gradient(to bottom,
      #ffbf00 0,
      #ffbf00 calc(100% - 21px),
      white calc(100% - 21px),
      white 100%);
  z-index: 1;
}

.single-equipe-template .bio-section .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-equipe-template .bio-section .arrows {
  padding-bottom: 21px;
  position: relative;
  top: 10px;
}

.single-equipe-template .analysis-news-section {
  background-color: #ffffff;
  margin-top: 28px;
}

/*
** Start Expertises
*/
.expertises-template .hero-section {
  background-color: #212326;
  padding-top: 284px;
  margin-bottom: 87px;
  position: relative;
  isolation: isolate;
}

.expertises-template .hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -87px;
  width: 100%;
  height: 87px;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='87' viewBox='0 0 1440 87' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_3011_3151' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='1440' height='87'%3E%3Crect width='1440' height='87' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_3011_3151)'%3E%3Cmask id='mask1_3011_3151' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='1440' height='263'%3E%3Crect width='1440' height='263' fill='url(%23paint0_linear_3011_3151)'/%3E%3C/mask%3E%3Cg mask='url(%23mask1_3011_3151)'%3E%3Cpath opacity='0.5' d='M350.429 87.36V-155' stroke='%23AEAFBB' stroke-width='17.63' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M677.842 87.1804V43.4263' stroke='%23AEAFBB' stroke-width='32.48' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M595.991 87.1804V43.4263' stroke='%23AEAFBB' stroke-width='28.76' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M514.141 87.1804V43.4263' stroke='%23AEAFBB' stroke-width='25.05' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M432.278 87.1804V43.4263' stroke='%23AEAFBB' stroke-width='21.34' stroke-miterlimit='10'/%3E%3Cpath d='M268.577 87.1806V-0.323242' stroke='%23474C55' stroke-width='13.92' stroke-miterlimit='10'/%3E%3Cpath d='M186.714 87.1806V-0.323242' stroke='%23FFBF00' stroke-width='10.21' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M104.865 87.1806V-0.323242' stroke='%23AEAFBB' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M23 87.1803V-0.323486' stroke='%23AEAFBB' stroke-width='2.78' stroke-miterlimit='10'/%3E%3Cpath d='M432.278 43.4263V-155' stroke='%23474C55' stroke-width='13.92' stroke-miterlimit='10'/%3E%3Cpath d='M514.141 43.4263V-155' stroke='%23FFBF00' stroke-width='10.21' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M595.991 43.4263V-155' stroke='%23AEAFBB' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath d='M677.842 43.4263V-155' stroke='%23FFBF00' stroke-width='2.78' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M1089 87V-155' stroke='%23AEAFBB' stroke-width='17.63' stroke-miterlimit='10'/%3E%3Cpath opacity='0.4' d='M1253 786.922V43.4263' stroke='%23AEAFBB' stroke-width='25.05' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M1171 786.922V43.4263' stroke='%23AEAFBB' stroke-width='21.34' stroke-miterlimit='10'/%3E%3Cpath d='M1007 786.922V-0.323242' stroke='%23474C55' stroke-width='13.92' stroke-miterlimit='10'/%3E%3Cpath d='M925 87V0' stroke='%23FFBF00' stroke-width='10.21' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M761 87L761 0' stroke='%23AEAFBB' stroke-width='2.78' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M843 263L843 0' stroke='%23AEAFBB' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath d='M1171 43.4263V-155' stroke='%23474C55' stroke-width='13.92' stroke-miterlimit='10'/%3E%3Cpath d='M1253 43.4263V-155' stroke='%23FFBF00' stroke-width='10.21' stroke-miterlimit='10'/%3E%3Cpath opacity='0.3' d='M1335 601.672V43.4263' stroke='%23AEAFBB' stroke-width='28.76' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M1335 43.4263V-155' stroke='%23AEAFBB' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath opacity='0.2' d='M1417 611.477V43.4263' stroke='%23AEAFBB' stroke-width='32.48' stroke-miterlimit='10'/%3E%3Cpath d='M1417 43.4263V-155' stroke='%23FFBF00' stroke-width='2.78' stroke-miterlimit='10'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_3011_3151' x1='720' y1='0' x2='720' y2='263' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23212326'/%3E%3Cstop offset='1' stop-color='%23464C56'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
}

.expertises-template .hero-section .content {
  padding-bottom: 97px;
  padding-top: 45px;
  width: 1232px;
  max-width: 100%;
  margin: 0 auto;
  border-top: 1px solid #ffbf00;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.expertises-template .hero-section .title {
  width: 493px;
}

.expertises-template .hero-section h1 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 38px;
  line-height: 49px;
  color: #ffffff;
}

.expertises-template .hero-section h1 strong {
  font-weight: 400;
}

.expertises-template .hero-section .description {
  width: 656px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 29px;
  color: #ffffff;
  margin-top: 6px;
}

.expertises-template .hero-section .description strong {
  font-weight: 500;
}

.expertises-template .savoir-faire-section {
  padding-top: 65px;
  padding-bottom: 170px;
  background-color: #212326;
  position: relative;
  isolation: isolate;
}

.expertises-template .savoir-faire-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 176px;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='176' viewBox='0 0 1440 176' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_3011_3152' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='1440' height='176'%3E%3Crect width='1440' height='176' transform='matrix(1 0 0 -1 0 176)' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_3011_3152)'%3E%3Cmask id='mask1_3011_3152' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='-87' width='1440' height='263'%3E%3Crect y='-87' width='1440' height='263' fill='url(%23paint0_linear_3011_3152)'/%3E%3C/mask%3E%3Cg mask='url(%23mask1_3011_3152)'%3E%3Cpath opacity='0.5' d='M350.429 0.359978V-242' stroke='%23AEAFBB' stroke-width='17.63' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M677.842 0.180372V-43.5737' stroke='%23AEAFBB' stroke-width='32.48' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M595.991 0.180372V-43.5737' stroke='%23AEAFBB' stroke-width='28.76' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M514.141 0.180372V-43.5737' stroke='%23AEAFBB' stroke-width='25.05' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M432.278 0.180372V-43.5737' stroke='%23AEAFBB' stroke-width='21.34' stroke-miterlimit='10'/%3E%3Cpath d='M268.577 0.180572V-87.3232' stroke='%23474C55' stroke-width='13.92' stroke-miterlimit='10'/%3E%3Cpath d='M186.714 0.180572V-87.3232' stroke='%23FFBF00' stroke-width='10.21' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M104.865 0.180572V-87.3232' stroke='%23AEAFBB' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M23 0.180328V-87.3235' stroke='%23AEAFBB' stroke-width='2.78' stroke-miterlimit='10'/%3E%3Cpath opacity='0.2' d='M1089 176L1089 0' stroke='%23AEAFBB' stroke-width='5' stroke-miterlimit='10'/%3E%3Cpath opacity='0.4' d='M1253 699.922V-43.5737' stroke='%23AEAFBB' stroke-width='25.05' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M1171 699.922V-43.5737' stroke='%23AEAFBB' stroke-width='21.34' stroke-miterlimit='10'/%3E%3Cpath d='M1007 699.922V-87.3232' stroke='%23474C55' stroke-width='13.92' stroke-miterlimit='10'/%3E%3Cpath d='M925 176V1' stroke='%23FFBF00' stroke-miterlimit='10'/%3E%3Cpath opacity='0.2' d='M761 176L761 0' stroke='%23AEAFBB' stroke-width='14' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M843 176L843 -87' stroke='%23AEAFBB' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath opacity='0.3' d='M1335 514.672V-43.5737' stroke='%23AEAFBB' stroke-width='28.76' stroke-miterlimit='10'/%3E%3Cpath opacity='0.2' d='M1417 524.477V-43.5737' stroke='%23AEAFBB' stroke-width='32.48' stroke-miterlimit='10'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_3011_3152' x1='720' y1='-87' x2='720' y2='176' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23212326'/%3E%3Cstop offset='1' stop-color='%23464C56'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  z-index: -1;
}

.expertises-template .savoir-faire-section .content {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
}

.expertises-template .savoir-faire-section .items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.expertises-template .savoir-faire-section .item {
  background-color: #fbfbf7;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 0 27px 0;
  position: relative;
  isolation: isolate;
  border-right: 2px solid #ffbf00;
}

.expertises-template .savoir-faire-section .item::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 0;
  width: 16px;
  height: 100%;
  background: linear-gradient(to bottom,
      #212326 0,
      #212326 calc(100% - 232px),
      rgba(174, 175, 187, 0.2) calc(100% - 232px),
      rgba(174, 175, 187, 0.2) calc(100% - 27px),
      #474c55 calc(100% - 27px),
      #474c55 100%);
}

.expertises-template .savoir-faire-section .item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 27px;
  background-color: #ffbf00;
}

.expertises-template .savoir-faire-section .item .intro {
  display: flex;
  flex-wrap: wrap;
  width: 1066px;
  max-width: 100%;
  margin: 0 auto;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 5px;
}

.expertises-template .savoir-faire-section .item .title {
  width: 362px;
}

.expertises-template .savoir-faire-section .item .title h2 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 41px;
  color: #212326;
}

.expertises-template .savoir-faire-section .item .sectors {
  width: 571px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.expertises-template .savoir-faire-section .item .sectors p {
  padding-left: 19px;
  position: relative;
  isolation: isolate;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #212326;
}

.expertises-template .savoir-faire-section .item .sectors p::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #f8c200;
}

.expertises-template .savoir-faire-section .item .description {
  display: flex;
  width: 1066px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 40px;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #212326;
  border-top: 1px solid #ffbf00;
}

.expertises-template .savoir-faire-section .item .read-more {
  min-height: 80px;
  position: relative;
  display: flex;
  align-items: center;
}

.expertises-template .savoir-faire-section .item .read-more .cta-wrapper {
  width: 1066px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #212326;
}

.expertises-template .savoir-faire-section .item .read-more .cta-wrapper::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -27px;
  width: 9px;
  height: 170px;
  background: linear-gradient(to bottom,
      #ffbf00 0,
      #ffbf00 calc(100% - 27px),
      white calc(100% - 27px),
      white 100%);
  z-index: 1;
}

.expertises-template .savoir-faire-section .item .read-more .cta-wrapper::before {
  content: "";
  position: absolute;
  right: 82px;
  bottom: -27px;
  width: 9px;
  height: 79px;
  background: linear-gradient(to bottom,
      #ffbf00 0,
      #ffbf00 calc(100% - 27px),
      white calc(100% - 27px),
      white 100%);
  z-index: 1;
}

.expertises-template .savoir-faire-section .item .read-more .cta-wrapper span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.expertises-template .savoir-faire-section .item .read-more .cta-wrapper span.icon {
  width: 30px;
  height: 30px;
}

.expertises-template .savoir-faire-section .item .read-more::before {
  content: "";
  position: absolute;
  right: 85.5px;
  bottom: -27px;
  width: 2px;
  height: 124px;
  background: linear-gradient(to bottom,
      #ffbf00 0,
      #ffbf00 calc(100% - 27px),
      white calc(100% - 27px),
      white 100%);
  z-index: 1;
}

.expertises-template .savoir-faire-section .item .read-more::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  background-color: #faf0c6;
  transition: 0.5s ease-in-out;
  z-index: -1;
}

.expertises-template .savoir-faire-section .item:hover .read-more::after {
  height: 100%;
}

.expertises-template .international-section {
  background-color: #ffffff;
  padding-bottom: 35px;
  position: relative;
  isolation: isolate;
}

.expertises-template .international-section .container {
  background-color: #f6f6f7;
  margin-top: -90px;
  padding: 90px 0 60px 20px;
}

.expertises-template .international-section .content {
  width: 1315px;
  max-width: 100%;
  margin-left: auto;
  position: relative;
  isolation: isolate;
}

.expertises-template .international-section .wrapper {
  width: 841px;
  min-height: 658px;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.expertises-template .international-section .shape {
  position: absolute;
  right: 0;
  top: 0;
  width: 598px;
  height: 658px;
}

.expertises-template .international-section .shape svg {
  width: 100%;
  height: auto;
}

.expertises-template .international-section .label {
  margin-bottom: 23px;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #212326;
}

.expertises-template .international-section h2 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 38px;
  line-height: 49px;
  color: #212326;
  margin-bottom: 90px;
}

.expertises-template .international-section h2 strong {
  font-weight: 400;
  display: flex;
}

.expertises-template .international-section .descriptoin {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 30px;
  border-top: 1px solid #ffbf00;
  position: relative;
  isolation: isolate;
  max-width: 656px;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #212326;
}

.expertises-template .international-section .descriptoin p {
  opacity: 0.9;
}

.expertises-template .international-section .descriptoin::after {
  content: "";
  position: absolute;
  left: 0;
  top: -3px;
  width: 82px;
  height: 5px;
  background-color: #ffbf00;
}

/*
** Start Single Expertise
*/
.single-expertise-template {
  background-color: #f5f5f5;
  position: relative;
  isolation: isolate;
}

.single-expertise-template::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='1926' viewBox='0 0 1440 1926' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.08'%3E%3Cpath d='M23 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M105 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M187 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M269 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M351 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M433 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M515 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M597 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M679 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M761 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M843 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M925 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M1007 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M1089 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M1171 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M1253 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M1335 0V3402.77' stroke='%23474C55'/%3E%3Cpath d='M1417 4.22461V3407' stroke='%23474C55'/%3E%3C/g%3E%3Crect opacity='0.1' y='662.85' width='23' height='679.112' fill='%23474C55'/%3E%3Crect opacity='0.05' x='1378.92' y='663.045' width='61' height='709.752' fill='%23474C55'/%3E%3Crect opacity='0.1' x='1399.92' width='40' height='663.045' fill='%23474C55'/%3E%3Crect opacity='0.1' x='1417.92' y='663.045' width='4' height='709.752' fill='%23474C55'/%3E%3C/svg%3E%0A");
  z-index: -1;
}

.single-expertise-template .hero-section {
  padding-top: 233px;
}

.single-expertise-template .hero-section .content {
  position: relative;
  isolation: isolate;
}

.single-expertise-template .hero-section .content .arrows {
  display: none;
}

.single-expertise-template .hero-section .content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fbfbfb;
  z-index: -1;
}

.single-expertise-template .hero-section .content .intro {
  padding: 82px 82px 68px 99px;
  width: 1247px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.single-expertise-template .hero-section .content .title {
  width: 328px;
}

.single-expertise-template .hero-section .content h1 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 38px;
  line-height: 49px;
  color: #212326;
}

.single-expertise-template .hero-section .content .description {
  width: 655px;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 29px;
  color: #212326;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.single-expertise-template .hero-section .content .description p {
  opacity: 0.8;
}

.single-expertise-template .hero-section .content .intervention {
  padding: 51px 82px 105px 99px;
  width: 1247px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-bottom: 20px;
}

.single-expertise-template .hero-section .content .intervention h2 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 28px;
  line-height: 45px;
  color: #212326;
}

.single-expertise-template .hero-section .content .intervention .items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.single-expertise-template .hero-section .content .intervention .items .item {
  padding-bottom: 20px;
  border-bottom: 1px solid #f8c200;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 29px;
  color: #212326;
  position: relative;
  isolation: isolate;
  padding-left: 22px;
}

.single-expertise-template .hero-section .content .intervention .items .item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  background-color: #f8c200;
  border-radius: 50%;
}

.single-expertise-template .hero-section .content .intervention .items .item strong {
  font-weight: 500;
}

.single-expertise-template .hero-section .content .all-expertises {
  background-color: #474c55;
  padding: 20px;
  position: sticky;
  bottom: 0;
  margin-bottom: 30px;
}

.single-expertise-template .hero-section .content .all-expertises .items {
  width: 1095px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.single-expertise-template .hero-section .content .all-expertises a {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  color: #ffffff;
  position: relative;
  isolation: isolate;
}

.single-expertise-template .hero-section .content .all-expertises a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 5px;
  background-color: #f8c200;
  opacity: 0;
  transition: 0.5s ease-in-out;
}

.single-expertise-template .hero-section .content .all-expertises a.active::after,
.single-expertise-template .hero-section .content .all-expertises a:hover::after {
  opacity: 1;
}

/*
** Start Actualites
*/
.news-template {
  background: linear-gradient(180deg, #212326 0%, #474c55 100%);
}

.news-template .hero-section {
  background: linear-gradient(180deg,
      #212326 0%,
      rgba(33, 35, 38, 0.557671) 86.11%,
      rgba(33, 35, 38, 0) 100%);
  padding-top: 284px;
  padding-bottom: 61px;
  color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='1440' height='853' viewBox='0 0 1440 853' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cmask id='mask0_3007_1318' style='mask-type:alpha' maskUnits='userSpaceOnUse' x='0' y='0' width='1440' height='853'%3E%3Crect width='1440' height='853' fill='%23D9D9D9'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_3007_1318)'%3E%3Crect width='1440' height='2092.81' fill='url(%23paint0_linear_3007_1318)'/%3E%3Cg opacity='0.6'%3E%3Cpath d='M1007 6.96704L1007 830.174' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M924.997 6.96704L924.997 837.311' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M761 843.833V852.688' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M924.997 837.311V852.688' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M1170.99 832.405L1170.99 0' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M1252.99 813.351L1252.99 6.96704' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M1416.99 816.27L1416.99 6.96704' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M1088.99 814.353V852.688' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M1088.99 6.96704L1088.99 814.353' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M1417 852.688V816.27' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M1334.99 852.688V832.405' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M1252.99 852.688V813.352' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M1170.99 852.688V832.405' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M842.999 6.96704L842.999 819.789' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M761 6.96704L761 843.834' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M842.999 819.789V852.688' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M1007 830.174V852.688' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M1334.99 832.405L1334.99 6.96704' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3C/g%3E%3Cg opacity='0.6'%3E%3Cpath d='M267.996 6.96704L267.996 830.174' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M185.997 6.96704L185.997 837.311' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M22 843.833V852.688' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M185.997 837.311V852.688' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M431.993 832.405L431.993 0' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M513.99 813.351L513.99 6.96704' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M677.988 816.27L677.988 6.96704' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M349.994 814.353V852.688' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M349.994 6.96704L349.994 814.353' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M678 852.688V816.27' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M595.99 852.688V832.405' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M513.99 852.688V813.352' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M431.993 852.688V832.405' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M103.999 6.96704L103.999 819.789' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M22 6.96704L22 843.834' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3Cpath d='M103.999 819.789V852.688' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M267.996 830.174V852.688' stroke='%23464C56' stroke-width='18.56' stroke-miterlimit='10'/%3E%3Cpath d='M595.99 832.405L595.99 6.96704' stroke='%23464C56' stroke-width='2' stroke-miterlimit='10'/%3E%3C/g%3E%3Crect width='1440' height='852.688' fill='url(%23paint1_linear_3007_1318)'/%3E%3C/g%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_3007_1318' x1='720' y1='0' x2='720' y2='2092.81' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23212326'/%3E%3Cstop offset='1' stop-color='%23474C55'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear_3007_1318' x1='720' y1='0' x2='720' y2='852.688' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23212326'/%3E%3Cstop offset='0.861103' stop-color='%23212326' stop-opacity='0.557671'/%3E%3Cstop offset='1' stop-color='%23212326' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.news-template .hero-section .content {
  width: 1066px;
  max-width: 100%;
  margin: 0 auto;
}

.news-template .hero-section .intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
}

.news-template .hero-section .title {
  width: 492px;
}

.news-template .hero-section .description {
  width: 492px;
  padding: 10px 0;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 29px;
  color: #ffffff;
}

.news-template .hero-section h1 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 38px;
  line-height: 49px;
}

.news-template .hero-section .highlight {
  background-color: #2b2e31;
  border-bottom: 1px solid #f8c200;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.news-template .hero-section span {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.news-template .hero-section .highlight .read-more {
  /*width: 75px;*/
  height: 26px;
  overflow: hidden;
}

.news-template .hero-section .highlight .read-more .text {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.news-template .hero-section .highlight .read-more .text span {
  height: 26px;
  line-height: 26px;
}

/* hover effect */
.news-template .hero-section .highlight:hover .read-more .text {
  transform: translateY(-26px);
}

.news-template .hero-section span.date,
.news-template .articles-section .items .item div.date {
  text-transform: capitalize;
}

.news-template .hero-section .categorie {
  width: 100%;
}

.news-template .hero-section .label {
  width: 100%;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #f8c200;
}

.news-template .hero-section h2 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 31px;
  max-width: 902px;
}

.news-template .articles-section {
  background-color: #ffffff;
  padding-bottom: 100px;
}

.news-template .articles-section .content {
  width: 1230px;
  max-width: 100%;
  margin: 0 auto;
}

.news-template .articles-section .filters {
  padding: 30px 82px;
  background-color: #f5f5f5;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 50px;
}

.news-template .articles-section .filter {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 23px;
  color: #212326;
  cursor: pointer;
}

.news-template .articles-section .filter.active {
  font-weight: 400;
}

.news-template .articles-section .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 70px;
  grid-row-gap: 70px;
}

.news-template .articles-section .items .item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid #aeafbb;

  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}

.news-template .articles-section .items .item.show {
  opacity: 1;
  transform: translateY(0);
}

.news-template .articles-section .items .item h3 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 31px;
  color: #212326;
}

.news-template .articles-section .items .item div {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #212326;
}

.news-template .articles-section .items .item div.read-more {
  margin-top: 10px;
  font-weight: 400;
  height: 26px;
  overflow: hidden;
}

.news-template .articles-section .items .item div.read-more .text {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.news-template .articles-section .items .item div.read-more .text span {
  height: 26px;
  line-height: 26px;
}

.news-template .articles-section .items .item:hover div.read-more .text {
  transform: translateY(-26px);
}

/* 
** Start Footer
*/
footer {
  background-color: #212326;
  color: #ffffff;
}

footer .footer-container {
  display: flex;
  justify-content: space-between;
}

footer .info {
  width: 761px;
  padding: 60px 93px 210px 104px;
  display: flex;
  justify-content: space-between;
  position: relative;
}

footer .info .shape {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 137px;
}

footer .info .shape svg {
  width: 100%;
  height: auto;
}

footer .copyrights {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

footer .privacy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .privacy a {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  text-decoration-line: underline;
  color: #ffffff;
  opacity: 0.7;
}

footer .privacy .agency {
  opacity: 1;
  text-decoration: none;
}

footer .address {
  display: flex;
  gap: 15px;
}

footer .address span {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .address .icon {
  width: 22px;
  height: 22px;
}

footer .address .text {
  width: calc(100% - 37px);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #fcfcf8;
}

footer .contacts-wrapper {
  display: flex;
  flex-direction: column;
  gap: 41px;
}

footer .contact-us {
  display: flex;
  gap: 10px;
}

footer .contact-us .btn-contact {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #474c554d;
	transition: .5s ease-in-out;
}

footer .contact-us .btn-contact:hover {
	background-color: #474c55;
}

footer .harpers-details {
  width: 258px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding-right: 40px;
  border-right: 1px solid rgba(72, 77, 86, 0.5019607843);
}

footer .harpers-details p {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}

footer .harpers-details p:first-of-type {
  font-weight: 700;
}

footer .harpers-contacts {
  width: 269px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

footer .contact {
  width: calc(100% - 761px);
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 41px;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(0deg, #212326, #212326),
    linear-gradient(149.45deg,
      rgba(71, 76, 85, 0.4) 0.8%,
      rgba(71, 76, 85, 0) 81.44%);
  background-blend-mode: color;
}

footer .contact::after {
  content: "";
  position: absolute;
  left: 0;
  top: 60px;
  width: 1px;
  height: 47px;
  background-color: #f8c200;
}

footer .contact h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  color: #f5f5f5;
  max-width: 336px;
}

footer form {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 10px;
}

footer form .input-field {
  width: calc(50% - 5px);
}

footer form .input-field input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: none;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.3019607843);
  transition: 0.5s ease-in-out;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.04em;
  color: #f5f5f5;
  font-family: "aktiv-grotesk-extended", sans-serif;
}

footer form .input-field input:focus {
  border-bottom-color: #f8c200;
}

footer form .input-field input::-webkit-input-placeholder {
  color: #f5f5f5;
}

footer form .input-field input::-moz-placeholder {
  color: #f5f5f5;
}

footer form .input-field input:-ms-input-placeholder {
  color: #f5f5f5;
}

footer form .input-field input:-moz-placeholder {
  color: #f5f5f5;
}

footer form .input-field textarea {
  width: 100%;
  min-height: 75px;
  background-color: transparent;
  border: none;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245, 245, 245, 0.3019607843);
  transition: 0.5s ease-in-out;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 15px;
  letter-spacing: 0.04em;
  color: #f5f5f5;
  font-family: "aktiv-grotesk-extended", sans-serif;
  resize: none;
}

footer form .input-field textarea:focus {
  border-bottom-color: #f8c200;
}

footer form .input-field textarea::-webkit-input-placeholder {
  color: #f5f5f5;
}

footer form .input-field textarea::-moz-placeholder {
  color: #f5f5f5;
}

footer form .input-field textarea:-ms-input-placeholder {
  color: #f5f5f5;
}

footer form .input-field textarea:-moz-placeholder {
  color: #f5f5f5;
}

footer form .required-field {
  width: calc(50% - 5px);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 13px;
  color: #f5f5f5;
}

footer form .submit-field {
  width: calc(50% - 5px);
  display: flex;
  justify-content: flex-end;
}

footer form .submit-field button {
  display: flex;
  align-items: center;
  gap: 17px;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #f5f5f5;
  font-family: "aktiv-grotesk-extended", sans-serif;
}

footer form .submit-field span {
  display: flex;
  align-items: center;
  justify-content: center;
}

footer form .submit-field .icon {
  width: 30px;
  height: 30px;
}

footer form .check-field {
  position: relative;
  isolation: isolate;
}

footer form .check-field label {
  padding-left: 26px;
  display: flex;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #f5f5f5;
  max-width: 385px;
  cursor: pointer;
}

footer form .check-field a {
  text-decoration: underline;
}

footer form .check-field input[type="checkbox"] {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 0;
  border: 1px solid rgba(245, 245, 245, 0.3019607843);
  background-color: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
}

footer form .check-field input[type="checkbox"]::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: #f5f5f5;
  border-radius: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

footer form .check-field input[type="checkbox"]:checked::after {
  opacity: 1;
  visibility: visible;
}

footer form .w-full {
  width: 100%;
}

/*
** Contact Form 7
*/
.wpcf7-not-valid-tip {
  font-size: 12px !important;
  font-weight: 500 !important;
}

.wpcf7 form .wpcf7-response-output {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  font-size: 14px;
  font-weight: 700;
}

.wpcf7-list-item {
  display: flex !important;
  margin: 0 !important;
}

/*
** Single Article
*/

.single-article-template {
  background-image: repeating-linear-gradient(to right,
      #484d5614 0,
      #484d5614 1px,
      transparent 1px,
      transparent 82px);
  background-position: 23px 0;
  background-repeat: no-repeat;
  position: relative;
  isolation: isolate;
  padding-top: 236px;
  background-color: #f5f5f5;
}

.single-article-template .article-wrapper {
  background-color: #ffffff;
  padding: 40px 0 80px 0;
  position: relative;
  isolation: isolate;
  margin-bottom: 50px;
}

.single-article-template .article-wrapper .wrapper {
  width: 1106px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.single-article-template .article-wrapper .arrows {
  position: absolute;
  right: 0;
  top: 0;
}

.single-article-template .hero-section {
  color: #212326;
}

.single-article-template .hero-section .content {
  border-bottom: 1px solid #f8c200;
}

.single-article-template .hero-section .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #212326;
  margin-bottom: 40px;
}

.single-article-template .hero-section .back-btn .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-article-template .hero-section h1 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 38px;
  line-height: 48px;
  color: #212326;
  margin-bottom: 50px;
}

.single-article-template .hero-section .article-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 160%;
  color: #212326;
  padding-bottom: 21px;
  flex-wrap: wrap;
}

.single-article-template .hero-section .article-meta .category,
.single-article-template .hero-section .article-meta .date span,
.single-article-template .hero-section .article-meta .author a {
  font-weight: 400;
}

.single-article-template .article-body {
  padding-top: 45px;
}

.single-article-template .article-content {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  color: #212326;
}

.single-article-template .article-content p {
  margin-bottom: 30px;
}

.single-article-template .article-content p a {
	
text-decoration : underline;	
	
}


.single-article-template .article-content h2,
.single-article-template .article-content h3,
.single-article-template .article-content h4 {
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 31px;
  color: #212326;
  margin-bottom: 20px;
  margin-top: 10px;
}

.single-article-template .article-content ul,
.single-article-template .article-content ol {
  padding-left: 20px;
  margin-bottom: 30px;
  list-style: disc;
}

.single-article-template .article-content li {
  margin-bottom: 10px;
}

.single-article-template .article-share {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  font-family: "aktiv-grotesk-extended", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #212326;
}

.single-article-template .article-share .label {
  font-weight: 300;
}

.single-article-template .article-share a {
  text-decoration: underline;
  font-weight: 400;
  cursor: pointer;
}

.single-article-template>.arrows {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.legal-page .article-body {
  padding-top: 0;
}

.legal-page .article-wrapper {
  margin-bottom: 80px;
}

/*
** Start Page Not Found Styles
*/

.page-not-found {
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  z-index: 1;
  padding: 240px 20px;
  background-color: #f5f5f5;
  overflow: hidden;
}

.page-not-found:after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='1442' height='781' viewBox='0 0 1442 781' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.5' d='M942.645 780.376L942.645 570.283' stroke='%23AEAFBB' stroke-width='17.63' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M1169.54 780.376L1169.54 663.879' stroke='%23AEAFBB' stroke-width='25.05' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M14 780.376L14 663.879' stroke='%23AEAFBB' stroke-width='25.05' stroke-miterlimit='10'/%3E%3Cpath d='M832.77 780.375L832.77 707.421' stroke='%23212326' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath d='M719.139 780.375L719.139 707.421' stroke='%23FFBF00' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath d='M1052.47 780.375L1052.47 665.09' stroke='%23FFBF00' stroke-width='25.05' stroke-miterlimit='10'/%3E%3Cpath d='M140.743 780.375L140.743 663.879' stroke='%23FFBF00' stroke-width='28.76' stroke-miterlimit='10'/%3E%3Cpath d='M390.577 780.376L390.577 670.139' stroke='%23FFBF00' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath d='M492.221 670.139L492.221 570.283' stroke='%23FFBF00' stroke-width='21.34' stroke-miterlimit='10'/%3E%3Cpath d='M390.577 670.139L390.577 570.283' stroke='%23212326' stroke-width='21.34' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M492.221 780.376V670.139' stroke='%23AEAFBB' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M605.817 780.375L605.817 707.344' stroke='%23AEAFBB' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M605.961 707.34L605.817 570.283' stroke='%23AEAFBB' stroke-width='21.34' stroke-miterlimit='10'/%3E%3Cpath d='M719.139 707.417L719.139 570.283' stroke='%237A7D88' stroke-width='21.34' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M832.77 707.417L832.77 570.283' stroke='%23AEAFBB' stroke-width='21.34' stroke-miterlimit='10'/%3E%3Cpath d='M1052.47 665.09L1052.47 570.283' stroke='%23212326' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath d='M1169.54 663.879V345' stroke='%23FFBF00' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath d='M272.521 663.879V345' stroke='%23FFBF00' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M1293.35 780.375V663.879' stroke='%23AEAFBB' stroke-width='28.76' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M1293.35 663.879V345' stroke='%23AEAFBB' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M140.743 663.879V345' stroke='%23AEAFBB' stroke-width='6.5' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M1425.13 780.376V663.879' stroke='%23AEAFBB' stroke-width='32.48' stroke-miterlimit='10'/%3E%3Cpath opacity='0.5' d='M272.521 780.376V663.879' stroke='%23AEAFBB' stroke-width='32.48' stroke-miterlimit='10'/%3E%3Cpath d='M1425.25 663.879V345' stroke='%23FFBF00' stroke-width='2.78' stroke-miterlimit='10'/%3E%3Cpath d='M14 663.879V345' stroke='%23FFBF00' stroke-width='2.78' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: -1;
}

.page-not-found .cta {
  display: flex;
  justify-content: center;
}

.page-not-found .page-not-found-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-not-found h1 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 110px;
  line-height: 110px;
  text-align: center;
}

.page-not-found h2 {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 37px;
  text-align: center;
}

.page-not-found p {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

/*
** Start Responsive 
*/