html,
body {
    --primary-1: #062347;
    --primary-2: #0d51a5;
    --primary-3: #2f84ee;
    --primary-4: #6aa7f3;
    --primary-5: #a0c7f7;
    --primary-6: #d4e6fc;
    --primary-7: #f4f9ff;
    --primary-25: #f5f9fe;
    --secondary-1: #0f042f;
    --secondary-2: #2d0d8c;
    --secondary-3: #6b40ed;
    --secondary-4: #beb9f8;
    --secondary-5: #e9e8fd;
    --gradient-1: radial-gradient(
            137.51% 425.56% at 112.6% 112.39%,
            rgba(47, 132, 238, 0.9) 0%,
            rgba(96, 162, 244, 0.9) 30.73%,
            rgba(135, 100, 255, 0.9) 77.73%,
            rgba(112, 45, 237, 0.9) 100%
        ),
        #ffffff;
    --gradient-2: linear-gradient(317.23deg, #6aa7f3 -12.56%, #1168d4 78.59%);
    --gray-0: #000000;
    --gray-1: #262626;
    --gray-2: #333333;
    --gray-3: #474747;
    --gray-4: #74777a;
    --gray-5: #939393;
    --gray-6: #d9d9d9;
    --gray-7: #f7f7f7;
    --gray-8: #ffffff;
    --validation-error: #d72d2d;

    --header-height-not-scrolled: 6.5623em;
    --header-height: 5em;
    --max-site-width: 80em;
    --small-spacing: 1em;
    --large-spacing: 2em;

    --text-normal: 400;
    --text-bold: 800;
    --text-13: 0.8125em;
    --text-20: 1.25em;

    position: relative;
    height: 100%;
    width: 100%;
    font-size: 16px;
    font-weight: var(--text-normal);
    line-height: 1.4;
    font-family: "Nunito Sans", sans-serif;
    color: var(--gray-3);
}

/* //////////////////////////////////////////////////// */
/* /////////////////////// Reset ////////////////////// */
/* //////////////////////////////////////////////////// */

h1,
h2,
h3,
h4 {
    font-weight: var(--text-normal);
}

img {
    display: block;
    width: 100%;
    height: auto;
}

/* //////////////////////////////////////////////////// */
/* ////////////////////// Helpers ///////////////////// */
/* //////////////////////////////////////////////////// */

.h--siteWidth {
    box-sizing: border-box;
    max-width: var(--max-site-width);
    margin: 0 var(--small-spacing);
}

@media (min-width: 48em) {
    .h--siteWidth {
        margin: 0 var(--large-spacing);
    }
}

@media (min-width: 85em) {
    .h--siteWidth {
        margin: 0 auto;
    }
}

.anchor {
    position: relative;
    top: calc(var(--header-height) * -1);
    height: 1px;
    visibility: hidden;
}

/* //////////////////////////////////////////////////// */
/* ////////////////////// Global ////////////////////// */
/* //////////////////////////////////////////////////// */

.bold,
b {
    font-weight: var(--text-bold) !important;
}

.title-super {
    color: var(--gray-1);
    font-size: 2.25em;
    line-height: 1.1;
}

/* 36px > 64px */
@media (min-width: 48em) {
    .title-super {
        font-size: 4em;
    }
}

.title-small-super {
    color: var(--gray-1);
    font-size: 2em;
}

/* 32px > 54px */
@media (min-width: 48em) {
    .title-small-super {
        font-size: 3.375em;
    }
}

.title-h1 {
    color: var(--gray-1);
    font-size: 2em;
    line-height: 1.12;
}

/* 32px > 44px */
@media (min-width: 48em) {
    .title-h1 {
        font-size: 2.75em;
    }
}

.title-h2 {
    color: var(--gray-1);
    font-size: 1.5em;
    line-height: 1.25;
}

/* 24px > 36px */
@media (min-width: 48em) {
    .title-h2 {
        font-size: 2.25em;
    }
}

.title-h3 {
    color: var(--gray-1);
    font-size: 1.25em;
    line-height: 1.25;
}

/* 10px > 32px */
@media (min-width: 48em) {
    .title-h3 {
        font-size: 2em;
    }
}

.title-h4 {
    color: var(--gray-1);
    font-size: 1em;
    font-weight: 300;
}

/* 16px > 24px */
@media (min-width: 48em) {
    .title-h4 {
        font-size: 1.5em;
    }
}

.color-primary {
    font-weight: var(--text-bold);
    color: var(--primary-3);
}

.color-secondary {
    font-weight: var(--text-bold);
    color: var(--secondary-3);
}

.slide-from-bottom {
    transform: translateY(4em);
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 1s ease-out;
}

.slide-from-bottom.animation-triggered {
    transform: translateY(0);
    opacity: 1;
}

.buttonLink {
    display: inline-block;
    color: var(--gray-8);
    font-weight: var(--text-bold);
    background-color: var(--primary-3);
    text-decoration: none;
    padding: 0.8em 1.4em;
    border-radius: 3em;
    border: 2px solid var(--primary-3);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s linear;
}

.buttonLink:hover {
    background-color: var(--primary-4);
    border-color: var(--primary-4);
}

.buttonLink:active {
    background-color: var(--primary-2);
    border-color: var(--primary-2);
}

.buttonLink--light {
    background-color: var(--primary-6);
    border-color: var(--primary-6);
    color: var(--primary-2);
}

.buttonLink--light:hover {
    background-color: var(--primary-5);
    border-color: var(--primary-5);
    color: var(--primary-1);
}

.buttonLink--transparent {
    color: var(--primary-3);
    background-color: var(--gray-8);
}

.buttonLink--transparent:hover {
    color: var(--gray-8);
    border-color: var(--primary-3);
    background-color: var(--primary-3);
}

.buttonLink--transparent:active {
    background-color: var(--primary-2);
    border-color: var(--primary-2);
}

.buttonLink--secondary {
    color: var(--secondary-2);
    border-color: var(--secondary-5);
    background-color: var(--secondary-5);
}

.buttonLink--secondary:hover {
    border-color: var(--secondary-4);
    background-color: var(--secondary-4);
}

.buttonLink--tertiary {
    border-color: var(--secondary-3);
    background-color: var(--secondary-3);
}

.buttonLink--tertiary:hover {
    color: var(--secondary-2);
    border-color: var(--secondary-4);
    background-color: var(--secondary-4);
}

.link {
    display: inline-block;
    font-weight: var(--text-bold);
    letter-spacing: 0em;
    color: var(--gray-2);
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.link.back-link {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--primary-3);
}

.link.back-link::before {
    content: "";
    display: inline-block;
    width: 0.6em;
    height: 1.1em;
    margin-right: 1em;
    background-image: url("/img/design/arrow-blue-icon.svg");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    margin-top: 3px;
}

.link:hover {
    border-bottom-color: currentColor;
}

.triangle-list {
    margin: 1em 0;
    padding-left: 3.4em;
}

.triangle-list li {
    position: relative;
    margin: 0.5em 0;
    list-style: none;
}

.triangle-list li:before {
    content: "";
    display: block;
    position: absolute;
    top: 0.2em;
    left: -1.5em;
    background-image: url("/img/design/triangleList-blue.png");
    background-size: contain;
    width: 0.8125em;
    height: 0.875em;
}

.triangle-list--light li:before {
    top: 0.3em;
    background-image: url("/img/design/triangleList-light.png");
    width: 0.5625em;
    height: 0.5625em;
}

.triangle-list--purple li:before {
    top: 0.3em;
    background-image: url("/img/design/triangleList-purple.png");
    width: 0.5625em;
    height: 0.5625em;
}

.triangle-list strong {
    font-weight: var(--text-bold);
}

.imageAndList {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3em;
    align-items: center;
    margin-top: 2em;
}

.imageAndList img {
    max-width: 25em;
    margin: 0 auto;
}

.imageAndList__title {
    margin: 0;
    font-weight: var(--text-bold);
}

.imageAndList__subTitle1 {
    font-weight: var(--text-bold);
}

.imageAndList__subTitle2 {
    margin: 1.4em 0;
    padding-bottom: 1.6em;
    border-bottom: 1px solid var(--gray-6);
}

.imageAndList__listTitle {
    font-weight: var(--text-bold);
}

@media (min-width: 64em) {
    .imageAndList {
        grid-template-columns: 1fr 1fr;
    }

    .imageAndList img {
        max-width: none;
    }

    .imageAndList--imgRight img {
        order: 1;
    }
}

/* //////////////////////////////////////////////////// */
/* /////////////////////// Waves ////////////////////// */
/* //////////////////////////////////////////////////// */

.waves {
    overflow: hidden;
    display: flex;
    justify-content: center;
    height: 8em;
    margin: 0 auto;
}

.waves__wrapper {
    position: relative;
    flex-shrink: 0;
    width: 120em;
    height: 100%;
}

.waves__wrapper__waves1,
.waves__wrapper__waves2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.waves__wrapper__waves1::before,
.waves__wrapper__waves1::after,
.waves__wrapper__waves2::before,
.waves__wrapper__waves2::after {
    position: absolute;
    content: "";
    display: block;
    height: 20em;
    width: 76em;
    border-radius: 50%;
    background-color: var(--gray-8);
    opacity: 0.7;
}

.waves--blue .waves__wrapper__waves1::before,
.waves--blue .waves__wrapper__waves1::after,
.waves--blue .waves__wrapper__waves2::before,
.waves--blue .waves__wrapper__waves2::after {
    background-color: var(--primary-6);
}

.waves__wrapper__waves1::before {
    top: 3em;
    left: -31em;
    -webkit-animation: waves1-before 12s ease-in-out 0s alternate infinite;
            animation: waves1-before 12s ease-in-out 0s alternate infinite;
}

.waves__wrapper__waves1::after {
    top: 3.4em;
    left: -10em;
    -webkit-animation: waves1-after 10s ease-in-out 0s alternate infinite;
            animation: waves1-after 10s ease-in-out 0s alternate infinite;
}

.waves__wrapper__waves2::before {
    top: 4em;
    left: 10em;
    -webkit-animation: waves2-before 14s ease-in-out 0s alternate infinite;
            animation: waves2-before 14s ease-in-out 0s alternate infinite;
}

.waves__wrapper__waves2::after {
    top: 3em;
    right: -35em;
    width: 140em;
    height: 40em;
    opacity: 1;
    -webkit-animation: waves2-after 16s ease-in-out 0s alternate infinite;
            animation: waves2-after 16s ease-in-out 0s alternate infinite;
}

@-webkit-keyframes waves1-before {
    0% {
        transform: rotate(0) translate(0);
    }
    100% {
        transform: rotate(-5deg) translate(5em, 2em);
    }
}

@keyframes waves1-before {
    0% {
        transform: rotate(0) translate(0);
    }
    100% {
        transform: rotate(-5deg) translate(5em, 2em);
    }
}

@-webkit-keyframes waves1-after {
    0% {
        transform: rotate(0) translate(0);
    }
    100% {
        transform: rotate(-5deg) translate(-10em, -1em);
    }
}

@keyframes waves1-after {
    0% {
        transform: rotate(0) translate(0);
    }
    100% {
        transform: rotate(-5deg) translate(-10em, -1em);
    }
}

@-webkit-keyframes waves2-before {
    0% {
        transform: rotate(0) translate(0);
    }
    100% {
        transform: rotate(-10deg) translate(-6em, -1em);
    }
}

@keyframes waves2-before {
    0% {
        transform: rotate(0) translate(0);
    }
    100% {
        transform: rotate(-10deg) translate(-6em, -1em);
    }
}

@-webkit-keyframes waves2-after {
    0% {
        transform: rotate(0) translate(0);
    }
    100% {
        transform: rotate(-6deg) translate(8em, -1em);
    }
}

@keyframes waves2-after {
    0% {
        transform: rotate(0) translate(0);
    }
    100% {
        transform: rotate(-6deg) translate(8em, -1em);
    }
}

/* //////////////////////////////////////////////////// */
/* ////////////////////// Input /////////////////////// */
/* //////////////////////////////////////////////////// */

.input {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1.5em 3em 1em;
}

.input__label {
    font-size: 0.8125em;
}

.input__input,
.input__select,
.input__textarea {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    padding: 0.8125em;
    border: 1px solid var(--gray-6);
    background-color: var(--gray-7);
    border-radius: 0.3125em;
}

.input.select {
    position: relative;
    z-index: 0;
}

.input.select::after {
    content: "";
    position: absolute;
    top: calc(50% - 0.3em);
    right: 1em;
    width: 0.6em;
    height: 0.6em;
    border-right: 2px solid var(--primary-3);
    border-bottom: 2px solid var(--primary-3);
    transform: rotate(45deg);
}

.input.textarea {
    grid-template-rows: 1.5em auto 1em;
}

.input.textarea .input__textarea {
    resize: vertical;
}

.input.error .input__input,
.input.error .input__select,
.input.error .input__textarea {
    border-color: var(--validation-error);
}

.input__textError {
    color: var(--validation-error);
    font-size: 0.8125em;
}

/* //////////////////////////////////////////////////// */
/* ///////////////////// Carousel ///////////////////// */
/* //////////////////////////////////////////////////// */

.carousel {
    position: relative;
    z-index: 0;
    overflow: hidden;
    width: 100%;
    padding: 0 2em;
    box-sizing: border-box;
}

.carousel--destkop {
    display: none;
}

@media (min-width: 48em) {
    .carousel--mobile {
        display: none;
    }

    .carousel--destkop {
        display: block;
    }
}

.carousel_prevNext {
    position: absolute;
    z-index: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel_prevNext-prev {
    left: 0;
}

.carousel_prevNext-next {
    right: 0;
}

.carousel_prevNext_button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: transparent;
    border: 0;
    cursor: pointer;
    background-color: var(--primary-6);
}

.carousel_prevNext_button span {
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    border-left: 2px solid var(--primary-3);
    border-bottom: 2px solid var(--primary-3);
    border-radius: 2px 0px 2px 1px;
    opacity: 1;
    pointer-events: none;
}

.carousel_prevNext_button img {
    pointer-events: none;
    max-width: 1em;
}

.carousel_prevNext_button-prev span {
    transform: rotate(45deg);
}

.carousel_prevNext_button-next span {
    transform: rotate(225deg);
}

.carousel_slideSelectorContainer {
    display: flex;
    justify-content: center;
    margin-top: 2em;
}

.carousel_slideSelector {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 2px solid transparent;
    background-color: #2f84ee;
    margin: 0.5rem;
}

.carousel_slideSelector.carousel_slideSelector-active {
    border-color: #2f84ee;
    background-color: transparent;
}

.carousel_slider-container {
    margin: 0 auto;
}

.carousel_slider {
    display: flex;
    transition: all 0.5s ease-in-out;
    margin-left: 100%;
    overflow: hidden;
}

.carousel_slider_slide {
    width: 100%;
}

.carousel_slider_slide_content {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* //////////////////////////////////////////////////// */
/* ////////////////////// Header ////////////////////// */
/* //////////////////////////////////////////////////// */

.header {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: var(--header-height);
    transition: all 0.2s linear;
    background-color: var(--gray-8);
    color: var(--gray-1);
    box-shadow: var(--gray-0) 0 0 8px -4px;
}

.body--headerNotScrolled .header {
    height: var(--header-height-not-scrolled);
    background-color: transparent;
    box-shadow: none;
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 101em;
}

.header__content__logo--link {
    display: block;
    border: 0;
}

.header__content__logo {
    position: relative;
    z-index: 2;
    left: 0;
    width: 100%;
    height: auto;
    max-width: 11.25em;
    transition: all 0.2s ease-in-out;
}

.body--headerNotScrolled .header.header--light .header__content__logo path {
    fill: var(--gray-8);
}

@media (min-width: 64em) {
    .header__content__hamburgerMenu {
        display: none;
    }

    #hamburgerMenu:checked ~ .link .header__content__logo path {
        fill: var(--gray-8);
    }
}

@media (min-width: 85em) {
    .header__content.h--siteWidth {
        margin: 0 var(--large-spacing);
    }
}

@media (min-width: 106em) {
    .header__content.h--siteWidth {
        margin: 0 auto;
    }
}

.header__content__hamburgerMenu__input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.header__content__hamburgerMenu__button {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 1.375em;
    height: 1.125em;
    transition: all 0.2s ease-in-out;
}

#hamburgerMenu:checked
    ~ .header__content__hamburgerMenu
    .header__content__hamburgerMenu__button {
    transform: rotate(-180deg);
}

.header__content__hamburgerMenu__button::before,
.header__content__hamburgerMenu__button::after {
    content: "";
    position: absolute;
    left: 0;
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 25px;
    background-color: var(--primary-3);
    transition: all 0.2s ease-in-out;
}

.header__content__hamburgerMenu__button::before {
    top: 0;
}

#hamburgerMenu:checked
    ~ .header__content__hamburgerMenu
    .header__content__hamburgerMenu__button::before {
    transform: rotate(-45deg);
    top: 8px;
}

.header__content__hamburgerMenu__button::after {
    bottom: 0;
}

#hamburgerMenu:checked
    ~ .header__content__hamburgerMenu
    .header__content__hamburgerMenu__button::after {
    transform: rotate(45deg);
    bottom: 8px;
}

.header__content__hamburgerMenu__button div {
    height: 2px;
    width: 100%;
    border-radius: 25px;
    background-color: var(--primary-3);
    transition: all 0.2s ease-in-out;
}

#hamburgerMenu:checked
    ~ .header__content__hamburgerMenu
    .header__content__hamburgerMenu__button
    div {
    opacity: 0;
}

.body--headerNotScrolled
    .header--light
    .header__content__hamburgerMenu__button::before,
.body--headerNotScrolled
    .header--light
    .header__content__hamburgerMenu__button::after,
.body--headerNotScrolled
    .header--light
    .header__content__hamburgerMenu__button
    div,
#hamburgerMenu:checked
    ~ .header__content__hamburgerMenu
    .header__content__hamburgerMenu__button::before,
#hamburgerMenu:checked
    ~ .header__content__hamburgerMenu
    .header__content__hamburgerMenu__button::after,
#hamburgerMenu:checked
    ~ .header__content__hamburgerMenu
    .header__content__hamburgerMenu__button
    div {
    background-color: var(--gray-8);
}

.header__content__hamburgerMenu__links {
    position: fixed;
    z-index: 1;
    top: 0;
    right: -100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2em;
    width: 100%;
    height: 100%;
    padding-top: 7em;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    background: var(--gradient-1);
}

.header__content__hamburgerMenu__links__link {
    color: var(--gray-8);
}

label.header__content__hamburgerMenu__links__link {
    margin-left: 1em;
}

label.header__content__hamburgerMenu__links__link:after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    margin-left: 0.5em;
    border-left: 2px solid var(--gray-8);
    border-bottom: 2px solid var(--gray-8);
    border-radius: 2px 0px 2px 1px;
    transform: rotate(225deg);
}

.header__content__hamburgerMenu__links__link--small {
    font-size: var(--text-13);
}

.header__content__hamburgerMenu__links__link.selected {
    border-color: currentColor;
}

.header__content__hamburgerMenu__links__separator {
    height: 1px;
    width: 80%;
    margin: 1em 0;
    background-color: var(--gray-8);
}

#hamburgerMenu:checked
    ~ .header__content__hamburgerMenu
    .header__content__hamburgerMenu__links {
    right: 0;
    opacity: 1;
}

#hamburgerMenu:checked
    ~ #hamburgerMenuSubMenu--features:checked
    ~ .header__content__logo--link
    .header__content__logo,
#hamburgerMenu:checked
    ~ #hamburgerMenuSubMenu--ressources:checked
    ~ .header__content__logo--link
    .header__content__logo,
#hamburgerMenu:checked
    ~ #hamburgerMenuSubMenu--company:checked
    ~ .header__content__logo--link
    .header__content__logo {
    left: -300px;
}

#hamburgerMenuSubMenu--features:checked
    ~ .header__content__hamburgerMenu
    .header__content__hamburgerMenu__links__subLinks--features,
#hamburgerMenuSubMenu--ressources:checked
    ~ .header__content__hamburgerMenu
    .header__content__hamburgerMenu__links__subLinks--ressources,
#hamburgerMenuSubMenu--company:checked
    ~ .header__content__hamburgerMenu
    .header__content__hamburgerMenu__links__subLinks--company {
    right: 0;
}

.header__content__hamburgerMenu__links__subLinks {
    position: absolute;
    top: 0;
    right: -100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2em;
    width: 100%;
    height: 100%;
    padding-top: 7em;
    background: var(--gradient-1);
    transition: all 0.2s ease-in-out;
}

.header__content__hamburgerMenu__links__subLinks__goBackCta {
    position: absolute;
    top: 2em;
    left: 1em;
    color: var(--gray-8);
}

.header__content__hamburgerMenu__links__subLinks__goBackCta:before {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    margin-right: 0.5em;
    border-left: 2px solid var(--gray-8);
    border-bottom: 2px solid var(--gray-8);
    border-radius: 2px 0px 2px 1px;
    transform: rotate(45deg);
}

.header__content__hamburgerMenu__links__subLinks__title {
    width: 80%;
    margin-bottom: 1em;
    padding-bottom: 1.6em;
    border-bottom: 1px solid var(--gray-8);
    font-size: 1.5em;
    font-weight: var(--text-bold);
    text-align: center;
    color: var(--gray-8);
}

.header__content__hamburgerMenu__links__subLinks__link {
    color: var(--gray-8);
}

.header__content__linksWrapper {
    display: none;
}

@media (min-width: 64em) {
    .header__content__linksWrapper {
        display: block;
    }
}

.header__content__linksWrapper__link.link {
    margin-right: 2em;
}

.header__content__linksWrapper__link.link:hover {
    color: var(--primary-3);
}

.header__content__linksWrapper__link.selected {
    border-color: currentColor;
    color: var(--primary-3);
}

.body--headerNotScrolled
    .header.header--light
    .header__content__linksWrapper__link {
    color: var(--gray-8);
}

.header__content__linksWrapper__link {
    font-size: 0.8em;
}

@media (min-width: 67em) {
    .header__content__linksWrapper__link {
        font-size: 0.9em;
    }
}

@media (min-width: 70em) {
    .header__content__linksWrapper__link {
        font-size: 1em;
    }
}

.body--headerNotScrolled
    .header.header--light
    .header__content__linksWrapper__link.link:hover {
    color: var(--primary-6);
}

.header__content__linksWrapper__buttonLink {
    margin-left: 0.5em;
}

.header__content__linksWrapper__linkDropdown {
    position: relative;
    cursor: pointer;
}

.header__content__linksWrapper__linkDropdown::after {
    content: "";
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    margin-left: 0.2em;
    margin-bottom: 0.2em;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    border-radius: 2px 0px 2px 1px;
    opacity: 1;
    transform: rotate(-45deg);
    transition: all 0.1s ease-in-out;
}

.header__content__linksWrapper__linkDropdown__content--wrapper {
    position: absolute;
    top: 1.2em;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-top: 0.25em;
    opacity: 0;
    transition: opacity 0.1s linear;
}

.header__content__linksWrapper__linkDropdown__content--wrapper:before {
    position: relative;
    z-index: 0;
    display: block;
    content: "";
    width: 1em;
    height: 1em;
    background-color: var(--gray-8);
    transform: rotate(45deg) translate(0.5em, 0.5em);
    box-shadow: 10px 10px 33px -2px var(--gray-0);
}

.header__content__linksWrapper__linkDropdown__content {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: 18.75em;
    border-radius: 6px;
    background-color: var(--gray-8);
    box-shadow: 0 19px 18px -1px rgba(28, 39, 49, 0.1);
}

.header__content__linksWrapper__linkDropdown__content__link {
    padding: 0.75em;
    color: var(--gray-1);
    font-weight: var(--text-normal);
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}

.header__content__linksWrapper__linkDropdown__content__link:hover {
    background-color: var(--gray-7);
    color: var(--primary-3);
}

.header__content__linksWrapper__linkDropdown__content__link:active {
    background-color: var(--primary-3);
    color: var(--gray-8);
    transition: none;
}

.header__content__linksWrapper__linkDropdown:hover
    .header__content__linksWrapper__linkDropdown__content--wrapper {
    height: auto;
    overflow: visible;
    opacity: 1;
}

.header__content__linksWrapper__linkDropdown:hover::after {
    transform: rotate(-45deg) translate(-0.6em, 0.6em);
    opacity: 0;
}

/* //////////////////////////////////////////////////// */
/* //////////////////// Footer big //////////////////// */
/* //////////////////////////////////////////////////// */

.footer--big {
    padding: 2em 0;
    margin-top: 5em;
    background-color: var(--primary-3);
    color: var(--gray-8);
    background-image: url("/img/design/footer/footer-background.jpg");
    background-size: cover;
    background-position: center bottom;
}

.newsletter-form-container {
    max-width: 32em;
    margin: 2em auto 0 auto;
}

.footer--big__content {
    text-align: center;
}

@media (min-width: 85em) {
    .footer--big__content {
        display: block;
    }
}

.footer--big__content .title-h2,
.footer--big__content .title-h4 {
    color: var(--gray-8);
}

.footer--big__content .title-h2 {
    margin-bottom: 0.2em;
}

.footer--big__content--wrapperBottom {
    margin-top: 3em;
}

@media (min-width: 85em) {
    .footer--big__content--wrapperBottom {
        display: flex;
        justify-content: space-between;
        text-align: left;
    }
}

.footer--big__content__anchor {
    display: none;
    flex-direction: column;
    gap: 0.6em;
    align-items: flex-start;
}

@media (min-width: 85em) {
    .footer--big__content__anchor {
        display: flex;
    }
}

.footer--big__content__logo {
    margin-bottom: 1em;
}

.footer--big__content__logo path {
    fill: var(--gray-8);
}

.footer--big__content__about_link {
    display: block;
    color: var(--gray-8);
    font-weight: var(--text-bold);
    max-width: 26em;
    margin: 0 auto 0.6em auto;
}

.footer--big__content__about_text {
    max-width: 26em;
    margin: 0 auto;
}

.footer--big__content__anchor__title {
    color: var(--gray-8);
    font-size: var(--text-20);
    font-weight: var(--text-bold);
}

.footer--big__content__anchor__link {
    color: var(--gray-8);
    font-weight: var(--text-normal);
}

.footer--big__content__anchor__link.buttonLink {
    font-weight: var(--text-bold);
    padding: 0.5em 1em;
}

.footer-big__demo__btn {
    color: var(--primary-2) !important;
}
/* //////////////////////////////////////////////////// */
/* /////////////////// Footer small /////////////////// */
/* //////////////////////////////////////////////////// */

.footer--small {
    color: var(--gray-8);
    background-color: var(--secondary-1);
}

.footer--small__content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4em;
}

.footer--small__content__link {
    display: none;
    color: var(--gray-8);
    font-weight: var(--text-normal);
    font-size: 0.6875em;
}

.footer--small__content__rights {
    font-size: 0.6875em;
}

@media (min-width: 55em) {
    .footer--small__content {
        justify-content: flex-start;
    }

    .footer--small__content__link {
        display: block;
        margin-right: 1em;
    }

    .footer--small__content__rights {
        margin-left: auto;
    }
}

@media (min-width: 60em) {
    .footer--small__content__link {
        font-size: 1em;
    }

    .footer--small__content__rights {
        font-size: 1em;
    }
}

/* //////////////////////////////////////////////////// */
/* /////////////////////// Home /////////.///////////// */
/* //////////////////////////////////////////////////// */

.home__banner {
    margin-bottom: 4em;
    background: url("/img/design/home/home-hero.jpg");
    background-position: center center;
    background-size: cover;
}

.home__banner__content {
    max-width: 101em;
}

.home__banner__content__title {
    margin: 0;
    color: var(--gray-8);
    font-weight: var(--text-bold);
    line-height: 1.1;
}

.home__banner__content__subTitle1 {
    margin: 0.6em 0 1.2em 0;
    color: var(--gray-8);
    font-weight: var(--text-bold);
}

@media (min-width: 85em) {
    .home__banner__content.h--siteWidth {
        margin: 0 var(--large-spacing);
    }
}

@media (min-width: 106em) {
    .home__banner__content.h--siteWidth {
        margin: 0 auto;
    }
}

/* //////////////////////////////////////////////////// */

.home__customersUsingApp {
    margin-bottom: 6em;
}

.home__banner__content__text {
    max-width: 25em;
    padding: 44% 0 10% 0;
}

@media (min-width: 30em) {
    .home__banner__content__text {
        padding: 45% 0 25% 0;
    }
}

@media (min-width: 48em) {
    .home__banner__content__text {
        max-width: 37em;
        padding: 16em 0 12em 0;
    }
}

@media (min-width: 64em) {
    .home__banner__content__text {
        padding: 18em 0 14em 0;
    }
}

.home__customersUsingApp__title {
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.home__customersUsingApp__subTitle {
    max-width: 46em;
    margin: 1em auto;
    text-align: center;
}

.home__customersUsingApp__customers {
    padding: 3.4em 2.4em;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2em;
    box-shadow: 10px 24px 54px rgba(51, 51, 51, 0.05);
    border-radius: 20px;
}

.home__customersUsingApp__customers__img:nth-of-type(1) {
    max-width: 12.5em;
}

.home__customersUsingApp__customers__img:nth-of-type(2) {
    max-width: 15em;
}

.home__customersUsingApp__customers__img:nth-of-type(3) {
    max-width: 12.5em;
}

.home__customersUsingApp__customers__img:nth-of-type(4) {
    max-width: 19.5em;
}

.home__customersUsingApp__customers__img:nth-of-type(5) {
    max-width: 7em;
}

@media (min-width: 55em) {
    .home__customersUsingApp {
        margin-bottom: 8em;
    }
}

/* //////////////////////////////////////////////////// */

.home__modernWorkplace {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 4em;
    margin-bottom: 6em;
}

@media (min-width: 76em) {
    .home__modernWorkplace {
        grid-template-columns: 20em 1fr 20em;
    }
}

.home__modernWorkplace__img {
    max-width: 28em;
    margin: 0 auto;
}

.home__modernWorkplace__content {
    text-align: center;
}

/* //////////////////////////////////////////////////// */

.home__6things {
    background-color: var(--primary-7);
    padding: 2em 0;
}

.home__6things__content__title {
    max-width: 20em;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.home__6things__content__grid {
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 48em) {
    .home__6things__content__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 75em) {
    .home__6things__content__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.home__6things__content__grid__bloc {
    position: relative;
    z-index: 0;
    margin-top: 2.25em;
    margin-left: 1em;
}

@media (min-width: 48em) {
    .home__6things__content__grid__bloc {
        margin-left: 0;
        margin-right: 2.4em;
    }
}

.home__6things__content__grid__bloc__icon {
    position: absolute;
    top: -1em;
    left: -1em;
    width: 4.375em;
}

.home__6things__content__grid__bloc__img {
    border-radius: 1.25em 1.25em 0 0;
}

.home__6things__content__grid__bloc__text {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 1.25em 1.25em;
    background-color: var(--gray-8);
    box-shadow: 0 2px 0 0 var(--gray-6);
}

@media (min-width: 48em) {
    .home__6things__content__grid__bloc__text {
        min-height: 8.4em;
    }
}

.home__6things__content__grid__bloc__text p {
    margin: 0;
    padding: 0.625em 1.25em;
    text-align: center;
}

/* //////////////////////////////////////////////////// */

.home__achieve {
    padding: 4em 0;
    background-color: var(--primary-7);
}

.home__achieve__content__title {
    text-align: center;
    margin: 0 0 2em 0;
}

.home__achieve__content__title b {
    font-size: 1.125em;
    text-align: center;
}

.home__achieve__content__items__bigItem {
    position: relative;
    z-index: 0;
}

.home__achieve__content__items__bigItem__img {
    border-radius: 1.25em;
}

.home__achieve__content__items__bigItem__text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.6em;
    font-size: 0.9em;
    color: var(--gray-8);
}

.home__achieve__content__items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
    max-width: 25em;
    margin: 0 auto;
}

.home__achieve__content__items__item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2em;
    justify-items: flex-start;
    align-content: flex-start;
}

.home__achieve__content__items__item__img {
    border-radius: 0.625em;
}

.home__achieve__content__items__item__title {
    font-size: var(--text-20);
    font-weight: var(--text-bold);
}

.home__achieve__content__items__item__list {
    padding-left: 1.5em;
}

.home__achieve__content__items__item .link {
    color: var(--primary-3);
}

@media (min-width: 48em) {
    .home__achieve__content__items {
        grid-template-columns: repeat(6, 1fr);
        max-width: none;
    }

    .home__achieve__content__items__bigItem {
        grid-column-end: span 3;
    }

    .home__achieve__content__items__item {
        grid-column-end: span 2;
    }
}

@media (min-width: 64em) {
    .home__achieve__content__items__bigItem__text {
        font-size: 1.25em;
    }
}

/* //////////////////////////////////////////////////// */

.home__dashboard {
    margin-top: 6em;
    padding: 0.8em 0 8em 0;
    background-image: url("/img/design/home/dashboard.png");
    background-size: contain;
    background-position: calc(50% - 47em) center;
    background-repeat: no-repeat;
}

@media (min-width: 80em) {
    .home__dashboard {
        background-position: calc(50% - 42em) center;
    }
}

.home__dashboard__content__text {
    max-width: 38.8em;
    margin-left: auto;
}

.home__dashboard__content__text__subtitle {
    font-size: 1.25em;
}

.home__dashboard__content__text__subtitle2 {
    font-size: 1.25em;
}

.home__dashboard__content__text__list {
    margin: 0 0 1.6em 0;
    padding: 0;
    list-style: none;
    font-size: 1.25em;
}

.home__dashboard__content__text__list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3em;
    margin: 0.5em 0;
}

.home__dashboard__content__text__list li svg {
    margin-right: 0.1em;
}

.home__dashboard + .waves {
    position: relative;
    z-index: -1;
    margin-top: -8em;
}

/* //////////////////////////////////////////////////// */

.home__engage {
    background-image: url("/img/design/home/engage.jpg");
    background-size: cover;
    background-position: left center;
}

.home__engage__content {
    max-width: 39em;
    padding: 7.5em 0;
}

.home__engage__content__title {
    margin: 0;
    color: var(--primary-3);
}

.home__engage__content__text {
    margin: 1em 0;
    font-size: 1.25em;
}

/* //////////////////////////////////////////////////// */

.bookDemo--wrapper {
    overflow: hidden;
    padding: 11em 0;
}

.bookDemoBloc {
    padding: 2em 1.5em;
    background-color: var(--secondary-3);
    border-radius: 20px;
    text-align: center;
    background-image: url("/img/design/laptop-purple.jpg");
    background-size: cover;
    background-position: center center;
}

.bookDemoBloc__title {
    color: var(--gray-8);
    margin: 0;
}

.bookDemoBloc__subTitle {
    margin: 0.6em 0 2em 0;
    color: var(--gray-8);
    font-weight: var(--text-bold);
}

.bookDemoBloc__img {
    position: relative;
    right: -1.5em;
    max-width: 24em;
    margin: 2em auto 0 auto;
}

@media (min-width: 64em) {
    .bookDemoBloc {
        margin-right: 15em;
        padding: 4em 2.5em;
        text-align: left;
    }

    .bookDemoBloc__content {
        width: 65%;
    }

    .bookDemoBloc__subTitle {
        font-size: var(--text-20);
    }

    .bookDemoBloc__img {
        position: absolute;
        top: -4em;
        right: -9em;
        max-width: 43em;
        margin: 0;
    }
}

/* //////////////////////////////////////////////////// */
/* /////////////////// News Carousel ////////////////// */
/* //////////////////////////////////////////////////// */

.home__ressources {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
}

@media (min-width: 48em) {
    .home__ressources {
        display: grid;
    }
}

.home__ressources__title {
    grid-column: 1 / span 2;
}

.home__ressources__allCta {
    justify-self: flex-end;
    align-self: center;

    visibility: hidden; /* temp */
}

.home__ressources__bloc__img {
    display: block;
    margin-bottom: 2em;
}

.home__ressources__bloc__img img {
    border-radius: 10px;
    transition: transform 0.2s linear;
}

.home__ressources__bloc__img:hover img {
    transform: scale(1.05);
}

.home__ressources__bloc__title {
    margin-top: 0;
    font-weight: var(--text-bold);
    font-size: var(--text-20);
}

.home__ressources__bloc__separator {
    width: 2em;
    height: 2px;
    background-color: var(--gray-6);
}

.home__ressources__bloc__desc {
    margin: 1em 0;
}

.home__ressources__bloc__cta {
    color: var(--primary-3);
    transition: color 0.2s linear;
}

.home__ressources__bloc__cta:hover {
    color: var(--primary-4);
}

.home__ressources__bloc {
    width: 90%;
    max-width: 20em;
}

/* //////////////////////////////////////////////////// */
/* ////////////////////// Features //////////////////// */
/* //////////////////////////////////////////////////// */

.features__banner {
    padding: 8em 0 0 0;
    background-color: var(--primary-4);
    background-image: url("/img/design/laptop-blue-gradient.jpg");
    background-size: cover;
    background-position: center top;
    text-align: center;
}

.features__banner__title {
    margin: 0 auto 0.2em auto;
    font-weight: var(--text-bold);
    color: var(--gray-8);
}

.features__banner__subTitle {
    max-width: 46.5em;
    margin: 0 auto 3em auto;
    font-weight: var(--text-bold);
    color: var(--gray-8);
}

/* //////////////////////////////////////////////////// */

.features__content {
    margin-bottom: 3em;
}

.features__content__logos_title {
    font-size: 2em;
    text-align: center;
}

.features__content__logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 615px;
    margin: auto;
    margin-bottom: 80px;
}

.features__content__logos__plusSign {
    color: var(--primary-3);
    font-size: 1.5em;
    font-weight: var(--text-bold);
}

.features__content__logos__flexy {
    max-height: 38px;
    max-width: 155px;
}

.features__content__logos__slack {
    max-height: 65px;
    max-width: 128px;
}

.features__content__logos__calendar {
    max-height: 39px;
    max-width: 153px;
}

.features__content__img {
    position: relative;
}

.features__content__nav {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
    margin-bottom: 3em;
    padding: 1em;
    background-color: var(--gray-8);
    border-radius: 20px;
    box-shadow: 10px 24px 54px 0px rgba(51, 51, 51, 0.05);
}

.features__content__nav__title {
    font-weight: var(--text-bold);
    text-align: center;
}

.features__content__nav__title__img {
    width: 0.9375em;
    height: 0.9375em;
    margin: 0 auto;
}

.features__content__nav__ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.6em;
    margin: 0 auto;
}

.features__content__nav__ctas__cta {
    display: flex;
    align-items: center;
    padding: 0.5em 1em;
    border-radius: 5px;
    box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.08), 0px 0px 2px rgba(0, 0, 0, 0.06),
        0px 0px 1px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease-in-out;
}

.features__content__nav__ctas__cta svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.features__content[data-hash="connection-center"]
    .features__content__nav__ctas__cta.connection-center,
.features__content[data-hash="workplace-happenings"]
    .features__content__nav__ctas__cta.workplace-happenings,
.features__content[data-hash="talent-directory"]
    .features__content__nav__ctas__cta.talent-directory,
.features__content[data-hash="club-gatherings"]
    .features__content__nav__ctas__cta.club-gatherings,
.features__content[data-hash="workplace-guardrails"]
    .features__content__nav__ctas__cta.workplace-guardrails,
.features__content[data-hash="space-reservations"]
    .features__content__nav__ctas__cta.space-reservations,
.features__content[data-hash="flexy-chatbot"]
    .features__content__nav__ctas__cta.flexy-chatbot,
.features__content[data-hash="workplace-analytics"]
    .features__content__nav__ctas__cta.workplace-analytics {
    background-color: var(--primary-3);
    color: var(--gray-8);
}

.features__content[data-hash="connection-center"]
    .features__content__nav__ctas__cta.connection-center
    path,
.features__content[data-hash="workplace-happenings"]
    .features__content__nav__ctas__cta.workplace-happenings
    path,
.features__content[data-hash="talent-directory"]
    .features__content__nav__ctas__cta.talent-directory
    path,
.features__content[data-hash="club-gatherings"]
    .features__content__nav__ctas__cta.club-gatherings
    path,
.features__content[data-hash="workplace-guardrails"]
    .features__content__nav__ctas__cta.workplace-guardrails
    path,
.features__content[data-hash="space-reservations"]
    .features__content__nav__ctas__cta.space-reservations
    path,
.features__content[data-hash="space-reservations"]
    .features__content__nav__ctas__cta.space-reservations
    rect,
.features__content[data-hash="flexy-chatbot"]
    .features__content__nav__ctas__cta.flexy-chatbot
    path,
.features__content[data-hash="workplace-analytics"]
    .features__content__nav__ctas__cta.workplace-analytics
    path {
    fill: var(--gray-8);
}
.features__content[data-hash="space-reservations"]
    .features__content__nav__ctas__cta.space-reservations
    #paint1_radial_2333_778 {
    display: none;
}
.features__content[data-hash="space-reservations"]
    .features__content__nav__ctas__cta.space-reservations
    #check0_ddd_2333_778 {
    fill: var(--primary-3);
}

/* //////////////////////////////////////////////////// */

.features__content__slider {
    position: relative;
    height: 45em;
}

.features__content__slider__slide {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1em;
    align-content: flex-start;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.features__content[data-hash="connection-center"]
    .features__content__slider__slide.connection-center,
.features__content[data-hash="workplace-happenings"]
    .features__content__slider__slide.workplace-happenings,
.features__content[data-hash="talent-directory"]
    .features__content__slider__slide.talent-directory,
.features__content[data-hash="club-gatherings"]
    .features__content__slider__slide.club-gatherings,
.features__content[data-hash="workplace-guardrails"]
    .features__content__slider__slide.workplace-guardrails,
.features__content[data-hash="space-reservations"]
    .features__content__slider__slide.space-reservations,
.features__content[data-hash="flexy-chatbot"]
    .features__content__slider__slide.flexy-chatbot,
.features__content[data-hash="workplace-analytics"]
    .features__content__slider__slide.workplace-analytics {
    opacity: 1;
    z-index: 1;
}

.features__content__slider__slide--text {
    max-width: 35.5em;
    margin: 0 auto;
}

.features__content__slider__slide__img {
    max-width: 10em;
    margin: 0 auto;
}

.features__content__slider__slide__title {
    margin: 0;
    font-weight: var(--text-bold);
}

.features__content__slider__slide__subTitle {
    margin: 0.8em 0 2em 0;
    padding: 0 0 2em 0;
    border-bottom: 1px solid var(--gray-6);
}

.features__content__slider__slide .triangle-list {
    margin-bottom: 2em;
}

.features__content__slider__slide .buttonLink {
    display: flex;
    align-items: center;
    gap: 1em;
}

.features__content__slider__slide .buttonLink span {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.4em 0 0.4em 0.7em;
    border-color: transparent transparent transparent var(--gray-8);
}

/* //////////////////////////////////////////////////// */

@media (min-width: 29em) {
    .features__content__nav__ctas {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 58em) {
    .features__content__nav__ctas {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 64em) {
    .features__banner {
        padding: 12em 0 0 0;
    }

    .features__banner__subTitle {
        margin-bottom: 9em;
    }

    .features__content__nav {
        padding: 1.8em 1em;
    }

    .features__content__nav__ctas {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (min-width: 35em) {
    .features__content__logos {
        flex-direction: row;
    }
}

@media (min-width: 85em) {
    .features__content__nav {
        grid-template-columns: 13em 1fr;
        align-items: center;
    }
}

@media (min-width: 21em) {
    .features__content__slider {
        height: 37em;
    }
}

@media (min-width: 48em) {
    .features__content__slider {
        height: 40em;
    }
}

@media (min-width: 48em) {
    .features__content__slider__slide {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .features__content__slider__slide__img {
        order: 1;
        max-width: 36.875em;
        margin-right: 0;
    }
}

@media (min-width: 70em) {
    .features__content__slider__slide {
        grid-template-columns: 35.625em 1fr;
    }
}

@media (min-width: 75em) {
    .features__content__slider__slide {
        gap: 4em;
    }
}

/* //////////////////////////////////////////////////// */

.features__videoLayer {
    position: fixed;
    z-index: 10;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0, 0.92);
    transform: translateY(-100%);
    transition: opacity 0.4s ease-in-out;
}

.features__videoLayer.open {
    transform: translateY(0);
    opacity: 1;
}

.features__videoLayer.preClose {
    opacity: 0;
}

.features__videoLayer__wrapper {
    overflow: hidden;
    width: 96%;
    transform: scaleY(0);
    transition: all 0.2s ease-in-out;
}

.features__videoLayer.open .features__videoLayer__wrapper {
    transform: scaleY(1);
}

.features__videoLayer.preClose .features__videoLayer__wrapper {
    display: none;
}

@media (min-width: 48em) {
    .features__videoLayer__wrapper {
        width: 80%;
        max-width: 80em;
    }
}

.features__videoLayer__wrapper__closeButton {
    width: 1.4em;
    height: 1.4em;
    margin-left: auto;
    margin-bottom: 0.4em;
    cursor: pointer;
}

.features__videoLayer__wrapper__closeButton::before,
.features__videoLayer__wrapper__closeButton::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--gray-8);
}

.features__videoLayer__wrapper__closeButton::before {
    transform: rotate(45deg) translate(32%, 350%);
}

.features__videoLayer__wrapper__closeButton::after {
    transform: rotate(-45deg) translate(-26%, 280%);
}

.features__videoLayer__wrapper__videoPlayer {
    display: block;
}

.features__videoLayer__wrapper__progressBar {
    width: 0;
    height: 4px;
    background: var(--gradient-1);
    transition: width 0.25s linear;
}

/* //////////////////////////////////////////////////// */
/* ////////////////////// Company ///////////////////// */
/* //////////////////////////////////////////////////// */

.page-companyView .footer--big {
    margin-top: 0;
}

.company--wrapper {
    padding-bottom: 5em;
    background: linear-gradient(
        0deg,
        rgba(244, 249, 255, 1) 0%,
        rgba(244, 249, 255, 1) 79%,
        rgba(255, 255, 255, 0) 81%,
        rgba(255, 255, 255, 0) 100%
    );
}

.company__banner {
    padding: var(--header-height-not-scrolled) 0 0 0;
    background-color: var(--primary-4);
    background-image: url("/img/design/laptop-blue-gradient.jpg");
    background-size: cover;
    background-position: center top;
    text-align: center;
}

.company__banner--wrapper {
    padding: 3em 0;
}

.company__banner__title {
    margin: 0 auto 0.2em auto;
    color: var(--gray-8);
}

.company__banner__subtitle {
    max-width: 66em;
    margin: 0 auto;
    color: var(--gray-8);
    text-align: justify;
}

.company__people {
    padding: 5em 0;
}

.company__people__title {
    margin: 0;
}

.company__people__grid {
    display: grid;
    grid-template-columns: 1fr;
    -moz-column-gap: 1em;
         column-gap: 1em;
    row-gap: 1.4em;
    padding-top: 11em;
    background-image: url("/img/design/company/company-bg-left.png"),
        url("/img/design/company/company-bg-right.png");
    background-position: top -20em left, top 6em right;
    background-size: 50% auto, 100% auto;
    background-repeat: no-repeat;
}

.company__people__grid__bloc {
    position: relative;
    z-index: 0;
}

@media (min-width: 30em) {
    .company__people__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 1fr;
        background-position: top -20em left, top 4em right;
    }
}

@media (min-width: 48em) {
    .company__people__grid {
        grid-template-columns: repeat(3, 1fr);
        background-position: top left -9%, top 4em right;
        background-size: 50% auto, 50% auto;
    }

    .company__people__grid__bloc:nth-child(3n + 2) {
        top: -4em;
    }
}

@media (min-width: 75em) {
    .company__people__grid {
        grid-template-columns: repeat(5, 1fr);
        background-position: top -5% left -13%, top right;
        background-size: 50% auto, 60% auto;
    }

    .company__people__grid__bloc:nth-child(3n + 2) {
        top: 0;
    }

    .company__people__grid__bloc:nth-child(5n + 2),
    .company__people__grid__bloc:nth-child(5n + 4) {
        top: -4em;
    }
}

.company__people__grid__bloc--spacer {
    display: none;
}

@media (min-width: 75em) {
    .company__people__grid__bloc--spacer {
        display: block;
    }
}

.company__people__grid__bloc__img {
    aspect-ratio: 1 / 1;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    box-shadow: 10px 24px 54px 0px rgba(51, 51, 51, 0.05);
}

.company__people__grid__bloc__details {
    margin-top: 1.4em;
    text-align: center;
}

.company__people__grid__bloc__details__name {
    margin: 0;
    font-size: 1.25em;
    font-weight: bold;
}

.company__news.title-h1 {
    text-align: center;
}

/* //////////////////////////////////////////////////// */
/* ///////////////////// Pricing ////////////////////// */
/* //////////////////////////////////////////////////// */

.page-pricingView .footer--big {
    margin-top: 0;
}

.pricing__title {
    text-align: center;
    padding-top: 10em;
    margin-bottom: 6em;
}

.pricing__title__title {
    margin: 0;
    font-weight: var(--text-bold);
}

.pricing__title__subTitle {
    margin: 0;
}

.pricing__details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    @media screen and (max-width: 1200px) {
        flex-direction: column;
        align-items: center;
    }
}

/* //////////////////////////////////////////////////// */
/* ///////////////////// pricingCard ////////////////// */
/* //////////////////////////////////////////////////// */

/* default pricing card styling*/
.pricingCard {
    max-width: 509px;
    width: 100%;
    height: 905px;
    flex: 1 1 auto;
    position: relative;
    background: white;

    .pricingCard__side-circle {
        width: 765px;
        height: 285px;
        border-radius: 50%;
        z-index: -1;
        position: absolute;
        top: 340px;
        rotate: 90deg;
        @media screen and (max-width: 1200px) {
            display: none;
        }
    }

    .pricingCard__container {
        height: 100%;
        border-radius: 8px;
        position: relative;
        overflow: hidden;
        box-shadow: 8.08368px 19.40083px 43.65187px 0px rgba(51, 51, 51, 0.05);

        .pricingCard__semi-circle {
            width: 150%;
            height: 441px;
            position: absolute;
            top: -290px;
            left: -25%;
            border-radius: 50%;
        }

        .pricingCard__title-section {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;

            .pricingCard__title {
                font-size: 2em;
                font-weight: var(--text-bold);
                margin-bottom: 0;
            }

            .pricingCard__sub-title {
                font-size: 1.25em;
                text-align: center;
            }
        }

        .pricingCard__features-container {
            margin: 65px 32px 32px 32px;
            height: 723px;
            display: flex;
            flex-direction: column;

            .pricingCard__includes {
                font-weight: var(--text-bold);
                font-size: 1.25em;
                margin-top: 10px;
            }

            .pricingCard__feature-item {
                display: flex;
                align-items: center;
                height: 56px;
                border-bottom: 1px solid var(--gray-7);

                .pricingCard__checkmark {
                    color: #4cb25d;
                    margin-right: 10px;
                }
            }

            .pricingCard__book-btn {
                border-radius: 10px;
                padding: 15px;
                border: none;
                font-weight: var(--text-bold);
                transition: all 0.2s linear;
                margin-top: auto;
                margin-bottom: 20px;
                text-align: center;
                text-decoration: none;
                &:hover {
                    cursor: pointer;
                }
            }
        }
    }
}

/* override pricing card styling pricingCardBasic*/
.pricingCardBasic {
    .pricingCard__side-circle {
        background: var(--primary-6);
        right: 45px;
    }
    .pricingCard__container {
        border-top: 4px solid var(--primary-2);

        .pricingCard__semi-circle {
            background: linear-gradient(
                317deg,
                #6aa7f3 -12.56%,
                #1168d4 78.59%
            );
        }

        .pricingCard__price {
            margin-bottom: 10px;
            text-align: center;
            font-weight: var(--text-bold);
            font-size: 3.37em;
            background: radial-gradient(
                270.22% 112.99% at 85.28% 98.85%,
                #2f84ee 0%,
                #60a2f4 30.73%,
                #8764ff 77.73%,
                #702ded 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .pricingCard__book-btn {
            background-color: var(--primary-6);
            color: var(--primary-2);
            &:hover {
                background-color: var(--primary-5);
                color: var(--primary-1);
            }
        }
    }
}

/* override pricing card styling pricingCardEnterprise*/
.pricingCardEnterprise {
    .pricingCard__side-circle {
        background: var(--secondary-5);
        left: 45px;
    }
    .pricingCard__container {
        border-top: 4px solid var(--secondary-2);

        .pricingCard__semi-circle {
            background: linear-gradient(122deg, #6b40ed 0%, #9373f2 81.29%);
        }

        .pricingCard__price-enterprise {
            margin-bottom: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            .pricingCard__money {
                color: var(--secondary-3);
                font-size: 3.375em;
                font-weight: var(--text-bold);
            }
            .pricingCard__billing {
                display: flex;
                flex-direction: column;
                .pricingCard__per-user {
                    color: var(--secondary-3);
                    font-size: 1.5em;
                    font-weight: var(--text-bold);
                }
            }
        }

        .pricingCard__enterprise-included {
            font-weight: var(--text-bold);
            background: radial-gradient(
                270.22% 112.99% at 85.28% 98.85%,
                #2f84ee 0%,
                #60a2f4 30.73%,
                #8764ff 77.73%,
                #702ded 100%
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .pricingCard__book-btn {
            background-color: var(--secondary-3);
            color: white;
            &:hover {
                background-color: var(--secondary-2);
            }
        }
    }
}

/* //////////////////////////////////////////////////// */
/* ///////////////////// Our View ///////////////////// */
/* //////////////////////////////////////////////////// */

.ourView__banner {
    padding: var(--header-height-not-scrolled) 0 0 0;
    background-color: var(--primary-4);
    background-image: url("/img/design/laptop-blue-gradient.jpg");
    background-size: cover;
    background-position: center top;
    text-align: center;
}

.ourView__banner__title {
    max-width: 13.778em;
    margin: 0 auto 0.2em auto;
    font-weight: var(--text-bold);
    color: var(--gray-8);
}

.ourView__bloc {
    margin-top: 6em;
}

.ourView__bloc--2 {
    margin-top: 4em;
}

.ourView__bloc--2 img {
    margin-top: 5em;
}

/* //////////////////////////////////////////////////// */
/* /////////////////// Integration //////////////////// */
/* //////////////////////////////////////////////////// */

.integration {
    margin-top: 0;
    padding-top: 8em;
}

.integration .imageAndList__subTitle2 {
    font-size: 1.5em;
}

.page-integrationView .waves {
    margin-bottom: -5em;
}

/* //////////////////////////////////////////////////// */
/* /////////////////////// Blog /////////////////////// */
/* //////////////////////////////////////////////////// */

.blog {
    padding-top: 4em;
    overflow: hidden;
}

.blog__content {
    position: relative;
}

.blog__content__title {
    text-align: center;
    margin-bottom: 0;
}

.blog__content__subtitle {
    text-align: center;
    margin-bottom: 7em;
    margin-top: 0;
}

/* //////////////////////////////////////////////////// */
/* ///////////////////// Blog Item //////////////////// */
/* //////////////////////////////////////////////////// */

.blogItem {
    margin-bottom: 3em;
}

@media (min-width: 48em) {
    .blogItem {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2em;
        align-items: center;
    }
}

@media (min-width: 85em) {
    .blogItem {
        grid-template-columns: 38.75em 1fr;
        gap: 3em;
    }
}

.blogItem__img {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.blogItem__img {
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.blogItem__details__title {
    margin: 0.2em 0 0.6em 0;
    line-height: 0.9;
}

.blogItem__details__title a {
    color: inherit;
    text-decoration: none;
}

@media (min-width: 48em) {
    .blogItem__details__title {
        line-height: 1.2;
    }
}

.blogItem__details__title:after {
    content: "";
    display: block;
    height: 1px;
    width: 34px;
    margin-top: 0.6em;
    border-bottom: 1px solid var(--gray-6);
}

.blogItem__details__date {
    margin-top: 0.2em;
    font-size: var(--text-13);
}

.blogItem__details__link {
    margin-top: 1em;
    color: var(--primary-3);
}

/* //////////////////////////////////////////////////// */

.blog__followCta {
    overflow: hidden;
    margin-top: 6em;
    padding: 2.3em 2.5em;
    border-radius: 10px;
    background-image: url("/img/design/footer/footer-background.jpg");
    background-size: cover;
    background-position: right center;
}

.blog__followCta__text > div {
    color: var(--gray-8);
}

.blog__followCta__link {
    margin-top: 1em;
}

.blog__followCta__linkedin__container {
    position: relative;
}

.blog__followCta__linkedin__container__circles {
    display: none;
    position: absolute;
    z-index: 0;
    bottom: -4em;
    right: 0;
    width: 16.875em;
    height: 16.875em;
}

.blog__followCta__linkedin__container__circles::before,
.blog__followCta__linkedin__container__circles::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    border-radius: 50%;
    border: 1px solid var(--gray-6);
    transform: translateX(-50%);
}

.blog__followCta__linkedin__container__circles::before {
    bottom: 3.875em;
    width: 9.1875em;
    height: 9.1875em;
    opacity: 0.5;
}

.blog__followCta__linkedin__container__circles::after {
    bottom: 1.9375em;
    width: 13.0625em;
    height: 13.0625em;
    opacity: 0.25;
}

.blog__followCta__linkedin__container__circles__circle {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--gray-6);
    opacity: 0.1;
}

.blog__followCta__linkedin__container__linkedin {
    position: absolute;
    left: 50%;
    width: 3.375em;
    top: 6.5em;
    height: auto;
    transform: translateX(-50%);
}

@media (min-width: 40em) {
    .blog__followCta__linkedin__container__circles {
        display: block;
    }
}

/* //////////////////////////////////////////////////// */
/* //////////////////// Blog Article ////////////////// */
/* //////////////////////////////////////////////////// */

.blogArticle {
    padding-top: 10em;
    overflow: hidden;
}

.blogArticle__header {
    text-align: center;
}

.blogArticle__header__date {
    font-size: var(--text-13);
}

.blogArticle__header__title {
    position: relative;
    z-index: 1;
    margin: 0.3em 0 0 0;
    padding-bottom: 1em;
    background-color: var(--gray-8);
}

.blogArticle__header__imageContainer {
    position: relative;
    margin-bottom: 3em;
}

.blogArticle__header__imageContainer__image {
    position: relative;
    z-index: 1;
}

.blogArticle__header__imageContainer__circles {
    position: absolute;
    z-index: 0;
    bottom: -6.8em;
    left: 50%;
    width: 16.875em;
    height: 16.875em;
    transform: translateX(-50%);
}

.blogArticle__header__imageContainer__circles__circle {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--gray-6);
    opacity: 0.1;
}

.blogArticle__header__imageContainer__circles::before,
.blogArticle__header__imageContainer__circles::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    border-radius: 50%;
    border: 1px solid var(--gray-6);
    transform: translateX(-50%);
}

.blogArticle__header__imageContainer__circles::before {
    bottom: 3.875em;
    width: 9.1875em;
    height: 9.1875em;
    opacity: 0.5;
}

.blogArticle__header__imageContainer__circles::after {
    bottom: 1.9375em;
    width: 13.0625em;
    height: 13.0625em;
    opacity: 0.25;
}

.blogArticle__header__imageContainer__authorImage {
    position: absolute;
    z-index: 2;
    bottom: -2em;
    left: 50%;
    width: 4.75em;
    height: auto;
    border-radius: 50%;
    border: 4px solid var(--gray-8);
    transform: translateX(-50%);
}

.blogArticle__content {
    max-width: 52.25em;
    margin: 0 auto;
}

/* //////////////////////////////////////////////////// */

.blogArticle .bookDemo--wrapper {
    overflow: visible;
    padding: 3em 0;
}

.blogArticle .bookDemo--wrapper .h--siteWidth {
    margin: 0;
}

.blogArticle .bookDemoBloc {
    padding: 3em 4em;
    font-size: 0.6em;
}

.blogArticle .bookDemoBloc__subTitle {
    font-size: 1.6em;
}

.blogArticle .bookDemoBloc__content .buttonLink {
    font-size: 1.6em;
}

@media (min-width: 64em) {
    .blogArticle .bookDemoBloc__content {
        width: 80%;
    }
}

/* //////////////////////////////////////////////////// */
/* ////////////////////// Contact ///////////////////// */
/* //////////////////////////////////////////////////// */

.contact {
    padding-top: 4em;
    background-image: url("/img/design/city-white.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    margin-bottom: -5em;
}

.contact__content {
    padding: 1em 1em 3em 1em;
    max-width: 46em;
    margin: 0 auto;
}

.contact__content__title {
    text-align: center;
    margin-bottom: 0;
}

.contact__content__subtitle {
    text-align: center;
    margin-bottom: 4em;
}

/* //////////////////////////////////////////////////// */
/* /////////////////// Request Demo /////////////////// */
/* //////////////////////////////////////////////////// */

.bookDemo {
    padding-top: 4em;
    background-image: url("/img/design/city-white.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    margin-bottom: -5em;
}

.bookDemo__content {
    padding: 1em 1em 3em 1em;
    max-width: 46em;
    margin: 0 auto;
}

.bookDemo__content__title {
    text-align: center;
    margin-bottom: 0;
}

.bookDemo__content__subtitle {
    text-align: center;
    margin-bottom: 4em;
}

/* //////////////////////////////////////////////////// */
/* ////////////////////// Privacy ///////////////////// */
/* //////////////////////////////////////////////////// */

.privacy__banner {
    padding: var(--header-height-not-scrolled) 0 0 0;
    background-color: var(--primary-4);
    background-image: url("/img/design/laptop-blue-gradient.jpg");
    background-size: cover;
    background-position: center top;
    text-align: center;
}

.page-privacy a {
    word-break: break-all;
}

.privacy__banner h1 {
    color: var(--gray-8);
    margin: 0;
}

.privacy__content {
    padding-top: 1em;
}

.privacy__content__link {
    color: var(--primary-3);
}

.privacy__content__backLink {
    margin-bottom: 3em;
}

/* //////////////////////////////////////////////////// */
/* //////////////////// Styleguide //////////////////// */
/* //////////////////////////////////////////////////// */

.page-styleguide {
    max-width: 1024px;
    margin: 0 auto;
}

