@charset "UTF-8";
/**
 * Global Project Specific Variables
 */
/* =========================================
		Paths
   ========================================= */
/**
 * Prefix paths with $p_ to make
 * them easier to find with
 * autocomplete
 *
 */
/* =========================================
		Color Index
   ========================================= */
/**
 * Prefix colors with $c_ this
 * makes them easily findable
 * with auto complete
 *
 * Give colors their names in the
 * index. This makes it easier to
 * arrange them reasonably in the
 * index
 */
/* =========================================
		Colors Applied
   ========================================= */
/**
 * Prefix applied colors with $ca_
 * this makes them easily findable
 * with auto complete
 *
 * Define where colors where and how
 * colors are used. This makes it
 * easier to use them in the rest
 * of the sass code
 */
/* =========================================
		Dimensions
   ========================================= */
/**
 * Prefix dimensions with $d_
 * to make them easier to find
 * with autocomplete
 *
 */
/**
 * Functions & Mixins & Animations
 */
/**
 * Returns any unit reduced by a certain ratio
 */
/* =========================================
		Mixins -- Rem
   ========================================= */
/**
 * Use rem units with any property
 * with the correct pixel fallback
 *
 * REQUIRES that font-size on html
 * is set to 62.5%
 *
 * @link for more details, see:
 * http://hugogiraudel.com/2013/03/18/ultimate-rem-mixin/
 *
 * @uses parseInt() {function}
 *
 * @param $property 	css property
 * @param $values 		list containing sizes in rems or pixels
 */
/* =========================================
		BP - Breakpoint Mixin
   ========================================= */
/**
 * Helper to make it
 * easier to print
 * media queries
 *
 * @param $query
 * @param $context
 */
/* définition de l'animation sur les images */
.animation-diaporama--animate img:nth-child(1) {
  animation-delay: 0s;
}
@media all and (max-width: 800px) {
  .animation-diaporama--animate img:nth-child(1) {
    transform: translateY(-30%) !important;
  }
}
.animation-diaporama--animate img:nth-child(2) {
  animation-delay: 2s;
}
@media all and (max-width: 800px) {
  .animation-diaporama--animate img:nth-child(2) {
    transform: none !important;
  }
}
.animation-diaporama--animate img:nth-child(3) {
  animation-delay: 4s;
}
@media all and (max-width: 800px) {
  .animation-diaporama--animate img:nth-child(3) {
    transform: translateY(-33%) !important;
  }
}

.animation-flipword {
  font-size: 119px;
  font-weight: 200;
  font-style: italic;
  color: #E0F98B;
  line-height: 119px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .animation-flipword {
    font-size: 105.4px;
    line-height: 107.44px;
  }
}
@media all and (max-width: 1280px) {
  .animation-flipword {
    font-size: 87px;
    line-height: 87px;
  }
}
@media all and (max-width: 800px) {
  .animation-flipword {
    font-size: 12vw;
    line-height: 47px;
  }
}
.animation-flipword div {
  display: inline-block;
  overflow: hidden;
  position: relative;
  height: 155px;
  top: 54px;
  padding-top: 24px;
  margin-top: -30px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .animation-flipword div {
    height: 129px;
  }
}
@media all and (max-width: 1280px) {
  .animation-flipword div {
    height: 106px;
  }
}
@media all and (max-width: 800px) {
  .animation-flipword div {
    height: 17vw;
    padding-top: 6vw;
    top: 7vw;
  }
}
.animation-flipword div ul {
  padding: 0;
}
.animation-flipword div li {
  color: #ffffff;
  font-style: normal;
  font-weight: 700;
  padding: 0 10px;
  height: 140px;
  margin-bottom: 90px;
  display: block;
}
.animation-flipword--items {
  animation: animation-flipword--items 6.3s cubic-bezier(0.23, 1, 0.32, 1.2) infinite;
}
@keyframes animation-flipword--items {
  0% {
    margin-top: -250px;
  }
  5% {
    margin-top: -20px;
  }
  25% {
    margin-top: -20px;
  }
  30% {
    margin-top: -250px;
  }
  50% {
    margin-top: -250px;
  }
  55% {
    margin-top: -480px;
  }
  75% {
    margin-top: -480px;
  }
  80% {
    margin-top: -710px;
  }
  95% {
    margin-top: -710px;
  }
  99.99% {
    margin-top: -710px;
  }
  100% {
    margin-top: -20px;
  }
}

.animationscroll-underline {
  background: linear-gradient(to right, rgba(100, 200, 200, 0), rgba(100, 200, 200, 0)), linear-gradient(to right, #E0F98B, #E0F98B);
  background-size: 100% 0.1em, 0 0.1em;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 1800ms ease-in-out;
}
.animationscroll-underline--animate {
  background-size: 0 0.1em, 100% 0.1em;
}

:root {
  --color-bg1: rgb(246, 246, 246);
  --color-bg2: rgb(246, 246, 246);
  --color1: 246, 246, 246;
  --color2: 246, 246, 246;
  --color3: 246, 246, 246;
  --color4: 246, 246, 246;
  --color5: 224, 249, 139;
  --color-interactive: 224, 249, 139;
  --circle-size: 80%;
  --blending: overlay;
}

@keyframes moveInCircle {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes moveVertical {
  0% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(-50%);
  }
}
@keyframes moveHorizontal {
  0% {
    transform: translateX(-50%) translateY(-10%);
  }
  50% {
    transform: translateX(50%) translateY(10%);
  }
  100% {
    transform: translateX(-50%) translateY(-10%);
  }
}
.gradient-bg {
  width: 100%;
  height: 665px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(40deg, var(--color-bg1), var(--color-bg2));
  top: 0;
  left: 0;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .gradient-bg {
    height: 452.2px;
  }
}
.sticky-header .gradient-bg {
  height: 800px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .sticky-header .gradient-bg {
    height: 544px;
  }
}
.gradient-bg svg {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.gradient-bg .gradients-container {
  filter: url(#goo) blur(40px);
  width: 100%;
  height: 100%;
}
.gradient-bg .g1 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color1), 0.8) 0, rgba(var(--color1), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: center center;
  animation: moveVertical 30s ease infinite;
  opacity: 1;
}
.gradient-bg .g2 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color2), 0.8) 0, rgba(var(--color2), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 400px);
  animation: moveInCircle 20s reverse infinite;
  opacity: 1;
}
.gradient-bg .g3 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color3), 0.8) 0, rgba(var(--color3), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2 + 200px);
  left: calc(50% - var(--circle-size) / 2 - 500px);
  transform-origin: calc(50% + 400px);
  animation: moveInCircle 40s linear infinite;
  opacity: 1;
}
.gradient-bg .g4 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color4), 0.8) 0, rgba(var(--color4), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: var(--circle-size);
  height: var(--circle-size);
  top: calc(50% - var(--circle-size) / 2);
  left: calc(50% - var(--circle-size) / 2);
  transform-origin: calc(50% - 200px);
  animation: moveHorizontal 40s ease infinite;
  opacity: 0.7;
}
.gradient-bg .g5 {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color5), 0.8) 0, rgba(var(--color5), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: calc(var(--circle-size) * 2);
  height: calc(var(--circle-size) * 2);
  top: calc(50% - var(--circle-size));
  left: calc(50% - var(--circle-size));
  transform-origin: calc(50% - 800px) calc(50% + 200px);
  animation: moveInCircle 20s ease infinite;
  opacity: 1;
}
.gradient-bg .interactive {
  position: absolute;
  background: radial-gradient(circle at center, rgba(var(--color-interactive), 0.8) 0, rgba(var(--color-interactive), 0) 50%) no-repeat;
  mix-blend-mode: var(--blending);
  width: 100%;
  height: 100%;
  top: -50%;
  left: -50%;
  opacity: 0.7;
}

.form--newsletter {
  border-color: #E0F98B;
}
.form--newsletter h3 {
  color: #151619;
}

.navigation--portfolio--arrow {
  filter: none;
}
.navigation--news--color-purple h4 {
  color: #AFA3F7;
}
.navigation--news--color-orange h4 {
  color: #FF9064;
}
.navigation--news--color-green h4 {
  color: #cde288;
}
.navigation--news--color-blue h4 {
  color: #3D6FE8;
}

/* =========================================
		Site
   ========================================= */
.site__body {
  background-color: transparent;
}

.site {
  background-color: #151619;
}

.site__header {
  padding-bottom: 68px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .site__header {
    padding: 0 10vw;
    padding-top: 37.4px;
  }
}
@media all and (max-width: 1280px) {
  .site__header {
    padding: 20px 10vw;
  }
}
@media all and (max-width: 800px) {
  .site__header {
    padding: 10px 5vw;
  }
}
.site__header__logo {
  padding-top: 3px;
}
.home .site__header__logo img {
  filter: invert(1);
}
.home .site__header__menu {
  border-color: #151619;
}
.sticky-header .site__header__menu {
  border-color: #9c9c9c;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .site__header__menu {
    font-size: 19.72px;
  }
}
@media all and (max-width: 1280px) {
  .site__header__menu {
    font-size: 17px;
  }
}
.site__header__menu .menu__item {
  padding: 0 22px;
}
.home .site__header__menu .menu__item {
  border-color: #151619;
}
.sticky-header .site__header__menu .menu__item {
  border-color: #9c9c9c;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .site__header__menu .menu__item {
    padding: 0 12.24px;
    height: 29.92px;
    line-height: 32.64px;
  }
}
@media all and (max-width: 1280px) {
  .site__header__menu .menu__item {
    padding: 0 13px;
  }
}
@media all and (max-width: 1080px) {
  .site__header__menu .menu__item {
    height: 44px;
  }
}
.home .site__header__menu .menu__list a {
  color: #151619;
}
.sticky-header .site__header__menu .menu__list a {
  color: #fff;
}
.mobile-opened .site__header__menu .menu__list a {
  color: #fff;
}
.site__header__search__form__submit {
  background: transparent;
  border: 1px solid #9c9c9c;
}
.home .site__header__search__form__submit {
  border: 1px solid #151619;
}
.home .site__header__search__form__submit img {
  filter: none;
}
.sticky-header .site__header__search__form__submit {
  border-color: #9c9c9c;
}
.sticky-header .site__header__search__form__submit img {
  filter: invert(1);
}
.site__header__search__form__submit img {
  filter: invert(1);
}
.site__header__search__form__field {
  border: none;
  right: 72px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .site__header__search__form__field {
    right: 48.96px;
  }
}
@media all and (max-width: 800px) {
  .site__header__search__form__field {
    right: 0;
  }
}
.site__header__countries {
  background-color: transparent;
}
.site__header__countries a {
  color: #151619;
}
.site__header__countries a:hover {
  color: #9b9b9b;
}
.site__header__countries img {
  filter: brightness(0) saturate(100%) invert(3%) sepia(4%) saturate(4404%) hue-rotate(187deg) brightness(94%) contrast(88%);
}
.site__header__countries:hover {
  outline: 1px #151619 solid;
  background: #fff;
}
@media all and (max-width: 1080px) {
  .site__header__countries:hover {
    outline: none;
  }
}
.site__header__countries:hover .site__header__countries__item__hidden {
  display: block;
}
@media all and (max-width: 1080px) {
  .site__header__countries:hover .site__header__countries__item__hidden {
    display: inline-block;
  }
}

/**
 * Home sections
 */
.home-section--hero {
  height: 1093px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--hero {
    height: 47vw;
  }
}
@media all and (max-width: 800px) {
  .home-section--hero {
    height: 58vw;
  }
}
.home-section--hero h4 {
  font-size: 131px;
  margin: 0 0 222px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--hero h4 {
    padding: 0 10vw;
    margin: 0 0 78.2px;
    font-size: 91px;
    line-height: 64px;
  }
}
@media all and (max-width: 1280px) {
  .home-section--hero h4 {
    padding: 0 10vw;
    margin: 0 0 64px;
  }
}
@media all and (max-width: 800px) {
  .home-section--hero h4 {
    padding: 0;
    margin: 0 auto 5vw auto;
    font-size: 8vw;
    line-height: 35px;
  }
}
.home-section--hero--scrolltitle {
  background-color: #E0F98B;
}
.home-section--hero--scrolltitle h3 {
  color: #151619;
  font-size: 61px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--hero--scrolltitle h3 {
    font-size: 41.48px;
  }
}
@media all and (max-width: 1280px) {
  .home-section--hero--scrolltitle h3 {
    font-size: 35px;
  }
}
@media all and (max-width: 800px) {
  .home-section--hero--scrolltitle h3 {
    font-size: 28px;
  }
}
.home-section--hero--scrolltitle .animation-scrollx--marquee {
  animation: c 45s linear infinite;
}
.home-section--video {
  position: absolute;
  top: -179px;
  width: 100%;
  z-index: -1;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--video {
    top: -65px;
  }
}
.home-section--intro {
  height: 1628px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--intro {
    height: 945px;
  }
}
@media (max-width: 1670px) {
  .home-section--intro {
    height: 1200px;
  }
}
@media all and (max-width: 1280px) {
  .home-section--intro {
    height: auto;
  }
}
.home-section--intro h1 {
  font-size: 81px;
  line-height: 87px;
  -moz-text-align-last: justify;
       text-align-last: justify;
  text-align: justify;
}
@media (max-width: 1490px) {
  .home-section--intro h1 {
    -moz-text-align-last: initial;
         text-align-last: initial;
  }
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--intro h1 {
    font-size: 58px;
    line-height: 64px;
    letter-spacing: -1.7px;
    padding-bottom: 42.84px;
  }
}
@media all and (max-width: 1280px) {
  .home-section--intro h1 {
    font-size: 41px;
    line-height: 45px;
    letter-spacing: -0.5px;
    padding-bottom: 33px;
  }
}
@media all and (max-width: 800px) {
  .home-section--intro h1 {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: -0.5px;
    padding-bottom: 20px;
  }
}
.home-section--intro p {
  font-size: 47px;
  line-height: 58px;
  text-align: justify;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--intro p {
    font-size: 31.96px;
    line-height: 39.44px;
    margin-bottom: 18.36px;
    margin-left: 234.6px;
  }
}
@media all and (max-width: 1280px) {
  .home-section--intro p {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 10px;
    margin-left: 0;
  }
}
@media all and (max-width: 800px) {
  .home-section--intro p {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1490px) {
  .home-section--intro br {
    display: none;
  }
}
.home-section--references--scrolltitle {
  font-size: 61px;
}
.home-section--news--articles article h4 {
  font-size: 58px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--news--articles article h4 {
    font-size: 39.44px;
  }
}
@media all and (max-width: 1280px) {
  .home-section--news--articles article h4 {
    font-size: 2.8vw;
  }
}
@media all and (max-width: 800px) {
  .home-section--news--articles article h4 {
    font-size: 19px;
  }
}
.home-section--challenges {
  padding-bottom: 178px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--challenges {
    padding-bottom: 272px;
  }
}
@media all and (max-width: 1280px) {
  .home-section--challenges {
    padding-bottom: 190px;
  }
}
@media all and (max-width: 800px) {
  .home-section--challenges {
    padding-bottom: 160px;
  }
}
.home-section--challenges h3 {
  font-size: 43px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--challenges h3 {
    font-size: 1.9vw;
    line-height: 2.4vw;
  }
}
@media all and (max-width: 800px) {
  .home-section--challenges h3 {
    font-size: 3.7vw;
    line-height: 4.7vw;
  }
}
.home-section--about-us {
  background-color: #fff;
}
.home-section--about-us--grid {
  grid-template-columns: repeat(2, 1fr);
}
@media all and (max-width: 800px) {
  .home-section--about-us--grid {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }
}
.home-section--about-us--item {
  overflow: hidden;
  height: 475px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--about-us--item {
    height: 21.75vw;
  }
}
@media all and (max-width: 800px) {
  .home-section--about-us--item {
    height: 50vw;
  }
}
.home-section--about-us--item:hover {
  background: #000;
}
.home-section--about-us--item:hover .home-section--about-us--item--content--description {
  background: #000;
}
.home-section--about-us--item:hover .home-section--about-us--item--content--description p {
  color: #fff;
}
.home-section--about-us--item--content {
  padding: 0;
  position: relative;
}
.home-section--about-us--item--content img {
  width: 100%;
  height: auto;
}
.home-section--about-us--item--content h3 {
  font-size: 43px;
  text-align: center;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--about-us--item--content h3 {
    font-size: 2vw;
  }
}
@media all and (max-width: 800px) {
  .home-section--about-us--item--content h3 {
    font-size: 4vw;
  }
}
.home-section--about-us--item--content p {
  color: #151619;
  text-align: center;
  font-size: 20px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--about-us--item--content p {
    font-size: 1.35vw;
  }
}
@media all and (max-width: 800px) {
  .home-section--about-us--item--content p {
    font-size: 2vw;
  }
}
.home-section--about-us--item--content--image {
  height: 376px;
}
.home-section--about-us--item--content--description {
  transition: 0.3s cubic-bezier(0.22, 0.61, 0.36, 1) background-color;
  padding: 11px;
  width: 100%;
  background: #E0F98B;
  position: relative;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--about-us--item--content--description {
    padding: 0.25vw;
    position: absolute;
    top: 17.3vw;
  }
}
@media all and (max-width: 800px) {
  .home-section--about-us--item--content--description {
    padding: 4px;
    top: 42vw;
  }
}
.home-section--news {
  background-color: #F6F6F6;
}
.home-section--news--articles {
  flex-wrap: wrap;
}
.home-section--news--articles--item {
  height: 400px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--news--articles--item {
    height: 272px;
  }
}
@media all and (max-width: 800px) {
  .home-section--news--articles--item {
    height: 200px;
  }
}
.home-section--news--articles article h4 {
  font-size: 47px;
  line-height: 56px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--news--articles article h4 {
    font-size: 31.96px;
    line-height: 38.08px;
  }
}
@media all and (max-width: 800px) {
  .home-section--news--articles article h4 {
    font-size: 12px;
    line-height: 14px;
  }
}
.home-section--news--articles article .home-section--news--articles--item--background {
  background-color: #d9d9d9;
}
.home-section--news--articles article:nth-child(2n) .home-section--news--articles--item--background {
  background-color: #d9d9d9;
}
.home-section--contact--info {
  font-size: 31px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .home-section--contact--info {
    font-size: 22px;
  }
}
@media (max-width: 1490px) {
  .home-section--contact--info {
    font-size: 20px;
  }
}
@media all and (max-width: 1280px) {
  .home-section--contact--info {
    margin-bottom: 68px;
    font-size: 22px;
  }
}
@media all and (max-width: 800px) {
  .home-section--contact--info {
    font-size: 20px;
  }
}

/**
 * Page sections
 */
.page-section--expertise {
  height: 1300px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--expertise {
    height: 59.54vw;
  }
}
@media all and (max-width: 800px) {
  .page-section--expertise {
    height: 178vw;
  }
}
@media all and (max-width: 800px) {
  .page-section--expertise--drawing {
    margin: 54vw auto 0 auto;
  }
}
.page-section--expertise--drawing--naming {
  font-size: 68px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--expertise--drawing--naming {
    font-size: 3.1144vw;
  }
}
@media all and (max-width: 800px) {
  .page-section--expertise--drawing--naming {
    font-size: 6.76vw;
  }
}
.page-section--expertise--drawing--legal span {
  font-size: 40px;
  padding: 223px 21px 0 21px;
  line-height: 47px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--expertise--drawing--legal span {
    font-size: 1.832vw;
    padding: 10.2134vw 0.9618vw 0 0.9618vw;
    line-height: 2.1526vw;
  }
}
@media all and (max-width: 800px) {
  .page-section--expertise--drawing--legal span {
    font-size: 4.16vw;
    padding: 20.8vw 2.6vw 0 2.6vw;
    line-height: 5.2vw;
  }
}
.page-section--expertise--drawing--linguistic {
  font-size: 52px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--expertise--drawing--linguistic {
    font-size: 2.3816vw;
  }
}
@media all and (max-width: 800px) {
  .page-section--expertise--drawing--linguistic {
    font-size: 5.2vw;
  }
}
@media all and (max-width: 800px) {
  .page-section--expertise--popup {
    margin: -47vw auto 0 auto;
  }
}
.page-section--expertise--popup li {
  font-size: 31.5px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--expertise--popup li {
    font-size: 1.4427vw;
  }
}
@media all and (max-width: 800px) {
  .page-section--expertise--popup li {
    font-size: 4.5vw;
    margin-top: 0.5vw;
  }
}
.page-section--expertise--popup--right a {
  color: #3D6FE8;
}
.page-section--challenge .wp-block-columns {
  gap: 70px;
  padding-bottom: 0;
  margin-bottom: 0;
  background-color: #F6F6F6;
}
.page-section--challenge .wp-block-columns p {
  text-align: justify;
}
.page-id-41 .page-section--challenge .wp-block-columns {
  gap: 0;
}
.page-section--challenge .col-wide-green {
  position: absolute;
  background-color: transparent;
  top: 244px;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 50px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--challenge .col-wide-green {
    top: 175px;
  }
}
.page-section--challenge h1 {
  color: #151619;
  text-align: left;
  font-size: 78px;
  padding: 80px calc((100vw - 1761px) / 2) 30px calc((100vw - 1761px) / 2);
  max-width: none;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--challenge h1 {
    font-size: 53.04px;
    padding: 54.4px 10vw 20.4px 10vw;
  }
}
@media all and (max-width: 800px) {
  .page-section--challenge h1 {
    padding: 0 5vw;
  }
}
.page-section--challenge h2 {
  color: #151619;
  padding: 55px 0 17px;
}
.page-section--challenge h2:first-of-type {
  padding-bottom: 17px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--challenge h2 {
    padding-top: 11.56px;
    padding-bottom: 11.56px;
  }
}
@media all and (max-width: 800px) {
  .page-section--challenge h2 {
    padding-bottom: 5px;
  }
}
.page-section--challenge ul {
  list-style-type: "— ";
  padding-bottom: 45px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--challenge ul {
    padding-bottom: 30.6px;
  }
}
@media all and (max-width: 800px) {
  .page-section--challenge ul {
    padding-bottom: 10px;
  }
}
.page-section--challenge img {
  border-radius: 0;
  border: none;
}
.page-section--challenge p {
  font-size: 31px;
  line-height: 44px;
  padding: 18px calc((100vw - 1761px) / 2);
  max-width: none;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--challenge p {
    font-size: 21.08px;
    line-height: 29.92px;
    padding: 12.24px 10vw;
  }
}
@media all and (max-width: 800px) {
  .page-section--challenge p {
    padding: 0 5vw;
  }
}
.page-section--challenge .wp-block-image {
  padding: 0;
}
.page-section--challenge img {
  width: 100%;
}
.page-section--news--single--color-purple h2, .page-section--news--single--color-purple h3, .page-section--news--single--color-purple h4, .page-section--news--single--color-purple h5, .page-section--news--single--color-purple h6 {
  color: #AFA3F7;
}
.page-section--news--single--color-orange h2, .page-section--news--single--color-orange h3, .page-section--news--single--color-orange h4, .page-section--news--single--color-orange h5, .page-section--news--single--color-orange h6 {
  color: #FF9064;
}
.page-section--news--single--color-green h2, .page-section--news--single--color-green h3, .page-section--news--single--color-green h4, .page-section--news--single--color-green h5, .page-section--news--single--color-green h6 {
  color: #cde288;
}
.page-section--news--single--color-blue h2, .page-section--news--single--color-blue h3, .page-section--news--single--color-blue h4, .page-section--news--single--color-blue h5, .page-section--news--single--color-blue h6 {
  color: #3D6FE8;
}
.page-section--news--single--content--inner p {
  text-align: justify;
}
.page-section--people--single--top {
  height: 667px;
  background: #F6F6F6;
}
.page-section--people--single--top .attachment-post-thumbnail {
  position: absolute;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1380px;
  height: auto;
}
.page-section--people--single--top--info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 536px auto 0 auto;
  max-width: 1200px;
}
.page-section--people--single--top--info a {
  position: relative;
}
.page-section--people--single--top--info h1 {
  position: relative;
  font-weight: 600;
  font-size: 79px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--people--single--top--info h1 {
    font-size: 55px;
  }
}
.page-section--people--single--top--info h2 {
  font-size: 38px;
}
.page-section--people--single--content {
  background-color: #fff;
}
.page-section--people--single--content--inner {
  padding-top: 40px;
}
.page-section--people--single--content--inner h2 {
  font-weight: 700;
  font-size: 38px;
  line-height: 45px;
  letter-spacing: -2px;
  text-transform: none;
  padding-top: 14px;
  padding-bottom: 6px;
  text-align: left;
}
.page-section--people--single--content--inner h2:nth-child(2) {
  padding-top: 11px;
  padding-bottom: 20px;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--people--single--content--inner h2 {
    max-width: 1200px;
  }
}
.page-section--people--single--content--inner p {
  font-family: "Helvetica Now Display", Helvetica, Arial, sans-serif;
  color: #000;
  font-size: 27px;
  line-height: 36px;
  padding: 23px 0 27px 0;
  margin: 0 auto;
  max-width: 1200px;
  text-align: justify;
}
.page-section--people--single--content--inner ul {
  max-width: 1200px;
  padding: 0;
  margin: 0 auto;
}
.page-section--people--single--content--inner li {
  color: #000;
  font-family: "Helvetica Now Display", Helvetica, Arial, sans-serif;
  margin: 0;
  font-weight: 400;
  padding: 0;
  list-style: none;
  font-size: 27px;
  line-height: 36px;
  text-align: justify;
}
.page-section--people--single--content--inner li:before {
  content: "";
  margin-right: 5px;
  height: 26px;
  width: 26px;
  display: inline-block;
  background-image: url(../svg/dash.svg);
  vertical-align: middle;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--people--single--content--inner li:before {
    margin-right: 3.4px;
    height: 17.68px;
    width: 17.68px;
  }
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--people--single--content--inner li {
    font-size: 18.36px;
    line-height: 24.48px;
  }
}
.page-section--people--single--content--inner--info h3 {
  font-weight: 700;
  font-size: 32px;
  max-width: 1200px;
  margin: 30px auto 15px auto;
}
@media all and (max-width: calc(1744px + 20vw)) {
  .page-section--people--single--content--inner--info h3 {
    font-size: 21.76px;
    margin: 20.4px auto 10.2px auto;
  }
}
.page-section--people--single--content--inner--info li {
  font-size: 23px;
}
/*# sourceMappingURL=main.css.map */
