@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.otgs-development-site-front-end {
  display: none !important;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
html {
  scroll-behavior: smooth;
  min-height: 100%;
  height: auto;
}
html.noscroll {
  overflow: hidden !important;
  scroll-behavior: unset;
}

body {
  min-height: 100%;
  height: auto;
  text-rendering: geometricPrecision;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* Set Sections to take all width available */
section {
  width: 100%;
}

/* Make HR easier to work with */
hr {
  display: block;
  margin: rem(16) 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul {
  margin: 0;
  padding: 0;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  display: block;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
  cursor: pointer;
}

a {
  text-decoration: none;
  opacity: 1;
  cursor: pointer !important;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
#tinymce {
  background-color: white;
}

[data-splitting] .word {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
}
[data-splitting] .word-content {
  display: inline-block;
  will-change: transform;
  -webkit-transform: translateZ(0) translateY(-101%);
          transform: translateZ(0) translateY(-101%);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition-delay: calc(var(--line-index) * 0.1s);
          transition-delay: calc(var(--line-index) * 0.1s);
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* ----------------------------------------------------------------------------------------------------
Super Form Reset
A couple of things to watch out for:
- IE8: If a text input doesn't have padding on all sides or none the text won't be centered.
- The default border sizes on text inputs in all UAs seem to be slightly different. You're better off using custom borders.
- You NEED to set the font-size and family on all form elements
- Search inputs need to have their appearance reset and the box-sizing set to content-box to match other UAs
- You can style the upload button in webkit using ::-webkit-file-upload-button
- ::-webkit-file-upload-button selectors can't be used in the same selector as normal ones. FF and IE freak out.
- IE: You don't need to fake inline-block with labels and form controls in IE. They function as inline-block.
- By turning off ::-webkit-search-decoration, it removes the extra whitespace on the left on search inputs
----------------------------------------------------------------------------------------------------*/
input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  line-height: 1;
  border-radius: 0px;
  /* Browsers have different default form fonts */
  font-size: 13px;
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
}

/* Remove the stupid outer glow in Webkit */
input:focus {
  outline: 0;
}

/* Box Sizing Reset
-----------------------------------------------*/
/* All of our custom controls should be what we expect them to be */
input,
textarea {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* These elements are usually rendered a certain way by the browser */
button,
input[type=reset],
input[type=button],
input[type=submit],
input[type=checkbox],
input[type=radio],
select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Text Inputs
-----------------------------------------------*/
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: auto;
  border: 0;
  border-radius: 0px;
  margin: 0;
  outline: none;
  outline-color: transparent;
  background-color: transparent;
  -webkit-font-smoothing: inherit !important;
}

/* Button Controls
-----------------------------------------------*/
input[type=checkbox] {
  -webkit-appearance: none;
  border: 1px solid gray;
  width: 0.9375rem;
  height: 0.9375rem;
  margin: 0;
  margin-right: 0.6em;
  border-radius: 0px;
}
input[type=checkbox]:checked {
  background-image: url("../svg/check-solid.html");
  background-size: 69%;
  background-position: center;
  background-repeat: no-repeat;
}

input[type=radio] {
  width: 0.9375rem;
  height: 1.625rem;
  margin: 0;
  border-radius: 0px;
}

/* File Uploads
-----------------------------------------------*/
input[type=file] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: auto;
  border: 0;
  outline: none;
  outline-color: transparent;
  background-color: transparent;
  -webkit-font-smoothing: inherit !important;
}

/* Search Input
-----------------------------------------------*/
/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Buttons
-----------------------------------------------*/
button,
input[type=reset],
input[type=button],
input[type=submit] {
  /* Fix IE7 display bug */
  overflow: visible;
  width: auto;
}

/* IE8 and FF freak out if this rule is within another selector */
::-webkit-file-upload-button {
  padding: 0;
  border: 0;
  background: none;
}

/* Textarea
-----------------------------------------------*/
textarea {
  /* Move the label to the top */
  vertical-align: top;
  /* Turn off scroll bars in IE unless needed */
  overflow: auto;
}

/* Selects
-----------------------------------------------*/
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: auto;
  border: 0;
  outline: none;
  outline-color: transparent;
  background-color: transparent;
  -webkit-font-smoothing: inherit !important;
}

select[multiple] {
  /* Move the label to the top */
  vertical-align: top;
}

h1,
.title-1 {
  font-size: 35px;
  line-height: 1.2;
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #072343;
  letter-spacing: 1px;
}
@media only screen and (min-width: 600px) {
  h1,
.title-1 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  h1,
.title-1 {
    font-size: 110px;
  }
}

h2,
.title-2 {
  font-size: 30px;
  line-height: 1;
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  color: #072343;
  font-weight: 500;
  letter-spacing: 1px;
}
@media only screen and (min-width: 600px) {
  h2,
.title-2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  h2,
.title-2 {
    font-size: 70px;
  }
}

h3,
.title-3 {
  font-size: 35px;
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  line-height: 1.1;
  color: #072343;
  font-weight: 500;
  letter-spacing: 1px;
}
@media only screen and (min-width: 1024px) {
  h3,
.title-3 {
    font-size: 50px;
  }
}

h4,
.title-4 {
  font-size: 27px;
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  line-height: 1.2;
  font-weight: 500;
  color: #072343;
}
@media only screen and (min-width: 1024px) {
  h4,
.title-4 {
    font-size: 30px;
  }
}

h5,
.title-5 {
  font-weight: 500;
  font: 2.1875rem "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
}
@media only screen and (min-width: 600px) {
  h5,
.title-5 {
    font-size: 3.125rem;
  }
}
@media only screen and (min-width: 1024px) {
  h5,
.title-5 {
    font-size: 3.125rem;
  }
}

h6,
.title-6 {
  font-weight: 500;
  font: 1.125rem "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
}
@media only screen and (min-width: 600px) {
  h6,
.title-6 {
    font-size: 1.125rem;
  }
}
@media only screen and (min-width: 1024px) {
  h6,
.title-6 {
    font-size: 1.25rem;
  }
}

body {
  font: 500 1rem/1.25 "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  color: #2d2926;
}

p,
.paragraph {
  color: #072343;
  font-size: 16px;
  line-height: 24px;
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
@media only screen and (min-width: 600px) {
  p,
.paragraph {
    font-size: 18px;
    line-height: 26px;
  }
}

::-moz-selection {
  border: 0;
  text-shadow: none;
  outline: none;
  background-color: #dadada;
}

::selection {
  border: 0;
  text-shadow: none;
  outline: none;
  background-color: #dadada;
}

.container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.page-wrapper {
  position: relative;
  min-height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.grecaptcha-badge {
  display: none;
}

.header {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 100%;
  -webkit-transition: all 500ms cubic-bezier(0.34, 0.7, 0.27, 1), background-position 300ms cubic-bezier(0.34, 0.7, 0.27, 1);
  transition: all 500ms cubic-bezier(0.34, 0.7, 0.27, 1), background-position 300ms cubic-bezier(0.34, 0.7, 0.27, 1);
}
.header__container {
  padding-top: 20px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .header__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.header__link {
  width: 70px;
  -webkit-transition: all 500ms cubic-bezier(0.34, 0.7, 0.27, 1);
  transition: all 500ms cubic-bezier(0.34, 0.7, 0.27, 1);
}
.header__logo {
  pointer-events: all;
  width: 100%;
}
.header__logo--white {
  display: none;
}
.header__logo--black {
  display: block;
}
.header__item {
  display: none;
}
.header .wpml-ls-link {
  color: #ffffff;
  pointer-events: all;
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
}
.header__mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__mobile-menu {
  pointer-events: all;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.header__mobile-menu--open .header__burger-line:first-of-type {
  margin: 0px;
  -webkit-transform: rotate(45deg) translateY(1px);
          transform: rotate(45deg) translateY(1px);
}
.header__mobile-menu--open .header__burger-line:last-of-type {
  width: 20px;
  margin: 0px;
  -webkit-transform: rotate(-45deg) translateY(-1px);
          transform: rotate(-45deg) translateY(-1px);
}
.header__mobile-menu--off {
  display: block;
}
.header__mobile-menu--on {
  display: none;
}
.header__burger-line {
  width: 20px;
  height: 1.5px;
  display: block;
  background-color: #ffffff;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.header__burger-line:first-of-type {
  margin-bottom: 5px;
}
.header__burger-line-second {
  margin-bottom: 5px;
  width: 13px;
  margin-left: 7px;
}
.header__menu-large {
  display: none;
}
.header__link-search {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .header__link-search {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    pointer-events: all;
    border: 2px solid #072343;
    color: #072343;
    border-radius: 30px;
    padding: 9px 40px 9px 14px;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    overflow: hidden;
  }
  .header__link-search svg {
    margin-left: 25px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .header__link-search:after {
    content: "";
    position: absolute;
    top: 10px;
    right: 14px;
    width: 15px;
    height: 15px;
    background-image: url("../../src/svg/arrow-btn.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px auto, 100%;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .header__link-search:before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    width: 15px;
    height: 15px;
    background-image: url("../../src/svg/arrow-btn.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px auto, 100%;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__link-search:hover {
    padding: 9px 14px 9px 40px;
  }
  .header__link-search:hover:before {
    left: 14px;
  }
  .header__link-search:hover:after {
    right: -20px;
  }
}
.header--white .header__logo--black {
  display: none;
}
.header--white .header__logo--white {
  display: block;
}
.header--white .header__burger-line {
  background-color: #ffffff;
}
.header--white .header__link-search {
  background-color: #ffffff;
  color: #2d2926;
}
.header--white .header__link-search svg path {
  fill: #2d2926;
}
@media only screen and (min-width: 1024px) {
  .header--white .nav-main-menu > li > a {
    color: #ffffff;
  }
}
@media only screen and (min-width: 1024px) {
  .header--small {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@media only screen and (min-width: 1024px) {
  .header--mid .header__link {
    width: 60px;
  }
  .header--mid .header__container {
    padding-top: 20px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header--mid .header__menu-large {
    background-color: #072343;
    border-radius: 5px;
    padding-left: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header--mid .header__menu-link-transition {
    margin-bottom: 0;
  }
  .header--mid .header__menu-link-transition:last-of-type .header__menu-link {
    opacity: 1 !important;
    background-color: #ffffff;
    color: #072343;
    padding: 10px !important;
    margin: 2px;
    border-radius: 5px;
  }
  .header--mid .header__menu-link-transition:last-of-type .header__menu-link:hover {
    background-color: #e5e5e5;
    padding: 10px 20px !important;
  }
  .header--mid .header__menu-link {
    display: block;
    padding-left: 0 !important;
    color: #ffffff;
    opacity: 1;
    font-size: 16px;
  }
  .header--mid .header__menu-link:hover {
    opacity: 0.5;
  }
  .header--mid .header__menu-link::before {
    display: none !important;
  }
}
@media only screen and (min-width: 1024px) {
  .header--hide {
    -webkit-transform: translateY(0) !important;
            transform: translateY(0) !important;
    opacity: 1 !important;
  }
}

.menu {
  background-color: #072343;
  z-index: 1999;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100dvh;
  height: var(--doc-height);
  width: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  scroll-behavior: unset;
  pointer-events: none;
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
}
.menu--show {
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  opacity: 1;
  pointer-events: all;
}
.menu__container {
  height: 100%;
  position: relative;
  padding: 0 10px;
}
.menu__grid {
  padding-top: 180px;
  padding-bottom: 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 600px) {
  .menu__grid {
    padding-top: 250px;
    padding-bottom: 150px;
  }
}
.menu__menu-link {
  width: 100%;
  margin-bottom: 10px;
  font-weight: 600;
  color: white;
  font-size: 25px;
}
@media only screen and (min-width: 600px) {
  .menu__menu-link {
    font-size: 40px;
  }
}
.menu__details {
  padding-top: 40px;
  border-top: 1px solid #ffffff;
}
.menu__details .wysiwyg p {
  font-size: 20px;
}
.menu__details .wysiwyg a {
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
}
.menu .wysiwyg h1,
.menu .wysiwyg h2,
.menu .wysiwyg h3,
.menu .wysiwyg h4,
.menu .wysiwyg h5,
.menu .wysiwyg h6,
.menu .wysiwyg ul,
.menu .wysiwyg li,
.menu .wysiwyg p,
.menu .wysiwyg a {
  color: #ffffff;
}
.menu .wpml-ls {
  padding: 0;
}
.menu .wpml-ls-link {
  margin: 0;
  padding: 0;
}

.menu-show .header__burger-line {
  background-color: #ffffff !important;
}
.menu-show .header__logo--black {
  display: none !important;
}
.menu-show .header__logo--white {
  display: block !important;
}
.menu-show .header__mobile-menu {
  color: #ffffff;
}
.menu-show .header__mobile-menu--off {
  display: none;
}
.menu-show .header__mobile-menu--on {
  display: block;
}
.menu-show .header .wpml-ls-link {
  color: #ffffff !important;
}

@media only screen and (min-width: 600px) {
  .header__link {
    width: 100px;
  }
  .header__link-form {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1024px) {
  .header__container {
    padding-top: 30px;
    padding-bottom: 30px;
    display: grid;
    grid-template-columns: 3fr 9fr;
  }
  .header__link {
    width: 108px;
  }
  .header__mobile {
    border: none;
  }
  .header__buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__menu-link-transition {
    overflow: hidden;
    margin-bottom: 12px;
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  .header__menu-link-transition:nth-of-type(1n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .header__menu-link-transition:nth-of-type(2n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  }
  .header__menu-link-transition:nth-of-type(3n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  }
  .header__menu-link-transition:nth-of-type(4n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  }
  .header__menu-link-transition:nth-of-type(5n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
  .header__menu-link-transition:nth-of-type(6n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  }
  .header__menu-link-transition:nth-of-type(7n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  }
  .header__menu-link-transition:nth-of-type(8n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  }
  .header__menu-link-transition:nth-of-type(9n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  }
  .header__menu-link-transition:nth-of-type(10n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
  }
  .header__menu-link-transition:nth-of-type(11n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1s;
  }
  .header__menu-link-transition:nth-of-type(12n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.1s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.1s;
  }
  .header__menu-link-transition:nth-of-type(13n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
  }
  .header__menu-link-transition:nth-of-type(14n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.3s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.3s;
  }
  .header__menu-link-transition:nth-of-type(15n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.4s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.4s;
  }
  .header__menu-link-transition:nth-of-type(16n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
  }
  .header__menu-link-transition:nth-of-type(17n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.6s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.6s;
  }
  .header__menu-link-transition:nth-of-type(18n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.7s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.7s;
  }
  .header__menu-link-transition:nth-of-type(19n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.8s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.8s;
  }
  .header__menu-link-transition:nth-of-type(20n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.9s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.9s;
  }
  .header__menu-link-transition:nth-of-type(21n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2s;
  }
  .header__menu-link-transition:nth-of-type(22n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2.1s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2.1s;
  }
  .header__menu-link-transition:nth-of-type(23n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2.2s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2.2s;
  }
  .header__menu-link-transition:nth-of-type(24n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2.3s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2.3s;
  }
  .header__menu-link-transition:nth-of-type(25n) {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2.4s;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2.4s;
  }
  .header__menu-link {
    cursor: pointer;
    pointer-events: all;
    color: #072343;
    font-weight: 600;
    margin-right: 25px;
    position: relative;
    opacity: 0.6;
    font-size: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__menu-link:before {
    content: "";
    position: absolute;
    top: 5px;
    left: -20px;
    width: 15px;
    height: 15px;
    background-image: url("../../src/svg/arrow-btn.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px auto, 100%;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .header__menu-link.active {
    opacity: 1;
  }
  .header__menu-link:hover {
    padding-left: 20px;
    opacity: 1;
  }
  .header__menu-link:hover::before {
    left: 1px;
  }
  .header .wpml-ls-link {
    font-size: 16px;
    padding: 0 !important;
  }
  .header .wpml-ls {
    padding: 0 !important;
  }
  .header__menu-large {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__mobile-menu {
    display: none;
  }
  .header--tadam .header__menu-link-transition {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .menu {
    display: none;
  }
}
.transition {
  background-color: #e5e5e5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 3000;
  pointer-events: none;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-timing-function: cubic-bezier(0.3, 0.86, 0.36, 0.95);
          animation-timing-function: cubic-bezier(0.3, 0.86, 0.36, 0.95);
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.transition--open {
  -webkit-animation-name: open-transition;
          animation-name: open-transition;
}
@-webkit-keyframes open-transition {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes open-transition {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.transition--load {
  -webkit-animation-name: load-transition;
          animation-name: load-transition;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
}
@-webkit-keyframes load-transition {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes load-transition {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* Footer Container Styles */
.footer {
  padding: 100px 0 20px 0;
  /* Logo Section */
  /* Menu Section */
  /* Branch Section */
  /* Details Section */
  /* Call-to-Action Section */
  /* Copyright Section */
}
.footer__container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .footer__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  row-gap: 30px;
}
@media only screen and (min-width: 600px) {
  .footer__grid {
    row-gap: 40px;
    grid-template-columns: repeat(9, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: repeat(12, 1fr);
    row-gap: 130px;
  }
}
.footer__container-logo {
  grid-column: 1/5;
  grid-row: 1/2;
  text-align: left;
}
@media only screen and (min-width: 600px) {
  .footer__container-logo {
    grid-column: 1/4;
    grid-row: 1/2;
  }
}
.footer__logo-link {
  display: inline-block;
}
.footer__logo {
  max-width: 180px;
  height: auto;
}
.footer__container-menu {
  grid-column: 1/3;
  grid-row: 2/3;
  text-align: left;
}
@media only screen and (min-width: 600px) {
  .footer__container-menu {
    grid-column: 4/7;
    grid-row: 1/2;
  }
}
.footer__menu-link {
  display: block;
  color: #072343;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 16px;
}
@media only screen and (min-width: 1024px) {
  .footer__menu-link {
    position: relative;
    overflow: hidden;
    font-size: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .footer__menu-link:before {
    content: "";
    position: absolute;
    top: 5px;
    left: -20px;
    width: 15px;
    height: 15px;
    background-image: url("../../src/svg/arrow-btn.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px auto, 100%;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .footer__menu-link:hover {
    padding-left: 20px;
    opacity: 1;
  }
  .footer__menu-link:hover::before {
    left: 1px;
  }
}
.footer__container-branch {
  text-align: left;
  grid-column: 3/5;
  grid-row: 2/3;
}
@media only screen and (min-width: 600px) {
  .footer__container-branch {
    grid-column: 7/10;
    grid-row: 1/2;
  }
}
.footer__branch-link {
  display: block;
  color: #072343;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 16px;
}
@media only screen and (min-width: 1024px) {
  .footer__branch-link {
    display: block;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 8px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-transform-origin: center;
            transform-origin: center;
    position: relative;
  }
  .footer__branch-link::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #072343;
    bottom: -3px;
    left: 0;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  .footer__branch-link:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.footer__container-logos {
  text-align: center;
  grid-column: 1/3;
  grid-row: 3/5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 600px) {
  .footer__container-logos {
    grid-column: 1/4;
    grid-row: 2/3;
  }
}
.footer__logos-link {
  margin: 10px;
  display: inline-block;
}
.footer__logos-link img {
  width: 80px;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media only screen and (min-width: 1024px) {
  .footer__logos-link img {
    width: 150px;
  }
}
.footer__logos-link img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.footer__container-socials {
  grid-column: 3/5;
  grid-row: 3/4;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media only screen and (min-width: 600px) {
  .footer__container-socials {
    grid-column: 4/7;
    grid-row: 2/3;
  }
}
.footer__social-link {
  margin: 0 10px 10px 0;
  display: inline-block;
}
@media only screen and (min-width: 1024px) {
  .footer__social-link {
    margin: 0 20px 20px 0;
  }
}
.footer__social-link img {
  width: auto;
  height: 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.footer__social-link img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.footer__container-details {
  text-align: left;
  font-size: 14px;
  color: #666;
  grid-column: 3/5;
  grid-row: 4/5;
}
@media only screen and (min-width: 600px) {
  .footer__container-details {
    grid-column: 7/10;
    grid-row: 2/3;
  }
}
.footer__container-details .wysiwyg p,
.footer__container-details .wysiwyg a {
  font-size: 16px;
  line-height: 19px;
  text-decoration: none;
}
@media only screen and (min-width: 600px) {
  .footer__container-details .wysiwyg p {
    font-size: 20px;
  }
}
.footer__container-details__details {
  line-height: 1.6;
}
.footer__container-cta {
  background-color: #072343;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 50px 20px;
  border-radius: 3px;
  min-height: 100%;
  grid-column: 1/5;
  grid-row: 5/6;
}
@media only screen and (min-width: 600px) {
  .footer__container-cta {
    grid-column: 1/10;
    grid-row: 3/4;
  }
}
@media only screen and (min-width: 1024px) {
  .footer__container-cta {
    grid-column: 10/13;
    grid-row: 1/4;
  }
}
.footer__cta-title {
  font-size: 35px;
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  line-height: 1.1;
  color: #072343;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 25px;
}
@media only screen and (min-width: 1024px) {
  .footer__cta-title {
    font-size: 50px;
  }
}
.footer__cta-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: all;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 30px;
  padding: 9px 40px 9px 14px;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.footer__cta-link svg {
  margin-left: 25px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.footer__cta-link:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  width: 15px;
  height: 15px;
  background-image: url("../../src/svg/arrow-btn-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px auto, 100%;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .footer__cta-link:before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    width: 15px;
    height: 15px;
    background-image: url("../../src/svg/arrow-btn-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px auto, 100%;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .footer__cta-link:hover {
    padding: 9px 14px 9px 40px;
  }
  .footer__cta-link:hover:before {
    left: 14px;
  }
  .footer__cta-link:hover:after {
    right: -20px;
  }
}
.footer__container-copyright {
  opacity: 40%;
  grid-column: 1/5;
  grid-row: 6/7;
  font-size: 12px;
  color: #072343;
}
.footer__container-copyright .wysiwyg p,
.footer__container-copyright .wysiwyg a {
  font-size: 12px;
  line-height: 16px;
  text-decoration: none;
}
@media only screen and (min-width: 600px) {
  .footer__container-copyright {
    grid-column: 1/10;
    grid-row: 4/5;
  }
}
@media only screen and (min-width: 1024px) {
  .footer__container-copyright {
    grid-row: 3/4;
  }
}
.footer__container-copyright__copyright {
  margin: 10px 0;
}

.cursor__ball {
  -webkit-transform: translate(0px, 0px);
          transform: translate(0px, 0px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  mix-blend-mode: difference;
  height: 100px;
  width: 100px;
}
.cursor__ball svg {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.cursor__ball circle {
  shape-rendering: geometricPrecision;
  fill: #ccc;
  fill-opacity: 0;
  stroke: #ccc;
  stroke-width: 2;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.cursor__ball--big svg {
  width: 100px;
  height: 100px;
}
.cursor__ball--small circle {
  fill-opacity: 1;
  stroke-width: 0;
}
.cursor__text {
  height: 100px;
  width: 100px;
}
.cursor__text p {
  color: #ffffff;
  opacity: 0;
  mix-blend-mode: difference;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.cursor__image {
  width: 200px;
  height: 200px;
}
.cursor__image div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 200px;
  height: 200px;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.cursor__image div img {
  width: 100%;
}
.cursor--animate .cursor__ball--big svg {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.cursor--expand .cursor__ball--big svg {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.cursor--text .cursor__ball--small svg {
  opacity: 0;
}
.cursor--text .cursor__text p {
  opacity: 1;
}
.cursor--image .cursor__ball--small svg,
.cursor--image .cursor__ball--big svg {
  opacity: 0;
}
.cursor--image .cursor__image div {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.cursor--other .cursor__ball--big svg circle {
  fill-opacity: 1;
  fill: #dafba1;
  stroke: #dafba1;
}

.module-content__container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .module-content__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 600px) {
  .module-content__container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1024px) {
  .module-content__container {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
@media only screen and (min-width: 600px) {
  .module-content__grid {
    padding-left: 8.33%;
    padding-right: 8.33%;
  }
}
@media only screen and (min-width: 1024px) {
  .module-content__grid {
    padding-left: 8.33%;
  }
}
@media only screen and (min-width: 1024px) {
  .module-content__grid-top {
    max-width: 500px;
    padding-left: 60px;
    padding-right: 60px;
  }
}
.module-content__tag {
  margin-bottom: 15px;
  width: 75%;
  opacity: 0;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.module-content__container-image {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  height: 0;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 25px;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 600px) {
  .module-content__container-image {
    width: 60%;
    padding-bottom: 40%;
  }
}
@media only screen and (min-width: 1024px) {
  .module-content__container-image {
    width: 100%;
    padding-bottom: 60%;
    margin-bottom: -60px;
  }
}
.module-content__container-image::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #072343;
  top: 0;
  left: 0;
  -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: top;
          transform-origin: top;
}
.module-content__image {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  margin: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}
.module-content__title {
  margin-bottom: 25px;
}
@media only screen and (min-width: 1024px) {
  .module-content__title .space {
    display: inline-block;
    width: 500px;
  }
}
.module-content__container-link {
  margin-top: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  width: 150px;
  top: -10px;
  opacity: 0;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}
@media only screen and (min-width: 1024px) {
  .module-content__container-link {
    margin-top: 0;
    display: inline-block;
  }
}
.module-content__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: all;
  border: 2px solid #072343;
  color: #072343;
  border-radius: 30px;
  padding: 9px 40px 9px 14px;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.module-content__link svg {
  margin-left: 25px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.module-content__link:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  width: 15px;
  height: 15px;
  background-image: url("../../src/svg/arrow-btn.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px auto, 100%;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .module-content__link:before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    width: 15px;
    height: 15px;
    background-image: url("../../src/svg/arrow-btn.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px auto, 100%;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .module-content__link:hover {
    padding: 9px 14px 9px 40px;
  }
  .module-content__link:hover:before {
    left: 14px;
  }
  .module-content__link:hover:after {
    right: -20px;
  }
}
@media only screen and (min-width: 1024px) {
  .module-content__link {
    width: 220px;
  }
}
.module-content__video-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .module-content__video-container {
    margin-bottom: -60px;
  }
}
.module-content__video-container::after {
  z-index: 3;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #072343;
  top: 0;
  left: 0;
  -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: top;
          transform-origin: top;
}
.module-content__video-grid {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  height: 0;
  overflow: hidden;
  border-radius: 3px;
}
.module-content__play {
  position: absolute;
  z-index: 3;
  width: 50px;
  cursor: pointer;
  -webkit-transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.module-content__play--hide {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  pointer-events: none;
}
@media only screen and (min-width: 37.5rem) {
  .module-content__play {
    width: 80px;
  }
}
@media only screen and (min-width: 64rem) {
  .module-content__play {
    width: 100px;
  }
  .module-content__play:hover {
    -webkit-transform: translateZ(0) scale(0.9);
            transform: translateZ(0) scale(0.9);
  }
}
.module-content__video {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  margin: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}
.module-content--tadam .word-content {
  -webkit-transform: translateZ(0) translateY(0);
          transform: translateZ(0) translateY(0);
}
.module-content--tadam .module-content__tag {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.module-content--tadam .module-content__video-container {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.module-content--tadam .module-content__video-container::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.module-content--tadam .module-content__video {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.module-content--tadam .module-content__container-image {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.module-content--tadam .module-content__container-image::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.module-content--tadam .module-content__image {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.module-content--tadam .module-content__container-link {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.module-cta {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 600px) {
  .module-cta {
    padding: 100px 0;
  }
}
@media only screen and (min-width: 1024px) {
  .module-cta {
    width: calc(100% - 40px);
    margin: 20px;
    padding: 150px 0;
  }
}
.module-cta__container {
  position: relative;
  z-index: 10;
}
.module-cta__grid {
  padding: 30px;
}
@media only screen and (min-width: 1024px) {
  .module-cta__grid {
    padding: 30px 100px;
  }
}
.module-cta__card {
  background-color: #ffffff;
  padding: 60px 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
          clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  -webkit-transition: -webkit-clip-path 1s polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: -webkit-clip-path 1s polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: clip-path 1s polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  transition: clip-path 1s polygon(0 100%, 100% 100%, 100% 100%, 0 100%), -webkit-clip-path 1s polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  overflow: hidden;
}
.module-cta__card--tadam {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.module-cta__card--tadam .word-content {
  -webkit-transform: translateZ(0) translateY(0);
          transform: translateZ(0) translateY(0);
}
.module-cta__card--tadam .module-cta__container-link {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.module-cta__card--tadam .module-cta__subtitle {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media only screen and (min-width: 600px) {
  .module-cta__card {
    max-width: 480px;
    margin: auto;
  }
}
@media only screen and (min-width: 1024px) {
  .module-cta__card {
    padding: 100px 50px;
    margin: 0;
    -webkit-transform: translateY(200px);
            transform: translateY(200px);
    opacity: 0;
    -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.module-cta__title {
  text-align: center;
  margin-bottom: 40px;
}
.module-cta__container-link {
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}
.module-cta__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: all;
  border: 2px solid #072343;
  color: #072343;
  border-radius: 30px;
  padding: 9px 40px 9px 14px;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.module-cta__link svg {
  margin-left: 25px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.module-cta__link:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  width: 15px;
  height: 15px;
  background-image: url("../../src/svg/arrow-btn.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px auto, 100%;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .module-cta__link:before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    width: 15px;
    height: 15px;
    background-image: url("../../src/svg/arrow-btn.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px auto, 100%;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .module-cta__link:hover {
    padding: 9px 14px 9px 40px;
  }
  .module-cta__link:hover:before {
    left: 14px;
  }
  .module-cta__link:hover:after {
    right: -20px;
  }
}
.module-cta__subtitle {
  text-align: center;
  margin-top: 40px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1s;
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1s;
}
.module-cta__image {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  margin: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media only screen and (min-width: 1024px) {
  .module-cta__image {
    -o-object-position: left;
       object-position: left;
  }
}
.module-cta--tadam .module-cta__card {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.module-cta-marquee {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  padding: 30px 0;
}
@media only screen and (min-width: 1024px) {
  .module-cta-marquee {
    padding: 25px 0;
    margin: 100px 0;
  }
}
.module-cta-marquee__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .module-cta-marquee__container:hover .module-cta-marquee__gray {
    height: 250px;
    background-color: #072343;
  }
  .module-cta-marquee__container:hover .module-cta-marquee__title p {
    color: #ffffff !important;
  }
  .module-cta-marquee__container:hover .module-cta-marquee__title svg path {
    stroke: #ffffff;
  }
  .module-cta-marquee__container:hover .module-cta-marquee__title svg line {
    stroke: #ffffff;
  }
}
.module-cta-marquee__gray {
  position: relative;
  display: block;
  background-color: #f4f4f4;
  width: calc(100% - 20px);
  height: 175px;
  margin: auto;
}
.module-cta-marquee__gray::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #072343;
  bottom: -25px;
  left: 0;
}
@media only screen and (min-width: 1024px) {
  .module-cta-marquee__gray::before {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.module-cta-marquee__gray::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #072343;
  top: -25px;
  left: 0;
}
@media only screen and (min-width: 1024px) {
  .module-cta-marquee__gray::after {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
@media only screen and (min-width: 1024px) {
  .module-cta-marquee__gray {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: calc(100% - 40px);
  }
  .module-cta-marquee__gray:hover {
    height: 250px;
  }
}
@media only screen and (min-width: 1024px) {
  .module-cta-marquee__title {
    -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    -webkit-transform: translateY(150px);
            transform: translateY(150px);
  }
}
.module-cta-marquee__title p {
  font-size: 50px;
  line-height: 1.5;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.module-cta-marquee__title span {
  margin-left: 0.2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.module-cta-marquee__title svg {
  width: 30px;
  height: auto;
  margin-left: 0.2em;
}
.module-cta-marquee__title svg path {
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.module-cta-marquee__title svg line {
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 600px) {
  .module-cta-marquee__title p {
    font-size: 70px;
  }
}
.module-cta-marquee__marquee {
  width: 100%;
  position: absolute;
  z-index: 2;
}
.module-cta-marquee--tadam .module-cta-marquee__gray::before {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.module-cta-marquee--tadam .module-cta-marquee__gray::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.module-cta-marquee--tadam .module-cta-marquee__title {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.module-description {
  padding-bottom: 50px;
}
.module-description--white .module-description__title {
  color: #ffffff !important;
}
.module-description--white .module-description__description {
  color: #ffffff !important;
}
@media only screen and (min-width: 1024px) {
  .module-description {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1024px) {
  .module-description__grid {
    display: grid;
    grid-template-columns: 5fr 4fr;
  }
}
.module-description__title {
  color: #072343;
  font-size: 20px;
  line-height: 1.2;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
@media only screen and (min-width: 1024px) {
  .module-description__title {
    font-size: 24px;
    margin-bottom: 0;
    max-width: 330px;
  }
}
.module-description__description {
  color: #072343;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 30px;
  max-width: 330px;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.module-description--tadam .module-description__title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.module-description--tadam .module-description__description {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.module-image-large {
  padding-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .module-image-large {
    padding-bottom: 100px;
  }
}
.module-image-large__container-image {
  overflow: hidden;
}
.module-image-large__image {
  width: 100%;
}
.module-image-large__description {
  font-size: 14px;
  line-height: 16px;
  color: #2d2926;
  width: 75%;
  margin-top: 10px;
  position: relative;
  padding-left: 20px;
}
.module-image-large__description:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  background-image: url("../../src/svg/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px auto, 100%;
}
@media only screen and (min-width: 600px) {
  .module-image-large__description {
    width: 100%;
    max-width: 200px;
  }
}
.module-image-large--tadam .module-image-large__container-image {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.module-image-large--tadam .module-image-large__description {
  opacity: 1;
}

.module-duo {
  padding-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .module-duo {
    padding-bottom: 100px;
  }
}
.module-duo__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 15px;
}
@media only screen and (min-width: 600px) {
  .module-duo__grid {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
.module-duo__grid-item {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.module-duo__grid-item--tadam {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media only screen and (min-width: 600px) {
  .module-duo__grid-item:nth-child(2n) {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
}
.module-duo__container-image-second {
  width: 100%;
}
.module-duo__image {
  width: 100%;
}
.module-duo__description {
  font-size: 14px;
  line-height: 16px;
  color: #2d2926;
  width: 75%;
  margin-top: 10px;
  position: relative;
  padding-left: 20px;
}
.module-duo__description:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  background-image: url("../../src/svg/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px auto, 100%;
}
@media only screen and (min-width: 600px) {
  .module-duo__description {
    width: 100%;
    max-width: 200px;
  }
}
.module-duo--tadam .module-duo__container-image-first {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.module-duo--tadam .module-duo__container-image-second {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.module-duo--tadam .module-duo__description {
  opacity: 1;
}

.module-third {
  padding-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .module-third {
    padding-bottom: 100px;
  }
}
.module-third__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}
@media only screen and (min-width: 600px) {
  .module-third__grid {
    grid-template-columns: 1fr 1fr 1fr;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
.module-third__grid-item {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.module-third__grid-item--tadam {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media only screen and (min-width: 600px) {
  .module-third__grid-item:nth-child(2n) {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .module-third__grid-item:nth-child(3n) {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
}
.module-third__container-image-first {
  width: 100%;
}
.module-third__container-image-second {
  width: 100%;
}
.module-third__image {
  width: 100%;
}
.module-third__description {
  font-size: 14px;
  line-height: 16px;
  color: #2d2926;
  width: 75%;
  margin-top: 10px;
  position: relative;
  padding-left: 20px;
}
.module-third__description:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  background-image: url("../../src/svg/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px auto, 100%;
}
@media only screen and (min-width: 600px) {
  .module-third__description {
    width: 100%;
    max-width: 200px;
  }
}
.module-third--tadam .module-third__container-image-first {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.module-third--tadam .module-third__container-image-second {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.module-third--tadam .module-third__description {
  opacity: 1;
}

.module-wysiwyg {
  padding-bottom: 50px;
  -webkit-transition: 0.8s cubic-bezier(0.3, 1, 0.7, 1);
  transition: 0.8s cubic-bezier(0.3, 1, 0.7, 1);
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
}
@media only screen and (min-width: 1024px) {
  .module-wysiwyg {
    padding-bottom: 100px;
  }
}
.module-wysiwyg__grid {
  display: inline-block;
}
.module-wysiwyg--tadam {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.module-material {
  padding-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .module-material {
    padding-bottom: 100px;
  }
}
.module-material__title {
  margin-bottom: 30px;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.module-material__grid {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}
@media only screen and (min-width: 1024px) {
  .module-material__grid {
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
.module-material__card {
  display: grid;
  grid-template-columns: 1fr 3fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #e5e5e5;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
@media only screen and (min-width: 1024px) {
  .module-material__card {
    grid-template-columns: 2fr 4fr;
  }
}
.module-material__card:nth-of-type(1n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}
.module-material__card:nth-of-type(2n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}
.module-material__card:nth-of-type(3n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
}
.module-material__card:nth-of-type(4n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}
.module-material__card:nth-of-type(5n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
}
.module-material__card:nth-of-type(6n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1s;
}
.module-material__card:nth-of-type(7n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.1s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.1s;
}
.module-material__card:nth-of-type(8n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
}
.module-material__card:nth-of-type(9n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.3s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.3s;
}
.module-material__card:nth-of-type(10n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.4s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.4s;
}
.module-material__card:nth-of-type(11n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
}
.module-material__card:nth-of-type(12n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.6s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.6s;
}
.module-material__card:nth-of-type(13n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.7s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.7s;
}
.module-material__card:nth-of-type(14n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.8s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.8s;
}
.module-material__card:nth-of-type(15n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.9s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 1.9s;
}
.module-material__card:nth-of-type(16n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2s;
}
.module-material__card:nth-of-type(17n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.1s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.1s;
}
.module-material__card:nth-of-type(18n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.2s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.2s;
}
.module-material__card:nth-of-type(19n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.3s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.3s;
}
.module-material__card:nth-of-type(20n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.4s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.4s;
}
.module-material__card:nth-of-type(21n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.5s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.5s;
}
.module-material__card:nth-of-type(22n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.6s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.6s;
}
.module-material__card:nth-of-type(23n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.7s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.7s;
}
.module-material__card:nth-of-type(24n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.8s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.8s;
}
.module-material__card:nth-of-type(25n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.9s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 2.9s;
}
.module-material__card:nth-of-type(26n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3s;
}
.module-material__card:nth-of-type(27n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.1s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.1s;
}
.module-material__card:nth-of-type(28n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.2s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.2s;
}
.module-material__card:nth-of-type(29n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.3s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.3s;
}
.module-material__card:nth-of-type(30n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.4s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.4s;
}
.module-material__card:nth-of-type(31n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.5s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.5s;
}
.module-material__card:nth-of-type(32n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.6s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.6s;
}
.module-material__card:nth-of-type(33n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.7s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.7s;
}
.module-material__card:nth-of-type(34n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.8s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.8s;
}
.module-material__card:nth-of-type(35n) {
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.9s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 3.9s;
}
.module-material__container-image {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
  width: 100%;
  height: 100%;
}
.module-material__image {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.module-material__informations {
  padding: 30px;
}
.module-material__informations p {
  font-size: 14px !important;
  line-height: 1 !important;
}
@media only screen and (min-width: 1024px) {
  .module-material__informations p {
    font-size: 16px !important;
  }
}
.module-material__informations p strong {
  display: inline-block;
  margin-bottom: 10px;
}
.module-material--tadam .module-material__title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.module-material--tadam .module-material__card {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.module-spacer {
  display: block;
  height: var(--height-mobile);
}
@media only screen and (min-width: 37.5rem) {
  .module-spacer {
    height: var(--height-tablet);
  }
}
@media only screen and (min-width: 64rem) {
  .module-spacer {
    height: var(--height-desktop);
  }
}

.module-contact-application {
  overflow-y: scroll;
  overflow-x: hidden;
  opacity: 0;
  height: 100vh;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5001;
  scroll-behavior: smooth;
  pointer-events: none;
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  background-color: #072343;
  background-size: cover;
}
.module-contact-application__close-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
.module-contact-application__close {
  color: #ffffff;
  font-size: 20px;
  position: fixed;
  top: 20px;
  right: 10px;
  cursor: pointer;
  z-index: 10;
}
.module-contact-application__title {
  font-size: 18px;
  line-height: 22px;
  color: #ffffff;
  margin-bottom: 25px;
}
.module-contact-application__container {
  margin: 0 10px;
  position: relative;
  z-index: 1;
  pointer-events: none;
  display: block;
  padding-bottom: 0;
  height: 0;
  scroll-behavior: smooth;
  -webkit-transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s, -webkit-transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s;
  transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s, -webkit-transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s;
  transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s, transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s;
  transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s, transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s, -webkit-transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s;
  opacity: 0;
}
.module-contact-application__container--block {
  opacity: 1;
  -webkit-transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99), -webkit-transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99);
  transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99), -webkit-transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99);
  transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99), transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99);
  transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99), transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99), -webkit-transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99);
  margin-bottom: 50px;
  pointer-events: all !important;
}
.module-contact-application__container--block .module-contact-application__content {
  overflow: visible;
  height: 100%;
  padding-top: 100px;
  padding-bottom: 100px;
}
.module-contact-application__form {
  /* Conteneur principal */
  /* Bouton de sélection des fichiers */
  /* Texte d'instructions pour le drag & drop */
  /* Liste des fichiers prévisualisés */
  /* Style des messages de validation */
  /* Texte descriptif sous le champ */
}
.module-contact-application__form .gform_anchor {
  position: absolute;
  top: 0;
}
.module-contact-application__form .gform_required_legend {
  display: none;
}
.module-contact-application__form *:focus {
  outline: none;
}
.module-contact-application__form .gform_fields,
.module-contact-application__form .gform_footer {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
  width: 100%;
}
@media only screen and (min-width: 37.5rem) {
  .module-contact-application__form .gform_fields,
.module-contact-application__form .gform_footer {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    grid-template-columns: repeat(2, 1fr);
  }
}
.module-contact-application__form .gform_validation_errors {
  width: 100%;
  margin-bottom: 20px;
}
.module-contact-application__form .gform_validation_errors h1,
.module-contact-application__form .gform_validation_errors h2,
.module-contact-application__form .gform_validation_errors h3,
.module-contact-application__form .gform_validation_errors h4,
.module-contact-application__form .gform_validation_errors h5,
.module-contact-application__form .gform_validation_errors h6,
.module-contact-application__form .gform_validation_errors p {
  color: #072343;
  font-size: 16px;
  line-height: 24px;
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #ffffff;
}
@media only screen and (min-width: 600px) {
  .module-contact-application__form .gform_validation_errors h1,
.module-contact-application__form .gform_validation_errors h2,
.module-contact-application__form .gform_validation_errors h3,
.module-contact-application__form .gform_validation_errors h4,
.module-contact-application__form .gform_validation_errors h5,
.module-contact-application__form .gform_validation_errors h6,
.module-contact-application__form .gform_validation_errors p {
    font-size: 18px;
    line-height: 26px;
  }
}
.module-contact-application__form .gform_confirmation_message {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 25px 20px;
  background-color: white;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
}
@media only screen and (min-width: 37.5rem) {
  .module-contact-application__form .gform_confirmation_message {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 64rem) {
  .module-contact-application__form .gform_confirmation_message {
    padding: 40px 15%;
    width: 66.66666%;
    margin-left: 16.66666%;
    margin-right: 16.66666%;
  }
}
.module-contact-application__form form:not(#gform_2):not(#gform_3) {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
  width: 100%;
}
@media only screen and (min-width: 37.5rem) {
  .module-contact-application__form form:not(#gform_2):not(#gform_3) {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 64rem) {
  .module-contact-application__form form:not(#gform_2):not(#gform_3) {
    width: 66.66666%;
    margin: 0 16.66666%;
  }
}
.module-contact-application__form .input-container {
  position: relative;
  width: 100%;
}
.module-contact-application__form .input-container:not(.gfield) {
  border-radius: 3px;
  background-color: #ffffff;
}
.module-contact-application__form .input-container .ginput_container {
  border-radius: 3px;
  background-color: #ffffff;
}
@media only screen and (min-width: 37.5rem) {
  .module-contact-application__form .input-container--textarea {
    grid-column: 1/3;
  }
}
@media only screen and (min-width: 37.5rem) {
  .module-contact-application__form .input-container--full {
    grid-column: 1/3;
  }
}
.module-contact-application__form .input-container--dropdown {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.module-contact-application__form .input-container--dropdown .ginput_container {
  width: 100%;
}
.module-contact-application__form .input-container--dropdown .ginput_container select {
  width: 100%;
}
.module-contact-application__form .input-container--dropdown:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-image: url(../svg/arrow-down.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  pointer-events: none;
}
.module-contact-application__form .input-container label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #676767;
  position: absolute;
  left: 20px;
  top: 21px;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  pointer-events: none;
  -webkit-transition: 0.5s cubic-bezier(0.3, 0.86, 0.36, 0.95);
  transition: 0.5s cubic-bezier(0.3, 0.86, 0.36, 0.95);
}
.module-contact-application__form .input-container.gfield:has(.ginput_container input:not(:-moz-placeholder-shown)) label:not(.gfield--type-fileupload label), .module-contact-application__form .input-container.gfield:has(.ginput_container select:not(:-moz-placeholder-shown)) label:not(.gfield--type-fileupload label), .module-contact-application__form .input-container.gfield:has(.ginput_container textarea:not(:-moz-placeholder-shown)) label:not(.gfield--type-fileupload label) {
  transform: scale(0.8);
  top: 14px;
}
.module-contact-application__form .input-container.gfield:has(.ginput_container input:not(:-ms-input-placeholder)) label:not(.gfield--type-fileupload label), .module-contact-application__form .input-container.gfield:has(.ginput_container select:not(:-ms-input-placeholder)) label:not(.gfield--type-fileupload label), .module-contact-application__form .input-container.gfield:has(.ginput_container textarea:not(:-ms-input-placeholder)) label:not(.gfield--type-fileupload label) {
  transform: scale(0.8);
  top: 14px;
}
.module-contact-application__form .input-container.gfield:has(.ginput_container input:focus) label:not(.gfield--type-fileupload label), .module-contact-application__form .input-container.gfield:has(.ginput_container input:not(:placeholder-shown)) label:not(.gfield--type-fileupload label), .module-contact-application__form .input-container.gfield:has(.ginput_container select:focus) label:not(.gfield--type-fileupload label), .module-contact-application__form .input-container.gfield:has(.ginput_container select:not(:placeholder-shown)) label:not(.gfield--type-fileupload label), .module-contact-application__form .input-container.gfield:has(.ginput_container textarea:focus) label:not(.gfield--type-fileupload label), .module-contact-application__form .input-container.gfield:has(.ginput_container textarea:not(:placeholder-shown)) label:not(.gfield--type-fileupload label) {
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  top: 14px;
}
.module-contact-application__form .input-container input,
.module-contact-application__form .input-container select,
.module-contact-application__form .input-container textarea {
  width: calc(100% - 40px);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  color: #2d2926;
  padding: 20px 20px;
  -webkit-transition: 0.5s cubic-bezier(0.3, 0.86, 0.36, 0.95);
  transition: 0.5s cubic-bezier(0.3, 0.86, 0.36, 0.95);
}
.module-contact-application__form .input-container input:not(:-moz-placeholder-shown), .module-contact-application__form .input-container select:not(:-moz-placeholder-shown), .module-contact-application__form .input-container textarea:not(:-moz-placeholder-shown) {
  padding: 30px 20px 10px 20px;
}
.module-contact-application__form .input-container input:not(:-ms-input-placeholder), .module-contact-application__form .input-container select:not(:-ms-input-placeholder), .module-contact-application__form .input-container textarea:not(:-ms-input-placeholder) {
  padding: 30px 20px 10px 20px;
}
.module-contact-application__form .input-container input:not(:placeholder-shown), .module-contact-application__form .input-container input:focus,
.module-contact-application__form .input-container select:not(:placeholder-shown),
.module-contact-application__form .input-container select:focus,
.module-contact-application__form .input-container textarea:not(:placeholder-shown),
.module-contact-application__form .input-container textarea:focus {
  padding: 30px 20px 10px 20px;
}
.module-contact-application__form .input-container textarea {
  min-height: 160px;
}
.module-contact-application__form .input-container .instruction {
  display: none;
}
.module-contact-application__form .input-container .gfield_validation_message {
  font-size: 0.75rem;
  font-weight: 400;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 10px;
}
.module-contact-application__form .checkbox-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  grid-gap: 15px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 37.5rem) {
  .module-contact-application__form .checkbox-container {
    grid-column: 1/3;
  }
}
.module-contact-application__form .checkbox-container p {
  width: 100%;
  font-size: 0.9375rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.module-contact-application__form .checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.module-contact-application__form .checkbox-container input:checked ~ .checkmark:after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.module-contact-application__form .checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  border-radius: 4px;
  background-color: #ffffff;
}
.module-contact-application__form .checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: block;
  left: 2px;
  top: 2px;
  width: 10px;
  height: 10px;
  background-color: #2d2926;
  border-radius: 3px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.3, 0.86, 0.36, 0.95);
  transition: 0.3s cubic-bezier(0.3, 0.86, 0.36, 0.95);
}
.module-contact-application__form .checkbox-container label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #676767;
  padding-left: 22px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.module-contact-application__form .consent-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-gap: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 37.5rem) {
  .module-contact-application__form .consent-container {
    grid-column: 1/3;
  }
}
.module-contact-application__form .consent-container p {
  width: 100%;
  font-size: 0.9375rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.module-contact-application__form .consent-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.module-contact-application__form .consent-container input:checked ~ .checkmark:after {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.module-contact-application__form .consent-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  border-radius: 4px;
  background-color: #ffffff;
}
.module-contact-application__form .consent-container .checkmark:after {
  content: "";
  position: absolute;
  display: block;
  left: 2px;
  top: 2px;
  width: 10px;
  height: 10px;
  background-color: #2d2926;
  border-radius: 3px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.3, 0.86, 0.36, 0.95);
  transition: 0.3s cubic-bezier(0.3, 0.86, 0.36, 0.95);
}
.module-contact-application__form .consent-container label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #676767;
  padding-left: 22px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.module-contact-application__form .g-recaptcha {
  width: 100%;
}
@media only screen and (min-width: 37.5rem) {
  .module-contact-application__form .g-recaptcha {
    grid-column: 1/3;
  }
}
.module-contact-application__form .button-container {
  width: 100%;
}
@media only screen and (min-width: 37.5rem) {
  .module-contact-application__form .button-container {
    grid-column: 1/3;
  }
}
.module-contact-application__form .gform_footer {
  margin-top: 30px;
}
@media only screen and (min-width: 37.5rem) {
  .module-contact-application__form .gform_footer {
    margin-top: 40px;
  }
}
.module-contact-application__form .button-container,
.module-contact-application__form .gform_footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
}
.module-contact-application__form .button-container:after,
.module-contact-application__form .gform_footer:after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  margin-left: 50px;
  background-image: url(../svg/arrow-btn-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 13px;
  pointer-events: none;
}
@media only screen and (min-width: 37.5rem) {
  .module-contact-application__form .button-container:after,
.module-contact-application__form .gform_footer:after {
    -webkit-transition: 0.5s cubic-bezier(0.3, 0.86, 0.36, 0.95);
    transition: 0.5s cubic-bezier(0.3, 0.86, 0.36, 0.95);
  }
}
.module-contact-application__form .button-container input,
.module-contact-application__form .gform_footer input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: all;
  border: 2px solid #ffffff;
  color: #ffffff;
  border-radius: 30px;
  padding: 9px 40px 9px 14px;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  text-align: left;
  width: 100%;
  -webkit-transition: 0.5s cubic-bezier(0.3, 0.86, 0.36, 0.95);
  transition: 0.5s cubic-bezier(0.3, 0.86, 0.36, 0.95);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
.module-contact-application__form .button-container .gform_ajax_spinner,
.module-contact-application__form .gform_footer .gform_ajax_spinner {
  display: none !important;
}
@media only screen and (min-width: 37.5rem) {
  .module-contact-application__form .button-container:hover input,
.module-contact-application__form .gform_footer:hover input {
    background-color: #ffffff;
    color: #072343;
  }
  .module-contact-application__form .button-container:hover::after,
.module-contact-application__form .gform_footer:hover::after {
    -webkit-filter: invert(1);
            filter: invert(1);
  }
}
.module-contact-application__form .form-section {
  font-size: 1.0625rem;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 37.5rem) {
  .module-contact-application__form .form-section {
    grid-column: 1/3;
  }
}
.module-contact-application__form .ginput_container_fileupload {
  background-color: transparent !important;
}
.module-contact-application__form .gform_fileupload_multifile {
  background-color: #ffffff;
}
.module-contact-application__form .gfield--type-fileupload label {
  top: 10px;
  z-index: 1;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
.module-contact-application__form .gform_drop_instructions {
  display: none !important;
}
.module-contact-application__form .gform_fileupload_multifile {
  border-radius: 3px;
  padding: 30px 13px 13px 13px;
}
.module-contact-application__form .gform_button_select_files {
  background-color: #072343;
  border-radius: 30px;
  padding: 9px 15px;
  color: #ffffff;
  font-weight: 600;
}
.module-contact-application__form .gform_drop_instructions {
  font-size: 16px;
  font-weight: bold;
  color: #666;
  display: block;
  margin-bottom: 10px;
}
.module-contact-application__form .ginput_preview_list {
  list-style: none;
  padding: 0;
}
.module-contact-application__form .ginput_preview {
  color: #ffffff;
  font-size: 14px;
}
.module-contact-application__form .dashicons-trash {
  color: #ffffff;
}
.module-contact-application__form .gform_fileupload_rules {
  display: none;
}
.module-contact-application__form .gform_preview li button {
  background: none;
  border: none;
  color: #d9534f;
  cursor: pointer;
  font-size: 14px;
}
.module-contact-application__form .gform_multifile_messages {
  color: #d9534f;
  font-size: 14px;
}
.module-contact-application__form .gfield_description {
  font-size: 12px;
  color: #999;
  margin-top: 5px;
}
.module-contact-application__form .gform_preview {
  display: block !important;
  list-style: none;
  padding: 0;
}
.module-contact-application__form .gform_preview li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  margin-bottom: 5px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f7f7f7;
}
.module-contact-application__form .gform_preview li span {
  font-size: 14px;
  color: #333;
}
.module-contact-application__form .gform_preview li button {
  background-color: #d9534f;
  color: #fff;
  border: none;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 12px;
}
.module-contact-application__form .gform_preview li button:hover {
  background-color: #c9302c;
}
.module-contact-application__content {
  overflow: hidden;
  height: 0;
  position: relative;
  z-index: 11;
}
.module-contact-application--active {
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  opacity: 1;
  pointer-events: all;
}

@media only screen and (min-width: 600px) {
  .module-contact-application {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .module-contact-application__container {
    width: 80%;
    margin: 0 auto;
    top: 0;
    background-color: transparent;
    overflow: visible;
    -webkit-transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s, -webkit-transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s;
    transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s, -webkit-transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s;
    transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s, transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s;
    transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s, transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s, -webkit-transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99) 1s;
    opacity: 0;
  }
  .module-contact-application__container--closed {
    overflow: hidden;
  }
  .module-contact-application__container--block {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99), -webkit-transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99);
    transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99), -webkit-transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99);
    transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99), transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99);
    transition: opacity 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99), transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99), -webkit-transform 0.5s cubic-bezier(0.45, 2.04, 0.57, 0.99);
  }
  .module-contact-application__container--block .module-contact-application__card-bg {
    -webkit-transform: rotate(-6deg) translateX(-30px) translateY(0);
            transform: rotate(-6deg) translateX(-30px) translateY(0);
    opacity: 1;
  }
  .module-contact-application__container--block .module-contact-application__card-after {
    display: block;
  }
  .module-contact-application__content {
    position: relative;
    z-index: 4;
  }
  .module-contact-application__title {
    font-size: 30px;
    line-height: 34px;
  }
  .module-contact-application__separator {
    display: none;
  }
}
@media only screen and (min-width: 1024px) {
  .module-contact-application__container {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: none;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .module-contact-application__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .module-contact-application__close {
    top: 30px;
    right: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .module-contact-application__content {
    display: grid;
    grid-template-columns: 4fr 6fr;
    -webkit-column-gap: 100px;
       -moz-column-gap: 100px;
            column-gap: 100px;
    padding: 0 8.33%;
  }
}
@media only screen and (min-width: 1024px) {
  .module-contact-application__close {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .module-contact-application__close:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.module-video {
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #151515e1;
  height: 0;
  max-height: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5001;
  scroll-behavior: unset;
  pointer-events: none;
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1) 300ms;
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1) 300ms;
}
.module-video__container {
  margin-top: 150px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
}
@media only screen and (min-width: 1024px) {
  .module-video__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.module-video__container-close {
  cursor: pointer;
  position: fixed;
  top: 30px;
  right: 10px;
  opacity: 0;
}
.module-video__close {
  color: #ffffff;
  font-size: 20px;
}
@media only screen and (min-width: 600px) {
  .module-video__close {
    right: 20px;
  }
}
.module-video__video-container {
  max-width: 1400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.module-video__play {
  position: absolute;
  z-index: 3;
  width: 50px;
  cursor: pointer;
  -webkit-transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.module-video__play--hide {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  pointer-events: none;
}
@media only screen and (min-width: 37.5rem) {
  .module-video__play {
    width: 80px;
  }
}
@media only screen and (min-width: 64rem) {
  .module-video__play {
    width: 100px;
  }
  .module-video__play:hover {
    -webkit-transform: translateZ(0) scale(0.9);
            transform: translateZ(0) scale(0.9);
  }
}
.module-video__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2d2926;
  opacity: 0.2;
  z-index: 2;
  -webkit-transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.module-video__overlay--hide {
  opacity: 0;
  pointer-events: none;
}
.module-video__video {
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
}
.module-video__video--hide {
  opacity: 0;
  pointer-events: none;
}
.module-video__video--preview {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.module-video--active {
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  max-height: 100000px;
  height: 100dvh;
  height: var(--doc-height);
  pointer-events: all;
}
.module-video--active .module-video__container {
  pointer-events: all !important;
}
.module-video--active .module-video__container-close {
  opacity: 1;
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1) 500ms;
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1) 500ms;
}
.module-video--active .module-video__video {
  opacity: 1;
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1) 500ms;
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1) 500ms;
}

.module-video-cta {
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: #151515e1;
  height: 0;
  max-height: 0;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5001;
  scroll-behavior: unset;
  pointer-events: none;
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1) 300ms;
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1) 300ms;
}
.module-video-cta__container {
  margin-top: 150px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
}
@media only screen and (min-width: 1024px) {
  .module-video-cta__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.module-video-cta__container-close {
  cursor: pointer;
  position: fixed;
  top: 30px;
  right: 10px;
  opacity: 0;
}
.module-video-cta__close {
  color: #ffffff;
  font-size: 20px;
}
@media only screen and (min-width: 600px) {
  .module-video-cta__close {
    right: 20px;
  }
}
.module-video-cta__video-container {
  max-width: 1400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.module-video-cta__play {
  position: absolute;
  z-index: 3;
  width: 50px;
  cursor: pointer;
  -webkit-transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.module-video-cta__play--hide {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  pointer-events: none;
}
@media only screen and (min-width: 37.5rem) {
  .module-video-cta__play {
    width: 80px;
  }
}
@media only screen and (min-width: 64rem) {
  .module-video-cta__play {
    width: 100px;
  }
  .module-video-cta__play:hover {
    -webkit-transform: translateZ(0) scale(0.9);
            transform: translateZ(0) scale(0.9);
  }
}
.module-video-cta__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2d2926;
  opacity: 0.2;
  z-index: 2;
  -webkit-transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.module-video-cta__overlay--hide {
  opacity: 0;
  pointer-events: none;
}
.module-video-cta__video {
  width: 100%;
  opacity: 0;
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
}
.module-video-cta__video--hide {
  opacity: 0;
  pointer-events: none;
}
.module-video-cta__video--preview {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.module-video-cta--active {
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  max-height: 100000px;
  height: var(--doc-height);
  height: 100dvh;
  pointer-events: all;
}
.module-video-cta--active .module-video-cta__container {
  pointer-events: all !important;
}
.module-video-cta--active .module-video-cta__container-close {
  opacity: 1;
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1) 500ms;
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1) 500ms;
}
.module-video-cta--active .module-video-cta__video {
  opacity: 1;
  -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1) 500ms;
  transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1) 500ms;
}

@media only screen and (min-width: 600px) {
  .module-video__grid {
    margin-left: 12.5%;
    margin-right: 12.5%;
  }

  .module-video-cta__grid {
    margin-left: 12.5%;
    margin-right: 12.5%;
  }
}
@media only screen and (min-width: 1024px) {
  .module-video__container {
    margin-top: 200px;
  }
  .module-video__grid {
    margin-left: 16%;
    margin-right: 16%;
  }
  .module-video__container-close {
    right: 30px;
  }
  .module-video__close {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .module-video__close:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .module-video__video {
    -webkit-transform: translateY(300px);
            transform: translateY(300px);
  }
  .module-video--active .module-video__video {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }

  .module-video-cta__container {
    margin-top: 200px;
  }
  .module-video-cta__grid {
    margin-left: 16%;
    margin-right: 16%;
  }
  .module-video-cta__container-close {
    right: 30px;
  }
  .module-video-cta__close {
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .module-video-cta__close:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .module-video-cta__video {
    -webkit-transform: translateY(300px);
            transform: translateY(300px);
  }
  .module-video-cta--active .module-video-cta__video {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.module-list__container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .module-list__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .module-list {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 600px) {
  .module-list__grid {
    padding-left: 8.33%;
  }
}
@media only screen and (min-width: 1024px) {
  .module-list__grid-head {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
  }
}
.module-list__container-title-left {
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
@media only screen and (min-width: 1024px) {
  .module-list__container-title-left {
    grid-column: 1/7;
    grid-row: 1/2;
  }
}
.module-list__title-left {
  max-width: 450px;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 30px;
  color: #072343;
}
.module-list__container-title-right {
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
@media only screen and (min-width: 1024px) {
  .module-list__container-title-right {
    grid-column: 7/12;
    grid-row: 1/2;
  }
}
.module-list__title-right {
  max-width: 450px;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 100px;
  color: #072343;
}
.module-list__item {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding: 15px 0 75px 0;
}
.module-list__item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #072343;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .module-list__item {
    grid-template-columns: repeat(11, 1fr);
  }
}
.module-list__item--tadam .word-content {
  -webkit-transform: translateZ(0) translateY(0);
          transform: translateZ(0) translateY(0);
}
.module-list__item--tadam::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.module-list__item--tadam .module-list__container-description {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.module-list__item--tadam .module-list__tag {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.module-list__container-tag {
  grid-column: 1/4;
  grid-row: 1/3;
}
@media only screen and (min-width: 1024px) {
  .module-list__container-tag {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
.module-list__tag {
  display: block;
  background-color: #e5e5e5;
  color: #072343;
  border-radius: 3px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.module-list__container-title {
  grid-column: 4/13;
  grid-row: 1/2;
}
@media only screen and (min-width: 1024px) {
  .module-list__container-title {
    grid-column: 3/7;
    grid-row: 1/2;
    padding-right: 8.33%;
  }
}
.module-list__title {
  font-size: 27px;
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  line-height: 1.2;
  font-weight: 500;
  color: #072343;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1024px) {
  .module-list__title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .module-list__title {
    max-width: 350px;
  }
}
.module-list__container-description {
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  max-width: 450px;
  grid-column: 4/13;
  grid-row: 2/3;
}
@media only screen and (min-width: 1024px) {
  .module-list__container-description {
    grid-column: 7/12;
    grid-row: 1/2;
  }
}
.module-list__link-modal {
  display: block;
  pointer-events: all;
  color: #072343;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 15px;
  cursor: pointer;
}
.module-list__link-modal::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #072343;
  bottom: -5px;
  left: 0;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media only screen and (min-width: 1024px) {
  .module-list__link-modal:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .module-list__link-modal:hover::after {
    -webkit-transform: scaleX(0.5);
            transform: scaleX(0.5);
  }
}
@media only screen and (min-width: 1024px) {
  .module-list__link-modal {
    margin-top: 30px;
  }
}
.module-list .wysiwyg a {
  opacity: 1 !important;
  text-decoration: none;
  line-height: 1;
  display: block;
  pointer-events: all;
  color: #072343;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.module-list .wysiwyg a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #072343;
  bottom: -5px;
  left: 0;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media only screen and (min-width: 1024px) {
  .module-list .wysiwyg a:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .module-list .wysiwyg a:hover::after {
    -webkit-transform: scaleX(0.5);
            transform: scaleX(0.5);
  }
}
.module-list--tadam .module-list__container-title-right {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.module-list--tadam .module-list__container-title-left {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.module-realisations-mobile {
  background-color: #f4f4f4;
  padding-top: 55px;
  padding-bottom: 55px;
  margin-bottom: 50px;
  display: block;
}
.module-realisations-mobile__title {
  padding: 0 10px;
}
@media only screen and (min-width: 600px) {
  .module-realisations-mobile__title {
    padding: 0 8.33%;
  }
}
.module-realisations-mobile__item {
  width: 100%;
}
.module-realisations-mobile__content-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: all;
  border: 2px solid #072343;
  color: #072343;
  border-radius: 30px;
  padding: 9px 40px 9px 14px;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  margin-left: 10px;
  margin-bottom: 40px;
}
.module-realisations-mobile__content-link svg {
  margin-left: 25px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.module-realisations-mobile__content-link:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  width: 15px;
  height: 15px;
  background-image: url("../../src/svg/arrow-btn.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px auto, 100%;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .module-realisations-mobile__content-link:before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    width: 15px;
    height: 15px;
    background-image: url("../../src/svg/arrow-btn.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px auto, 100%;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .module-realisations-mobile__content-link:hover {
    padding: 9px 14px 9px 40px;
  }
  .module-realisations-mobile__content-link:hover:before {
    left: 14px;
  }
  .module-realisations-mobile__content-link:hover:after {
    right: -20px;
  }
}
@media only screen and (min-width: 600px) {
  .module-realisations-mobile__content-link {
    margin-left: 8.33%;
  }
}
.module-realisations-mobile__content-title {
  margin: 40px 10px;
  font-size: 35px;
  line-height: 37px;
}
@media only screen and (min-width: 600px) {
  .module-realisations-mobile__content-title {
    margin-left: 8.33%;
  }
}
.module-realisations-mobile__container-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  border-radius: 3px;
}
@media only screen and (min-width: 600px) {
  .module-realisations-mobile__container-image {
    padding-bottom: 60%;
  }
}
.module-realisations-mobile__image {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  margin: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.module-realisations-mobile__container-link {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.module-realisations-mobile__link {
  display: block;
  pointer-events: all;
  color: #072343;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.module-realisations-mobile__link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #072343;
  bottom: -5px;
  left: 0;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media only screen and (min-width: 1024px) {
  .module-realisations-mobile__link:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .module-realisations-mobile__link:hover::after {
    -webkit-transform: scaleX(0.5);
            transform: scaleX(0.5);
  }
}

.module-realisations {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .module-realisations-mobile {
    display: none;
  }

  .module-realisations {
    display: block;
    position: relative;
    padding-bottom: 100px;
  }
  .module-realisations__container {
    height: 300vh;
    height: 300dvh;
    width: auto;
  }
  .module-realisations__container-images {
    height: 100vh;
    height: 100dvh;
    width: 100%;
    top: 0;
    position: -webkit-sticky;
    position: sticky;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .module-realisations__container-image {
    position: absolute;
    width: 50%;
    right: 0;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    -webkit-animation-delay: calc(var(--cta) * -1s);
            animation-delay: calc(var(--cta) * -1s);
    -webkit-animation-direction: normal;
            animation-direction: normal;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
  }
  .module-realisations__container-image:nth-child(1) {
    top: 0;
    z-index: 3;
    -webkit-animation-name: cta-images-1;
            animation-name: cta-images-1;
  }
  .module-realisations__container-image:nth-child(2) {
    top: 0;
    z-index: 2;
    -webkit-animation-name: cta-images-2;
            animation-name: cta-images-2;
  }
  .module-realisations__container-image:nth-child(3) {
    top: 0;
    z-index: 1;
  }
  .module-realisations__image {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: auto;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .module-realisations__content {
    background-color: #f4f4f4;
    pointer-events: all;
    position: absolute;
    z-index: 1;
    width: 50%;
    padding: 35px;
    height: 100vh;
    height: 100dvh;
    position: relative;
    top: 0;
    left: 0;
    z-index: 110;
    padding: 0 35px 35px 35px;
    margin: 0;
  }
  .module-realisations__content:after {
    height: 300vh;
    height: 300dvh;
  }
  .module-realisations__title {
    font-size: 20px;
    line-height: 30px;
    color: #072343;
    position: absolute;
    left: 30px;
    top: 30px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .module-realisations__container-link {
    right: 30px;
    bottom: 30px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
  }
  .module-realisations__link {
    display: block;
    pointer-events: all;
    color: #072343;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
  }
  .module-realisations__link::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #072343;
    bottom: -5px;
    left: 0;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform-origin: center;
            transform-origin: center;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .module-realisations__link:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .module-realisations__link:hover::after {
    -webkit-transform: scaleX(0.5);
            transform: scaleX(0.5);
  }
}
@media only screen and (min-width: 1024px) {
  .module-realisations__content-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /* Animation settings: commun pour tous les items */
    -webkit-animation-delay: calc(var(--cta) * -1s);
            animation-delay: calc(var(--cta) * -1s);
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
    /* Variants */
  }
  .module-realisations__content-item--1 {
    opacity: 1;
    -webkit-animation-name: content-1;
            animation-name: content-1;
    pointer-events: all;
    z-index: 3;
  }
  .module-realisations__content-item--2 {
    opacity: 0;
    -webkit-animation-name: content-2;
            animation-name: content-2;
    pointer-events: none;
    z-index: 2;
  }
  .module-realisations__content-item--3 {
    opacity: 0;
    -webkit-animation-name: content-3;
            animation-name: content-3;
    pointer-events: none;
    z-index: 1;
  }
}
@media only screen and (min-width: 1024px) {
  .module-realisations__content-title {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 1024px) {
  .module-realisations__content-link {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    pointer-events: all;
    border: 2px solid #072343;
    color: #072343;
    border-radius: 30px;
    padding: 9px 40px 9px 14px;
    font-size: 18px;
    line-height: 1;
    font-weight: 600;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    overflow: hidden;
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
  }
  .module-realisations__content-link svg {
    margin-left: 25px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .module-realisations__content-link:after {
    content: "";
    position: absolute;
    top: 10px;
    right: 14px;
    width: 15px;
    height: 15px;
    background-image: url("../../src/svg/arrow-btn.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px auto, 100%;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .module-realisations__content-link:before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    width: 15px;
    height: 15px;
    background-image: url("../../src/svg/arrow-btn.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px auto, 100%;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .module-realisations__content-link:hover {
    padding: 9px 14px 9px 40px;
  }
  .module-realisations__content-link:hover:before {
    left: 14px;
  }
  .module-realisations__content-link:hover:after {
    right: -20px;
  }
}
@media only screen and (min-width: 1024px) {
  .module-realisations__content-secondary-image {
    position: relative;
    width: 40%;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
    border-radius: 3px;
  }
  .module-realisations__content-secondary-image img {
    position: absolute;
    height: 100%;
    width: 100%;
    bottom: 0;
    margin: auto;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}
@media only screen and (min-width: 1024px) {
  @-webkit-keyframes cta-images-1 {
    0% {
      -webkit-transform-origin: top;
              transform-origin: top;
      height: 100vh;
    }
    25% {
      height: 100vh;
    }
    50%, 100% {
      height: 0;
    }
  }
  @keyframes cta-images-1 {
    0% {
      -webkit-transform-origin: top;
              transform-origin: top;
      height: 100vh;
    }
    25% {
      height: 100vh;
    }
    50%, 100% {
      height: 0;
    }
  }
}
@media only screen and (min-width: 1024px) {
  @-webkit-keyframes cta-images-2 {
    0% {
      -webkit-transform-origin: top;
              transform-origin: top;
      height: 100vh;
    }
    50% {
      height: 100vh;
    }
    75%, 100% {
      height: 0;
    }
  }
  @keyframes cta-images-2 {
    0% {
      -webkit-transform-origin: top;
              transform-origin: top;
      height: 100vh;
    }
    50% {
      height: 100vh;
    }
    75%, 100% {
      height: 0;
    }
  }
}
@media only screen and (min-width: 1024px) {
  @-webkit-keyframes content-1 {
    0%, 35% {
      display: -webkit-box;
      display: -webkit-flex;
      display: flex;
      opacity: 1;
      pointer-events: all;
    }
    40% {
      opacity: 0;
      pointer-events: none;
    }
    41%, 100% {
      display: none;
      opacity: 0;
      pointer-events: none;
    }
  }
  @keyframes content-1 {
    0%, 35% {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      opacity: 1;
      pointer-events: all;
    }
    40% {
      opacity: 0;
      pointer-events: none;
    }
    41%, 100% {
      display: none;
      opacity: 0;
      pointer-events: none;
    }
  }
}
@media only screen and (min-width: 1024px) {
  @-webkit-keyframes content-2 {
    0%, 40% {
      display: none;
      opacity: 0;
      pointer-events: none;
    }
    41% {
      display: -webkit-box;
      display: -webkit-flex;
      display: flex;
      opacity: 0;
      pointer-events: none;
    }
    45%, 60% {
      opacity: 1;
      pointer-events: all;
    }
    64% {
      opacity: 0;
      pointer-events: none;
    }
    65%, 100% {
      display: none;
      opacity: 0;
      pointer-events: none;
    }
  }
  @keyframes content-2 {
    0%, 40% {
      display: none;
      opacity: 0;
      pointer-events: none;
    }
    41% {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      opacity: 0;
      pointer-events: none;
    }
    45%, 60% {
      opacity: 1;
      pointer-events: all;
    }
    64% {
      opacity: 0;
      pointer-events: none;
    }
    65%, 100% {
      display: none;
      opacity: 0;
      pointer-events: none;
    }
  }
}
@media only screen and (min-width: 1024px) {
  @-webkit-keyframes content-3 {
    0%, 65% {
      opacity: 0;
      pointer-events: none;
    }
    70%, 100% {
      opacity: 1;
      pointer-events: all;
    }
  }
  @keyframes content-3 {
    0%, 65% {
      opacity: 0;
      pointer-events: none;
    }
    70%, 100% {
      opacity: 1;
      pointer-events: all;
    }
  }
}
.home-head {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
}
@media only screen and (min-width: 600px) {
  .home-head {
    padding-top: 0;
  }
}
@media only screen and (min-width: 600px) {
  .home-head__container {
    height: 100vh;
    min-height: 800px;
  }
}
@media only screen and (min-width: 1024px) {
  .home-head__container {
    height: calc(100vh + 215px);
    min-height: 800px;
  }
}
@media only screen and (min-width: 600px) {
  .home-head__grid {
    display: grid;
    grid-template-columns: 4fr 5fr;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
    height: 100%;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media only screen and (min-width: 1024px) {
  .home-head__grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    height: 100%;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.home-head__grid-left {
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .home-head__grid-left {
    max-width: 400px;
  }
}
.home-head__arrows {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s;
}
.home-head__arrows svg {
  -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .home-head__arrows svg {
    cursor: pointer;
  }
  .home-head__arrows svg:hover {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@media only screen and (min-width: 1024px) {
  .home-head__arrows {
    top: 20px;
    right: 20px;
  }
}
.home-head__card {
  width: 100%;
  padding: 10px;
}
.home-head__card.is-selected .home-head__card-title {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
@media only screen and (min-width: 1024px) {
  .home-head__card {
    padding: 20px;
  }
}
.home-head__card-title {
  margin-bottom: 15px;
  margin-right: 100px;
  color: #072343;
  font-size: 16px;
  line-height: 24px;
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  font-weight: 500;
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
@media only screen and (min-width: 600px) {
  .home-head__card-title {
    font-size: 18px;
    line-height: 26px;
  }
}
.home-head__card-container-title {
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}
.home-head__card-paragraph {
  color: #072343;
  font-size: 18px;
  line-height: 22px;
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 40px;
  margin-top: 20px;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
}
.home-head__card-container-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  border-radius: 3px;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
@media only screen and (min-width: 600px) {
  .home-head__card-container-image {
    padding-bottom: 60%;
  }
}
@media only screen and (min-width: 1024px) {
  .home-head__card-container-image {
    padding-bottom: 100%;
  }
}
.home-head__card-container-image::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #072343;
  top: 0;
  left: 0;
  -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1s;
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1s;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: top;
          transform-origin: top;
}
.home-head__card-image {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.home-head__card-image--small {
  display: block;
}
@media only screen and (min-width: 600px) {
  .home-head__card-image--small {
    display: none;
  }
}
.home-head__card-image--large {
  display: none;
}
@media only screen and (min-width: 600px) {
  .home-head__card-image--large {
    display: block;
  }
}
.home-head__container-card-link {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.6s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.6s;
}
.home-head__card-link {
  display: block;
  pointer-events: all;
  color: #072343;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.home-head__card-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #072343;
  bottom: -5px;
  left: 0;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media only screen and (min-width: 1024px) {
  .home-head__card-link:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .home-head__card-link:hover::after {
    -webkit-transform: scaleX(0.5);
            transform: scaleX(0.5);
  }
}
.home-head__grid-right {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  overflow: hidden;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 600px) {
  .home-head__grid-right {
    display: block;
  }
  .home-head__grid-right::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #072343;
    top: 0;
    left: 0;
    -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
    transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
.home-head__image-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  margin: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: opacity 0.8s ease-in-out, -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: opacity 0.8s ease-in-out, -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: opacity 0.8s ease-in-out, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: opacity 0.8s ease-in-out, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.8s, -webkit-transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  opacity: 0;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.home-head__image-bg.selected {
  opacity: 1;
}
.home-head--tadam .word-content {
  -webkit-transform: translateZ(0) translateY(0);
          transform: translateZ(0) translateY(0);
}
.home-head--tadam .home-head__grid-right {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.home-head--tadam .home-head__grid-right::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.home-head--tadam .home-head__image-bg {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.home-head--tadam .home-head__card-container-image {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.home-head--tadam .home-head__card-container-image::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.home-head--tadam .home-head__arrows {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.home-head--tadam .home-head__card-container-title {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.home-head--tadam .home-head__container-card-link {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.home-head--tadam .home-head__card-paragraph {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.toggle-item {
  padding: 50px 0;
}
@media only screen and (min-width: 1024px) {
  .toggle-item {
    padding: 100px 0;
    position: relative;
    z-index: 1;
  }
}
.toggle-item__container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .toggle-item__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 600px) {
  .toggle-item__grid-head {
    padding: 0 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  .toggle-item__grid-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    padding: 0 8.33%;
  }
}
.toggle-item__grid-head--tadam .toggle-item__title-left {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.toggle-item__grid-head--tadam .toggle-item__title-right {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.toggle-item__title-left {
  max-width: 450px;
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 30px;
  color: #072343;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.toggle-item__title-right {
  max-width: 450px;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 100px;
  color: #072343;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.toggle-item__grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media only screen and (min-width: 600px) {
  .toggle-item__grid {
    padding: 75px;
  }
}
@media only screen and (min-width: 1024px) {
  .toggle-item__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 8.33% 75px 8.33%;
    position: relative;
  }
}
.toggle-item__grid-left {
  margin-bottom: 50px;
}
@media only screen and (min-width: 600px) {
  .toggle-item__grid-left {
    width: 50%;
  }
}
@media only screen and (min-width: 1024px) {
  .toggle-item__grid-left {
    padding-top: 75px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
}
@media only screen and (min-width: 1024px) {
  .toggle-item__grid-right {
    margin-top: 40px;
    padding-top: 75px;
  }
}
.toggle-item__title {
  font-size: 2em;
  line-height: 1;
  margin-bottom: 20px;
}
@media only screen and (min-width: 600px) {
  .toggle-item__title {
    text-align: center;
    font-size: 3em;
  }
}
@media only screen and (min-width: 1024px) {
  .toggle-item__title {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.toggle-item__toggl-title {
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  font-size: 27px;
  line-height: 1.2;
}
@media only screen and (min-width: 600px) {
  .toggle-item__toggl-title {
    font-size: 30px;
  }
}
.toggle-item__content {
  height: 0px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 3fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 600px) {
  .toggle-item__content {
    grid-template-columns: 1fr 4fr;
  }
}
.toggle-item__toggl-header {
  display: grid;
  grid-template-columns: 1fr 3fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 600px) {
  .toggle-item__toggl-header {
    grid-template-columns: 1fr 4fr;
  }
}
.toggle-item__tag {
  display: block;
  background-color: #e5e5e5;
  color: #072343;
  border-radius: 3px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.toggle-item__contenu-toggl {
  padding: 15px 0;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.toggle-item__contenu-toggl p {
  font-size: 18px;
  opacity: 0.8;
  line-height: 1.2;
}
.toggle-item__contenu-toggl a {
  display: block;
  pointer-events: all;
  color: #072343;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1 !important;
  text-decoration: none !important;
  line-height: 1 !important;
}
.toggle-item__contenu-toggl a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #072343;
  bottom: -5px;
  left: 0;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media only screen and (min-width: 1024px) {
  .toggle-item__contenu-toggl a:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .toggle-item__contenu-toggl a:hover::after {
    -webkit-transform: scaleX(0.5);
            transform: scaleX(0.5);
  }
}
.toggle-item__toggl-item {
  cursor: pointer;
  position: relative;
  padding: 15px 0 75px 0;
}
.toggle-item__toggl-item::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #072343;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.toggle-item__toggl-item--tadam::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.toggle-item__toggl-item--tadam .word-content {
  -webkit-transform: translateZ(0) translateY(0);
          transform: translateZ(0) translateY(0);
}
.toggle-item__toggl-item--tadam .toggle-item__toggl-item-content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.toggle-item__toggl-item--tadam .toggle-item__tag {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.toggle-item__toggl-item--tadam .toggle-item__contenu-toggl {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.toggle-item__toggl-item-left {
  height: 0px;
  overflow: hidden;
}
@media only screen and (min-width: 1024px) {
  .toggle-item__toggl-item-left {
    grid-column: 1/4;
    grid-row: 1/2;
  }
}
.toggle-item__toggl-item-left--opened .toggle-item__image-description {
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.toggle-item__toggl-item-left--opened .toggle-item__image {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.toggle-item__image-description {
  opacity: 0;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  font-size: 20px;
  line-height: 1;
  margin-bottom: 20px;
}
.toggle-item__container-image {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  height: 0;
  overflow: hidden;
  border-radius: 3px;
}
@media only screen and (min-width: 1024px) {
  .toggle-item__container-image {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
            clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    -webkit-transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .toggle-item__container-image::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #072343;
    top: 0;
    left: 0;
    -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
    transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
}
.toggle-item__image {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  margin: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .toggle-item--tadam .toggle-item__container-image {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .toggle-item--tadam .toggle-item__container-image::after {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
}

@media only screen and (min-width: 1024px) {
  .page-template-tp-home .module-content__link {
    width: 150px;
  }
}

.contact-head {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
}
@media only screen and (min-width: 1024px) {
  .contact-head {
    padding-top: 30px;
  }
}
.contact-head__container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .contact-head__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .contact-head__title {
    margin-top: 200px;
  }
}
.contact-head__grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media only screen and (min-width: 1024px) {
  .contact-head__grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.contact-head__grid-right .wysiwyg {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .contact-head__grid-right .wysiwyg {
    display: block;
  }
  .contact-head__grid-right .wysiwyg p {
    font-size: 20px;
  }
  .contact-head__grid-right .wysiwyg a {
    font-size: 16px;
    line-height: 19px;
    text-decoration: none;
  }
}
.contact-head__container-image-overflow {
  margin-bottom: 30px;
}
@media only screen and (min-width: 1024px) {
  .contact-head__container-image-overflow {
    margin-top: 100px;
    margin-bottom: 0;
  }
}
.contact-head__container-image {
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  height: 0;
  overflow: hidden;
  border-radius: 3px;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-head__container-image::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #072343;
  top: 0;
  left: 0;
  -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: top;
          transform-origin: top;
}
.contact-head__image {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  margin: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}
.contact-head__wysiwyg {
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.contact-head--tadam .word-content {
  -webkit-transform: translateZ(0) translateY(0);
          transform: translateZ(0) translateY(0);
}
.contact-head--tadam .contact-head__container-image {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.contact-head--tadam .contact-head__container-image::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.contact-head--tadam .contact-head__image {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.contact-head--tadam .contact-head__wysiwyg {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.module-tabs {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  opacity: 0;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}
@media only screen and (min-width: 1024px) {
  .module-tabs {
    margin-top: 100px;
  }
}
.module-tabs__container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 1024px) {
  .module-tabs__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.module-tabs__selectors {
  margin-bottom: 20px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.module-tabs__selectors-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: auto;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.module-tabs__selectors-container::-webkit-scrollbar {
  display: none;
}
@media only screen and (min-width: 64rem) {
  .module-tabs__selectors-container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: hidden;
  }
}
.module-tabs__selector {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: all;
  border: 2px solid #072343;
  color: #072343;
  border-radius: 30px;
  padding: 9px 14px;
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  opacity: 0.4;
  margin: 0 5px 5px 0;
}
.module-tabs__selector--open {
  background-color: #072343;
  color: #ffffff;
  opacity: 1;
}
@media only screen and (min-width: 64rem) {
  .module-tabs__selector {
    position: relative;
    overflow: hidden;
  }
  .module-tabs__selector::after {
    position: absolute;
    content: "";
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background-color: #072343;
    left: -2px;
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    z-index: -1;
  }
}
@media only screen and (min-width: 64rem) and (min-width: 1024px) {
  .module-tabs__selector:hover {
    opacity: 1;
    color: #ffffff;
  }
  .module-tabs__selector:hover::after {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
.module-tabs__tab {
  display: none;
  border-radius: 25px;
  position: relative;
  width: 100%;
}
.module-tabs__tab--open {
  display: block;
}
.module-tabs__tab--animate .module-tabs__content {
  opacity: 1;
  -webkit-transform: translateZ(0) translateY(0);
          transform: translateZ(0) translateY(0);
  -webkit-transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.module-tabs__content {
  position: relative;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateZ(0) translateY(50px);
          transform: translateZ(0) translateY(50px);
  -webkit-transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  padding: 15px 0 75px 0;
}
.module-tabs__content::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #072343;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  transition: 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
}
@media only screen and (min-width: 1024px) {
  .module-tabs__content {
    display: grid;
    grid-template-columns: 3fr 5fr 4fr;
  }
}
.module-tabs__container-tag {
  margin-bottom: 15px;
}
.module-tabs__tag {
  display: block;
  background-color: #e5e5e5;
  color: #072343;
  border-radius: 3px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.module-tabs__text {
  margin-bottom: 20px;
}
.module-tabs__text.wysiwyg p,
.module-tabs__text.wysiwyg a {
  font-size: 16px;
  line-height: 21px;
  text-decoration: none;
}
@media only screen and (min-width: 64rem) {
  .module-tabs__text.wysiwyg p,
.module-tabs__text.wysiwyg a {
    font-size: 20px;
    line-height: 25px;
  }
}
.module-tabs__details.wysiwyg p,
.module-tabs__details.wysiwyg a {
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
}
@media only screen and (min-width: 64rem) {
  .module-tabs__details.wysiwyg p,
.module-tabs__details.wysiwyg a {
    font-size: 16px;
    line-height: 20px;
  }
}
.module-tabs--tadam {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.module-tabs--tadam .module-tabs__selectors {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.module-tabs--tadam .module-tabs__tabs {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.module-tabs--tadam .module-tabs__content::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.page-template-tp-about .module-content__container-link {
  min-width: 215px;
}

.about-head {
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 50px;
}
@media only screen and (min-width: 600px) {
  .about-head {
    padding-top: 200px;
  }
}
@media only screen and (min-width: 1024px) {
  .about-head {
    padding-top: 30px;
  }
}
.about-head__container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .about-head__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.about-head__head {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .about-head__head {
    display: grid;
    grid-template-columns: 9fr 3fr;
  }
}
.about-head__tag {
  color: #072343;
  font-size: 20px;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1s;
  opacity: 0;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.about-head__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media only screen and (min-width: 1024px) {
  .about-head__grid {
    padding-top: 230px;
  }
}
.about-head__container-title {
  grid-column: 1/13;
  grid-row: 1/2;
  margin-bottom: 35px;
}
@media only screen and (min-width: 1024px) {
  .about-head__container-title {
    grid-column: 1/10;
    margin-bottom: 0;
    padding-right: 100px;
  }
}
@media only screen and (min-width: 1024px) {
  .about-head__title {
    font-size: 80px;
  }
}
@media (min-width: 1500px) {
  .about-head__title {
    font-size: 110px;
  }
}
.about-head__container-image {
  grid-column: 1/13;
  grid-row: 2/3;
  position: relative;
  width: 100%;
  padding-bottom: 60%;
  height: 0;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 35px;
  -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
          clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  -webkit-transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .about-head__container-image {
    margin-top: 100px;
    margin-bottom: 0;
  }
}
.about-head__container-image::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #072343;
  top: 0;
  left: 0;
  -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: top;
          transform-origin: top;
}
.about-head__image {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  margin: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}
.about-head__container-paragraph {
  grid-column: 1/13;
  grid-row: 3/4;
}
@media only screen and (min-width: 1024px) {
  .about-head__container-paragraph {
    grid-row: 1/2;
    grid-column: 10/13;
  }
}
.about-head__paragraph {
  font-size: 18px;
  line-height: 22px;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.about-head--tadam .word-content {
  -webkit-transform: translateZ(0) translateY(0);
          transform: translateZ(0) translateY(0);
}
.about-head--tadam .about-head__container-image {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.about-head--tadam .about-head__container-image::after {
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
.about-head--tadam .about-head__image {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.about-head--tadam .about-head__paragraph {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.about-head--tadam .about-head__tag {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.about-team {
  padding-top: 40px;
}
@media only screen and (min-width: 600px) {
  .about-team {
    padding-top: 100px;
  }
}
.about-team__container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .about-team__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.about-team__title {
  margin-bottom: 40px;
}
@media only screen and (min-width: 600px) {
  .about-team__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .about-team__grid {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.about-team__employee-card {
  margin-bottom: 40px;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
}
.about-team__employee-card:nth-child(even) .about-team__container-image {
  padding-bottom: 120%;
}
@media only screen and (min-width: 1024px) {
  .about-team__employee-card {
    margin-bottom: 60px;
    padding: 5px;
    width: 25%;
  }
  .about-team__employee-card:nth-child(6n+3) {
    width: 25%;
    margin-right: 25%;
  }
  .about-team__employee-card:nth-child(6n+4) {
    margin-left: 25%;
    width: 25%;
  }
}
.about-team__employee-card:nth-of-type(1n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.2s;
}
.about-team__employee-card:nth-of-type(2n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.4s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.4s;
}
.about-team__employee-card:nth-of-type(3n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.6s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.6s;
}
.about-team__employee-card:nth-of-type(4n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.8s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 0.8s;
}
.about-team__employee-card:nth-of-type(5n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 1s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 1s;
}
.about-team__employee-card:nth-of-type(6n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 1.2s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 1.2s;
}
.about-team__employee-card:nth-of-type(7n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 1.4s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 1.4s;
}
.about-team__employee-card:nth-of-type(8n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 1.6s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 1.6s;
}
.about-team__employee-card:nth-of-type(9n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 1.8s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 1.8s;
}
.about-team__employee-card:nth-of-type(10n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 2s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 2s;
}
.about-team__employee-card:nth-of-type(11n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 2.2s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 2.2s;
}
.about-team__employee-card:nth-of-type(12n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 2.4s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 2.4s;
}
.about-team__employee-card:nth-of-type(13n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 2.6s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 2.6s;
}
.about-team__employee-card:nth-of-type(14n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 2.8s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 2.8s;
}
.about-team__employee-card:nth-of-type(15n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 3s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 3s;
}
.about-team__employee-card:nth-of-type(16n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 3.2s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 3.2s;
}
.about-team__employee-card:nth-of-type(17n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 3.4s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 3.4s;
}
.about-team__employee-card:nth-of-type(18n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 3.6s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 3.6s;
}
.about-team__employee-card:nth-of-type(19n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 3.8s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 3.8s;
}
.about-team__employee-card:nth-of-type(20n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 4s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 4s;
}
.about-team__employee-card:nth-of-type(21n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 4.2s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 4.2s;
}
.about-team__employee-card:nth-of-type(22n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 4.4s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 4.4s;
}
.about-team__employee-card:nth-of-type(23n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 4.6s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 4.6s;
}
.about-team__employee-card:nth-of-type(24n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 4.8s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 4.8s;
}
.about-team__employee-card:nth-of-type(25n) {
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 5s;
  transition: 0.8s cubic-bezier(0.25, 0.1, 0.25, 1) 5s;
}
.about-team__container-image {
  cursor: pointer;
  position: relative;
  width: 100%;
  padding-bottom: 90%;
  height: 0;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1024px) {
  .about-team__container-image:hover .about-team__card-content::after {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
  .about-team__container-image:hover .about-team__card-content-head {
    -webkit-transition: 0.4s cubic-bezier(0.3, 1, 0.7, 1) 0.2s;
    transition: 0.4s cubic-bezier(0.3, 1, 0.7, 1) 0.2s;
    opacity: 1;
  }
  .about-team__container-image:hover .about-team__card-content-bottom {
    -webkit-transition: 0.4s cubic-bezier(0.3, 1, 0.7, 1) 0.2s;
    transition: 0.4s cubic-bezier(0.3, 1, 0.7, 1) 0.2s;
    opacity: 1;
  }
}
.about-team__image {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  margin: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.about-team__card-content {
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 30px;
  z-index: 2;
}
.about-team__card-content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #072343;
  top: 0;
  left: 0;
  -webkit-transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  z-index: -1;
}
.about-team__card-content--opened::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.about-team__card-content--opened .about-team__card-content-head {
  -webkit-transition: 0.4s cubic-bezier(0.3, 1, 0.7, 1) 0.3s;
  transition: 0.4s cubic-bezier(0.3, 1, 0.7, 1) 0.3s;
  opacity: 1;
}
.about-team__card-content--opened .about-team__card-content-bottom {
  -webkit-transition: 0.4s cubic-bezier(0.3, 1, 0.7, 1) 0.3s;
  transition: 0.4s cubic-bezier(0.3, 1, 0.7, 1) 0.3s;
  opacity: 1;
}
.about-team__card-content-head {
  opacity: 0;
  -webkit-transition: 0.4s cubic-bezier(0.3, 1, 0.7, 1);
  transition: 0.4s cubic-bezier(0.3, 1, 0.7, 1);
}
.about-team__card-content-bottom {
  opacity: 0;
  -webkit-transition: 0.4s cubic-bezier(0.3, 1, 0.7, 1);
  transition: 0.4s cubic-bezier(0.3, 1, 0.7, 1);
}
.about-team__card-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-team__card-title {
  font-size: 14px;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about-team__job-title {
  font-size: 12px;
}
.about-team__card-button {
  font-size: 14px;
  cursor: pointer;
  color: #072343;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-team__card-button--less {
  display: none;
}
.about-team__card-button--opened .about-team__card-button--more {
  display: none;
}
.about-team__card-button--opened .about-team__card-button--less {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .about-team__card-button:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.about-team__card-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.about-team__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-team__tag {
  display: block;
  background-color: #e5e5e5;
  color: #072343;
  border-radius: 3px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 2px;
}
.about-team__description {
  margin-top: 15px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3;
}
@media only screen and (min-width: 1024px) {
  .about-team__description {
    font-size: 16px;
  }
}
.about-team__card-content-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-team__contact-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  font-weight: 800;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 15px;
}
@media only screen and (min-width: 1024px) {
  .about-team__contact-link:hover {
    background-color: #ffffff;
    color: #072343;
  }
}
.about-team__project-link {
  color: #ffffff;
  font-size: 12px;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .about-team__project-link:hover {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.about-team--tadam .word-content {
  -webkit-transform: translateZ(0) translateY(0);
          transform: translateZ(0) translateY(0);
}
.about-team--tadam .about-team__employee-card {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

#tinymce {
  background-color: white;
  color: black;
  margin-top: 0 !important;
}
#tinymce h1 {
  font-size: 50px;
  line-height: 50px;
}
#tinymce h2 {
  font-size: 40px;
  line-height: 40px;
}
#tinymce h3 {
  font-size: 35px;
  line-height: 35px;
}
#tinymce h4 {
  font-size: 30px;
  line-height: 30px;
}
#tinymce h5 {
  font-size: 20px;
  line-height: 20px;
}
#tinymce h1,
#tinymce h2,
#tinymce h3,
#tinymce h4,
#tinymce h5,
#tinymce h6 {
  font-weight: 500;
  text-transform: initial;
  color: #072343;
}
#tinymce ul {
  padding-left: 30px;
}
#tinymce p,
#tinymce ul,
#tinymce li,
#tinymce a {
  margin: 0 !important;
  font-size: 18px;
  line-height: 26px;
  color: #072343;
  font-weight: 400;
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
}
#tinymce p {
  margin: 0 !important;
  font-size: 18px;
  line-height: 26px;
  color: #072343;
}
#tinymce a {
  text-decoration: underline;
}

.page-wysiwyg h1,
.wysiwyg h1 {
  font-size: 30px;
  line-height: 30px;
}
@media only screen and (min-width: 1024px) {
  .page-wysiwyg h1,
.wysiwyg h1 {
    font-size: 50px;
    line-height: 50px;
  }
}
.page-wysiwyg h2,
.wysiwyg h2 {
  font-size: 25px;
  line-height: 25px;
}
@media only screen and (min-width: 1024px) {
  .page-wysiwyg h2,
.wysiwyg h2 {
    font-size: 40px;
    line-height: 40px;
  }
}
.page-wysiwyg h3,
.wysiwyg h3 {
  font-size: 20px;
  line-height: 20px;
}
@media only screen and (min-width: 1024px) {
  .page-wysiwyg h3,
.wysiwyg h3 {
    font-size: 35px;
    line-height: 35px;
  }
}
.page-wysiwyg h4,
.wysiwyg h4 {
  font-size: 18px;
  line-height: 18px;
}
@media only screen and (min-width: 1024px) {
  .page-wysiwyg h4,
.wysiwyg h4 {
    font-size: 30px;
    line-height: 30px;
  }
}
.page-wysiwyg h5,
.wysiwyg h5 {
  font-size: 16px;
  line-height: 16px;
}
@media only screen and (min-width: 1024px) {
  .page-wysiwyg h5,
.wysiwyg h5 {
    font-size: 20px;
    line-height: 20px;
  }
}
.page-wysiwyg h1,
.page-wysiwyg h2,
.page-wysiwyg h3,
.page-wysiwyg h4,
.page-wysiwyg h5,
.page-wysiwyg h6,
.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  text-transform: initial;
  font-weight: 500 !important;
}
.page-wysiwyg ul,
.wysiwyg ul {
  padding-left: 40px;
  list-style: disc !important;
  margin-bottom: 10px;
}
.page-wysiwyg ul li,
.wysiwyg ul li {
  margin-bottom: 10px;
  position: relative;
  word-break: break-word;
}
.page-wysiwyg ul li:before,
.wysiwyg ul li:before {
  position: absolute;
  left: -17px;
  top: 10px;
  display: inline-block;
  content: "";
  height: 1px;
  width: 10px;
}
.page-wysiwyg ul li ul,
.wysiwyg ul li ul {
  margin-top: 10px;
}
@media only screen and (min-width: 1024px) {
  .page-wysiwyg ul li:before,
.wysiwyg ul li:before {
    top: 11px;
  }
}
.page-wysiwyg ol,
.wysiwyg ol {
  padding-left: 40px;
  list-style: auto !important;
}
.page-wysiwyg ol li,
.wysiwyg ol li {
  margin-bottom: 10px;
  word-break: break-word;
}
.page-wysiwyg ol li::marker,
.wysiwyg ol li::marker {
  font-weight: 500;
}
.page-wysiwyg ol li ol,
.wysiwyg ol li ol {
  margin-top: 10px;
}
.page-wysiwyg p,
.page-wysiwyg ul,
.page-wysiwyg li,
.page-wysiwyg a,
.wysiwyg p,
.wysiwyg ul,
.wysiwyg li,
.wysiwyg a {
  margin: 0 !important;
  font-size: 18px;
  line-height: 26px;
  color: #072343;
  font-weight: 500;
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
}
.page-wysiwyg figure,
.wysiwyg figure {
  margin: 5px;
}
.page-wysiwyg a,
.wysiwyg a {
  text-decoration: underline;
  color: #072343;
}
@media only screen and (min-width: 1024px) {
  .page-wysiwyg a,
.wysiwyg a {
    -webkit-transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
    transition: 0.5s cubic-bezier(0.34, 0.7, 0.27, 1);
  }
  .page-wysiwyg a:hover,
.wysiwyg a:hover {
    opacity: 0.5;
  }
}
.page-wysiwyg .aligncenter,
.wysiwyg .aligncenter {
  margin: auto;
}
.page-wysiwyg .alignright,
.wysiwyg .alignright {
  float: right;
  padding-left: 50px;
}
.page-wysiwyg .alignleft,
.wysiwyg .alignleft {
  float: left;
  padding-right: 50px;
}

.page-wysiwyg {
  padding-top: 150px;
  padding-bottom: 100px;
}
.page-wysiwyg__container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .page-wysiwyg__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 600px) {
  .page-wysiwyg {
    padding-top: 250px;
    padding-bottom: 150px;
  }
}
@media only screen and (min-width: 1024px) {
  .page-template-tp-wysiwyg .module-logo__logo {
    height: 20px;
  }
  .page-template-tp-wysiwyg .module-logo__logo-secondary {
    display: none;
  }

  .page-wysiwyg {
    padding-top: 250px;
    padding-bottom: 100px;
  }
  .page-wysiwyg__grid {
    margin: 0 12.66%;
    -webkit-transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  .page-wysiwyg--tadam .page-wysiwyg__grid {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.single-employe {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .single-employe {
    display: block;
    min-height: 400px;
  }
}
@media only screen and (min-width: 1024px) {
  .single-employe__container-employees {
    padding-left: 10px;
    padding-right: 10px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 9fr 3fr;
  }
}
@media only screen and (min-width: 1024px) and (min-width: 1024px) {
  .single-employe__container-employees {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.single-employe__container-employees-right {
  position: relative;
}
.single-employe__employee-card {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  padding-top: 30px;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
.single-employe__employee-card--opened {
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  pointer-events: all;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.single-employe__card-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 16px;
  line-height: 1.1;
}
.single-employe__tags {
  max-width: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 20px;
  margin-bottom: 20px;
}
.single-employe__tag {
  display: block;
  background-color: #e5e5e5;
  color: #072343;
  border-radius: 3px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 2px;
  margin-bottom: 2px;
}
.single-employe__title {
  margin-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .single-employe__title {
    margin-top: 200px;
  }
}
.single-employe__container-image {
  position: relative;
  width: 100px;
  height: 125px;
  overflow: hidden;
  border-radius: 3px;
}
.single-employe__image {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  margin: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.single-employe__description {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1024px) {
  .single-employe__grid {
    display: grid;
    grid-template-columns: 3fr 9fr;
    position: relative;
  }
}
.single-employe__contact-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  font-weight: 800;
  border: 2px solid #072343;
  color: #072343;
  padding: 6px 14px;
  border-radius: 30px;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (min-width: 1024px) {
  .single-employe__contact-link:hover {
    background-color: #072343;
    color: #ffffff;
  }
}

.realisations-hero {
  padding-top: 150px;
}
@media only screen and (min-width: 600px) {
  .realisations-hero {
    padding-top: 200px;
  }
}
@media only screen and (min-width: 1024px) {
  .realisations-hero {
    padding-top: 0;
  }
}
.realisations-hero__container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .realisations-hero__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .realisations-hero__grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.realisations-hero__filter-container {
  cursor: pointer;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.realisations-hero__filter-container select {
  width: auto;
  min-width: 50px;
  /* Si vous voulez une largeur minimale */
  max-width: 100%;
  /* Limite à la largeur maximale */
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #072343;
}
.realisations-hero__filter-container:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 7px;
  width: 7px;
  height: 7px;
  background-image: url("../../src/svg/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.4em auto, 100%;
}
.realisations-hero__filter-container--first {
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.realisations-hero__filter-container--second {
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  opacity: 0;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.realisations-hero__filters {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.realisations-hero__filter {
  line-height: 1.5;
}
.realisations-hero__categories-filter {
  margin-bottom: 40px;
}
.realisations-hero__categories-filter-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.realisations-hero__category-radio input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 0;
  height: 0;
}
.realisations-hero__category-radio {
  margin-bottom: 15px;
}
@media only screen and (min-width: 1024px) {
  .realisations-hero__category-radio {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  .realisations-hero__category-radio:nth-of-type(1n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .realisations-hero__category-radio:nth-of-type(2n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  }
  .realisations-hero__category-radio:nth-of-type(3n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  }
  .realisations-hero__category-radio:nth-of-type(4n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  }
  .realisations-hero__category-radio:nth-of-type(5n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  }
  .realisations-hero__category-radio:nth-of-type(6n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  }
  .realisations-hero__category-radio:nth-of-type(7n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  }
  .realisations-hero__category-radio:nth-of-type(8n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  }
  .realisations-hero__category-radio:nth-of-type(9n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  }
  .realisations-hero__category-radio:nth-of-type(10n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
  }
  .realisations-hero__category-radio:nth-of-type(11n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1s;
  }
  .realisations-hero__category-radio:nth-of-type(12n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.1s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.1s;
  }
  .realisations-hero__category-radio:nth-of-type(13n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
  }
  .realisations-hero__category-radio:nth-of-type(14n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.3s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.3s;
  }
  .realisations-hero__category-radio:nth-of-type(15n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.4s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.4s;
  }
  .realisations-hero__category-radio:nth-of-type(16n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
  }
  .realisations-hero__category-radio:nth-of-type(17n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.6s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.6s;
  }
  .realisations-hero__category-radio:nth-of-type(18n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.7s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.7s;
  }
  .realisations-hero__category-radio:nth-of-type(19n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.8s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.8s;
  }
  .realisations-hero__category-radio:nth-of-type(20n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.9s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.9s;
  }
  .realisations-hero__category-radio:nth-of-type(21n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2s;
  }
  .realisations-hero__category-radio:nth-of-type(22n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.1s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.1s;
  }
  .realisations-hero__category-radio:nth-of-type(23n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.2s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.2s;
  }
  .realisations-hero__category-radio:nth-of-type(24n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.3s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.3s;
  }
  .realisations-hero__category-radio:nth-of-type(25n) {
    -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.4s;
    transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.4s;
  }
}
.realisations-hero__category-radio input[type=radio]:checked + span {
  opacity: 1;
}
.realisations-hero__category-radio input[type=radio]:checked + span .count {
  opacity: 1;
}
.realisations-hero__category-radio span {
  cursor: pointer;
  font-size: 32px;
  color: #072343;
  opacity: 0.4;
}
@media only screen and (min-width: 600px) {
  .realisations-hero__category-radio span {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1024px) {
  .realisations-hero__category-radio span {
    font-size: 40px;
  }
}
.realisations-hero__category-radio .count {
  font-size: 18px;
  color: #072343;
  position: relative;
  top: -10px;
}
@media only screen and (min-width: 600px) {
  .realisations-hero__category-radio .count {
    font-size: 20px;
    margin-left: 5px;
  }
}
.realisations-hero--tadam .realisations-hero__category-radio {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.realisations-hero--tadam .realisations-hero__grid-right {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.realisations-hero--tadam .realisations-hero__content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.realisations-hero--tadam .realisations-hero__container-employees {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.realisations-hero--tadam .realisations-hero__filter-container--first {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.realisations-hero--tadam .realisations-hero__filter-container--second {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.realisations {
  min-height: 50vh;
  padding-top: 40px;
  padding-bottom: 40px;
}
.realisations__container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media only screen and (min-width: 1024px) {
  .realisations__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.realisations__container--animate {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}
.realisations__title {
  margin-bottom: 40px;
}
@media only screen and (min-width: 600px) {
  .realisations__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .realisations__grid {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.realisations .realisations__realisation-card.is-visible {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
  margin-bottom: 40px;
}
.realisations .realisations__realisation-card.is-visible.is-visible:nth-child(4n+2) .realisations__container-image {
  padding-bottom: 120%;
}
.realisations .realisations__realisation-card.is-visible.is-visible:nth-child(4n+3) .realisations__container-image {
  padding-bottom: 75%;
}
.realisations .realisations__realisation-card.is-visible.is-visible:nth-child(4n+4) .realisations__container-image {
  padding-bottom: 100%;
}
@media only screen and (min-width: 1024px) {
  .realisations .realisations__realisation-card.is-visible {
    margin-bottom: 60px;
    padding: 5px;
    width: 25% !important;
  }
  .realisations .realisations__realisation-card.is-visible:hover .realisations__card-details {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .realisations .realisations__realisation-card.is-visible:hover .realisations__image {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.realisations__taxonomies {
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
}
.realisations__taxonomies p {
  color: white;
}
.realisations__container-image {
  position: relative;
  width: 100%;
  padding-bottom: 90%;
  height: 0;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 20px;
}
.realisations__image {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  margin: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.realisations__card-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .realisations__card-details {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.realisations__card-title {
  font-size: 14px;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.realisations__job-title {
  font-size: 12px;
}
.realisations__card-button {
  font-size: 14px;
  cursor: pointer;
  color: #072343;
}
.realisations__card-button--less {
  display: none;
}
.realisations__card-button--opened .realisations__card-button--more {
  display: none;
}
.realisations__card-button--opened .realisations__card-button--less {
  display: block;
}
.realisations__card-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.realisations__tags {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.realisations__tag {
  display: block;
  background-color: #e5e5e5;
  color: #072343;
  border-radius: 3px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 2px;
}
.realisations__description {
  margin-top: 15px;
  text-align: center;
  color: #ffffff;
}
.realisations__card-content-bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.realisations__contact-link {
  font-size: 12px;
  font-weight: 800;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 15px;
}
.realisations__project-link {
  color: #ffffff;
  font-size: 12px;
}
.realisations__more {
  font-size: 18px;
  font-weight: 600;
  color: #072343;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f4f4f4;
  border-radius: 30px;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .realisations__more {
    position: relative;
    overflow: hidden;
  }
  .realisations__more span {
    position: relative;
    z-index: 3;
  }
  .realisations__more::after {
    position: absolute;
    content: "";
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    background-color: #072343;
    left: -2px;
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-transform-origin: top;
            transform-origin: top;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    z-index: 1;
  }
  .realisations__more:hover {
    color: #ffffff;
  }
  .realisations__more:hover::after {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
.error {
  min-height: 100vh;
  min-height: 100dvh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  overflow: hidden;
}
.error__container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  min-height: 700px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1024px) {
  .error__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.error__title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 35px;
  line-height: 1.2;
  font-family: "neue-haas-grotesk-display", Helvetica, Arial, sans-serif;
  font-weight: 500;
  color: #072343;
  letter-spacing: 1px;
}
@media only screen and (min-width: 600px) {
  .error__title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .error__title {
    font-size: 110px;
  }
}
.error__button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: all;
  border: 2px solid #072343;
  color: #072343;
  border-radius: 30px;
  padding: 9px 40px 9px 14px;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.error__button svg {
  margin-left: 25px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.error__button:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  width: 15px;
  height: 15px;
  background-image: url("../../src/svg/arrow-btn.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px auto, 100%;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .error__button:before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    width: 15px;
    height: 15px;
    background-image: url("../../src/svg/arrow-btn.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px auto, 100%;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .error__button:hover {
    padding: 9px 14px 9px 40px;
  }
  .error__button:hover:before {
    left: 14px;
  }
  .error__button:hover:after {
    right: -20px;
  }
}

.single-realisations .wysiwyg h1 {
  font-size: 23px;
  line-height: 23px;
}
@media only screen and (min-width: 600px) {
  .single-realisations .wysiwyg h1 {
    font-size: 30px;
    line-height: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .single-realisations .wysiwyg h1 {
    font-size: 50px;
    line-height: 50px;
  }
}

.single-realisation {
  padding-top: 150px;
}
@media only screen and (min-width: 600px) {
  .single-realisation {
    padding-top: 200px;
  }
}
@media only screen and (min-width: 1024px) {
  .single-realisation {
    padding-top: 30px;
  }
}
.single-realisation__container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .single-realisation__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .single-realisation__head {
    display: grid;
    grid-template-columns: 3fr 9fr;
  }
}
.single-realisation__grid-head {
  display: grid;
  grid-template-columns: 2fr 3fr;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .single-realisation__grid-head {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .single-realisation__grid-left {
    grid-column: 6/8;
    grid-row: 1/2;
    padding-right: 50px;
  }
}
.single-realisation__grid-right {
  opacity: 0;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
}
.single-realisation__grid-right p {
  font-size: 12px;
  line-height: 1.5;
}
@media only screen and (min-width: 600px) {
  .single-realisation__grid-right p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .single-realisation__grid-right p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1024px) {
  .single-realisation__grid-right {
    grid-column: 8/10;
    grid-row: 1/2;
  }
}
.single-realisation__realisation-card {
  max-width: 250px;
}
.single-realisation__container-employees {
  display: none;
}
@media only screen and (min-width: 1024px) {
  .single-realisation__container-employees {
    display: block;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 140px 100px 50px 0;
  }
}
.single-realisation__employe-card-title {
  margin-top: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 14px;
  line-height: 1.1;
  -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.single-realisation__tags-head {
  max-width: 250px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.single-realisation__employe-tags {
  max-width: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media only screen and (min-width: 1024px) {
  .single-realisation__employe-tags {
    margin: 20px 0;
    -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
.single-realisation__tag {
  display: block;
  background-color: #e5e5e5;
  color: #072343;
  border-radius: 3px;
  padding: 3px 7px;
  font-size: 12px;
  font-weight: 600;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 2px;
  margin-bottom: 5px;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.single-realisation__tag:nth-of-type(1n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0s;
}
.single-realisation__tag:nth-of-type(2n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
.single-realisation__tag:nth-of-type(3n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}
.single-realisation__tag:nth-of-type(4n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}
.single-realisation__tag:nth-of-type(5n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}
.single-realisation__tag:nth-of-type(6n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}
.single-realisation__tag:nth-of-type(7n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}
.single-realisation__tag:nth-of-type(8n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
}
.single-realisation__tag:nth-of-type(9n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.8s;
}
.single-realisation__tag:nth-of-type(10n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
}
.single-realisation__tag:nth-of-type(11n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1s;
}
.single-realisation__tag:nth-of-type(12n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.1s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.1s;
}
.single-realisation__tag:nth-of-type(13n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.2s;
}
.single-realisation__tag:nth-of-type(14n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.3s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.3s;
}
.single-realisation__tag:nth-of-type(15n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.4s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.4s;
}
.single-realisation__tag:nth-of-type(16n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.5s;
}
.single-realisation__tag:nth-of-type(17n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.6s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.6s;
}
.single-realisation__tag:nth-of-type(18n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.7s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.7s;
}
.single-realisation__tag:nth-of-type(19n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.8s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.8s;
}
.single-realisation__tag:nth-of-type(20n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.9s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 1.9s;
}
.single-realisation__tag:nth-of-type(21n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2s;
}
.single-realisation__tag:nth-of-type(22n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.1s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.1s;
}
.single-realisation__tag:nth-of-type(23n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.2s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.2s;
}
.single-realisation__tag:nth-of-type(24n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.3s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.3s;
}
.single-realisation__tag:nth-of-type(25n) {
  -webkit-transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.4s;
  transition: 500ms cubic-bezier(0.4, 0, 0.2, 1) 2.4s;
}
@media only screen and (min-width: 600px) {
  .single-realisation__tag {
    font-size: 16px;
  }
}
.single-realisation__title {
  margin-bottom: 50px;
}
@media only screen and (min-width: 1024px) {
  .single-realisation__title {
    margin-top: 200px;
  }
}
.single-realisation__container-image {
  position: relative;
  width: 100px;
  height: 125px;
  overflow: hidden;
  border-radius: 3px;
  opacity: 0;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}
.single-realisation__image {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  margin: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.single-realisation__description {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 20px;
  -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
@media only screen and (min-width: 1024px) {
  .single-realisation__description {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1024px) {
  .single-realisation__grid {
    display: grid;
    grid-template-columns: 3fr 9fr;
    position: relative;
  }
}
.single-realisation__content {
  opacity: 0;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.single-realisation__container-contact-link {
  -webkit-transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  transition: 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.single-realisation__contact-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 12px;
  font-weight: 800;
  border: 2px solid #072343;
  color: #072343;
  padding: 6px 14px;
  border-radius: 30px;
  -webkit-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .single-realisation__contact-link:hover {
    background-color: #072343;
    color: #ffffff;
  }
}
.single-realisation--tadam .word-content {
  -webkit-transform: translateZ(0) translateY(0);
          transform: translateZ(0) translateY(0);
}
.single-realisation--tadam .single-realisation__tag {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.single-realisation--tadam .single-realisation__grid-right {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.single-realisation--tadam .single-realisation__content {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.single-realisation--tadam .single-realisation__container-image {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.single-realisation--tadam .single-realisation__employe-card-title {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.single-realisation--tadam .single-realisation__employe-tags {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.single-realisation--tadam .single-realisation__description {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.single-realisation--tadam .single-realisation__container-contact-link {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.module-other-realisations {
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 600px) {
  .module-other-realisations {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 1024px) {
  .module-other-realisations {
    padding-top: 150px;
  }
}
.module-other-realisations__container {
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1024px) {
  .module-other-realisations__container {
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .module-other-realisations__container {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.module-other-realisations__title {
  margin-bottom: 40px;
}
@media only screen and (min-width: 1024px) {
  .module-other-realisations__title {
    grid-column: 1/7;
    grid-row: 1/2;
  }
}
.module-other-realisations__container-grid {
  overflow-x: scroll;
  margin-bottom: 30px;
}
@media only screen and (min-width: 1024px) {
  .module-other-realisations__container-grid {
    overflow-x: inherit;
    margin-bottom: 0;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    grid-column: 1/13;
    grid-row: 2/3;
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    -webkit-transition: 0.5s cubic-bezier(0.3, 1, 0.7, 1) 0.5s;
    transition: 0.5s cubic-bezier(0.3, 1, 0.7, 1) 0.5s;
  }
}
.module-other-realisations__grid {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media only screen and (min-width: 1024px) {
  .module-other-realisations__grid {
    width: 100%;
  }
}
.module-other-realisations__realisation-card {
  width: 280px;
  margin-right: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
  margin-bottom: 20px;
}
.module-other-realisations__realisation-card:nth-child(4n+2) .module-other-realisations__container-image {
  padding-bottom: 120%;
}
.module-other-realisations__realisation-card:nth-child(4n+3) .module-other-realisations__container-image {
  padding-bottom: 75%;
}
.module-other-realisations__realisation-card:nth-child(4n+4) .module-other-realisations__container-image {
  padding-bottom: 100%;
}
@media only screen and (min-width: 600px) {
  .module-other-realisations__realisation-card {
    width: 380px;
  }
}
@media only screen and (min-width: 1024px) {
  .module-other-realisations__realisation-card {
    width: 25%;
  }
  .module-other-realisations__realisation-card:hover .module-other-realisations__card-details {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .module-other-realisations__realisation-card:hover .module-other-realisations__image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.module-other-realisations__container-image {
  position: relative;
  width: 100%;
  padding-bottom: 90%;
  height: 0;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 20px;
}
.module-other-realisations__image {
  position: absolute;
  height: 100%;
  width: 100%;
  bottom: 0;
  margin: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.module-other-realisations__card-details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .module-other-realisations__card-details {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.module-other-realisations__card-title {
  font-size: 14px;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.module-other-realisations__card-button {
  font-size: 14px;
  cursor: pointer;
  color: #072343;
}
.module-other-realisations__card-button--less {
  display: none;
}
.module-other-realisations__card-button--opened .module-other-realisations__card-button--more {
  display: none;
}
.module-other-realisations__card-button--opened .module-other-realisations__card-button--less {
  display: block;
}
@media only screen and (min-width: 1024px) {
  .module-other-realisations__container-link {
    grid-column: 7/13;
    grid-row: 1/2;
    margin-bottom: 40px;
    opacity: 0;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
    -webkit-transition: 0.4s cubic-bezier(0.3, 1, 0.7, 1) 0.2s;
    transition: 0.4s cubic-bezier(0.3, 1, 0.7, 1) 0.2s;
  }
}
.module-other-realisations__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: all;
  border: 2px solid #072343;
  color: #072343;
  border-radius: 30px;
  padding: 9px 40px 9px 14px;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
}
.module-other-realisations__link svg {
  margin-left: 25px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.module-other-realisations__link:after {
  content: "";
  position: absolute;
  top: 10px;
  right: 14px;
  width: 15px;
  height: 15px;
  background-image: url("../../src/svg/arrow-btn.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px auto, 100%;
  -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 1024px) {
  .module-other-realisations__link:before {
    content: "";
    position: absolute;
    top: 10px;
    left: -20px;
    width: 15px;
    height: 15px;
    background-image: url("../../src/svg/arrow-btn.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 15px auto, 100%;
    -webkit-transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .module-other-realisations__link:hover {
    padding: 9px 14px 9px 40px;
  }
  .module-other-realisations__link:hover:before {
    left: 14px;
  }
  .module-other-realisations__link:hover:after {
    right: -20px;
  }
}
@media only screen and (min-width: 1024px) {
  .module-other-realisations__link {
    float: right;
  }
}
.module-other-realisations--tadam .word-content {
  -webkit-transform: translateZ(0) translateY(0);
          transform: translateZ(0) translateY(0);
}
.module-other-realisations--tadam .module-other-realisations__container-link {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.module-other-realisations--tadam .module-other-realisations__container-grid {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media print {
  @page {
    size: portrait;
  }
  *,
*::before,
*::after {
    color: #000 !important;
  }

  body {
    max-width: 670px;
  }

  html {
    font-size: 10px !important;
  }
}
[data-marquee-container] {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

[data-marquee-content] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  -webkit-animation: marquee linear infinite;
          animation: marquee linear infinite;
  will-change: transform;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
.height-calc {
  height: 100vh;
}

/*! Flickity v2.2.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 5px #19f;
          box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}
/*# sourceMappingURL=main.css.map */
