* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Satoshi", sans-serif;
}

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

.wow {
  visibility: hidden;
}

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

a.hoverLine {
  position: relative;
}

a.hoverLine:before,
a.hoverLine:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0;
}
a.hoverLine:after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #000;
}
a.hoverLine:before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: 0.6s transform cubic-bezier(0.55, 0, 0.1, 1),
    0.6s width cubic-bezier(0.55, 0, 0.1, 1);
}
a.hoverLine:after {
  transform: scaleX(calc(1 * var(--line)));
  transform-origin: right center;
  transition: 0.6s transform cubic-bezier(0.55, 0, 0.1, 1),
    0.6s width cubic-bezier(0.55, 0, 0.1, 1);
}
a.hoverLine:hover:before {
  transform: scaleX(1);
  transition: 0.6s transform 0.3s cubic-bezier(0.55, 0, 0.1, 1),
    0.6s width cubic-bezier(0.55, 0, 0.1, 1);
  opacity: 1;
}
a.hoverLine:hover:after {
  transform: scaleX(0);
  transition: 0.6s transform cubic-bezier(0.55, 0, 0.1, 1),
    0.6s width cubic-bezier(0.55, 0, 0.1, 1);
  opacity: 1;
}

.container {
  max-width: clamp(1440px, 100vw, 1920px);
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
}

.member_block {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: clamp(360px, 25vw, 480px);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  transition: 0.5s ease-in-out;
  isolation: isolate;
  border: 2px solid #efe9e5;
}
.member_block.empty {
  pointer-events: none;
  display: none;
}
.member_block.empty.left {
  border-radius: 0 50% 50% 0;
}
.member_block.empty.right {
  border-radius: 50% 0 0 50%;
}
.member_block.our_team {
  background-color: #dcd7d3;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: clamp(25px, 1.7361111111vw, 33.3333333333px);
  line-height: clamp(30px, 2.0833333333vw, 40px);
  text-align: center;
  color: #000;
  /*background: repeating-linear-gradient(
      to left,
      #000 0px,
      #000 50%,
      transparent 50%,
      transparent calc(50% + 1px),
      #000 calc(50% + 1px),
      #000 100%
    ),
    rgb(102, 102, 102);*/
}
.member_block.our_team::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - clamp(90px, 6.25vw, 120px));
  left: 0;
  top: clamp(45px, 3.125vw, 60px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 500px;
  background-color: #dcd7d3;
  z-index: -2;
}
.member_block.our_team::before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - clamp(226px, 15.6944444444vw, 301.3333333333px));
  left: 0;
  top: clamp(113px, 7.8472222222vw, 150.6666666667px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 500px;
  background-color: #dcd7d3;
  z-index: -1;
}
.member_block .m_img {
  width: 100%;
}
.member_block .m_img img {
  width: calc(100% + 6px);
  position: relative;
  left: -3px;
  top: -3px;
}
.member_block .m_info {
  position: absolute;
  left: -200px;
  opacity: 0;
  visibility: hidden;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: 0.5s ease-in-out;
  z-index: 1;
}
.member_block .m_info .m_name {
  font-weight: 500;
  font-size: clamp(24px, 1.6666666667vw, 32px);
  line-height: clamp(32.4px, 2.25vw, 43.2px);
  color: #ffffff;
}
.member_block .m_info .m_status {
  font-weight: 500;
  font-size: clamp(16px, 1.1111111111vw, 21.3333333333px);
  line-height: clamp(26px, 1.8055555556vw, 34.6666666667px);
  color: #ffffff;
}
.member_block:hover {
  border-radius: 10px;
}
.member_block:hover .m_info {
  left: 30px;
  opacity: 1;
  visibility: visible;
}
.member_block:hover .extern_icon {
  right: clamp(11px, 0.7638888889vw, 14.6666666667px);
}
.member_block .extern_icon {
  position: absolute;
  top: clamp(15px, 1.0416666667vw, 20px);
  right: 0;
  transition: 0.4s ease-in-out;
  width: clamp(23px, 1.5972222222vw, 30.6666666667px);
  height: clamp(20px, 1.3888888889vw, 26.6666666667px);
}

.enjeux_block {
  border: 2px solid rgba(255, 255, 255, 0.5019607843);
  background-color: #efe9e5;
  width: 100%;
  max-width: clamp(360px, 25vw, 480px);
  height: clamp(438px, 30.4166666667vw, 584px);
  border-radius: 10px;
  position: relative;
  isolation: isolate;
  transition: 0.4s ease-in-out;
}
.enjeux_block:hover {
  background-color: #f7f4f2;
}
.enjeux_block h3 {
  padding: 0 clamp(27px, 1.875vw, 36px);
  padding-top: clamp(27px, 1.875vw, 36px);
  font-weight: 700;
  font-size: clamp(20px, 1.3888888889vw, 26.6666666667px);
  line-height: clamp(30px, 2.0833333333vw, 36px);
}
.enjeux_block p {
  font-weight: 400;
  font-size: clamp(16px, 1.1111111111vw, 21.3333333333px);
  line-height: clamp(26px, 1.8055555556vw, 34px);
  color: #160800;
  padding: 0 clamp(27px, 1.875vw, 36px);
  position: absolute;
  left: 0;
  top: clamp(173px, 12.0138888889vw, 230.6666666667px);
  width: 100%;
}
.enjeux_block .read_more {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: clamp(35px, 2.4305555556vw, 46.6666666667px)
    clamp(27px, 1.875vw, 36px);
  display: flex;
  width: 100%;
  font-weight: 500;
  font-size: clamp(16px, 1.1111111111vw, 21.3333333333px);
  line-height: clamp(26px, 1.8055555556vw, 36px);
  text-transform: uppercase;
}
.enjeux_block::after {
  position: absolute;
  content: "";
  width: clamp(94px, 6.5277777778vw, 125.3333333333px);
  height: clamp(94px, 6.5277777778vw, 125.3333333333px);
  bottom: 0;
  right: 30px;
  border: 1px solid #ffffff;
  border-radius: 50%;
}
.enjeux_block::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: clamp(95px, 6.5972222222vw, 126.6666666667px);
  right: 0;
  background-color: #ffffff;
}

.article {
  /* padding: clamp(33px, 2.2916666667vw, 44px) clamp(27px, 1.875vw, 36px)
    clamp(20px, 1.3888888889vw, 26.6666666667px); */
  background-color: #efe9e5;
  border-radius: 10px;
  border: 2px solid #ffffff;
  display: flex;
  flex-direction: column;
  gap: clamp(86px, 5.9722222222vw, 114.6666666667px);
  width: 100%;
  max-width: clamp(100%, 25vw, 480px);
  /* aspect-ratio: 1/1; */
  position: relative;
  transition: 0.4s ease-in-out;
}

.article > div {
  display: flex;
  flex-direction: column;
  gap: clamp(86px, 5.9722222222vw, 114.6666666667px);
  aspect-ratio: 1/1;
  padding: 33px 27px 50px 27px;
}

.article .extern_icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
}
.article .top {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.article .top .cat {
  font-weight: 700;
  font-size: clamp(16px, 1.1111111111vw, 21.3333333333px);
  line-height: clamp(19px, 1.3194444444vw, 25.3333333333px);
  text-transform: uppercase;
}
.article .top .pub_date {
  font-weight: 500;
  font-size: clamp(14px, 0.9722222222vw, 18.6666666667px);
  line-height: clamp(19px, 1.3194444444vw, 25.3333333333px);
}
.article .title {
  font-weight: 700;
  font-size: clamp(21px, 1.4583333333vw, 28px);
  line-height: clamp(29px, 2.0138888889vw, 38.6666666667px);
  opacity: 0.8;
  color: #000000;
}
.article::after {
  content: "";
  position: absolute;
  left: clamp(27px, 1.875vw, 36px);
  bottom: clamp(28px, 1.9444444444vw, 37.3333333333px);
  width: 0;
  /* width: calc(100% - clamp(54px, 3.75vw, 72px)); */

  /* height: clamp(1px, 0.0694444444vw, 1.3333333333px); */

  height: 1px;

  background-color: #000000;
  transition: 0.4s ease-in-out;
}
.article:hover {
  background-color: #f7f4f2;
}
.article:hover::after {
  width: calc(100% - clamp(54px, 3.75vw, 72px));
}

header {
  padding-top: 30px;
  max-height: 103px;
  position: relative;
  z-index: 3;
  transform: translateY(60px);
  opacity: 0;
}
header.main_header .logo {
  width: 180px;
  height: 74px;
  overflow: hidden;
  display: flex;
}
header.main_header .logo svg:first-of-type {
  transform: translateX(-74px);
}
header.main_header .logo svg:last-of-type {
  transform: translateY(74px);
}
header .header_container {
  max-width: clamp(1440px, 100vw, 1920px);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
header nav {
  display: flex;
  align-items: flex-start;
}
header nav.left {
  gap: 42px;
  align-items: center;
}
header nav.right {
  padding-top: 20px;
}
header nav .lang_wrapper {
  margin-right: 8px;
  position: relative;
  transition: 0.4s ease-in-out;
  display: none !important;
}
header nav .lang_wrapper .lang_header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px;
  border-radius: 30px;
  background-color: #f7f4f2;
  height: 40px;
  cursor: pointer;
}
header nav .lang_wrapper span {
  font-family: Inter;
  font-weight: 500;
  font-size: 13px;
  line-height: 15.73px;
  color: #160800;
  text-transform: uppercase;
  margin-left: 2px;
  display: flex;
}
header nav .lang_wrapper .lang_body {
  padding: 8px 10px 10px;
  border-radius: 5px;
  background-color: #f7f4f2;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
}
header nav .lang_wrapper .lang_body span {
  text-align: center;
  justify-content: center;
  margin-left: 0;
}
header nav .lang_wrapper:hover {
  height: 90px;
}
header nav .lang_wrapper:hover .lang_body {
  top: 45px;
  opacity: 1;
  visibility: visible;
}
header nav .serach_wrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 40px;
  height: 40px;
  border-radius: 45px;
  padding: 0;
  background-color: #f7f4f2;
  transition: 0.4s ease-in-out;
  position: relative;
}
header nav .serach_wrapper .search_input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
}
header nav .serach_wrapper .search_input input {
  outline: none;
  border: none;
  height: 100%;
  background-color: transparent;
  padding-left: 14px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  transition-delay: 0.3s;
}
header nav .serach_wrapper .search_icon {
  margin-left: auto;
  cursor: pointer;
  position: relative;
  background-color: #f7f4f2;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
header nav .serach_wrapper:hover {
  width: 190px;
}
header nav .serach_wrapper:hover input {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
header nav .menu_btn {
  display: flex;
  align-items: center;
  border-radius: 45px;
  background-color: #000000;
  padding: 19px;
  gap: 10px;
  margin-left: 20px;
  margin-top: -10px;
  cursor: pointer;
  transition: 0.4s;
}
header nav .menu_btn span {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 19.36px;
  color: #efe9e5;
  transition: 0.4s;
}
header nav .menu_btn .menu_burger {
  width: 22px;
  height: 7px;
  position: relative;
}
header nav .menu_btn .menu_burger::after,
header nav .menu_btn .menu_burger::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  background-color: #efe9e5;
  border-radius: 400px;
  transition: 0.4s;
}
header nav .menu_btn .menu_burger::before {
  top: unset;
  bottom: 0;
}

.your_profile {
  padding-left: 26px;
  border-left: 1px solid rgba(176, 155, 144, 0.5);
}
.your_profile .your_profile_btn {
  padding: 13px;
  border-radius: 50px;
  border: 1px solid rgba(219, 204, 189, 0.5019607843);
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.your_profile .your_profile_btn span {
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
}
.your_profile .your_profile_btn svg {
  transition: 0.4s;
}

.menu {
  position: absolute;
  max-width: clamp(1440px, 100vw, 1920px);
  width: 100%;
  margin: 0 auto;
  top: var(--client-h, -100%);
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 3;
  transition: 0.4s ease-in-out;
}
.menu header {
  padding-top: 0;
  position: absolute;
  width: calc(100% - 40px);
  padding: 0 20px;
  top: 43px;
  z-index: 1;
}
.menu header .header_container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.menu header nav .menu_btn {
  background-color: #ffffff;
  padding: 19px 25px;
}
.menu header nav .menu_btn span {
  color: #000;
}
.menu .your_profile {
  padding-left: 0;
  border-left: 0;
  position: absolute;
  top: 27px;
  left: 20px;
  z-index: 1;
}
.menu .your_profile .your_profile_btn {
  padding: 13px 16px;
  border: 1px solid #fff;
}

.menu_oppened .menu {
  top: 0;
}

.menu_container {
  background: linear-gradient(0deg, #efe9e5, #efe9e5),
    linear-gradient(0deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 384px;
  border-radius: 10px;
}

.menu_container .list {
  padding: 106px 50px 20px 25px;
  position: relative;
}

.menu_container .list ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu_container .list:nth-child(2),
.menu_container .list:nth-last-child(2) {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.menu_container .list ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
  font-size: clamp(20px, 1.3888888889vw, 26.6666666667px);
  line-height: clamp(27px, 1.875vw, 36px);
  color: #000000;
}

.menu_container .list.in_touch {
  padding: 17px;
  display: flex;
  align-items: flex-end;
}

.menu_container .list.in_touch .icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu_container .list.in_touch .icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  position: relative;
}
.menu_container .list.in_touch .icons a:hover svg {
  position: relative;
  z-index: 2;
}
.menu_container .list.in_touch .icons a span {
  width: max-content;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  background: #ffffff;
  z-index: 1;
  border-radius: 20px;
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  transition: opacity 0.3s;
}
.menu_container .list.in_touch .icons a .info {
  position: absolute;
  top: -45px;
  display: flex;
  align-items: center;
  gap: 1px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  left: 0;
}

.menu_container .list.in_touch .icons a:last-of-type .info {
  left: unset;
}

.menu_container .list.in_touch .icons a:hover .info {
  opacity: 1;
  visibility: visible;
}
.menu_container .list.in_touch .icons a:hover {
  background-color: #fbf7f3;
}

.menu_container .list.tools_links {
  padding: 106px 30px 20px 42px;
}

.menu_container .list.tools_links span {
  font-weight: 500;
  font-size: clamp(14px, 0.9722222222vw, 18.6666666667px);
  line-height: clamp(20px, 1.3888888889vw, 26.6666666667px);
  color: #000;
}

.menu_container .list.tools_links ul {
  margin-top: 14px;
}

.menu_container .list.tools_links ul li {
  font-weight: 400;
  font-size: clamp(12px, 0.8333333333vw, 16px);
  line-height: clamp(16px, 3.111111vw, 26.333333px);
  text-transform: uppercase;
}

.menu_container .list ul li svg {
  transition: 0.4s ease-in-out;
}

.menu_container .list ul li:hover svg {
  transform: translateX(10px);
}

@media screen and (min-width: 1500px) {
  .menu_container .list ul li svg,
  .savoir_faire .sf_grid a svg {
    transform: scale(1.5) !important;
  }
  .menu_container .list ul li:hover svg,
  .savoir_faire .sf_grid a:hover svg {
    transform: scale(1.5) translateX(10px) !important;
  }
}
.backdrop {
  position: fixed;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  background-color: rgba(239, 234, 230, 0.2078431373);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body:is(.menu_oppened, .profile_menu_oppened) .backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.profile_menu {
  position: absolute;
  max-width: clamp(1440px, 100vw, 1920px);
  width: 100%;
  margin: 0 auto;
  top: var(--client-h, -100%);
  opacity: 0;
  left: 0;
  right: 0;
  z-index: 3;
  transition: 0.4s ease-in-out;
  padding: 0 10px;
}
.profile_menu .container {
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 10px;
  background-color: #f6f4f3;
}
.profile_menu .profile_menu_inner {
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 14px;
  display: flex;
  padding-top: clamp(53px, 3.6805555556vw, 70.6666666667px);
  padding-left: clamp(103px, 7.1527777778vw, 137.3333333333px);
  padding-bottom: clamp(60px, 4.1666666667vw, 80px);
  padding-right: clamp(60px, 4.1666666667vw, 80px);
  justify-content: space-between;
  gap: 20px;
}
.profile_menu .profile_menu_inner .left {
  width: 100%;
  max-width: 368px;
  padding-right: 40px;
  padding-bottom: 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.profile_menu .profile_menu_inner .left h3 {
  font-weight: 500;
  font-size: clamp(26px, 1.8055555556vw, 34.6666666667px);
  line-height: clamp(35px, 2.4305555556vw, 46.6666666667px);
  color: #000;
  text-transform: uppercase;
  max-width: clamp(250px, 17.3611111111vw, 333.3333333333px);
  margin-bottom: 12px;
}
.profile_menu .profile_menu_inner .left p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.profile_menu .profile_menu_inner .profiles {
  display: flex;
  gap: 30px;
}
.profile_menu .profile_menu_inner .profiles .profile {
  padding: clamp(24px, 1.6666666667vw, 32px);
  border-radius: 20px;
  max-width: clamp(354px, 24.5833333333vw, 472px);
  padding-bottom: 73px;
  position: relative;
  transition: 0.4s ease-in-out;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.profile_menu .profile_menu_inner .profiles .profile:hover,
.profile_menu .profile_menu_inner .profiles .profile.active {
  background-color: rgba(239, 233, 229, 0.6);
}
.profile_menu .profile_menu_inner .profiles .profile .profile_h {
  font-weight: 700;
  font-size: 18px;
  line-height: 24.3px;
  padding-bottom: 23px;
  text-transform: uppercase;
}
.profile_menu .profile_menu_inner .profiles .profile .profile_p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.profile_menu .profile_menu_inner .profiles .profile .icon {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #efe9e5;
}
.profile_menu .profile_menu_inner .profiles .profile .icon svg {
  opacity: 0;
}
.profile_menu .profile_menu_inner .profiles .profile.active .icon svg {
  opacity: 1;
}

.profile_menu_oppened .your_profile .your_profile_btn {
  background-color: #000000;
}
.profile_menu_oppened .your_profile .your_profile_btn span {
  color: #efe9e5;
}
.profile_menu_oppened .your_profile .your_profile_btn > svg {
  transform: rotate(-180deg);
}
.profile_menu_oppened .your_profile .your_profile_btn i svg path {
  fill: #efe9e5;
}
.profile_menu_oppened .your_profile .your_profile_btn > svg path {
  stroke: #efe9e5;
}
.profile_menu_oppened .profile_menu {
  top: 144px;
  opacity: 1;
}

:is(.home_page, .cabinet_page) .hero_s {
  padding-top: 187px;
  position: relative;
}
:is(.home_page, .cabinet_page) .hero_s .container {
  padding: 0 20px;
}
:is(.home_page, .cabinet_page) .hero_s .heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 20px;
}
:is(.home_page, .cabinet_page) .hero_s .heading h1 {
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  transform: translateY(clamp(983px, 68.2638888889vw, 1310.6666666667px));
}
:is(.home_page, .cabinet_page) .hero_s .heading .scroll_down {
  font-weight: 400;
  font-size: 12px;
  line-height: 16.8px;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(clamp(727px, 50.4861111111vw, 969.3333333333px));
  opacity: 0;
}
:is(.home_page, .cabinet_page) .hero_s .f_txt {
  position: fixed;
  inset: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  height: -moz-max-content;
  height: max-content;
  align-items: center;
  gap: clamp(135px, 9.375vw, 180px);
  z-index: 1;
  pointer-events: none;
}
:is(.home_page, .cabinet_page) .hero_s .f_txt .p_wrapper {
  height: 70px;
  overflow: hidden;
}
:is(.home_page, .cabinet_page) .hero_s .f_txt p {
  font-weight: 500;
  font-size: 30px;
  line-height: 35px;
  transform: translateY(clamp(96px, 6.6666666667vw, 128px));
}
:is(.home_page, .cabinet_page) .hero_s .logo_mini {
  height: clamp(104px, 7.2222222222vw, 138.6666666667px);
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  opacity: 0;
  display: flex;
  align-items: center;
}
:is(.home_page, .cabinet_page) .hero_s .logo_mini svg {
  transform: translateX(
    calc(clamp(115px, 7.9861111111vw, 153.3333333333px) * -1)
  );
  /*   width: clamp(95px, 6.5972222222vw, 161px); */
  min-width: 115px;
  height: 95px;
  background-color: #fff;
}
:is(.home_page, .cabinet_page) .hero_s .logo_mini svg:last-of-type {
  transform: translateX(calc(clamp(255px, 17.7083333333vw, 340px) * -1));
  /*   width: clamp(130px, 9.0277777778vw, 173.3333333333px); */
  height: 95px;
  position: relative;
  z-index: -1;
}
:is(.home_page, .cabinet_page) .hero_s .hero_img {
  margin-top: 17px;
  padding: 20px 0 0;
  border-radius: 10px;
}
:is(.home_page, .cabinet_page) .hero_s .hero_img img {
  transform: translateY(clamp(814px, 56.5277777778vw, 1085.3333333333px));
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
:is(.home_page, .cabinet_page) .hero_s .about_bsbm {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
  background-color: #fff;
  transform: translateY(clamp(100px, 6.9444444444vw, 133.3333333333px));
  opacity: 0;
}
:is(.home_page, .cabinet_page) .hero_s .about_bsbm .block {
  border-radius: 10px;
  padding: clamp(74px, 5.1388888889vw, 98.6666666667px)
    clamp(80px, 5.5555555556vw, 106.6666666667px) clamp(90px, 6.25vw, 120px)
    clamp(66px, 4.5833333333vw, 88px);
  background-color: #efe9e5;
  width: 100%;
  max-width: clamp(940px, 65.2777777778vw, 1253.3333333333px);
}
:is(.home_page, .cabinet_page) .hero_s .about_bsbm .block h3 {
  font-weight: 500;
  font-size: clamp(32px, 2.2222222222vw, 42.6666666667px);
  line-height: clamp(41px, 2.8472222222vw, 54.6666666667px);
  width: 100%;
  max-width: clamp(432px, 30vw, 576px);
}
:is(.home_page, .cabinet_page) .hero_s .about_bsbm .block p {
  font-weight: 400;
  font-size: clamp(20px, 1.3888888889vw, 26.6666666667px);
  line-height: clamp(30px, 2.0833333333vw, 40px);
  margin-top: clamp(30px, 2.0833333333vw, 40px);
}
:is(.home_page, .cabinet_page) .hero_s .about_bsbm .read_more {
  width: clamp(458px, 31.8055555556vw, 610.6666666667px);
  height: clamp(458px, 31.8055555556vw, 610.6666666667px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  flex-shrink: 0;
}
:is(.home_page, .cabinet_page) .hero_s .about_bsbm .read_more a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: clamp(75px, 5.2083333333vw, 104px);
  border-radius: 229px;
  border: 1px solid rgb(246, 245, 244);
  font-weight: 500;
  font-size: clamp(22px, 1.5277777778vw, 29.3333333333px);
  line-height: clamp(30px, 2.0833333333vw, 40px);
  position: relative;
  isolation: isolate;
  background-color: #dcd7d3;
}

:is(.home_page, .cabinet_page) .hero_s .about_bsbm .read_more a span {
  text-transform: uppercase;
}

:is(.home_page, .cabinet_page) .hero_s .about_bsbm .read_more a::before {
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  left: -2px;
  top: -2px;
  background-color: #dcd7d3;
  border: 1px solid rgb(246, 245, 244);
  border-radius: 229px;
  z-index: -1;
}
:is(.home_page, .cabinet_page) .hero_s .about_bsbm .read_more::after {
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  inset: 0;
  margin: auto;
  background-color: #efe9e5;
  z-index: -2;
  transition: 0.4s ease-in-out;
  pointer-events: none;
  background: repeating-linear-gradient(
      to right,
      transparent 0px,
      transparent clamp(68px, 4.7222222222vw, 90.6666666667px),
      rgb(246, 245, 244) clamp(68px, 4.7222222222vw, 90.6666666667px),
      rgb(246, 245, 244) clamp(69px, 4.7916666667vw, 92px),
      transparent clamp(69px, 4.7916666667vw, 92px),
      transparent 100%
    ),
    repeating-linear-gradient(
      to left,
      transparent 0px,
      transparent clamp(68px, 4.7222222222vw, 90.6666666667px),
      rgb(246, 245, 244) clamp(68px, 4.7222222222vw, 90.6666666667px),
      rgb(246, 245, 244) clamp(69px, 4.7916666667vw, 92px),
      transparent clamp(69px, 4.7916666667vw, 92px),
      transparent 100%
    ),
    repeating-linear-gradient(
      to right,
      transparent 0px,
      transparent 50%,
      rgb(246, 245, 244) clamp(147px, 10.2083333333vw, 196px),
      rgb(246, 245, 244) calc(50% + 1px),
      transparent calc(50% + 1px),
      transparent 100%
    ),
    repeating-linear-gradient(
      to bottom,
      transparent 0px,
      transparent 50%,
      rgb(246, 245, 244) clamp(147px, 10.2083333333vw, 196px),
      rgb(246, 245, 244) calc(50% + 1px),
      transparent calc(50% + 1px),
      transparent 100%
    ),
    #dcd7d3;
}
:is(.home_page, .cabinet_page) .hero_s .about_bsbm .read_more a i {
  height: 14px;
  display: flex;
  align-items: center;
}
:is(.home_page, .cabinet_page) .hero_s .about_bsbm .read_more a svg {
  transform: translateY(2px);
}
:is(.home_page, .cabinet_page) .hero_s .about_bsbm .read_more:hover::after {
  width: clamp(350px, 24.305555555555557vw, 466.66666666666674px);
  height: clamp(182px, 12.63888888888889vw, 242.66666666666669px);
  border-radius: 229px;
}

.savoir_faire {
  padding-top: clamp(54px, 3.75vw, 72px);
  padding-bottom: clamp(73px, 5.0694444444vw, 97.3333333333px);
  background-color: #f7f4f2;
  position: relative;
  z-index: 1;
}
.savoir_faire .container {
  padding: 0 80px;
}
.savoir_faire h3 {
  font-weight: 700;
  font-size: clamp(20px, 1.3888888889vw, 26.6666666667px);
  line-height: clamp(28px, 1.9444444444vw, 37.3333333333px);
}
.savoir_faire p {
  font-weight: 400;
  font-size: clamp(22px, 2.2222222222vw, 42.6666666667px);
  line-height: clamp(34.8px, 3.1111111111vw, 59.7333333333px);
  margin-top: clamp(40px, 2.7777777778vw, 53.3333333333px);
}
.savoir_faire .sf_grid {
  display: grid;
  margin-top: clamp(40px, 8.125vw, 156px);
  grid-template-columns: repeat(2, 1fr);
  gap: 0 clamp(50px, 3.4722222222vw, 66.6666666667px);
}
.savoir_faire .sf_grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 1.3888888889vw, 26.6666666667px) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  font-weight: 400;
  font-size: clamp(24px, 1.6666666667vw, 32px);
  line-height: clamp(24px, 1.6666666667vw, 32px);
  padding-right: 6px;
  transition: 0.4s;
}
.savoir_faire .sf_grid a:last-of-type,
.savoir_faire .sf_grid a:nth-last-child(2) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.savoir_faire .sf_grid a svg {
  transition: 0.4s ease-in-out;
}
.savoir_faire .sf_grid a:hover {
  border-top-color: #000;
}
.savoir_faire .sf_grid a:hover svg {
  transform: translateX(10px);
}
.team_s {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding-top: clamp(20px, 1.3888888888888888vw, 26.666666666666664px);
}
.team_s .inner_grid {
  display: flex;
  flex-wrap: wrap;
}
.team_s .inner_grid .left,
.team_s .inner_grid .right {
  width: 100%;
  max-width: 50%;
}
.team_s .inner_grid .blacl_b {
  display: flex;
  position: relative;
  flex-direction: column;
  gap: clamp(117px, 8.125vw, 156px);
  background-color: #000;
  padding: clamp(59px, 4.0972222222vw, 78.6666666667px) 20px
    clamp(66px, 4.5833333333vw, 88px) clamp(87px, 6.0416666667vw, 116px);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.team_s .inner_grid .blacl_b svg {
  position: absolute;
  top: clamp(42px, 2.9166666667vw, 56px);
  right: clamp(42px, 2.9166666667vw, 56px);
  width: clamp(45px, 3.125vw, 60px);
  height: clamp(45px, 3.125vw, 60px);
}
.team_s .inner_grid .blacl_b span {
  font-weight: 700;
  font-size: clamp(20px, 1.3888888889vw, 26.6666666667px);
  line-height: clamp(28px, 1.9444444444vw, 37.3333333333px);
  color: #efe9e5;
}
.team_s .inner_grid .blacl_b h3 {
  font-weight: 700;
  font-size: clamp(32px, 2.2222222222vw, 42.6666666667px);
  line-height: clamp(44px, 3.0555555556vw, 58.6666666667px);
  color: #efe9e5;
  width: 100%;
  max-width: clamp(454px, 31.5277777778vw, 605.3333333333px);
}
.team_s .inner_grid .circles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.team_s .inner_grid .circles .empty_c {
  width: clamp(360px, 25vw, 480px);
  aspect-ratio: 1/1;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border: 1px solid #efe9e5;
  border-left: none;
  margin-left: calc(clamp(10px, 0.6944444444vw, 13.3333333333px) * -1);
}
.team_s .inner_grid .circles .black_c {
  width: clamp(360px, 25vw, 480px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 clamp(77px, 5.3472222222vw, 102.6666666667px);
  color: #efe9e5;
  margin-left: calc(clamp(5px, 0.3472222222vw, 6.6666666667px) * -1);
}
.team_s .inner_grid .circles .black_c p {
  font-weight: 300;
  font-size: 32px;
  line-height: 38.4px;
  text-align: center;
}
.team_s .inner_grid .circles .black_c p strong {
  font-weight: 500;
}
.team_s .inner_grid .right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.team_s .inner_grid .right .discover_b {
  position: relative;
  isolation: isolate;
}
.team_s .inner_grid .right .discover_b::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 12px;
  background-color: #000;
  position: absolute;
  z-index: -1;
  transition: 0.4s ease-in-out;
}
.team_s .inner_grid .right .discover_b .extern_icon {
  position: absolute;
  top: clamp(55px, 3.8194444444vw, 73.3333333333px);
  right: clamp(13px, 0.9027777778vw, 17.3333333333px);
  width: clamp(23px, 1.5972222222vw, 30.6666666667px);
  height: clamp(20px, 1.3888888889vw, 26.6666666667px);
  transition: 0.4s ease-in-out;
}
.team_s .inner_grid .right .discover_b .extern_icon path {
  stroke: #fff;
  transition: 0.4s ease-in-out;
}
.team_s .inner_grid .right .discover_b a {
  width: calc(100% - clamp(66px, 4.5833333333vw, 88px));
  height: clamp(153px, 10.625vw, 204px);
  margin: 0 auto;
  border-radius: clamp(80px, 5.5555555556vw, 106.6666666667px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-left: none;
  border-right: none;
  display: flex;
  justify-content: center;
  position: relative;
  top: clamp(55px, 3.8194444444vw, 73.3333333333px);
  opacity: 0.3;
}
.team_s .inner_grid .right .discover_b span {
  font-weight: 500;
  font-size: clamp(22px, 1.5277777778vw, 29.3333333333px);
  line-height: clamp(33px, 2.2916666667vw, 44px);
  color: #ffffff;
  opacity: 0.9;
  position: absolute;
  left: clamp(33px, 2.2916666667vw, 44px);
  bottom: clamp(30px, 2.0833333333vw, 40px);
  transition: 0.4s ease-in-out;
  pointer-events: none;
  text-transform: uppercase;
}
.team_s .inner_grid .right .discover_b:hover span {
  bottom: clamp(195px, 13.5416666667vw, 260px);
  left: clamp(101px, 7.0138888889vw, 134.6666666667px);
}
.team_s .inner_grid .right .discover_b:hover::after {
  width: calc(100% - clamp(66px, 4.5833333333vw, 88px));
  height: clamp(153px, 10.625vw, 204px);
  top: clamp(55px, 3.8194444444vw, 73.3333333333px);
  left: clamp(33px, 2.2916666667vw, 44px);
  border-radius: clamp(80px, 5.5555555556vw, 106.6666666667px);
}
.team_s .inner_grid .right .discover_b:hover .extern_icon {
  top: clamp(13px, 0.9027777778vw, 17.3333333333px);
}
.team_s .inner_grid .right .discover_b:hover .extern_icon path {
  stroke: #000;
}
.publications_s {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
}
.publications_s .container {
  padding: 0;
}
.publications_s .s_heading {
  display: flex;
}
.publications_s .s_heading .left {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 113px;
  padding: clamp(60px, 4.1666666667vw, 80px)
    clamp(20px, 1.3888888889vw, 26.6666666667px)
    clamp(76px, 5.2777777778vw, 101.3333333333px)
    clamp(87px, 6.0416666667vw, 116px);
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url(../images/shap92.webp);
  border: 1px solid #ffffff;
}
.publications_s .s_heading .left span {
  font-weight: 700;
  font-size: clamp(20px, 1.3888888889vw, 26.6666666667px);
  line-height: clamp(28px, 1.9444444444vw, 37.3333333333px);
  color: #000000;
}
.publications_s .s_heading .left h3 {
  color: #000000;
  font-weight: 700;
  font-size: clamp(32px, 2.2222222222vw, 42.6666666667px);
  line-height: clamp(41px, 2.8472222222vw, 54.6666666667px);
  max-width: clamp(690px, 47.9166666667vw, 920px);
  width: 100%;
}
.publications_s .s_heading a {
  display: flex;
  align-items: flex-end;
  position: relative;
  background-color: #efe9e5;
  border-radius: 10px;
  width: 100%;
  max-width: clamp(360px, 25vw, 480px);
  padding: 0 clamp(20px, 1.3888888889vw, 26.6666666667px)
    clamp(20px, 1.3888888889vw, 26.6666666667px)
    clamp(33px, 2.2916666667vw, 44px);
  transition: 0.4s;
  border: 1px solid #ffffff;
}
.publications_s .s_heading a svg {
  width: clamp(24px, 1.6666666667vw, 32px);
  height: clamp(24px, 1.6666666667vw, 32px);
  position: absolute;
  top: clamp(13px, 0.9027777778vw, 17.3333333333px);
  right: clamp(13px, 0.9027777778vw, 17.3333333333px);
}
.publications_s .s_heading a span {
  font-weight: 500;
  font-size: clamp(22px, 1.5277777778vw, 29.3333333333px);
  line-height: clamp(33px, 2.2916666667vw, 44px);
  text-transform: uppercase;
}
.publications_s .s_heading a:hover {
  background-color: #f7f4f2;
}
.publications_s .publications_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.fixed_bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto 0;
  opacity: 0;
  overflow: hidden;
  padding: clamp(20px, 1.3888888889vw, 26.6666666667px);
  border-radius: clamp(10px, 0.6944444444vw, 13.3333333333px);
  z-index: -1;
}
.fixed_bg img {
  border-radius: clamp(10px, 0.6944444444vw, 13.3333333333px);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.transparent_s {
  height: calc(100vh - 434px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.transparent_s svg {
  position: relative;
  z-index: 1;
}

/* Cabinet START */
.cabinet_page .hero_s .hero_img {
  max-height: clamp(405px, 28.125vw, 540px);
  overflow: hidden;
}
.cabinet_page .hero_s .about_cabinet {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
  background-color: #fff;
  transform: translateY(clamp(300px, 20.8333333333vw, 400px));
}
.cabinet_page .hero_s .about_cabinet .block {
  border-radius: 10px;
  padding: clamp(34px, 6.5277777778vw, 125.3333333333px)
    clamp(24px, 4.4444444444vw, 85.3333333333px);
  background-color: #efe9e5;
  width: 100%;
  max-width: clamp(716px, 49.7222222222vw, 954.6666666667px);
}
.cabinet_page .hero_s .about_cabinet .block h3 {
  font-weight: 500;
  font-size: clamp(32px, 2.2222222222vw, 42.6666666667px);
  line-height: clamp(41px, 2.8472222222vw, 54.6666666667px);
  width: 100%;
  max-width: clamp(432px, 30vw, 576px);
}
.cabinet_page .hero_s .about_cabinet .block p {
  font-weight: 500;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(27px, 1.875vw, 36px);
}
.cabinet_page .hero_s .about_cabinet .block p:not(:first-of-type) {
  margin-top: clamp(27px, 1.875vw, 36px);
}
.cabinet_page .hero_s .about_cabinet .nums_wrapper {
  border: 1px solid #efe9e5;
  border-radius: 4px;
  border-top-left-radius: clamp(270px, 18.75vw, 360px);
  border-bottom-left-radius: clamp(270px, 18.75vw, 360px);
  max-width: clamp(662px, 45.9722222222vw, 882.6666666667px);
  width: 100%;
  padding: 111px 23px 111px 71px;
  position: relative;
  isolation: isolate;
  height: clamp(458px, 31.8055555556vw, 610.6666666667px);
  display: flex;
  align-items: center;
}
.cabinet_page .hero_s .about_cabinet .nums_wrapper::after {
  content: "";
  position: absolute;
  width: calc(100% - clamp(52px, 3.6111111111vw, 69.3333333333px));
  height: calc(100% - clamp(52px, 3.6111111111vw, 69.3333333333px));
  left: clamp(26px, 1.8055555556vw, 34.6666666667px);
  top: clamp(26px, 1.8055555556vw, 34.6666666667px);
  border-top-left-radius: clamp(270px, 18.75vw, 360px);
  border-bottom-left-radius: clamp(270px, 18.75vw, 360px);
  background-color: #dcd7d3;
  z-index: -1;
}
.cabinet_page .hero_s .about_cabinet .nums_wrapper .nums {
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  border: 1px solid rgba(239, 233, 229, 0.3);
  border-top-left-radius: clamp(270px, 18.75vw, 360px);
  border-bottom-left-radius: clamp(270px, 18.75vw, 360px);
}
.cabinet_page .hero_s .about_cabinet .nums_wrapper .nums .num {
  padding: clamp(70px, 4.8611111111vw, 93.3333333333px)
    clamp(20px, 1.3888888889vw, 26.6666666667px)
    clamp(30px, 2.0833333333vw, 40px)
    clamp(52px, 3.6111111111vw, 69.3333333333px);
  border: 1px solid rgba(239, 233, 229, 0.3);
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top-left-radius: clamp(270px, 18.75vw, 360px);
  border-bottom-left-radius: clamp(270px, 18.75vw, 360px);
  min-height: clamp(235px, 16.3194444444vw, 313.3333333333px);
}
.cabinet_page .hero_s .about_cabinet .nums_wrapper .nums .num:first-of-type {
  border: none;
}
.cabinet_page .hero_s .about_cabinet .nums_wrapper .nums .num span {
  font-weight: 500;
  font-size: clamp(36px, 2.5vw, 48px);
  line-height: clamp(34px, 2.3611111111vw, 45.3333333333px);
  color: #efe9e5;
}
.cabinet_page .hero_s .about_cabinet .nums_wrapper .nums .num p {
  font-weight: 300;
  font-size: clamp(20px, 1.3888888889vw, 26.6666666667px);
  line-height: clamp(24px, 1.6666666667vw, 32px);
  color: #efe9e5;
}
.cabinet_page .our_history {
  padding-top: clamp(106px, 7.3611111111vw, 141.3333333333px);
  padding-bottom: clamp(17px, 1.1805555556vw, 22.6666666667px);
  background-color: #fff;
  position: relative;
}
.cabinet_page .our_history .heading {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-bottom: 30px;
  padding-left: clamp(40px, 2.7777777778vw, 53.3333333333px);
}
.cabinet_page .our_history .heading h3 {
  font-weight: 700;
  font-size: clamp(20px, 1.3888888889vw, 26.6666666667px);
  line-height: clamp(28px, 1.9444444444vw, 37.3333333333px);
}
.cabinet_page .our_history .heading .ctrls {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cabinet_page .our_history .heading .ctrls .splide__arrow {
  align-items: center;
  background: #efe9e5;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: initial;
  top: unset;
  width: clamp(34px, 2.3611111111vw, 45.3333333333px);
  height: clamp(34px, 2.3611111111vw, 45.3333333333px);
  z-index: 1;
  transform: unset;
  opacity: 1;
}
.cabinet_page .our_history .heading .ctrls .splide__arrow svg {
  width: clamp(14px, 0.9722222222vw, 18.6666666667px);
  height: auto;
  aspect-ratio: 14/14;
}
.cabinet_page .our_history .timeline_slider {
  padding: clamp(30px, 2.0833333333vw, 40px) 0
    clamp(40px, 2.7777777778vw, 53.3333333333px);
  background-color: rgba(239, 233, 229, 0.2);
  border-radius: 10px;
}
.cabinet_page .our_history .timeline_slider .splide__track {
  padding-bottom: 10px;
  position: relative;
  isolation: isolate;
}
.cabinet_page .our_history .timeline_slider .splide__track::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 9px;
  width: 100%;
  height: 1px;
  background-color: #000000;
  z-index: 0;
}
.cabinet_page .our_history .timeline_slider .splide__slide {
  width: 100%;
  max-width: clamp(343px, 23.8194444444vw, 457.3333333333px);
  border-right: 1px solid #efe9e5;
  padding-right: 30px;
  min-height: clamp(265px, 18.4027777778vw, 353.3333333333px);
  margin-right: 31.5px;
  margin-left: 31.5px;
  position: relative;
  isolation: isolate;
}
.cabinet_page .our_history .timeline_slider .splide__slide::after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background-color: #b09b90;
  z-index: 1;
  border-radius: 50%;
}
.cabinet_page .our_history .timeline_slider .splide__slide .year {
  font-weight: 300;
  font-size: clamp(50px, 3.4722222222vw, 66.6666666667px);
  line-height: clamp(70px, 4.8611111111vw, 93.3333333333px);
  color: #b09b90;
}
.cabinet_page .our_history .timeline_slider .splide__slide .content {
  font-weight: 400;
  font-size: clamp(16px, 1.1111111111vw, 21.3333333333px);
  line-height: clamp(22px, 1.5277777778vw, 29.3333333333px);
  color: rgba(0, 0, 0, 0.6901960784);
  margin-top: 10px;
  position: relative;
  isolation: isolate;
  padding-left: 30px;
}
.cabinet_page .our_history .timeline_slider .splide__slide .content::after {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  background-color: rgba(0, 0, 0, 0.6901960784);
  z-index: -1;
  border-radius: 50%;
}
.cabinet_page .other_pages {
  position: relative;
  isolation: isolate;
  background-color: #fff;
}
.cabinet_page .other_pages .bg {
  content: "";
  position: absolute;
  width: calc(100% - clamp(40px, 2.7777777778vw, 53.3333333333px));
  height: calc(100vh - clamp(40px, 2.7777777778vw, 53.3333333333px));
  top: clamp(20px, 1.3888888889vw, 26.6666666667px);
  left: clamp(20px, 1.3888888889vw, 26.6666666667px);
  z-index: -1;
  background-image: url(../images/cabinet_las_sec_bg.webp);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: clamp(10px, 0.6944444444vw, 13.3333333333px);
}
.cabinet_page .other_pages .blocks {
  padding: clamp(35px, 2.4305555556vw, 46.6666666667px);
  padding-bottom: clamp(46px, 3.1944444444vw, 61.3333333333px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cabinet_page .other_pages .blocks .block:first-of-type {
  max-width: clamp(422px, 29.3055555556vw, 562.6666666667px);
}
.cabinet_page .other_pages .blocks .block {
  max-width: clamp(506px, 35.138888888888886vw, 1061.1944444444443px);
  width: 100%;
  position: relative;
  isolation: isolate;
  padding-top: 16px;
}
.cabinet_page .other_pages .blocks .block:nth-child(even) {
  align-self: center;
}
.cabinet_page .other_pages .blocks .block:last-of-type {
  align-self: flex-end;
}
.cabinet_page .other_pages .blocks .block:not(:first-of-type) {
  margin-top: clamp(107px, 7.4305555556vw, 142.6666666667px);
}
.cabinet_page .other_pages .blocks .block::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(28px, 1.9444444444vw, 37.3333333333px);
  height: 1px;
  background-color: #efe9e5;
}
.cabinet_page .other_pages .blocks .block h3 {
  font-weight: 500;
  font-size: clamp(32px, 2.2222222222vw, 42.6666666667px);
  line-height: clamp(41px, 2.8472222222vw, 54.6666666667px);
  color: #efe9e5;
}
.cabinet_page .other_pages .blocks .block a {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 16px;
  font-weight: 500;
  color: #efe9e5;
  font-size: clamp(16px, 1.1111111111vw, 21.3333333333px);
  line-height: clamp(24px, 1.6666666667vw, 32px);
  text-transform: uppercase;
}
.cabinet_page .other_pages .logo_wraper {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cabinet_page .other_pages .logo_wraper svg {
  width: clamp(38px, 2.6388888889vw, 70px);
  height: clamp(38px, 2.6388888889vw, 70px);
}
.cabinet_page .transparent_s {
  height: calc(100vh - 434px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cabinet_page .transparent_s svg {
  position: relative;
  z-index: 1;
}
.cabinet_page .contact_us .container {
  position: relative;
  isolation: isolate;
}
.cabinet_page .contact_us .container::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-top-right-radius: clamp(270px, 18.75vw, 360px);
  border-bottom-right-radius: clamp(270px, 18.75vw, 360px);
  width: clamp(360px, 25vw, 480px);
  border: 1px solid #efe9e5;
}
.cabinet_page .contact_us .contact_us_inner {
  display: flex;
  align-items: center;
  max-width: clamp(1060px, 73.6111111111vw, 1413.3333333333px);
  width: 100%;
  margin-left: auto;
}
.cabinet_page .contact_us .at_your_service {
  max-width: clamp(700px, 48.6111111111vw, 933.3333333333px);
  width: 100%;
  height: clamp(360px, 25vw, 480px);
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: clamp(32px, 2.2222222222vw, 42.6666666667px);
  line-height: clamp(38px, 2.6388888889vw, 50.6666666667px);
  background-color: #efe9e5;
  border-radius: clamp(270px, 18.75vw, 360px);
  position: relative;
  isolation: isolate;
}
.cabinet_page .contact_us .at_your_service::after {
  content: "";
  position: absolute;
  width: calc(100% - clamp(40px, 2.7777777778vw, 53.3333333333px));
  height: calc(100% - clamp(40px, 2.7777777778vw, 53.3333333333px));
  left: clamp(20px, 1.3888888889vw, 26.6666666667px);
  top: clamp(20px, 1.3888888889vw, 26.6666666667px);
  border-radius: clamp(500px, 34.7222222222vw, 666.6666666667px);
  border: 1px solid #ffffff;
  pointer-events: none;
}
.cabinet_page .contact_us .at_your_service::before {
  content: "";
  position: absolute;
  width: calc(100% - clamp(40px, 2.7777777778vw, 53.3333333333px));
  height: calc(100% - clamp(100px, 6.9444444444vw, 133.3333333333px));
  left: clamp(20px, 1.3888888889vw, 26.6666666667px);
  top: clamp(50px, 3.4722222222vw, 66.6666666667px);
  border-radius: clamp(500px, 34.7222222222vw, 666.6666666667px);
  border: 1px solid #ffffff;
  pointer-events: none;
}
.cabinet_page .contact_us .contact_us_cta {
  position: relative;
  isolation: isolate;
  width: clamp(360px, 25vw, 480px);
  height: clamp(360px, 25vw, 480px);
  display: flex;
}
.cabinet_page .contact_us .contact_us_cta::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 12px;
  background-color: #000;
  position: absolute;
  z-index: -1;
  transition: 0.4s ease-in-out;
}
.cabinet_page .contact_us .contact_us_cta .extern_icon {
  position: absolute;
  top: clamp(13px, 0.9027777778vw, 17.3333333333px);
  right: clamp(13px, 0.9027777778vw, 17.3333333333px);
  width: clamp(23px, 1.5972222222vw, 30.6666666667px);
  height: clamp(20px, 1.3888888889vw, 26.6666666667px);
  transition: 0.4s ease-in-out;
}
.cabinet_page .contact_us .contact_us_cta .extern_icon path {
  transition: 0.4s ease-in-out;
}
.cabinet_page .contact_us .contact_us_cta a {
  width: calc(100% - clamp(66px, 4.5833333333vw, 88px));
  height: clamp(153px, 10.625vw, 204px);
  margin: 0 auto;
  border-radius: clamp(80px, 5.5555555556vw, 106.6666666667px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-left: none;
  border-right: none;
  display: flex;
  justify-content: center;
  position: relative;
  top: clamp(55px, 3.8194444444vw, 73.3333333333px);
  opacity: 0.3;
}
.cabinet_page .contact_us .contact_us_cta span {
  font-weight: 500;
  font-size: clamp(22px, 1.5277777778vw, 29.3333333333px);
  line-height: clamp(33px, 2.2916666667vw, 44px);
  color: #ffffff;
  opacity: 0.9;
  position: absolute;
  left: clamp(33px, 2.2916666667vw, 44px);
  bottom: clamp(30px, 2.0833333333vw, 40px);
  transition: 0.4s ease-in-out;
  pointer-events: none;
  text-transform: uppercase;
}
.cabinet_page .contact_us .contact_us_cta:hover span {
  bottom: clamp(215px, 14.9305555556vw, 286.6666666667px);
  left: clamp(60px, 4.1666666667vw, 80px);
}
.cabinet_page .contact_us .contact_us_cta:hover::after {
  width: calc(100% - clamp(66px, 4.5833333333vw, 88px));
  height: clamp(153px, 10.625vw, 204px);
  border-radius: clamp(80px, 5.5555555556vw, 106.6666666667px);
  top: clamp(55px, 3.8194444444vw, 73.3333333333px);
  left: clamp(33px, 2.2916666667vw, 44px);
}
.cabinet_page .contact_us .contact_us_cta:hover .extern_icon {
  top: clamp(55px, 3.8194444444vw, 73.3333333333px);
}
.cabinet_page .contact_us .contact_us_cta:hover .extern_icon path {
  stroke: #000;
}

/* Cabinet END */
/* Equipe styles */
.equipe_page .hero_s {
  padding-top: 187px;
  position: relative;
}
.equipe_page .hero_s .heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.equipe_page .hero_s .heading h1 {
  font-weight: 500;
  font-size: clamp(30px, 2.7777777778vw, 53.3333333333px);
  line-height: clamp(38px, 3.3333333333vw, 64px);
}
.equipe_page .hero_s .heading .scroll_down {
  font-weight: 400;
  font-size: clamp(12px, 0.8333333333vw, 16px);
  line-height: clamp(16px, 1.1111111111vw, 21.3333333333px);
  text-transform: uppercase;
  cursor: pointer;
}
.equipe_page .team_section {
  padding-bottom: 126px;
}
.equipe_page .team_section .container {
  padding: 0;
}
.equipe_page .team_section .our_partners {
  width: 100%;
  aspect-ratio: 1/1;
  max-width: clamp(360px, 25vw, 480px);
  border-radius: 0 50% 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #efe9e5;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.equipe_page .team_section .our_partners::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  border: 1px solid #ffffff;
  border-radius: 10px;
}
.equipe_page .team_section .our_partners span {
  position: relative;
  isolation: isolate;
  width: 100%;
  font-weight: 400;
  font-size: clamp(25px, 1.7361111111vw, 33.3333333333px);
  line-height: clamp(30px, 2.0833333333vw, 40px);
  text-align: center;
}
.equipe_page .team_section .our_partners span::after {
  width: 100%;
  height: clamp(142px, 9.8611111111vw, 189.3333333333px);
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  border: 1px solid #ffffff;
  border-radius: 0 230px 230px 0;
  z-index: -1;
}
.equipe_page .team_section .our_partners span::before {
  width: clamp(120px, 8.3333333333vw, 160px);
  height: clamp(142px, 9.8611111111vw, 189.3333333333px);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border: 1px solid #ffffff;
  border-radius: 0 230px 230px 0;
  z-index: -1;
}
.equipe_page .team_section .partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
}

/* Equipe styles END */
/* Member styles */
.page-template-equipe > header {
  background-color: #fff;
}
.s_equipe_page .publications_s {
  height: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  /*padding: 0 !important;*/
}
.s_equipe_page {
  position: relative;
  isolation: isolate;
}
.s_equipe_page .m_info {
  padding-bottom: clamp(20px, 1.3888888889vw, 26.6666666667px);
  padding-top: clamp(190px, 13.1944444444vw, 253.3333333333px);
  background-color: #ffffff;
}
.s_equipe_page .m_inner {
  display: flex;
}
.s_equipe_page .m_inner .m_img {
  width: clamp(535px, 37.1527777778vw, 713.3333333333px);
  height: clamp(535px, 37.1527777778vw, 713.3333333333px);
  /* border-radius: 50%; */
  /* overflow: hidden; */
  position: sticky;
  top: clamp(290px, 20.1388888889vw, 386.6666666667px);
  /* border: 2px solid #EFE9E5; */
}
.s_equipe_page .m_inner .m_img::after {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: calc(50% + 10px);
  /*top: 2px;*/
  top: 0;
  left: 0;
  border-radius: 10px 10px;
  border: 2px solid #efe9e5;
  border-bottom: none;
}
.s_equipe_page .m_inner .m_img::before {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: 100%;
  top: calc((100% - 10px) * -1);
  left: 0;
  border: 2px solid #efe9e5;
  border-bottom: none;
}
.s_equipe_page .m_inner .m_img img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  clip-path: circle(calc(50% - 3px) at 50% 50%);
  transform: translateY(-2px);
}
.s_equipe_page .m_inner .m_details {
  width: 100%;
  max-width: clamp(864px, 60vw, 1152px);
  padding: clamp(70px, 4.861111111111111vw, 146.80555555555554px)
    clamp(20px, 1.3888888889vw, 26.6666666667px) clamp(90px, 6.25vw, 105px)
    clamp(116px, 8.0555555556vw, 154.6666666667px);
  background-color: #f7f4f2;
  border-radius: clamp(10px, 0.6944444444vw, 13.3333333333px);
}
.s_equipe_page .m_inner .m_details .m_name {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.s_equipe_page .m_inner .m_details .m_name h3 {
  font-weight: 500;
  font-size: clamp(40px, 2.7777777778vw, 53.3333333333px);
  line-height: clamp(50px, 3.4722222222vw, 66.6666666667px);
}
.s_equipe_page .m_inner .m_details .m_name .scroll_down {
  font-weight: 400;
  font-size: clamp(12px, 0.8333333333vw, 16px);
  line-height: clamp(16px, 1.1111111111vw, 21.3333333333px);
  text-transform: uppercase;
  cursor: pointer;
}
.s_equipe_page .m_inner .m_details .m_status {
  font-weight: 500;
  font-size: clamp(22px, 1.5277777778vw, 29.3333333333px);
  line-height: clamp(30px, 2.0833333333vw, 40px);
  margin-top: clamp(15px, 1.0416666667vw, 20px);
  text-transform: uppercase;
}
.s_equipe_page .m_inner .m_details .linkedin {
  display: flex;
  align-items: center;
  gap: clamp(12px, 0.8333333333vw, 16px);
  font-weight: 700;
  font-size: clamp(14px, 0.9722222222vw, 18.6666666667px);
  line-height: clamp(24px, 1.6666666667vw, 32px);
  margin-top: 30px;
}
.s_equipe_page .m_inner .m_details .linkedin i {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  width: clamp(40px, 2.7777777778vw, 53.3333333333px);
  height: clamp(40px, 2.7777777778vw, 53.3333333333px);
}
.s_equipe_page .m_inner .m_details .linkedin i svg {
  width: clamp(10px, 0.6944444444vw, 13.3333333333px);
  height: clamp(10px, 0.6944444444vw, 13.3333333333px);
}
.s_equipe_page .m_inner .m_details .ctrls {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: clamp(14px, 0.9722222222222222vw, 29.361111111111107px);
}
.s_equipe_page .m_inner .m_details .ctrls::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 1px;
  background-color: #000000;
  opacity: 0.25;
  z-index: -1;
}
.s_equipe_page .m_inner .m_details .ctrls .arrows {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #f7f4f2;
  padding-left: 22px;
}
.s_equipe_page .m_inner .m_details .ctrls .arrows a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.8);
  width: 105px;
  height: 60px;
  opacity: 0.25;
  transition: 0.4s ease-in-out;
}
.s_equipe_page .m_inner .m_details .ctrls .arrows a:hover {
  opacity: 1;
}
.s_equipe_page .m_inner .m_details .spoken_languages {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.4166666667vw, 8px);
  opacity: 0.5;
}
.s_equipe_page .m_inner .m_details .spoken_languages svg {
  width: clamp(14px, 0.9722222222vw, 18.6666666667px);
  height: clamp(14px, 0.9722222222vw, 18.6666666667px);
}
.s_equipe_page .m_inner .m_details .spoken_languages span {
  font-weight: 500;
  font-size: clamp(14px, 0.9722222222vw, 18.6666666667px);
  line-height: clamp(26px, 1.8055555556vw, 34.6666666667px);
}
.s_equipe_page .m_inner .m_details .about_m {
  margin-top: clamp(27px, 1.875vw, 36px);
  font-weight: 400;
  font-size: clamp(20px, 1.3888888889vw, 22px);
  line-height: clamp(30px, 2.0833333333vw, 33px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 0.9722222222vw, 20px);
  width: 100%;
  max-width: clamp(630px, 43.75vw, 840px);
}

.s_equipe_page .m_inner .m_details .about_m h3:first-of-type,
.s_equipe_page .m_inner .m_details .about_m h2:first-of-type {
  font-size: 20px;
  line-height: 30px;
  text-align: justify;
}

.s_equipe_page .m_inner .m_details .about_m h3,
.s_equipe_page .m_inner .m_details .about_m h1,
.s_equipe_page .m_inner .m_details .about_m h2 {
  font-weight: 700;
}
.s_equipe_page .m_inner .m_details .accordion_wrapper {
  margin-top: clamp(63px, 4.375vw, 84px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.s_equipe_page .m_inner .m_details .accordion_wrapper .acc_header {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-top: 20px;
  border-top: 1.5px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  justify-content: space-between;
}
.s_equipe_page .m_inner .m_details .accordion_wrapper .acc_header span {
  font-weight: 400;
  font-size: clamp(24px, 1.6666666667vw, 32px);
  line-height: clamp(24px, 1.6666666667vw, 32px);
}
.s_equipe_page .m_inner .m_details .accordion_wrapper .acc_header.no_content {
  pointer-events: none;
}
.s_equipe_page .m_inner .m_details .accordion_wrapper .acc_header svg {
  width: clamp(9px, 0.625vw, 12px);
  height: clamp(9px, 0.625vw, 12px);
  transition: 0.4s ease-in-out;
}
.s_equipe_page
  .m_inner
  .m_details
  .accordion_wrapper
  .acc.active
  .acc_header
  svg {
  transform: rotate(180deg);
}
.s_equipe_page .m_inner .m_details .accordion_wrapper .acc_body {
  overflow: hidden;
  transition: max-height 0.5s ease;
  max-height: 0;
  display: flex;
  flex-direction: column;
  position: relative;
}
.s_equipe_page .m_inner .m_details .accordion_wrapper .body_inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 20px;
  font-weight: 400;
  font-size: clamp(18px, 1.25vw, 20px);
  line-height: clamp(28px, 1.9444444444vw, 30px);
}
.s_equipe_page .m_inner .m_details .accordion_wrapper .body_inner ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 30px;
}
.s_equipe_page .m_inner .m_details .accordion_wrapper .body_inner ul li {
  list-style: disc;
}

/* Member styles END */
/* Expertise styles */

.s_exp_page .exp_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: calc(clamp(20px, 1.3888888889vw, 26.6666666667px) + 10px);
  padding-right: 10px;
}
.s_exp_page .exp_heading h1 {
  font-weight: 500;
  font-size: clamp(40px, 2.7777777778vw, 45px);
  line-height: clamp(50px, 3.4722222222vw, 55px);
  width: 100%;
  max-width: clamp(704px, 48.8888888889vw, 938.6666666667px);
}
.s_exp_page .exp_heading .ctrls {
  width: 100%;
  max-width: clamp(510px, 35.4166666667vw, 680px);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.s_exp_page .exp_heading .ctrls::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 1px;
  background-color: #000000;
  opacity: 0.25;
  z-index: -1;
}
.s_exp_page .exp_heading .ctrls .arrows {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  padding-left: 22px;
}
.s_exp_page .exp_heading .ctrls .arrows a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.8);
  width: 105px;
  height: 60px;
  opacity: 0.25;
  transition: 0.4s ease-in-out;
}
.s_exp_page .exp_heading .ctrls .arrows a:hover {
  opacity: 1;
}
.s_exp_page .exp_info {
  padding-top: 180px;
  background-color: #fff;
}
.s_exp_page .exp_inner {
  display: flex;
  margin-top: 78px;
  padding: 0 10px;
}
.s_exp_page .exp_inner .about_exp {
  width: 100%;
  max-width: clamp(888px, 61.6666666667vw, 1184px);
  background-color: #efe9e5;
  border-radius: 10px;
  padding: 60px 95px 66px 65px;
  font-weight: 400;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: clamp(30px, 2.0833333333vw, 35px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1.3888888889vw, 26.6666666667px);
}
.s_exp_page .exp_inner .about_exp h1,
.s_exp_page .exp_inner .about_exp h2 {
  font-weight: 500;
  font-size: clamp(28px, 1.9444444444vw, 33px);
  line-height: clamp(38px, 2.6388888889vw, 40px);
  margin-bottom: 10px;
}
.s_exp_page .exp_inner .about_exp h3,
.s_exp_page .exp_inner .about_exp h4 {
  font-weight: 600;
}
.s_exp_page .exp_inner .about_exp ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 30px;
}
.s_exp_page .exp_inner .about_exp ul li {
  list-style: disc;
}
.s_exp_page .exp_inner .about_exp a {
  text-decoration: underline;
}
.s_exp_page .exp_inner .contact_domaines {
  position: sticky;
  top: 20px;
  height: -moz-max-content;
  height: max-content;
  flex-grow: 1;
}
.s_exp_page .exp_inner .contact_us {
  width: 100%;
  border: 1px solid #efe9e5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: clamp(90px, 6.25vw, 120px);
  border-radius: clamp(270px, 18.75vw, 360px)
    clamp(4px, 0.2777777778vw, 5.3333333333px)
    clamp(4px, 0.2777777778vw, 5.3333333333px) clamp(270px, 18.75vw, 360px);
  position: relative;
  isolation: isolate;
  height: clamp(406px, 28.1944444444vw, 541.3333333333px);
}
.s_exp_page .exp_inner .contact_us::after {
  content: "";
  position: absolute;
  width: calc(100% - clamp(50px, 3.4722222222vw, 66.6666666667px));
  height: calc(100% - clamp(46px, 3.1944444444vw, 61.3333333333px));
  left: clamp(25px, 1.7361111111vw, 33.3333333333px);
  top: clamp(23px, 1.5972222222vw, 30.6666666667px);
  background: linear-gradient(0deg, #efe9e5, #efe9e5),
    linear-gradient(0deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));
  z-index: -3;
  border-radius: clamp(270px, 18.75vw, 360px)
    clamp(4px, 0.2777777778vw, 5.3333333333px)
    clamp(4px, 0.2777777778vw, 5.3333333333px) clamp(270px, 18.75vw, 360px);
}
.s_exp_page .exp_inner .contact_us .contact_inner {
  width: 100%;
  max-width: clamp(327px, 22.7083333333vw, 436px);
}
.s_exp_page .exp_inner .contact_us .contact_inner p {
  font-weight: 300;
  font-size: clamp(26px, 1.8055555556vw, 34.6666666667px);
  line-height: clamp(36px, 2.5vw, 40px);
}
.s_exp_page .exp_inner .contact_us .contact_inner::after {
  content: "";
  position: absolute;
  width: calc(100% - clamp(50px, 3.4722222222vw, 66.6666666667px));
  height: clamp(209px, 14.5138888889vw, 278.6666666667px);
  border-radius: clamp(100px, 6.9444444444vw, 133.3333333333px) 0 0
    clamp(100px, 6.9444444444vw, 133.3333333333px);
  border: 1px solid #fff;
  z-index: -2;
  pointer-events: none;
  left: clamp(25px, 1.7361111111vw, 33.3333333333px);
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.s_exp_page .exp_inner .contact_us .contact_inner::before {
  content: "";
  position: absolute;
  width: clamp(195px, 13.5416666667vw, 260px);
  height: clamp(209px, 14.5138888889vw, 278.6666666667px);
  border-radius: clamp(100px, 6.9444444444vw, 133.3333333333px) 0 0
    clamp(100px, 6.9444444444vw, 133.3333333333px);
  border: 1px solid #fff;
  z-index: -1;
  pointer-events: none;
  right: clamp(25px, 1.7361111111vw, 33.3333333333px);
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.s_exp_page .exp_inner .contact_us .cta {
  display: flex;
  align-items: center;
  margin-top: clamp(22px, 1.5277777778vw, 29.3333333333px);
}
.s_exp_page .exp_inner .contact_us .cta i {
  background-color: #ffffff;
  width: clamp(40px, 2.7777777778vw, 53.3333333333px);
  height: clamp(40px, 2.7777777778vw, 53.3333333333px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.s_exp_page .exp_inner .contact_us .cta i svg {
  width: clamp(12px, 0.8333333333vw, 16px);
  height: clamp(12px, 0.8333333333vw, 16px);
}
.s_exp_page .exp_inner .contact_us .cta .arrow {
  transition: 0.4s ease-in-out;
  position: relative;
  top: 2px;
}
.s_exp_page .exp_inner .contact_us .cta span {
  font-weight: 500;
  font-size: clamp(22px, 1.5277777778vw, 29.3333333333px);
  line-height: clamp(32px, 2.2222222222vw, 38px);
  color: #160800;
  margin-right: 15px;
}
.s_exp_page .exp_inner .contact_us .cta:hover .arrow {
  transform: translateX(10px);
}
.s_exp_page .exp_inner .domaines {
  width: 100%;
  max-width: calc(100% - clamp(25px, 1.7361111111vw, 33.3333333333px));
  background-color: #000000;
  border-radius: 10px;
  margin-left: auto;
  padding: clamp(20px, 3.4722222222vw, 66.6666666667px)
    clamp(20px, 1.3888888889vw, 26.6666666667px)
    clamp(30px, 2.7777777778vw, 53.3333333333px)
    clamp(26px, 4.5833333333vw, 88px);
}
.s_exp_page .exp_inner .domaines h3 {
  font-weight: 700;
  font-size: clamp(20px, 1.3888888889vw, 26.6666666667px);
  line-height: clamp(30px, 2.0833333333vw, 40px);
  color: #ffffff;
  opacity: 0.9;
}
.s_exp_page .exp_inner .domaines ul {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  gap: clamp(10px, 0.6944444444vw, 15px);
}
.s_exp_page .exp_inner .domaines ul li a {
  font-weight: 300;
  font-size: clamp(26px, 1.8055555556vw, 32px);
  line-height: 36px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.4s ease-in-out;
  cursor: none;
  pointer-events: none;
}
.s_exp_page .exp_inner .domaines ul li a:hover {
  color: white;
}

/* Expertise styles */
/* Article styles */
.s_article_page .article_info {
  margin-bottom: 20px;
}
.s_article_page .h_top {
  display: flex;
  align-items: center;
  gap: 110px;
  padding-top: 130px;
  padding-left: calc(clamp(20px, 1.3888888889vw, 26.6666666667px) + 10px);
}
.s_article_page .h_top .by {
  font-weight: 700;
  font-size: clamp(20px, 1.3888888889vw, 26.6666666667px);
  line-height: clamp(30px, 2.0833333333vw, 35px);
  display: none;
}

.s_article_page .h_top .date,
.s_article_page .h_top .cat {
  font-weight: 300;
  font-size: clamp(22px, 1.5277777778vw, 25px);
  line-height: clamp(33px, 2.2916666667vw, 36px);
}
.s_article_page .article_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: clamp(19px, 1.3194444444444444vw, 39.84722222222222px);
  padding-left: calc(clamp(20px, 1.3888888889vw, 26.6666666667px) + 10px);
  padding-right: 10px;
}
.s_article_page .article_heading h1 {
  font-weight: 500;
  font-size: clamp(30px, 2.7777777778vw, 45px);
  line-height: clamp(40px, 3.4722222222vw, 55px);
  width: 100%;
  max-width: clamp(704px, 48.8888888889vw, 938.6666666667px);
}
.s_article_page .article_heading .ctrls {
  width: 100%;
  max-width: clamp(510px, 35.4166666667vw, 680px);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.s_article_page .article_heading .ctrls::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  height: 1px;
  background-color: #000000;
  opacity: 0.25;
  z-index: -1;
}
.s_article_page .article_heading .ctrls .arrows {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #fff;
  padding-left: 22px;
}
.s_article_page .article_heading .ctrls .arrows a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.8);
  width: 105px;
  height: 60px;
  opacity: 0.25;
  transition: 0.4s ease-in-out;
}
.s_article_page .article_heading .ctrls .arrows a:hover {
  opacity: 1;
}
.s_article_page .article_inner {
  display: flex;
  gap: 20px;
  margin-top: clamp(36px, 2.5vw, 48px);
  padding: 0 10px;
}
.s_article_page .article_inner .article_content {
  width: 100%;
  max-width: clamp(1054px, 73.1944444444vw, 1405.3333333333px);
  background-color: #efe9e5;
  border-radius: 10px;
  padding: 60px 95px 66px 65px;
  font-weight: 400;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: clamp(30px, 2.0833333333vw, 35px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1.3888888889vw, 26.6666666667px);
}
.s_article_page .article_inner .article_content h1,
.s_article_page .article_inner .article_content h2 {
  font-weight: 500;
  font-size: clamp(28px, 1.9444444444vw, 33px);
  line-height: clamp(38px, 2.6388888889vw, 40px);
  margin-bottom: 10px;
}
.s_article_page .article_inner .article_content h3,
.s_article_page .article_inner .article_content h4 {
  font-weight: 600;
}
.s_article_page .article_inner .article_content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 30px;
}
.s_article_page .article_inner .article_content ul li {
  list-style: disc;
}
.s_article_page .article_inner .share {
  background-color: #000000;
  border-radius: 10px;
  height: -moz-max-content;
  height: max-content;
  padding: 56px 20px 56px 56px;
  flex-grow: 1;
  position: sticky;
  top: 25px;
}

.s_article_page .article_inner .share::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: calc(100% + 20px);
  left: 0;
  border: 1px solid rgba(239, 233, 229, 1);
  border-top-right-radius: 4px;
  border-top-left-radius: 270px;
  border-bottom-left-radius: 270px;
  border-bottom-right-radius: 4px;
}

.s_article_page .article_inner .share h3 {
  font-weight: 700;
  font-size: clamp(16px, 1.1111111111vw, 21.3333333333px);
  line-height: clamp(26px, 1.8055555556vw, 30px);
  color: #ffffff;
  opacity: 0.9;
}
.s_article_page .article_inner .share ul {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s_article_page .article_inner .share ul a {
  font-weight: 300;
  font-size: clamp(16px, 1.1111111111vw, 21.3333333333px);
  line-height: clamp(26px, 1.8055555556vw, 30px);
  color: #ffffff;
  opacity: 0.9;
}

/* Article styles END */
/* News styles */
.news_page .heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: clamp(187px, 12.9861111111vw, 249.3333333333px)
    clamp(20px, 2.7777777778vw, 53.3333333333px) 0
    clamp(20px, 2.7777777778vw, 53.3333333333px);
  position: relative;
}
.news_page .heading h1 {
  font-weight: 500;
  font-size: clamp(30px, 2.7777777778vw, 45px);
  line-height: clamp(40px, 3.4722222222vw, 54px);
}
.news_page .heading .scroll_down {
  font-weight: 400;
  font-size: clamp(12px, 0.8333333333vw, 16px);
  line-height: clamp(16px, 1.1111111111vw, 21.3333333333px);
  text-transform: uppercase;
  cursor: pointer;
}
.news_page .filter_wrapper {
  position: absolute;
  right: clamp(97px, 6.7361111111vw, 129.3333333333px);
  top: clamp(84px, 5.8333333333vw, 112px);
  width: 100%;
  max-width: clamp(169px, 21.736111vw, 265.333333px);
  text-align: right;
}
.news_page .filter_wrapper span {
  font-weight: 400;
  font-size: clamp(16px, 1.1111111111vw, 21.3333333333px);
  line-height: clamp(26px, 1.8055555556vw, 32px);
  color: rgba(0, 0, 0, 0.5019607843);
  margin-bottom: clamp(12px, 0.8333333333vw, 16px);
}
.news_page .filter_wrapper .f_cta {
  font-weight: 400;
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(28px, 1.9444444444vw, 34px);
  cursor: pointer;
}
.news_page .filter_wrapper .f_cta.selected {
  text-decoration: underline;
  font-weight: 700;
}
.news_page .container {
  padding: 0;
  display: flex;
  flex-direction: column;

  /* padding: 0 20px; */
}
.news_page .featured {
  height: max-content !important;
  padding: 75px;
  position: relative;
  isolation: isolate;
  display: flex;
  gap: clamp(140px, 9.7222222222vw, 186.6666666667px);
  flex-direction: column;
  width: calc(100% - 40px);
  margin: 0 auto;
  margin-top: 37px;

  justify-content: space-between;
  /* padding: 0 20px; */
}

.news_page .featured .top span {
  color: #fff;
  font-weight: 700;
  font-size: clamp(22px, 1.5277777778vw, 29.3333333333px);
  line-height: clamp(33px, 2.2916666667vw, 38px);
}
.news_page .featured .bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.news_page .featured .bottom h3 {
  font-weight: 700;
  font-size: clamp(32px, 2.2222222222vw, 42.6666666667px);
  line-height: clamp(42px, 2.9166666667vw, 46px);
  color: #fff;
  width: 100%;
  max-width: clamp(627px, 43.5416666667vw, 836px);
}
.news_page .featured .bottom span {
  font-weight: 500;
  font-size: clamp(16px, 1.1111111111vw, 21.3333333333px);
  line-height: clamp(26px, 1.8055555556vw, 32px);
  text-transform: uppercase;
  color: #fff;
  opacity: 0.9;
}
.news_page .featured::after {
  content: "";
  position: absolute;
  /* width: calc(100% - 50px);
  height: calc(100% - 50px); */

  width: 100%;
  height: 100%;
  /* 
  left: 25px;
  top: 25px; */

  left: 0;
  top: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/featured_bg.webp);
  border-radius: 10px;

  background-position: top center;
}

.news_page .container > .loader {
  display: none;
  margin: auto;
  justify-self: center;
  border-top: 3px solid #000;
  order: 3;
}

.news_page .publications_grid {
  display: grid;
  order: 4;
  grid-template-columns: repeat(4, 1fr);

  padding-top: 20px;
}
.news_page .publications_grid.loading {
  opacity: 0;
  visibility: hidden;
}
.news_page .publications_grid.loading ~ .loader {
  display: flex;
}
.news_page .msg {
  font-weight: 500;
  font-size: clamp(20px, 1.3888888888888888vw, 26.666666666666664px);
  text-align: center;
  order: 5;
  opacity: 1;
}

.news_page .publications_grid.loading ~ .msg {
  opacity: 0;
}

.news_page .load_more {
  display: flex;
  justify-content: center;
  padding: 37px 0 43px 0;
  order: 6;
}
.news_page .load_more .btn {
  background-color: #000;
  padding: 27px 32px 27px 37px;
  display: flex;
  align-items: center;
  gap: 64px;
  border-radius: 229px;
  cursor: pointer;
  position: relative;
}
.news_page .load_more .btn span {
  font-weight: 500;
  font-size: clamp(16px, 1.1111111111vw, 21.3333333333px);
  line-height: clamp(26px, 1.8055555556vw, 30px);
  text-transform: uppercase;
  color: #efe9e5;
  opacity: 0.9;
}

.news_page .load_more .btn.loading {
  pointer-events: none;
}

.news_page .load_more .btn.loading .loader {
  opacity: 1;
}

.news_page .load_more .btn .loader {
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background: #000;
  opacity: 0;
}

/* News styles END*/
/* Savoir faire styles */
.savoir_faire_page .hero_s {
  padding-top: 187px;
  position: relative;
}
.savoir_faire_page .hero_s .container {
  padding: 0 20px;
}
.savoir_faire_page .hero_s .heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 20px;
}
.savoir_faire_page .hero_s .heading h1 {
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
}
.savoir_faire_page .hero_s .heading .scroll_down {
  font-weight: 400;
  font-size: clamp(12px, 0.8333333333vw, 16px);
  line-height: clamp(16px, 1.1111111111vw, 21.3333333333px);
  text-transform: uppercase;
  cursor: pointer;
}
.savoir_faire_page .hero_s .hero_img {
  margin-top: 17px;
  padding: 20px 0 20px;
  border-radius: 10px;
}
.savoir_faire_page .hero_s .hero_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
.savoir_faire_page .enjeux {
  position: relative;
  isolation: isolate;
  padding-top: clamp(195px, 13.5416666667vw, 260px);
  padding-bottom: clamp(20px, 5.5555555556vw, 106.6666666667px);
}
.savoir_faire_page .enjeux .container {
  padding-left: 87px;
}
.savoir_faire_page .enjeux svg {
  width: clamp(38px, 2.6388888889vw, 50.6666666667px);
  height: clamp(38px, 2.6388888889vw, 50.6666666667px);
}
.savoir_faire_page .enjeux .s_title {
  font-weight: 700;
  font-size: clamp(20px, 1.3888888889vw, 26.6666666667px);
  line-height: clamp(30px, 2.0833333333vw, 35px);
  margin-top: 68px;
}
.savoir_faire_page .enjeux .bg {
  content: "";
  position: absolute;
  width: calc(100% - clamp(40px, 2.7777777778vw, 53.3333333333px));
  height: calc(100vh - clamp(40px, 2.7777777778vw, 53.3333333333px));
  top: clamp(20px, 1.3888888889vw, 26.6666666667px);
  left: clamp(20px, 1.3888888889vw, 26.6666666667px);
  z-index: -1;
  background-image: url(../images/enjeux_bg.webp);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: clamp(10px, 0.6944444444vw, 13.3333333333px);
}
.savoir_faire_page .enjeux .enjeux_inner {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.savoir_faire_page .enjeux .enjeux_inner .left_block {
  width: 100%;
  max-width: clamp(527px, 36.5972222222vw, 702.6666666667px);
  margin-right: clamp(60px, 4.1666666667vw, 80px);
}
.savoir_faire_page .enjeux .enjeux_inner .left_block h3 {
  font-weight: 500;
  font-size: clamp(40px, 2.7777777778vw, 53.3333333333px);
  line-height: clamp(50px, 3.4722222222vw, 56px);
}
.savoir_faire_page .enjeux .enjeux_inner .left_block p {
  font-weight: 400;
  font-size: clamp(20px, 1.3888888889vw, 26.6666666667px);
  line-height: clamp(30px, 2.0833333333vw, 36px);
  margin-top: clamp(35px, 2.4305555556vw, 45px);
}
.savoir_faire_page .enjeux .enjeux_inner .enjeux_block:nth-child(4) {
  margin-left: 223px;
}

/* Savoir faire styles END */

footer .footer_container {
  border-left: 1px solid rgba(0, 0, 0, 0.1019607843);
  border-right: 1px solid rgba(0, 0, 0, 0.1019607843);
  max-width: clamp(1480px, 102.7777777778vw, 1920px);
  width: 100%;
  margin: 0 auto;
}
footer .footer_inner {
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
  display: flex;
}
footer .footer_inner .left {
  padding: 60px 69px 54px 64px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: clamp(360px, 25vw, 480px);
}
footer .footer_inner .left .credits {
  font-weight: 400;
  font-size: 12px;
  line-height: 18.36px;
  width: 100%;
  max-width: 200px;
}
footer .footer_inner .middle {
  border-left: 1px solid rgba(0, 0, 0, 0.1019607843);
  /* border-right: 1px solid rgba(0, 0, 0, 0.1019607843); */
  display: flex;
  width: 100%;
  max-width: clamp(725px, 50.3472222222vw, 966.6666666667px);
  flex-direction: column;
}
footer .footer_inner .middle .tools_links {
  padding: 45px 36px 45px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
footer .footer_inner .middle .tools_links .icons {
  display: flex;
  align-items: center;
  gap: 8px;
}
footer .footer_inner .middle .tools_links .icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #efe9e5;
  position: relative;
  transition: 0.5s ease-in-out;
}

footer .footer_inner .middle .tools_links .icons a:hover svg {
  position: relative;
  z-index: 2;
}
footer .footer_inner .middle .tools_links .icons a span {
  width: max-content;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  background: #efe9e5;
  z-index: 1;
  border-radius: 20px;
  font-family: "acumin-pro-wide", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  transition: opacity 0.3s;
}
footer .footer_inner .middle .tools_links .icons a .info {
  position: absolute;
  top: 45px;
  display: flex;
  align-items: center;
  gap: 1px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

footer .footer_inner .middle .tools_links .icons a:hover .info {
  opacity: 1;
  visibility: visible;
}
footer .footer_inner .middle .tools_links .icons a:hover {
  background-color: #fbf7f3;
}

footer .footer_inner .middle .tools_links ul {
  width: 790px;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
}
footer .footer_inner .middle .tools_links ul li {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
}
footer .footer_inner .middle .tools_links ul li a {
  width: max-content;
  display: inline-block;
}
footer .footer_inner .middle .mid_bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
footer .footer_inner .middle .menu_b {
  padding: 35px 55px 40px 40px;
  border-right: 1px solid rgba(0, 0, 0, 0.1019607843);
}
footer .footer_inner .middle .menu_b span {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  position: relative;
}
footer .footer_inner .middle .menu_b span::after {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #000;
  position: absolute;
  left: -41px;
  top: 0;
}
footer .footer_inner .middle .menu_b ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 52px;
  margin-top: 24px;
}
footer .footer_inner .middle .menu_b ul a {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  position: relative;
}
footer .footer_inner .middle .menu_b ul a:hover {
  font-weight: 500;
}
footer .footer_inner .middle .address_b {
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
footer .footer_inner .middle .address_b .address_wrapper {
  padding: 35px 30px 60px 60px;
  border-right: 1px solid rgba(0, 0, 0, 0.1019607843);
}
footer .footer_inner .middle .address_b .address_wrapper span {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  position: relative;
}
footer .footer_inner .middle .address_b .address_wrapper span::after {
  content: "";
  height: 100%;
  width: 1px;
  background-color: #000;
  position: absolute;
  left: -61px;
  top: 0;
}
footer .footer_inner .middle .address_b .address_wrapper a {
  display: flex;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  margin-top: 20px;
}
footer .footer_inner .middle .address_b .address_wrapper a:last-of-type {
  margin-top: 33px;
}
footer .footer_inner .middle .address_b .ml_b {
  padding: 24px 73px 22px 35px;
  display: flex;
  align-items: center;
  gap: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
}
footer .footer_inner .middle .address_b .ml_b a {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}
footer .footer_inner .right {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
footer .footer_inner .right .lang_b {
  padding: 57px 20px 51px;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
footer .footer_inner .right .lang_b ul {
  display: flex;
  justify-content: center;
  gap: 16px;
}
footer .footer_inner .right .lang_b ul a {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;

  /* to hide */
  opacity: 0 !important;
  pointer-events: none !important;
}
footer .footer_inner .right .lang_b ul li {
  position: relative;
}
footer .footer_inner .right .lang_b ul li:first-of-type::after {
  content: "";
  position: absolute;
  height: 11px;
  width: 1px;
  background-color: #000;
  right: -8px;
  top: 5px;
  bottom: 0;
  margin: auto 0;

  opacity: 0 !important;
}
footer .footer_inner .right .lang_b ul a.active {
  font-weight: 700;
}
footer .footer_inner .right .transports {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 80px 36px 73px 48px;
  flex-grow: 1;
  border-top: 1px solid rgba(0, 0, 0, 0.1019607843);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1019607843);
}
footer .footer_inner .right .transports li {
  display: flex;
  align-items: center;
  gap: 17px;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
}
footer .footer_inner .right .transports li strong {
  font-weight: 700;
}
footer .footer_inner .right .by {
  padding: 24px 20px 22px 20px;
  display: flex;
  justify-content: center;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  gap: 6px;
  justify-content: center;
}
footer .footer_inner .right .by a {
  text-decoration: underline;
}
.loader {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #fff;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* 404 */

.error404 {
  background-color: rgba(239, 233, 229, 1);
}

.not_found_page .container {
  padding: 0;
}
.not_found_page .inner {
  padding-top: 212px;
  padding-bottom: 137px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.not_found_page .inner .err {
  padding: 110px 128px 110px 87px;
  background: rgba(176, 155, 144, 0.5);
  border-top-right-radius: 270px;
  border-bottom-right-radius: 270px;
  display: flex;
  flex-direction: column;
}

.not_found_page .inner .err span {
  font-weight: 900;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  text-transform: uppercase;
}

.not_found_page .inner .err h3 {
  font-weight: 500;
  font-size: 125px;
  text-align: center;
}

.not_found_page .inner .info {
  max-width: clamp(598px, 41.52777777777778vw, 1254.138888888889px);
  /* width: 100%; */
  flex-grow: 1;
  height: clamp(380px, 26.38888888888889vw, 796.9444444444446px);
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: clamp(32px, 2.2222222222vw, 42.6666666667px);
  line-height: clamp(38px, 2.6388888889vw, 50.6666666667px);
  background-color: rgba(255, 255, 255, 1);
  border-radius: clamp(270px, 18.75vw, 360px);
  position: relative;
  text-align: center;
  isolation: isolate;
}
.not_found_page .inner .info::after {
  content: "";
  position: absolute;
  width: calc(100% - clamp(40px, 2.7777777778vw, 53.3333333333px));
  height: calc(100% - clamp(40px, 2.7777777778vw, 53.3333333333px));
  left: clamp(20px, 1.3888888889vw, 26.6666666667px);
  top: clamp(20px, 1.3888888889vw, 26.6666666667px);
  border-radius: clamp(500px, 34.7222222222vw, 666.6666666667px);
  border: 1px solid rgba(176, 155, 144, 1);
  pointer-events: none;
}
.not_found_page .inner .info::before {
  content: "";
  position: absolute;
  width: calc(100% - clamp(40px, 2.7777777778vw, 53.3333333333px));
  height: calc(100% - clamp(100px, 6.9444444444vw, 133.3333333333px));
  left: clamp(20px, 1.3888888889vw, 26.6666666667px);
  top: clamp(50px, 3.4722222222vw, 66.6666666667px);
  border-radius: clamp(500px, 34.7222222222vw, 666.6666666667px);
  border: 1px solid rgba(176, 155, 144, 1);
  pointer-events: none;
}

.not_found_page .inner .back_home {
  position: relative;
  isolation: isolate;
  width: clamp(380px, 26.38888888888889vw, 796.9444444444446px);
  height: clamp(380px, 26.38888888888889vw, 796.9444444444446px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.4s ease-in-out;
}
/* */

.not_found_page .inner .back_home::after {
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  z-index: -1;
  transition: 0.4s ease-in-out;
}

.not_found_page .inner .back_home:hover::after {
  width: calc(100% - clamp(66px, 4.5833333333vw, 88px));
  height: clamp(153px, 10.625vw, 204px);
  border-radius: clamp(80px, 5.5555555556vw, 106.6666666667px);
}

.not_found_page .inner .back_home a {
  width: calc(100% - clamp(66px, 4.5833333333vw, 88px));
  height: clamp(153px, 10.625vw, 204px);
  margin: 0 auto;
  gap: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
  transition: 0.4s ease-in-out;
}

.not_found_page .inner .back_home a::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-left: none;
  border-right: none;
  border-radius: clamp(80px, 5.5555555556vw, 106.6666666667px);
  background-color: #000;
  position: absolute;
  z-index: -1;
  transition: 0.4s ease-in-out;
  opacity: 0.3;
}

.not_found_page .inner .back_home span {
  font-weight: 500;
  font-size: clamp(22px, 1.5277777778vw, 29.3333333333px);
  line-height: clamp(33px, 2.2916666667vw, 44px);
  color: rgba(255, 255, 255, 1);
  transition: 0.4s ease-in-out;
  pointer-events: none;
  text-transform: uppercase;
}

/* ml_page */

.ml_page .ml_info {
  padding-top: 160px;
}

.ml_page .container {
  padding: 0 60px;
}

.ml_page .title {
  font-size: 40px;
  line-height: 48px;
  padding-left: 60px;
}

.ml_page .ml_info .ml_content {
  width: 100%;
  max-width: 100%;
  background-color: #efe9e5;
  border-radius: 10px;
  padding: 60px 95px 66px 65px;
  font-weight: 400;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: clamp(30px, 2.0833333333vw, 35px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 1.3888888889vw, 26.6666666667px);
  margin-top: 60px;
  margin-bottom: 40px;
}
.ml_page .ml_info .ml_content h1,
.ml_page .ml_info .ml_content h2 {
  font-weight: 500;
  font-size: clamp(28px, 1.9444444444vw, 33px);
  line-height: clamp(38px, 2.6388888889vw, 40px);
  margin-bottom: 10px;
}
.ml_page .ml_info .ml_content h3,
.ml_page .ml_info .ml_content h4 {
  font-weight: 600;
}
.ml_page .ml_info .ml_content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 30px;
}
.ml_page .ml_info .ml_content ul li {
  list-style: disc;
}

.equipe_page .container {
  padding: 0 40px;
}

/** Start Search Result Styles **/

.searchResult {
  display: flex;
  flex-direction: column;
  padding-top: 160px;
}

.searchResult-content .searchResult-header {
  padding-left: 60px;
}

.searchResult-content .searchResult-header h1 {
  font-size: 40px;
  line-height: 48px;
}

.searchResult-content .searchResult-header p {
  font-size: 20px;
  line-height: 35px;
}

.searchResult-content .searchResult-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  padding: 50px;
}

/** End Search Results Styles **/
