/*
Theme Name: Wam
Theme URI:
Author: Jean-Baptiste Druet - Agence Album
Author URI: agencealbum.com
Description: Theme
Version: 1.0
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("assets/fonts/roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Cormorant";
  src: url("assets/fonts/cormorant/Cormorant-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Cormorant";
  src: url("assets/fonts/cormorant/Cormorant-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
.wam__header {
  position: fixed;
  display: flex;
  width: 100%;
  gap: 1rem;
  z-index: 2;
  padding: 1rem;
}
@media screen and (max-width: 999.98px) {
  .wam__header {
    background: #0C1E40;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__header {
    align-items: center;
    padding: 0.5rem;
  }
}
.wam__header.reduced {
  background: #0C1E40;
}
.wam__header .wam__header__menuicon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: fit-content;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.wam__header .wam__header__menuicon.hide {
  opacity: 0;
}
.wam__header .wam__header__menuicon .icon {
  font-size: 3.5rem;
  color: #FFFFFF;
  cursor: pointer;
}
@media screen and (max-width: 699.98px) {
  .wam__header .wam__header__menuicon .icon {
    font-size: 2.8rem;
  }
}
.wam__header .wam__header__logo {
  width: 7.5rem;
  transition: width 0.4s ease;
}
.wam__header .wam__header__logo.reduced {
  width: 4.5rem;
}
@media screen and (max-width: 699.98px) {
  .wam__header .wam__header__logo.reduced {
    width: 3rem;
  }
}
@media screen and (max-width: 1349.98px) {
  .wam__header .wam__header__logo {
    width: 7.5rem;
  }
}
@media screen and (max-width: 1149.98px) {
  .wam__header .wam__header__logo {
    width: 6.5rem;
  }
}
@media screen and (max-width: 999.98px) {
  .wam__header .wam__header__logo {
    width: 5rem;
  }
}
@media screen and (max-height: 767.98px) {
  .wam__header .wam__header__logo {
    width: 5rem;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__header .wam__header__logo {
    width: 3rem;
  }
}

.wam__header__menu {
  opacity: 0;
  transform: translateY(-100vh);
  position: fixed;
  width: 30rem;
  height: 100%;
  z-index: 3;
  transition: opacity 0.2s ease, transform 0.6s ease;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  background: #BCA37F;
}
@media screen and (max-width: 699.98px) {
  .wam__header__menu {
    width: 100vw;
  }
}
.wam__header__menu.active {
  opacity: 1;
  transform: translateY(0);
}
.wam__header__menu .close {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 699.98px) {
  .wam__header__menu .close {
    top: 1rem;
    left: 1rem;
  }
}
.wam__header__menu .close .icon {
  font-size: 2.5rem;
  color: #0C1E40;
  z-index: 3;
}
@media screen and (max-width: 699.98px) {
  .wam__header__menu .close .icon {
    font-size: 1.8rem;
  }
}
.wam__header__menu .wam__header__menu__inner {
  position: relative;
  top: 3rem;
  width: 50%;
  z-index: 3;
}
@media screen and (max-height: 767.98px) {
  .wam__header__menu .wam__header__menu__inner {
    top: 1.8rem;
  }
}
@media screen and (max-width: 999.98px) {
  .wam__header__menu .wam__header__menu__inner {
    width: 60%;
  }
}
.wam__header__menu .wam__header__menu__inner .inner__title {
  padding: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-height: 767.98px) {
  .wam__header__menu .wam__header__menu__inner .inner__title {
    padding: 0.5rem;
  }
}
.wam__header__menu .wam__header__menu__inner .inner__title p {
  text-transform: uppercase;
  font-weight: 600;
  color: #0C1E40;
  letter-spacing: 2px;
}
@media screen and (max-width: 1149.98px) {
  .wam__header__menu .wam__header__menu__inner .inner__title p {
    font-size: 14px;
  }
}
.wam__header__menu .wam__header__menu__inner .navigation {
  list-style: none;
}
.wam__header__menu .wam__header__menu__inner .navigation li {
  position: relative;
  margin-bottom: 2rem;
}
@media screen and (max-height: 767.98px) {
  .wam__header__menu .wam__header__menu__inner .navigation li {
    margin-bottom: 1.2rem;
  }
  .wam__header__menu .wam__header__menu__inner .navigation li a {
    font-size: 18px;
  }
}
.wam__header__menu .wam__header__menu__inner .navigation li::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -14px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #0C1E40;
  transform-origin: left;
  transform: scaleX(0.1);
  transition: transform 0.3s ease;
}
.wam__header__menu .wam__header__menu__inner .navigation li:hover {
  text-shadow: 1px 0 0 #0C1E40;
}
.wam__header__menu .wam__header__menu__inner .navigation li:hover::after {
  transform: scaleX(1);
}
.wam__header__menu .wam__header__menu__inner .navigation li.current-menu-item a::after {
  background: #0C1E40;
}
.wam__header__menu .wam__header__menu__inner .navigation li a {
  display: block;
  position: relative;
  font-family: "Cormorant", sans-serif;
  font-size: 20px;
  font-weight: 200;
  text-decoration: none;
  color: #0C1E40;
  transition: color 0.3s ease;
  width: 100%;
  line-height: 1.4rem;
}
@media screen and (max-width: 699.98px) {
  .wam__header__menu .wam__header__menu__inner .navigation li a {
    font-size: 16px;
  }
}
.wam__header__menu .wam__header__menu__inner .navigation li:has(ul):hover > ul {
  text-shadow: none;
}
.wam__header__menu .wam__header__menu__inner .navigation li:has(ul):hover > a::after {
  bottom: -4rem;
}
.wam__header__menu .wam__header__menu__inner .navigation li ul {
  margin-top: 10px;
  position: relative;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, max-height 0.8s ease;
  list-style: none;
  max-height: 0;
  overflow: hidden;
  z-index: 10;
}
.wam__header__menu .wam__header__menu__inner .navigation li ul:hover li {
  text-shadow: none;
}
.wam__header__menu .wam__header__menu__inner .navigation li ul li {
  display: block;
  padding: 0.25rem 0;
  margin-bottom: 0;
}
.wam__header__menu .wam__header__menu__inner .navigation li ul li::after {
  display: none;
}
.wam__header__menu .wam__header__menu__inner .navigation li ul li a {
  font-size: 15.1px;
  font-weight: 600;
  text-transform: none;
}
.wam__header__menu .wam__header__menu__inner .navigation li:hover ul {
  visibility: visible;
  opacity: 1;
  max-height: 500px;
}
.wam__header__menu .wam__header__menu__inner .navigation li:hover ul li {
  display: block;
  padding: 0.25rem 0;
}
.wam__header__menu .wam__header__menu__inner .navigation.always-expanded li ul {
  visibility: visible;
  opacity: 1;
  max-height: 500px;
}
.wam__header__menu .bottom {
  position: relative;
  width: 100%;
  display: flex;
  align-items: end;
  padding: 1rem;
}
.wam__header__menu .bottom .logo {
  display: block;
  height: fit-content;
  width: 4rem;
  max-width: 10rem;
  padding: 1rem 0;
  z-index: 3;
  cursor: pointer;
  position: relative;
  filter: brightness(0) saturate(100%) invert(13%) sepia(39%) saturate(865%) hue-rotate(184deg) brightness(96%) contrast(98%);
}
.wam__header__menu .bottom .logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.wam__header__menu .bottom .infos {
  display: flex;
  justify-content: center;
  flex-direction: column;
  z-index: 3;
  font-family: "Cormorant", sans-serif;
  font-weight: 200;
  width: 50%;
  margin-top: 1rem;
  white-space: nowrap;
  padding: 1rem;
}
.wam__header__menu .bottom .infos p {
  color: #0C1E40;
  font-size: 17px;
}
@media screen and (max-width: 699.98px) {
  .wam__header__menu .bottom .infos p {
    font-size: 12px;
  }
}
.wam__header__menu .bottom .infos a {
  color: #0C1E40;
  font-size: 17px;
  text-decoration: none;
}
@media screen and (max-width: 699.98px) {
  .wam__header__menu .bottom .infos a {
    font-size: 12px;
  }
}

.wam__header__mention {
  position: fixed;
  top: 3rem;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-family: "Roboto", sans-serif;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 1349.98px) {
  .wam__header__mention {
    font-size: 22px;
  }
}
@media screen and (max-width: 1149.98px) {
  .wam__header__mention {
    font-size: 20px;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__header__mention {
    top: 2.2rem;
    font-size: 10px;
    z-index: 2;
  }
}
.wam__header__mention::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  height: 1.5px;
  background-color: #B39973;
  z-index: 3;
}

.wam__header__side {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  top: 3rem;
  right: 2rem;
  z-index: 3;
}
@media screen and (max-width: 699.98px) {
  .wam__header__side {
    align-items: end;
    top: 1rem;
    right: 0.5rem;
    z-index: 2;
  }
}
.wam__header__side .socials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.wam__header__side .socials .social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  outline: 2px #FFFFFF solid;
  border-radius: 100%;
  transition: outline 0.15s linear;
}
@media screen and (max-width: 699.98px) {
  .wam__header__side .socials .social {
    display: none;
  }
}
.wam__header__side .socials .social.colorized {
  outline: 2px #0C1E40 solid;
}
@media screen and (max-width: 699.98px) {
  .wam__header__side .socials .social.colorized {
    outline: 1px #0C1E40 solid;
  }
}
.wam__header__side .socials .social.colorized .icon {
  color: #0C1E40;
}
.wam__header__side .socials .social .icon {
  font-size: 1.4rem;
  color: #FFFFFF;
  transition: color 0.15s linear;
}
@media screen and (max-width: 699.98px) {
  .wam__header__side .socials .social .icon {
    font-size: 0.8rem;
  }
}

footer.wam__footer {
  padding-top: 1rem;
  height: auto;
  width: 100%;
  background: #0C1E40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}
footer.wam__footer .logo {
  display: block;
  width: 10rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1149.98px) {
  footer.wam__footer .logo {
    width: 8rem;
  }
}
@media screen and (max-width: 999.98px) {
  footer.wam__footer .logo {
    width: 6rem;
  }
}
@media screen and (max-width: 699.98px) {
  footer.wam__footer .logo {
    width: 4rem;
  }
}
footer.wam__footer .infos {
  margin-bottom: 1rem;
}
@media screen and (max-width: 999.98px) {
  footer.wam__footer .infos {
    text-align: center;
  }
}
@media screen and (max-width: 699.98px) {
  footer.wam__footer .infos {
    display: flex;
    flex-direction: column;
  }
}
footer.wam__footer .infos a {
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  text-decoration: none;
  color: #FFFFFF;
  font-size: clamp(12px, 3vw, 18px);
  padding: 1rem 0;
}
@media screen and (max-width: 699.98px) {
  footer.wam__footer .infos a {
    padding: 0.5rem 0;
  }
}
footer.wam__footer .infos a,
footer.wam__footer .infos p {
  letter-spacing: 0.6pt;
}
footer.wam__footer .bottom {
  border-top: 1px #707070 solid;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  width: 80%;
}
@media screen and (max-width: 1349.98px) {
  footer.wam__footer .bottom {
    width: 90%;
  }
}
@media screen and (max-width: 999.98px) {
  footer.wam__footer .bottom {
    flex-direction: column;
  }
}
footer.wam__footer .bottom .certification {
  display: flex;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-weight: 200;
  color: #FFFFFF;
}
@media screen and (max-width: 999.98px) {
  footer.wam__footer .bottom .certification {
    justify-content: center;
    margin-bottom: 1rem;
    gap: 1rem;
    font-size: 10px;
  }
}
footer.wam__footer .bottom .certification img {
  width: 3rem;
}
footer.wam__footer .bottom ul {
  list-style: none;
  display: flex;
  align-items: center;
  color: #FFFFFF;
  margin: 0;
}
@media screen and (max-width: 999.98px) {
  footer.wam__footer .bottom ul {
    justify-content: center;
  }
}
@media screen and (max-width: 699.98px) {
  footer.wam__footer .bottom ul {
    flex-direction: column;
  }
}
footer.wam__footer .bottom ul li {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 200;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  cursor: pointer;
}
footer.wam__footer .bottom ul li:hover {
  text-decoration: underline;
}
footer.wam__footer .bottom ul li a {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 200;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  cursor: pointer;
}
footer.wam__footer .bottom ul li a:hover {
  text-decoration: underline;
}

#baguetteBox-overlay #baguetteBox-slider {
  top: 10% !important;
  height: 80% !important;
}

.baguetteBox-button svg {
  font-size: 4rem !important;
  color: #FFFFFF;
}

#previous-button,
#next-button,
#close-button {
  background-color: transparent !important;
}

.wam__hero {
  position: relative;
  height: 80vh;
  min-height: 730px;
  width: 100%;
  display: flex;
  align-items: center;
  background: #0C1E40;
}
.wam__hero.actu {
  min-height: unset;
  height: 25rem;
}
@media screen and (max-width: 699.98px) {
  .wam__hero.actu {
    height: unset;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__hero {
    height: unset;
    min-height: unset;
    padding: 4rem 0;
  }
}
.wam__hero .wam__hero__inner {
  width: 100%;
  height: 75%;
  position: relative;
  top: 3rem;
  display: flex;
}
@media screen and (min-width: 1500px) {
  .wam__hero .wam__hero__inner {
    gap: 5%;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__hero .wam__hero__inner {
    top: 0;
    gap: 2rem;
    flex-direction: column;
  }
}
.wam__hero .wam__hero__inner .media {
  position: relative;
  width: 45%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 40rem;
}
@media screen and (max-width: 999.98px) {
  .wam__hero .wam__hero__inner .media.no-hero {
    width: 10%;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__hero .wam__hero__inner .media.no-hero {
    aspect-ratio: unset;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__hero .wam__hero__inner .media {
    width: 100%;
    max-width: unset;
    aspect-ratio: 2/1;
  }
}
.wam__hero .wam__hero__inner .content {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5% 5rem 5%;
}
@media screen and (max-width: 699.98px) {
  .wam__hero .wam__hero__inner .content {
    width: 100%;
    padding: 0 10%;
  }
}
.wam__hero .wam__hero__inner .content h1 {
  font-family: "Cormorant", sans-serif;
  font-weight: 500;
  letter-spacing: 0.5rem;
  color: #B39973;
  position: relative;
  margin-bottom: 1rem;
  line-height: 1;
  font-size: clamp(2rem, 5vw + 1rem, 85px);
}
@media screen and (max-width: 1349.98px) {
  .wam__hero .wam__hero__inner .content h1 {
    font-size: clamp(1.5rem, 4vw + 0.5rem, 94px);
  }
}
@media screen and (max-width: 699.98px) {
  .wam__hero .wam__hero__inner .content h1 {
    font-size: clamp(40px, 4vw + 0.5rem, 94px);
    line-height: 2.5rem;
  }
}
.wam__hero .wam__hero__inner .content.divorces-contencieux h1 p {
  font-size: clamp(2rem, 5vw + 1rem, 68px);
}
@media screen and (max-width: 1349.98px) {
  .wam__hero .wam__hero__inner .content.divorces-contencieux h1 p {
    font-size: clamp(2rem, 4vw + 0.5rem, 94px);
  }
}
@media screen and (max-width: 699.98px) {
  .wam__hero .wam__hero__inner .content.divorces-contencieux h1 p {
    font-size: clamp(40px, 4vw + 0.5rem, 94px);
    line-height: 2.5rem;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__hero .wam__hero__inner .content.droit-international h1 {
    font-size: clamp(35px, 4vw + 0.5rem, 94px);
    line-height: 2.5rem;
  }
}
.wam__hero .wam__hero__inner .content .intro {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: clamp(0.8rem, 2vw + 0.5rem, 19px);
  line-height: clamp(1.2rem, 2vw + 0.5rem, 1.5rem);
  letter-spacing: 3px;
  color: #FFFFFF;
}
.wam__hero .wam__hero__inner .content .intro a {
  border: 1px red solid;
  text-decoration: none;
}

.wam__intro {
  height: auto;
  padding: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 699.98px) {
  .wam__intro {
    padding: 2rem 0;
  }
}
.wam__intro .inner {
  width: 44rem;
  left: 10%;
  position: relative;
}
@media screen and (max-width: 999.98px) {
  .wam__intro .inner {
    width: 80%;
  }
}
.wam__intro .inner h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 2rem;
  letter-spacing: 3px;
}
.wam__intro .spacing {
  height: 0rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wam__intro .spacing span {
  position: relative;
  top: -3rem;
  width: 4px;
  height: 9rem;
  background: #B39973;
}
@media screen and (max-width: 699.98px) {
  .wam__intro .spacing span {
    top: -2rem;
    height: 3rem;
  }
}

.wam__close {
  position: sticky;
  top: 17rem;
  left: 92%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  text-transform: uppercase;
  font-family: "Assistant", sans-serif;
  font-weight: 300;
  font-size: 13px;
  text-decoration: none;
  color: #000000;
  opacity: 0.8;
  z-index: 3;
}
@media screen and (max-width: 1349.98px) {
  .wam__close {
    left: 91%;
    font-size: 10px;
  }
}
@media screen and (max-width: 999.98px) {
  .wam__close {
    font-size: 0px;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__close {
    display: none;
  }
}
.wam__close .icon {
  font-size: 2rem;
}
@media screen and (max-width: 1349.98px) {
  .wam__close .icon {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 999.98px) {
  .wam__close .icon {
    font-size: 2.2rem;
  }
}

.wam__filters {
  height: auto;
  width: 70%;
  margin: auto;
  margin-bottom: 2rem;
}
.wam__filters .wam__filters__list {
  list-style: none;
}
.wam__filters .wam__filters__list li:not(:last-child) {
  margin-bottom: 1rem;
}
.wam__filters .wam__filters__list li a {
  position: relative;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: clamp(20px, 3vw, 25px);
  text-decoration: none;
  color: #707070;
}
.wam__filters .wam__filters__list li a::before {
  opacity: 0;
  position: absolute;
  top: -0.3rem;
  left: -2.5rem;
  display: block;
  content: "";
  width: 1.7rem;
  height: 2.5rem;
  background-image: url("./assets/img/pictograms/HarcheOr.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.wam__filters .wam__filters__list li a:hover {
  color: #B39973;
  transform-origin: left;
  text-shadow: 1px 0 0 #B39973;
}
.wam__filters .wam__filters__list li a.active {
  color: #B39973;
  text-shadow: 1px 0 0 #B39973;
  transform-origin: left;
}
.wam__filters .wam__filters__list li a.active::before {
  opacity: 1;
  position: absolute;
  top: -0.3rem;
  left: -2.5rem;
  display: block;
  content: "";
  width: 1.4rem;
  height: 2rem;
  background-image: url("./assets/img/pictograms/HarcheOr.png");
  background-size: cover;
  background-repeat: no-repeat;
}

.language__switcher {
  display: flex;
}
.language__switcher a {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
  padding: 5px;
}
.language__switcher a.active {
  color: #B39973;
  font-weight: 400;
}
.language__switcher hr {
  border: none;
  width: 2px;
  height: 14px;
  background: #FFFFFF;
  margin: auto 0;
}

/* Style for both ol and ul lists */
ol {
  margin-top: 1rem !important;
}

ol, ul {
  margin: 0 0 1rem 1.5rem; /* Top, right, bottom, left */
  padding: 0; /* Removes the default padding */
  list-style-position: outside; /* Ensures bullet/number is outside the text */
}

/* Optional: styling for nested lists */
ol ol, ul ul, ol ul, ul ol {
  margin-left: 1.5rem; /* Indent nested lists */
}

/* Style for list items */
li {
  margin-bottom: 0.5rem; /* Space between list items */
  line-height: 1.6; /* Improves readability */
}

ul > li {
  font-size: 16px;
  margin-bottom: 0;
}

.team {
  position: relative;
  width: 100%;
  margin: auto;
  padding: 2rem 10%;
  z-index: 1;
}
.team .team__title {
  height: auto;
  padding: 2rem;
  display: flex;
  align-items: end;
  justify-content: start;
  gap: 5rem;
}
@media screen and (max-width: 999.98px) {
  .team .team__title {
    gap: 3rem;
  }
}
@media screen and (max-width: 699.98px) {
  .team .team__title {
    gap: 1rem;
  }
}
.team .team__title h2 {
  position: relative;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: clamp(1.5rem, 2vw + 1rem, 31px);
  letter-spacing: 1.8px;
  margin-left: 1rem;
}
.team .team__title h2::before {
  position: absolute;
  top: -0.3rem;
  left: -2.5rem;
  display: block;
  content: "";
  width: 1.7rem;
  height: 2.5rem;
  background-image: url("./assets/img/pictograms/HarcheOr.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.team .team__title .logo {
  width: 10rem;
}
@media screen and (max-width: 1149.98px) {
  .team .team__title .logo {
    width: 7rem;
  }
}
.team .team__title .logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.team .team__list {
  position: relative;
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  justify-content: start;
  z-index: 3;
}
@media screen and (max-width: 999.98px) {
  .team .team__list {
    gap: 1rem;
  }
}

.team__list__item {
  position: relative;
  width: 25%;
  max-width: 22rem;
  min-width: 18rem;
  aspect-ratio: 1/1;
  border-bottom: 7px #B39973 solid;
}
@media screen and (max-width: 1349.98px) {
  .team__list__item {
    width: 25%;
    height: 254px;
  }
}
@media screen and (max-width: 1149.98px) {
  .team__list__item {
    width: 25%;
    height: 234px;
  }
}
@media screen and (max-width: 699.98px) {
  .team__list__item {
    width: 100%;
    height: auto;
  }
}
.team__list__item:hover .overlay {
  height: 100%;
}
.team__list__item:hover .overlay p,
.team__list__item a,
.team__list__item span, .team__list__item:hover .overlay .languages span, .team__list__item:hover .overlay .infos, .team__list__item:hover .overlay .infos a, .team__list__item:hover .overlay .languages {
  animation-delay: 0.5s;
  animation: visible 0.3s ease forwards;
}
@keyframes visible {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.team__list__item .image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.team__list__item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.team__list__item .overlay {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 0%;
  transform-origin: bottom;
  transition: height 0.45s ease;
  background: #B39973;
}
.team__list__item .overlay .name {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.4rem;
}
.team__list__item .overlay .type {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.team__list__item .overlay p,
.team__list__item .overlay a,
.team__list__item .overlay span,
.team__list__item .overlay .languages {
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  opacity: 0;
}
.team__list__item .overlay .infos {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  padding: 0 1rem;
  gap: 5px;
}
.team__list__item .overlay .skills {
  font-size: 14px;
  margin-top: 5px;
}
.team__list__item .overlay a {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 4.5px;
}
.team__list__item .overlay .mail .icon {
  font-size: 1.2rem;
}
.team__list__item .overlay .mail span {
  font-size: 13.8px;
}
.team__list__item .overlay .mail.long span {
  font-size: 11px;
}
.team__list__item .arche {
  display: none;
  position: absolute;
  width: 1rem;
  bottom: -0.8rem;
  left: 1rem;
}

.cky-consent-container,
.cky-modal {
  font-family: "Roboto", sans-serif;
}

.wam__home .swiper-container {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  will-change: transform, opacity, height, object-fit !important;
}
.wam__home .swiper-container .swiper-wrapper {
  height: 100%;
  width: 100%;
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide {
  margin-bottom: 0 !important;
  transition: transform 0.6s ease, height 0.6s ease;
  overflow: hidden;
  will-change: transform, opacity, height, object-fit !important;
  display: flex;
}
@media screen and (max-width: 999.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide {
    flex-direction: column;
  }
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide .content {
  position: relative;
  width: 60%;
  height: 100%;
  background-color: #0C1E40;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 999.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .content {
    width: 100%;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .content {
    height: 55%;
  }
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title {
  opacity: 0;
  position: relative;
  bottom: 1rem;
  text-decoration: none;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  cursor: pointer;
}
@media screen and (max-height: 767.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 999.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title {
    top: 1rem;
  }
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title:hover .plus {
  outline: 1px #FFFFFF solid;
  background: #FFFFFF;
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title:hover .plus .icon {
  color: #0C1E40;
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title .main p {
  font-family: "Cormorant";
  font-size: clamp(2rem, 5vw + 1rem, 85px);
  line-height: clamp(3rem, 4vw + 1rem, 7rem);
  font-weight: 400;
  letter-spacing: 0.5rem;
  color: #B39973;
}
@media screen and (max-width: 1349.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title .main p {
    font-size: clamp(1.5rem, 4vw + 1rem, 85px);
    line-height: clamp(2rem, 3vw + 1rem, 4.5rem);
  }
}
@media screen and (max-height: 767.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title .main p {
    font-size: clamp(2rem, 5vw + 1rem, 75px);
    line-height: clamp(2.5rem, 4vw + 1rem, 4.5rem);
  }
}
@media screen and (max-width: 699.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title .main {
    max-width: 80%;
  }
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title .subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 17px);
  line-height: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: #FFFFFF;
  font-weight: 300;
  width: clamp(35rem, 40vw, 41rem);
  letter-spacing: 3px;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 1149.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title .subtitle {
    width: clamp(18rem, 30vw, 35rem);
    font-size: clamp(0.8rem, 2vw + 0.5rem, 19px);
    line-height: clamp(1.2rem, 2vw + 0.5rem, 1.5rem);
  }
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title .plus {
  position: relative;
  top: 1rem;
  left: 40%;
  width: fit-content;
  outline: 1px #B39973 solid;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
}
@media screen and (max-width: 699.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title .plus {
    left: unset;
  }
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title .plus .icon {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #FFFFFF;
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide .content .title.visible {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide .content video.illustration {
  position: absolute;
  bottom: -47px;
  left: 0rem;
  width: 22rem;
  height: auto;
  z-index: 1;
}
@media screen and (max-height: 767.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .content video.illustration {
    width: 15rem;
  }
}
@media screen and (max-width: 999.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .content video.illustration {
    display: none;
  }
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide .content img.illustration {
  position: absolute;
  bottom: -47px;
  left: 0rem;
  width: 18rem;
  height: auto;
  z-index: 1;
}
@media screen and (max-height: 767.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .content img.illustration {
    width: 15rem;
  }
}
@media screen and (max-width: 999.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .content img.illustration {
    display: none;
  }
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide .media {
  will-change: transform, opacity, height, object-fit !important;
  width: 40%;
  height: 100%;
}
@media screen and (max-width: 999.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .media {
    width: 100%;
    height: 45%;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide .media {
    height: 45%;
  }
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
  transform: scale(1);
  height: 85% !important;
  transition: transform 0.8s ease, height 1.3s ease;
}
@media screen and (max-width: 999.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
    height: 100% !important;
  }
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-prev {
  /* Scale down the previous slide */
  transition: transform 0.3s ease, height 1.3s ease;
  /* Smooth transition for the scaling and margin */
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(0.7);
  /* Scale down the next slide */
  margin: -4rem auto 0 auto;
  /* Adjust margins smoothly */
  transition: transform 0.6s ease, margin 0.6s ease;
  /* Ensure smooth transition for next slide scaling and margin */
  cursor: pointer;
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide video.desktop {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 699.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide video.desktop {
    display: none;
    object-position: top;
  }
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide video.mobile {
  display: none;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 699.98px) {
  .wam__home .swiper-container .swiper-wrapper .swiper-slide video.mobile {
    display: block;
    object-position: top;
  }
}
.wam__home .swiper-container .swiper-wrapper .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.wam__home .swiper-container .swiper-pagination {
  right: 3.8rem;
}
@media screen and (max-width: 699.98px) {
  .wam__home .swiper-container .swiper-pagination {
    top: 50%;
    right: 1.2rem;
  }
}
.wam__home .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  outline: 0.1px #878787 solid;
  opacity: 1;
}
@media screen and (max-width: 699.98px) {
  .wam__home .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.wam__home .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #B39973 !important;
}
.wam__home .swiper-container .swiper-baseline {
  opacity: 0;
  position: absolute;
  bottom: 4.5rem;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  display: flex;
  justify-content: center;
  transition: opacity 0.1s ease;
  z-index: 2;
}
@media screen and (max-width: 999.98px) {
  .wam__home .swiper-container .swiper-baseline {
    display: none;
  }
}
.wam__home .swiper-container .swiper-baseline p {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.2rem, 1.3vw, 1.5rem);
  letter-spacing: clamp(2px, 2vw, 7px);
  color: #B39973;
  text-transform: uppercase;
}

.wam__expertise .swiper-container {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  will-change: transform, opacity, height, object-fit !important;
}
.wam__expertise .swiper-container .swiper-wrapper {
  height: 100%;
  width: 100%;
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide {
  margin-bottom: 0 !important;
  transition: transform 0.6s ease, height 0.6s ease;
  overflow: hidden;
  will-change: transform, opacity, height, object-fit !important;
  display: flex;
  background: #0C1E40;
}
@media screen and (max-width: 999.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide {
    flex-direction: column;
  }
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content {
  position: relative;
  width: 60%;
  height: 100%;
  background-color: #0C1E40;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 999.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content {
    width: 100%;
  }
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .expertise {
  font-family: "Cormorant";
  color: #FFFFFF;
  width: fit-content;
  margin-bottom: -1rem;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
@media screen and (max-width: 699.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .expertise {
    font-size: 14px;
  }
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .title {
  opacity: 0;
  position: relative;
  bottom: 1rem;
  text-decoration: none;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  cursor: pointer;
}
@media screen and (max-height: 767.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .title {
    gap: 1.5rem;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .title {
    top: 2rem;
  }
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .title:hover .plus {
  outline: 1px #FFFFFF solid;
  background: #FFFFFF;
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .title:hover .plus .icon {
  color: #0C1E40;
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .title .main p {
  font-family: "Cormorant";
  font-size: clamp(2rem, 5vw + 1rem, 85px);
  font-weight: 400;
  letter-spacing: 0.5rem;
  color: #B39973;
  line-height: clamp(3rem, 4vw + 1rem, 7rem);
}
@media screen and (max-width: 1349.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .title .main p {
    font-size: clamp(1.5rem, 4vw + 1rem, 85px);
    line-height: clamp(2rem, 3vw + 1rem, 4.5rem);
  }
}
@media screen and (max-height: 767.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .title .main p {
    font-size: clamp(2rem, 5vw + 1rem, 75px);
    line-height: clamp(3rem, 4vw + 1rem, 4.5rem);
  }
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .title .subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 17px);
  line-height: clamp(1rem, 2vw + 0.5rem, 1.5rem);
  color: #FFFFFF;
  font-weight: 300;
  width: clamp(35rem, 40vw, 41rem);
  letter-spacing: 3px;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 1149.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .title .subtitle {
    width: clamp(18rem, 30vw, 35rem);
    font-size: clamp(0.8rem, 2vw + 0.5rem, 19px);
    line-height: clamp(1.2rem, 2vw + 0.5rem, 1.5rem);
  }
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .title .plus {
  position: relative;
  top: 1rem;
  left: 40%;
  width: fit-content;
  outline: 1px #B39973 solid;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
}
@media screen and (max-width: 699.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .title .plus {
    left: unset;
  }
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .title .plus .icon {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: #FFFFFF;
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content .title.visible {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content video.illustration {
  position: absolute;
  bottom: -47px;
  left: 0rem;
  width: 22rem;
  height: auto;
  z-index: 1;
}
@media screen and (max-height: 767.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content video.illustration {
    width: 15rem;
  }
}
@media screen and (max-width: 999.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content video.illustration {
    display: none;
  }
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content img.illustration {
  position: absolute;
  bottom: -47px;
  left: 0rem;
  width: 18rem;
  height: auto;
  z-index: 1;
}
@media screen and (max-height: 767.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content img.illustration {
    width: 15rem;
  }
}
@media screen and (max-width: 999.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide .content img.illustration {
    display: none;
  }
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide .media {
  will-change: transform, opacity, height, object-fit !important;
  width: 40%;
  height: 100%;
}
@media screen and (max-width: 999.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide .media {
    width: 100%;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide .media {
    position: relative;
    top: -5rem;
    height: 40%;
  }
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
  transform: scale(1);
  /* Ensure the active slide is at full scale */
  height: 85% !important;
  /* Height change should also transition */
  transition: transform 0.8s ease, height 1.3s ease;
  /* Ensure smooth transition when the slide becomes active */
}
@media screen and (max-width: 699.98px) {
  .wam__expertise .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
    height: 100% !important;
  }
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-prev {
  /* Scale down the previous slide */
  transition: transform 0.3s ease, height 1.3s ease;
  /* Smooth transition for the scaling and margin */
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-next {
  transform: scale(0.7);
  /* Scale down the next slide */
  margin: -4rem auto 0 auto;
  /* Adjust margins smoothly */
  transition: transform 0.6s ease, margin 0.6s ease;
  /* Ensure smooth transition for next slide scaling and margin */
  cursor: pointer;
}
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide img,
.wam__expertise .swiper-container .swiper-wrapper .swiper-slide video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.wam__expertise .swiper-container .swiper-pagination {
  right: 3.8rem;
}
@media screen and (max-width: 699.98px) {
  .wam__expertise .swiper-container .swiper-pagination {
    top: 50%;
    right: 1.2rem;
  }
}
.wam__expertise .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  outline: 0.1px #878787 solid;
  opacity: 1;
}
@media screen and (max-width: 699.98px) {
  .wam__expertise .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.wam__expertise .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #B39973 !important;
}
.wam__expertise .swiper-container .swiper-baseline {
  opacity: 0;
  position: absolute;
  bottom: 4.5rem;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  display: flex;
  justify-content: center;
  transition: opacity 0.1s ease;
  z-index: 2;
}
@media screen and (max-width: 999.98px) {
  .wam__expertise .swiper-container .swiper-baseline {
    display: none;
  }
}
.wam__expertise .swiper-container .swiper-baseline p {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: clamp(0.2rem, 1.3vw, 1.5rem);
  letter-spacing: clamp(2px, 2vw, 7px);
  color: #B39973;
  text-transform: uppercase;
}

.wam__legals .wam__body .content {
  width: 80%;
  height: auto;
  margin: auto auto 5rem auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wam__legals .wam__body .content h1 {
  font-family: "Roboto", sans-serif;
  font-size: 56px;
  padding: 1rem 0;
}
.wam__legals .wam__body .content h2 {
  font-family: "Roboto", sans-serif;
  font-size: 36px;
  padding: 1rem 0;
}
@media screen and (max-width: 699.98px) {
  .wam__legals .wam__body .content h2 {
    font-size: 30px;
  }
}
.wam__legals .wam__body .content h3 {
  font-family: "Roboto", sans-serif;
  font-size: 25px;
  padding: 1rem 0;
}
.wam__legals .wam__body .content p {
  font-family: "Roboto", sans-serif;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 20px;
}
.wam__legals .wam__body .content ul {
  padding-left: 15px;
}
.wam__legals .wam__body .content ul li {
  font-family: "Roboto", sans-serif;
}
.wam__legals .wam__body .content a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}
.wam__legals .wam__body .content a:hover {
  text-decoration: underline;
}

.wam__office .wam__body {
  position: relative;
}
.wam__office .wam__body .wam__content {
  position: relative;
  width: 100%;
  padding: 0 10%;
  margin: auto;
}
.wam__office .wam__body .wam__content .background {
  height: 96%;
  width: 80%;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #ECECFC;
  z-index: -1;
}
.wam__office .wam__body .wam__content .row {
  display: flex;
  align-items: start;
  justify-content: space-evenly;
  margin-bottom: 4.2rem;
}
@media screen and (max-width: 999.98px) {
  .wam__office .wam__body .wam__content .row {
    flex-direction: column;
    gap: 2rem;
  }
}
.wam__office .wam__body .wam__content .row.first .col.small {
  height: 100%;
  width: 35%;
  min-width: 30rem;
  padding: 2rem 4%;
}
@media screen and (max-width: 999.98px) {
  .wam__office .wam__body .wam__content .row.first .col.small {
    padding: 1rem;
    width: 100%;
    min-width: unset;
    padding: unset;
  }
}
.wam__office .wam__body .wam__content .row.first .col.small p {
  font-family: "Cormorant", sans-serif;
  font-size: 45px;
  font-weight: 300;
  line-height: 62px;
}
@media screen and (max-width: 999.98px) {
  .wam__office .wam__body .wam__content .row.first .col.small p {
    font-size: 36px;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__office .wam__body .wam__content .row.first .col.small p {
    font-size: 32px;
    line-height: 42px;
  }
}
.wam__office .wam__body .wam__content .row.first .col.big {
  height: 100%;
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 999.98px) {
  .wam__office .wam__body .wam__content .row.first .col.big {
    width: 100%;
  }
}
.wam__office .wam__body .wam__content .row.first .col.big .image {
  height: 100%;
  width: 100%;
}
.wam__office .wam__body .wam__content .row.first .col.big .image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 999.98px) {
  .wam__office .wam__body .wam__content .row.second {
    flex-direction: column-reverse !important;
  }
}
.wam__office .wam__body .wam__content .row.second .col.small {
  height: 100%;
  width: 35%;
  padding: 2rem 1rem;
}
@media screen and (max-width: 999.98px) {
  .wam__office .wam__body .wam__content .row.second .col.small {
    width: 100%;
    padding: unset;
  }
}
.wam__office .wam__body .wam__content .row.second .col.small .image {
  position: relative;
  height: 700px;
}
@media screen and (max-width: 1149.98px) {
  .wam__office .wam__body .wam__content .row.second .col.small .image {
    height: 600px;
  }
}
@media screen and (max-width: 999.98px) {
  .wam__office .wam__body .wam__content .row.second .col.small .image {
    height: 500px;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__office .wam__body .wam__content .row.second .col.small .image {
    height: 400px;
  }
}
.wam__office .wam__body .wam__content .row.second .col.small .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.85);
}
@media screen and (max-width: 699.98px) {
  .wam__office .wam__body .wam__content .row.second .col.small .image img {
    object-position: bottom;
  }
}
.wam__office .wam__body .wam__content .row.second .col.small .image .changing__words {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant";
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 5px;
  color: #FFFFFF;
}
@media screen and (max-width: 1349.98px) {
  .wam__office .wam__body .wam__content .row.second .col.small .image .changing__words {
    font-size: 32px;
  }
}
@media screen and (max-width: 1149.98px) {
  .wam__office .wam__body .wam__content .row.second .col.small .image .changing__words {
    font-size: 28px;
  }
}
.wam__office .wam__body .wam__content .row.second .col.big {
  height: 100%;
  width: 65%;
  display: flex;
  align-items: start;
  justify-content: center;
  padding: 4rem 2rem;
}
@media screen and (max-width: 999.98px) {
  .wam__office .wam__body .wam__content .row.second .col.big {
    width: 100%;
    padding: unset;
  }
}
.wam__office .wam__body .wam__content .row.second .col.big .text {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 19px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wam__office .wam__body .wam__content .row.second .col.big .text p {
  line-height: 2rem;
}
.wam__office .wam__body .wam__content .row.second .col.big .text ul li {
  font-size: 19px;
  line-height: 2rem;
}
.wam__office .wam__body .wam__content .team__office {
  position: relative;
  z-index: 1;
  scroll-margin-top: 250px;
}
.wam__office .wam__body .wam__content .team__office .team__title {
  height: auto;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: start;
}
.wam__office .wam__body .wam__content .team__office .team__title h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 1.8px;
  margin-left: 1rem;
}
.wam__office .wam__body .wam__content .team__office .team__list {
  position: relative;
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10rem;
  z-index: 3;
}
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item {
  position: relative;
  width: 25%;
  max-width: 22rem;
  min-width: 18rem;
  aspect-ratio: 1/1;
  border-bottom: 7px #B39973 solid;
}
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item:hover .overlay {
  height: 100%;
}
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item:hover .overlay p,
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item a,
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item span, .wam__office .wam__body .wam__content .team__office .team__list .team__list__item:hover .overlay .languages span, .wam__office .wam__body .wam__content .team__office .team__list .team__list__item:hover .overlay .infos, .wam__office .wam__body .wam__content .team__office .team__list .team__list__item:hover .overlay .infos a, .wam__office .wam__body .wam__content .team__office .team__list .team__list__item:hover .overlay .languages {
  animation-delay: 0.5s;
  animation: visible 0.3s ease forwards;
}
@keyframes visible {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item .image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item .overlay {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 0%;
  transform-origin: bottom;
  transition: height 0.45s ease;
  background: #B39973;
}
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item .overlay .name {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.4rem;
}
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item .overlay .type {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item .overlay p,
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item .overlay a,
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item .overlay span,
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item .overlay .languages {
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  opacity: 0;
}
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item .overlay .infos {
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  opacity: 0;
}
.wam__office .wam__body .wam__content .team__office .team__list .team__list__item .arche {
  display: none;
  position: absolute;
  width: 1rem;
  bottom: -0.8rem;
  left: 1rem;
}
.wam__office .wam__body .wam__content .separation {
  width: 100%;
  display: flex;
  align-items: center;
  height: 1rem;
}
.wam__office .wam__body .wam__content .separation .line {
  height: 1px;
  width: 80%;
  background: #000000;
}
.wam__office .wam__body .wam__content .separation .image {
  width: 40%;
  max-width: 20rem;
}
.wam__office .wam__body .wam__content .separation .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.wam__office .wam__body .wam__content .premises .line {
  height: 1px;
  width: 100%;
  background: #000000;
}
.wam__office .wam__body .wam__content .premises .premises__title {
  height: auto;
  padding: 5rem 0;
  display: flex;
  align-items: center;
  justify-content: start;
}
.wam__office .wam__body .wam__content .premises .premises__title h3 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 40px;
  letter-spacing: 1.8px;
  margin-left: 1rem;
}
.wam__office .wam__body .wam__content .premises .premises__list {
  display: flex;
}
.wam__office .wam__body .wam__content .premises .premises__list .masonry__container {
  width: 100%;
  margin: auto;
  justify-content: center;
}
.wam__office .wam__body .wam__content .premises .premises__list .masonry__container .masonry__item {
  width: 33.3333333333%;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}
.wam__office .wam__body .wam__content .premises .premises__list .masonry__container .masonry__item:hover {
  transform: scale(0.95);
}
.wam__office .wam__body .wam__content .premises .premises__list .masonry__container .masonry__item a img {
  width: 100%;
  height: auto;
}

.wam__default .wam__content {
  position: relative;
}
.wam__default .wam__content .background {
  height: 100%;
  width: 80%;
  position: absolute;
  right: 0;
  top: 0;
  background: #ECECFC;
  z-index: -1;
}
.wam__default .wam__content .wam__content__item {
  position: relative;
  width: 100%;
  padding: 0 10%;
  margin: auto;
  overflow: hidden;
}
@media screen and (max-width: 999.98px) {
  .wam__default .wam__content .wam__content__item {
    padding: 0;
    width: 100%;
  }
}
.wam__default .wam__content .wam__content__item .row {
  position: relative;
  display: flex;
  padding-bottom: 4rem;
}
@media screen and (max-width: 1149.98px) {
  .wam__default .wam__content .wam__content__item .row.droit-immobilier {
    flex-direction: column;
  }
  .wam__default .wam__content .wam__content__item .row.droit-immobilier.col__small, .wam__default .wam__content .wam__content__item .row.droit-immobilier.col__big {
    width: 100%;
  }
}
@media screen and (max-width: 999.98px) {
  .wam__default .wam__content .wam__content__item .row {
    padding-bottom: unset;
  }
}
@media screen and (max-width: 999.98px) {
  .wam__default .wam__content .wam__content__item .row {
    flex-direction: column;
    width: 80%;
    margin: auto;
  }
}
.wam__default .wam__content .wam__content__item .row .col__small {
  height: 100%;
  width: 35%;
  min-width: 30rem;
  padding: 2rem 4%;
}
@media screen and (max-width: 999.98px) {
  .wam__default .wam__content .wam__content__item .row .col__small {
    width: 100%;
    min-width: unset;
  }
}
.wam__default .wam__content .wam__content__item .row .col__small .logo {
  width: 10rem;
}
@media screen and (max-width: 1149.98px) {
  .wam__default .wam__content .wam__content__item .row .col__small .logo {
    width: 7rem;
  }
}
.wam__default .wam__content .wam__content__item .row .col__small .logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.wam__default .wam__content .wam__content__item .row .col__small p {
  font-family: "Cormorant", sans-serif;
  font-size: clamp(30px, 3vw, 45px);
  font-weight: 300;
  line-height: clamp(35px, 3vw, 54px);
}
.wam__default .wam__content .wam__content__item .row .col__big {
  height: 100%;
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
}
@media screen and (max-width: 999.98px) {
  .wam__default .wam__content .wam__content__item .row .col__big {
    width: 100%;
  }
}
.wam__default .wam__content .wam__content__item .row .col__big .text {
  padding: 2rem;
}
@media screen and (max-width: 1349.98px) {
  .wam__default .wam__content .wam__content__item .row .col__big .text {
    padding: 1rem;
  }
}
.wam__default .wam__content .wam__content__item .row .col__big .text p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 19px;
  line-height: 2rem;
}
@media screen and (max-height: 767.98px) {
  .wam__default .wam__content .wam__content__item .row .col__big .text p {
    font-size: 18px;
    line-height: 1.6rem;
  }
}
.wam__default .wam__content .wam__content__item .row .col__big .skills {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  padding-left: 4rem;
  gap: 1rem;
}
@media screen and (max-width: 1349.98px) {
  .wam__default .wam__content .wam__content__item .row .col__big .skills {
    padding: 2rem 4rem;
  }
}
@media screen and (max-width: 999.98px) {
  .wam__default .wam__content .wam__content__item .row .col__big .skills {
    padding: 2rem 0;
    width: 80%;
    margin: auto;
  }
}
.wam__default .wam__content .wam__content__item .row .col__big .skills .skills__title {
  position: relative;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 31px;
}
.wam__default .wam__content .wam__content__item .row .col__big .skills .skills__title::before {
  position: absolute;
  top: -0.3rem;
  left: -2.5rem;
  display: block;
  content: "";
  width: 1.7rem;
  height: 2.5rem;
  background-image: url("./assets/img/pictograms/HarcheOr.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.wam__default .wam__content .wam__content__item .row .col__big .skills .skills__list {
  font-family: "Roboto", sans-serif;
}
.wam__default .wam__content .wam__content__item .row .col__big .skills .skills__list li {
  font-weight: 300;
  font-size: 19px;
}
.wam__default .wam__content .wam__content__item .row .col__big .skills .skills__list li:not(:last-child) {
  margin-bottom: 0.4rem;
}
.wam__default .wam__content .wam__content__item .row .illustration {
  position: absolute;
  bottom: 0;
  right: -14%;
  width: 25vw;
  max-width: 22rem;
}
@media screen and (max-width: 999.98px) {
  .wam__default .wam__content .wam__content__item .row .illustration {
    display: none;
  }
}
.wam__default .wam__content .wam__content__item .row .illustration.patrimonial {
  right: -4rem !important;
  width: 20vw !important;
}
@media screen and (max-width: 1349.98px) {
  .wam__default .wam__content .wam__content__item .row .illustration.patrimonial {
    width: 25vw !important;
    max-height: 15rem;
    left: 4rem !important;
    right: unset !important;
    bottom: 2rem;
  }
}
.wam__default .wam__content .wam__content__item .row .illustration.transmission {
  right: -5rem;
  width: 20vw;
}
@media screen and (max-width: 1349.98px) {
  .wam__default .wam__content .wam__content__item .row .illustration.transmission {
    max-height: 15rem;
    left: 4rem !important;
    right: unset !important;
    bottom: 2rem;
  }
}
.wam__default .wam__content .wam__content__item .row .illustration.union {
  width: 9vw !important;
  right: 0;
  bottom: 2rem;
}
.wam__default .wam__content .wam__content__item .row .illustration.divorces {
  right: 2rem !important;
  height: 30vw !important;
  max-height: 20rem;
  width: unset !important;
}
@media screen and (max-width: 1349.98px) {
  .wam__default .wam__content .wam__content__item .row .illustration.divorces {
    max-height: 15rem;
    left: 4rem !important;
    right: unset !important;
  }
}
.wam__default .wam__content .wam__content__item .row .illustration.divorces img {
  object-fit: contain;
}
.wam__default .wam__content .wam__content__item .row .illustration img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.wam__default .wam__content .wam__content__item .steps {
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Roboto", sans-serif;
  padding: 2rem 0;
  background: #0C1E40;
}
.wam__default .wam__content .wam__content__item .steps .steps__intro {
  font-weight: 300;
  font-size: 19px;
  line-height: 2rem;
  text-align: left;
  width: 70%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #FFFFFF;
  margin-top: 2rem;
}
@media screen and (max-width: 999.98px) {
  .wam__default .wam__content .wam__content__item .steps .steps__intro {
    width: 80%;
  }
}
.wam__default .wam__content .wam__content__item .steps .steps__intro .steps__title {
  font-weight: 600;
  font-size: 31px;
  color: #FFFFFF;
}
.wam__default .wam__content .wam__content__item .steps .steps__intro .first__steps__container {
  position: relative;
  width: 100%;
  margin: 2rem auto;
  outline: 1px #FFFFFF solid;
}
.wam__default .wam__content .wam__content__item .steps .steps__intro .first__steps__container .first__steps__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  color: #FFFFFF;
  padding: 1rem 2rem;
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.wam__default .wam__content .wam__content__item .steps .steps__intro .first__steps__container .first__steps__toggle .steps__toggle__icon {
  font-size: 20px;
}
.wam__default .wam__content .wam__content__item .steps .steps__intro .first__steps__container .first__steps__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease, opacity 1s ease, margin 0.3s ease;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 0 3rem;
  opacity: 0;
  margin: 0 !important;
  text-align: left;
}
@media screen and (max-width: 999.98px) {
  .wam__default .wam__content .wam__content__item .steps .steps__intro .first__steps__container .first__steps__list {
    padding: 0 1rem;
  }
  .wam__default .wam__content .wam__content__item .steps .steps__intro .first__steps__container .first__steps__list ol {
    margin: 0 0 1rem 1rem;
  }
}
.wam__default .wam__content .wam__content__item .steps .steps__intro .first__steps__container .first__steps__list ol li,
.wam__default .wam__content .wam__content__item .steps .steps__intro .first__steps__container .first__steps__list ul li {
  font-size: 16px;
}
.wam__default .wam__content .wam__content__item .steps .steps__intro .first__steps__container .first__steps__list.expanded {
  max-height: 2000px;
  margin: 2rem 0 !important;
}
.wam__default .wam__content .wam__content__item .steps .steps__intro .first__steps__container .first__steps__list.expanded-delay {
  opacity: 1;
}
.wam__default .wam__content .wam__content__item .steps .steps__intro .first__steps__container .first__steps__list .steps__list__item {
  width: 100%;
  height: auto;
  padding: 0.5rem 2rem;
  display: flex;
  list-style: inherit;
  align-items: center;
  justify-content: start;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 19px;
  color: #FFFFFF;
}
.wam__default .wam__content .wam__content__item .steps .steps__container {
  position: relative;
  text-align: center;
  width: 70%;
  margin: 2rem auto;
  outline: 1px #FFFFFF solid;
}
@media screen and (max-width: 999.98px) {
  .wam__default .wam__content .wam__content__item .steps .steps__container {
    width: 80%;
  }
}
.wam__default .wam__content .wam__content__item .steps .steps__container .steps__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  color: #FFFFFF;
  padding: 1rem 2rem;
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.wam__default .wam__content .wam__content__item .steps .steps__container .steps__toggle .steps__toggle__icon {
  font-size: 20px;
}
.wam__default .wam__content .wam__content__item .steps .steps__container .steps__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease, opacity 1s ease, margin 0.3s ease;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  width: 70%;
  padding: 0;
  opacity: 0;
  margin: 0 !important;
}
@media screen and (max-width: 1149.98px) {
  .wam__default .wam__content .wam__content__item .steps .steps__container .steps__list {
    width: 100%;
  }
}
.wam__default .wam__content .wam__content__item .steps .steps__container .steps__list.expanded {
  max-height: 1000px;
  margin: 2rem 0 !important;
}
.wam__default .wam__content .wam__content__item .steps .steps__container .steps__list.expanded-delay {
  opacity: 1;
}
.wam__default .wam__content .wam__content__item .steps .steps__container .steps__list .steps__list__item {
  width: 100%;
  height: auto;
  padding: 0.5rem 2rem;
  display: flex;
  list-style: inherit;
  align-items: center;
  justify-content: start;
  text-align: left;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 19px;
  color: #FFFFFF;
}
.wam__default .wam__content .wam__content__item .steps .transition {
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 24px;
  margin: 2rem 0;
  width: 80%;
  text-align: center;
  color: #FFFFFF;
}
.wam__default .wam__content .wam__content__item .steps .steps__more {
  display: flex;
  width: 80%;
}
.wam__default .wam__content .wam__content__item .steps .steps__more .steps__more__item {
  width: 33%;
  padding: 2rem;
  color: #FFFFFF;
  line-height: 1.4rem;
}
.wam__default .wam__content .wam__content__item .steps .steps__download {
  padding: 4rem 0;
}
.wam__default .wam__content .wam__content__item .steps .steps__download a {
  color: #FFFFFF;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 300;
}
.wam__default .wam__content .wam__content__item .help {
  width: 70%;
  margin: auto;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 999.98px) {
  .wam__default .wam__content .wam__content__item .help {
    padding: 4rem 0;
    width: 80%;
  }
}
.wam__default .wam__content .wam__content__item .help .help__title {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 35px;
  letter-spacing: 4px;
}
.wam__default .wam__content .wam__content__item .help .help__list {
  display: flex;
  flex-direction: column;
}
.wam__default .wam__content .wam__content__item .help .help__list a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Roboto", sans-serif;
  font-size: 19px;
  font-weight: 300;
  color: #0C1E40;
  text-decoration: none;
  width: fit-content;
}
.wam__default .wam__content .wam__content__item .help .help__list a:not(:last-child) {
  margin-bottom: 0.5rem;
}
.wam__default .wam__content .wam__content__item .help .help__list a:hover {
  font-weight: 400;
}
.wam__default .wam__content .wam__content__item .help .help__list a .icon {
  font-size: 3rem;
  color: #0C1E40;
}
.wam__default .wam__content .wam__content__item .secure {
  width: 70%;
  margin: auto;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-top: 1px #000000 solid;
}
@media screen and (max-width: 699.98px) {
  .wam__default .wam__content .wam__content__item .secure {
    padding-top: 0;
    width: 100%;
    border: none;
  }
}
.wam__default .wam__content .wam__content__item .secure .secure__title {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 42px;
  letter-spacing: 4px;
}
@media screen and (max-width: 699.98px) {
  .wam__default .wam__content .wam__content__item .secure .secure__title {
    font-size: 36px;
  }
}
.wam__default .wam__content .wam__content__item .secure p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
}
.wam__default .wam__content .wam__content__item .secure a {
  font-family: "Roboto", sans-serif;
  padding: 1rem 2rem;
  color: #FFFFFF;
  background: #0C1E40;
  width: fit-content;
  font-size: 20PX;
  text-decoration: none;
}
.wam__default .wam__content .wam__content__item .secure .illustration {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25vw;
  max-width: 22rem;
}
@media screen and (max-width: 999.98px) {
  .wam__default .wam__content .wam__content__item .secure .illustration {
    display: none;
  }
}
.wam__default .wam__content .wam__content__item .secure .illustration img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.wam__default .wam__content .wam__content__item .secure .illustration.international {
  bottom: 2rem;
  right: 2rem;
}
@media screen and (max-width: 1349.98px) {
  .wam__default .wam__content .wam__content__item .secure .illustration.international {
    max-height: 15rem;
    left: 10rem !important;
    bottom: 14rem !important;
    right: unset !important;
  }
}

.wam__societe .wam__content {
  position: relative;
}
.wam__societe .wam__content .background {
  height: 96%;
  width: 80%;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #ECECFC;
  z-index: -1;
}
.wam__societe .wam__content .wam__content__item {
  position: relative;
  width: 100%;
  padding: 0 10%;
  margin: auto;
}
.wam__societe .wam__content .wam__content__item .row {
  display: flex;
  padding-bottom: 4rem;
}
.wam__societe .wam__content .wam__content__item .row .col__small {
  height: 100%;
  width: 35%;
  min-width: 30rem;
  padding: 2rem 4%;
}
.wam__societe .wam__content .wam__content__item .row .col__small p {
  font-family: "Assistant", sans-serif;
  font-size: 45px;
  font-weight: 300;
  line-height: 62px;
}
.wam__societe .wam__content .wam__content__item .row .col__big {
  height: 100%;
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  justify-content: center;
}
.wam__societe .wam__content .wam__content__item .row .col__big .text {
  padding: 4rem;
}
@media screen and (max-width: 1349.98px) {
  .wam__societe .wam__content .wam__content__item .row .col__big .text {
    padding: 1rem;
  }
}
.wam__societe .wam__content .wam__content__item .row .col__big .text p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 23px;
  line-height: 2.4rem;
}
@media screen and (max-width: 1349.98px) {
  .wam__societe .wam__content .wam__content__item .row .col__big .text p {
    font-size: 20px;
  }
}
.wam__societe .wam__content .wam__content__item .row .col__big .skills {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 1rem;
}
@media screen and (max-width: 1349.98px) {
  .wam__societe .wam__content .wam__content__item .row .col__big .skills {
    padding: 2rem 4rem;
  }
}
.wam__societe .wam__content .wam__content__item .row .col__big .skills .skills__title {
  position: relative;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 31px;
}
.wam__societe .wam__content .wam__content__item .row .col__big .skills .skills__title::before {
  position: absolute;
  top: -0.3rem;
  left: -2.5rem;
  display: block;
  content: "";
  width: 1.7rem;
  height: 2.5rem;
  background-image: url("./assets/img/pictograms/HarcheOr.png");
  background-size: cover;
  background-repeat: no-repeat;
}
.wam__societe .wam__content .wam__content__item .row .col__big .skills .skills__list li {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 22px;
}
.wam__societe .wam__content .wam__content__item .row .col__big .skills .skills__list li:not(:last-child) {
  margin-bottom: 0.4rem;
}

.wam__contact .wam__body .wam__contact__infos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: auto;
}
.wam__contact .wam__body .wam__contact__infos .infos__inner {
  position: relative;
  display: flex;
  gap: 5%;
  width: 100%;
  max-width: 80rem;
  margin: auto;
  display: flex;
  padding: 2rem 0;
}
@media screen and (max-width: 999.98px) {
  .wam__contact .wam__body .wam__contact__infos .infos__inner {
    flex-direction: column;
  }
}
.wam__contact .wam__body .wam__contact__infos .infos__inner .content {
  width: 40%;
  height: 100%;
  text-align: left;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 999.98px) {
  .wam__contact .wam__body .wam__contact__infos .infos__inner .content {
    width: 100%;
  }
}
.wam__contact .wam__body .wam__contact__infos .infos__inner .content .address p {
  font-family: "Roboto", sans-serif;
  line-height: 2rem;
  font-size: 25px;
  font-weight: 300;
}
.wam__contact .wam__body .wam__contact__infos .infos__inner .content .location {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  color: #000000;
  text-underline-offset: 5px;
  gap: 1rem;
}
.wam__contact .wam__body .wam__contact__infos .infos__inner .content .location:hover {
  text-decoration: underline;
}
.wam__contact .wam__body .wam__contact__infos .infos__inner .content .location .icon__container {
  background: #F15A24;
  padding: 5px;
  border-radius: 100%;
}
.wam__contact .wam__body .wam__contact__infos .infos__inner .content .location .icon__container .icon {
  color: #FFFFFF;
}
.wam__contact .wam__body .wam__contact__infos .infos__inner .content .contact {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.wam__contact .wam__body .wam__contact__infos .infos__inner .content .contact a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  color: #000000;
  font-size: 25px;
  font-weight: 300;
}
.wam__contact .wam__body .wam__contact__infos .infos__inner .media {
  width: 60%;
}
@media screen and (max-width: 999.98px) {
  .wam__contact .wam__body .wam__contact__infos .infos__inner .media {
    width: 100%;
  }
}
.wam__contact .wam__body .wam__contact__infos .infos__inner .media .image {
  position: relative;
  height: 262px;
}
.wam__contact .wam__body .wam__contact__infos .infos__inner .media .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.wam__contact .wam__body .wam__access {
  width: 80%;
  margin: auto;
}
.wam__contact .wam__body .wam__access .wam__access__title {
  height: auto;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: start;
}
@media screen and (max-width: 999.98px) {
  .wam__contact .wam__body .wam__access .wam__access__title {
    padding: 0 0 2rem 0;
  }
}
.wam__contact .wam__body .wam__access .wam__access__title h2 {
  font-family: "Cormorant", sans-serif;
  font-weight: 600;
  font-size: 56px;
  letter-spacing: 1.8px;
  margin-left: 1rem;
}
.wam__contact .wam__body .wam__access .wam__access__list {
  display: flex;
  margin-bottom: 2rem;
}
@media screen and (max-width: 999.98px) {
  .wam__contact .wam__body .wam__access .wam__access__list {
    flex-direction: column;
  }
}
.wam__contact .wam__body .wam__access .wam__access__list.items-2 .wam__access__list__item {
  width: 50%;
}
@media screen and (max-width: 999.98px) {
  .wam__contact .wam__body .wam__access .wam__access__list.items-2 .wam__access__list__item {
    width: 100%;
  }
}
.wam__contact .wam__body .wam__access .wam__access__list.items-3 .wam__access__list__item {
  width: 33.33%;
}
@media screen and (max-width: 999.98px) {
  .wam__contact .wam__body .wam__access .wam__access__list.items-3 .wam__access__list__item {
    width: 100%;
  }
}
.wam__contact .wam__body .wam__access .wam__access__list.items-4 .wam__access__list__item {
  width: 25%;
}
@media screen and (max-width: 999.98px) {
  .wam__contact .wam__body .wam__access .wam__access__list.items-4 .wam__access__list__item {
    width: 100%;
  }
}
.wam__contact .wam__body .wam__access .wam__access__list .wam__access__list__item {
  padding: 1rem;
}
@media screen and (max-width: 999.98px) {
  .wam__contact .wam__body .wam__access .wam__access__list .wam__access__list__item {
    width: 100%;
  }
}
.wam__contact .wam__body .wam__access .wam__access__list .wam__access__list__item .item__title {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.wam__contact .wam__body .wam__access .wam__access__list .wam__access__list__item .item__content {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 18px;
}
.wam__contact .wam__body .wam__access .wam__access__list .wam__access__list__item .item__content ul {
  padding-left: 15px;
}
.wam__contact .wam__body .wam__access .wam__access__list .wam__access__list__item .item__content ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
.wam__contact .wam__body .wam__access hr {
  border: none;
  margin: 2rem auto;
  transform: translateX(-5%);
  width: 110%;
  height: 1px;
  background: #707070;
}
.wam__contact .wam__body .wam__map #map {
  width: 100%;
  height: 400px;
  min-height: 300px;
}
.wam__contact .wam__body .wam__contactform {
  width: 80%;
  margin: auto auto 4rem auto;
}
.wam__contact .wam__body .wam__contactform .wam__contactform__title {
  height: auto;
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: start;
}
@media screen and (max-width: 999.98px) {
  .wam__contact .wam__body .wam__contactform .wam__contactform__title {
    padding: 2rem 0 0 0;
  }
}
.wam__contact .wam__body .wam__contactform .wam__contactform__title h3 {
  font-family: "Cormorant", sans-serif;
  font-weight: 600;
  font-size: 56px;
  letter-spacing: 1.8px;
  margin-left: 1rem;
}
.wam__contact .wam__body .wam__contactform .form__container {
  width: 80%;
  margin: auto;
  font-family: "Nexa";
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 999.98px) {
  .wam__contact .wam__body .wam__contactform .form__container {
    width: 100%;
  }
}
.wam__contact .wam__body .wam__contactform .form__container input {
  border: none;
  border-radius: 0;
  background: #EAEAEA;
  min-height: 5rem;
}
.wam__contact .wam__body .wam__contactform .form__container textarea {
  border: none;
  border-radius: 0;
  background: #EAEAEA;
}
.wam__contact .wam__body .wam__contactform .form__container .wpforms-submit {
  background: #707070;
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 300;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  background: #EAEAEA;
  color: #000000;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: none;
}
.wam__contact .wam__body .wam__contactform .form__container .wpforms-submit:hover {
  background-color: #0C1E40;
  color: #FFFFFF;
}
.wam__contact .wam__body .wam__contactform .form__container .mandatory {
  margin: auto;
  width: fit-content;
  font-size: 14px;
  color: #707070;
}

.wam__team .team {
  position: relative;
  z-index: 1;
  width: 90%;
  margin: auto;
  scroll-margin-top: 250px;
  padding: 2rem 5% !important;
  padding-top: 0 !important;
}
.wam__team .team.last {
  margin-bottom: 10rem;
}
.wam__team .team .team__title {
  height: auto;
  padding: 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: start;
}
@media screen and (max-width: 999.98px) {
  .wam__team .team .team__title {
    padding-top: 0 !important;
  }
}
.wam__team .team .team__title h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 31px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-left: 1rem;
}
.wam__team .team .team__title h2::before {
  top: 0rem !important;
}
.wam__team .team .team__list {
  position: relative;
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  justify-content: start;
  padding: 0;
  z-index: 3;
}
@media screen and (max-width: 999.98px) {
  .wam__team .team .team__list {
    gap: 1rem;
  }
}
.wam__team .team .team__list p {
  font-family: "Roboto", sans-serif;
}

.wam__actu .wam__intro {
  margin-bottom: -10rem;
}
@media screen and (max-width: 699.98px) {
  .wam__actu .wam__intro {
    margin-bottom: -5rem;
  }
}
.wam__actu .wam__body {
  position: relative;
}
.wam__actu .wam__body .wam__content {
  position: relative;
  width: 100%;
  padding: 0 10%;
  margin: auto;
}
.wam__actu .wam__body .wam__content .background {
  height: 66%;
  width: 80%;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #ECECFC;
  z-index: -1;
}
.wam__actu .wam__body .wam__content .list {
  width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
  padding-top: 12rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 699.98px) {
  .wam__actu .wam__body .wam__content .list {
    padding-top: 4rem;
  }
}
.wam__actu .wam__body .wam__content .list.empty {
  min-height: 30rem;
}
.wam__actu .wam__body .wam__content .list .no-post {
  font-family: "Roboto", sans-serif;
  font-size: clamp(20px, 2.5vw, 24px);
  line-height: clamp(1.8rem, 2.5vw, 2rem);
  text-align: center;
  color: #0C1E40;
  padding: 1rem;
  margin: 2rem 0;
}
.wam__actu .wam__body .wam__content .list .list__item {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 48%;
  max-width: 33rem;
  height: auto;
  font-family: "Kanit";
  margin-bottom: 1.5rem;
  background: #FFFFFF;
}
@media screen and (max-width: 999.98px) {
  .wam__actu .wam__body .wam__content .list .list__item {
    width: 100%;
  }
}
.wam__actu .wam__body .wam__content .list .list__item .head {
  font-family: "Roboto", sans-serif;
  background: #0C1E40;
  color: #FFFFFF;
  padding: 1rem;
}
.wam__actu .wam__body .wam__content .list .list__item .image {
  height: 12vw;
  max-height: 15rem;
  min-height: 10rem;
}
.wam__actu .wam__body .wam__content .list .list__item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.wam__actu .wam__body .wam__content .list .list__item .line {
  position: absolute;
  width: 4px;
  height: 3rem;
  background: #B39973;
  top: 2rem;
  right: 2rem;
}
.wam__actu .wam__body .wam__content .list .list__item .content {
  font-family: "Roboto", sans-serif;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wam__actu .wam__body .wam__content .list .list__item .content .title {
  margin-bottom: 8px;
  font-size: clamp(18px, 2vw, 19px);
  line-height: 2rem;
  font-weight: 600;
}
.wam__actu .wam__body .wam__content .list .list__item .content .excerpt {
  font-size: clamp(18px, 2vw, 19px);
  line-height: 2rem;
  font-weight: 300;
}
.wam__actu .wam__body .wam__content .list .list__item .content a {
  position: relative;
  display: flex;
  font-family: "Roboto", sans-serif;
  font-size: clamp(18px, 2vw, 19px);
  font-weight: 400;
  text-decoration: none;
  margin-top: 0.8rem;
  color: #B39973;
  width: fit-content;
  margin-bottom: 1rem;
}
.wam__actu .wam__body .wam__content .list .list__item .content a:hover::after {
  transform: scaleX(1);
}
.wam__actu .wam__body .wam__content .list .list__item .content a::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #B39973;
  transform-origin: left;
  transform: scaleX(0.2);
  transition: transform 0.3s ease;
}

.wam__single {
  position: relative;
  display: flex;
  justify-content: center;
}
.wam__single .wam__close {
  top: 12rem;
  height: fit-content;
}
.wam__single__post {
  width: 60%;
  max-width: 48rem;
  margin: 15rem auto;
  background: #FFFFFF;
}
@media screen and (max-width: 999.98px) {
  .wam__single__post {
    width: 80%;
    margin: 10rem auto;
  }
}
@media screen and (max-width: 699.98px) {
  .wam__single__post {
    width: 90%;
  }
}
.wam__single__post .head {
  font-family: "Roboto", sans-serif;
  padding: 2rem 0 0 0;
}
.wam__single__post .head .inner {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
  margin: auto;
}
.wam__single__post .head .inner .title {
  position: relative;
  color: #000000;
  font-size: clamp(20px, 2.5vw, 22px);
  font-weight: 600;
}
.wam__single__post .head .inner .title::before {
  opacity: 1;
  position: absolute;
  top: -0.3rem;
  left: -2.5rem;
  display: block;
  content: "";
  width: 1.4rem;
  height: 2rem;
  background-image: url("./assets/img/pictograms/HarcheOr.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 999.98px) {
  .wam__single__post .head .inner .title::before {
    top: -3rem;
    left: 0;
  }
}
.wam__single__post .head .inner .date {
  color: #000000;
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 300;
  min-width: 9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.wam__single__post .body {
  font-family: "Roboto", sans-serif;
}
.wam__single__post .body .inner .main__image {
  margin-bottom: 2rem;
}
.wam__single__post .body .inner div {
  font-family: "Roboto", sans-serif;
  font-size: clamp(18px, 2vw, 19px);
  font-weight: 300;
  line-height: 2rem;
}
.wam__single__post .body .inner p {
  font-family: "Roboto", sans-serif;
  font-size: clamp(18px, 2vw, 19px);
  font-weight: 300;
  line-height: 2rem;
}
.wam__single__post .body .inner ul {
  margin: 1rem 0;
  padding-left: 15px;
  line-height: 2rem;
}
.wam__single__post .body .inner ul li {
  font-size: clamp(18px, 2vw, 19px);
  font-weight: 300;
}
.wam__single__post .body .inner ul li:not(:last-child) {
  margin-bottom: 1rem;
}
.wam__single__post .body .inner img {
  margin: 1rem 0;
}
.wam__single__post .navigation {
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  margin: 2.5rem auto;
}
@media screen and (max-width: 999.98px) {
  .wam__single__post .navigation {
    width: 80%;
    max-width: unset;
  }
}
.wam__single__post .navigation .button {
  position: relative;
  display: flex;
  align-items: center;
  width: fit-content;
}
.wam__single__post .navigation .button.prev::after {
  transform-origin: right;
}
.wam__single__post .navigation .button:hover::after {
  transform: scaleX(1);
}
.wam__single__post .navigation .button::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #B39973;
  transform-origin: left;
  transform: scaleX(0.2);
  transition: transform 0.3s ease;
}
.wam__single__post .navigation .button a {
  font-family: "Roboto", sans-serif;
  font-weight: 250;
  text-decoration: none;
  color: #B39973;
}
.wam__single__post .navigation .button .icon {
  color: #B39973;
}

.wam__payment {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.wam__payment #div_form_id.form form {
  margin: 10rem 0 !important;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 40rem;
  margin: auto;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 999.98px) {
  .wam__payment #div_form_id.form form {
    width: 100%;
  }
}
.wam__payment #div_form_id.form form .input-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 699.98px) {
  .wam__payment #div_form_id.form form .input-group {
    grid-template-columns: 1fr;
  }
}
.wam__payment #div_form_id.form form label {
  display: block;
  font-weight: 400;
  margin-bottom: 0.3rem;
}
.wam__payment #div_form_id.form form input,
.wam__payment #div_form_id.form form textarea {
  border: none;
  border-radius: 0;
  background: #EAEAEA;
  min-height: 5rem;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  box-sizing: border-box;
}
.wam__payment #div_form_id.form form input[type=radio] {
  width: 15px;
}
.wam__payment #div_form_id.form form .radio-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
.wam__payment #div_form_id.form form .radio-group label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 300;
  flex: 1;
  min-width: 120px;
}
.wam__payment #div_form_id.form form .radio-group label input {
  width: 18px;
  height: 18px;
}
.wam__payment #div_form_id.form form button {
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 300;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  background: #EAEAEA;
  color: #000000;
  border: none;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: none;
  width: fit-content;
}
.wam__payment #div_form_id.form form button:hover {
  background: #0C1E40;
  color: #FFFFFF;
}