:root {
  --black: #212426;
  --white-smoke: #f0f0f0;
  --sky-blue: #64a2ec;
  --white-smoke-80: #f0f0f0cc;
}

body {
  background-color: var(--black);
  color: var(--white-smoke);
  font-family: IBM Plex Sans, sans-serif;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1;
}

h1 {
  letter-spacing: -.06em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 7.6em;
  font-weight: 500;
  line-height: 1;
  position: relative;
}

h2 {
  letter-spacing: -.05em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 6.8em;
  font-weight: 400;
  line-height: .9;
  position: relative;
}

h3 {
  letter-spacing: -.035em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 6em;
  font-weight: 400;
  line-height: 1;
  position: relative;
}

h4 {
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 4.5em;
  font-weight: 400;
  line-height: 1;
}

h5 {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 3em;
  font-weight: 400;
  line-height: 1;
}

h6 {
  letter-spacing: -.015em;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Syne, sans-serif;
  font-size: 2.2em;
  font-weight: 400;
  line-height: 1;
}

p {
  margin-bottom: 0;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 1.25em;
  font-weight: 300;
  line-height: 1.5;
}

a {
  color: var(--white-smoke);
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5;
  text-decoration: underline;
}

ul {
  margin-top: 0;
  margin-bottom: 1em;
  padding-left: 2em;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 2em;
}

li {
  font-family: IBM Plex Sans, sans-serif;
  font-size: 1.2em;
  font-weight: 300;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: inline-block;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 1em;
  padding: 1em 1.5em;
  font-size: 1.6em;
  line-height: 1.2;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.bg-white {
  background-color: var(--white-smoke);
}

.bg-blue {
  background-color: var(--sky-blue);
}

.heading-xl {
  letter-spacing: -.06em;
  text-transform: uppercase;
  font-family: Syne, sans-serif;
  font-size: 7em;
  font-weight: 500;
  position: relative;
}

.heading-xl.text-color-black {
  font-size: 2.5em;
  text-decoration: none;
}

.flex-split {
  background-color: #091521;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.intro-parent {
  z-index: 0;
  background-color: var(--white-smoke);
  perspective-origin: 50% 0;
  transform-origin: 50% 0;
  width: 100vw;
  height: 100vh;
  display: none;
  position: absolute;
}

.heading-xxsmall {
  letter-spacing: -.015em;
  font-family: Syne, sans-serif;
  font-size: 2.2em;
}

.text-align-right {
  text-align: right;
}

.text-align-right.text-style-caps.text-color-white80 {
  color: #c9a862;
  -webkit-text-fill-color: inherit;
  -webkit-text-fill-color: inherit;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  padding-right: 40px;
  font-size: 2em;
}

.text-style-caps {
  text-transform: uppercase;
}

.text-color-white80 {
  color: #fff;
  font-size: 1.75em;
}

.text-color-black {
  color: var(--black);
  font-size: 5em;
}

.text-color-black80 {
  color: #212426cc;
}

.text-color-black80.margin-top-xsmall {
  position: static;
}

.container-xlarge {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.padding-small {
  padding: 2em;
}

.div-hide {
  overflow: hidden;
}

.z-index2 {
  z-index: 2;
  position: relative;
}

.nav {
  z-index: 5;
  border-bottom: 1px solid var(--white-smoke);
  background-color: #091521;
  align-items: center;
  width: 100%;
  height: 5em;
  display: flex;
  position: fixed;
}

.nav-logo-container {
  width: 7em;
  transition: opacity .25s;
}

.nav-logo-container:hover {
  opacity: .8;
}

.nav-items-container {
  justify-content: space-between;
  align-items: center;
  width: 40em;
  display: flex;
}

.nav-item {
  color: var(--white-smoke-80);
  padding: .6em 1em .4em;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 1em;
  font-weight: 300;
  text-decoration: none;
  transition: color .3s;
  display: block;
}

.nav-item:hover, .nav-item.w--current {
  color: var(--white-smoke);
}

.nav-item.footer {
  padding-left: 0;
}

.nav-dropdown {
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
}

.dropdown-toggle {
  align-items: center;
  padding: 0;
  display: flex;
}

.icon-1x1 {
  width: 1em;
  height: 1em;
}

.dropdown-list {
  color: var(--black);
}

.dropdown-list.w--open {
  background-color: var(--black);
  flex-direction: column;
  width: 18em;
  display: flex;
}

.dropdown-list.padding-small {
  width: 20em;
  box-shadow: 0 20px 48px #0000005c;
}

.dropdown-text-link {
  color: var(--white-smoke-80);
  font-family: IBM Plex Sans, sans-serif;
  font-weight: 300;
}

.wrapper-dropdown-item {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
  text-decoration: none;
  display: flex;
}

.dropdown-content {
  flex-direction: column;
  display: flex;
}

.dropdown-link-number {
  color: var(--white-smoke-80);
  margin-bottom: .5em;
  font-family: IBM Plex Sans, sans-serif;
  font-size: .8em;
  font-weight: 300;
}

.no-margin {
  margin: 0;
}

.margin-left-small {
  margin-left: 2em;
}

.margin-bottom-xsmall {
  margin-bottom: 1em;
}

.margin-bottom-small {
  margin-bottom: 2em;
}

.margin-bottom-medium {
  margin-bottom: 3em;
}

.margin-bottom-large {
  margin-bottom: 4em;
}

.margin-top-xxsmall {
  margin-top: .5em;
}

.margin-top-xsmall {
  margin-top: 1em;
}

.margin-top-medium {
  margin-top: 3em;
}

.padding-right-xxsmall {
  padding-right: .5em;
}

.section-hero {
  -webkit-text-fill-color: inherit;
  background-clip: padding-box;
  width: 100%;
  height: auto;
  min-height: 80vh;
  margin-bottom: 0;
  padding-top: 8em;
  position: relative;
}

.button-oval-icon-xlarge {
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 8em;
  height: 8em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.icon-2 {
  width: 2em;
}

.div-absolute {
  position: absolute;
  inset: 0%;
}

.div-relative {
  position: relative;
}

.wrapper-img-hero {
  opacity: .45;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.wrapper-img-hero.img-right {
  justify-content: flex-end;
  padding-right: 6em;
}

.mask-img-hero {
  background-color: #e0e0e0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 24em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.mask-img-hero.expertises {
  background-color: #313233;
}

.img-hero {
  filter: grayscale();
  object-fit: scale-down;
  flex: none;
}

.section-who-we-are {
  margin-bottom: 12em;
}

.col-who-we-are-1 {
  padding-left: 0;
  padding-right: 2em;
}

.col-who-we-are-2 {
  margin-top: 8em;
  padding-left: 2em;
  padding-right: 0;
}

.line {
  background-color: var(--white-smoke);
  transform-origin: 0%;
  height: 1px;
}

.grid-wrapper-who-we-are {
  grid-template-areas: ".";
}

.section-expertises {
  margin-bottom: 20em;
}

.expertise-item {
  background-color: var(--white-smoke);
  padding: 6em;
  position: relative;
}

.text-style-button {
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-family: Syne, sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: none;
}

.text-button {
  align-items: center;
  font-size: 1.25em;
  text-decoration: none;
  display: flex;
}

.text-button-icon {
  width: auto;
  height: 1.2em;
  margin-left: .5em;
}

.wrapper-button-text {
  position: relative;
  overflow: hidden;
}

.text-style-button-absolute {
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-family: Syne, sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: none;
  position: absolute;
  inset: 0%;
}

.wrapper-button-expertise-item {
  margin-top: 5em;
  display: flex;
}

.expertise-number {
  color: #21242614;
  text-align: right;
  letter-spacing: -.05em;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 7.4em;
  font-weight: 400;
  position: absolute;
  inset: auto 6vw 5vw auto;
}

.grid-wrapper-expertises {
  grid-column-gap: 3em;
  grid-row-gap: 0em;
}

.section-team {
  margin-bottom: 20em;
}

.chip {
  border-radius: 20px;
  width: .25em;
  height: .25em;
  margin-left: .5em;
  margin-right: .5em;
}

.section-blog {
  margin-bottom: 15em;
}

.slide-item {
  width: 32em;
  max-width: 32em;
  height: auto;
  margin-right: 2.6em;
  overflow: hidden;
}

.slider-blog-post-item {
  border: 2px solid var(--white-smoke);
  background-color: var(--black);
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  min-height: 30em;
  padding: 2.5em;
  text-decoration: none;
  display: flex;
  position: relative;
}

.collection-item {
  flex-direction: row;
  height: 100%;
}

.title-blog-post {
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-family: Syne, sans-serif;
  font-size: 2.2em;
  font-weight: 400;
  line-height: 1;
}

.slide-nav {
  display: none;
}

.slider-blog-posts {
  background-color: #0000;
  height: 100%;
  margin-bottom: 3em;
}

.left-arrow {
  justify-content: center;
  align-items: center;
  width: 1.4em;
  height: 1.4em;
  display: flex;
  inset: -2em 8.6vw auto auto;
}

.right-arrow {
  justify-content: center;
  align-items: center;
  width: 1.4em;
  height: 1.4em;
  display: flex;
  inset: -2em 5vw auto auto;
}

.wrapper-blog-posts {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 7em;
  padding-left: 5em;
  overflow: hidden;
}

.slider-mask-blog-posts {
  width: 33em;
  overflow: visible;
}

.section-contact {
  background-color: var(--white-smoke);
  margin-top: -78px;
  margin-bottom: 7.5em;
}

.footer-logo {
  width: 8em;
}

.grid-footer-city-infos {
  grid-column-gap: 3em;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 2em;
  display: grid;
}

.grid-footer-links {
  grid-column-gap: 2.4em;
  grid-row-gap: 2.4em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 2em;
}

.section-footer {
  background-color: #091521;
  padding-bottom: 5em;
}

.text-button-wrapper {
  display: flex;
}

.expertise-item-margin-top {
  margin-top: 3em;
}

.burger-menu.z-index2, .mobile-nav-items-container {
  display: none;
}

.heading {
  font-size: 9.75em;
}

.cols-story-step {
  position: relative;
}

.rich-text-default h5 {
  margin-top: 20px;
  margin-bottom: 16px;
  margin-right: 40px;
}

.rich-text-default p {
  color: #f0f0f0cc;
  margin-bottom: 16px;
  margin-right: 40px;
  font-family: Merriweather, serif;
}

.rich-text-default h1 {
  margin-top: 32px;
  margin-bottom: 24px;
}

.rich-text-default h2 {
  margin-top: 24px;
  margin-bottom: 20px;
  font-size: 5em;
}

.rich-text-default h3 {
  margin-top: 20px;
  margin-bottom: 16px;
}

.rich-text-default h4 {
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 3em;
}

.rich-text-default h6 {
  margin-top: 12px;
  margin-bottom: 8px;
}

.rich-text-default figcaption {
  color: #f0f0f0cc;
  margin-top: 6px;
  margin-bottom: 24px;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 1em;
  font-weight: 300;
}

.col-content-story-step {
  padding-left: 0;
  padding-right: 0;
}

.col-title-story-step {
  padding-left: 0;
  padding-right: 4em;
  position: sticky;
  top: 8em;
}

.text-story-step-year {
  color: #f0f0f07a;
  letter-spacing: -.11em;
  margin-left: 60px;
  font-family: IBM Plex Sans, sans-serif;
  font-size: 6.8em;
  font-weight: 300;
}

.flex-h-default {
  align-items: center;
  display: flex;
}

.flex-h-default.align-top {
  align-items: flex-start;
}

.blog-post-img {
  z-index: -1;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.image {
  line-height: 5;
}

.image-2 {
  aspect-ratio: auto;
  opacity: .85;
  object-fit: fill;
  max-width: 65%;
  margin-left: 26px;
  margin-right: 40px;
  padding-left: 0;
  padding-right: 40px;
}

.heading-4 {
  margin-left: 60px;
}

@media screen and (max-width: 991px) {
  body {
    font-size: 1.5vw;
  }

  h1 {
    font-size: 6.2em;
  }

  h2 {
    font-size: 5.8em;
  }

  h3 {
    font-size: 5.2em;
  }

  .heading-xl {
    font-size: 6.2em;
  }

  .heading-l {
    font-size: 5.8em;
  }

  .heading-m {
    font-size: 5.2em;
  }

  .rich-text-blog h6 {
    font-size: 1.8em;
  }

  .section-hero {
    padding-top: 16em;
  }

  .col-who-we-are-1 {
    padding-right: 0;
  }

  .col-who-we-are-2 {
    padding-left: 0;
  }

  .grid-wrapper-expertises {
    grid-row-gap: 3em;
    grid-template-columns: 1fr;
  }

  .infos-team-member {
    width: 80%;
  }

  .left-arrow {
    right: 11vw;
  }

  .wrapper-blog-posts {
    padding-top: 10em;
  }

  .expertise-item-margin-top {
    margin-top: 0;
  }

  .wrapper-button-sticky {
    margin-left: 2.5em;
  }

  .cols-hero-expertise-cms {
    flex-direction: column-reverse;
    align-items: center;
    margin-top: 0;
    display: flex;
  }

  .grid-conten-expertise-cms {
    grid-template-rows: auto auto;
    grid-template-columns: 1.5fr;
  }

  .col-hero-content-expertise-cms {
    flex-direction: column;
    align-items: center;
    margin-top: 2em;
    padding-left: 8em;
    padding-right: 8em;
    display: flex;
  }

  .collection-list-team-members {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .grid-job-offer-item {
    grid-template-columns: 1fr 1fr 1fr .25fr;
  }

  .card-job-offer-apply {
    width: 80%;
  }

  .wrapper-blog-post {
    width: 90%;
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .dropdown-link-item {
    width: 100%;
  }

  .nav-items-container {
    display: none;
  }

  .nav-item, .text-style-button {
    font-size: 1.5em;
  }

  .text-button-icon {
    width: 1.5em;
  }

  .text-style-button-absolute {
    font-size: 1.5em;
  }

  .no-margin-mobile {
    margin: 0;
  }

  .burger-menu {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 3em;
    height: 1.5em;
    display: flex;
  }

  .burger-menu.z-index2 {
    display: flex;
  }

  .burger-menu-line-1, .burger-menu-line-2, .burger-menu-line-3 {
    background-color: var(--white-smoke);
    width: 100%;
    height: 1px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .mobile-nav-items-container {
    background-color: var(--black);
    height: 100vh;
    padding: 3em;
    position: absolute;
    inset: 0%;
  }

  .mobile-nav-items-wrapper {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 50%;
    display: flex;
  }

  .mobile-nav-item {
    color: #f0f0f0cc;
    letter-spacing: -.02em;
    font-family: IBM Plex Sans, sans-serif;
    font-size: 3.5em;
    font-weight: 200;
  }

  .mobile-nav-dropdown {
    margin-left: 0;
    margin-right: 0;
  }

  .mobile-nav-dropdown-toggle {
    align-items: center;
    padding: 0;
    display: flex;
  }

  .mobile-dropdown-icon {
    margin-top: .4em;
    margin-left: 1em;
  }

  .grid-expertise-list {
    grid-template-rows: auto auto;
    grid-template-columns: 1.25fr;
  }

  .mask-expertise-item {
    display: none;
  }

  .section-story-step {
    margin-top: 8em;
    margin-bottom: 8em;
  }

  .col-title-story-step {
    position: relative;
    top: 0;
  }

  .nav-story {
    display: none;
  }

  .col-description-title {
    margin-bottom: 2em;
    padding-right: 0;
    position: relative;
    top: 0;
  }

  .progress-bar-wrapper.margin-top-small {
    display: none;
  }

  .cols-experts, .cols-job-offer {
    flex-direction: column;
  }

  .col-apply-job-offer {
    justify-content: flex-start;
  }

  .cols-team-member-infos {
    flex-direction: column-reverse;
  }

  .col-team-member-photo {
    justify-content: flex-start;
    margin-top: 8em;
  }

  .full-width-mobile {
    width: 100%;
  }

  .img-main {
    height: 50%;
  }

  .col-right-contact-form {
    margin-bottom: 6em;
  }

  .cols-contact {
    flex-direction: column-reverse;
    display: flex;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 12px;
  }

  h1 {
    letter-spacing: -.04em;
    font-size: 4.2em;
  }

  h2 {
    font-size: 3.8em;
  }

  h3 {
    font-size: 3.4em;
  }

  h4 {
    font-size: 3em;
  }

  h5 {
    font-size: 2.6em;
  }

  .heading-xl, .heading-xl.text-align-right, .heading-xl.text-align-right {
    font-size: 1.5em;
  }

  .heading-l {
    font-size: 3.8em;
  }

  .heading-m {
    font-size: 3.4em;
  }

  .dropdown-link-item {
    width: auto;
  }

  .heading-s {
    font-size: 3em;
  }

  .heading-xs {
    font-size: 2.6em;
  }

  .text-align-right.text-style-caps.text-color-white80, .text-color-white80 {
    font-size: 1.25em;
  }

  .section-hero {
    margin-bottom: 12em;
    padding-top: 8em;
  }

  .wrapper-img-hero.img-right {
    padding-top: 10em;
    padding-right: 2em;
  }

  .col-who-we-are-2 {
    margin-top: 0;
  }

  .grid-wrapper-who-we-are {
    grid-template-columns: 1fr;
  }

  .cols-key-figures {
    flex-direction: column-reverse;
  }

  .col-key-figures-title {
    justify-content: flex-start;
    margin-bottom: 2em;
  }

  .wrapper-key-figures-title {
    transform: rotate(0);
  }

  .expertise-item {
    padding: 3em;
  }

  .text-button {
    font-size: 1em;
  }

  .expertise-number {
    font-size: 6em;
  }

  .infos-team-member {
    width: 100%;
  }

  .slide-item {
    width: 90%;
    max-width: none;
  }

  .slider-blog-post-item {
    min-height: 24em;
    padding: 2em;
  }

  .left-arrow {
    right: 18vw;
  }

  .wrapper-blog-posts {
    padding-left: 2em;
  }

  .slider-mask-blog-posts {
    width: 100%;
  }

  .section-contact {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .columns {
    flex-direction: column;
  }

  .col-button-contact {
    justify-content: flex-start;
    height: auto;
    margin-top: 4em;
  }

  .grid-footer-city-infos {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .item-city-infos {
    padding-right: 0;
  }

  .grid-footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-nav-item {
    font-size: 3em;
    text-decoration: none;
  }

  .mobile-nav-dropdown-list {
    background-color: var(--black);
  }

  .mobile-nav-dropdown-list.w--open {
    width: 24em;
    padding-top: .5em;
    padding-bottom: .5em;
    box-shadow: 0 30px 60px #1b1b1b;
  }

  .mobile-nav-dropdown-link {
    color: #f0f0f0cc;
    padding: 1em 2em 1em 1em;
    font-family: IBM Plex Sans, sans-serif;
    font-size: 2em;
    font-weight: 200;
  }

  .mobile-nav-dropdown-link.w--current {
    color: var(--white-smoke-80);
  }

  .spacer-mobile-0 {
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .heading {
    font-size: 3em;
    display: block;
  }

  .grid-hero-story.margin-bottom-xlarge.margin-top-xsmall {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .wrapper-button-sticky {
    margin-left: 1.5em;
  }

  .col-hero-content-expertise-cms {
    padding-left: 0;
    padding-right: 0;
  }

  .wrapper-filters {
    margin-top: 1em;
  }

  .collection-list-team-members {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .wrapper-img-team-member.margin-bottom-xsmall {
    height: 33em;
  }

  .collection-list-cms-filters {
    flex-direction: column;
    display: flex;
  }

  .flex-h-default.align-top {
    align-items: flex-start;
  }

  .card-job-offer-apply {
    width: 100%;
    padding: 2.4em;
  }

  .grid-wrapper-blog-posts {
    grid-template-columns: 1fr;
  }

  .blog-post {
    padding: 2.4em;
  }

  .section-blog-post {
    padding-top: 12em;
  }

  .tab-text-style-link {
    padding-left: 2em;
    padding-right: 2em;
  }

  .tabs-menu {
    display: flex;
  }

  .collection-list-phone-numbers {
    border-left-width: 0;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .grid-wrapper-color-palette {
    grid-column-gap: 2em;
  }

  .grid-wrapper-buttons {
    grid-row-gap: 2.5em;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .wrapper-job-title {
    width: auto;
  }

  .image-2 {
    max-width: 100%;
  }

  .bold-text-2 {
    font-size: .75em;
  }
}

#w-node-_40c5f7f5-9c44-147f-0bb3-ac8dd27c3d32-b7a6453b {
  justify-self: end;
}

#w-node-e5e266ce-b516-b11b-dfe5-a7dc1667d670-b7a6453b {
  place-self: stretch start;
}

#w-node-f8fc251f-2a32-9fc7-89f2-7a6454cf37a2-54cf3778, #w-node-f8fc251f-2a32-9fc7-89f2-7a6454cf37ca-54cf3778, #w-node-eb558939-2b19-311c-11e9-8a9a5982bf8e-54cf3778, #w-node-f8fc251f-2a32-9fc7-89f2-7a6454cf37a6-54cf3778, #w-node-f8fc251f-2a32-9fc7-89f2-7a6454cf37c8-54cf3778, #w-node-_6fdb35f8-1365-488f-3e4a-b341db1951a9-54cf3778 {
  justify-self: start;
}

@media screen and (max-width: 479px) {
  #w-node-_40c5f7f5-9c44-147f-0bb3-ac8dd27c3d32-b7a6453b {
    justify-self: start;
  }
}
