body {
  background-color: white;
}

.en {
  display: none;
}

.de {
  display: none;
}

.fr {
  display: none;
}

html[lang=fr] .fr {
  display: inherit;
}

html[lang=en] .en {
  display: inherit;
}

html[lang=de] .de {
  display: inherit;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a:visited {
  color: black;
}

.marged-block {
  display: grid;
  gap: 30px;
  margin-top: 30px;
  margin-right: 30px;
  margin-left: 30px;
  margin-bottom: 90px;
}
@media (max-width: 549px) {
  .marged-block {
    margin-bottom: 30px;
  }
}
@media (max-width: 549px) {
  .marged-block {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 550px) and (max-width: 1099px) {
  .marged-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 700px;
  }
  .marged-block .title {
    grid-column: 1/-1;
    margin-top: 45px;
  }
}
@media (min-width: 1100px) and (max-width: 1374px) {
  .marged-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    max-width: 1400px;
  }
}
@media (min-width: 1375px) {
  .marged-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    max-width: 1750px;
  }
}
@media (min-width: 1650px) {
  .marged-block {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    max-width: 2100px;
  }
}
.marged-block .grid {
  display: none;
}
@media (max-width: 549px) {
  .marged-block .grid.c1 {
    display: block;
  }
}
@media (min-width: 550px) and (max-width: 1099px) {
  .marged-block .grid.c2 {
    display: block;
  }
}
@media (min-width: 1100px) and (max-width: 1374px) {
  .marged-block .grid.c3 {
    display: block;
  }
}
@media (min-width: 1375px) and (max-width: 1649px) {
  .marged-block .grid.c4 {
    display: block;
  }
}
@media (min-width: 1650px) {
  .marged-block .grid.c5 {
    display: block;
  }
}

.article {
  margin-bottom: 30px;
  font-size: 19px;
  line-height: 20.9px;
  /*
  @media (max-width: 1024px) {
    font-size: $fs * 0.8 * 1.1;
    line-height: $fs * 1.1 * 0.8;
  }

   */
}
@media (max-width: 549px) {
  .article {
    margin-bottom: 30px;
  }
  .article:last-child {
    margin-bottom: 0;
  }
}
.article span.nom-mobile {
  display: none;
}
@media (max-width: 549px) {
  .article span.nom-mobile {
    display: inline;
  }
}

body {
  font-size: 19px;
  line-height: 20.9px;
}
@media (max-width: 550px) {
  body {
    margin-right: 0;
  }
}

a {
  color: black;
  text-decoration: none;
}
a:focus, a:visited {
  color: black;
}

header {
  margin-top: 30px;
  margin-left: 30px;
  margin-bottom: 180px;
}
header .logo {
  display: grid;
}
@media (max-width: 679px) {
  header .logo {
    grid-template-columns: repeat(4, 1fr);
    width: 75vw;
  }
}
@media (min-width: 410px) and (max-width: 1099px) {
  header .logo {
    gap: 30px;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1100px) {
  header .logo {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
  }
}
@media (min-width: 1375px) {
  header .logo {
    grid-template-columns: repeat(5, 1fr);
    max-width: 1750px;
  }
}
@media (min-width: 1375px) {
  header .logo {
    grid-template-columns: repeat(6, 1fr);
    max-width: 2100px;
  }
}
@media (max-width: 1100px) {
  header {
    margin-bottom: 45px;
  }
}
header a.menu-link {
  position: absolute;
  display: none;
  width: 30px;
  height: 30px;
  top: 26px;
  right: 30px;
  background-image: url("/img/menu.svg");
  background-size: 30px 30px;
  background-position: center center;
  background-repeat: no-repeat;
}

@media (max-width: 1099px) {
  .menu {
    display: none;
  }
  header a.menu-link {
    display: block;
  }
}
div.mobile-menu {
  height: 0;
  display: block;
  overflow: hidden;
  margin-left: 30px;
  margin-right: 30px;
  transition: height 0.3s ease-in-out;
}
@media (min-width: 1099px) {
  div.mobile-menu {
    display: none;
  }
}
div.mobile-menu a {
  display: block;
}

.welcome .menu a {
  display: block;
}
.welcome .menu img {
  margin-bottom: 5px;
}
.welcome .image img {
  display: block;
  max-height: max(650px, 90vh);
  max-width: 100%;
  margin-bottom: 45px;
}
@media (max-width: 1374px) {
  .welcome .image img {
    margin-bottom: 0;
  }
}
@media (max-width: 549px) {
  .welcome .image img {
    margin-left: -30px;
    margin-right: -30px;
    width: calc(100% + 90px);
    max-width: inherit;
  }
}
@media (max-width: 1374px) {
  .welcome .image {
    grid-column: 1/-1;
  }
}
.welcome .pres-text p {
  hyphens: auto;
  font-size: 28px;
  line-height: 30.8px;
  max-width: 1540px;
  padding-right: 60px;
}
@media (max-width: 430px) {
  .welcome .pres-text p {
    font-size: 19px;
    line-height: 20.9px;
  }
}
@media (max-width: 549px) {
  .welcome .pres-text p {
    padding-right: 0;
  }
}
@media (max-width: 1374px) {
  .welcome .pres-text {
    grid-column: span 2;
  }
}
@media (min-width: 1100px) {
  .welcome {
    grid-template-areas: "title image image image" "title txt txt txt";
  }
  .welcome .title {
    grid-area: title;
  }
  .welcome .pres-text {
    grid-area: txt;
  }
  .welcome .image {
    grid-area: image;
  }
}
@media (min-width: 1375px) {
  .welcome {
    grid-template-areas: "title image image image image" "title txt txt txt txt";
  }
}
@media (min-width: 1650px) {
  .welcome {
    grid-template-areas: "title txt txt image image image";
  }
}

.marged-block.prestations .label {
  hyphens: auto;
  font-size: 28px;
  line-height: 30.8px;
}
@media (max-width: 430px) {
  .marged-block.prestations .label {
    font-size: 19px;
    line-height: 20.9px;
  }
}
@media (max-width: 1099px) {
  .marged-block.prestations .david {
    display: none;
  }
}
@media (max-width: 1374px) {
  .marged-block.prestations .goliath {
    grid-column: span 2;
  }
}
@media (min-width: 1375px) {
  .marged-block.prestations .goliath {
    grid-column: span 3;
  }
}
@media (min-width: 1650px) {
  .marged-block.prestations .goliath {
    grid-column: span 4;
  }
}
.marged-block.prestations .goliath .line {
  font-size: 19px;
  line-height: 20.9px;
  /*
  @media (max-width: 1024px) {
    font-size: $fs * 0.8 * 1.1;
    line-height: $fs * 1.1 * 0.8;
  }

   */
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid black;
}
.marged-block.prestations .goliath .line:last-child {
  border-bottom: 1px solid black;
}

.marged-block.avocats .article {
  margin-bottom: 60px;
}
@media (max-width: 549px) {
  .marged-block.avocats .article {
    margin-bottom: 30px;
  }
}
.marged-block.avocats .article .name {
  display: none;
}
@media (max-width: 549px) {
  .marged-block.avocats .article .name {
    display: inline;
  }
}
.marged-block.avocats .article .portrait {
  display: block;
  width: 80%;
  height: 300px;
  background-color: #ccc;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-bottom: 22.5px;
}
@media (max-width: 549px) {
  .marged-block.avocats .article .portrait {
    display: block;
  }
}
.marged-block.avocats .article p {
  margin-bottom: 22.5px;
}
.marged-block.avocats .article p.presentation {
  hyphens: auto;
}
@media (max-width: 549px) {
  .marged-block.avocats .article p.presentation {
    display: none;
  }
}
@media (max-width: 549px) {
  .marged-block.avocats .article {
    padding-top: 22.5px;
  }
}

.contacts .article {
  font-size: 19px;
  line-height: 20.9px;
  /*
  @media (max-width: 1024px) {
    font-size: $fs * 0.8 * 1.1;
    line-height: $fs * 1.1 * 0.8;
  }

   */
}

.marged-block.dpd-link {
  margin-bottom: 30px;
}
@media (max-width: 1099px) {
  .marged-block.dpd-link .effective-link {
    grid-column: 1/-1;
  }
}
@media (min-width: 1100px) {
  .marged-block.dpd-link .effective-link {
    grid-column: 2/-1;
  }
}

.marged-block.dpd.inactive {
  display: none;
}
.marged-block.dpd ol {
  grid-column: 2/-1;
  font-size: 16px;
  line-height: 17.6px;
  counter-reset: list-counter;
  list-style-type: none;
  padding-left: 60px;
}
@media (max-width: 1099px) {
  .marged-block.dpd ol {
    grid-column: 1/-1;
  }
}
.marged-block.dpd ol li {
  position: relative;
  margin-bottom: 10px;
  max-width: 750px;
}
.marged-block.dpd ol li::before {
  content: counter(list-counter) ".";
  counter-increment: list-counter;
  position: absolute;
  left: -60px;
  width: 50px;
  text-align: left;
}

/*# sourceMappingURL=2024.css.map */
